From 68e7dfeb15465b57e1e99c6dc47a5464f41d6761 Mon Sep 17 00:00:00 2001 From: Ward Peeters Date: Mon, 4 Jul 2022 08:39:59 +0200 Subject: [PATCH 01/90] fix(gatsby-source-contentful): remove faulty parent (#36043) --- packages/gatsby-source-contentful/src/normalize.js | 2 +- yarn.lock | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/gatsby-source-contentful/src/normalize.js b/packages/gatsby-source-contentful/src/normalize.js index dbb6ef7e0a4ab..23e655b04e27d 100644 --- a/packages/gatsby-source-contentful/src/normalize.js +++ b/packages/gatsby-source-contentful/src/normalize.js @@ -503,7 +503,7 @@ export const createNodesForContentType = ({ contentful_id: entryItem.sys.id, createdAt: entryItem.sys.createdAt, updatedAt: entryItem.sys.updatedAt, - parent: contentTypeItemId, + parent: null, children: [], internal: { type: `${makeTypeName(contentTypeItemId)}`, diff --git a/yarn.lock b/yarn.lock index 5c47f4f2e2993..28614c8ac0a2b 100644 --- a/yarn.lock +++ b/yarn.lock @@ -10262,7 +10262,7 @@ eslint-plugin-react-hooks@^4.5.0: resolved "https://registry.yarnpkg.com/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-4.5.0.tgz#5f762dfedf8b2cf431c689f533c9d3fa5dcf25ad" integrity sha512-8k1gRt7D7h03kd+SAAlzXkQwWK22BnK6GKZG+FJA6BAGy22CFvl8kCIXKpVux0cCxMWDQUPqSok0LKaZ0aOcCw== -eslint-plugin-react@^7.30.0, eslint-plugin-react@^7.30.1: +eslint-plugin-react@^7.30.1: version "7.30.1" resolved "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-7.30.1.tgz#2be4ab23ce09b5949c6631413ba64b2810fd3e22" integrity sha512-NbEvI9jtqO46yJA3wcRF9Mo0lF9T/jhdHqhCHXiXtD+Zcb98812wvokjWpU7Q4QH5edo6dmqrukxVvWWXHlsUg== From d20a74b9c262b8c78258d38625a70cf227b07982 Mon Sep 17 00:00:00 2001 From: Lennart Date: Mon, 4 Jul 2022 08:59:30 +0200 Subject: [PATCH 02/90] chore(docs): Typo in GraphQL Typegen doc --- docs/docs/how-to/local-development/graphql-typegen.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docs/how-to/local-development/graphql-typegen.md b/docs/docs/how-to/local-development/graphql-typegen.md index 8a418bd5d28a6..1a48bd7233d38 100644 --- a/docs/docs/how-to/local-development/graphql-typegen.md +++ b/docs/docs/how-to/local-development/graphql-typegen.md @@ -75,7 +75,7 @@ For this example to work you'll have to have a `title` inside your `siteMetadata

Site title: {data.site?.siteMetadata?.title}

``` -### Configuration the gatsby-config option +### Configuring the gatsby-config option Instead of setting a boolean value for the `graphqlTypegen` option in `gatsby-config` you can also set an object to configure it. See all details in the [gatsby-config documentation](/docs/reference/config-files/gatsby-config/#graphqltypegen). From 6df573f7582c195cf03d0da7cc5de32f090e9875 Mon Sep 17 00:00:00 2001 From: Ward Peeters Date: Tue, 5 Jul 2022 12:46:39 +0200 Subject: [PATCH 03/90] fix(gatsby-core-utils): add tree-shake (esm) to core-utils (#36020) Co-authored-by: Lennart --- packages/gatsby-core-utils/.babelrc | 9 +++++- packages/gatsby-core-utils/package.json | 31 +++++++++++++++--- packages/gatsby-core-utils/src/index.ts | 4 ++- .../internal-plugins/functions/gatsby-node.ts | 32 +++++++++++++++++++ 4 files changed, 69 insertions(+), 7 deletions(-) diff --git a/packages/gatsby-core-utils/.babelrc b/packages/gatsby-core-utils/.babelrc index ac0ad292bb087..f539579f31252 100644 --- a/packages/gatsby-core-utils/.babelrc +++ b/packages/gatsby-core-utils/.babelrc @@ -1,3 +1,10 @@ { - "presets": [["babel-preset-gatsby-package"]] + "presets": [["babel-preset-gatsby-package"]], + "env": { + "modern": { + "presets": [["babel-preset-gatsby-package", { + "esm": true + }]] + } + } } diff --git a/packages/gatsby-core-utils/package.json b/packages/gatsby-core-utils/package.json index b955697f8800b..417299d667b85 100644 --- a/packages/gatsby-core-utils/package.json +++ b/packages/gatsby-core-utils/package.json @@ -7,9 +7,21 @@ "gatsby-core-utils" ], "exports": { - ".": "./dist/index.js", - "./*": "./dist/*.js", - "./dist/*": "./dist/*.js" + ".": { + "types": "./dist/index.d.ts", + "import": "./dist/index.mjs", + "require": "./dist/index.js" + }, + "./*": { + "types": "./dist/*.d.ts", + "import": "./dist/*.mjs", + "require": "./dist/*.js" + }, + "./dist/*": { + "types": "./dist/*.d.ts", + "import": "./dist/*.mjs", + "require": "./dist/*.js" + } }, "typesVersions": { "*": { @@ -23,6 +35,7 @@ "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-core-utils#readme", "license": "MIT", "main": "dist/index.js", + "module": "dist/index.mjs", "types": "dist/index.d.ts", "repository": { "type": "git", @@ -30,10 +43,16 @@ "directory": "packages/gatsby-core-utils" }, "scripts": { - "build": "babel src --out-dir dist/ --ignore \"**/__tests__\" --ignore \"**/__mocks__\" --extensions \".ts\"", + "prebuild": "npm-run-all --npm-path npm clean", + "build": "npm-run-all --npm-path npm -s build:*", + "build:cjs": "babel src --out-dir dist/ --ignore \"**/__tests__\" --ignore \"**/__mocks__\" --extensions \".ts\"", + "build:mjs": "cross-env BABEL_ENV=modern babel src --out-dir dist/ --ignore \"**/__tests__\" --ignore \"**/__mocks__\" --extensions \".ts\" --out-file-extension .mjs", "typegen": "tsc --emitDeclarationOnly --declaration --declarationDir dist/", "prepare": "cross-env NODE_ENV=production npm run build && npm run typegen", - "watch": "babel -w src --out-dir dist/ --ignore \"**/__tests__\" --extensions \".ts\"" + "watch": "npm-run-all --npm-path npm -p watch:*", + "watch:cjs": "babel -w src --out-dir dist/ --ignore \"**/__tests__\" --ignore \"**/__mocks__\" --extensions \".ts\"", + "watch:mjs": "cross-env BABEL_ENV=modern babel -w src --out-dir dist/ --ignore \"**/__tests__\" --ignore \"**/__mocks__\" --extensions \".ts\" --out-file-extension .mjs", + "clean": "del-cli dist/*" }, "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -64,8 +83,10 @@ "@types/ci-info": "2.0.0", "babel-preset-gatsby-package": "^2.19.0-next.0", "cross-env": "^7.0.3", + "del-cli": "^3.0.1", "is-uuid": "^1.0.2", "msw": "^0.38.2", + "npm-run-all": "^4.1.5", "typescript": "^4.7.2" }, "engines": { diff --git a/packages/gatsby-core-utils/src/index.ts b/packages/gatsby-core-utils/src/index.ts index 3043dd0b647bc..4c0f9ca3035da 100644 --- a/packages/gatsby-core-utils/src/index.ts +++ b/packages/gatsby-core-utils/src/index.ts @@ -7,7 +7,7 @@ export { createRequireFromPath } from "./create-require-from-path" export { getConfigStore } from "./get-config-store" export { getGatsbyVersion } from "./get-gatsby-version" export { getTermProgram } from "./get-term-program" -export { fetchRemoteFile, IFetchRemoteFileOptions } from "./fetch-remote-file" +export { fetchRemoteFile } from "./fetch-remote-file" export { isTruthy } from "./is-truthy" export * as uuid from "./uuid" export { getMatchPath } from "./match-path" @@ -19,3 +19,5 @@ export { listPlugins } from "./list-plugins" export { createFilePath } from "./filename-utils" export { readConfigFile, getConfigPath } from "./utils" export { lock } from "./lock" + +export type { IFetchRemoteFileOptions } from "./fetch-remote-file" diff --git a/packages/gatsby/src/internal-plugins/functions/gatsby-node.ts b/packages/gatsby/src/internal-plugins/functions/gatsby-node.ts index 83626826e9989..6f58044151543 100644 --- a/packages/gatsby/src/internal-plugins/functions/gatsby-node.ts +++ b/packages/gatsby/src/internal-plugins/functions/gatsby-node.ts @@ -313,6 +313,38 @@ const createWebpackConfig = async ({ // watch: !isProductionEnv, module: { rules: [ + // Webpack expects extensions when importing ESM modules as that's what the spec describes. + // Not all libraries have adapted so we don't enforce its behaviour + // @see https://github.com/webpack/webpack/issues/11467 + { + test: /\.mjs$/i, + resolve: { + byDependency: { + esm: { + fullySpecified: false, + }, + }, + }, + }, + { + test: /\.js$/i, + descriptionData: { + type: `module`, + }, + resolve: { + byDependency: { + esm: { + fullySpecified: false, + }, + }, + }, + use: { + loader: `babel-loader`, + options: { + presets: [`@babel/typescript`], + }, + }, + }, { test: [/.js$/, /.ts$/], exclude: /node_modules/, From bcfa33aeb22aceba4bd80772704a747626b164ad Mon Sep 17 00:00:00 2001 From: Ward Peeters Date: Tue, 5 Jul 2022 15:08:35 +0200 Subject: [PATCH 04/90] chore(release): Publish next - babel-plugin-remove-graphql-queries@4.19.0-next.1 - babel-preset-gatsby-package@2.19.0-next.1 - babel-preset-gatsby@2.19.0-next.2 - create-gatsby@2.19.0-next.2 - gatsby-cli@4.19.0-next.3 - gatsby-codemods@3.19.0-next.2 - gatsby-core-utils@3.19.0-next.1 - gatsby-cypress@2.19.0-next.1 - gatsby-design-tokens@4.19.0-next.3 - gatsby-dev-cli@4.19.0-next.1 - gatsby-graphiql-explorer@2.19.0-next.1 - gatsby-legacy-polyfills@2.19.0-next.2 - gatsby-link@4.19.0-next.2 - gatsby-page-utils@2.19.0-next.1 - gatsby-parcel-config@0.10.0-next.1 - @gatsbyjs/parcel-namer-relative-to-cwd@1.4.0-next.1 - gatsby-plugin-benchmark-reporting@2.19.0-next.1 - gatsby-plugin-canonical-urls@4.19.0-next.1 - gatsby-plugin-catch-links@4.19.0-next.1 - gatsby-plugin-coffeescript@4.19.0-next.1 - gatsby-plugin-cxs@4.19.0-next.1 - gatsby-plugin-emotion@7.19.0-next.1 - gatsby-plugin-facebook-analytics@4.19.0-next.1 - gatsby-plugin-feed@4.19.0-next.1 - gatsby-plugin-flow@3.19.0-next.2 - gatsby-plugin-fullstory@4.19.0-next.1 - gatsby-plugin-gatsby-cloud@4.19.0-next.2 - gatsby-plugin-google-analytics@4.19.0-next.2 - gatsby-plugin-google-gtag@4.19.0-next.2 - gatsby-plugin-google-tagmanager@4.19.0-next.1 - gatsby-plugin-image@2.19.0-next.2 - gatsby-plugin-jss@4.19.0-next.1 - gatsby-plugin-layout@3.19.0-next.1 - gatsby-plugin-less@6.19.0-next.1 - gatsby-plugin-lodash@5.19.0-next.1 - gatsby-plugin-manifest@4.19.0-next.1 - gatsby-plugin-mdx@3.19.0-next.1 - gatsby-plugin-netlify-cms@6.19.0-next.1 - gatsby-plugin-no-sourcemaps@4.19.0-next.1 - gatsby-plugin-nprogress@4.19.0-next.1 - gatsby-plugin-offline@5.19.0-next.1 - gatsby-plugin-page-creator@4.19.0-next.2 - gatsby-plugin-postcss@5.19.0-next.1 - gatsby-plugin-preact@6.19.0-next.1 - gatsby-plugin-preload-fonts@3.19.0-next.1 - gatsby-plugin-react-css-modules@4.19.0-next.1 - gatsby-plugin-react-helmet@5.19.0-next.1 - gatsby-plugin-remove-trailing-slashes@4.19.0-next.1 - gatsby-plugin-sass@5.19.0-next.1 - gatsby-plugin-schema-snapshot@3.19.0-next.1 - gatsby-plugin-sharp@4.19.0-next.3 - gatsby-plugin-sitemap@5.19.0-next.2 - gatsby-plugin-styled-components@5.19.0-next.2 - gatsby-plugin-styled-jsx@5.19.0-next.1 - gatsby-plugin-styletron@7.19.0-next.1 - gatsby-plugin-stylus@4.19.0-next.1 - gatsby-plugin-subfont@4.19.0-next.1 - gatsby-plugin-twitter@4.19.0-next.1 - gatsby-plugin-typescript@4.19.0-next.1 - gatsby-plugin-typography@4.19.0-next.2 - gatsby-plugin-utils@3.13.0-next.1 - gatsby-react-router-scroll@5.19.0-next.1 - gatsby-remark-autolink-headers@5.19.0-next.1 - gatsby-remark-code-repls@6.19.0-next.1 - gatsby-remark-copy-linked-files@5.19.0-next.1 - gatsby-remark-custom-blocks@4.19.0-next.1 - gatsby-remark-embed-snippet@7.19.0-next.1 - gatsby-remark-graphviz@4.19.0-next.1 - gatsby-remark-images-contentful@5.19.0-next.1 - gatsby-remark-images@6.19.0-next.2 - gatsby-remark-katex@6.19.0-next.2 - gatsby-remark-prismjs@6.19.0-next.1 - gatsby-remark-responsive-iframe@5.19.0-next.1 - gatsby-remark-smartypants@5.19.0-next.1 - gatsby-script@1.4.0-next.2 - gatsby-sharp@0.13.0-next.1 - gatsby-source-contentful@7.17.0-next.2 - gatsby-source-drupal@5.20.0-next.1 - gatsby-source-faker@4.19.0-next.2 - gatsby-source-filesystem@4.19.0-next.1 - gatsby-source-graphql@4.19.0-next.1 - gatsby-source-hacker-news@4.19.0-next.1 - gatsby-source-lever@4.19.0-next.1 - gatsby-source-medium@4.19.0-next.1 - gatsby-source-mongodb@4.19.0-next.2 - gatsby-source-npm-package-search@4.19.0-next.1 - gatsby-source-shopify@7.8.0-next.2 - gatsby-source-wikipedia@4.19.0-next.1 - gatsby-source-wordpress@6.19.0-next.3 - gatsby-telemetry@3.19.0-next.2 - gatsby-transformer-asciidoc@3.19.0-next.2 - gatsby-transformer-csv@4.19.0-next.1 - gatsby-transformer-documentationjs@6.19.0-next.1 - gatsby-transformer-excel@4.19.0-next.1 - gatsby-transformer-hjson@4.19.0-next.1 - gatsby-transformer-javascript-frontmatter@4.19.0-next.1 - gatsby-transformer-javascript-static-exports@4.19.0-next.1 - gatsby-transformer-json@4.19.0-next.1 - gatsby-transformer-pdf@3.19.0-next.1 - gatsby-transformer-react-docgen@7.19.0-next.1 - gatsby-transformer-remark@5.19.0-next.1 - gatsby-transformer-screenshot@4.19.0-next.1 - gatsby-transformer-sharp@4.19.0-next.2 - gatsby-transformer-sqip@4.19.0-next.3 - gatsby-transformer-toml@4.19.0-next.1 - gatsby-transformer-xml@4.19.0-next.1 - gatsby-transformer-yaml@4.19.0-next.1 - gatsby-worker@1.19.0-next.1 - gatsby@4.19.0-next.3 --- .../package.json | 6 +-- .../babel-preset-gatsby-package/package.json | 2 +- packages/babel-preset-gatsby/package.json | 8 ++-- packages/create-gatsby/package.json | 4 +- packages/gatsby-cli/package.json | 10 ++--- packages/gatsby-codemods/package.json | 4 +- packages/gatsby-core-utils/package.json | 4 +- packages/gatsby-cypress/package.json | 4 +- packages/gatsby-design-tokens/package.json | 2 +- packages/gatsby-dev-cli/package.json | 4 +- .../gatsby-graphiql-explorer/package.json | 4 +- packages/gatsby-legacy-polyfills/package.json | 2 +- packages/gatsby-link/package.json | 4 +- packages/gatsby-page-utils/package.json | 6 +-- packages/gatsby-parcel-config/package.json | 4 +- .../package.json | 6 +-- .../package.json | 6 +-- .../gatsby-plugin-canonical-urls/package.json | 4 +- .../gatsby-plugin-catch-links/package.json | 4 +- .../gatsby-plugin-coffeescript/package.json | 4 +- packages/gatsby-plugin-cxs/package.json | 6 +-- packages/gatsby-plugin-emotion/package.json | 4 +- .../package.json | 4 +- packages/gatsby-plugin-feed/package.json | 6 +-- packages/gatsby-plugin-flow/package.json | 6 +-- packages/gatsby-plugin-fullstory/package.json | 4 +- .../gatsby-plugin-gatsby-cloud/package.json | 8 ++-- .../package.json | 4 +- .../gatsby-plugin-google-gtag/package.json | 4 +- .../package.json | 6 +-- packages/gatsby-plugin-image/package.json | 10 ++--- packages/gatsby-plugin-jss/package.json | 4 +- packages/gatsby-plugin-layout/package.json | 4 +- packages/gatsby-plugin-less/package.json | 4 +- packages/gatsby-plugin-lodash/package.json | 4 +- packages/gatsby-plugin-manifest/package.json | 8 ++-- packages/gatsby-plugin-mdx/package.json | 6 +-- .../gatsby-plugin-netlify-cms/package.json | 4 +- .../gatsby-plugin-no-sourcemaps/package.json | 2 +- packages/gatsby-plugin-nprogress/package.json | 4 +- packages/gatsby-plugin-offline/package.json | 8 ++-- .../gatsby-plugin-page-creator/package.json | 12 +++--- packages/gatsby-plugin-postcss/package.json | 4 +- packages/gatsby-plugin-preact/package.json | 4 +- .../gatsby-plugin-preload-fonts/package.json | 6 +-- .../package.json | 4 +- .../gatsby-plugin-react-helmet/package.json | 4 +- .../package.json | 4 +- packages/gatsby-plugin-sass/package.json | 6 +-- .../package.json | 2 +- packages/gatsby-plugin-sharp/package.json | 12 +++--- packages/gatsby-plugin-sitemap/package.json | 6 +-- .../package.json | 4 +- .../gatsby-plugin-styled-jsx/package.json | 4 +- packages/gatsby-plugin-styletron/package.json | 4 +- packages/gatsby-plugin-stylus/package.json | 4 +- packages/gatsby-plugin-subfont/package.json | 4 +- packages/gatsby-plugin-twitter/package.json | 6 +-- .../gatsby-plugin-typescript/package.json | 6 +-- .../gatsby-plugin-typography/package.json | 4 +- packages/gatsby-plugin-utils/package.json | 8 ++-- .../gatsby-react-router-scroll/package.json | 4 +- .../package.json | 6 +-- .../gatsby-remark-code-repls/package.json | 4 +- .../package.json | 4 +- .../gatsby-remark-custom-blocks/package.json | 4 +- .../gatsby-remark-embed-snippet/package.json | 4 +- packages/gatsby-remark-graphviz/package.json | 4 +- .../package.json | 4 +- packages/gatsby-remark-images/package.json | 8 ++-- packages/gatsby-remark-katex/package.json | 4 +- packages/gatsby-remark-prismjs/package.json | 4 +- .../package.json | 4 +- .../gatsby-remark-smartypants/package.json | 4 +- packages/gatsby-script/package.json | 2 +- packages/gatsby-sharp/package.json | 2 +- .../gatsby-source-contentful/package.json | 10 ++--- packages/gatsby-source-drupal/package.json | 8 ++-- packages/gatsby-source-faker/package.json | 4 +- .../gatsby-source-filesystem/package.json | 6 +-- packages/gatsby-source-graphql/package.json | 6 +-- .../gatsby-source-hacker-news/package.json | 4 +- packages/gatsby-source-lever/package.json | 4 +- packages/gatsby-source-medium/package.json | 4 +- packages/gatsby-source-mongodb/package.json | 4 +- .../package.json | 4 +- packages/gatsby-source-shopify/package.json | 10 ++--- packages/gatsby-source-wikipedia/package.json | 4 +- packages/gatsby-source-wordpress/package.json | 16 ++++---- packages/gatsby-telemetry/package.json | 6 +-- .../gatsby-transformer-asciidoc/package.json | 4 +- packages/gatsby-transformer-csv/package.json | 4 +- .../package.json | 4 +- .../gatsby-transformer-excel/package.json | 4 +- .../gatsby-transformer-hjson/package.json | 4 +- .../package.json | 4 +- .../package.json | 4 +- packages/gatsby-transformer-json/package.json | 4 +- packages/gatsby-transformer-pdf/package.json | 4 +- .../package.json | 4 +- .../gatsby-transformer-remark/package.json | 8 ++-- .../package.json | 4 +- .../gatsby-transformer-sharp/package.json | 6 +-- packages/gatsby-transformer-sqip/package.json | 8 ++-- packages/gatsby-transformer-toml/package.json | 4 +- packages/gatsby-transformer-xml/package.json | 4 +- packages/gatsby-transformer-yaml/package.json | 4 +- packages/gatsby-worker/package.json | 4 +- packages/gatsby/package.json | 38 +++++++++---------- 109 files changed, 291 insertions(+), 291 deletions(-) diff --git a/packages/babel-plugin-remove-graphql-queries/package.json b/packages/babel-plugin-remove-graphql-queries/package.json index 2ed6ec79a9c38..288ffabcbcc9a 100644 --- a/packages/babel-plugin-remove-graphql-queries/package.json +++ b/packages/babel-plugin-remove-graphql-queries/package.json @@ -1,6 +1,6 @@ { "name": "babel-plugin-remove-graphql-queries", - "version": "4.19.0-next.0", + "version": "4.19.0-next.1", "author": "Jason Quense ", "repository": { "type": "git", @@ -10,12 +10,12 @@ "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/babel-plugin-remove-graphql-queries#readme", "dependencies": { "@babel/runtime": "^7.15.4", - "gatsby-core-utils": "^3.19.0-next.0" + "gatsby-core-utils": "^3.19.0-next.1" }, "devDependencies": { "@babel/cli": "^7.15.4", "@babel/core": "^7.15.5", - "babel-preset-gatsby-package": "^2.19.0-next.0", + "babel-preset-gatsby-package": "^2.19.0-next.1", "cross-env": "^7.0.3" }, "peerDependencies": { diff --git a/packages/babel-preset-gatsby-package/package.json b/packages/babel-preset-gatsby-package/package.json index 5b0c197186743..15d1b17a7a8ec 100644 --- a/packages/babel-preset-gatsby-package/package.json +++ b/packages/babel-preset-gatsby-package/package.json @@ -1,6 +1,6 @@ { "name": "babel-preset-gatsby-package", - "version": "2.19.0-next.0", + "version": "2.19.0-next.1", "author": "Philipp Spiess ", "repository": { "type": "git", diff --git a/packages/babel-preset-gatsby/package.json b/packages/babel-preset-gatsby/package.json index e733bcabdd48c..0cc69d33bc7fd 100644 --- a/packages/babel-preset-gatsby/package.json +++ b/packages/babel-preset-gatsby/package.json @@ -1,6 +1,6 @@ { "name": "babel-preset-gatsby", - "version": "2.19.0-next.1", + "version": "2.19.0-next.2", "author": "Philipp Spiess ", "repository": { "type": "git", @@ -22,8 +22,8 @@ "babel-plugin-dynamic-import-node": "^2.3.3", "babel-plugin-macros": "^3.1.0", "babel-plugin-transform-react-remove-prop-types": "^0.4.24", - "gatsby-core-utils": "^3.19.0-next.0", - "gatsby-legacy-polyfills": "^2.19.0-next.1" + "gatsby-core-utils": "^3.19.0-next.1", + "gatsby-legacy-polyfills": "^2.19.0-next.2" }, "peerDependencies": { "@babel/core": "^7.11.6", @@ -38,7 +38,7 @@ }, "devDependencies": { "@babel/cli": "^7.15.4", - "babel-preset-gatsby-package": "^2.19.0-next.0", + "babel-preset-gatsby-package": "^2.19.0-next.1", "cross-env": "^7.0.3", "slash": "^3.0.0" }, diff --git a/packages/create-gatsby/package.json b/packages/create-gatsby/package.json index 9dab90816885f..cdbf4ffe1192b 100644 --- a/packages/create-gatsby/package.json +++ b/packages/create-gatsby/package.json @@ -1,6 +1,6 @@ { "name": "create-gatsby", - "version": "2.19.0-next.1", + "version": "2.19.0-next.2", "main": "lib/index.js", "bin": "cli.js", "license": "MIT", @@ -28,7 +28,7 @@ "eslint": "^7.32.0", "execa": "^5.1.1", "fs-extra": "^10.1.0", - "gatsby-plugin-utils": "^3.13.0-next.0", + "gatsby-plugin-utils": "^3.13.0-next.1", "joi": "^17.4.2", "microbundle": "^0.15.0", "node-fetch": "^2.6.6", diff --git a/packages/gatsby-cli/package.json b/packages/gatsby-cli/package.json index e7c6071d4e5fe..f80e84dc73bb3 100644 --- a/packages/gatsby-cli/package.json +++ b/packages/gatsby-cli/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-cli", "description": "Gatsby command-line interface for creating new sites and running Gatsby commands", - "version": "4.19.0-next.2", + "version": "4.19.0-next.3", "author": "Kyle Mathews ", "bin": { "gatsby": "cli.js" @@ -27,13 +27,13 @@ "common-tags": "^1.8.2", "configstore": "^5.0.1", "convert-hrtime": "^3.0.0", - "create-gatsby": "^2.19.0-next.1", + "create-gatsby": "^2.19.0-next.2", "envinfo": "^7.8.1", "execa": "^5.1.1", "fs-exists-cached": "^1.0.0", "fs-extra": "^10.1.0", - "gatsby-core-utils": "^3.19.0-next.0", - "gatsby-telemetry": "^3.19.0-next.1", + "gatsby-core-utils": "^3.19.0-next.1", + "gatsby-telemetry": "^3.19.0-next.2", "hosted-git-info": "^3.0.8", "is-valid-path": "^0.1.1", "joi": "^17.4.2", @@ -65,7 +65,7 @@ "@types/hosted-git-info": "^3.0.2", "@types/yargs": "^15.0.14", "babel-plugin-lodash": "^3.3.4", - "babel-preset-gatsby-package": "^2.19.0-next.0", + "babel-preset-gatsby-package": "^2.19.0-next.1", "cross-env": "^7.0.3", "ink": "^3.2.0", "ink-spinner": "^4.0.3", diff --git a/packages/gatsby-codemods/package.json b/packages/gatsby-codemods/package.json index 8eb0e43b3362c..2d171a92a1959 100644 --- a/packages/gatsby-codemods/package.json +++ b/packages/gatsby-codemods/package.json @@ -1,6 +1,6 @@ { "name": "gatsby-codemods", - "version": "3.19.0-next.1", + "version": "3.19.0-next.2", "description": "A collection of codemod scripts for use with JSCodeshift that help migrate to newer versions of Gatsby.", "main": "index.js", "scripts": { @@ -36,7 +36,7 @@ }, "devDependencies": { "@babel/cli": "^7.15.4", - "babel-preset-gatsby-package": "^2.19.0-next.0", + "babel-preset-gatsby-package": "^2.19.0-next.1", "cross-env": "^7.0.3" }, "engines": { diff --git a/packages/gatsby-core-utils/package.json b/packages/gatsby-core-utils/package.json index 417299d667b85..a2fbdf47fde2f 100644 --- a/packages/gatsby-core-utils/package.json +++ b/packages/gatsby-core-utils/package.json @@ -1,6 +1,6 @@ { "name": "gatsby-core-utils", - "version": "3.19.0-next.0", + "version": "3.19.0-next.1", "description": "A collection of gatsby utils used in different gatsby packages", "keywords": [ "gatsby", @@ -81,7 +81,7 @@ "@babel/cli": "^7.15.4", "@babel/core": "^7.15.5", "@types/ci-info": "2.0.0", - "babel-preset-gatsby-package": "^2.19.0-next.0", + "babel-preset-gatsby-package": "^2.19.0-next.1", "cross-env": "^7.0.3", "del-cli": "^3.0.1", "is-uuid": "^1.0.2", diff --git a/packages/gatsby-cypress/package.json b/packages/gatsby-cypress/package.json index 2ae0729a858ab..f0175a58ab21b 100644 --- a/packages/gatsby-cypress/package.json +++ b/packages/gatsby-cypress/package.json @@ -1,6 +1,6 @@ { "name": "gatsby-cypress", - "version": "2.19.0-next.0", + "version": "2.19.0-next.1", "description": "Cypress tools for Gatsby projects", "main": "index.js", "repository": { @@ -20,7 +20,7 @@ "devDependencies": { "@babel/cli": "^7.15.4", "@babel/core": "^7.15.5", - "babel-preset-gatsby-package": "^2.19.0-next.0", + "babel-preset-gatsby-package": "^2.19.0-next.1", "cross-env": "^7.0.3" }, "keywords": [ diff --git a/packages/gatsby-design-tokens/package.json b/packages/gatsby-design-tokens/package.json index a348fecd92ba4..d3ca92fa969d2 100644 --- a/packages/gatsby-design-tokens/package.json +++ b/packages/gatsby-design-tokens/package.json @@ -1,6 +1,6 @@ { "name": "gatsby-design-tokens", - "version": "4.19.0-next.2", + "version": "4.19.0-next.3", "description": "Gatsby Design Tokens", "main": "dist/index.js", "module": "dist/index.esm.js", diff --git a/packages/gatsby-dev-cli/package.json b/packages/gatsby-dev-cli/package.json index b580195fbc9ce..5f2e4944169cc 100644 --- a/packages/gatsby-dev-cli/package.json +++ b/packages/gatsby-dev-cli/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-dev-cli", "description": "CLI helpers for contributors working on Gatsby", - "version": "4.19.0-next.0", + "version": "4.19.0-next.1", "author": "Kyle Mathews ", "bin": { "gatsby-dev": "./dist/index.js" @@ -27,7 +27,7 @@ "devDependencies": { "@babel/cli": "^7.15.4", "@babel/core": "^7.15.5", - "babel-preset-gatsby-package": "^2.19.0-next.0", + "babel-preset-gatsby-package": "^2.19.0-next.1", "cross-env": "^7.0.3" }, "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-dev-cli#readme", diff --git a/packages/gatsby-graphiql-explorer/package.json b/packages/gatsby-graphiql-explorer/package.json index d699d8205abb2..71fc43038551e 100644 --- a/packages/gatsby-graphiql-explorer/package.json +++ b/packages/gatsby-graphiql-explorer/package.json @@ -1,6 +1,6 @@ { "name": "gatsby-graphiql-explorer", - "version": "2.19.0-next.0", + "version": "2.19.0-next.1", "description": "GraphiQL IDE with custom features for Gatsby users", "main": "index.js", "scripts": { @@ -38,7 +38,7 @@ "@babel/preset-env": "^7.15.4", "@babel/preset-react": "^7.14.0", "babel-loader": "^8.2.2", - "babel-preset-gatsby-package": "^2.19.0-next.0", + "babel-preset-gatsby-package": "^2.19.0-next.1", "core-js": "^3.22.3", "cross-env": "^7.0.3", "css-loader": "^6.2.0", diff --git a/packages/gatsby-legacy-polyfills/package.json b/packages/gatsby-legacy-polyfills/package.json index e32746d52bb76..9e2975da74f1d 100644 --- a/packages/gatsby-legacy-polyfills/package.json +++ b/packages/gatsby-legacy-polyfills/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-legacy-polyfills", "description": "Polyfills for legacy browsers", - "version": "2.19.0-next.1", + "version": "2.19.0-next.2", "main": "dist/polyfills.js", "author": "Ward Peeters ", "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-legacy-polyfills#readme", diff --git a/packages/gatsby-link/package.json b/packages/gatsby-link/package.json index f21dcffb4a344..7666ee1a325e1 100644 --- a/packages/gatsby-link/package.json +++ b/packages/gatsby-link/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-link", "description": "An enhanced Link component for Gatsby sites with support for resource prefetching", - "version": "4.19.0-next.1", + "version": "4.19.0-next.2", "author": "Kyle Mathews ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -22,7 +22,7 @@ }, "dependencies": { "@types/reach__router": "^1.3.10", - "gatsby-page-utils": "^2.19.0-next.0", + "gatsby-page-utils": "^2.19.0-next.1", "prop-types": "^15.8.1" }, "devDependencies": { diff --git a/packages/gatsby-page-utils/package.json b/packages/gatsby-page-utils/package.json index fdba3db0bec85..ab1b968ca3e76 100644 --- a/packages/gatsby-page-utils/package.json +++ b/packages/gatsby-page-utils/package.json @@ -1,6 +1,6 @@ { "name": "gatsby-page-utils", - "version": "2.19.0-next.0", + "version": "2.19.0-next.1", "description": "Gatsby library that helps creating pages", "main": "dist/index.js", "types": "dist/index.d.ts", @@ -30,7 +30,7 @@ "bluebird": "^3.7.2", "chokidar": "^3.5.3", "fs-exists-cached": "^1.0.0", - "gatsby-core-utils": "^3.19.0-next.0", + "gatsby-core-utils": "^3.19.0-next.1", "glob": "^7.2.3", "lodash": "^4.17.21", "micromatch": "^4.0.5" @@ -39,7 +39,7 @@ "@babel/cli": "^7.15.4", "@babel/core": "^7.15.5", "@types/micromatch": "^4.0.2", - "babel-preset-gatsby-package": "^2.19.0-next.0", + "babel-preset-gatsby-package": "^2.19.0-next.1", "cross-env": "^7.0.3", "rimraf": "^3.0.2", "typescript": "^4.7.2" diff --git a/packages/gatsby-parcel-config/package.json b/packages/gatsby-parcel-config/package.json index ea06421daf106..6e54481049a7e 100644 --- a/packages/gatsby-parcel-config/package.json +++ b/packages/gatsby-parcel-config/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-parcel-config", "main": "lib/index.json", - "version": "0.10.0-next.0", + "version": "0.10.0-next.1", "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-parcel-config#readme", "description": "A minimal Parcel config for use in Gatsby", "repository": { @@ -14,7 +14,7 @@ "parcel": "2.x" }, "dependencies": { - "@gatsbyjs/parcel-namer-relative-to-cwd": "1.4.0-next.0", + "@gatsbyjs/parcel-namer-relative-to-cwd": "1.4.0-next.1", "@parcel/bundler-default": "2.6.0", "@parcel/compressor-raw": "2.6.0", "@parcel/namer-default": "2.6.0", diff --git a/packages/gatsby-parcel-namer-relative-to-cwd/package.json b/packages/gatsby-parcel-namer-relative-to-cwd/package.json index 15908c1d8bc50..5e103a8112bd8 100644 --- a/packages/gatsby-parcel-namer-relative-to-cwd/package.json +++ b/packages/gatsby-parcel-namer-relative-to-cwd/package.json @@ -1,7 +1,7 @@ { "name": "@gatsbyjs/parcel-namer-relative-to-cwd", "main": "lib/index.js", - "version": "1.4.0-next.0", + "version": "1.4.0-next.1", "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-parcel-namer-relative-to-cwd#readme", "description": "Parcel namer that preserve directory structure to stabilize output and keep the hierarchy.", "author": "Michal Piechowiak ", @@ -18,12 +18,12 @@ "dependencies": { "@babel/runtime": "^7.18.0", "@parcel/plugin": "2.6.0", - "gatsby-core-utils": "^3.19.0-next.0" + "gatsby-core-utils": "^3.19.0-next.1" }, "devDependencies": { "@babel/cli": "^7.17.10", "@babel/core": "^7.18.0", - "babel-preset-gatsby-package": "^2.19.0-next.0", + "babel-preset-gatsby-package": "^2.19.0-next.1", "cross-env": "^7.0.3" }, "peerDependencies": { diff --git a/packages/gatsby-plugin-benchmark-reporting/package.json b/packages/gatsby-plugin-benchmark-reporting/package.json index 840ab0431d848..14c82145544f3 100644 --- a/packages/gatsby-plugin-benchmark-reporting/package.json +++ b/packages/gatsby-plugin-benchmark-reporting/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-plugin-benchmark-reporting", "description": "Gatsby Benchmark Reporting", - "version": "2.19.0-next.0", + "version": "2.19.0-next.1", "author": "Peter van der Zee ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -16,12 +16,12 @@ "devDependencies": { "@babel/cli": "^7.15.4", "@babel/core": "^7.15.5", - "babel-preset-gatsby-package": "^2.19.0-next.0" + "babel-preset-gatsby-package": "^2.19.0-next.1" }, "dependencies": { "@babel/runtime": "^7.15.4", "fast-glob": "^3.2.11", - "gatsby-core-utils": "^3.19.0-next.0", + "gatsby-core-utils": "^3.19.0-next.1", "node-fetch": "^2.6.7" }, "peerDependencies": { diff --git a/packages/gatsby-plugin-canonical-urls/package.json b/packages/gatsby-plugin-canonical-urls/package.json index 5f21a58397529..d2676e6e19b59 100644 --- a/packages/gatsby-plugin-canonical-urls/package.json +++ b/packages/gatsby-plugin-canonical-urls/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-plugin-canonical-urls", "description": "Add canonical links to HTML pages Gatsby generates.", - "version": "4.19.0-next.0", + "version": "4.19.0-next.1", "author": "Kyle Mathews ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -12,7 +12,7 @@ "devDependencies": { "@babel/cli": "^7.15.4", "@babel/core": "^7.15.5", - "babel-preset-gatsby-package": "^2.19.0-next.0", + "babel-preset-gatsby-package": "^2.19.0-next.1", "cross-env": "^7.0.3" }, "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-canonical-urls#readme", diff --git a/packages/gatsby-plugin-catch-links/package.json b/packages/gatsby-plugin-catch-links/package.json index cf69da3401f25..a3c5a6a42f649 100644 --- a/packages/gatsby-plugin-catch-links/package.json +++ b/packages/gatsby-plugin-catch-links/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-plugin-catch-links", "description": "Intercepts local links from markdown and other non-react pages and does a client-side pushState to avoid the browser having to refresh the page.", - "version": "4.19.0-next.0", + "version": "4.19.0-next.1", "author": "Kyle Mathews ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -13,7 +13,7 @@ "devDependencies": { "@babel/cli": "^7.15.4", "@babel/core": "^7.15.5", - "babel-preset-gatsby-package": "^2.19.0-next.0", + "babel-preset-gatsby-package": "^2.19.0-next.1", "cross-env": "^7.0.3" }, "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-catch-links#readme", diff --git a/packages/gatsby-plugin-coffeescript/package.json b/packages/gatsby-plugin-coffeescript/package.json index ec83c5812601b..7ef236515ed81 100644 --- a/packages/gatsby-plugin-coffeescript/package.json +++ b/packages/gatsby-plugin-coffeescript/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-plugin-coffeescript", "description": "Adds CoffeeScript support for Gatsby", - "version": "4.19.0-next.0", + "version": "4.19.0-next.1", "author": "Kyle Mathews ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -18,7 +18,7 @@ "devDependencies": { "@babel/cli": "^7.15.4", "@babel/core": "^7.15.5", - "babel-preset-gatsby-package": "^2.19.0-next.0", + "babel-preset-gatsby-package": "^2.19.0-next.1", "cross-env": "^7.0.3" }, "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-coffeescript#readme", diff --git a/packages/gatsby-plugin-cxs/package.json b/packages/gatsby-plugin-cxs/package.json index 14c60dc20b559..a2031a76d10e3 100644 --- a/packages/gatsby-plugin-cxs/package.json +++ b/packages/gatsby-plugin-cxs/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-plugin-cxs", "description": "Gatsby plugin to add SSR support for ctx", - "version": "4.19.0-next.0", + "version": "4.19.0-next.1", "author": "Chen-Tai Hou ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -12,10 +12,10 @@ "devDependencies": { "@babel/cli": "^7.15.4", "@babel/core": "^7.15.5", - "babel-preset-gatsby-package": "^2.19.0-next.0", + "babel-preset-gatsby-package": "^2.19.0-next.1", "cross-env": "^7.0.3", "cxs": "^6.2.0", - "gatsby-plugin-utils": "^3.13.0-next.0" + "gatsby-plugin-utils": "^3.13.0-next.1" }, "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-cxs#readme", "keywords": [ diff --git a/packages/gatsby-plugin-emotion/package.json b/packages/gatsby-plugin-emotion/package.json index 94030dfa0d7d4..cbc5438bd1a3e 100644 --- a/packages/gatsby-plugin-emotion/package.json +++ b/packages/gatsby-plugin-emotion/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-plugin-emotion", "description": "Gatsby plugin to add support for Emotion", - "version": "7.19.0-next.0", + "version": "7.19.0-next.1", "author": "Tegan Churchill ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -13,7 +13,7 @@ "devDependencies": { "@babel/cli": "^7.15.4", "@babel/core": "^7.15.5", - "babel-preset-gatsby-package": "^2.19.0-next.0", + "babel-preset-gatsby-package": "^2.19.0-next.1", "cross-env": "^7.0.3" }, "peerDependencies": { diff --git a/packages/gatsby-plugin-facebook-analytics/package.json b/packages/gatsby-plugin-facebook-analytics/package.json index a3ac666c41e50..48ca324c3d0f2 100644 --- a/packages/gatsby-plugin-facebook-analytics/package.json +++ b/packages/gatsby-plugin-facebook-analytics/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-plugin-facebook-analytics", "description": "Gatsby plugin to add facebook analytics onto a site", - "version": "4.19.0-next.0", + "version": "4.19.0-next.1", "author": "Yeison Daza ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -12,7 +12,7 @@ "devDependencies": { "@babel/cli": "^7.15.4", "@babel/core": "^7.15.5", - "babel-preset-gatsby-package": "^2.19.0-next.0", + "babel-preset-gatsby-package": "^2.19.0-next.1", "cross-env": "^7.0.3" }, "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-facebook-analytics#readme", diff --git a/packages/gatsby-plugin-feed/package.json b/packages/gatsby-plugin-feed/package.json index dceb2a5d7673c..c24a3308a021e 100644 --- a/packages/gatsby-plugin-feed/package.json +++ b/packages/gatsby-plugin-feed/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-plugin-feed", "description": "Creates an RSS feed for your Gatsby site.", - "version": "4.19.0-next.0", + "version": "4.19.0-next.1", "author": "Nicholas Young ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -11,14 +11,14 @@ "@hapi/joi": "^15.1.1", "common-tags": "^1.8.2", "fs-extra": "^10.1.0", - "gatsby-plugin-utils": "^3.13.0-next.0", + "gatsby-plugin-utils": "^3.13.0-next.1", "lodash.merge": "^4.6.2", "rss": "^1.2.2" }, "devDependencies": { "@babel/cli": "^7.15.4", "@babel/core": "^7.15.5", - "babel-preset-gatsby-package": "^2.19.0-next.0", + "babel-preset-gatsby-package": "^2.19.0-next.1", "cross-env": "^7.0.3" }, "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-feed#readme", diff --git a/packages/gatsby-plugin-flow/package.json b/packages/gatsby-plugin-flow/package.json index ab03036fe6dff..37a35ae3f631a 100644 --- a/packages/gatsby-plugin-flow/package.json +++ b/packages/gatsby-plugin-flow/package.json @@ -1,6 +1,6 @@ { "name": "gatsby-plugin-flow", - "version": "3.19.0-next.1", + "version": "3.19.0-next.2", "description": "Provides drop-in support for Flow by adding @babel/preset-flow.", "main": "index.js", "scripts": { @@ -30,9 +30,9 @@ "devDependencies": { "@babel/cli": "^7.15.4", "@babel/core": "^7.15.5", - "babel-preset-gatsby-package": "^2.19.0-next.0", + "babel-preset-gatsby-package": "^2.19.0-next.1", "cross-env": "^7.0.3", - "gatsby-plugin-utils": "^3.13.0-next.0" + "gatsby-plugin-utils": "^3.13.0-next.1" }, "peerDependencies": { "gatsby": "^4.0.0-next" diff --git a/packages/gatsby-plugin-fullstory/package.json b/packages/gatsby-plugin-fullstory/package.json index 2bcad36271771..071c214feb525 100644 --- a/packages/gatsby-plugin-fullstory/package.json +++ b/packages/gatsby-plugin-fullstory/package.json @@ -1,6 +1,6 @@ { "name": "gatsby-plugin-fullstory", - "version": "4.19.0-next.0", + "version": "4.19.0-next.1", "description": "Plugin to add the tracking code for Fullstory.com", "main": "index.js", "scripts": { @@ -29,7 +29,7 @@ "devDependencies": { "@babel/cli": "^7.15.4", "@babel/core": "^7.15.5", - "babel-preset-gatsby-package": "^2.19.0-next.0", + "babel-preset-gatsby-package": "^2.19.0-next.1", "cross-env": "^7.0.3" }, "peerDependencies": { diff --git a/packages/gatsby-plugin-gatsby-cloud/package.json b/packages/gatsby-plugin-gatsby-cloud/package.json index 4d9b2ccb77ee0..5c3acaee4ddb1 100644 --- a/packages/gatsby-plugin-gatsby-cloud/package.json +++ b/packages/gatsby-plugin-gatsby-cloud/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-plugin-gatsby-cloud", "description": "A Gatsby plugin which optimizes working with Gatsby Cloud", - "version": "4.19.0-next.1", + "version": "4.19.0-next.2", "author": "Kyle Mathews ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -9,8 +9,8 @@ "dependencies": { "@babel/runtime": "^7.15.4", "fs-extra": "^10.1.0", - "gatsby-core-utils": "^3.19.0-next.0", - "gatsby-telemetry": "^3.19.0-next.1", + "gatsby-core-utils": "^3.19.0-next.1", + "gatsby-telemetry": "^3.19.0-next.2", "kebab-hash": "^0.1.2", "lodash": "^4.17.21", "webpack-assets-manifest": "^5.1.0" @@ -18,7 +18,7 @@ "devDependencies": { "@babel/cli": "^7.15.4", "@babel/core": "^7.15.5", - "babel-preset-gatsby-package": "^2.19.0-next.0", + "babel-preset-gatsby-package": "^2.19.0-next.1", "cpy-cli": "^3.1.1", "cross-env": "^7.0.3", "del-cli": "^3.0.1", diff --git a/packages/gatsby-plugin-google-analytics/package.json b/packages/gatsby-plugin-google-analytics/package.json index 096c6b682bb91..143201e99a838 100644 --- a/packages/gatsby-plugin-google-analytics/package.json +++ b/packages/gatsby-plugin-google-analytics/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-plugin-google-analytics", "description": "Gatsby plugin to add google analytics onto a site", - "version": "4.19.0-next.1", + "version": "4.19.0-next.2", "author": "Kyle Mathews ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -15,7 +15,7 @@ "@babel/cli": "^7.15.4", "@babel/core": "^7.15.5", "@testing-library/react": "^11.2.7", - "babel-preset-gatsby-package": "^2.19.0-next.0", + "babel-preset-gatsby-package": "^2.19.0-next.1", "cross-env": "^7.0.3" }, "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-google-analytics#readme", diff --git a/packages/gatsby-plugin-google-gtag/package.json b/packages/gatsby-plugin-google-gtag/package.json index 491a3752fe726..cdc7596a7f611 100644 --- a/packages/gatsby-plugin-google-gtag/package.json +++ b/packages/gatsby-plugin-google-gtag/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-plugin-google-gtag", "description": "Gatsby plugin to add google gtag onto a site", - "version": "4.19.0-next.1", + "version": "4.19.0-next.2", "author": "Tyler Buchea ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -13,7 +13,7 @@ "devDependencies": { "@babel/cli": "^7.15.4", "@babel/core": "^7.15.5", - "babel-preset-gatsby-package": "^2.19.0-next.0", + "babel-preset-gatsby-package": "^2.19.0-next.1", "cross-env": "^7.0.3" }, "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-google-gtag#readme", diff --git a/packages/gatsby-plugin-google-tagmanager/package.json b/packages/gatsby-plugin-google-tagmanager/package.json index 3fd6697f03fd1..bd3f6f3e76171 100644 --- a/packages/gatsby-plugin-google-tagmanager/package.json +++ b/packages/gatsby-plugin-google-tagmanager/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-plugin-google-tagmanager", "description": "Gatsby plugin to add google tagmanager onto a site", - "version": "4.19.0-next.0", + "version": "4.19.0-next.1", "author": "Thijs Koerselman ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -13,9 +13,9 @@ "devDependencies": { "@babel/cli": "^7.15.4", "@babel/core": "^7.15.5", - "babel-preset-gatsby-package": "^2.19.0-next.0", + "babel-preset-gatsby-package": "^2.19.0-next.1", "cross-env": "^7.0.3", - "gatsby-plugin-utils": "^3.13.0-next.0" + "gatsby-plugin-utils": "^3.13.0-next.1" }, "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-google-tagmanager#readme", "keywords": [ diff --git a/packages/gatsby-plugin-image/package.json b/packages/gatsby-plugin-image/package.json index 6f39eae5bdf7c..b07e7da25ea39 100644 --- a/packages/gatsby-plugin-image/package.json +++ b/packages/gatsby-plugin-image/package.json @@ -1,6 +1,6 @@ { "name": "gatsby-plugin-image", - "version": "2.19.0-next.1", + "version": "2.19.0-next.2", "scripts": { "build": "npm-run-all --npm-path npm -s clean -p build:*", "build:gatsby-node": "tsc --jsx react --downlevelIteration true --skipLibCheck true --esModuleInterop true --outDir dist/ src/gatsby-node.ts src/babel-plugin-parse-static-images.ts src/resolver-utils.ts src/types.d.ts -d --declarationDir dist/src", @@ -55,7 +55,7 @@ "cross-env": "^7.0.3", "cssnano": "^4.1.10", "del-cli": "^3.0.1", - "do-sync": "^3.0.11", + "do-sync": "^3.0.18", "microbundle": "^0.15.0", "npm-run-all": "^4.1.5", "postcss": "^8.2.9", @@ -77,13 +77,13 @@ "@babel/runtime": "^7.15.4", "@babel/traverse": "^7.15.4", "babel-jsx-utils": "^1.1.0", - "babel-plugin-remove-graphql-queries": "^4.19.0-next.0", + "babel-plugin-remove-graphql-queries": "^4.19.0-next.1", "camelcase": "^5.3.1", "chokidar": "^3.5.3", "common-tags": "^1.8.2", "fs-extra": "^10.1.0", - "gatsby-core-utils": "^3.19.0-next.0", - "gatsby-plugin-utils": "^3.13.0-next.0", + "gatsby-core-utils": "^3.19.0-next.1", + "gatsby-plugin-utils": "^3.13.0-next.1", "objectFitPolyfill": "^2.3.5", "prop-types": "^15.8.1" }, diff --git a/packages/gatsby-plugin-jss/package.json b/packages/gatsby-plugin-jss/package.json index f3d1c5165bb29..af18da703b72b 100644 --- a/packages/gatsby-plugin-jss/package.json +++ b/packages/gatsby-plugin-jss/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-plugin-jss", "description": "Gatsby plugin that adds SSR support for JSS", - "version": "4.19.0-next.0", + "version": "4.19.0-next.1", "author": "Vladimir Guguiev ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -12,7 +12,7 @@ "devDependencies": { "@babel/cli": "^7.15.4", "@babel/core": "^7.15.5", - "babel-preset-gatsby-package": "^2.19.0-next.0", + "babel-preset-gatsby-package": "^2.19.0-next.1", "cross-env": "^7.0.3" }, "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-jss#readme", diff --git a/packages/gatsby-plugin-layout/package.json b/packages/gatsby-plugin-layout/package.json index 0413477f17f9a..db19a3d1c3de1 100644 --- a/packages/gatsby-plugin-layout/package.json +++ b/packages/gatsby-plugin-layout/package.json @@ -1,6 +1,6 @@ { "name": "gatsby-plugin-layout", - "version": "3.19.0-next.0", + "version": "3.19.0-next.1", "description": "Reimplements the behavior of layout components in gatsby@1, which was removed in version 2.", "main": "index.js", "scripts": { @@ -29,7 +29,7 @@ "devDependencies": { "@babel/cli": "^7.15.4", "@babel/core": "^7.15.5", - "babel-preset-gatsby-package": "^2.19.0-next.0", + "babel-preset-gatsby-package": "^2.19.0-next.1", "cross-env": "^7.0.3" }, "peerDependencies": { diff --git a/packages/gatsby-plugin-less/package.json b/packages/gatsby-plugin-less/package.json index fc64a486eef16..23d889d7ebbb3 100644 --- a/packages/gatsby-plugin-less/package.json +++ b/packages/gatsby-plugin-less/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-plugin-less", "description": "Gatsby plugin to add support for using Less", - "version": "6.19.0-next.0", + "version": "6.19.0-next.1", "author": "monastic.panic@gmail.com", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -13,7 +13,7 @@ "devDependencies": { "@babel/cli": "^7.15.4", "@babel/core": "^7.15.5", - "babel-preset-gatsby-package": "^2.19.0-next.0", + "babel-preset-gatsby-package": "^2.19.0-next.1", "cross-env": "^7.0.3" }, "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-less#readme", diff --git a/packages/gatsby-plugin-lodash/package.json b/packages/gatsby-plugin-lodash/package.json index f5dc782216018..dac6e05f8eaa3 100644 --- a/packages/gatsby-plugin-lodash/package.json +++ b/packages/gatsby-plugin-lodash/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-plugin-lodash", "description": "Easy modular Lodash builds. Adds the Lodash webpack & Babel plugins to your Gatsby build", - "version": "5.19.0-next.0", + "version": "5.19.0-next.1", "author": "Kyle Mathews ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -14,7 +14,7 @@ "devDependencies": { "@babel/cli": "^7.15.4", "@babel/core": "^7.15.5", - "babel-preset-gatsby-package": "^2.19.0-next.0", + "babel-preset-gatsby-package": "^2.19.0-next.1", "cross-env": "^7.0.3" }, "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-lodash#readme", diff --git a/packages/gatsby-plugin-manifest/package.json b/packages/gatsby-plugin-manifest/package.json index 342379bb79ac3..ae4be2748910a 100644 --- a/packages/gatsby-plugin-manifest/package.json +++ b/packages/gatsby-plugin-manifest/package.json @@ -1,22 +1,22 @@ { "name": "gatsby-plugin-manifest", "description": "Gatsby plugin which adds a manifest.webmanifest to make sites progressive web apps", - "version": "4.19.0-next.0", + "version": "4.19.0-next.1", "author": "Kyle Mathews ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" }, "dependencies": { "@babel/runtime": "^7.15.4", - "gatsby-core-utils": "^3.19.0-next.0", - "gatsby-plugin-utils": "^3.13.0-next.0", + "gatsby-core-utils": "^3.19.0-next.1", + "gatsby-plugin-utils": "^3.13.0-next.1", "semver": "^7.3.7", "sharp": "^0.30.3" }, "devDependencies": { "@babel/cli": "^7.15.4", "@babel/core": "^7.15.5", - "babel-preset-gatsby-package": "^2.19.0-next.0", + "babel-preset-gatsby-package": "^2.19.0-next.1", "cross-env": "^7.0.3" }, "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-manifest#readme", diff --git a/packages/gatsby-plugin-mdx/package.json b/packages/gatsby-plugin-mdx/package.json index a94a31b2d600a..968e7c8742471 100644 --- a/packages/gatsby-plugin-mdx/package.json +++ b/packages/gatsby-plugin-mdx/package.json @@ -1,6 +1,6 @@ { "name": "gatsby-plugin-mdx", - "version": "3.19.0-next.0", + "version": "3.19.0-next.1", "description": "MDX integration for Gatsby", "main": "index.js", "license": "MIT", @@ -37,7 +37,7 @@ "escape-string-regexp": "^1.0.5", "eval": "^0.1.4", "fs-extra": "^10.1.0", - "gatsby-core-utils": "^3.19.0-next.0", + "gatsby-core-utils": "^3.19.0-next.1", "gray-matter": "^4.0.2", "json5": "^2.1.3", "loader-utils": "^1.4.0", @@ -63,7 +63,7 @@ "devDependencies": { "@mdx-js/mdx": "^1.6.16", "@mdx-js/react": "^1.6.16", - "gatsby-plugin-utils": "^3.13.0-next.0", + "gatsby-plugin-utils": "^3.13.0-next.1", "js-combinatorics": "^1.4.5", "react-test-renderer": "^16.13.1" }, diff --git a/packages/gatsby-plugin-netlify-cms/package.json b/packages/gatsby-plugin-netlify-cms/package.json index 81b357245c04b..46df62474e6cf 100644 --- a/packages/gatsby-plugin-netlify-cms/package.json +++ b/packages/gatsby-plugin-netlify-cms/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-plugin-netlify-cms", "description": "A Gatsby plugin which generates the Netlify CMS single page app", - "version": "6.19.0-next.0", + "version": "6.19.0-next.1", "author": "Shawn Erquhart ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -20,7 +20,7 @@ "devDependencies": { "@babel/cli": "^7.15.4", "@babel/core": "^7.15.5", - "babel-preset-gatsby-package": "^2.19.0-next.0", + "babel-preset-gatsby-package": "^2.19.0-next.1", "cross-env": "^7.0.3", "react": "^16.12.0", "react-dom": "^16.12.0" diff --git a/packages/gatsby-plugin-no-sourcemaps/package.json b/packages/gatsby-plugin-no-sourcemaps/package.json index 913b6336d8b29..6e5b58adc1cb3 100644 --- a/packages/gatsby-plugin-no-sourcemaps/package.json +++ b/packages/gatsby-plugin-no-sourcemaps/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-plugin-no-sourcemaps", "description": "Disable sourcemaps when building JavaScript", - "version": "4.19.0-next.0", + "version": "4.19.0-next.1", "author": "Stuart Taylor ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" diff --git a/packages/gatsby-plugin-nprogress/package.json b/packages/gatsby-plugin-nprogress/package.json index b0cffd74b1ad2..324697dfdf083 100644 --- a/packages/gatsby-plugin-nprogress/package.json +++ b/packages/gatsby-plugin-nprogress/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-plugin-nprogress", "description": "Shows page loading indicator when loading page resources is delayed", - "version": "4.19.0-next.0", + "version": "4.19.0-next.1", "author": "Kyle Mathews", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -13,7 +13,7 @@ "devDependencies": { "@babel/cli": "^7.15.4", "@babel/core": "^7.15.5", - "babel-preset-gatsby-package": "^2.19.0-next.0", + "babel-preset-gatsby-package": "^2.19.0-next.1", "cross-env": "^7.0.3" }, "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-nprogress#readme", diff --git a/packages/gatsby-plugin-offline/package.json b/packages/gatsby-plugin-offline/package.json index f6edf2ca3f1ee..b74ed45f04529 100644 --- a/packages/gatsby-plugin-offline/package.json +++ b/packages/gatsby-plugin-offline/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-plugin-offline", "description": "Gatsby plugin which sets up a site to be able to run offline", - "version": "5.19.0-next.0", + "version": "5.19.0-next.1", "author": "Kyle Mathews ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -9,7 +9,7 @@ "dependencies": { "@babel/runtime": "^7.15.4", "cheerio": "^1.0.0-rc.10", - "gatsby-core-utils": "^3.19.0-next.0", + "gatsby-core-utils": "^3.19.0-next.1", "glob": "^7.2.3", "idb-keyval": "^3.2.0", "lodash": "^4.17.21", @@ -18,10 +18,10 @@ "devDependencies": { "@babel/cli": "^7.15.4", "@babel/core": "^7.15.5", - "babel-preset-gatsby-package": "^2.19.0-next.0", + "babel-preset-gatsby-package": "^2.19.0-next.1", "cpy-cli": "^3.1.1", "cross-env": "^7.0.3", - "gatsby-plugin-utils": "^3.13.0-next.0", + "gatsby-plugin-utils": "^3.13.0-next.1", "rewire": "^6.0.0" }, "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-offline#readme", diff --git a/packages/gatsby-plugin-page-creator/package.json b/packages/gatsby-plugin-page-creator/package.json index 9d041ba1a550c..2f8caec2b5b1c 100644 --- a/packages/gatsby-plugin-page-creator/package.json +++ b/packages/gatsby-plugin-page-creator/package.json @@ -1,6 +1,6 @@ { "name": "gatsby-plugin-page-creator", - "version": "4.19.0-next.1", + "version": "4.19.0-next.2", "description": "Gatsby plugin that automatically creates pages from React components in specified directories", "main": "index.js", "scripts": { @@ -29,17 +29,17 @@ "@sindresorhus/slugify": "^1.1.2", "chokidar": "^3.5.3", "fs-exists-cached": "^1.0.0", - "gatsby-core-utils": "^3.19.0-next.0", - "gatsby-page-utils": "^2.19.0-next.0", - "gatsby-plugin-utils": "^3.13.0-next.0", - "gatsby-telemetry": "^3.19.0-next.1", + "gatsby-core-utils": "^3.19.0-next.1", + "gatsby-page-utils": "^2.19.0-next.1", + "gatsby-plugin-utils": "^3.13.0-next.1", + "gatsby-telemetry": "^3.19.0-next.2", "globby": "^11.1.0", "lodash": "^4.17.21" }, "devDependencies": { "@babel/cli": "^7.15.4", "@babel/core": "^7.15.5", - "babel-preset-gatsby-package": "^2.19.0-next.0", + "babel-preset-gatsby-package": "^2.19.0-next.1", "cross-env": "^7.0.3" }, "peerDependencies": { diff --git a/packages/gatsby-plugin-postcss/package.json b/packages/gatsby-plugin-postcss/package.json index 01ba7b3abf9ec..2cce5e951e574 100644 --- a/packages/gatsby-plugin-postcss/package.json +++ b/packages/gatsby-plugin-postcss/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-plugin-postcss", "description": "Gatsby plugin to handle PostCSS", - "version": "5.19.0-next.0", + "version": "5.19.0-next.1", "author": "Marat Dreizin ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -13,7 +13,7 @@ "devDependencies": { "@babel/cli": "^7.15.4", "@babel/core": "^7.15.5", - "babel-preset-gatsby-package": "^2.19.0-next.0", + "babel-preset-gatsby-package": "^2.19.0-next.1", "cross-env": "^7.0.3" }, "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-postcss#readme", diff --git a/packages/gatsby-plugin-preact/package.json b/packages/gatsby-plugin-preact/package.json index a50f85a5161a4..7386c3e30aab0 100644 --- a/packages/gatsby-plugin-preact/package.json +++ b/packages/gatsby-plugin-preact/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-plugin-preact", "description": "A Gatsby plugin which replaces React with Preact", - "version": "6.19.0-next.0", + "version": "6.19.0-next.1", "author": "Kyle Mathews ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -16,7 +16,7 @@ "@babel/cli": "^7.15.4", "@babel/core": "^7.15.5", "@pmmmwh/react-refresh-webpack-plugin": "^0.4.3", - "babel-preset-gatsby-package": "^2.19.0-next.0", + "babel-preset-gatsby-package": "^2.19.0-next.1", "cross-env": "^7.0.3", "preact": "^10.6.4" }, diff --git a/packages/gatsby-plugin-preload-fonts/package.json b/packages/gatsby-plugin-preload-fonts/package.json index 3a1aa0af69139..43f1b1000d717 100644 --- a/packages/gatsby-plugin-preload-fonts/package.json +++ b/packages/gatsby-plugin-preload-fonts/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-plugin-preload-fonts", "description": "Gatsby plugin for preloading fonts per page", - "version": "3.19.0-next.0", + "version": "3.19.0-next.1", "author": "Aaron Ross ", "main": "index.js", "bin": { @@ -15,7 +15,7 @@ "chalk": "^4.1.2", "date-fns": "^2.28.0", "fs-extra": "^10.1.0", - "gatsby-core-utils": "^3.19.0-next.0", + "gatsby-core-utils": "^3.19.0-next.1", "graphql-request": "^1.8.2", "progress": "^2.0.3", "puppeteer": "^3.3.0" @@ -23,7 +23,7 @@ "devDependencies": { "@babel/cli": "^7.15.4", "@babel/core": "^7.15.5", - "babel-preset-gatsby-package": "^2.19.0-next.0", + "babel-preset-gatsby-package": "^2.19.0-next.1", "cross-env": "^7.0.3", "del-cli": "^4.0.1" }, diff --git a/packages/gatsby-plugin-react-css-modules/package.json b/packages/gatsby-plugin-react-css-modules/package.json index bb0511661ed40..6db46d4ade04a 100644 --- a/packages/gatsby-plugin-react-css-modules/package.json +++ b/packages/gatsby-plugin-react-css-modules/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-plugin-react-css-modules", "description": "Gatsby plugin that transforms styleName to className using compile time CSS module resolution", - "version": "4.19.0-next.0", + "version": "4.19.0-next.1", "author": "Ming Aldrich-Gan ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -13,7 +13,7 @@ "devDependencies": { "@babel/cli": "^7.15.4", "@babel/core": "^7.15.5", - "babel-preset-gatsby-package": "^2.19.0-next.0", + "babel-preset-gatsby-package": "^2.19.0-next.1", "cross-env": "^7.0.3" }, "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-react-css-modules#readme", diff --git a/packages/gatsby-plugin-react-helmet/package.json b/packages/gatsby-plugin-react-helmet/package.json index 5c22a7c45e5e1..0c6176d8244a2 100644 --- a/packages/gatsby-plugin-react-helmet/package.json +++ b/packages/gatsby-plugin-react-helmet/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-plugin-react-helmet", "description": "Manage document head data with react-helmet. Provides drop-in server rendering support for Gatsby.", - "version": "5.19.0-next.0", + "version": "5.19.0-next.1", "author": "Kyle Mathews ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -12,7 +12,7 @@ "devDependencies": { "@babel/cli": "^7.15.4", "@babel/core": "^7.15.5", - "babel-preset-gatsby-package": "^2.19.0-next.0", + "babel-preset-gatsby-package": "^2.19.0-next.1", "cross-env": "^7.0.3" }, "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-react-helmet#readme", diff --git a/packages/gatsby-plugin-remove-trailing-slashes/package.json b/packages/gatsby-plugin-remove-trailing-slashes/package.json index 3fcd98bd6d0c4..3de9799c609fe 100644 --- a/packages/gatsby-plugin-remove-trailing-slashes/package.json +++ b/packages/gatsby-plugin-remove-trailing-slashes/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-plugin-remove-trailing-slashes", "description": "Removes trailing slashes from your project's paths. For example, yoursite.com/about/ becomes yoursite.com/about", - "version": "4.19.0-next.0", + "version": "4.19.0-next.1", "author": "scott.eckenthal@gmail.com", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -12,7 +12,7 @@ "devDependencies": { "@babel/cli": "^7.15.4", "@babel/core": "^7.15.5", - "babel-preset-gatsby-package": "^2.19.0-next.0", + "babel-preset-gatsby-package": "^2.19.0-next.1", "cross-env": "^7.0.3" }, "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-remove-trailing-slashes#readme", diff --git a/packages/gatsby-plugin-sass/package.json b/packages/gatsby-plugin-sass/package.json index 1b0bc2bd32e9f..41eec3d52673a 100644 --- a/packages/gatsby-plugin-sass/package.json +++ b/packages/gatsby-plugin-sass/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-plugin-sass", "description": "Gatsby plugin to handle SCSS/Sass files", - "version": "5.19.0-next.0", + "version": "5.19.0-next.1", "author": "Daniel Farrell ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -15,9 +15,9 @@ "@babel/cli": "^7.15.4", "@babel/core": "^7.15.5", "autoprefixer": "^10.4.7", - "babel-preset-gatsby-package": "^2.19.0-next.0", + "babel-preset-gatsby-package": "^2.19.0-next.1", "cross-env": "^7.0.3", - "gatsby-plugin-utils": "^3.13.0-next.0" + "gatsby-plugin-utils": "^3.13.0-next.1" }, "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-sass#readme", "keywords": [ diff --git a/packages/gatsby-plugin-schema-snapshot/package.json b/packages/gatsby-plugin-schema-snapshot/package.json index 7876514357e63..5553522e90472 100644 --- a/packages/gatsby-plugin-schema-snapshot/package.json +++ b/packages/gatsby-plugin-schema-snapshot/package.json @@ -1,6 +1,6 @@ { "name": "gatsby-plugin-schema-snapshot", - "version": "3.19.0-next.0", + "version": "3.19.0-next.1", "main": "index.js", "license": "MIT", "keywords": [ diff --git a/packages/gatsby-plugin-sharp/package.json b/packages/gatsby-plugin-sharp/package.json index ad6f2c266b51e..79efe00e826ed 100644 --- a/packages/gatsby-plugin-sharp/package.json +++ b/packages/gatsby-plugin-sharp/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-plugin-sharp", "description": "Wrapper of the Sharp image manipulation library for Gatsby plugins", - "version": "4.19.0-next.2", + "version": "4.19.0-next.3", "author": "Kyle Mathews ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -14,9 +14,9 @@ "debug": "^4.3.4", "filenamify": "^4.3.0", "fs-extra": "^10.1.0", - "gatsby-core-utils": "^3.19.0-next.0", - "gatsby-plugin-utils": "^3.13.0-next.0", - "gatsby-telemetry": "^3.19.0-next.1", + "gatsby-core-utils": "^3.19.0-next.1", + "gatsby-plugin-utils": "^3.13.0-next.1", + "gatsby-telemetry": "^3.19.0-next.2", "got": "^11.8.5", "lodash": "^4.17.21", "mini-svg-data-uri": "^1.4.4", @@ -30,9 +30,9 @@ "@babel/cli": "^7.15.4", "@babel/core": "^7.15.5", "@types/sharp": "^0.30.0", - "babel-preset-gatsby-package": "^2.19.0-next.0", + "babel-preset-gatsby-package": "^2.19.0-next.1", "cross-env": "^7.0.3", - "gatsby-plugin-image": "^2.19.0-next.1" + "gatsby-plugin-image": "^2.19.0-next.2" }, "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-sharp#readme", "keywords": [ diff --git a/packages/gatsby-plugin-sitemap/package.json b/packages/gatsby-plugin-sitemap/package.json index ad8e196dacaa6..9c4bc8100410f 100644 --- a/packages/gatsby-plugin-sitemap/package.json +++ b/packages/gatsby-plugin-sitemap/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-plugin-sitemap", "description": "Gatsby plugin that automatically creates a sitemap for your site", - "version": "5.19.0-next.1", + "version": "5.19.0-next.2", "contributors": [ "Alex Moon ", "Nicholas Young " @@ -18,9 +18,9 @@ "devDependencies": { "@babel/cli": "^7.15.4", "@babel/core": "^7.15.5", - "babel-preset-gatsby-package": "^2.19.0-next.0", + "babel-preset-gatsby-package": "^2.19.0-next.1", "cross-env": "^7.0.3", - "gatsby-plugin-utils": "^3.13.0-next.0" + "gatsby-plugin-utils": "^3.13.0-next.1" }, "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-sitemap#readme", "keywords": [ diff --git a/packages/gatsby-plugin-styled-components/package.json b/packages/gatsby-plugin-styled-components/package.json index 9d738d2e17089..71588cb22ceec 100644 --- a/packages/gatsby-plugin-styled-components/package.json +++ b/packages/gatsby-plugin-styled-components/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-plugin-styled-components", "description": "Gatsby plugin to add support for styled components", - "version": "5.19.0-next.1", + "version": "5.19.0-next.2", "author": "Guten Ye ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -12,7 +12,7 @@ "devDependencies": { "@babel/cli": "^7.15.4", "@babel/core": "^7.15.5", - "babel-preset-gatsby-package": "^2.19.0-next.0", + "babel-preset-gatsby-package": "^2.19.0-next.1", "cross-env": "^7.0.3" }, "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-styled-components#readme", diff --git a/packages/gatsby-plugin-styled-jsx/package.json b/packages/gatsby-plugin-styled-jsx/package.json index 4163c3958e4b6..93a7940f79bfd 100644 --- a/packages/gatsby-plugin-styled-jsx/package.json +++ b/packages/gatsby-plugin-styled-jsx/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-plugin-styled-jsx", "description": "Adds SSR support for styled-jsx", - "version": "5.19.0-next.0", + "version": "5.19.0-next.1", "author": "Tim Suchanek ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -12,7 +12,7 @@ "devDependencies": { "@babel/cli": "^7.15.4", "@babel/core": "^7.15.5", - "babel-preset-gatsby-package": "^2.19.0-next.0", + "babel-preset-gatsby-package": "^2.19.0-next.1", "cross-env": "^7.0.3" }, "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-styled-jsx#readme", diff --git a/packages/gatsby-plugin-styletron/package.json b/packages/gatsby-plugin-styletron/package.json index e6ea15c3a21cd..bdb48de5c1741 100644 --- a/packages/gatsby-plugin-styletron/package.json +++ b/packages/gatsby-plugin-styletron/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-plugin-styletron", "description": "A Gatsby plugin for styletron with built-in server-side rendering support", - "version": "7.19.0-next.0", + "version": "7.19.0-next.1", "author": "Nadiia Dmytrenko ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -12,7 +12,7 @@ "devDependencies": { "@babel/cli": "^7.15.4", "@babel/core": "^7.15.5", - "babel-preset-gatsby-package": "^2.19.0-next.0", + "babel-preset-gatsby-package": "^2.19.0-next.1", "cross-env": "^7.0.3", "styletron-engine-atomic": "^1.4.8", "styletron-react": "^6.0.2" diff --git a/packages/gatsby-plugin-stylus/package.json b/packages/gatsby-plugin-stylus/package.json index 7dfaaa9aa870e..b26a69f7f364d 100644 --- a/packages/gatsby-plugin-stylus/package.json +++ b/packages/gatsby-plugin-stylus/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-plugin-stylus", "description": "Gatsby support for Stylus", - "version": "4.19.0-next.0", + "version": "4.19.0-next.1", "author": "Ian Sinnott ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -14,7 +14,7 @@ "devDependencies": { "@babel/cli": "^7.15.4", "@babel/core": "^7.15.5", - "babel-preset-gatsby-package": "^2.19.0-next.0", + "babel-preset-gatsby-package": "^2.19.0-next.1", "cross-env": "^7.0.3" }, "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-stylus#readme", diff --git a/packages/gatsby-plugin-subfont/package.json b/packages/gatsby-plugin-subfont/package.json index dc796a563c677..ad393cb0690ff 100644 --- a/packages/gatsby-plugin-subfont/package.json +++ b/packages/gatsby-plugin-subfont/package.json @@ -1,6 +1,6 @@ { "name": "gatsby-plugin-subfont", - "version": "4.19.0-next.0", + "version": "4.19.0-next.1", "description": "Runs the font delivery optimizing CLI tool subfont on the homepage of your site during the Gatsby build", "main": "index.js", "scripts": { @@ -30,7 +30,7 @@ "devDependencies": { "@babel/cli": "^7.15.4", "@babel/core": "^7.15.5", - "babel-preset-gatsby-package": "^2.19.0-next.0", + "babel-preset-gatsby-package": "^2.19.0-next.1", "cross-env": "^7.0.3" }, "peerDependencies": { diff --git a/packages/gatsby-plugin-twitter/package.json b/packages/gatsby-plugin-twitter/package.json index 829674059352f..72f50b64b0d97 100644 --- a/packages/gatsby-plugin-twitter/package.json +++ b/packages/gatsby-plugin-twitter/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-plugin-twitter", "description": "Loads the Twitter JavaScript for embedding tweets.", - "version": "4.19.0-next.0", + "version": "4.19.0-next.1", "author": "Kyle Mathews ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -12,9 +12,9 @@ "devDependencies": { "@babel/cli": "^7.15.4", "@babel/core": "^7.15.5", - "babel-preset-gatsby-package": "^2.19.0-next.0", + "babel-preset-gatsby-package": "^2.19.0-next.1", "cross-env": "^7.0.3", - "gatsby-plugin-utils": "^3.13.0-next.0" + "gatsby-plugin-utils": "^3.13.0-next.1" }, "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-twitter#readme", "keywords": [ diff --git a/packages/gatsby-plugin-typescript/package.json b/packages/gatsby-plugin-typescript/package.json index 33ebd888d3b56..f2fdb2a0bb818 100644 --- a/packages/gatsby-plugin-typescript/package.json +++ b/packages/gatsby-plugin-typescript/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-plugin-typescript", "description": "Adds TypeScript support to Gatsby", - "version": "4.19.0-next.0", + "version": "4.19.0-next.1", "author": "Kyle Mathews ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -16,12 +16,12 @@ "@babel/plugin-proposal-optional-chaining": "^7.14.5", "@babel/preset-typescript": "^7.15.0", "@babel/runtime": "^7.15.4", - "babel-plugin-remove-graphql-queries": "^4.19.0-next.0" + "babel-plugin-remove-graphql-queries": "^4.19.0-next.1" }, "devDependencies": { "@babel/cli": "^7.15.4", "@babel/core": "^7.15.5", - "babel-preset-gatsby-package": "^2.19.0-next.0", + "babel-preset-gatsby-package": "^2.19.0-next.1", "cross-env": "^7.0.3" }, "peerDependencies": { diff --git a/packages/gatsby-plugin-typography/package.json b/packages/gatsby-plugin-typography/package.json index 09eb115139d85..921c903fe3241 100644 --- a/packages/gatsby-plugin-typography/package.json +++ b/packages/gatsby-plugin-typography/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-plugin-typography", "description": "Gatsby plugin to setup server rendering of Typography.js' CSS", - "version": "4.19.0-next.1", + "version": "4.19.0-next.2", "author": "Kyle Mathews ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -12,7 +12,7 @@ "devDependencies": { "@babel/cli": "^7.15.4", "@babel/core": "^7.15.5", - "babel-preset-gatsby-package": "^2.19.0-next.0", + "babel-preset-gatsby-package": "^2.19.0-next.1", "cross-env": "^7.0.3", "react": "^16.12.0", "react-dom": "^16.12.0", diff --git a/packages/gatsby-plugin-utils/package.json b/packages/gatsby-plugin-utils/package.json index 6760908faddc7..da7d21556a2e3 100644 --- a/packages/gatsby-plugin-utils/package.json +++ b/packages/gatsby-plugin-utils/package.json @@ -1,6 +1,6 @@ { "name": "gatsby-plugin-utils", - "version": "3.13.0-next.0", + "version": "3.13.0-next.1", "description": "Gatsby utils that help creating plugins", "main": "dist/index.js", "exports": { @@ -49,8 +49,8 @@ "@babel/runtime": "^7.15.4", "@gatsbyjs/potrace": "^2.2.0", "fs-extra": "^10.1.0", - "gatsby-core-utils": "^3.19.0-next.0", - "gatsby-sharp": "^0.13.0-next.0", + "gatsby-core-utils": "^3.19.0-next.1", + "gatsby-sharp": "^0.13.0-next.1", "graphql-compose": "^9.0.7", "import-from": "^4.0.0", "joi": "^17.4.2", @@ -61,7 +61,7 @@ "devDependencies": { "@babel/cli": "^7.15.4", "@babel/core": "^7.15.5", - "babel-preset-gatsby-package": "^2.19.0-next.0", + "babel-preset-gatsby-package": "^2.19.0-next.1", "cross-env": "^7.0.3", "msw": "^0.42.3", "rimraf": "^3.0.2", diff --git a/packages/gatsby-react-router-scroll/package.json b/packages/gatsby-react-router-scroll/package.json index b8032cc90a443..92401c1645edc 100644 --- a/packages/gatsby-react-router-scroll/package.json +++ b/packages/gatsby-react-router-scroll/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-react-router-scroll", "description": "React Router scroll management forked from https://github.com/ytase/react-router-scroll for Gatsby", - "version": "5.19.0-next.0", + "version": "5.19.0-next.1", "author": "Jimmy Jia", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -14,7 +14,7 @@ "@babel/cli": "^7.15.4", "@babel/core": "^7.15.5", "babel-plugin-dev-expression": "^0.2.3", - "babel-preset-gatsby-package": "^2.19.0-next.0", + "babel-preset-gatsby-package": "^2.19.0-next.1", "cross-env": "^7.0.3", "history": "^5.0.1" }, diff --git a/packages/gatsby-remark-autolink-headers/package.json b/packages/gatsby-remark-autolink-headers/package.json index f69953d3d8fc0..80836b9abd1af 100644 --- a/packages/gatsby-remark-autolink-headers/package.json +++ b/packages/gatsby-remark-autolink-headers/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-remark-autolink-headers", "description": "Gatsby plugin to autolink headers in markdown processed by Remark", - "version": "5.19.0-next.0", + "version": "5.19.0-next.1", "author": "Kyle Mathews ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -16,9 +16,9 @@ "devDependencies": { "@babel/cli": "^7.15.4", "@babel/core": "^7.15.5", - "babel-preset-gatsby-package": "^2.19.0-next.0", + "babel-preset-gatsby-package": "^2.19.0-next.1", "cross-env": "^7.0.3", - "gatsby-plugin-utils": "^3.13.0-next.0" + "gatsby-plugin-utils": "^3.13.0-next.1" }, "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-remark-autolink-headers#readme", "keywords": [ diff --git a/packages/gatsby-remark-code-repls/package.json b/packages/gatsby-remark-code-repls/package.json index 88216b5384367..a2c81d2eea48b 100644 --- a/packages/gatsby-remark-code-repls/package.json +++ b/packages/gatsby-remark-code-repls/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-remark-code-repls", "description": "Gatsby plugin to auto-generate links to popular REPLs like Babel and Codepen", - "version": "6.19.0-next.0", + "version": "6.19.0-next.1", "author": "Brian Vaughn ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -18,7 +18,7 @@ "devDependencies": { "@babel/cli": "^7.15.4", "@babel/core": "^7.15.5", - "babel-preset-gatsby-package": "^2.19.0-next.0", + "babel-preset-gatsby-package": "^2.19.0-next.1", "cross-env": "^7.0.3" }, "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-remark-code-repls#readme", diff --git a/packages/gatsby-remark-copy-linked-files/package.json b/packages/gatsby-remark-copy-linked-files/package.json index 8d23a16f5f924..bd4f02691e4f1 100644 --- a/packages/gatsby-remark-copy-linked-files/package.json +++ b/packages/gatsby-remark-copy-linked-files/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-remark-copy-linked-files", "description": "Find files which are linked to from markdown and copy them to the public directory", - "version": "5.19.0-next.0", + "version": "5.19.0-next.1", "author": "Kyle Mathews ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -19,7 +19,7 @@ "devDependencies": { "@babel/cli": "^7.15.4", "@babel/core": "^7.15.5", - "babel-preset-gatsby-package": "^2.19.0-next.0", + "babel-preset-gatsby-package": "^2.19.0-next.1", "cross-env": "^7.0.3", "remark": "^13.0.0", "remark-mdx": "^1.6.22" diff --git a/packages/gatsby-remark-custom-blocks/package.json b/packages/gatsby-remark-custom-blocks/package.json index f55604ed6d09c..732a90e359383 100644 --- a/packages/gatsby-remark-custom-blocks/package.json +++ b/packages/gatsby-remark-custom-blocks/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-remark-custom-blocks", "description": "Gatsby remark plugin for adding custom blocks in markdown", - "version": "4.19.0-next.0", + "version": "4.19.0-next.1", "author": "Mohammad Asad Mohammad ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -13,7 +13,7 @@ "devDependencies": { "@babel/cli": "^7.15.4", "@babel/core": "^7.15.5", - "babel-preset-gatsby-package": "^2.19.0-next.0", + "babel-preset-gatsby-package": "^2.19.0-next.1", "cross-env": "^7.0.3", "rimraf": "^3.0.2", "unist-util-find": "^1.0.2" diff --git a/packages/gatsby-remark-embed-snippet/package.json b/packages/gatsby-remark-embed-snippet/package.json index ac026acbc14ec..146731d7170c2 100644 --- a/packages/gatsby-remark-embed-snippet/package.json +++ b/packages/gatsby-remark-embed-snippet/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-remark-embed-snippet", "description": "Gatsby plugin to embed formatted code snippets within markdown", - "version": "7.19.0-next.0", + "version": "7.19.0-next.1", "author": "Brian Vaughn ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -15,7 +15,7 @@ "devDependencies": { "@babel/cli": "^7.15.4", "@babel/core": "^7.15.5", - "babel-preset-gatsby-package": "^2.19.0-next.0", + "babel-preset-gatsby-package": "^2.19.0-next.1", "cross-env": "^7.0.3" }, "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-remark-embed-snippet#readme", diff --git a/packages/gatsby-remark-graphviz/package.json b/packages/gatsby-remark-graphviz/package.json index d8c274d3a0f83..e5f1e24470d59 100644 --- a/packages/gatsby-remark-graphviz/package.json +++ b/packages/gatsby-remark-graphviz/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-remark-graphviz", "description": "Processes graphviz code blocks and renders to SVG using viz.js", - "version": "4.19.0-next.0", + "version": "4.19.0-next.1", "author": "Anthony Marcar ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -15,7 +15,7 @@ "devDependencies": { "@babel/cli": "^7.15.4", "@babel/core": "^7.15.5", - "babel-preset-gatsby-package": "^2.19.0-next.0", + "babel-preset-gatsby-package": "^2.19.0-next.1", "cross-env": "^7.0.3", "hast-util-to-html": "^7.1.3", "mdast-util-to-hast": "^10.2.0", diff --git a/packages/gatsby-remark-images-contentful/package.json b/packages/gatsby-remark-images-contentful/package.json index 64d52bdf0e24e..6c01e19ac9fb2 100644 --- a/packages/gatsby-remark-images-contentful/package.json +++ b/packages/gatsby-remark-images-contentful/package.json @@ -1,6 +1,6 @@ { "name": "gatsby-remark-images-contentful", - "version": "5.19.0-next.0", + "version": "5.19.0-next.1", "description": "Process Images in Contentful markdown so they can use the images API.", "main": "index.js", "scripts": { @@ -28,7 +28,7 @@ "devDependencies": { "@babel/cli": "^7.15.4", "@babel/core": "^7.15.5", - "babel-preset-gatsby-package": "^2.19.0-next.0", + "babel-preset-gatsby-package": "^2.19.0-next.1", "cross-env": "^7.0.3" }, "keywords": [ diff --git a/packages/gatsby-remark-images/package.json b/packages/gatsby-remark-images/package.json index 3a64d274c223a..9675a53be9b61 100644 --- a/packages/gatsby-remark-images/package.json +++ b/packages/gatsby-remark-images/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-remark-images", "description": "Processes images in markdown so they can be used in the production build.", - "version": "6.19.0-next.1", + "version": "6.19.0-next.2", "author": "Kyle Mathews ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -11,7 +11,7 @@ "@gatsbyjs/potrace": "^2.2.0", "chalk": "^4.1.2", "cheerio": "^1.0.0-rc.10", - "gatsby-core-utils": "^3.19.0-next.0", + "gatsby-core-utils": "^3.19.0-next.1", "is-relative-url": "^3.0.0", "lodash": "^4.17.21", "mdast-util-definitions": "^4.0.0", @@ -22,9 +22,9 @@ "devDependencies": { "@babel/cli": "^7.15.4", "@babel/core": "^7.15.5", - "babel-preset-gatsby-package": "^2.19.0-next.0", + "babel-preset-gatsby-package": "^2.19.0-next.1", "cross-env": "^7.0.3", - "gatsby-plugin-utils": "^3.13.0-next.0", + "gatsby-plugin-utils": "^3.13.0-next.1", "hast-util-to-html": "^7.1.3", "mdast-util-to-hast": "^10.2.0" }, diff --git a/packages/gatsby-remark-katex/package.json b/packages/gatsby-remark-katex/package.json index 9596cd0fbfd6c..69a6f45bed8b4 100644 --- a/packages/gatsby-remark-katex/package.json +++ b/packages/gatsby-remark-katex/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-remark-katex", "description": "Transform math nodes to html markup", - "version": "6.19.0-next.1", + "version": "6.19.0-next.2", "author": "Jeffrey Xiao ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -16,7 +16,7 @@ "devDependencies": { "@babel/cli": "^7.15.4", "@babel/core": "^7.15.5", - "babel-preset-gatsby-package": "^2.19.0-next.0", + "babel-preset-gatsby-package": "^2.19.0-next.1", "cross-env": "^7.0.3", "katex": "^0.13.18", "remark": "^13.0.0" diff --git a/packages/gatsby-remark-prismjs/package.json b/packages/gatsby-remark-prismjs/package.json index d81ad77632e2b..3f80a62a1b1d9 100644 --- a/packages/gatsby-remark-prismjs/package.json +++ b/packages/gatsby-remark-prismjs/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-remark-prismjs", "description": "Adds syntax highlighting to code blocks at build time using PrismJS", - "version": "6.19.0-next.0", + "version": "6.19.0-next.1", "author": "Kyle Mathews ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -14,7 +14,7 @@ "devDependencies": { "@babel/cli": "^7.15.4", "@babel/core": "^7.15.5", - "babel-preset-gatsby-package": "^2.19.0-next.0", + "babel-preset-gatsby-package": "^2.19.0-next.1", "cheerio": "^1.0.0-rc.10", "cross-env": "^7.0.3", "prismjs": "^1.21.0", diff --git a/packages/gatsby-remark-responsive-iframe/package.json b/packages/gatsby-remark-responsive-iframe/package.json index ad74332d493e8..f77d8d0009988 100644 --- a/packages/gatsby-remark-responsive-iframe/package.json +++ b/packages/gatsby-remark-responsive-iframe/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-remark-responsive-iframe", "description": "Make iframes in Markdown processed by Remark responsive", - "version": "5.19.0-next.0", + "version": "5.19.0-next.1", "author": "Kyle Mathews ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -16,7 +16,7 @@ "devDependencies": { "@babel/cli": "^7.15.4", "@babel/core": "^7.15.5", - "babel-preset-gatsby-package": "^2.19.0-next.0", + "babel-preset-gatsby-package": "^2.19.0-next.1", "cross-env": "^7.0.3", "remark": "^13.0.0", "remark-mdx": "^1.6.22", diff --git a/packages/gatsby-remark-smartypants/package.json b/packages/gatsby-remark-smartypants/package.json index 1e43820050841..d1bd430c2fc57 100644 --- a/packages/gatsby-remark-smartypants/package.json +++ b/packages/gatsby-remark-smartypants/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-remark-smartypants", "description": "Use retext-smartypants to auto-enhance typography of markdown", - "version": "5.19.0-next.0", + "version": "5.19.0-next.1", "author": "Kyle Mathews ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -15,7 +15,7 @@ "devDependencies": { "@babel/cli": "^7.15.4", "@babel/core": "^7.15.5", - "babel-preset-gatsby-package": "^2.19.0-next.0", + "babel-preset-gatsby-package": "^2.19.0-next.1", "cross-env": "^7.0.3" }, "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-remark-smartypants#readme", diff --git a/packages/gatsby-script/package.json b/packages/gatsby-script/package.json index 6e4975275b50c..b027243a9d5eb 100644 --- a/packages/gatsby-script/package.json +++ b/packages/gatsby-script/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-script", "description": "An enhanced script component for Gatsby sites with support for various loading strategies", - "version": "1.4.0-next.1", + "version": "1.4.0-next.2", "author": "Ty Hopp ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" diff --git a/packages/gatsby-sharp/package.json b/packages/gatsby-sharp/package.json index 97c0a08e77d07..dec3febdffd94 100644 --- a/packages/gatsby-sharp/package.json +++ b/packages/gatsby-sharp/package.json @@ -1,6 +1,6 @@ { "name": "gatsby-sharp", - "version": "0.13.0-next.0", + "version": "0.13.0-next.1", "sideEffects": false, "keywords": [ "gatsby", diff --git a/packages/gatsby-source-contentful/package.json b/packages/gatsby-source-contentful/package.json index a40dcab06a5f5..7e5f569aa1c45 100644 --- a/packages/gatsby-source-contentful/package.json +++ b/packages/gatsby-source-contentful/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-source-contentful", "description": "Gatsby source plugin for building websites using the Contentful CMS as a data source", - "version": "7.17.0-next.1", + "version": "7.17.0-next.2", "author": "Marcus Ericsson (mericsson.com)", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -17,9 +17,9 @@ "common-tags": "^1.8.2", "contentful": "^8.5.8", "fs-extra": "^10.1.0", - "gatsby-core-utils": "^3.19.0-next.0", - "gatsby-plugin-utils": "^3.13.0-next.0", - "gatsby-source-filesystem": "^4.19.0-next.0", + "gatsby-core-utils": "^3.19.0-next.1", + "gatsby-plugin-utils": "^3.13.0-next.1", + "gatsby-source-filesystem": "^4.19.0-next.1", "is-online": "^8.5.1", "json-stringify-safe": "^5.0.1", "lodash": "^4.17.21", @@ -32,7 +32,7 @@ "devDependencies": { "@babel/cli": "^7.15.4", "@babel/core": "^7.15.5", - "babel-preset-gatsby-package": "^2.19.0-next.0", + "babel-preset-gatsby-package": "^2.19.0-next.1", "cross-env": "^7.0.3", "nock": "^13.2.4" }, diff --git a/packages/gatsby-source-drupal/package.json b/packages/gatsby-source-drupal/package.json index 4cecd9e95f6ea..e1a8952a27757 100644 --- a/packages/gatsby-source-drupal/package.json +++ b/packages/gatsby-source-drupal/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-source-drupal", "description": "Gatsby source plugin for building websites using the Drupal CMS as a data source", - "version": "5.20.0-next.0", + "version": "5.20.0-next.1", "author": "Kyle Mathews ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -13,8 +13,8 @@ "bluebird": "^3.7.2", "body-parser": "^1.20.0", "fastq": "^1.13.0", - "gatsby-plugin-utils": "^3.13.0-next.0", - "gatsby-source-filesystem": "^4.19.0-next.0", + "gatsby-plugin-utils": "^3.13.0-next.1", + "gatsby-source-filesystem": "^4.19.0-next.1", "got": "^11.8.5", "http2-wrapper": "^2.1.11", "lodash": "^4.17.21", @@ -26,7 +26,7 @@ "devDependencies": { "@babel/cli": "^7.15.4", "@babel/core": "^7.15.5", - "babel-preset-gatsby-package": "^2.19.0-next.0", + "babel-preset-gatsby-package": "^2.19.0-next.1", "cross-env": "^7.0.3" }, "engines": { diff --git a/packages/gatsby-source-faker/package.json b/packages/gatsby-source-faker/package.json index fc88eecb43060..8aac13defa83f 100644 --- a/packages/gatsby-source-faker/package.json +++ b/packages/gatsby-source-faker/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-source-faker", "description": "A gatsby plugin to get fake data for testing", - "version": "4.19.0-next.1", + "version": "4.19.0-next.2", "author": "Pavithra Kodmad", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -13,7 +13,7 @@ "devDependencies": { "@babel/cli": "^7.15.4", "@babel/core": "^7.15.5", - "babel-preset-gatsby-package": "^2.19.0-next.0", + "babel-preset-gatsby-package": "^2.19.0-next.1", "cross-env": "^7.0.3" }, "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-source-faker#readme", diff --git a/packages/gatsby-source-filesystem/package.json b/packages/gatsby-source-filesystem/package.json index 12119357d9d08..e7c14c5f8320e 100644 --- a/packages/gatsby-source-filesystem/package.json +++ b/packages/gatsby-source-filesystem/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-source-filesystem", "description": "Gatsby source plugin for building websites from local data. Markdown, JSON, images, YAML, CSV, and dozens of other data types supported.", - "version": "4.19.0-next.0", + "version": "4.19.0-next.1", "author": "Kyle Mathews ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -11,7 +11,7 @@ "chokidar": "^3.5.3", "file-type": "^16.5.3", "fs-extra": "^10.1.0", - "gatsby-core-utils": "^3.19.0-next.0", + "gatsby-core-utils": "^3.19.0-next.1", "got": "^9.6.0", "md5-file": "^5.0.0", "mime": "^2.5.2", @@ -23,7 +23,7 @@ "devDependencies": { "@babel/cli": "^7.15.4", "@babel/core": "^7.15.5", - "babel-preset-gatsby-package": "^2.19.0-next.0", + "babel-preset-gatsby-package": "^2.19.0-next.1", "cross-env": "^7.0.3" }, "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-source-filesystem#readme", diff --git a/packages/gatsby-source-graphql/package.json b/packages/gatsby-source-graphql/package.json index d8b56de4ee77d..3ffe521f1e8e3 100644 --- a/packages/gatsby-source-graphql/package.json +++ b/packages/gatsby-source-graphql/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-source-graphql", "description": "Gatsby plugin which adds a third-party GraphQL API to Gatsby GraphQL", - "version": "4.19.0-next.0", + "version": "4.19.0-next.1", "author": "Mikhail Novikov ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -13,14 +13,14 @@ "@graphql-tools/utils": "^8.6.9", "@graphql-tools/wrap": "^8.3.3", "dataloader": "^2.0.0", - "gatsby-core-utils": "^3.19.0-next.0", + "gatsby-core-utils": "^3.19.0-next.1", "invariant": "^2.2.4", "node-fetch": "^2.6.7" }, "devDependencies": { "@babel/cli": "^7.15.4", "@babel/core": "^7.15.5", - "babel-preset-gatsby-package": "^2.19.0-next.0", + "babel-preset-gatsby-package": "^2.19.0-next.1", "cross-env": "^7.0.3" }, "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-source-graphql#readme", diff --git a/packages/gatsby-source-hacker-news/package.json b/packages/gatsby-source-hacker-news/package.json index 18246beaa793d..13e1715a57627 100644 --- a/packages/gatsby-source-hacker-news/package.json +++ b/packages/gatsby-source-hacker-news/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-source-hacker-news", "description": "Gatsby source plugin for building websites using Hacker News as a data source", - "version": "4.19.0-next.0", + "version": "4.19.0-next.1", "author": "Kyle Mathews ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -14,7 +14,7 @@ "devDependencies": { "@babel/cli": "^7.15.4", "@babel/core": "^7.15.5", - "babel-preset-gatsby-package": "^2.19.0-next.0", + "babel-preset-gatsby-package": "^2.19.0-next.1", "cross-env": "^7.0.3" }, "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-source-hacker-news#readme", diff --git a/packages/gatsby-source-lever/package.json b/packages/gatsby-source-lever/package.json index aa9582a0cc673..87d47eb77822c 100644 --- a/packages/gatsby-source-lever/package.json +++ b/packages/gatsby-source-lever/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-source-lever", "description": "Gatsby source plugin for building websites using the Lever.co Recruitment Software as a data source.", - "version": "4.19.0-next.0", + "version": "4.19.0-next.1", "author": "Sebastien Fichot ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -20,7 +20,7 @@ "devDependencies": { "@babel/cli": "^7.15.4", "@babel/core": "^7.15.5", - "babel-preset-gatsby-package": "^2.19.0-next.0", + "babel-preset-gatsby-package": "^2.19.0-next.1", "cross-env": "^7.0.3" }, "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-source-lever#readme", diff --git a/packages/gatsby-source-medium/package.json b/packages/gatsby-source-medium/package.json index 51c4312280bf3..ddec1595e1b45 100644 --- a/packages/gatsby-source-medium/package.json +++ b/packages/gatsby-source-medium/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-source-medium", "description": "Gatsby source plugin for building websites using Medium as a data source", - "version": "4.19.0-next.0", + "version": "4.19.0-next.1", "author": "Robert Vogt ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -13,7 +13,7 @@ "devDependencies": { "@babel/cli": "^7.15.4", "@babel/core": "^7.15.5", - "babel-preset-gatsby-package": "^2.19.0-next.0", + "babel-preset-gatsby-package": "^2.19.0-next.1", "cross-env": "^7.0.3" }, "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-source-medium#readme", diff --git a/packages/gatsby-source-mongodb/package.json b/packages/gatsby-source-mongodb/package.json index c74791ce48664..1f76533ed2d51 100644 --- a/packages/gatsby-source-mongodb/package.json +++ b/packages/gatsby-source-mongodb/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-source-mongodb", "description": "Source plugin for pulling data into Gatsby from MongoDB collections", - "version": "4.19.0-next.1", + "version": "4.19.0-next.2", "authors": [ "jhermans85@hotmail.com", "hi@elmar.codes" @@ -19,7 +19,7 @@ "devDependencies": { "@babel/cli": "^7.15.4", "@babel/core": "^7.15.5", - "babel-preset-gatsby-package": "^2.19.0-next.0", + "babel-preset-gatsby-package": "^2.19.0-next.1", "cross-env": "^7.0.3" }, "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-source-mongodb#readme", diff --git a/packages/gatsby-source-npm-package-search/package.json b/packages/gatsby-source-npm-package-search/package.json index a2603c38bbcbc..ae16fd61ed111 100644 --- a/packages/gatsby-source-npm-package-search/package.json +++ b/packages/gatsby-source-npm-package-search/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-source-npm-package-search", "description": "Search NPM packages and pull NPM & GitHub metadata from Algolia's NPM index", - "version": "4.19.0-next.0", + "version": "4.19.0-next.1", "author": "james.a.stack@gmail.com", "repository": { "type": "git", @@ -17,7 +17,7 @@ "devDependencies": { "@babel/cli": "^7.15.4", "@babel/core": "^7.15.5", - "babel-preset-gatsby-package": "^2.19.0-next.0", + "babel-preset-gatsby-package": "^2.19.0-next.1", "cross-env": "^7.0.3" }, "keywords": [ diff --git a/packages/gatsby-source-shopify/package.json b/packages/gatsby-source-shopify/package.json index 5f683a7460055..8aca1ac6b9063 100644 --- a/packages/gatsby-source-shopify/package.json +++ b/packages/gatsby-source-shopify/package.json @@ -1,6 +1,6 @@ { "name": "gatsby-source-shopify", - "version": "7.8.0-next.1", + "version": "7.8.0-next.2", "description": "Gatsby source plugin for building websites using Shopify as a data source.", "scripts": { "watch": "tsc-watch --outDir .", @@ -24,9 +24,9 @@ "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-source-shopify#readme", "dependencies": { "@babel/runtime": "^7.15.4", - "gatsby-core-utils": "^3.19.0-next.0", - "gatsby-plugin-utils": "^3.13.0-next.0", - "gatsby-source-filesystem": "^4.19.0-next.0", + "gatsby-core-utils": "^3.19.0-next.1", + "gatsby-plugin-utils": "^3.13.0-next.1", + "gatsby-source-filesystem": "^4.19.0-next.1", "node-fetch": "^2.6.7", "sharp": "^0.30.3", "shift-left": "^0.1.5" @@ -36,7 +36,7 @@ "@types/node-fetch": "^2.5.12", "@types/sharp": "^0.30.0", "cross-env": "^7.0.3", - "gatsby-plugin-image": "^2.19.0-next.1", + "gatsby-plugin-image": "^2.19.0-next.2", "msw": "^0.38.2", "prettier": "^2.7.1", "prettier-check": "^2.0.0", diff --git a/packages/gatsby-source-wikipedia/package.json b/packages/gatsby-source-wikipedia/package.json index f2e2507abaf1b..f7118890d1dc2 100644 --- a/packages/gatsby-source-wikipedia/package.json +++ b/packages/gatsby-source-wikipedia/package.json @@ -1,6 +1,6 @@ { "name": "gatsby-source-wikipedia", - "version": "4.19.0-next.0", + "version": "4.19.0-next.1", "description": "Gatsby source plugin for pulling articles from Wikipedia", "main": "index.js", "scripts": { @@ -37,7 +37,7 @@ "devDependencies": { "@babel/cli": "^7.15.4", "@babel/core": "^7.15.5", - "babel-preset-gatsby-package": "^2.19.0-next.0", + "babel-preset-gatsby-package": "^2.19.0-next.1", "cross-env": "^7.0.3" }, "engines": { diff --git a/packages/gatsby-source-wordpress/package.json b/packages/gatsby-source-wordpress/package.json index 707b5e0d5908b..fae40569f044c 100644 --- a/packages/gatsby-source-wordpress/package.json +++ b/packages/gatsby-source-wordpress/package.json @@ -2,7 +2,7 @@ "name": "gatsby-source-wordpress", "description": "Source data from WordPress in an efficient and scalable way.", "author": "Tyler Barnes ", - "version": "6.19.0-next.2", + "version": "6.19.0-next.3", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" }, @@ -27,10 +27,10 @@ "file-type": "^15.0.1", "filesize": "^6.4.0", "fs-extra": "^10.1.0", - "gatsby-core-utils": "^3.19.0-next.0", - "gatsby-plugin-catch-links": "^4.19.0-next.0", - "gatsby-plugin-utils": "^3.13.0-next.0", - "gatsby-source-filesystem": "^4.19.0-next.0", + "gatsby-core-utils": "^3.19.0-next.1", + "gatsby-plugin-catch-links": "^4.19.0-next.1", + "gatsby-plugin-utils": "^3.13.0-next.1", + "gatsby-source-filesystem": "^4.19.0-next.1", "glob": "^7.2.3", "got": "^11.8.5", "lodash": "^4.17.21", @@ -53,10 +53,10 @@ "@types/semver": "^7.3.9", "babel-plugin-import-globals": "^2.0.0", "babel-plugin-module-resolver": "4.1.0", - "babel-preset-gatsby": "^2.19.0-next.1", - "babel-preset-gatsby-package": "^2.19.0-next.0", + "babel-preset-gatsby": "^2.19.0-next.2", + "babel-preset-gatsby-package": "^2.19.0-next.1", "cross-env": "^7.0.3", - "gatsby-plugin-image": "^2.19.0-next.1", + "gatsby-plugin-image": "^2.19.0-next.2", "identity-obj-proxy": "^3.0.0", "react-test-renderer": "^16.14.0", "rimraf": "^3.0.2", diff --git a/packages/gatsby-telemetry/package.json b/packages/gatsby-telemetry/package.json index d334b2851fb64..fa3a243f75c39 100644 --- a/packages/gatsby-telemetry/package.json +++ b/packages/gatsby-telemetry/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-telemetry", "description": "Gatsby Telemetry", - "version": "3.19.0-next.1", + "version": "3.19.0-next.2", "author": "Jarmo Isotalo ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -15,7 +15,7 @@ "boxen": "^4.2.0", "configstore": "^5.0.1", "fs-extra": "^10.1.0", - "gatsby-core-utils": "^3.19.0-next.0", + "gatsby-core-utils": "^3.19.0-next.1", "git-up": "^4.0.5", "is-docker": "^2.2.1", "lodash": "^4.17.21", @@ -24,7 +24,7 @@ "devDependencies": { "@babel/cli": "^7.15.4", "@babel/core": "^7.15.5", - "babel-preset-gatsby-package": "^2.19.0-next.0", + "babel-preset-gatsby-package": "^2.19.0-next.1", "cross-env": "^7.0.3", "rimraf": "^3.0.2", "typescript": "^4.7.2" diff --git a/packages/gatsby-transformer-asciidoc/package.json b/packages/gatsby-transformer-asciidoc/package.json index 729307718f514..242f5f018e3c8 100644 --- a/packages/gatsby-transformer-asciidoc/package.json +++ b/packages/gatsby-transformer-asciidoc/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-transformer-asciidoc", "description": "Gatsby transformer plugin for Asciidocs using the Asciidoctor.js library", - "version": "3.19.0-next.1", + "version": "3.19.0-next.2", "author": "Daniel Oliver ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -13,7 +13,7 @@ "devDependencies": { "@babel/cli": "^7.15.4", "@babel/core": "^7.15.5", - "babel-preset-gatsby-package": "^2.19.0-next.0", + "babel-preset-gatsby-package": "^2.19.0-next.1", "cross-env": "^7.0.3", "lodash": "^4.17.21" }, diff --git a/packages/gatsby-transformer-csv/package.json b/packages/gatsby-transformer-csv/package.json index 568e6861b06fd..e3aa384262b34 100644 --- a/packages/gatsby-transformer-csv/package.json +++ b/packages/gatsby-transformer-csv/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-transformer-csv", "description": "Gatsby transformer plugin for CSV files", - "version": "4.19.0-next.0", + "version": "4.19.0-next.1", "author": "Sonal Saldanha ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -13,7 +13,7 @@ "devDependencies": { "@babel/cli": "^7.15.4", "@babel/core": "^7.15.5", - "babel-preset-gatsby-package": "^2.19.0-next.0", + "babel-preset-gatsby-package": "^2.19.0-next.1", "cross-env": "^7.0.3", "json2csv": "^5.0.7" }, diff --git a/packages/gatsby-transformer-documentationjs/package.json b/packages/gatsby-transformer-documentationjs/package.json index af6ca47064eca..29f18594609a8 100644 --- a/packages/gatsby-transformer-documentationjs/package.json +++ b/packages/gatsby-transformer-documentationjs/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-transformer-documentationjs", "description": "Gatsby transformer plugin which uses Documentation.js to extract JavaScript documentation", - "version": "6.19.0-next.0", + "version": "6.19.0-next.1", "author": "Kyle Mathews", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -14,7 +14,7 @@ "devDependencies": { "@babel/cli": "^7.15.4", "@babel/core": "^7.15.5", - "babel-preset-gatsby-package": "^2.19.0-next.0", + "babel-preset-gatsby-package": "^2.19.0-next.1", "cross-env": "^7.0.3" }, "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-transformer-documentationjs#readme", diff --git a/packages/gatsby-transformer-excel/package.json b/packages/gatsby-transformer-excel/package.json index b26d061a4141f..2a2b119f1ec65 100644 --- a/packages/gatsby-transformer-excel/package.json +++ b/packages/gatsby-transformer-excel/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-transformer-excel", "description": "Gatsby transformer plugin for Excel spreadsheets", - "version": "4.19.0-next.0", + "version": "4.19.0-next.1", "author": "SheetJS ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -13,7 +13,7 @@ "devDependencies": { "@babel/cli": "^7.15.4", "@babel/core": "^7.15.5", - "babel-preset-gatsby-package": "^2.19.0-next.0", + "babel-preset-gatsby-package": "^2.19.0-next.1", "cross-env": "^7.0.3" }, "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-transformer-excel#readme", diff --git a/packages/gatsby-transformer-hjson/package.json b/packages/gatsby-transformer-hjson/package.json index 41ae5c1d6628f..bd2cf750f4523 100644 --- a/packages/gatsby-transformer-hjson/package.json +++ b/packages/gatsby-transformer-hjson/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-transformer-hjson", "description": "Gatsby transformer plugin for HJSON files", - "version": "4.19.0-next.0", + "version": "4.19.0-next.1", "author": "Remi Barraquand ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -14,7 +14,7 @@ "devDependencies": { "@babel/cli": "^7.15.4", "@babel/core": "^7.15.5", - "babel-preset-gatsby-package": "^2.19.0-next.0", + "babel-preset-gatsby-package": "^2.19.0-next.1", "cross-env": "^7.0.3" }, "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-transformer-hjson#readme", diff --git a/packages/gatsby-transformer-javascript-frontmatter/package.json b/packages/gatsby-transformer-javascript-frontmatter/package.json index 6382bb0b1f9bc..269796e0216ba 100644 --- a/packages/gatsby-transformer-javascript-frontmatter/package.json +++ b/packages/gatsby-transformer-javascript-frontmatter/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-transformer-javascript-frontmatter", "description": "Gatsby transformer plugin for JavaScript to extract exports.frontmatter statically.", - "version": "4.19.0-next.0", + "version": "4.19.0-next.1", "author": "Jacob Bolda ", "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-transformer-javascript-frontmatter#readme", "dependencies": { @@ -13,7 +13,7 @@ "devDependencies": { "@babel/cli": "^7.15.4", "@babel/core": "^7.15.5", - "babel-preset-gatsby-package": "^2.19.0-next.0", + "babel-preset-gatsby-package": "^2.19.0-next.1", "cross-env": "^7.0.3" }, "keywords": [ diff --git a/packages/gatsby-transformer-javascript-static-exports/package.json b/packages/gatsby-transformer-javascript-static-exports/package.json index 51cabc56151f0..4704eb4db6e2c 100644 --- a/packages/gatsby-transformer-javascript-static-exports/package.json +++ b/packages/gatsby-transformer-javascript-static-exports/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-transformer-javascript-static-exports", "description": "Gatsby transformer plugin for JavaScript to extract exports.data statically.", - "version": "4.19.0-next.0", + "version": "4.19.0-next.1", "author": "Jacob Bolda ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -15,7 +15,7 @@ "devDependencies": { "@babel/cli": "^7.15.4", "@babel/core": "^7.15.5", - "babel-preset-gatsby-package": "^2.19.0-next.0", + "babel-preset-gatsby-package": "^2.19.0-next.1", "cross-env": "^7.0.3" }, "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-transformer-javascript-static-exports#readme", diff --git a/packages/gatsby-transformer-json/package.json b/packages/gatsby-transformer-json/package.json index 02c64ddb2854d..6d87663cd27b3 100644 --- a/packages/gatsby-transformer-json/package.json +++ b/packages/gatsby-transformer-json/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-transformer-json", "description": "Gatsby transformer plugin for JSON files", - "version": "4.19.0-next.0", + "version": "4.19.0-next.1", "author": "Kyle Mathews ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -13,7 +13,7 @@ "devDependencies": { "@babel/cli": "^7.15.4", "@babel/core": "^7.15.5", - "babel-preset-gatsby-package": "^2.19.0-next.0", + "babel-preset-gatsby-package": "^2.19.0-next.1", "cross-env": "^7.0.3" }, "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-transformer-json#readme", diff --git a/packages/gatsby-transformer-pdf/package.json b/packages/gatsby-transformer-pdf/package.json index 1ce46a922e484..1aa68eb329dfb 100644 --- a/packages/gatsby-transformer-pdf/package.json +++ b/packages/gatsby-transformer-pdf/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-transformer-pdf", "description": "Gatsby transformer plugin for pdf files", - "version": "3.19.0-next.0", + "version": "3.19.0-next.1", "author": "Alex Munoz ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -14,7 +14,7 @@ "devDependencies": { "@babel/cli": "^7.15.4", "@babel/core": "^7.15.5", - "babel-preset-gatsby-package": "^2.19.0-next.0", + "babel-preset-gatsby-package": "^2.19.0-next.1", "cross-env": "^7.0.3" }, "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-transformer-pdf#readme", diff --git a/packages/gatsby-transformer-react-docgen/package.json b/packages/gatsby-transformer-react-docgen/package.json index 7bdc6c7b4b33f..7349c769795a1 100644 --- a/packages/gatsby-transformer-react-docgen/package.json +++ b/packages/gatsby-transformer-react-docgen/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-transformer-react-docgen", "description": "Expose React component metadata and prop information as GraphQL types", - "version": "7.19.0-next.0", + "version": "7.19.0-next.1", "author": "Jason Quense ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -17,7 +17,7 @@ "devDependencies": { "@babel/cli": "^7.15.4", "@babel/core": "^7.15.5", - "babel-preset-gatsby-package": "^2.19.0-next.0", + "babel-preset-gatsby-package": "^2.19.0-next.1", "cross-env": "^7.0.3", "lodash": "^4.17.21" }, diff --git a/packages/gatsby-transformer-remark/package.json b/packages/gatsby-transformer-remark/package.json index e3f3fe47e7cd7..80ddf6b61b529 100644 --- a/packages/gatsby-transformer-remark/package.json +++ b/packages/gatsby-transformer-remark/package.json @@ -1,14 +1,14 @@ { "name": "gatsby-transformer-remark", "description": "Gatsby transformer plugin for Markdown using the Remark library and ecosystem", - "version": "5.19.0-next.0", + "version": "5.19.0-next.1", "author": "Kyle Mathews ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" }, "dependencies": { "@babel/runtime": "^7.15.4", - "gatsby-core-utils": "^3.19.0-next.0", + "gatsby-core-utils": "^3.19.0-next.1", "gray-matter": "^4.0.3", "hast-util-raw": "^6.0.2", "hast-util-to-html": "^7.1.3", @@ -33,9 +33,9 @@ "devDependencies": { "@babel/cli": "^7.15.4", "@babel/core": "^7.15.5", - "babel-preset-gatsby-package": "^2.19.0-next.0", + "babel-preset-gatsby-package": "^2.19.0-next.1", "cross-env": "^7.0.3", - "gatsby-plugin-utils": "^3.13.0-next.0" + "gatsby-plugin-utils": "^3.13.0-next.1" }, "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-transformer-remark#readme", "keywords": [ diff --git a/packages/gatsby-transformer-screenshot/package.json b/packages/gatsby-transformer-screenshot/package.json index 5819efd651d23..cc8912ea5440c 100644 --- a/packages/gatsby-transformer-screenshot/package.json +++ b/packages/gatsby-transformer-screenshot/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-transformer-screenshot", "description": "Gatsby transformer plugin that uses AWS Lambda to take screenshots of websites", - "version": "4.19.0-next.0", + "version": "4.19.0-next.1", "author": "Cassandra Beckley ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -14,7 +14,7 @@ "devDependencies": { "@babel/cli": "^7.15.4", "@babel/core": "^7.15.5", - "babel-preset-gatsby-package": "^2.19.0-next.0", + "babel-preset-gatsby-package": "^2.19.0-next.1", "cross-env": "^7.0.3" }, "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-transformer-screenshot#readme", diff --git a/packages/gatsby-transformer-sharp/package.json b/packages/gatsby-transformer-sharp/package.json index 8154085480f2f..f8afa90589baa 100644 --- a/packages/gatsby-transformer-sharp/package.json +++ b/packages/gatsby-transformer-sharp/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-transformer-sharp", "description": "Gatsby transformer plugin for images using Sharp", - "version": "4.19.0-next.1", + "version": "4.19.0-next.2", "author": "Kyle Mathews ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -12,7 +12,7 @@ "bluebird": "^3.7.2", "common-tags": "^1.8.2", "fs-extra": "^10.1.0", - "gatsby-plugin-utils": "^3.13.0-next.0", + "gatsby-plugin-utils": "^3.13.0-next.1", "probe-image-size": "^7.2.3", "semver": "^7.3.7", "sharp": "^0.30.3" @@ -21,7 +21,7 @@ "@babel/cli": "^7.15.4", "@babel/core": "^7.15.5", "@types/sharp": "^0.30.0", - "babel-preset-gatsby-package": "^2.19.0-next.0", + "babel-preset-gatsby-package": "^2.19.0-next.1", "cross-env": "^7.0.3" }, "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-transformer-sharp#readme", diff --git a/packages/gatsby-transformer-sqip/package.json b/packages/gatsby-transformer-sqip/package.json index 7522504137725..594257fcbf038 100644 --- a/packages/gatsby-transformer-sqip/package.json +++ b/packages/gatsby-transformer-sqip/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-transformer-sqip", "description": "Generates geometric primitive version of images", - "version": "4.19.0-next.2", + "version": "4.19.0-next.3", "author": "Benedikt Rötsch ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -9,8 +9,8 @@ "dependencies": { "@babel/runtime": "^7.15.4", "fs-extra": "^10.1.0", - "gatsby-core-utils": "^3.19.0-next.0", - "gatsby-plugin-sharp": "^4.19.0-next.2", + "gatsby-core-utils": "^3.19.0-next.1", + "gatsby-plugin-sharp": "^4.19.0-next.3", "md5-file": "^5.0.0", "mini-svg-data-uri": "^1.4.4", "p-queue": "^6.6.2", @@ -19,7 +19,7 @@ "devDependencies": { "@babel/cli": "^7.15.4", "@babel/core": "^7.15.5", - "babel-preset-gatsby-package": "^2.19.0-next.0", + "babel-preset-gatsby-package": "^2.19.0-next.1", "cross-env": "^7.0.3", "debug": "^4.3.4" }, diff --git a/packages/gatsby-transformer-toml/package.json b/packages/gatsby-transformer-toml/package.json index 217fb60a0c13b..54d87bd39c40d 100644 --- a/packages/gatsby-transformer-toml/package.json +++ b/packages/gatsby-transformer-toml/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-transformer-toml", "description": "Gatsby transformer plugin for toml", - "version": "4.19.0-next.0", + "version": "4.19.0-next.1", "author": "Ruben Harutyunyan ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -14,7 +14,7 @@ "devDependencies": { "@babel/cli": "^7.15.4", "@babel/core": "^7.15.5", - "babel-preset-gatsby-package": "^2.19.0-next.0", + "babel-preset-gatsby-package": "^2.19.0-next.1", "cross-env": "^7.0.3" }, "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-transformer-toml#readme", diff --git a/packages/gatsby-transformer-xml/package.json b/packages/gatsby-transformer-xml/package.json index b6eb9824cf51f..0b97b37c9b7d9 100644 --- a/packages/gatsby-transformer-xml/package.json +++ b/packages/gatsby-transformer-xml/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-transformer-xml", "description": "Gatsby plugin for parsing XML files. It supports also attributes", - "version": "4.19.0-next.0", + "version": "4.19.0-next.1", "author": "Kyle Mathews ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -15,7 +15,7 @@ "devDependencies": { "@babel/cli": "^7.15.4", "@babel/core": "^7.15.5", - "babel-preset-gatsby-package": "^2.19.0-next.0", + "babel-preset-gatsby-package": "^2.19.0-next.1", "cross-env": "^7.0.3" }, "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-transformer-xml#readme", diff --git a/packages/gatsby-transformer-yaml/package.json b/packages/gatsby-transformer-yaml/package.json index fe118691bcd2a..1fed3dc9172ee 100644 --- a/packages/gatsby-transformer-yaml/package.json +++ b/packages/gatsby-transformer-yaml/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-transformer-yaml", "description": "Gatsby transformer plugin for yaml", - "version": "4.19.0-next.0", + "version": "4.19.0-next.1", "author": "Kyle Mathews ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -15,7 +15,7 @@ "devDependencies": { "@babel/cli": "^7.15.4", "@babel/core": "^7.15.5", - "babel-preset-gatsby-package": "^2.19.0-next.0", + "babel-preset-gatsby-package": "^2.19.0-next.1", "cross-env": "^7.0.3" }, "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-transformer-yaml#readme", diff --git a/packages/gatsby-worker/package.json b/packages/gatsby-worker/package.json index d8a5f53b06207..80a5b27f0307c 100644 --- a/packages/gatsby-worker/package.json +++ b/packages/gatsby-worker/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-worker", "description": "Utility to create worker pools", - "version": "1.19.0-next.0", + "version": "1.19.0-next.1", "author": "Michal Piechowiak", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -13,7 +13,7 @@ "devDependencies": { "@babel/cli": "^7.15.4", "@babel/register": "^7.15.3", - "babel-preset-gatsby-package": "^2.19.0-next.0", + "babel-preset-gatsby-package": "^2.19.0-next.1", "cross-env": "^7.0.3", "rimraf": "^3.0.2", "typescript": "^4.7.2" diff --git a/packages/gatsby/package.json b/packages/gatsby/package.json index 84289c3340223..b537a9a2dd7f2 100644 --- a/packages/gatsby/package.json +++ b/packages/gatsby/package.json @@ -1,7 +1,7 @@ { "name": "gatsby", "description": "Blazing fast modern site generator for React", - "version": "4.19.0-next.2", + "version": "4.19.0-next.3", "author": "Kyle Mathews ", "bin": { "gatsby": "./cli.js" @@ -44,8 +44,8 @@ "babel-plugin-add-module-exports": "^1.0.4", "babel-plugin-dynamic-import-node": "^2.3.3", "babel-plugin-lodash": "^3.3.4", - "babel-plugin-remove-graphql-queries": "^4.19.0-next.0", - "babel-preset-gatsby": "^2.19.0-next.1", + "babel-plugin-remove-graphql-queries": "^4.19.0-next.1", + "babel-preset-gatsby": "^2.19.0-next.2", "better-opn": "^2.1.1", "bluebird": "^3.7.2", "body-parser": "^1.19.0", @@ -88,20 +88,20 @@ "find-cache-dir": "^3.3.2", "fs-exists-cached": "1.0.0", "fs-extra": "^10.1.0", - "gatsby-cli": "^4.19.0-next.2", - "gatsby-core-utils": "^3.19.0-next.0", - "gatsby-graphiql-explorer": "^2.19.0-next.0", - "gatsby-legacy-polyfills": "^2.19.0-next.1", - "gatsby-link": "^4.19.0-next.1", - "gatsby-page-utils": "^2.19.0-next.0", - "gatsby-parcel-config": "0.10.0-next.0", - "gatsby-plugin-page-creator": "^4.19.0-next.1", - "gatsby-plugin-typescript": "^4.19.0-next.0", - "gatsby-plugin-utils": "^3.13.0-next.0", - "gatsby-react-router-scroll": "^5.19.0-next.0", - "gatsby-script": "^1.4.0-next.1", - "gatsby-telemetry": "^3.19.0-next.1", - "gatsby-worker": "^1.19.0-next.0", + "gatsby-cli": "^4.19.0-next.3", + "gatsby-core-utils": "^3.19.0-next.1", + "gatsby-graphiql-explorer": "^2.19.0-next.1", + "gatsby-legacy-polyfills": "^2.19.0-next.2", + "gatsby-link": "^4.19.0-next.2", + "gatsby-page-utils": "^2.19.0-next.1", + "gatsby-parcel-config": "0.10.0-next.1", + "gatsby-plugin-page-creator": "^4.19.0-next.2", + "gatsby-plugin-typescript": "^4.19.0-next.1", + "gatsby-plugin-utils": "^3.13.0-next.1", + "gatsby-react-router-scroll": "^5.19.0-next.1", + "gatsby-script": "^1.4.0-next.2", + "gatsby-telemetry": "^3.19.0-next.2", + "gatsby-worker": "^1.19.0-next.1", "glob": "^7.2.3", "globby": "^11.1.0", "got": "^11.8.2", @@ -189,7 +189,7 @@ "@types/string-similarity": "^4.0.0", "@types/tmp": "^0.2.0", "@types/webpack-virtual-modules": "^0.1.1", - "babel-preset-gatsby-package": "^2.19.0-next.0", + "babel-preset-gatsby-package": "^2.19.0-next.1", "copyfiles": "^2.3.0", "cross-env": "^7.0.3", "documentation": "^13.1.0", @@ -203,7 +203,7 @@ "zipkin-transport-http": "^0.22.0" }, "optionalDependencies": { - "gatsby-sharp": "^0.13.0-next.0" + "gatsby-sharp": "^0.13.0-next.1" }, "engines": { "node": ">=14.15.0" From b024e5a76defcc1699485e6e420f53f91d3bf9aa Mon Sep 17 00:00:00 2001 From: Josh Johnson Date: Tue, 5 Jul 2022 14:17:29 -0500 Subject: [PATCH 05/90] chore(docs): Release notes for 4.18 (#36025) * Release notes WIP * add content * add dev ssr content * Add contributors * Minor fixes Co-authored-by: LekoArts Co-authored-by: Jude Agboola --- .../reference/release-notes/v4.18/index.md | 72 +++++++++++++++++++ 1 file changed, 72 insertions(+) create mode 100644 docs/docs/reference/release-notes/v4.18/index.md diff --git a/docs/docs/reference/release-notes/v4.18/index.md b/docs/docs/reference/release-notes/v4.18/index.md new file mode 100644 index 0000000000000..82ce03a9ba8ca --- /dev/null +++ b/docs/docs/reference/release-notes/v4.18/index.md @@ -0,0 +1,72 @@ +--- +date: "2022-07-05" +version: "4.18.0" +title: "v4.18 Release Notes" +--- + +Welcome to `gatsby@4.18.0` release (July 2022 #1) + +Key highlights of this release: + +- [`typesOutputPath` option for GraphQL Typegen](#typesoutputpath-option-for-graphql-typegen) - Configure the location of the generated TypeScript types +- [Server Side Rendering (SSR) in development](#server-side-rendering-ssr-in-development) - Find bugs & hydration errors more easily during `gatsby develop` +- [Open RFCs](#open-rfcs) - MDX v2 & Metadata management + +Also check out [notable bugfixes](#notable-bugfixes--improvements). + +**Bleeding Edge:** Want to try new features as soon as possible? Install `gatsby@next` and let us know if you have any [issues](https://github.com/gatsbyjs/gatsby/issues). + +[Previous release notes](/docs/reference/release-notes/v4.17) + +[Full changelog][full-changelog] + +--- + +## `typesOutputPath` option for GraphQL Typegen + +We saw great adoption of the GraphQL Typegen feature we've added in the [4.15 Release](/docs/reference/release-notes/v4.15/#graphql-typegen). We've heard that the location of the automatically generated TypeScript definitions file should be configurable. By default, it's generated in the `src/gatsby-types.d.ts` location. + +You're now able to specify the location of the generated types using the `typesOutputPath` option. The `graphqlTypegen` option accepts both a boolean and an object now. If you don't pass an object (but `graphqlTypegen: true`), the default value for each option will be used. + +```javascript:title=gatsby-config.js +module.exports = { + graphqlTypegen: { + typesOutputPath: `gatsby-types.d.ts`, + }, +} +``` + +The path is relative to the site root, in the example above the file would be generated at `/gatsby-types.d.ts`. For more details and any future options, see the [Gatsby Config API](/docs/reference/config-files/gatsby-config/#graphqltypegen). + +## Server Side Rendering (SSR) in development + +Shortly before v4 release, we disabled [DEV_SSR flag](https://github.com/gatsbyjs/gatsby/discussions/28138) because `getServerData` was not properly handled. In this release, we handled `getServerData` properly and restored the flag. Now you can add the `DEV_SSR` flag to your `gatsby-config` file so you can spot and fix SSR errors (like trying to access the window object) during development. + +## Open RFCs + +We continue to have ongoing RFCs that we’d like your input on. Please give it a read, if applicable a try, and leave feedback! + +- [Support for MDX v2](https://github.com/gatsbyjs/gatsby/discussions/25068): We are updating `gatsby-plugin-mdx` to be compatible with MDX v2. Keep a look out in the discussion for a canary to try! +- [Metadata Management API](https://github.com/gatsbyjs/gatsby/discussions/35841): We will be adding a built-in metadata management solution to Gatsby. Work is in progress and you can try out the canary now! + +## Notable bugfixes & improvements + +- `gatsby` + - Add retry mechanism for `gatsby-node/config.ts` compilation to fix intermittent bug during `gatsby build`, via [PR #35974](https://github.com/gatsbyjs/gatsby/pull/35974) + - Fix potentially wrong query results when querying fields with custom resolvers, via [PR #35369](https://github.com/gatsbyjs/gatsby/pull/35369) +- `gatsby-cli`: Set `NODE_ENV` earlier to fix Jest failing with `Couldn't find temp query result` error, via [PR #35968](https://github.com/gatsbyjs/gatsby/pull/35968) +- `gatsby-source-wordpress`: Always hydrate images and use the right parent element, via [PR #36002](https://github.com/gatsbyjs/gatsby/pull/36002) +- Properly compile all packages for Node and browser environment, via [PR #35948](https://github.com/gatsbyjs/gatsby/pull/35948) +- Use `babel-plugin-lodash` to reduce `lodash` size published packages, via [PR #35947](https://github.com/gatsbyjs/gatsby/pull/35947) + +## Contributors + +A big **Thank You** to [our community who contributed][full-changelog] to this release 💜 + +- [glitton](https://github.com/glitton): chore(docs): Remove trailing slashes section in creating-and-modifying-pages [PR #35843](https://github.com/gatsbyjs/gatsby/pull/35843) +- [rutterjt](https://github.com/rutterjt): chore(docs): fix query type name in Typegen guide [PR #35961](https://github.com/gatsbyjs/gatsby/pull/35961) +- [slaleye](https://github.com/slaleye): chore(docs): Update copy in tutorial part 1 [PR #35992](https://github.com/gatsbyjs/gatsby/pull/35992) +- [cameronbraid](https://github.com/cameronbraid): fix(gatsby): Partytown URI encoding of redirect parameters [PR #35990](https://github.com/gatsbyjs/gatsby/pull/35990) +- [axe312ger](https://github.com/axe312ger): chore(gatsby): Remove MDX `resolutions` [PR #36010](https://github.com/gatsbyjs/gatsby/pull/36010) + +[full-changelog]: https://github.com/gatsbyjs/gatsby/compare/gatsby@4.18.0-next.0...gatsby@4.18.0 From 1ed0c17ce0e823747d23965784dc91e2dd093dd9 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 6 Jul 2022 12:50:12 +0800 Subject: [PATCH 06/90] fix(deps): update starters and examples - gatsby (#36065) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- starters/blog/package-lock.json | 1849 +++----------- starters/blog/package.json | 34 +- starters/default/package-lock.json | 1799 +++---------- starters/default/package.json | 18 +- .../package-lock.json | 471 ++-- .../package.json | 2 +- .../package-lock.json | 471 ++-- .../gatsby-starter-blog-theme/package.json | 2 +- .../package-lock.json | 281 ++- .../gatsby-starter-minimal-ts/package.json | 2 +- .../gatsby-starter-minimal/package-lock.json | 287 ++- starters/gatsby-starter-minimal/package.json | 2 +- .../package-lock.json | 489 ++-- .../gatsby-starter-notes-theme/package.json | 2 +- .../example/package.json | 2 +- .../gatsby-starter-theme/package-lock.json | 465 ++-- starters/gatsby-starter-theme/package.json | 2 +- .../package-lock.json | 2233 +++++------------ .../package.json | 16 +- starters/hello-world/package-lock.json | 287 ++- starters/hello-world/package.json | 2 +- 21 files changed, 3070 insertions(+), 5646 deletions(-) diff --git a/starters/blog/package-lock.json b/starters/blog/package-lock.json index f94b255159cc6..d5fa0d3d05d21 100644 --- a/starters/blog/package-lock.json +++ b/starters/blog/package-lock.json @@ -53,11 +53,11 @@ } }, "@babel/code-frame": { - "version": "7.16.7", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.16.7.tgz", - "integrity": "sha512-iAXqUn8IIeBTNd72xsFlgaXHkMBMt6y4HJp1tIaK465CWLT/fG1aqB7ykr95gHHmlBdGbFeWWfyB4NJJ0nmeIg==", + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.18.6.tgz", + "integrity": "sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q==", "requires": { - "@babel/highlight": "^7.16.7" + "@babel/highlight": "^7.18.6" } }, "@babel/compat-data": { @@ -87,130 +87,6 @@ "semver": "^6.3.0" }, "dependencies": { - "@babel/code-frame": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.18.6.tgz", - "integrity": "sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q==", - "requires": { - "@babel/highlight": "^7.18.6" - } - }, - "@babel/generator": { - "version": "7.18.7", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.18.7.tgz", - "integrity": "sha512-shck+7VLlY72a2w9c3zYWuE1pwOKEiQHV7GTUbSnhyl5eu3i04t30tBY82ZRWrDfo3gkakCFtevExnxbkf2a3A==", - "requires": { - "@babel/types": "^7.18.7", - "@jridgewell/gen-mapping": "^0.3.2", - "jsesc": "^2.5.1" - } - }, - "@babel/helper-environment-visitor": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.18.6.tgz", - "integrity": "sha512-8n6gSfn2baOY+qlp+VSzsosjCVGFqWKmDF0cCWOybh52Dw3SEyoWR1KrhMJASjLwIEkkAufZ0xvr+SxLHSpy2Q==" - }, - "@babel/helper-function-name": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.18.6.tgz", - "integrity": "sha512-0mWMxV1aC97dhjCah5U5Ua7668r5ZmSC2DLfH2EZnf9c3/dHZKiFa5pRLMH5tjSl471tY6496ZWk/kjNONBxhw==", - "requires": { - "@babel/template": "^7.18.6", - "@babel/types": "^7.18.6" - } - }, - "@babel/helper-hoist-variables": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.18.6.tgz", - "integrity": "sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q==", - "requires": { - "@babel/types": "^7.18.6" - } - }, - "@babel/helper-split-export-declaration": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.18.6.tgz", - "integrity": "sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA==", - "requires": { - "@babel/types": "^7.18.6" - } - }, - "@babel/helper-validator-identifier": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.18.6.tgz", - "integrity": "sha512-MmetCkz9ej86nJQV+sFCxoGGrUbU3q02kgLciwkrt9QqEB7cP39oKEY0PakknEO0Gu20SskMRi+AYZ3b1TpN9g==" - }, - "@babel/highlight": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.18.6.tgz", - "integrity": "sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==", - "requires": { - "@babel/helper-validator-identifier": "^7.18.6", - "chalk": "^2.0.0", - "js-tokens": "^4.0.0" - } - }, - "@babel/parser": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.18.6.tgz", - "integrity": "sha512-uQVSa9jJUe/G/304lXspfWVpKpK4euFLgGiMQFOCpM/bgcAdeoHwi/OQz23O9GK2osz26ZiXRRV9aV+Yl1O8tw==" - }, - "@babel/template": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.18.6.tgz", - "integrity": "sha512-JoDWzPe+wgBsTTgdnIma3iHNFC7YVJoPssVBDjiHfNlyt4YcunDtcDOUmfVDfCK5MfdsaIoX9PkijPhjH3nYUw==", - "requires": { - "@babel/code-frame": "^7.18.6", - "@babel/parser": "^7.18.6", - "@babel/types": "^7.18.6" - } - }, - "@babel/traverse": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.18.6.tgz", - "integrity": "sha512-zS/OKyqmD7lslOtFqbscH6gMLFYOfG1YPqCKfAW5KrTeolKqvB8UelR49Fpr6y93kYkW2Ik00mT1LOGiAGvizw==", - "requires": { - "@babel/code-frame": "^7.18.6", - "@babel/generator": "^7.18.6", - "@babel/helper-environment-visitor": "^7.18.6", - "@babel/helper-function-name": "^7.18.6", - "@babel/helper-hoist-variables": "^7.18.6", - "@babel/helper-split-export-declaration": "^7.18.6", - "@babel/parser": "^7.18.6", - "@babel/types": "^7.18.6", - "debug": "^4.1.0", - "globals": "^11.1.0" - } - }, - "@babel/types": { - "version": "7.18.7", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.7.tgz", - "integrity": "sha512-QG3yxTcTIBoAcQmkCs+wAPYZhu7Dk9rXKacINfNbdJDNERTbLQbHGyVG8q/YGMPeCJRIhSY0+fTc5+xuh6WPSQ==", - "requires": { - "@babel/helper-validator-identifier": "^7.18.6", - "to-fast-properties": "^2.0.0" - } - }, - "@jridgewell/gen-mapping": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.2.tgz", - "integrity": "sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A==", - "requires": { - "@jridgewell/set-array": "^1.0.1", - "@jridgewell/sourcemap-codec": "^1.4.10", - "@jridgewell/trace-mapping": "^0.3.9" - } - }, - "chalk": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", - "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", - "requires": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" - } - }, "debug": { "version": "4.3.4", "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", @@ -244,21 +120,21 @@ } }, "@babel/generator": { - "version": "7.18.2", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.18.2.tgz", - "integrity": "sha512-W1lG5vUwFvfMd8HVXqdfbuG7RuaSrTCCD8cl8fP8wOivdbtbIg2Db3IWUcgvfxKbbn6ZBGYRW/Zk1MIwK49mgw==", + "version": "7.18.7", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.18.7.tgz", + "integrity": "sha512-shck+7VLlY72a2w9c3zYWuE1pwOKEiQHV7GTUbSnhyl5eu3i04t30tBY82ZRWrDfo3gkakCFtevExnxbkf2a3A==", "requires": { - "@babel/types": "^7.18.2", - "@jridgewell/gen-mapping": "^0.3.0", + "@babel/types": "^7.18.7", + "@jridgewell/gen-mapping": "^0.3.2", "jsesc": "^2.5.1" }, "dependencies": { "@jridgewell/gen-mapping": { - "version": "0.3.1", - "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.1.tgz", - "integrity": "sha512-GcHwniMlA2z+WFPWuY8lp3fsza0I8xPFMWL5+n8LYyP6PSvPrXf4+n8stDHZY2DM0zy9sVkRDy1jDI4XGzYVqg==", + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.2.tgz", + "integrity": "sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A==", "requires": { - "@jridgewell/set-array": "^1.0.0", + "@jridgewell/set-array": "^1.0.1", "@jridgewell/sourcemap-codec": "^1.4.10", "@jridgewell/trace-mapping": "^0.3.9" } @@ -271,22 +147,6 @@ "integrity": "sha512-duORpUiYrEpzKIop6iNbjnwKLAKnJ47csTyRACyEmWj0QdUrm5aqNJGHSSEQSUAvNW0ojX0dOmK9dZduvkfeXA==", "requires": { "@babel/types": "^7.18.6" - }, - "dependencies": { - "@babel/helper-validator-identifier": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.18.6.tgz", - "integrity": "sha512-MmetCkz9ej86nJQV+sFCxoGGrUbU3q02kgLciwkrt9QqEB7cP39oKEY0PakknEO0Gu20SskMRi+AYZ3b1TpN9g==" - }, - "@babel/types": { - "version": "7.18.7", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.7.tgz", - "integrity": "sha512-QG3yxTcTIBoAcQmkCs+wAPYZhu7Dk9rXKacINfNbdJDNERTbLQbHGyVG8q/YGMPeCJRIhSY0+fTc5+xuh6WPSQ==", - "requires": { - "@babel/helper-validator-identifier": "^7.18.6", - "to-fast-properties": "^2.0.0" - } - } } }, "@babel/helper-builder-binary-assignment-operator-visitor": { @@ -296,22 +156,6 @@ "requires": { "@babel/helper-explode-assignable-expression": "^7.18.6", "@babel/types": "^7.18.6" - }, - "dependencies": { - "@babel/helper-validator-identifier": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.18.6.tgz", - "integrity": "sha512-MmetCkz9ej86nJQV+sFCxoGGrUbU3q02kgLciwkrt9QqEB7cP39oKEY0PakknEO0Gu20SskMRi+AYZ3b1TpN9g==" - }, - "@babel/types": { - "version": "7.18.7", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.7.tgz", - "integrity": "sha512-QG3yxTcTIBoAcQmkCs+wAPYZhu7Dk9rXKacINfNbdJDNERTbLQbHGyVG8q/YGMPeCJRIhSY0+fTc5+xuh6WPSQ==", - "requires": { - "@babel/helper-validator-identifier": "^7.18.6", - "to-fast-properties": "^2.0.0" - } - } } }, "@babel/helper-compilation-targets": { @@ -344,87 +188,6 @@ "@babel/helper-optimise-call-expression": "^7.18.6", "@babel/helper-replace-supers": "^7.18.6", "@babel/helper-split-export-declaration": "^7.18.6" - }, - "dependencies": { - "@babel/code-frame": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.18.6.tgz", - "integrity": "sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q==", - "requires": { - "@babel/highlight": "^7.18.6" - } - }, - "@babel/helper-environment-visitor": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.18.6.tgz", - "integrity": "sha512-8n6gSfn2baOY+qlp+VSzsosjCVGFqWKmDF0cCWOybh52Dw3SEyoWR1KrhMJASjLwIEkkAufZ0xvr+SxLHSpy2Q==" - }, - "@babel/helper-function-name": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.18.6.tgz", - "integrity": "sha512-0mWMxV1aC97dhjCah5U5Ua7668r5ZmSC2DLfH2EZnf9c3/dHZKiFa5pRLMH5tjSl471tY6496ZWk/kjNONBxhw==", - "requires": { - "@babel/template": "^7.18.6", - "@babel/types": "^7.18.6" - } - }, - "@babel/helper-split-export-declaration": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.18.6.tgz", - "integrity": "sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA==", - "requires": { - "@babel/types": "^7.18.6" - } - }, - "@babel/helper-validator-identifier": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.18.6.tgz", - "integrity": "sha512-MmetCkz9ej86nJQV+sFCxoGGrUbU3q02kgLciwkrt9QqEB7cP39oKEY0PakknEO0Gu20SskMRi+AYZ3b1TpN9g==" - }, - "@babel/highlight": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.18.6.tgz", - "integrity": "sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==", - "requires": { - "@babel/helper-validator-identifier": "^7.18.6", - "chalk": "^2.0.0", - "js-tokens": "^4.0.0" - } - }, - "@babel/parser": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.18.6.tgz", - "integrity": "sha512-uQVSa9jJUe/G/304lXspfWVpKpK4euFLgGiMQFOCpM/bgcAdeoHwi/OQz23O9GK2osz26ZiXRRV9aV+Yl1O8tw==" - }, - "@babel/template": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.18.6.tgz", - "integrity": "sha512-JoDWzPe+wgBsTTgdnIma3iHNFC7YVJoPssVBDjiHfNlyt4YcunDtcDOUmfVDfCK5MfdsaIoX9PkijPhjH3nYUw==", - "requires": { - "@babel/code-frame": "^7.18.6", - "@babel/parser": "^7.18.6", - "@babel/types": "^7.18.6" - } - }, - "@babel/types": { - "version": "7.18.7", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.7.tgz", - "integrity": "sha512-QG3yxTcTIBoAcQmkCs+wAPYZhu7Dk9rXKacINfNbdJDNERTbLQbHGyVG8q/YGMPeCJRIhSY0+fTc5+xuh6WPSQ==", - "requires": { - "@babel/helper-validator-identifier": "^7.18.6", - "to-fast-properties": "^2.0.0" - } - }, - "chalk": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", - "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", - "requires": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" - } - } } }, "@babel/helper-create-regexp-features-plugin": { @@ -467,9 +230,9 @@ } }, "@babel/helper-environment-visitor": { - "version": "7.18.2", - "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.18.2.tgz", - "integrity": "sha512-14GQKWkX9oJzPiQQ7/J36FTXcD4kSp8egKjO9nINlSKiHITRA9q/R74qu8S9xlc/b/yjsJItQUeeh3xnGN0voQ==" + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.18.6.tgz", + "integrity": "sha512-8n6gSfn2baOY+qlp+VSzsosjCVGFqWKmDF0cCWOybh52Dw3SEyoWR1KrhMJASjLwIEkkAufZ0xvr+SxLHSpy2Q==" }, "@babel/helper-explode-assignable-expression": { "version": "7.18.6", @@ -477,39 +240,23 @@ "integrity": "sha512-eyAYAsQmB80jNfg4baAtLeWAQHfHFiR483rzFK+BhETlGZaQC9bsfrugfXDCbRHLQbIA7U5NxhhOxN7p/dWIcg==", "requires": { "@babel/types": "^7.18.6" - }, - "dependencies": { - "@babel/helper-validator-identifier": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.18.6.tgz", - "integrity": "sha512-MmetCkz9ej86nJQV+sFCxoGGrUbU3q02kgLciwkrt9QqEB7cP39oKEY0PakknEO0Gu20SskMRi+AYZ3b1TpN9g==" - }, - "@babel/types": { - "version": "7.18.7", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.7.tgz", - "integrity": "sha512-QG3yxTcTIBoAcQmkCs+wAPYZhu7Dk9rXKacINfNbdJDNERTbLQbHGyVG8q/YGMPeCJRIhSY0+fTc5+xuh6WPSQ==", - "requires": { - "@babel/helper-validator-identifier": "^7.18.6", - "to-fast-properties": "^2.0.0" - } - } } }, "@babel/helper-function-name": { - "version": "7.17.9", - "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.17.9.tgz", - "integrity": "sha512-7cRisGlVtiVqZ0MW0/yFB4atgpGLWEHUVYnb448hZK4x+vih0YO5UoS11XIYtZYqHd0dIPMdUSv8q5K4LdMnIg==", + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.18.6.tgz", + "integrity": "sha512-0mWMxV1aC97dhjCah5U5Ua7668r5ZmSC2DLfH2EZnf9c3/dHZKiFa5pRLMH5tjSl471tY6496ZWk/kjNONBxhw==", "requires": { - "@babel/template": "^7.16.7", - "@babel/types": "^7.17.0" + "@babel/template": "^7.18.6", + "@babel/types": "^7.18.6" } }, "@babel/helper-hoist-variables": { - "version": "7.16.7", - "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.16.7.tgz", - "integrity": "sha512-m04d/0Op34H5v7pbZw6pSKP7weA6lsMvfiIAMeIvkY/R4xQtBSMFEigu9QTZ2qB/9l22vsxtM8a+Q8CzD255fg==", + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.18.6.tgz", + "integrity": "sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q==", "requires": { - "@babel/types": "^7.16.7" + "@babel/types": "^7.18.6" } }, "@babel/helper-member-expression-to-functions": { @@ -518,22 +265,6 @@ "integrity": "sha512-CeHxqwwipekotzPDUuJOfIMtcIHBuc7WAzLmTYWctVigqS5RktNMQ5bEwQSuGewzYnCtTWa3BARXeiLxDTv+Ng==", "requires": { "@babel/types": "^7.18.6" - }, - "dependencies": { - "@babel/helper-validator-identifier": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.18.6.tgz", - "integrity": "sha512-MmetCkz9ej86nJQV+sFCxoGGrUbU3q02kgLciwkrt9QqEB7cP39oKEY0PakknEO0Gu20SskMRi+AYZ3b1TpN9g==" - }, - "@babel/types": { - "version": "7.18.7", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.7.tgz", - "integrity": "sha512-QG3yxTcTIBoAcQmkCs+wAPYZhu7Dk9rXKacINfNbdJDNERTbLQbHGyVG8q/YGMPeCJRIhSY0+fTc5+xuh6WPSQ==", - "requires": { - "@babel/helper-validator-identifier": "^7.18.6", - "to-fast-properties": "^2.0.0" - } - } } }, "@babel/helper-module-imports": { @@ -542,22 +273,6 @@ "integrity": "sha512-0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA==", "requires": { "@babel/types": "^7.18.6" - }, - "dependencies": { - "@babel/helper-validator-identifier": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.18.6.tgz", - "integrity": "sha512-MmetCkz9ej86nJQV+sFCxoGGrUbU3q02kgLciwkrt9QqEB7cP39oKEY0PakknEO0Gu20SskMRi+AYZ3b1TpN9g==" - }, - "@babel/types": { - "version": "7.18.7", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.7.tgz", - "integrity": "sha512-QG3yxTcTIBoAcQmkCs+wAPYZhu7Dk9rXKacINfNbdJDNERTbLQbHGyVG8q/YGMPeCJRIhSY0+fTc5+xuh6WPSQ==", - "requires": { - "@babel/helper-validator-identifier": "^7.18.6", - "to-fast-properties": "^2.0.0" - } - } } }, "@babel/helper-module-transforms": { @@ -573,140 +288,6 @@ "@babel/template": "^7.18.6", "@babel/traverse": "^7.18.6", "@babel/types": "^7.18.6" - }, - "dependencies": { - "@babel/code-frame": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.18.6.tgz", - "integrity": "sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q==", - "requires": { - "@babel/highlight": "^7.18.6" - } - }, - "@babel/generator": { - "version": "7.18.7", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.18.7.tgz", - "integrity": "sha512-shck+7VLlY72a2w9c3zYWuE1pwOKEiQHV7GTUbSnhyl5eu3i04t30tBY82ZRWrDfo3gkakCFtevExnxbkf2a3A==", - "requires": { - "@babel/types": "^7.18.7", - "@jridgewell/gen-mapping": "^0.3.2", - "jsesc": "^2.5.1" - } - }, - "@babel/helper-environment-visitor": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.18.6.tgz", - "integrity": "sha512-8n6gSfn2baOY+qlp+VSzsosjCVGFqWKmDF0cCWOybh52Dw3SEyoWR1KrhMJASjLwIEkkAufZ0xvr+SxLHSpy2Q==" - }, - "@babel/helper-function-name": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.18.6.tgz", - "integrity": "sha512-0mWMxV1aC97dhjCah5U5Ua7668r5ZmSC2DLfH2EZnf9c3/dHZKiFa5pRLMH5tjSl471tY6496ZWk/kjNONBxhw==", - "requires": { - "@babel/template": "^7.18.6", - "@babel/types": "^7.18.6" - } - }, - "@babel/helper-hoist-variables": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.18.6.tgz", - "integrity": "sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q==", - "requires": { - "@babel/types": "^7.18.6" - } - }, - "@babel/helper-split-export-declaration": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.18.6.tgz", - "integrity": "sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA==", - "requires": { - "@babel/types": "^7.18.6" - } - }, - "@babel/helper-validator-identifier": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.18.6.tgz", - "integrity": "sha512-MmetCkz9ej86nJQV+sFCxoGGrUbU3q02kgLciwkrt9QqEB7cP39oKEY0PakknEO0Gu20SskMRi+AYZ3b1TpN9g==" - }, - "@babel/highlight": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.18.6.tgz", - "integrity": "sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==", - "requires": { - "@babel/helper-validator-identifier": "^7.18.6", - "chalk": "^2.0.0", - "js-tokens": "^4.0.0" - } - }, - "@babel/parser": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.18.6.tgz", - "integrity": "sha512-uQVSa9jJUe/G/304lXspfWVpKpK4euFLgGiMQFOCpM/bgcAdeoHwi/OQz23O9GK2osz26ZiXRRV9aV+Yl1O8tw==" - }, - "@babel/template": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.18.6.tgz", - "integrity": "sha512-JoDWzPe+wgBsTTgdnIma3iHNFC7YVJoPssVBDjiHfNlyt4YcunDtcDOUmfVDfCK5MfdsaIoX9PkijPhjH3nYUw==", - "requires": { - "@babel/code-frame": "^7.18.6", - "@babel/parser": "^7.18.6", - "@babel/types": "^7.18.6" - } - }, - "@babel/traverse": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.18.6.tgz", - "integrity": "sha512-zS/OKyqmD7lslOtFqbscH6gMLFYOfG1YPqCKfAW5KrTeolKqvB8UelR49Fpr6y93kYkW2Ik00mT1LOGiAGvizw==", - "requires": { - "@babel/code-frame": "^7.18.6", - "@babel/generator": "^7.18.6", - "@babel/helper-environment-visitor": "^7.18.6", - "@babel/helper-function-name": "^7.18.6", - "@babel/helper-hoist-variables": "^7.18.6", - "@babel/helper-split-export-declaration": "^7.18.6", - "@babel/parser": "^7.18.6", - "@babel/types": "^7.18.6", - "debug": "^4.1.0", - "globals": "^11.1.0" - } - }, - "@babel/types": { - "version": "7.18.7", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.7.tgz", - "integrity": "sha512-QG3yxTcTIBoAcQmkCs+wAPYZhu7Dk9rXKacINfNbdJDNERTbLQbHGyVG8q/YGMPeCJRIhSY0+fTc5+xuh6WPSQ==", - "requires": { - "@babel/helper-validator-identifier": "^7.18.6", - "to-fast-properties": "^2.0.0" - } - }, - "@jridgewell/gen-mapping": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.2.tgz", - "integrity": "sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A==", - "requires": { - "@jridgewell/set-array": "^1.0.1", - "@jridgewell/sourcemap-codec": "^1.4.10", - "@jridgewell/trace-mapping": "^0.3.9" - } - }, - "chalk": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", - "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", - "requires": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" - } - }, - "debug": { - "version": "4.3.4", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", - "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", - "requires": { - "ms": "2.1.2" - } - } } }, "@babel/helper-optimise-call-expression": { @@ -715,22 +296,6 @@ "integrity": "sha512-HP59oD9/fEHQkdcbgFCnbmgH5vIQTJbxh2yf+CdM89/glUNnuzr87Q8GIjGEnOktTROemO0Pe0iPAYbqZuOUiA==", "requires": { "@babel/types": "^7.18.6" - }, - "dependencies": { - "@babel/helper-validator-identifier": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.18.6.tgz", - "integrity": "sha512-MmetCkz9ej86nJQV+sFCxoGGrUbU3q02kgLciwkrt9QqEB7cP39oKEY0PakknEO0Gu20SskMRi+AYZ3b1TpN9g==" - }, - "@babel/types": { - "version": "7.18.7", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.7.tgz", - "integrity": "sha512-QG3yxTcTIBoAcQmkCs+wAPYZhu7Dk9rXKacINfNbdJDNERTbLQbHGyVG8q/YGMPeCJRIhSY0+fTc5+xuh6WPSQ==", - "requires": { - "@babel/helper-validator-identifier": "^7.18.6", - "to-fast-properties": "^2.0.0" - } - } } }, "@babel/helper-plugin-utils": { @@ -747,384 +312,63 @@ "@babel/helper-environment-visitor": "^7.18.6", "@babel/helper-wrap-function": "^7.18.6", "@babel/types": "^7.18.6" - }, - "dependencies": { - "@babel/helper-environment-visitor": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.18.6.tgz", - "integrity": "sha512-8n6gSfn2baOY+qlp+VSzsosjCVGFqWKmDF0cCWOybh52Dw3SEyoWR1KrhMJASjLwIEkkAufZ0xvr+SxLHSpy2Q==" - }, - "@babel/helper-validator-identifier": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.18.6.tgz", - "integrity": "sha512-MmetCkz9ej86nJQV+sFCxoGGrUbU3q02kgLciwkrt9QqEB7cP39oKEY0PakknEO0Gu20SskMRi+AYZ3b1TpN9g==" - }, - "@babel/types": { - "version": "7.18.7", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.7.tgz", - "integrity": "sha512-QG3yxTcTIBoAcQmkCs+wAPYZhu7Dk9rXKacINfNbdJDNERTbLQbHGyVG8q/YGMPeCJRIhSY0+fTc5+xuh6WPSQ==", - "requires": { - "@babel/helper-validator-identifier": "^7.18.6", - "to-fast-properties": "^2.0.0" - } - } } }, "@babel/helper-replace-supers": { "version": "7.18.6", "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.18.6.tgz", "integrity": "sha512-fTf7zoXnUGl9gF25fXCWE26t7Tvtyn6H4hkLSYhATwJvw2uYxd3aoXplMSe0g9XbwK7bmxNes7+FGO0rB/xC0g==", - "requires": { - "@babel/helper-environment-visitor": "^7.18.6", - "@babel/helper-member-expression-to-functions": "^7.18.6", - "@babel/helper-optimise-call-expression": "^7.18.6", - "@babel/traverse": "^7.18.6", - "@babel/types": "^7.18.6" - }, - "dependencies": { - "@babel/code-frame": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.18.6.tgz", - "integrity": "sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q==", - "requires": { - "@babel/highlight": "^7.18.6" - } - }, - "@babel/generator": { - "version": "7.18.7", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.18.7.tgz", - "integrity": "sha512-shck+7VLlY72a2w9c3zYWuE1pwOKEiQHV7GTUbSnhyl5eu3i04t30tBY82ZRWrDfo3gkakCFtevExnxbkf2a3A==", - "requires": { - "@babel/types": "^7.18.7", - "@jridgewell/gen-mapping": "^0.3.2", - "jsesc": "^2.5.1" - } - }, - "@babel/helper-environment-visitor": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.18.6.tgz", - "integrity": "sha512-8n6gSfn2baOY+qlp+VSzsosjCVGFqWKmDF0cCWOybh52Dw3SEyoWR1KrhMJASjLwIEkkAufZ0xvr+SxLHSpy2Q==" - }, - "@babel/helper-function-name": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.18.6.tgz", - "integrity": "sha512-0mWMxV1aC97dhjCah5U5Ua7668r5ZmSC2DLfH2EZnf9c3/dHZKiFa5pRLMH5tjSl471tY6496ZWk/kjNONBxhw==", - "requires": { - "@babel/template": "^7.18.6", - "@babel/types": "^7.18.6" - } - }, - "@babel/helper-hoist-variables": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.18.6.tgz", - "integrity": "sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q==", - "requires": { - "@babel/types": "^7.18.6" - } - }, - "@babel/helper-split-export-declaration": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.18.6.tgz", - "integrity": "sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA==", - "requires": { - "@babel/types": "^7.18.6" - } - }, - "@babel/helper-validator-identifier": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.18.6.tgz", - "integrity": "sha512-MmetCkz9ej86nJQV+sFCxoGGrUbU3q02kgLciwkrt9QqEB7cP39oKEY0PakknEO0Gu20SskMRi+AYZ3b1TpN9g==" - }, - "@babel/highlight": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.18.6.tgz", - "integrity": "sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==", - "requires": { - "@babel/helper-validator-identifier": "^7.18.6", - "chalk": "^2.0.0", - "js-tokens": "^4.0.0" - } - }, - "@babel/parser": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.18.6.tgz", - "integrity": "sha512-uQVSa9jJUe/G/304lXspfWVpKpK4euFLgGiMQFOCpM/bgcAdeoHwi/OQz23O9GK2osz26ZiXRRV9aV+Yl1O8tw==" - }, - "@babel/template": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.18.6.tgz", - "integrity": "sha512-JoDWzPe+wgBsTTgdnIma3iHNFC7YVJoPssVBDjiHfNlyt4YcunDtcDOUmfVDfCK5MfdsaIoX9PkijPhjH3nYUw==", - "requires": { - "@babel/code-frame": "^7.18.6", - "@babel/parser": "^7.18.6", - "@babel/types": "^7.18.6" - } - }, - "@babel/traverse": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.18.6.tgz", - "integrity": "sha512-zS/OKyqmD7lslOtFqbscH6gMLFYOfG1YPqCKfAW5KrTeolKqvB8UelR49Fpr6y93kYkW2Ik00mT1LOGiAGvizw==", - "requires": { - "@babel/code-frame": "^7.18.6", - "@babel/generator": "^7.18.6", - "@babel/helper-environment-visitor": "^7.18.6", - "@babel/helper-function-name": "^7.18.6", - "@babel/helper-hoist-variables": "^7.18.6", - "@babel/helper-split-export-declaration": "^7.18.6", - "@babel/parser": "^7.18.6", - "@babel/types": "^7.18.6", - "debug": "^4.1.0", - "globals": "^11.1.0" - } - }, - "@babel/types": { - "version": "7.18.7", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.7.tgz", - "integrity": "sha512-QG3yxTcTIBoAcQmkCs+wAPYZhu7Dk9rXKacINfNbdJDNERTbLQbHGyVG8q/YGMPeCJRIhSY0+fTc5+xuh6WPSQ==", - "requires": { - "@babel/helper-validator-identifier": "^7.18.6", - "to-fast-properties": "^2.0.0" - } - }, - "@jridgewell/gen-mapping": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.2.tgz", - "integrity": "sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A==", - "requires": { - "@jridgewell/set-array": "^1.0.1", - "@jridgewell/sourcemap-codec": "^1.4.10", - "@jridgewell/trace-mapping": "^0.3.9" - } - }, - "chalk": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", - "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", - "requires": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" - } - }, - "debug": { - "version": "4.3.4", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", - "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", - "requires": { - "ms": "2.1.2" - } - } - } - }, - "@babel/helper-simple-access": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.18.6.tgz", - "integrity": "sha512-iNpIgTgyAvDQpDj76POqg+YEt8fPxx3yaNBg3S30dxNKm2SWfYhD0TGrK/Eu9wHpUW63VQU894TsTg+GLbUa1g==", - "requires": { - "@babel/types": "^7.18.6" - }, - "dependencies": { - "@babel/helper-validator-identifier": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.18.6.tgz", - "integrity": "sha512-MmetCkz9ej86nJQV+sFCxoGGrUbU3q02kgLciwkrt9QqEB7cP39oKEY0PakknEO0Gu20SskMRi+AYZ3b1TpN9g==" - }, - "@babel/types": { - "version": "7.18.7", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.7.tgz", - "integrity": "sha512-QG3yxTcTIBoAcQmkCs+wAPYZhu7Dk9rXKacINfNbdJDNERTbLQbHGyVG8q/YGMPeCJRIhSY0+fTc5+xuh6WPSQ==", - "requires": { - "@babel/helper-validator-identifier": "^7.18.6", - "to-fast-properties": "^2.0.0" - } - } - } - }, - "@babel/helper-skip-transparent-expression-wrappers": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.18.6.tgz", - "integrity": "sha512-4KoLhwGS9vGethZpAhYnMejWkX64wsnHPDwvOsKWU6Fg4+AlK2Jz3TyjQLMEPvz+1zemi/WBdkYxCD0bAfIkiw==", - "requires": { - "@babel/types": "^7.18.6" - }, - "dependencies": { - "@babel/helper-validator-identifier": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.18.6.tgz", - "integrity": "sha512-MmetCkz9ej86nJQV+sFCxoGGrUbU3q02kgLciwkrt9QqEB7cP39oKEY0PakknEO0Gu20SskMRi+AYZ3b1TpN9g==" - }, - "@babel/types": { - "version": "7.18.7", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.7.tgz", - "integrity": "sha512-QG3yxTcTIBoAcQmkCs+wAPYZhu7Dk9rXKacINfNbdJDNERTbLQbHGyVG8q/YGMPeCJRIhSY0+fTc5+xuh6WPSQ==", - "requires": { - "@babel/helper-validator-identifier": "^7.18.6", - "to-fast-properties": "^2.0.0" - } - } - } - }, - "@babel/helper-split-export-declaration": { - "version": "7.16.7", - "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.16.7.tgz", - "integrity": "sha512-xbWoy/PFoxSWazIToT9Sif+jJTlrMcndIsaOKvTA6u7QEo7ilkRZpjew18/W3c7nm8fXdUDXh02VXTbZ0pGDNw==", - "requires": { - "@babel/types": "^7.16.7" - } - }, - "@babel/helper-validator-identifier": { - "version": "7.16.7", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.16.7.tgz", - "integrity": "sha512-hsEnFemeiW4D08A5gUAZxLBTXpZ39P+a+DGDsHw1yxqyQ/jzFEnxf5uTEGp+3bzAbNOxU1paTgYS4ECU/IgfDw==" - }, - "@babel/helper-validator-option": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.18.6.tgz", - "integrity": "sha512-XO7gESt5ouv/LRJdrVjkShckw6STTaB7l9BrpBaAHDeF5YZT+01PCwmR0SJHnkW6i8OwW/EVWRShfi4j2x+KQw==" - }, - "@babel/helper-wrap-function": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.18.6.tgz", - "integrity": "sha512-I5/LZfozwMNbwr/b1vhhuYD+J/mU+gfGAj5td7l5Rv9WYmH6i3Om69WGKNmlIpsVW/mF6O5bvTKbvDQZVgjqOw==", - "requires": { - "@babel/helper-function-name": "^7.18.6", - "@babel/template": "^7.18.6", - "@babel/traverse": "^7.18.6", - "@babel/types": "^7.18.6" - }, - "dependencies": { - "@babel/code-frame": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.18.6.tgz", - "integrity": "sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q==", - "requires": { - "@babel/highlight": "^7.18.6" - } - }, - "@babel/generator": { - "version": "7.18.7", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.18.7.tgz", - "integrity": "sha512-shck+7VLlY72a2w9c3zYWuE1pwOKEiQHV7GTUbSnhyl5eu3i04t30tBY82ZRWrDfo3gkakCFtevExnxbkf2a3A==", - "requires": { - "@babel/types": "^7.18.7", - "@jridgewell/gen-mapping": "^0.3.2", - "jsesc": "^2.5.1" - } - }, - "@babel/helper-environment-visitor": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.18.6.tgz", - "integrity": "sha512-8n6gSfn2baOY+qlp+VSzsosjCVGFqWKmDF0cCWOybh52Dw3SEyoWR1KrhMJASjLwIEkkAufZ0xvr+SxLHSpy2Q==" - }, - "@babel/helper-function-name": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.18.6.tgz", - "integrity": "sha512-0mWMxV1aC97dhjCah5U5Ua7668r5ZmSC2DLfH2EZnf9c3/dHZKiFa5pRLMH5tjSl471tY6496ZWk/kjNONBxhw==", - "requires": { - "@babel/template": "^7.18.6", - "@babel/types": "^7.18.6" - } - }, - "@babel/helper-hoist-variables": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.18.6.tgz", - "integrity": "sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q==", - "requires": { - "@babel/types": "^7.18.6" - } - }, - "@babel/helper-split-export-declaration": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.18.6.tgz", - "integrity": "sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA==", - "requires": { - "@babel/types": "^7.18.6" - } - }, - "@babel/helper-validator-identifier": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.18.6.tgz", - "integrity": "sha512-MmetCkz9ej86nJQV+sFCxoGGrUbU3q02kgLciwkrt9QqEB7cP39oKEY0PakknEO0Gu20SskMRi+AYZ3b1TpN9g==" - }, - "@babel/highlight": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.18.6.tgz", - "integrity": "sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==", - "requires": { - "@babel/helper-validator-identifier": "^7.18.6", - "chalk": "^2.0.0", - "js-tokens": "^4.0.0" - } - }, - "@babel/parser": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.18.6.tgz", - "integrity": "sha512-uQVSa9jJUe/G/304lXspfWVpKpK4euFLgGiMQFOCpM/bgcAdeoHwi/OQz23O9GK2osz26ZiXRRV9aV+Yl1O8tw==" - }, - "@babel/template": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.18.6.tgz", - "integrity": "sha512-JoDWzPe+wgBsTTgdnIma3iHNFC7YVJoPssVBDjiHfNlyt4YcunDtcDOUmfVDfCK5MfdsaIoX9PkijPhjH3nYUw==", - "requires": { - "@babel/code-frame": "^7.18.6", - "@babel/parser": "^7.18.6", - "@babel/types": "^7.18.6" - } - }, - "@babel/traverse": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.18.6.tgz", - "integrity": "sha512-zS/OKyqmD7lslOtFqbscH6gMLFYOfG1YPqCKfAW5KrTeolKqvB8UelR49Fpr6y93kYkW2Ik00mT1LOGiAGvizw==", - "requires": { - "@babel/code-frame": "^7.18.6", - "@babel/generator": "^7.18.6", - "@babel/helper-environment-visitor": "^7.18.6", - "@babel/helper-function-name": "^7.18.6", - "@babel/helper-hoist-variables": "^7.18.6", - "@babel/helper-split-export-declaration": "^7.18.6", - "@babel/parser": "^7.18.6", - "@babel/types": "^7.18.6", - "debug": "^4.1.0", - "globals": "^11.1.0" - } - }, - "@babel/types": { - "version": "7.18.7", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.7.tgz", - "integrity": "sha512-QG3yxTcTIBoAcQmkCs+wAPYZhu7Dk9rXKacINfNbdJDNERTbLQbHGyVG8q/YGMPeCJRIhSY0+fTc5+xuh6WPSQ==", - "requires": { - "@babel/helper-validator-identifier": "^7.18.6", - "to-fast-properties": "^2.0.0" - } - }, - "@jridgewell/gen-mapping": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.2.tgz", - "integrity": "sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A==", - "requires": { - "@jridgewell/set-array": "^1.0.1", - "@jridgewell/sourcemap-codec": "^1.4.10", - "@jridgewell/trace-mapping": "^0.3.9" - } - }, - "chalk": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", - "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", - "requires": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" - } - }, - "debug": { - "version": "4.3.4", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", - "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", - "requires": { - "ms": "2.1.2" - } - } + "requires": { + "@babel/helper-environment-visitor": "^7.18.6", + "@babel/helper-member-expression-to-functions": "^7.18.6", + "@babel/helper-optimise-call-expression": "^7.18.6", + "@babel/traverse": "^7.18.6", + "@babel/types": "^7.18.6" + } + }, + "@babel/helper-simple-access": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.18.6.tgz", + "integrity": "sha512-iNpIgTgyAvDQpDj76POqg+YEt8fPxx3yaNBg3S30dxNKm2SWfYhD0TGrK/Eu9wHpUW63VQU894TsTg+GLbUa1g==", + "requires": { + "@babel/types": "^7.18.6" + } + }, + "@babel/helper-skip-transparent-expression-wrappers": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.18.6.tgz", + "integrity": "sha512-4KoLhwGS9vGethZpAhYnMejWkX64wsnHPDwvOsKWU6Fg4+AlK2Jz3TyjQLMEPvz+1zemi/WBdkYxCD0bAfIkiw==", + "requires": { + "@babel/types": "^7.18.6" + } + }, + "@babel/helper-split-export-declaration": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.18.6.tgz", + "integrity": "sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA==", + "requires": { + "@babel/types": "^7.18.6" + } + }, + "@babel/helper-validator-identifier": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.18.6.tgz", + "integrity": "sha512-MmetCkz9ej86nJQV+sFCxoGGrUbU3q02kgLciwkrt9QqEB7cP39oKEY0PakknEO0Gu20SskMRi+AYZ3b1TpN9g==" + }, + "@babel/helper-validator-option": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.18.6.tgz", + "integrity": "sha512-XO7gESt5ouv/LRJdrVjkShckw6STTaB7l9BrpBaAHDeF5YZT+01PCwmR0SJHnkW6i8OwW/EVWRShfi4j2x+KQw==" + }, + "@babel/helper-wrap-function": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.18.6.tgz", + "integrity": "sha512-I5/LZfozwMNbwr/b1vhhuYD+J/mU+gfGAj5td7l5Rv9WYmH6i3Om69WGKNmlIpsVW/mF6O5bvTKbvDQZVgjqOw==", + "requires": { + "@babel/helper-function-name": "^7.18.6", + "@babel/template": "^7.18.6", + "@babel/traverse": "^7.18.6", + "@babel/types": "^7.18.6" } }, "@babel/helpers": { @@ -1135,148 +379,14 @@ "@babel/template": "^7.18.6", "@babel/traverse": "^7.18.6", "@babel/types": "^7.18.6" - }, - "dependencies": { - "@babel/code-frame": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.18.6.tgz", - "integrity": "sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q==", - "requires": { - "@babel/highlight": "^7.18.6" - } - }, - "@babel/generator": { - "version": "7.18.7", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.18.7.tgz", - "integrity": "sha512-shck+7VLlY72a2w9c3zYWuE1pwOKEiQHV7GTUbSnhyl5eu3i04t30tBY82ZRWrDfo3gkakCFtevExnxbkf2a3A==", - "requires": { - "@babel/types": "^7.18.7", - "@jridgewell/gen-mapping": "^0.3.2", - "jsesc": "^2.5.1" - } - }, - "@babel/helper-environment-visitor": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.18.6.tgz", - "integrity": "sha512-8n6gSfn2baOY+qlp+VSzsosjCVGFqWKmDF0cCWOybh52Dw3SEyoWR1KrhMJASjLwIEkkAufZ0xvr+SxLHSpy2Q==" - }, - "@babel/helper-function-name": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.18.6.tgz", - "integrity": "sha512-0mWMxV1aC97dhjCah5U5Ua7668r5ZmSC2DLfH2EZnf9c3/dHZKiFa5pRLMH5tjSl471tY6496ZWk/kjNONBxhw==", - "requires": { - "@babel/template": "^7.18.6", - "@babel/types": "^7.18.6" - } - }, - "@babel/helper-hoist-variables": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.18.6.tgz", - "integrity": "sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q==", - "requires": { - "@babel/types": "^7.18.6" - } - }, - "@babel/helper-split-export-declaration": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.18.6.tgz", - "integrity": "sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA==", - "requires": { - "@babel/types": "^7.18.6" - } - }, - "@babel/helper-validator-identifier": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.18.6.tgz", - "integrity": "sha512-MmetCkz9ej86nJQV+sFCxoGGrUbU3q02kgLciwkrt9QqEB7cP39oKEY0PakknEO0Gu20SskMRi+AYZ3b1TpN9g==" - }, - "@babel/highlight": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.18.6.tgz", - "integrity": "sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==", - "requires": { - "@babel/helper-validator-identifier": "^7.18.6", - "chalk": "^2.0.0", - "js-tokens": "^4.0.0" - } - }, - "@babel/parser": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.18.6.tgz", - "integrity": "sha512-uQVSa9jJUe/G/304lXspfWVpKpK4euFLgGiMQFOCpM/bgcAdeoHwi/OQz23O9GK2osz26ZiXRRV9aV+Yl1O8tw==" - }, - "@babel/template": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.18.6.tgz", - "integrity": "sha512-JoDWzPe+wgBsTTgdnIma3iHNFC7YVJoPssVBDjiHfNlyt4YcunDtcDOUmfVDfCK5MfdsaIoX9PkijPhjH3nYUw==", - "requires": { - "@babel/code-frame": "^7.18.6", - "@babel/parser": "^7.18.6", - "@babel/types": "^7.18.6" - } - }, - "@babel/traverse": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.18.6.tgz", - "integrity": "sha512-zS/OKyqmD7lslOtFqbscH6gMLFYOfG1YPqCKfAW5KrTeolKqvB8UelR49Fpr6y93kYkW2Ik00mT1LOGiAGvizw==", - "requires": { - "@babel/code-frame": "^7.18.6", - "@babel/generator": "^7.18.6", - "@babel/helper-environment-visitor": "^7.18.6", - "@babel/helper-function-name": "^7.18.6", - "@babel/helper-hoist-variables": "^7.18.6", - "@babel/helper-split-export-declaration": "^7.18.6", - "@babel/parser": "^7.18.6", - "@babel/types": "^7.18.6", - "debug": "^4.1.0", - "globals": "^11.1.0" - } - }, - "@babel/types": { - "version": "7.18.7", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.7.tgz", - "integrity": "sha512-QG3yxTcTIBoAcQmkCs+wAPYZhu7Dk9rXKacINfNbdJDNERTbLQbHGyVG8q/YGMPeCJRIhSY0+fTc5+xuh6WPSQ==", - "requires": { - "@babel/helper-validator-identifier": "^7.18.6", - "to-fast-properties": "^2.0.0" - } - }, - "@jridgewell/gen-mapping": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.2.tgz", - "integrity": "sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A==", - "requires": { - "@jridgewell/set-array": "^1.0.1", - "@jridgewell/sourcemap-codec": "^1.4.10", - "@jridgewell/trace-mapping": "^0.3.9" - } - }, - "chalk": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", - "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", - "requires": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" - } - }, - "debug": { - "version": "4.3.4", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", - "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", - "requires": { - "ms": "2.1.2" - } - } } }, "@babel/highlight": { - "version": "7.17.12", - "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.17.12.tgz", - "integrity": "sha512-7yykMVF3hfZY2jsHZEEgLc+3x4o1O+fYyULu11GynEUQNwB6lua+IIQn1FiJxNucd5UlyJryrwsOh8PL9Sn8Qg==", + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.18.6.tgz", + "integrity": "sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==", "requires": { - "@babel/helper-validator-identifier": "^7.16.7", + "@babel/helper-validator-identifier": "^7.18.6", "chalk": "^2.0.0", "js-tokens": "^4.0.0" }, @@ -1294,9 +404,9 @@ } }, "@babel/parser": { - "version": "7.18.5", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.18.5.tgz", - "integrity": "sha512-YZWVaglMiplo7v8f1oMQ5ZPQr0vn7HPeZXxXWsxXJRjGVrzUFn9OxFQl1sb5wzfootjA/yChhW84BV+383FSOw==" + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.18.6.tgz", + "integrity": "sha512-uQVSa9jJUe/G/304lXspfWVpKpK4euFLgGiMQFOCpM/bgcAdeoHwi/OQz23O9GK2osz26ZiXRRV9aV+Yl1O8tw==" }, "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": { "version": "7.18.6", @@ -1325,13 +435,6 @@ "@babel/helper-plugin-utils": "^7.18.6", "@babel/helper-remap-async-to-generator": "^7.18.6", "@babel/plugin-syntax-async-generators": "^7.8.4" - }, - "dependencies": { - "@babel/helper-environment-visitor": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.18.6.tgz", - "integrity": "sha512-8n6gSfn2baOY+qlp+VSzsosjCVGFqWKmDF0cCWOybh52Dw3SEyoWR1KrhMJASjLwIEkkAufZ0xvr+SxLHSpy2Q==" - } } }, "@babel/plugin-proposal-class-properties": { @@ -1658,87 +761,6 @@ "@babel/helper-replace-supers": "^7.18.6", "@babel/helper-split-export-declaration": "^7.18.6", "globals": "^11.1.0" - }, - "dependencies": { - "@babel/code-frame": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.18.6.tgz", - "integrity": "sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q==", - "requires": { - "@babel/highlight": "^7.18.6" - } - }, - "@babel/helper-environment-visitor": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.18.6.tgz", - "integrity": "sha512-8n6gSfn2baOY+qlp+VSzsosjCVGFqWKmDF0cCWOybh52Dw3SEyoWR1KrhMJASjLwIEkkAufZ0xvr+SxLHSpy2Q==" - }, - "@babel/helper-function-name": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.18.6.tgz", - "integrity": "sha512-0mWMxV1aC97dhjCah5U5Ua7668r5ZmSC2DLfH2EZnf9c3/dHZKiFa5pRLMH5tjSl471tY6496ZWk/kjNONBxhw==", - "requires": { - "@babel/template": "^7.18.6", - "@babel/types": "^7.18.6" - } - }, - "@babel/helper-split-export-declaration": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.18.6.tgz", - "integrity": "sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA==", - "requires": { - "@babel/types": "^7.18.6" - } - }, - "@babel/helper-validator-identifier": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.18.6.tgz", - "integrity": "sha512-MmetCkz9ej86nJQV+sFCxoGGrUbU3q02kgLciwkrt9QqEB7cP39oKEY0PakknEO0Gu20SskMRi+AYZ3b1TpN9g==" - }, - "@babel/highlight": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.18.6.tgz", - "integrity": "sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==", - "requires": { - "@babel/helper-validator-identifier": "^7.18.6", - "chalk": "^2.0.0", - "js-tokens": "^4.0.0" - } - }, - "@babel/parser": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.18.6.tgz", - "integrity": "sha512-uQVSa9jJUe/G/304lXspfWVpKpK4euFLgGiMQFOCpM/bgcAdeoHwi/OQz23O9GK2osz26ZiXRRV9aV+Yl1O8tw==" - }, - "@babel/template": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.18.6.tgz", - "integrity": "sha512-JoDWzPe+wgBsTTgdnIma3iHNFC7YVJoPssVBDjiHfNlyt4YcunDtcDOUmfVDfCK5MfdsaIoX9PkijPhjH3nYUw==", - "requires": { - "@babel/code-frame": "^7.18.6", - "@babel/parser": "^7.18.6", - "@babel/types": "^7.18.6" - } - }, - "@babel/types": { - "version": "7.18.7", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.7.tgz", - "integrity": "sha512-QG3yxTcTIBoAcQmkCs+wAPYZhu7Dk9rXKacINfNbdJDNERTbLQbHGyVG8q/YGMPeCJRIhSY0+fTc5+xuh6WPSQ==", - "requires": { - "@babel/helper-validator-identifier": "^7.18.6", - "to-fast-properties": "^2.0.0" - } - }, - "chalk": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", - "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", - "requires": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" - } - } } }, "@babel/plugin-transform-computed-properties": { @@ -1808,74 +830,6 @@ "@babel/helper-compilation-targets": "^7.18.6", "@babel/helper-function-name": "^7.18.6", "@babel/helper-plugin-utils": "^7.18.6" - }, - "dependencies": { - "@babel/code-frame": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.18.6.tgz", - "integrity": "sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q==", - "requires": { - "@babel/highlight": "^7.18.6" - } - }, - "@babel/helper-function-name": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.18.6.tgz", - "integrity": "sha512-0mWMxV1aC97dhjCah5U5Ua7668r5ZmSC2DLfH2EZnf9c3/dHZKiFa5pRLMH5tjSl471tY6496ZWk/kjNONBxhw==", - "requires": { - "@babel/template": "^7.18.6", - "@babel/types": "^7.18.6" - } - }, - "@babel/helper-validator-identifier": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.18.6.tgz", - "integrity": "sha512-MmetCkz9ej86nJQV+sFCxoGGrUbU3q02kgLciwkrt9QqEB7cP39oKEY0PakknEO0Gu20SskMRi+AYZ3b1TpN9g==" - }, - "@babel/highlight": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.18.6.tgz", - "integrity": "sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==", - "requires": { - "@babel/helper-validator-identifier": "^7.18.6", - "chalk": "^2.0.0", - "js-tokens": "^4.0.0" - } - }, - "@babel/parser": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.18.6.tgz", - "integrity": "sha512-uQVSa9jJUe/G/304lXspfWVpKpK4euFLgGiMQFOCpM/bgcAdeoHwi/OQz23O9GK2osz26ZiXRRV9aV+Yl1O8tw==" - }, - "@babel/template": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.18.6.tgz", - "integrity": "sha512-JoDWzPe+wgBsTTgdnIma3iHNFC7YVJoPssVBDjiHfNlyt4YcunDtcDOUmfVDfCK5MfdsaIoX9PkijPhjH3nYUw==", - "requires": { - "@babel/code-frame": "^7.18.6", - "@babel/parser": "^7.18.6", - "@babel/types": "^7.18.6" - } - }, - "@babel/types": { - "version": "7.18.7", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.7.tgz", - "integrity": "sha512-QG3yxTcTIBoAcQmkCs+wAPYZhu7Dk9rXKacINfNbdJDNERTbLQbHGyVG8q/YGMPeCJRIhSY0+fTc5+xuh6WPSQ==", - "requires": { - "@babel/helper-validator-identifier": "^7.18.6", - "to-fast-properties": "^2.0.0" - } - }, - "chalk": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", - "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", - "requires": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" - } - } } }, "@babel/plugin-transform-literals": { @@ -1925,30 +879,6 @@ "@babel/helper-plugin-utils": "^7.18.6", "@babel/helper-validator-identifier": "^7.18.6", "babel-plugin-dynamic-import-node": "^2.3.3" - }, - "dependencies": { - "@babel/helper-hoist-variables": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.18.6.tgz", - "integrity": "sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q==", - "requires": { - "@babel/types": "^7.18.6" - } - }, - "@babel/helper-validator-identifier": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.18.6.tgz", - "integrity": "sha512-MmetCkz9ej86nJQV+sFCxoGGrUbU3q02kgLciwkrt9QqEB7cP39oKEY0PakknEO0Gu20SskMRi+AYZ3b1TpN9g==" - }, - "@babel/types": { - "version": "7.18.7", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.7.tgz", - "integrity": "sha512-QG3yxTcTIBoAcQmkCs+wAPYZhu7Dk9rXKacINfNbdJDNERTbLQbHGyVG8q/YGMPeCJRIhSY0+fTc5+xuh6WPSQ==", - "requires": { - "@babel/helper-validator-identifier": "^7.18.6", - "to-fast-properties": "^2.0.0" - } - } } }, "@babel/plugin-transform-modules-umd": { @@ -2020,22 +950,6 @@ "@babel/helper-plugin-utils": "^7.18.6", "@babel/plugin-syntax-jsx": "^7.18.6", "@babel/types": "^7.18.6" - }, - "dependencies": { - "@babel/helper-validator-identifier": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.18.6.tgz", - "integrity": "sha512-MmetCkz9ej86nJQV+sFCxoGGrUbU3q02kgLciwkrt9QqEB7cP39oKEY0PakknEO0Gu20SskMRi+AYZ3b1TpN9g==" - }, - "@babel/types": { - "version": "7.18.7", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.7.tgz", - "integrity": "sha512-QG3yxTcTIBoAcQmkCs+wAPYZhu7Dk9rXKacINfNbdJDNERTbLQbHGyVG8q/YGMPeCJRIhSY0+fTc5+xuh6WPSQ==", - "requires": { - "@babel/helper-validator-identifier": "^7.18.6", - "to-fast-properties": "^2.0.0" - } - } } }, "@babel/plugin-transform-react-jsx-development": { @@ -2242,20 +1156,6 @@ "semver": "^6.3.0" }, "dependencies": { - "@babel/helper-validator-identifier": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.18.6.tgz", - "integrity": "sha512-MmetCkz9ej86nJQV+sFCxoGGrUbU3q02kgLciwkrt9QqEB7cP39oKEY0PakknEO0Gu20SskMRi+AYZ3b1TpN9g==" - }, - "@babel/types": { - "version": "7.18.7", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.7.tgz", - "integrity": "sha512-QG3yxTcTIBoAcQmkCs+wAPYZhu7Dk9rXKacINfNbdJDNERTbLQbHGyVG8q/YGMPeCJRIhSY0+fTc5+xuh6WPSQ==", - "requires": { - "@babel/helper-validator-identifier": "^7.18.6", - "to-fast-properties": "^2.0.0" - } - }, "semver": { "version": "6.3.0", "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", @@ -2299,9 +1199,9 @@ } }, "@babel/runtime": { - "version": "7.18.3", - "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.18.3.tgz", - "integrity": "sha512-38Y8f7YUhce/K7RMwTp7m0uCumpv9hZkitCbBClqQIow1qSbCvGkcegKOXpEWCQLfWmevgRiWokZ1GkpfhbZug==", + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.18.6.tgz", + "integrity": "sha512-t9wi7/AW6XtKahAe20Yw0/mMljKq0B1r2fPdvaAdV/KPDZewFXdaaa6K7lxmZBZ8FBNpCiAT6iHPmd6QO9bKfQ==", "requires": { "regenerator-runtime": "^0.13.4" } @@ -2316,28 +1216,28 @@ } }, "@babel/template": { - "version": "7.16.7", - "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.16.7.tgz", - "integrity": "sha512-I8j/x8kHUrbYRTUxXrrMbfCa7jxkE7tZre39x3kjr9hvI82cK1FfqLygotcWN5kdPGWcLdWMHpSBavse5tWw3w==", + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.18.6.tgz", + "integrity": "sha512-JoDWzPe+wgBsTTgdnIma3iHNFC7YVJoPssVBDjiHfNlyt4YcunDtcDOUmfVDfCK5MfdsaIoX9PkijPhjH3nYUw==", "requires": { - "@babel/code-frame": "^7.16.7", - "@babel/parser": "^7.16.7", - "@babel/types": "^7.16.7" + "@babel/code-frame": "^7.18.6", + "@babel/parser": "^7.18.6", + "@babel/types": "^7.18.6" } }, "@babel/traverse": { - "version": "7.18.5", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.18.5.tgz", - "integrity": "sha512-aKXj1KT66sBj0vVzk6rEeAO6Z9aiiQ68wfDgge3nHhA/my6xMM/7HGQUNumKZaoa2qUPQ5whJG9aAifsxUKfLA==", - "requires": { - "@babel/code-frame": "^7.16.7", - "@babel/generator": "^7.18.2", - "@babel/helper-environment-visitor": "^7.18.2", - "@babel/helper-function-name": "^7.17.9", - "@babel/helper-hoist-variables": "^7.16.7", - "@babel/helper-split-export-declaration": "^7.16.7", - "@babel/parser": "^7.18.5", - "@babel/types": "^7.18.4", + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.18.6.tgz", + "integrity": "sha512-zS/OKyqmD7lslOtFqbscH6gMLFYOfG1YPqCKfAW5KrTeolKqvB8UelR49Fpr6y93kYkW2Ik00mT1LOGiAGvizw==", + "requires": { + "@babel/code-frame": "^7.18.6", + "@babel/generator": "^7.18.6", + "@babel/helper-environment-visitor": "^7.18.6", + "@babel/helper-function-name": "^7.18.6", + "@babel/helper-hoist-variables": "^7.18.6", + "@babel/helper-split-export-declaration": "^7.18.6", + "@babel/parser": "^7.18.6", + "@babel/types": "^7.18.6", "debug": "^4.1.0", "globals": "^11.1.0" }, @@ -2353,11 +1253,11 @@ } }, "@babel/types": { - "version": "7.18.4", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.4.tgz", - "integrity": "sha512-ThN1mBcMq5pG/Vm2IcBmPPfyPXbd8S02rS+OBIDENdufvqC7Z/jHPCv9IcP01277aKtDI8g/2XysBN4hA8niiw==", + "version": "7.18.7", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.7.tgz", + "integrity": "sha512-QG3yxTcTIBoAcQmkCs+wAPYZhu7Dk9rXKacINfNbdJDNERTbLQbHGyVG8q/YGMPeCJRIhSY0+fTc5+xuh6WPSQ==", "requires": { - "@babel/helper-validator-identifier": "^7.16.7", + "@babel/helper-validator-identifier": "^7.18.6", "to-fast-properties": "^2.0.0" } }, @@ -2402,9 +1302,9 @@ } }, "globals": { - "version": "13.15.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-13.15.0.tgz", - "integrity": "sha512-bpzcOlgDhMG070Av0Vy5Owklpv1I6+j96GhUI7Rh7IzDCKLzboflLrrfqMu8NquDbiR4EOQk7XzJwqVJxicxog==", + "version": "13.16.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.16.0.tgz", + "integrity": "sha512-A1lrQfpNF+McdPOnnFqY3kSN0AFTy485bTi1bkLk4mVPODIUEcSfhHgRqA+QdXPksrSTTztYXx37NFV+GpGk3Q==", "requires": { "type-fest": "^0.20.2" } @@ -2417,13 +1317,13 @@ } }, "@gatsbyjs/parcel-namer-relative-to-cwd": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/@gatsbyjs/parcel-namer-relative-to-cwd/-/parcel-namer-relative-to-cwd-1.2.0.tgz", - "integrity": "sha512-4iIdquFDl+b+U8Ng0dg6dCtxB/cnH27ERrlQQlxfdaWe8e9CLo8aWc6u3UeuHwNJixBFOUbOgEFaA5qCUPwLCQ==", + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/@gatsbyjs/parcel-namer-relative-to-cwd/-/parcel-namer-relative-to-cwd-1.3.0.tgz", + "integrity": "sha512-nd1lQn7ezg51ekqZm8iZjND8akB7bsGkGe7GdIPdTwbhale2dHLqd74qg+bBrEjv5f5aFZhpJeY9XpeU4emWZQ==", "requires": { "@babel/runtime": "^7.18.0", "@parcel/plugin": "2.6.0", - "gatsby-core-utils": "^3.17.0" + "gatsby-core-utils": "^3.18.0" } }, "@gatsbyjs/potrace": { @@ -2498,13 +1398,13 @@ } }, "@graphql-codegen/typescript": { - "version": "2.5.1", - "resolved": "https://registry.npmjs.org/@graphql-codegen/typescript/-/typescript-2.5.1.tgz", - "integrity": "sha512-D/9V2VfVIE4Mu5UiMGQtxyFU5xe1ZkAZi8g/IsqymW8rqlhTwsGhtk4JR55qPfOYxR8G94RJSJpzgNakRneytw==", + "version": "2.6.0", + "resolved": "https://registry.npmjs.org/@graphql-codegen/typescript/-/typescript-2.6.0.tgz", + "integrity": "sha512-f36ilg8J+wui0OhmQglIZ+2z4Ybc08Y7r7BlBDqfJ1F5X0zau0SlC7Hp2iCoCA0ucqZYtiUU/0n+/R8m1cTrQQ==", "requires": { "@graphql-codegen/plugin-helpers": "^2.4.0", "@graphql-codegen/schema-ast": "^2.4.1", - "@graphql-codegen/visitor-plugin-common": "2.9.1", + "@graphql-codegen/visitor-plugin-common": "2.10.0", "auto-bind": "~4.0.0", "tslib": "~2.4.0" }, @@ -2517,13 +1417,13 @@ } }, "@graphql-codegen/typescript-operations": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/@graphql-codegen/typescript-operations/-/typescript-operations-2.4.2.tgz", - "integrity": "sha512-0/Jk+FxJVOdznSJ+G3KKPbMr2gK67yQetUAUS0FzV9FptVDFkklK/BazKqJJE5dNrj9ubuI2BafXPzSTN4M2Ug==", + "version": "2.4.3", + "resolved": "https://registry.npmjs.org/@graphql-codegen/typescript-operations/-/typescript-operations-2.4.3.tgz", + "integrity": "sha512-MW9cU/zCAmfFAObwW23e+GrW3CoV9OX2gVm/V1565WGZXDQPUc5Y5IjdfGfunV4ApkgFDiHpF1Mz/AS55OErgw==", "requires": { "@graphql-codegen/plugin-helpers": "^2.4.0", - "@graphql-codegen/typescript": "^2.5.1", - "@graphql-codegen/visitor-plugin-common": "2.9.1", + "@graphql-codegen/typescript": "^2.6.0", + "@graphql-codegen/visitor-plugin-common": "2.10.0", "auto-bind": "~4.0.0", "tslib": "~2.4.0" }, @@ -2536,9 +1436,9 @@ } }, "@graphql-codegen/visitor-plugin-common": { - "version": "2.9.1", - "resolved": "https://registry.npmjs.org/@graphql-codegen/visitor-plugin-common/-/visitor-plugin-common-2.9.1.tgz", - "integrity": "sha512-j9eGOSGt+sJcwv0ijhZiQ2cF/0ponscekNVoF+vHdOT4RB0qgOQxykPBk6EbKxIHECnkdV8ARdPVTA21A93/QQ==", + "version": "2.10.0", + "resolved": "https://registry.npmjs.org/@graphql-codegen/visitor-plugin-common/-/visitor-plugin-common-2.10.0.tgz", + "integrity": "sha512-nWoxHKUdwOJCWV96Ks1x4EwYCWsZDJXB+2j6EQz5j27DzdxmQInZ86degaDCd3EgbwhMQEMtiZiPGFFDrgBkHA==", "requires": { "@graphql-codegen/plugin-helpers": "^2.4.0", "@graphql-tools/optimize": "^1.0.1", @@ -3384,14 +2284,14 @@ } }, "@jridgewell/resolve-uri": { - "version": "3.0.7", - "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.0.7.tgz", - "integrity": "sha512-8cXDaBBHOr2pQ7j77Y6Vp5VDT2sIqWyWQ56TjEq4ih/a4iST3dItRe8Q9fp0rrIl9DoKhWQtUQz/YpOxLkXbNA==" + "version": "3.0.8", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.0.8.tgz", + "integrity": "sha512-YK5G9LaddzGbcucK4c8h5tWFmMPBvRZ/uyWmN1/SbBdIvqGUdWGkJ5BAaccgs6XbzVLsqbPJrBSFwKv3kT9i7w==" }, "@jridgewell/set-array": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.1.tgz", - "integrity": "sha512-Ct5MqZkLGEXTVmQYbGtx9SVqD2fqwvdubdps5D3djjAkgkKwT918VNOz65pEHFaYTeWcukmJmH5SwsA9Tn2ObQ==" + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz", + "integrity": "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==" }, "@jridgewell/source-map": { "version": "0.3.2", @@ -3415,14 +2315,14 @@ } }, "@jridgewell/sourcemap-codec": { - "version": "1.4.13", - "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.13.tgz", - "integrity": "sha512-GryiOJmNcWbovBxTfZSF71V/mXbgcV3MewDe3kIMCLyIh5e7SKAeUZs+rMnJ8jkMolZ/4/VsdBmMrw3l+VdZ3w==" + "version": "1.4.14", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz", + "integrity": "sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==" }, "@jridgewell/trace-mapping": { - "version": "0.3.13", - "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.13.tgz", - "integrity": "sha512-o1xbKhp9qnIAoHJSWd6KlCZfqslL4valSF81H8ImioOAxluWYWOpWkpyktY2vnt4tbrX9XYaxovq6cgowaJp2w==", + "version": "0.3.14", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.14.tgz", + "integrity": "sha512-bJWEfQ9lPTvm3SneWwRFVLzrh6nhjwqw7TUFFBEMzwvg7t7PCDenf2lDwqo4NQXzdpgBXyFgDWnQA+2vkruksQ==", "requires": { "@jridgewell/resolve-uri": "^3.0.3", "@jridgewell/sourcemap-codec": "^1.4.10" @@ -3797,9 +2697,9 @@ }, "dependencies": { "globals": { - "version": "13.15.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-13.15.0.tgz", - "integrity": "sha512-bpzcOlgDhMG070Av0Vy5Owklpv1I6+j96GhUI7Rh7IzDCKLzboflLrrfqMu8NquDbiR4EOQk7XzJwqVJxicxog==", + "version": "13.16.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.16.0.tgz", + "integrity": "sha512-A1lrQfpNF+McdPOnnFqY3kSN0AFTy485bTi1bkLk4mVPODIUEcSfhHgRqA+QdXPksrSTTztYXx37NFV+GpGk3Q==", "requires": { "type-fest": "^0.20.2" } @@ -3881,9 +2781,9 @@ } }, "@parcel/source-map": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/@parcel/source-map/-/source-map-2.0.5.tgz", - "integrity": "sha512-DRVlCFKLpqBSIbMxUoVlHgfiv12HTW/U7nnhzw52YgzDVXUX9OA41dXS1PU0pJ1si+D1k8msATUC+AoldN43mg==", + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/@parcel/source-map/-/source-map-2.1.0.tgz", + "integrity": "sha512-E7UOEIof2o89LrKk1agSLmwakjigmEdDp1ZaEdsLVEvq63R/bul4Ij5CT+0ZDcijGpl5tnTbQADY9EyYGtjYgQ==", "requires": { "detect-libc": "^1.0.3" } @@ -4167,9 +3067,9 @@ } }, "@types/eslint-scope": { - "version": "3.7.3", - "resolved": "https://registry.npmjs.org/@types/eslint-scope/-/eslint-scope-3.7.3.tgz", - "integrity": "sha512-PB3ldyrcnAicT35TWPs5IcwKD8S333HMaa2VVv4+wdvebJkjWuW/xESoB8IwRcog8HYVYamb1g/R31Qv5Bx03g==", + "version": "3.7.4", + "resolved": "https://registry.npmjs.org/@types/eslint-scope/-/eslint-scope-3.7.4.tgz", + "integrity": "sha512-9K4zoImiZc3HlIp6AVUDE4CWYx22a+lhSZMYNpbjW04+YF0KWj4pJXnEMjdnFTiQibFFmElcsasJXDbdI/EPhA==", "requires": { "@types/eslint": "*", "@types/estree": "*" @@ -4265,9 +3165,9 @@ } }, "@types/node": { - "version": "18.0.0", - "resolved": "https://registry.npmjs.org/@types/node/-/node-18.0.0.tgz", - "integrity": "sha512-cHlGmko4gWLVI27cGJntjs/Sj8th9aYwplmZFwmmgYQQvL5NUsgVJG7OddLvNfLqYS31KFN0s3qlaD9qCaxACA==" + "version": "18.0.1", + "resolved": "https://registry.npmjs.org/@types/node/-/node-18.0.1.tgz", + "integrity": "sha512-CmR8+Tsy95hhwtZBKJBs0/FFq4XX7sDZHlGGf+0q+BRZfMbOTkzkj0AFAuTyXbObDIoanaBBW0+KEW+m3N16Wg==" }, "@types/node-fetch": { "version": "2.6.2", @@ -5038,12 +3938,12 @@ } }, "babel-plugin-remove-graphql-queries": { - "version": "4.17.0", - "resolved": "https://registry.npmjs.org/babel-plugin-remove-graphql-queries/-/babel-plugin-remove-graphql-queries-4.17.0.tgz", - "integrity": "sha512-UovjamHhy5y46WyBO/hfqxrLbMq04o+hlTeqCRzeLol4eWtH+8CufdLAZWYtM1l1BIChwvXCxDY2ugeXlbj7+w==", + "version": "4.18.0", + "resolved": "https://registry.npmjs.org/babel-plugin-remove-graphql-queries/-/babel-plugin-remove-graphql-queries-4.18.0.tgz", + "integrity": "sha512-6oOm/cTZdk+7yPh4R4ISLKNur3rK5w2zAUCXTOGKYcRYbvKCS22ODafQBrNcu/UdfpXwSz3XZOG5ru72Z5usUw==", "requires": { "@babel/runtime": "^7.15.4", - "gatsby-core-utils": "^3.17.0" + "gatsby-core-utils": "^3.18.0" } }, "babel-plugin-syntax-object-rest-spread": { @@ -5105,9 +4005,9 @@ } }, "babel-preset-gatsby": { - "version": "2.17.0", - "resolved": "https://registry.npmjs.org/babel-preset-gatsby/-/babel-preset-gatsby-2.17.0.tgz", - "integrity": "sha512-hLeovvehdKkfFAsfTKCATKQasLyQa49TrJtct5VthERrb2dhkV71NIfmbiEa9Ae5x+qGYhYvufqMROGptewXbQ==", + "version": "2.18.0", + "resolved": "https://registry.npmjs.org/babel-preset-gatsby/-/babel-preset-gatsby-2.18.0.tgz", + "integrity": "sha512-b6BJEl0MlA/nh+IkTJRgvPEgdN09Pu34Szo5dE4QYvQa66++EqfQUK5huqr+FgZJedPPYYbRY2SgKlRXev5QIQ==", "requires": { "@babel/plugin-proposal-class-properties": "^7.14.0", "@babel/plugin-proposal-nullish-coalescing-operator": "^7.14.5", @@ -5122,8 +4022,8 @@ "babel-plugin-dynamic-import-node": "^2.3.3", "babel-plugin-macros": "^3.1.0", "babel-plugin-transform-react-remove-prop-types": "^0.4.24", - "gatsby-core-utils": "^3.17.0", - "gatsby-legacy-polyfills": "^2.17.0" + "gatsby-core-utils": "^3.18.0", + "gatsby-legacy-polyfills": "^2.18.0" } }, "babel-runtime": { @@ -5492,9 +4392,9 @@ } }, "caniuse-lite": { - "version": "1.0.30001359", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001359.tgz", - "integrity": "sha512-Xln/BAsPzEuiVLgJ2/45IaqD9jShtk3Y33anKb4+yLwQzws3+v6odKfpgES/cDEaZMLzSChpIGdbOYtH9MyuHw==" + "version": "1.0.30001363", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001363.tgz", + "integrity": "sha512-HpQhpzTGGPVMnCjIomjt+jvyUu8vNFo3TaDiZ/RcoTrlOq/5+tC8zHdsbgFB6MxmaY+jCpsH09aD80Bb4Ow3Sg==" }, "capital-case": { "version": "1.0.4", @@ -5618,9 +4518,9 @@ "integrity": "sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==" }, "cheerio": { - "version": "1.0.0-rc.11", - "resolved": "https://registry.npmjs.org/cheerio/-/cheerio-1.0.0-rc.11.tgz", - "integrity": "sha512-bQwNaDIBKID5ts/DsdhxrjqFXYfLw4ste+wMKqWA8DyKcS4qwsPP4Bk8ZNaTJjvpiX/qW3BT4sU7d6Bh5i+dag==", + "version": "1.0.0-rc.12", + "resolved": "https://registry.npmjs.org/cheerio/-/cheerio-1.0.0-rc.12.tgz", + "integrity": "sha512-VqR8m68vM46BNnuZ5NtnGBKIE/DfN0cRIzg9n40EIq9NOv90ayxLBXA8fXC5gquFRGJSTRqBq25Jt2ECLR431Q==", "requires": { "cheerio-select": "^2.1.0", "dom-serializer": "^2.0.0", @@ -5628,8 +4528,7 @@ "domutils": "^3.0.1", "htmlparser2": "^8.0.1", "parse5": "^7.0.0", - "parse5-htmlparser2-tree-adapter": "^7.0.0", - "tslib": "^2.4.0" + "parse5-htmlparser2-tree-adapter": "^7.0.0" }, "dependencies": { "dom-serializer": { @@ -5661,9 +4560,9 @@ } }, "entities": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/entities/-/entities-4.3.0.tgz", - "integrity": "sha512-/iP1rZrSEJ0DTlPiX+jbzlA3eVkY/e8L8SozroF395fIqE3TYF/Nz7YOMAawta+vLmyJ/hkGNNPcSbMADCCXbg==" + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/entities/-/entities-4.3.1.tgz", + "integrity": "sha512-o4q/dYJlmyjP2zfnaWDUC6A3BQFmVTX+tZPezK7k0GLSU9QYCauscf5Y+qcEPzKL+EixVouYDgLQK5H9GrLpkg==" }, "htmlparser2": { "version": "8.0.1", @@ -5675,11 +4574,6 @@ "domutils": "^3.0.1", "entities": "^4.3.0" } - }, - "tslib": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz", - "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==" } } }, @@ -5737,9 +4631,9 @@ } }, "entities": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/entities/-/entities-4.3.0.tgz", - "integrity": "sha512-/iP1rZrSEJ0DTlPiX+jbzlA3eVkY/e8L8SozroF395fIqE3TYF/Nz7YOMAawta+vLmyJ/hkGNNPcSbMADCCXbg==" + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/entities/-/entities-4.3.1.tgz", + "integrity": "sha512-o4q/dYJlmyjP2zfnaWDUC6A3BQFmVTX+tZPezK7k0GLSU9QYCauscf5Y+qcEPzKL+EixVouYDgLQK5H9GrLpkg==" } } }, @@ -6215,9 +5109,9 @@ } }, "create-gatsby": { - "version": "2.17.0", - "resolved": "https://registry.npmjs.org/create-gatsby/-/create-gatsby-2.17.0.tgz", - "integrity": "sha512-RrMAHZL7J5Ew/laz83g+UNQ2RnXszGuub3sG7DQkG0tK5mS9TqTW+FIYyzHCLhdJkr81qC/HRDFsJv0fuYISwg==", + "version": "2.18.0", + "resolved": "https://registry.npmjs.org/create-gatsby/-/create-gatsby-2.18.0.tgz", + "integrity": "sha512-74yn3+wlFKwg3DUVdFdBnfqc6gUVpYjqr/1XtQ0Rb57i0ygvER8Xgp4rY5Mm+8rl7JwBma1NONeM20cdMQjT2w==", "requires": { "@babel/runtime": "^7.15.4" } @@ -6789,9 +5683,9 @@ "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==" }, "electron-to-chromium": { - "version": "1.4.172", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.172.tgz", - "integrity": "sha512-yDoFfTJnqBAB6hSiPvzmsBJSrjOXJtHSJoqJdI/zSIh7DYupYnIOHt/bbPw/WE31BJjNTybDdNAs21gCMnTh0Q==" + "version": "1.4.179", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.179.tgz", + "integrity": "sha512-1XeTb/U/8Xgh2YgPOqhakLYsvCcU4U7jUjTMbEnhIJoIWd/Qt3yC8y0cbG+fHzn4zUNF99Ey1xiPf20bwgLO3Q==" }, "emoji-regex": { "version": "8.0.0", @@ -7140,9 +6034,9 @@ } }, "globals": { - "version": "13.15.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-13.15.0.tgz", - "integrity": "sha512-bpzcOlgDhMG070Av0Vy5Owklpv1I6+j96GhUI7Rh7IzDCKLzboflLrrfqMu8NquDbiR4EOQk7XzJwqVJxicxog==", + "version": "13.16.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.16.0.tgz", + "integrity": "sha512-A1lrQfpNF+McdPOnnFqY3kSN0AFTy485bTi1bkLk4mVPODIUEcSfhHgRqA+QdXPksrSTTztYXx37NFV+GpGk3Q==", "requires": { "type-fest": "^0.20.2" } @@ -8170,9 +7064,9 @@ "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==" }, "gatsby": { - "version": "4.17.2", - "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-4.17.2.tgz", - "integrity": "sha512-uMNH/X/Fd0kGjelgAPTukgQhxu/aMhRj5YJ07SM4D2yBuO+c4+y1dZRz5q9EUryCeVSx1cSt0J6JMkfzOXmbyA==", + "version": "4.18.0", + "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-4.18.0.tgz", + "integrity": "sha512-EyiwYUsbSKUKsdjm8nnLw5AGJwOJ9NAWcrFg1V/QU4CUnk/M8EiP0TxiGUmK1/K7g82XGxUjuAPYJKJk85yxHA==", "requires": { "@babel/code-frame": "^7.14.0", "@babel/core": "^7.15.5", @@ -8208,15 +7102,15 @@ "babel-plugin-add-module-exports": "^1.0.4", "babel-plugin-dynamic-import-node": "^2.3.3", "babel-plugin-lodash": "^3.3.4", - "babel-plugin-remove-graphql-queries": "^4.17.0", - "babel-preset-gatsby": "^2.17.0", + "babel-plugin-remove-graphql-queries": "^4.18.0", + "babel-preset-gatsby": "^2.18.0", "better-opn": "^2.1.1", "bluebird": "^3.7.2", "body-parser": "^1.19.0", "browserslist": "^4.17.5", "cache-manager": "^2.11.1", "chalk": "^4.1.2", - "chokidar": "^3.5.2", + "chokidar": "^3.5.3", "common-tags": "^1.8.0", "compression": "^1.7.4", "cookie": "^0.4.1", @@ -8238,7 +7132,7 @@ "eslint-plugin-graphql": "^4.0.0", "eslint-plugin-import": "^2.26.0", "eslint-plugin-jsx-a11y": "^6.5.1", - "eslint-plugin-react": "^7.29.4", + "eslint-plugin-react": "^7.30.0", "eslint-plugin-react-hooks": "^4.5.0", "eslint-webpack-plugin": "^2.6.0", "event-source-polyfill": "1.0.25", @@ -8252,21 +7146,21 @@ "find-cache-dir": "^3.3.2", "fs-exists-cached": "1.0.0", "fs-extra": "^10.1.0", - "gatsby-cli": "^4.17.1", - "gatsby-core-utils": "^3.17.0", - "gatsby-graphiql-explorer": "^2.17.0", - "gatsby-legacy-polyfills": "^2.17.0", - "gatsby-link": "^4.17.0", - "gatsby-page-utils": "^2.17.0", - "gatsby-parcel-config": "0.8.0", - "gatsby-plugin-page-creator": "^4.17.0", - "gatsby-plugin-typescript": "^4.17.0", - "gatsby-plugin-utils": "^3.11.0", - "gatsby-react-router-scroll": "^5.17.0", - "gatsby-script": "^1.2.0", - "gatsby-sharp": "^0.11.0", - "gatsby-telemetry": "^3.17.0", - "gatsby-worker": "^1.17.0", + "gatsby-cli": "^4.18.0", + "gatsby-core-utils": "^3.18.0", + "gatsby-graphiql-explorer": "^2.18.0", + "gatsby-legacy-polyfills": "^2.18.0", + "gatsby-link": "^4.18.0", + "gatsby-page-utils": "^2.18.0", + "gatsby-parcel-config": "0.9.0", + "gatsby-plugin-page-creator": "^4.18.0", + "gatsby-plugin-typescript": "^4.18.0", + "gatsby-plugin-utils": "^3.12.0", + "gatsby-react-router-scroll": "^5.18.0", + "gatsby-script": "^1.3.0", + "gatsby-sharp": "^0.12.0", + "gatsby-telemetry": "^3.18.0", + "gatsby-worker": "^1.18.0", "glob": "^7.2.3", "globby": "^11.1.0", "got": "^11.8.2", @@ -8318,7 +7212,6 @@ "slugify": "^1.6.1", "socket.io": "3.1.2", "socket.io-client": "3.1.3", - "source-map-support": "^0.5.20", "st": "^2.0.0", "stack-trace": "^0.0.10", "string-similarity": "^1.2.2", @@ -8340,9 +7233,9 @@ }, "dependencies": { "gatsby-cli": { - "version": "4.17.1", - "resolved": "https://registry.npmjs.org/gatsby-cli/-/gatsby-cli-4.17.1.tgz", - "integrity": "sha512-yLNRGKo8vyeiqKNTH5MkE0Q3AF6Un1v3MVlXzvoyRNs1DIHwkkZ22jGOB64/KIIR/o2cjRsrKJNCVjGV7qNnzw==", + "version": "4.18.0", + "resolved": "https://registry.npmjs.org/gatsby-cli/-/gatsby-cli-4.18.0.tgz", + "integrity": "sha512-H4V1XvXP3EMwUBDbAlpu3jbjlCetUmHY6VB1YsH2kkIdlMrOgjUgNDFpqjgbk7k7z61du2tCgl1lyW+5he+SnA==", "requires": { "@babel/code-frame": "^7.14.0", "@babel/core": "^7.15.5", @@ -8361,13 +7254,13 @@ "common-tags": "^1.8.2", "configstore": "^5.0.1", "convert-hrtime": "^3.0.0", - "create-gatsby": "^2.17.0", + "create-gatsby": "^2.18.0", "envinfo": "^7.8.1", "execa": "^5.1.1", "fs-exists-cached": "^1.0.0", "fs-extra": "^10.1.0", - "gatsby-core-utils": "^3.17.0", - "gatsby-telemetry": "^3.17.0", + "gatsby-core-utils": "^3.18.0", + "gatsby-telemetry": "^3.18.0", "hosted-git-info": "^3.0.8", "is-valid-path": "^0.1.1", "joi": "^17.4.2", @@ -8393,9 +7286,9 @@ } }, "gatsby-core-utils": { - "version": "3.17.0", - "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.17.0.tgz", - "integrity": "sha512-1e0YaqTAEpSSBkpWkY703lu+Bl76ASXUvUcpnNO3CavCYZsRQxAXtMXIKIEvhm1z6zWJmY9HILo6/DjP+PHeyw==", + "version": "3.18.0", + "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.18.0.tgz", + "integrity": "sha512-mCoNgH4MilosLhEroklgVffwie9lyxgmvNwe/oIyzXr6NcZ2uxSp8G1KrgxdG2srt2hCNlZLlzS25ltLTeHTjA==", "requires": { "@babel/runtime": "^7.15.4", "ci-info": "2.0.0", @@ -8403,7 +7296,7 @@ "fastq": "^1.13.0", "file-type": "^16.5.3", "fs-extra": "^10.1.0", - "got": "^11.8.3", + "got": "^11.8.5", "import-from": "^4.0.0", "lmdb": "2.5.2", "lock": "^1.1.0", @@ -8415,17 +7308,17 @@ } }, "gatsby-graphiql-explorer": { - "version": "2.17.0", - "resolved": "https://registry.npmjs.org/gatsby-graphiql-explorer/-/gatsby-graphiql-explorer-2.17.0.tgz", - "integrity": "sha512-IWAcxMlOofpg8wRzLGjuey3HunWu3bLilKurX8csD0d+YsuiB4aqZc7dWi2Zc15ZHZ5Hh8zMpOv0MVW9qhjnCg==", + "version": "2.18.0", + "resolved": "https://registry.npmjs.org/gatsby-graphiql-explorer/-/gatsby-graphiql-explorer-2.18.0.tgz", + "integrity": "sha512-mmY+kHc+axpDO9lfjbCEf/0oEIHTcZmpe2PtQAzkhnQHyti3xd9IIafq/1W3QKIJo5c7f40+tR3sFTERqaBeIA==", "requires": { "@babel/runtime": "^7.15.4" } }, "gatsby-legacy-polyfills": { - "version": "2.17.0", - "resolved": "https://registry.npmjs.org/gatsby-legacy-polyfills/-/gatsby-legacy-polyfills-2.17.0.tgz", - "integrity": "sha512-tpONSDutxEZY3vOdUaZ1yE9d0QWZ5/p47juvnhTv0qjGkBwow3gfCpgJwDzWyzKl0w0geesZwlLnaCA3WSEv7Q==", + "version": "2.18.0", + "resolved": "https://registry.npmjs.org/gatsby-legacy-polyfills/-/gatsby-legacy-polyfills-2.18.0.tgz", + "integrity": "sha512-wPnsRUnnab10wyt5VPkIhpJC1k8bVrpn0Sfat1L3JskYwkVIEvquqTmHWkpGMB8SLbXQiJEGCs2TcIrx9riL+w==", "requires": { "@babel/runtime": "^7.15.4", "core-js-compat": "3.9.0" @@ -8448,37 +7341,37 @@ } }, "gatsby-link": { - "version": "4.17.0", - "resolved": "https://registry.npmjs.org/gatsby-link/-/gatsby-link-4.17.0.tgz", - "integrity": "sha512-hDh+9OFMHNQ/5YdDdTcpSMB8xAYSP4OMkRuwmgPKH1jtOuov3pzwFAo19RR34CsOqzKd3LSQbCjIovOksjlAeA==", + "version": "4.18.0", + "resolved": "https://registry.npmjs.org/gatsby-link/-/gatsby-link-4.18.0.tgz", + "integrity": "sha512-nE+Z/iE55Id84YqsQOT1bfPJ/AsupY/4s8i6NllQ8no/PRgDGMpkTG6ANqyt2CHs/bywxch2rv8Ho7Gwsuuueg==", "requires": { "@babel/runtime": "^7.15.4", "@types/reach__router": "^1.3.10", - "gatsby-page-utils": "^2.17.0", + "gatsby-page-utils": "^2.18.0", "prop-types": "^15.8.1" } }, "gatsby-page-utils": { - "version": "2.17.0", - "resolved": "https://registry.npmjs.org/gatsby-page-utils/-/gatsby-page-utils-2.17.0.tgz", - "integrity": "sha512-aeDrvYm6uTXayr/Yw0dNQUy+P9a5TshuG9UnRddCB7jQAR1aufjkNu8WH93l151p4jqUoYGemxgZIhrNv1+i/g==", + "version": "2.18.0", + "resolved": "https://registry.npmjs.org/gatsby-page-utils/-/gatsby-page-utils-2.18.0.tgz", + "integrity": "sha512-qTwlqscKxkBlMd+Mn8xj6sh7L0LbfLGYOPCYozJnukXv8d/6Jyk1nfaP6I82hwj/iyhaBQtk7g8g4XyBJJaESw==", "requires": { "@babel/runtime": "^7.15.4", "bluebird": "^3.7.2", - "chokidar": "^3.5.2", + "chokidar": "^3.5.3", "fs-exists-cached": "^1.0.0", - "gatsby-core-utils": "^3.17.0", + "gatsby-core-utils": "^3.18.0", "glob": "^7.2.3", "lodash": "^4.17.21", "micromatch": "^4.0.5" } }, "gatsby-parcel-config": { - "version": "0.8.0", - "resolved": "https://registry.npmjs.org/gatsby-parcel-config/-/gatsby-parcel-config-0.8.0.tgz", - "integrity": "sha512-HzLU8uoJLuakH08T27K8GKx7rcLEVkKVClffAuVKrlcVYhNH+x1LvIwe+uMTIIdfu+YtUpUP1PpTdua6YfrVTQ==", + "version": "0.9.0", + "resolved": "https://registry.npmjs.org/gatsby-parcel-config/-/gatsby-parcel-config-0.9.0.tgz", + "integrity": "sha512-ccGw/L8ylhDgE/4tr52B6tb2jreApOMoYPW75Z8aM2ULRz505fL5mrnkG1fdQDBZSCHx/0j0x2TZyCLrt0Bvlw==", "requires": { - "@gatsbyjs/parcel-namer-relative-to-cwd": "^1.2.0", + "@gatsbyjs/parcel-namer-relative-to-cwd": "1.3.0", "@parcel/bundler-default": "2.6.0", "@parcel/compressor-raw": "2.6.0", "@parcel/namer-default": "2.6.0", @@ -8498,37 +7391,37 @@ } }, "gatsby-plugin-feed": { - "version": "4.17.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-feed/-/gatsby-plugin-feed-4.17.0.tgz", - "integrity": "sha512-qX23BiO8Tfu8ekW5Fuj2FqdD1sm8vFVyWlfLiQ4jIf4uwd7imIZ0FFucfIWI7X5toVhHLevgo52bzAwnL0AwjQ==", + "version": "4.18.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-feed/-/gatsby-plugin-feed-4.18.0.tgz", + "integrity": "sha512-jZ/hw7eaOikmFuRo+whL6TONzrGYYTkurgU7OCHAf7/1sPYm3VmjEo2ZcGtK1itPADffvL3jPNofbmNnri54Fg==", "requires": { "@babel/runtime": "^7.15.4", "@hapi/joi": "^15.1.1", "common-tags": "^1.8.2", "fs-extra": "^10.1.0", - "gatsby-plugin-utils": "^3.11.0", + "gatsby-plugin-utils": "^3.12.0", "lodash.merge": "^4.6.2", "rss": "^1.2.2" } }, "gatsby-plugin-gatsby-cloud": { - "version": "4.17.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-gatsby-cloud/-/gatsby-plugin-gatsby-cloud-4.17.0.tgz", - "integrity": "sha512-xO+CAtba+P6W+L1STv63D17iDYV9IOf1jQyXoDdxYd9CYy8g8VBMwFv1exVw+v9bGsPPRIJhFJM5wihw8W/hdg==", + "version": "4.18.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-gatsby-cloud/-/gatsby-plugin-gatsby-cloud-4.18.0.tgz", + "integrity": "sha512-c+PAabQCfmq0qUkGJ9Cp0vaB2+7mYiic7nj/Tx0cLqkeJJHrV7rqcUX1A2l4VycWRDFWSA5K1nTvb3uSUINB2g==", "requires": { "@babel/runtime": "^7.15.4", "fs-extra": "^10.1.0", - "gatsby-core-utils": "^3.17.0", - "gatsby-telemetry": "^3.17.0", + "gatsby-core-utils": "^3.18.0", + "gatsby-telemetry": "^3.18.0", "kebab-hash": "^0.1.2", "lodash": "^4.17.21", "webpack-assets-manifest": "^5.1.0" } }, "gatsby-plugin-google-analytics": { - "version": "4.17.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-google-analytics/-/gatsby-plugin-google-analytics-4.17.0.tgz", - "integrity": "sha512-Jv9h2wpVNCvALZWwakwbpD/GZ+pYzzxVATwarUm5DICj+iXx2P2Q86PzblEmxGXpRpSHdnrrN8ntzYxpm13TjQ==", + "version": "4.18.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-google-analytics/-/gatsby-plugin-google-analytics-4.18.0.tgz", + "integrity": "sha512-MOEdusG+3JpqS/Xnb7ektteXLisdcZHg+IRVOeNdMkYwgWpDTAG5ut0awgr0C6ClQzlyA5z8HczxK+aL6zZ07w==", "requires": { "@babel/runtime": "^7.15.4", "minimatch": "3.0.4", @@ -8546,46 +7439,46 @@ } }, "gatsby-plugin-image": { - "version": "2.17.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-image/-/gatsby-plugin-image-2.17.0.tgz", - "integrity": "sha512-YBVYczsxq04oA3+tx80f94FSxtCjFKc9tKj68Zp/NRZGmLL5/0/s++UcMHxzusmC2P/rAKfDlQ6HNOhm5dwFhQ==", + "version": "2.18.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-image/-/gatsby-plugin-image-2.18.0.tgz", + "integrity": "sha512-/WvMDUiZvofmxHzHeEPLNL605FU1AK5pLXKKS8aekRigbNbi+Gip2ZROFPJtj4oxyKDmtD+HaVCNf1q8SdhPEg==", "requires": { "@babel/code-frame": "^7.14.0", "@babel/parser": "^7.15.5", "@babel/runtime": "^7.15.4", "@babel/traverse": "^7.15.4", "babel-jsx-utils": "^1.1.0", - "babel-plugin-remove-graphql-queries": "^4.17.0", + "babel-plugin-remove-graphql-queries": "^4.18.0", "camelcase": "^5.3.1", - "chokidar": "^3.5.2", + "chokidar": "^3.5.3", "common-tags": "^1.8.2", "fs-extra": "^10.1.0", - "gatsby-core-utils": "^3.17.0", - "gatsby-plugin-utils": "^3.11.0", + "gatsby-core-utils": "^3.18.0", + "gatsby-plugin-utils": "^3.12.0", "objectFitPolyfill": "^2.3.5", "prop-types": "^15.8.1" } }, "gatsby-plugin-manifest": { - "version": "4.17.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-manifest/-/gatsby-plugin-manifest-4.17.0.tgz", - "integrity": "sha512-LGxK2tko8DEGLVQEd4FRH3gTDdfSvhOXDuGJxtP5uz382DgVPbfYjU5KO72T6nZ8YJUOyOibCN8o+rw4OzvMzQ==", + "version": "4.18.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-manifest/-/gatsby-plugin-manifest-4.18.0.tgz", + "integrity": "sha512-UqyENX8vwl9toCVnfdhVX/P7NZApG4FvXoDdkxfI53tKoFv93rIisb2IUGQeZZP9jHXprGlnP3y8dgTAmz5Ubw==", "requires": { "@babel/runtime": "^7.15.4", - "gatsby-core-utils": "^3.17.0", - "gatsby-plugin-utils": "^3.11.0", + "gatsby-core-utils": "^3.18.0", + "gatsby-plugin-utils": "^3.12.0", "semver": "^7.3.7", "sharp": "^0.30.3" } }, "gatsby-plugin-offline": { - "version": "5.17.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-offline/-/gatsby-plugin-offline-5.17.0.tgz", - "integrity": "sha512-4sGpLkjOrv/b6E9FI6TqAX92D47PGbgCubqQTTV7c4zcEIjq9MA86VzNRV/sU8Jys+9Az0kBOIA8e7NEckyvXQ==", + "version": "5.18.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-offline/-/gatsby-plugin-offline-5.18.0.tgz", + "integrity": "sha512-PfbAwEwfozkbAxtPVxUwYkvX47IsWpOJUlutn6wl7hj7VLHfegxDg3RZtc0trbDpj39wVtcLDdM8fu4schm3EA==", "requires": { "@babel/runtime": "^7.15.4", "cheerio": "^1.0.0-rc.10", - "gatsby-core-utils": "^3.17.0", + "gatsby-core-utils": "^3.18.0", "glob": "^7.2.3", "idb-keyval": "^3.2.0", "lodash": "^4.17.21", @@ -8593,35 +7486,35 @@ } }, "gatsby-plugin-page-creator": { - "version": "4.17.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-page-creator/-/gatsby-plugin-page-creator-4.17.0.tgz", - "integrity": "sha512-Nv1lryCAfo5cWqkVnnqiMC6bmXXXOhdl2efLZKK88QwqT4tZO51gGrgsZGL4mtXtUUSkJXGE8pmjelUOcR+23g==", + "version": "4.18.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-page-creator/-/gatsby-plugin-page-creator-4.18.0.tgz", + "integrity": "sha512-6bY4vJndDw0nBcOuQdX41Wvbctw0y9+a7IavCFJKFeNs+Zo0XH2FX0IAww0slDnSJU6AukJ9qfjHqKJkADAZpQ==", "requires": { "@babel/runtime": "^7.15.4", "@babel/traverse": "^7.15.4", "@sindresorhus/slugify": "^1.1.2", - "chokidar": "^3.5.2", + "chokidar": "^3.5.3", "fs-exists-cached": "^1.0.0", - "gatsby-core-utils": "^3.17.0", - "gatsby-page-utils": "^2.17.0", - "gatsby-plugin-utils": "^3.11.0", - "gatsby-telemetry": "^3.17.0", + "gatsby-core-utils": "^3.18.0", + "gatsby-page-utils": "^2.18.0", + "gatsby-plugin-utils": "^3.12.0", + "gatsby-telemetry": "^3.18.0", "globby": "^11.1.0", "lodash": "^4.17.21" } }, "gatsby-plugin-react-helmet": { - "version": "5.17.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-react-helmet/-/gatsby-plugin-react-helmet-5.17.0.tgz", - "integrity": "sha512-Lp52GFGNQO0Rt0VfYbFMFBw67XNaIITvwhBMqzxnIw/OCnnyjhylfYMpmyDQKT5S/yaWEF3MsvPmE2YCbXbSww==", + "version": "5.18.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-react-helmet/-/gatsby-plugin-react-helmet-5.18.0.tgz", + "integrity": "sha512-H55KLoKZ/LeWWILYmkbt+L1c6E2ViurN16GyGOOzIg2LGjd7OXu9zy9H9lMKrkNpn/HUXhyUilYHqVeo5fve1A==", "requires": { "@babel/runtime": "^7.15.4" } }, "gatsby-plugin-sharp": { - "version": "4.17.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-sharp/-/gatsby-plugin-sharp-4.17.0.tgz", - "integrity": "sha512-+wP4hskMBSNgPYqBX2uqoqb5JUtMMvaZTzYNkZmnKkg85rHeDpUy+eMoCqrhh8wpW/NgcbQ9o6uK43jj2qv0xQ==", + "version": "4.18.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-sharp/-/gatsby-plugin-sharp-4.18.0.tgz", + "integrity": "sha512-ExGzy8xAwc5+4nDHgGe1k8Id/HZpETPSizLNeJ5We3T4hjshdfgvnuRiAZf2VIY60+VPuVCezYNn4n7gPTShRw==", "requires": { "@babel/runtime": "^7.15.4", "@gatsbyjs/potrace": "^2.2.0", @@ -8630,10 +7523,10 @@ "debug": "^4.3.4", "filenamify": "^4.3.0", "fs-extra": "^10.1.0", - "gatsby-core-utils": "^3.17.0", - "gatsby-plugin-utils": "^3.11.0", - "gatsby-telemetry": "^3.17.0", - "got": "^11.8.3", + "gatsby-core-utils": "^3.18.0", + "gatsby-plugin-utils": "^3.12.0", + "gatsby-telemetry": "^3.18.0", + "got": "^11.8.5", "lodash": "^4.17.21", "mini-svg-data-uri": "^1.4.4", "probe-image-size": "^7.2.3", @@ -8762,9 +7655,9 @@ } }, "gatsby-plugin-typescript": { - "version": "4.17.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-typescript/-/gatsby-plugin-typescript-4.17.0.tgz", - "integrity": "sha512-aSO/h4z+jdWBZtEnH17NoZaFchO8LkEcIdNX2saYIjJfa2tMbOR+wnOuQJVAdj61n8ntc1pQkNJxiEK31IaZjw==", + "version": "4.18.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-typescript/-/gatsby-plugin-typescript-4.18.0.tgz", + "integrity": "sha512-SuNBrp57SnovOyhCz0zPkz7begV4UR2XdXUrFsh4N0jWOI5yFNVgENpKlbI/O7JnvgyV5KC/pkobNh3we+0mcQ==", "requires": { "@babel/core": "^7.15.5", "@babel/plugin-proposal-nullish-coalescing-operator": "^7.14.5", @@ -8772,19 +7665,19 @@ "@babel/plugin-proposal-optional-chaining": "^7.14.5", "@babel/preset-typescript": "^7.15.0", "@babel/runtime": "^7.15.4", - "babel-plugin-remove-graphql-queries": "^4.17.0" + "babel-plugin-remove-graphql-queries": "^4.18.0" } }, "gatsby-plugin-utils": { - "version": "3.11.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-utils/-/gatsby-plugin-utils-3.11.0.tgz", - "integrity": "sha512-v2D6O2aME9p7tqlGykq5mgtj7Jqp/CWatgo0zJ7bFWSYPPUpQ7jRVAph1PIgFTAV/CaUrrvt9sxdRaZrglJyug==", + "version": "3.12.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-utils/-/gatsby-plugin-utils-3.12.0.tgz", + "integrity": "sha512-vdz3qwaCOkvgzAxMkZlgpmpWf555jISwek5lyWYhGyJJvXYV8KQ2cZ4CoOfFKAYVeZVSucrHcdWyY3fLLpQvAA==", "requires": { "@babel/runtime": "^7.15.4", "@gatsbyjs/potrace": "^2.2.0", "fs-extra": "^10.1.0", - "gatsby-core-utils": "^3.17.0", - "gatsby-sharp": "^0.11.0", + "gatsby-core-utils": "^3.18.0", + "gatsby-sharp": "^0.12.0", "graphql-compose": "^9.0.7", "import-from": "^4.0.0", "joi": "^17.4.2", @@ -8801,18 +7694,18 @@ } }, "gatsby-react-router-scroll": { - "version": "5.17.0", - "resolved": "https://registry.npmjs.org/gatsby-react-router-scroll/-/gatsby-react-router-scroll-5.17.0.tgz", - "integrity": "sha512-RwFeZlKL0T8dxpEdlmuQAH+h4ugrQQpl4U2m0Wdo/F9/8/VEiAeX64oa2r2BqiiTf4MzAIIT+5/ONt83FcmZWg==", + "version": "5.18.0", + "resolved": "https://registry.npmjs.org/gatsby-react-router-scroll/-/gatsby-react-router-scroll-5.18.0.tgz", + "integrity": "sha512-/A1k468s6g713c8me5DuGiia8rPWLuwjITQ/pKqgJwioJVB6MnD/iBCbHUTzLHlNwZypAVdGHCN8fCIcPcMb6Q==", "requires": { "@babel/runtime": "^7.15.4", "prop-types": "^15.8.1" } }, "gatsby-remark-copy-linked-files": { - "version": "5.17.0", - "resolved": "https://registry.npmjs.org/gatsby-remark-copy-linked-files/-/gatsby-remark-copy-linked-files-5.17.0.tgz", - "integrity": "sha512-Q1T69Oi84UAa18//54vtMIMPRTkx+P7DQKoRMXi6r3muRAjfN/sT66ZxDdCayT5SoKYT8Opa5hGZo8N/lvtmQw==", + "version": "5.18.0", + "resolved": "https://registry.npmjs.org/gatsby-remark-copy-linked-files/-/gatsby-remark-copy-linked-files-5.18.0.tgz", + "integrity": "sha512-tqnf/iW7F3tWrNN+scuE176js6WK0Vl8NfhXiHxZ7mQKpnnakLgp9b8q1CQro4Hh2HZxDL4SsKk+nuQqsNqCfw==", "requires": { "@babel/runtime": "^7.15.4", "cheerio": "^1.0.0-rc.10", @@ -8825,15 +7718,15 @@ } }, "gatsby-remark-images": { - "version": "6.17.0", - "resolved": "https://registry.npmjs.org/gatsby-remark-images/-/gatsby-remark-images-6.17.0.tgz", - "integrity": "sha512-pjUBNCfKT8mo1mXztHlxB5OYGSUUr8snTKvBOlKkDQUpQmyDp9BKTYcTMdhlrGqJEpkmMjFpXQSJPSxoTqw+7A==", + "version": "6.18.0", + "resolved": "https://registry.npmjs.org/gatsby-remark-images/-/gatsby-remark-images-6.18.0.tgz", + "integrity": "sha512-xFLFbHerjdhyIl1iCa5IlMecUoz5HYkvN80rSkCDOZPDXz9AvqrWcoG5KIFP1hgiYh1nZC1CSzd9qNr5yGrXsw==", "requires": { "@babel/runtime": "^7.15.4", "@gatsbyjs/potrace": "^2.2.0", "chalk": "^4.1.2", "cheerio": "^1.0.0-rc.10", - "gatsby-core-utils": "^3.17.0", + "gatsby-core-utils": "^3.18.0", "is-relative-url": "^3.0.0", "lodash": "^4.17.21", "mdast-util-definitions": "^4.0.0", @@ -8843,9 +7736,9 @@ } }, "gatsby-remark-prismjs": { - "version": "6.17.0", - "resolved": "https://registry.npmjs.org/gatsby-remark-prismjs/-/gatsby-remark-prismjs-6.17.0.tgz", - "integrity": "sha512-Q9VY2A644oVbsQpG0SaEJHTlHA0SlLaxC4h1dMHa1SjdLySjBNqqeUrXcmL8OceoOaP1z+QWvON++bdMILow5w==", + "version": "6.18.0", + "resolved": "https://registry.npmjs.org/gatsby-remark-prismjs/-/gatsby-remark-prismjs-6.18.0.tgz", + "integrity": "sha512-0bUDZb4p3m5nHKM8uKQDUckMhxx0qy14a5l5GRlRXAbDQXjHd5A8V1rKXXYjCQdHMgumYh+IcSqcBbmXYwF/NQ==", "requires": { "@babel/runtime": "^7.15.4", "parse-numeric-range": "^1.2.0", @@ -8853,9 +7746,9 @@ } }, "gatsby-remark-responsive-iframe": { - "version": "5.17.0", - "resolved": "https://registry.npmjs.org/gatsby-remark-responsive-iframe/-/gatsby-remark-responsive-iframe-5.17.0.tgz", - "integrity": "sha512-ng0H5bEnYnWRayddk82hLa5wxo0CSdj6g1YTVWtyeBSDCttoTj/HA+OzuSOt+LPWrs4SH7C9ipAfTjZSggA/sA==", + "version": "5.18.0", + "resolved": "https://registry.npmjs.org/gatsby-remark-responsive-iframe/-/gatsby-remark-responsive-iframe-5.18.0.tgz", + "integrity": "sha512-2oIHQMj830XhabTH3epPDCqB83zyD1qjvMN/46nytW7SJP8sRLoQkK+LiHj0jmjzjxEW1YSn3yX1uzCaijjQtg==", "requires": { "@babel/runtime": "^7.15.4", "cheerio": "^1.0.0-rc.10", @@ -8865,9 +7758,9 @@ } }, "gatsby-remark-smartypants": { - "version": "5.17.0", - "resolved": "https://registry.npmjs.org/gatsby-remark-smartypants/-/gatsby-remark-smartypants-5.17.0.tgz", - "integrity": "sha512-mSEq3nkugmEpvq/iRerFYhtZCDXjDqJEvBUDvzPEJcIxx0Xgnsq3MfZ6VVd9A3Yxg2I+VqWhTLYKoLveUvnSVw==", + "version": "5.18.0", + "resolved": "https://registry.npmjs.org/gatsby-remark-smartypants/-/gatsby-remark-smartypants-5.18.0.tgz", + "integrity": "sha512-FbmP14hnhVX+ozdx6QyGmLAMY5desbcbk5DOpLymX5SA1HH6dRJBmuAOkwKhVa82l0t+7JxKoxatAcmZt/ArJA==", "requires": { "@babel/runtime": "^7.15.4", "retext": "^7.0.1", @@ -8876,29 +7769,29 @@ } }, "gatsby-script": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/gatsby-script/-/gatsby-script-1.2.0.tgz", - "integrity": "sha512-Fkf6yJxwuQCS6xdFxF0gpiCUiS3PYnRv5I2mCAJV0Cu7k4PYgVpQJt79bcDHvnx755VpXOmZIfMXegACg1XS0w==" + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/gatsby-script/-/gatsby-script-1.3.0.tgz", + "integrity": "sha512-eCz6mcMFpB7kvpmyM7AtMTxNxzdrzPgt8GiuDKWFOlDgk1il6PUjO99QsL/cCeokmaiH/6egVnm9b33/x+sy9A==" }, "gatsby-sharp": { - "version": "0.11.0", - "resolved": "https://registry.npmjs.org/gatsby-sharp/-/gatsby-sharp-0.11.0.tgz", - "integrity": "sha512-RIbU8qi/Qs7G/KJiY0zyGS9Yic5n4RpDUf/1W3gvRl78Uo3LSuIeGEpaai6mYEnreuGb5fQIcqdkYs/UV3e8WA==", + "version": "0.12.0", + "resolved": "https://registry.npmjs.org/gatsby-sharp/-/gatsby-sharp-0.12.0.tgz", + "integrity": "sha512-dZa/AgxmPzD0vvROEZSuT3IdzAFTxnq1FfLTf9n3mywonvsKYc84zj6nf8TEzBrVrBFAaLvZek4NpVAKWGr4/w==", "requires": { "@types/sharp": "^0.30.0", "sharp": "^0.30.3" } }, "gatsby-source-filesystem": { - "version": "4.17.0", - "resolved": "https://registry.npmjs.org/gatsby-source-filesystem/-/gatsby-source-filesystem-4.17.0.tgz", - "integrity": "sha512-1UErm5fcAqHOB3439V2BmSB5Kz+yDN15qj5J503/f6nL44kPPhJKSjjR64A5iz2y/3nCSTyZfmSs44jw9I1hhg==", + "version": "4.18.0", + "resolved": "https://registry.npmjs.org/gatsby-source-filesystem/-/gatsby-source-filesystem-4.18.0.tgz", + "integrity": "sha512-45ivbP9Ho6ioCqAJKdz5ejXlKCZ+8UCzQEC8cQbJI+k5CiJMdA09X65GVITUEob0bFRCcv5RQu4fOodrznaIwg==", "requires": { "@babel/runtime": "^7.15.4", - "chokidar": "^3.5.2", + "chokidar": "^3.5.3", "file-type": "^16.5.3", "fs-extra": "^10.1.0", - "gatsby-core-utils": "^3.17.0", + "gatsby-core-utils": "^3.18.0", "got": "^9.6.0", "md5-file": "^5.0.0", "mime": "^2.5.2", @@ -9028,19 +7921,19 @@ } }, "gatsby-telemetry": { - "version": "3.17.0", - "resolved": "https://registry.npmjs.org/gatsby-telemetry/-/gatsby-telemetry-3.17.0.tgz", - "integrity": "sha512-1N4uKj2Yj7AykLmwjsdOmNirf3UmP8CBXjj/LmWf5cLDVbdPqkirAlyD6uTeEliG5UFHPTlBsRi26v558mFYJQ==", + "version": "3.18.0", + "resolved": "https://registry.npmjs.org/gatsby-telemetry/-/gatsby-telemetry-3.18.0.tgz", + "integrity": "sha512-i1JvNqGOyLDPGEn1QN29YGpe2ripg2LZBAOhXmk6lAhRL5fTVo6WkEA2yW7XESnXIOJBFymgVbUlLjXoqeZ5Xg==", "requires": { "@babel/code-frame": "^7.14.0", "@babel/runtime": "^7.15.4", - "@turist/fetch": "^7.1.7", + "@turist/fetch": "^7.2.0", "@turist/time": "^0.0.2", "async-retry-ng": "^2.0.1", "boxen": "^4.2.0", "configstore": "^5.0.1", "fs-extra": "^10.1.0", - "gatsby-core-utils": "^3.17.0", + "gatsby-core-utils": "^3.18.0", "git-up": "^4.0.5", "is-docker": "^2.2.1", "lodash": "^4.17.21", @@ -9113,12 +8006,12 @@ } }, "gatsby-transformer-remark": { - "version": "5.17.0", - "resolved": "https://registry.npmjs.org/gatsby-transformer-remark/-/gatsby-transformer-remark-5.17.0.tgz", - "integrity": "sha512-xgkz2OsJAf0+L/StFjh5xEIZzs1R2ZMAEQ8uOh+z2zCPHSFwLM62DZvszfcpF/vaxV3AtzAonEBYUbao4x3G3Q==", + "version": "5.18.0", + "resolved": "https://registry.npmjs.org/gatsby-transformer-remark/-/gatsby-transformer-remark-5.18.0.tgz", + "integrity": "sha512-gGA50zv/hYoyatgIofdJVdbqUzE2YUi9MSCdE3dZl/DHi5rfUtC7cX09hqmCD2z9WRWTLQWupfpuZ3sfxJe1Xg==", "requires": { "@babel/runtime": "^7.15.4", - "gatsby-core-utils": "^3.17.0", + "gatsby-core-utils": "^3.18.0", "gray-matter": "^4.0.3", "hast-util-raw": "^6.0.2", "hast-util-to-html": "^7.1.3", @@ -9157,25 +8050,25 @@ } }, "gatsby-transformer-sharp": { - "version": "4.17.0", - "resolved": "https://registry.npmjs.org/gatsby-transformer-sharp/-/gatsby-transformer-sharp-4.17.0.tgz", - "integrity": "sha512-yaBzgqpjMqpy1ZuJ4CRbYh8rdiyvuSlMS0aMRiGlcjgUmKuT5qGJsQWsuhihbKWqn8OPhNzrAsnWvWnOVjAeCg==", + "version": "4.18.0", + "resolved": "https://registry.npmjs.org/gatsby-transformer-sharp/-/gatsby-transformer-sharp-4.18.0.tgz", + "integrity": "sha512-uOsP5U10pWPdhpKHkPyKWoxCFEGdnreqmSrWrKUsHa0oViCfudbDrM+xWla+QQ0MhHHkqOUjdcfZRG3SwUlPcg==", "requires": { "@babel/runtime": "^7.15.4", "@gatsbyjs/potrace": "^2.2.0", "bluebird": "^3.7.2", "common-tags": "^1.8.2", "fs-extra": "^10.1.0", - "gatsby-plugin-utils": "^3.11.0", + "gatsby-plugin-utils": "^3.12.0", "probe-image-size": "^7.2.3", "semver": "^7.3.7", "sharp": "^0.30.3" } }, "gatsby-worker": { - "version": "1.17.0", - "resolved": "https://registry.npmjs.org/gatsby-worker/-/gatsby-worker-1.17.0.tgz", - "integrity": "sha512-hA7awNHmcNWp3TgQkjF0Z3I9YGWpdsf8jUdJOlAjI+aBxQ2vdHTVNwbMdXwtlf9umQRwORnmEzADmQdm0Cx5AA==", + "version": "1.18.0", + "resolved": "https://registry.npmjs.org/gatsby-worker/-/gatsby-worker-1.18.0.tgz", + "integrity": "sha512-gNzqDrYFMXlfXCzdClORyDQWQZKTOF6nRUrhZT8PUxzQViO+DvnEKE3EAQvZizYKW1Hgw7cbiTtLG3qshkNepw==", "requires": { "@babel/core": "^7.15.5", "@babel/runtime": "^7.15.4" @@ -10259,11 +9152,11 @@ } }, "is-ssh": { - "version": "1.3.3", - "resolved": "https://registry.npmjs.org/is-ssh/-/is-ssh-1.3.3.tgz", - "integrity": "sha512-NKzJmQzJfEEma3w5cJNcUMxoXfDjz0Zj0eyCalHn2E6VOwlzjZo0yuO2fcBSf8zhFuVCL/82/r5gRcoi6aEPVQ==", + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/is-ssh/-/is-ssh-1.4.0.tgz", + "integrity": "sha512-x7+VxdxOdlV3CYpjvRLBv5Lo9OJerlYanjwFrPR9fuGPjCiNiCzFgAWpiLAohSbsnH4ZAys3SBh+hq5rJosxUQ==", "requires": { - "protocols": "^1.1.0" + "protocols": "^2.0.1" } }, "is-stream": { @@ -10505,9 +9398,9 @@ } }, "keyv": { - "version": "4.3.1", - "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.3.1.tgz", - "integrity": "sha512-nwP7AQOxFzELXsNq3zCx/oh81zu4DHWwCE6W9RaeHb7OHO0JpmKS8n801ovVQC7PTsZDWtPA5j1QY+/WWtARYg==", + "version": "4.3.2", + "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.3.2.tgz", + "integrity": "sha512-kn8WmodVBe12lmHpA6W8OY7SNh6wVR+Z+wZESF4iF5FCazaVXGWOtnbnvX0tMQ1bO+/TmOD9LziuYMvrIIs0xw==", "requires": { "compress-brotli": "^1.3.8", "json-buffer": "3.0.1" @@ -10529,9 +9422,9 @@ "integrity": "sha512-pJiBpiXMbt7dkzXe8Ghj/u4FfXOOa98fPW+bihOJ4SjnoijweJrNThJfd3ifXpXhREjpoF2mZVH1GfS9LV3kHQ==" }, "language-subtag-registry": { - "version": "0.3.21", - "resolved": "https://registry.npmjs.org/language-subtag-registry/-/language-subtag-registry-0.3.21.tgz", - "integrity": "sha512-L0IqwlIXjilBVVYKFT37X9Ih11Um5NEl9cbJIuU/SwP/zEEAbBPOnEeeuxVMf45ydWQRDQN3Nqc96OgbH1K+Pg==" + "version": "0.3.22", + "resolved": "https://registry.npmjs.org/language-subtag-registry/-/language-subtag-registry-0.3.22.tgz", + "integrity": "sha512-tN0MCzyWnoz/4nHS6uxdlFWoUZT7ABptwKPQ52Ea7URk6vll88bWBVhodtnlfEuCcKWNGoc+uGbw1cwa9IKh/w==" }, "language-tags": { "version": "1.0.5", @@ -11484,9 +10377,9 @@ } }, "node-gyp-build": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/node-gyp-build/-/node-gyp-build-4.4.0.tgz", - "integrity": "sha512-amJnQCcgtRVw9SvoebO3BKGESClrfXGCUTX9hSn1OuGQTQBOZmVd0Z0OlecpuRksKvbsUqALE8jls/ErClAPuQ==" + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/node-gyp-build/-/node-gyp-build-4.5.0.tgz", + "integrity": "sha512-2iGbaQBV+ITgCz76ZEjmhUKAKVf7xfY1sRl4UiKQspfZMH2h06SyhNsnSVy50cwkFQDGLyif6m/6uFXHkOZ6rg==" }, "node-gyp-build-optional-packages": { "version": "4.3.5", @@ -11720,9 +10613,9 @@ } }, "ordered-binary": { - "version": "1.2.5", - "resolved": "https://registry.npmjs.org/ordered-binary/-/ordered-binary-1.2.5.tgz", - "integrity": "sha512-djRmZoEpOGvIRW7ufsCDHtvcUa18UC9TxnPbHhSVFZHsoyg0dtut1bWtBZ/fmxdPN62oWXrV6adM7NoWU+CneA==" + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/ordered-binary/-/ordered-binary-1.3.0.tgz", + "integrity": "sha512-knIeYepTI6BDAzGxqFEDGtI/iGqs57H32CInAIxEvAHG46vk1Di0CEpyc1A7iY39B1mfik3g3KLYwOTNnnMHLA==" }, "os-tmpdir": { "version": "1.0.2", @@ -12015,6 +10908,13 @@ "protocols": "^1.4.0", "qs": "^6.9.4", "query-string": "^6.13.8" + }, + "dependencies": { + "protocols": { + "version": "1.4.8", + "resolved": "https://registry.npmjs.org/protocols/-/protocols-1.4.8.tgz", + "integrity": "sha512-IgjKyaUSjsROSO8/D49Ab7hP8mJgTYcqApOqdPhLoPxAplXmkp+zRvsrSQjFn5by0rhm4VH0GAUELIPpx7B1yg==" + } } }, "parse-srcset": { @@ -12023,14 +10923,21 @@ "integrity": "sha512-/2qh0lav6CmI15FzA3i/2Bzk2zCgQhGMkvhOhKNcBVQ1ldgpbfiNTVslmooUmWJcADi1f1kIeynbDRVzNlfR6Q==" }, "parse-url": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/parse-url/-/parse-url-6.0.0.tgz", - "integrity": "sha512-cYyojeX7yIIwuJzledIHeLUBVJ6COVLeT4eF+2P6aKVzwvgKQPndCBv3+yQ7pcWjqToYwaligxzSYNNmGoMAvw==", + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/parse-url/-/parse-url-6.0.2.tgz", + "integrity": "sha512-uCSjOvD3T+6B/sPWhR+QowAZcU/o4bjPrVBQBGFxcDF6J6FraCGIaDBsdoQawiaaAVdHvtqBe3w3vKlfBKySOQ==", "requires": { "is-ssh": "^1.3.0", "normalize-url": "^6.1.0", - "parse-path": "^4.0.0", + "parse-path": "^4.0.4", "protocols": "^1.4.0" + }, + "dependencies": { + "protocols": { + "version": "1.4.8", + "resolved": "https://registry.npmjs.org/protocols/-/protocols-1.4.8.tgz", + "integrity": "sha512-IgjKyaUSjsROSO8/D49Ab7hP8mJgTYcqApOqdPhLoPxAplXmkp+zRvsrSQjFn5by0rhm4VH0GAUELIPpx7B1yg==" + } } }, "parse5": { @@ -12042,9 +10949,9 @@ }, "dependencies": { "entities": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/entities/-/entities-4.3.0.tgz", - "integrity": "sha512-/iP1rZrSEJ0DTlPiX+jbzlA3eVkY/e8L8SozroF395fIqE3TYF/Nz7YOMAawta+vLmyJ/hkGNNPcSbMADCCXbg==" + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/entities/-/entities-4.3.1.tgz", + "integrity": "sha512-o4q/dYJlmyjP2zfnaWDUC6A3BQFmVTX+tZPezK7k0GLSU9QYCauscf5Y+qcEPzKL+EixVouYDgLQK5H9GrLpkg==" } } }, @@ -12669,9 +11576,9 @@ } }, "protocols": { - "version": "1.4.8", - "resolved": "https://registry.npmjs.org/protocols/-/protocols-1.4.8.tgz", - "integrity": "sha512-IgjKyaUSjsROSO8/D49Ab7hP8mJgTYcqApOqdPhLoPxAplXmkp+zRvsrSQjFn5by0rhm4VH0GAUELIPpx7B1yg==" + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/protocols/-/protocols-2.0.1.tgz", + "integrity": "sha512-/XJ368cyBJ7fzLMwLKv1e4vLxOju2MNAIokcr7meSaNcVbWz/CPcW22cP04mwxOErdA5mwjA8Q6w/cdAQxVn7Q==" }, "proxy-addr": { "version": "2.0.7", @@ -13698,14 +12605,14 @@ "integrity": "sha512-LUMFi+RppPlrHzbqmFnINTrazo0lPNwhcgzuAXVVcfy/mqPDrQmHAyz5bvV0gDAuRFrk804V0HpQ6u9sZ0tBeg==" }, "sharp": { - "version": "0.30.6", - "resolved": "https://registry.npmjs.org/sharp/-/sharp-0.30.6.tgz", - "integrity": "sha512-lSdVxFxcndzcXggDrak6ozdGJgmIgES9YVZWtAFrwi+a/H5vModaf51TghBtMPw+71sLxUsTy2j+aB7qLIODQg==", + "version": "0.30.7", + "resolved": "https://registry.npmjs.org/sharp/-/sharp-0.30.7.tgz", + "integrity": "sha512-G+MY2YW33jgflKPTXXptVO28HvNOo9G3j0MybYAHeEmby+QuD2U98dT6ueht9cv/XDqZspSpIhoSW+BAKJ7Hig==", "requires": { "color": "^4.2.3", "detect-libc": "^2.0.1", "node-addon-api": "^5.0.0", - "prebuild-install": "^7.1.0", + "prebuild-install": "^7.1.1", "semver": "^7.3.7", "simple-get": "^4.0.1", "tar-fs": "^2.1.1", diff --git a/starters/blog/package.json b/starters/blog/package.json index 241437761490c..a2ed0c9da23a2 100644 --- a/starters/blog/package.json +++ b/starters/blog/package.json @@ -8,23 +8,23 @@ "url": "https://github.com/gatsbyjs/gatsby/issues" }, "dependencies": { - "gatsby": "^4.17.2", - "gatsby-plugin-feed": "^4.17.0", - "gatsby-plugin-gatsby-cloud": "^4.17.0", - "gatsby-plugin-google-analytics": "^4.17.0", - "gatsby-plugin-image": "^2.17.0", - "gatsby-plugin-manifest": "^4.17.0", - "gatsby-plugin-offline": "^5.17.0", - "gatsby-plugin-react-helmet": "^5.17.0", - "gatsby-plugin-sharp": "^4.17.0", - "gatsby-remark-copy-linked-files": "^5.17.0", - "gatsby-remark-images": "^6.17.0", - "gatsby-remark-prismjs": "^6.17.0", - "gatsby-remark-responsive-iframe": "^5.17.0", - "gatsby-remark-smartypants": "^5.17.0", - "gatsby-source-filesystem": "^4.17.0", - "gatsby-transformer-remark": "^5.17.0", - "gatsby-transformer-sharp": "^4.17.0", + "gatsby": "^4.18.0", + "gatsby-plugin-feed": "^4.18.0", + "gatsby-plugin-gatsby-cloud": "^4.18.0", + "gatsby-plugin-google-analytics": "^4.18.0", + "gatsby-plugin-image": "^2.18.0", + "gatsby-plugin-manifest": "^4.18.0", + "gatsby-plugin-offline": "^5.18.0", + "gatsby-plugin-react-helmet": "^5.18.0", + "gatsby-plugin-sharp": "^4.18.0", + "gatsby-remark-copy-linked-files": "^5.18.0", + "gatsby-remark-images": "^6.18.0", + "gatsby-remark-prismjs": "^6.18.0", + "gatsby-remark-responsive-iframe": "^5.18.0", + "gatsby-remark-smartypants": "^5.18.0", + "gatsby-source-filesystem": "^4.18.0", + "gatsby-transformer-remark": "^5.18.0", + "gatsby-transformer-sharp": "^4.18.0", "prismjs": "^1.28.0", "react": "^18.1.0", "react-dom": "^18.1.0", diff --git a/starters/default/package-lock.json b/starters/default/package-lock.json index d064498be7aaf..e8b87ed2d8f25 100644 --- a/starters/default/package-lock.json +++ b/starters/default/package-lock.json @@ -53,11 +53,11 @@ } }, "@babel/code-frame": { - "version": "7.16.7", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.16.7.tgz", - "integrity": "sha512-iAXqUn8IIeBTNd72xsFlgaXHkMBMt6y4HJp1tIaK465CWLT/fG1aqB7ykr95gHHmlBdGbFeWWfyB4NJJ0nmeIg==", + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.18.6.tgz", + "integrity": "sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q==", "requires": { - "@babel/highlight": "^7.16.7" + "@babel/highlight": "^7.18.6" } }, "@babel/compat-data": { @@ -87,130 +87,6 @@ "semver": "^6.3.0" }, "dependencies": { - "@babel/code-frame": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.18.6.tgz", - "integrity": "sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q==", - "requires": { - "@babel/highlight": "^7.18.6" - } - }, - "@babel/generator": { - "version": "7.18.7", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.18.7.tgz", - "integrity": "sha512-shck+7VLlY72a2w9c3zYWuE1pwOKEiQHV7GTUbSnhyl5eu3i04t30tBY82ZRWrDfo3gkakCFtevExnxbkf2a3A==", - "requires": { - "@babel/types": "^7.18.7", - "@jridgewell/gen-mapping": "^0.3.2", - "jsesc": "^2.5.1" - } - }, - "@babel/helper-environment-visitor": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.18.6.tgz", - "integrity": "sha512-8n6gSfn2baOY+qlp+VSzsosjCVGFqWKmDF0cCWOybh52Dw3SEyoWR1KrhMJASjLwIEkkAufZ0xvr+SxLHSpy2Q==" - }, - "@babel/helper-function-name": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.18.6.tgz", - "integrity": "sha512-0mWMxV1aC97dhjCah5U5Ua7668r5ZmSC2DLfH2EZnf9c3/dHZKiFa5pRLMH5tjSl471tY6496ZWk/kjNONBxhw==", - "requires": { - "@babel/template": "^7.18.6", - "@babel/types": "^7.18.6" - } - }, - "@babel/helper-hoist-variables": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.18.6.tgz", - "integrity": "sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q==", - "requires": { - "@babel/types": "^7.18.6" - } - }, - "@babel/helper-split-export-declaration": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.18.6.tgz", - "integrity": "sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA==", - "requires": { - "@babel/types": "^7.18.6" - } - }, - "@babel/helper-validator-identifier": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.18.6.tgz", - "integrity": "sha512-MmetCkz9ej86nJQV+sFCxoGGrUbU3q02kgLciwkrt9QqEB7cP39oKEY0PakknEO0Gu20SskMRi+AYZ3b1TpN9g==" - }, - "@babel/highlight": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.18.6.tgz", - "integrity": "sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==", - "requires": { - "@babel/helper-validator-identifier": "^7.18.6", - "chalk": "^2.0.0", - "js-tokens": "^4.0.0" - } - }, - "@babel/parser": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.18.6.tgz", - "integrity": "sha512-uQVSa9jJUe/G/304lXspfWVpKpK4euFLgGiMQFOCpM/bgcAdeoHwi/OQz23O9GK2osz26ZiXRRV9aV+Yl1O8tw==" - }, - "@babel/template": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.18.6.tgz", - "integrity": "sha512-JoDWzPe+wgBsTTgdnIma3iHNFC7YVJoPssVBDjiHfNlyt4YcunDtcDOUmfVDfCK5MfdsaIoX9PkijPhjH3nYUw==", - "requires": { - "@babel/code-frame": "^7.18.6", - "@babel/parser": "^7.18.6", - "@babel/types": "^7.18.6" - } - }, - "@babel/traverse": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.18.6.tgz", - "integrity": "sha512-zS/OKyqmD7lslOtFqbscH6gMLFYOfG1YPqCKfAW5KrTeolKqvB8UelR49Fpr6y93kYkW2Ik00mT1LOGiAGvizw==", - "requires": { - "@babel/code-frame": "^7.18.6", - "@babel/generator": "^7.18.6", - "@babel/helper-environment-visitor": "^7.18.6", - "@babel/helper-function-name": "^7.18.6", - "@babel/helper-hoist-variables": "^7.18.6", - "@babel/helper-split-export-declaration": "^7.18.6", - "@babel/parser": "^7.18.6", - "@babel/types": "^7.18.6", - "debug": "^4.1.0", - "globals": "^11.1.0" - } - }, - "@babel/types": { - "version": "7.18.7", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.7.tgz", - "integrity": "sha512-QG3yxTcTIBoAcQmkCs+wAPYZhu7Dk9rXKacINfNbdJDNERTbLQbHGyVG8q/YGMPeCJRIhSY0+fTc5+xuh6WPSQ==", - "requires": { - "@babel/helper-validator-identifier": "^7.18.6", - "to-fast-properties": "^2.0.0" - } - }, - "@jridgewell/gen-mapping": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.2.tgz", - "integrity": "sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A==", - "requires": { - "@jridgewell/set-array": "^1.0.1", - "@jridgewell/sourcemap-codec": "^1.4.10", - "@jridgewell/trace-mapping": "^0.3.9" - } - }, - "chalk": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", - "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", - "requires": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" - } - }, "debug": { "version": "4.3.4", "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", @@ -244,21 +120,21 @@ } }, "@babel/generator": { - "version": "7.18.2", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.18.2.tgz", - "integrity": "sha512-W1lG5vUwFvfMd8HVXqdfbuG7RuaSrTCCD8cl8fP8wOivdbtbIg2Db3IWUcgvfxKbbn6ZBGYRW/Zk1MIwK49mgw==", + "version": "7.18.7", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.18.7.tgz", + "integrity": "sha512-shck+7VLlY72a2w9c3zYWuE1pwOKEiQHV7GTUbSnhyl5eu3i04t30tBY82ZRWrDfo3gkakCFtevExnxbkf2a3A==", "requires": { - "@babel/types": "^7.18.2", - "@jridgewell/gen-mapping": "^0.3.0", + "@babel/types": "^7.18.7", + "@jridgewell/gen-mapping": "^0.3.2", "jsesc": "^2.5.1" }, "dependencies": { "@jridgewell/gen-mapping": { - "version": "0.3.1", - "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.1.tgz", - "integrity": "sha512-GcHwniMlA2z+WFPWuY8lp3fsza0I8xPFMWL5+n8LYyP6PSvPrXf4+n8stDHZY2DM0zy9sVkRDy1jDI4XGzYVqg==", + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.2.tgz", + "integrity": "sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A==", "requires": { - "@jridgewell/set-array": "^1.0.0", + "@jridgewell/set-array": "^1.0.1", "@jridgewell/sourcemap-codec": "^1.4.10", "@jridgewell/trace-mapping": "^0.3.9" } @@ -271,22 +147,6 @@ "integrity": "sha512-duORpUiYrEpzKIop6iNbjnwKLAKnJ47csTyRACyEmWj0QdUrm5aqNJGHSSEQSUAvNW0ojX0dOmK9dZduvkfeXA==", "requires": { "@babel/types": "^7.18.6" - }, - "dependencies": { - "@babel/helper-validator-identifier": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.18.6.tgz", - "integrity": "sha512-MmetCkz9ej86nJQV+sFCxoGGrUbU3q02kgLciwkrt9QqEB7cP39oKEY0PakknEO0Gu20SskMRi+AYZ3b1TpN9g==" - }, - "@babel/types": { - "version": "7.18.7", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.7.tgz", - "integrity": "sha512-QG3yxTcTIBoAcQmkCs+wAPYZhu7Dk9rXKacINfNbdJDNERTbLQbHGyVG8q/YGMPeCJRIhSY0+fTc5+xuh6WPSQ==", - "requires": { - "@babel/helper-validator-identifier": "^7.18.6", - "to-fast-properties": "^2.0.0" - } - } } }, "@babel/helper-builder-binary-assignment-operator-visitor": { @@ -296,22 +156,6 @@ "requires": { "@babel/helper-explode-assignable-expression": "^7.18.6", "@babel/types": "^7.18.6" - }, - "dependencies": { - "@babel/helper-validator-identifier": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.18.6.tgz", - "integrity": "sha512-MmetCkz9ej86nJQV+sFCxoGGrUbU3q02kgLciwkrt9QqEB7cP39oKEY0PakknEO0Gu20SskMRi+AYZ3b1TpN9g==" - }, - "@babel/types": { - "version": "7.18.7", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.7.tgz", - "integrity": "sha512-QG3yxTcTIBoAcQmkCs+wAPYZhu7Dk9rXKacINfNbdJDNERTbLQbHGyVG8q/YGMPeCJRIhSY0+fTc5+xuh6WPSQ==", - "requires": { - "@babel/helper-validator-identifier": "^7.18.6", - "to-fast-properties": "^2.0.0" - } - } } }, "@babel/helper-compilation-targets": { @@ -344,87 +188,6 @@ "@babel/helper-optimise-call-expression": "^7.18.6", "@babel/helper-replace-supers": "^7.18.6", "@babel/helper-split-export-declaration": "^7.18.6" - }, - "dependencies": { - "@babel/code-frame": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.18.6.tgz", - "integrity": "sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q==", - "requires": { - "@babel/highlight": "^7.18.6" - } - }, - "@babel/helper-environment-visitor": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.18.6.tgz", - "integrity": "sha512-8n6gSfn2baOY+qlp+VSzsosjCVGFqWKmDF0cCWOybh52Dw3SEyoWR1KrhMJASjLwIEkkAufZ0xvr+SxLHSpy2Q==" - }, - "@babel/helper-function-name": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.18.6.tgz", - "integrity": "sha512-0mWMxV1aC97dhjCah5U5Ua7668r5ZmSC2DLfH2EZnf9c3/dHZKiFa5pRLMH5tjSl471tY6496ZWk/kjNONBxhw==", - "requires": { - "@babel/template": "^7.18.6", - "@babel/types": "^7.18.6" - } - }, - "@babel/helper-split-export-declaration": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.18.6.tgz", - "integrity": "sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA==", - "requires": { - "@babel/types": "^7.18.6" - } - }, - "@babel/helper-validator-identifier": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.18.6.tgz", - "integrity": "sha512-MmetCkz9ej86nJQV+sFCxoGGrUbU3q02kgLciwkrt9QqEB7cP39oKEY0PakknEO0Gu20SskMRi+AYZ3b1TpN9g==" - }, - "@babel/highlight": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.18.6.tgz", - "integrity": "sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==", - "requires": { - "@babel/helper-validator-identifier": "^7.18.6", - "chalk": "^2.0.0", - "js-tokens": "^4.0.0" - } - }, - "@babel/parser": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.18.6.tgz", - "integrity": "sha512-uQVSa9jJUe/G/304lXspfWVpKpK4euFLgGiMQFOCpM/bgcAdeoHwi/OQz23O9GK2osz26ZiXRRV9aV+Yl1O8tw==" - }, - "@babel/template": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.18.6.tgz", - "integrity": "sha512-JoDWzPe+wgBsTTgdnIma3iHNFC7YVJoPssVBDjiHfNlyt4YcunDtcDOUmfVDfCK5MfdsaIoX9PkijPhjH3nYUw==", - "requires": { - "@babel/code-frame": "^7.18.6", - "@babel/parser": "^7.18.6", - "@babel/types": "^7.18.6" - } - }, - "@babel/types": { - "version": "7.18.7", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.7.tgz", - "integrity": "sha512-QG3yxTcTIBoAcQmkCs+wAPYZhu7Dk9rXKacINfNbdJDNERTbLQbHGyVG8q/YGMPeCJRIhSY0+fTc5+xuh6WPSQ==", - "requires": { - "@babel/helper-validator-identifier": "^7.18.6", - "to-fast-properties": "^2.0.0" - } - }, - "chalk": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", - "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", - "requires": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" - } - } } }, "@babel/helper-create-regexp-features-plugin": { @@ -467,9 +230,9 @@ } }, "@babel/helper-environment-visitor": { - "version": "7.18.2", - "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.18.2.tgz", - "integrity": "sha512-14GQKWkX9oJzPiQQ7/J36FTXcD4kSp8egKjO9nINlSKiHITRA9q/R74qu8S9xlc/b/yjsJItQUeeh3xnGN0voQ==" + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.18.6.tgz", + "integrity": "sha512-8n6gSfn2baOY+qlp+VSzsosjCVGFqWKmDF0cCWOybh52Dw3SEyoWR1KrhMJASjLwIEkkAufZ0xvr+SxLHSpy2Q==" }, "@babel/helper-explode-assignable-expression": { "version": "7.18.6", @@ -477,39 +240,23 @@ "integrity": "sha512-eyAYAsQmB80jNfg4baAtLeWAQHfHFiR483rzFK+BhETlGZaQC9bsfrugfXDCbRHLQbIA7U5NxhhOxN7p/dWIcg==", "requires": { "@babel/types": "^7.18.6" - }, - "dependencies": { - "@babel/helper-validator-identifier": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.18.6.tgz", - "integrity": "sha512-MmetCkz9ej86nJQV+sFCxoGGrUbU3q02kgLciwkrt9QqEB7cP39oKEY0PakknEO0Gu20SskMRi+AYZ3b1TpN9g==" - }, - "@babel/types": { - "version": "7.18.7", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.7.tgz", - "integrity": "sha512-QG3yxTcTIBoAcQmkCs+wAPYZhu7Dk9rXKacINfNbdJDNERTbLQbHGyVG8q/YGMPeCJRIhSY0+fTc5+xuh6WPSQ==", - "requires": { - "@babel/helper-validator-identifier": "^7.18.6", - "to-fast-properties": "^2.0.0" - } - } } }, "@babel/helper-function-name": { - "version": "7.17.9", - "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.17.9.tgz", - "integrity": "sha512-7cRisGlVtiVqZ0MW0/yFB4atgpGLWEHUVYnb448hZK4x+vih0YO5UoS11XIYtZYqHd0dIPMdUSv8q5K4LdMnIg==", + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.18.6.tgz", + "integrity": "sha512-0mWMxV1aC97dhjCah5U5Ua7668r5ZmSC2DLfH2EZnf9c3/dHZKiFa5pRLMH5tjSl471tY6496ZWk/kjNONBxhw==", "requires": { - "@babel/template": "^7.16.7", - "@babel/types": "^7.17.0" + "@babel/template": "^7.18.6", + "@babel/types": "^7.18.6" } }, "@babel/helper-hoist-variables": { - "version": "7.16.7", - "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.16.7.tgz", - "integrity": "sha512-m04d/0Op34H5v7pbZw6pSKP7weA6lsMvfiIAMeIvkY/R4xQtBSMFEigu9QTZ2qB/9l22vsxtM8a+Q8CzD255fg==", + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.18.6.tgz", + "integrity": "sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q==", "requires": { - "@babel/types": "^7.16.7" + "@babel/types": "^7.18.6" } }, "@babel/helper-member-expression-to-functions": { @@ -518,22 +265,6 @@ "integrity": "sha512-CeHxqwwipekotzPDUuJOfIMtcIHBuc7WAzLmTYWctVigqS5RktNMQ5bEwQSuGewzYnCtTWa3BARXeiLxDTv+Ng==", "requires": { "@babel/types": "^7.18.6" - }, - "dependencies": { - "@babel/helper-validator-identifier": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.18.6.tgz", - "integrity": "sha512-MmetCkz9ej86nJQV+sFCxoGGrUbU3q02kgLciwkrt9QqEB7cP39oKEY0PakknEO0Gu20SskMRi+AYZ3b1TpN9g==" - }, - "@babel/types": { - "version": "7.18.7", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.7.tgz", - "integrity": "sha512-QG3yxTcTIBoAcQmkCs+wAPYZhu7Dk9rXKacINfNbdJDNERTbLQbHGyVG8q/YGMPeCJRIhSY0+fTc5+xuh6WPSQ==", - "requires": { - "@babel/helper-validator-identifier": "^7.18.6", - "to-fast-properties": "^2.0.0" - } - } } }, "@babel/helper-module-imports": { @@ -542,22 +273,6 @@ "integrity": "sha512-0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA==", "requires": { "@babel/types": "^7.18.6" - }, - "dependencies": { - "@babel/helper-validator-identifier": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.18.6.tgz", - "integrity": "sha512-MmetCkz9ej86nJQV+sFCxoGGrUbU3q02kgLciwkrt9QqEB7cP39oKEY0PakknEO0Gu20SskMRi+AYZ3b1TpN9g==" - }, - "@babel/types": { - "version": "7.18.7", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.7.tgz", - "integrity": "sha512-QG3yxTcTIBoAcQmkCs+wAPYZhu7Dk9rXKacINfNbdJDNERTbLQbHGyVG8q/YGMPeCJRIhSY0+fTc5+xuh6WPSQ==", - "requires": { - "@babel/helper-validator-identifier": "^7.18.6", - "to-fast-properties": "^2.0.0" - } - } } }, "@babel/helper-module-transforms": { @@ -573,140 +288,6 @@ "@babel/template": "^7.18.6", "@babel/traverse": "^7.18.6", "@babel/types": "^7.18.6" - }, - "dependencies": { - "@babel/code-frame": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.18.6.tgz", - "integrity": "sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q==", - "requires": { - "@babel/highlight": "^7.18.6" - } - }, - "@babel/generator": { - "version": "7.18.7", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.18.7.tgz", - "integrity": "sha512-shck+7VLlY72a2w9c3zYWuE1pwOKEiQHV7GTUbSnhyl5eu3i04t30tBY82ZRWrDfo3gkakCFtevExnxbkf2a3A==", - "requires": { - "@babel/types": "^7.18.7", - "@jridgewell/gen-mapping": "^0.3.2", - "jsesc": "^2.5.1" - } - }, - "@babel/helper-environment-visitor": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.18.6.tgz", - "integrity": "sha512-8n6gSfn2baOY+qlp+VSzsosjCVGFqWKmDF0cCWOybh52Dw3SEyoWR1KrhMJASjLwIEkkAufZ0xvr+SxLHSpy2Q==" - }, - "@babel/helper-function-name": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.18.6.tgz", - "integrity": "sha512-0mWMxV1aC97dhjCah5U5Ua7668r5ZmSC2DLfH2EZnf9c3/dHZKiFa5pRLMH5tjSl471tY6496ZWk/kjNONBxhw==", - "requires": { - "@babel/template": "^7.18.6", - "@babel/types": "^7.18.6" - } - }, - "@babel/helper-hoist-variables": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.18.6.tgz", - "integrity": "sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q==", - "requires": { - "@babel/types": "^7.18.6" - } - }, - "@babel/helper-split-export-declaration": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.18.6.tgz", - "integrity": "sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA==", - "requires": { - "@babel/types": "^7.18.6" - } - }, - "@babel/helper-validator-identifier": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.18.6.tgz", - "integrity": "sha512-MmetCkz9ej86nJQV+sFCxoGGrUbU3q02kgLciwkrt9QqEB7cP39oKEY0PakknEO0Gu20SskMRi+AYZ3b1TpN9g==" - }, - "@babel/highlight": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.18.6.tgz", - "integrity": "sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==", - "requires": { - "@babel/helper-validator-identifier": "^7.18.6", - "chalk": "^2.0.0", - "js-tokens": "^4.0.0" - } - }, - "@babel/parser": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.18.6.tgz", - "integrity": "sha512-uQVSa9jJUe/G/304lXspfWVpKpK4euFLgGiMQFOCpM/bgcAdeoHwi/OQz23O9GK2osz26ZiXRRV9aV+Yl1O8tw==" - }, - "@babel/template": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.18.6.tgz", - "integrity": "sha512-JoDWzPe+wgBsTTgdnIma3iHNFC7YVJoPssVBDjiHfNlyt4YcunDtcDOUmfVDfCK5MfdsaIoX9PkijPhjH3nYUw==", - "requires": { - "@babel/code-frame": "^7.18.6", - "@babel/parser": "^7.18.6", - "@babel/types": "^7.18.6" - } - }, - "@babel/traverse": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.18.6.tgz", - "integrity": "sha512-zS/OKyqmD7lslOtFqbscH6gMLFYOfG1YPqCKfAW5KrTeolKqvB8UelR49Fpr6y93kYkW2Ik00mT1LOGiAGvizw==", - "requires": { - "@babel/code-frame": "^7.18.6", - "@babel/generator": "^7.18.6", - "@babel/helper-environment-visitor": "^7.18.6", - "@babel/helper-function-name": "^7.18.6", - "@babel/helper-hoist-variables": "^7.18.6", - "@babel/helper-split-export-declaration": "^7.18.6", - "@babel/parser": "^7.18.6", - "@babel/types": "^7.18.6", - "debug": "^4.1.0", - "globals": "^11.1.0" - } - }, - "@babel/types": { - "version": "7.18.7", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.7.tgz", - "integrity": "sha512-QG3yxTcTIBoAcQmkCs+wAPYZhu7Dk9rXKacINfNbdJDNERTbLQbHGyVG8q/YGMPeCJRIhSY0+fTc5+xuh6WPSQ==", - "requires": { - "@babel/helper-validator-identifier": "^7.18.6", - "to-fast-properties": "^2.0.0" - } - }, - "@jridgewell/gen-mapping": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.2.tgz", - "integrity": "sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A==", - "requires": { - "@jridgewell/set-array": "^1.0.1", - "@jridgewell/sourcemap-codec": "^1.4.10", - "@jridgewell/trace-mapping": "^0.3.9" - } - }, - "chalk": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", - "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", - "requires": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" - } - }, - "debug": { - "version": "4.3.4", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", - "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", - "requires": { - "ms": "2.1.2" - } - } } }, "@babel/helper-optimise-call-expression": { @@ -715,22 +296,6 @@ "integrity": "sha512-HP59oD9/fEHQkdcbgFCnbmgH5vIQTJbxh2yf+CdM89/glUNnuzr87Q8GIjGEnOktTROemO0Pe0iPAYbqZuOUiA==", "requires": { "@babel/types": "^7.18.6" - }, - "dependencies": { - "@babel/helper-validator-identifier": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.18.6.tgz", - "integrity": "sha512-MmetCkz9ej86nJQV+sFCxoGGrUbU3q02kgLciwkrt9QqEB7cP39oKEY0PakknEO0Gu20SskMRi+AYZ3b1TpN9g==" - }, - "@babel/types": { - "version": "7.18.7", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.7.tgz", - "integrity": "sha512-QG3yxTcTIBoAcQmkCs+wAPYZhu7Dk9rXKacINfNbdJDNERTbLQbHGyVG8q/YGMPeCJRIhSY0+fTc5+xuh6WPSQ==", - "requires": { - "@babel/helper-validator-identifier": "^7.18.6", - "to-fast-properties": "^2.0.0" - } - } } }, "@babel/helper-plugin-utils": { @@ -747,384 +312,63 @@ "@babel/helper-environment-visitor": "^7.18.6", "@babel/helper-wrap-function": "^7.18.6", "@babel/types": "^7.18.6" - }, - "dependencies": { - "@babel/helper-environment-visitor": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.18.6.tgz", - "integrity": "sha512-8n6gSfn2baOY+qlp+VSzsosjCVGFqWKmDF0cCWOybh52Dw3SEyoWR1KrhMJASjLwIEkkAufZ0xvr+SxLHSpy2Q==" - }, - "@babel/helper-validator-identifier": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.18.6.tgz", - "integrity": "sha512-MmetCkz9ej86nJQV+sFCxoGGrUbU3q02kgLciwkrt9QqEB7cP39oKEY0PakknEO0Gu20SskMRi+AYZ3b1TpN9g==" - }, - "@babel/types": { - "version": "7.18.7", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.7.tgz", - "integrity": "sha512-QG3yxTcTIBoAcQmkCs+wAPYZhu7Dk9rXKacINfNbdJDNERTbLQbHGyVG8q/YGMPeCJRIhSY0+fTc5+xuh6WPSQ==", - "requires": { - "@babel/helper-validator-identifier": "^7.18.6", - "to-fast-properties": "^2.0.0" - } - } } }, "@babel/helper-replace-supers": { "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.18.6.tgz", - "integrity": "sha512-fTf7zoXnUGl9gF25fXCWE26t7Tvtyn6H4hkLSYhATwJvw2uYxd3aoXplMSe0g9XbwK7bmxNes7+FGO0rB/xC0g==", - "requires": { - "@babel/helper-environment-visitor": "^7.18.6", - "@babel/helper-member-expression-to-functions": "^7.18.6", - "@babel/helper-optimise-call-expression": "^7.18.6", - "@babel/traverse": "^7.18.6", - "@babel/types": "^7.18.6" - }, - "dependencies": { - "@babel/code-frame": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.18.6.tgz", - "integrity": "sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q==", - "requires": { - "@babel/highlight": "^7.18.6" - } - }, - "@babel/generator": { - "version": "7.18.7", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.18.7.tgz", - "integrity": "sha512-shck+7VLlY72a2w9c3zYWuE1pwOKEiQHV7GTUbSnhyl5eu3i04t30tBY82ZRWrDfo3gkakCFtevExnxbkf2a3A==", - "requires": { - "@babel/types": "^7.18.7", - "@jridgewell/gen-mapping": "^0.3.2", - "jsesc": "^2.5.1" - } - }, - "@babel/helper-environment-visitor": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.18.6.tgz", - "integrity": "sha512-8n6gSfn2baOY+qlp+VSzsosjCVGFqWKmDF0cCWOybh52Dw3SEyoWR1KrhMJASjLwIEkkAufZ0xvr+SxLHSpy2Q==" - }, - "@babel/helper-function-name": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.18.6.tgz", - "integrity": "sha512-0mWMxV1aC97dhjCah5U5Ua7668r5ZmSC2DLfH2EZnf9c3/dHZKiFa5pRLMH5tjSl471tY6496ZWk/kjNONBxhw==", - "requires": { - "@babel/template": "^7.18.6", - "@babel/types": "^7.18.6" - } - }, - "@babel/helper-hoist-variables": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.18.6.tgz", - "integrity": "sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q==", - "requires": { - "@babel/types": "^7.18.6" - } - }, - "@babel/helper-split-export-declaration": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.18.6.tgz", - "integrity": "sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA==", - "requires": { - "@babel/types": "^7.18.6" - } - }, - "@babel/helper-validator-identifier": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.18.6.tgz", - "integrity": "sha512-MmetCkz9ej86nJQV+sFCxoGGrUbU3q02kgLciwkrt9QqEB7cP39oKEY0PakknEO0Gu20SskMRi+AYZ3b1TpN9g==" - }, - "@babel/highlight": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.18.6.tgz", - "integrity": "sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==", - "requires": { - "@babel/helper-validator-identifier": "^7.18.6", - "chalk": "^2.0.0", - "js-tokens": "^4.0.0" - } - }, - "@babel/parser": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.18.6.tgz", - "integrity": "sha512-uQVSa9jJUe/G/304lXspfWVpKpK4euFLgGiMQFOCpM/bgcAdeoHwi/OQz23O9GK2osz26ZiXRRV9aV+Yl1O8tw==" - }, - "@babel/template": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.18.6.tgz", - "integrity": "sha512-JoDWzPe+wgBsTTgdnIma3iHNFC7YVJoPssVBDjiHfNlyt4YcunDtcDOUmfVDfCK5MfdsaIoX9PkijPhjH3nYUw==", - "requires": { - "@babel/code-frame": "^7.18.6", - "@babel/parser": "^7.18.6", - "@babel/types": "^7.18.6" - } - }, - "@babel/traverse": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.18.6.tgz", - "integrity": "sha512-zS/OKyqmD7lslOtFqbscH6gMLFYOfG1YPqCKfAW5KrTeolKqvB8UelR49Fpr6y93kYkW2Ik00mT1LOGiAGvizw==", - "requires": { - "@babel/code-frame": "^7.18.6", - "@babel/generator": "^7.18.6", - "@babel/helper-environment-visitor": "^7.18.6", - "@babel/helper-function-name": "^7.18.6", - "@babel/helper-hoist-variables": "^7.18.6", - "@babel/helper-split-export-declaration": "^7.18.6", - "@babel/parser": "^7.18.6", - "@babel/types": "^7.18.6", - "debug": "^4.1.0", - "globals": "^11.1.0" - } - }, - "@babel/types": { - "version": "7.18.7", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.7.tgz", - "integrity": "sha512-QG3yxTcTIBoAcQmkCs+wAPYZhu7Dk9rXKacINfNbdJDNERTbLQbHGyVG8q/YGMPeCJRIhSY0+fTc5+xuh6WPSQ==", - "requires": { - "@babel/helper-validator-identifier": "^7.18.6", - "to-fast-properties": "^2.0.0" - } - }, - "@jridgewell/gen-mapping": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.2.tgz", - "integrity": "sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A==", - "requires": { - "@jridgewell/set-array": "^1.0.1", - "@jridgewell/sourcemap-codec": "^1.4.10", - "@jridgewell/trace-mapping": "^0.3.9" - } - }, - "chalk": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", - "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", - "requires": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" - } - }, - "debug": { - "version": "4.3.4", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", - "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", - "requires": { - "ms": "2.1.2" - } - } - } - }, - "@babel/helper-simple-access": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.18.6.tgz", - "integrity": "sha512-iNpIgTgyAvDQpDj76POqg+YEt8fPxx3yaNBg3S30dxNKm2SWfYhD0TGrK/Eu9wHpUW63VQU894TsTg+GLbUa1g==", - "requires": { - "@babel/types": "^7.18.6" - }, - "dependencies": { - "@babel/helper-validator-identifier": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.18.6.tgz", - "integrity": "sha512-MmetCkz9ej86nJQV+sFCxoGGrUbU3q02kgLciwkrt9QqEB7cP39oKEY0PakknEO0Gu20SskMRi+AYZ3b1TpN9g==" - }, - "@babel/types": { - "version": "7.18.7", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.7.tgz", - "integrity": "sha512-QG3yxTcTIBoAcQmkCs+wAPYZhu7Dk9rXKacINfNbdJDNERTbLQbHGyVG8q/YGMPeCJRIhSY0+fTc5+xuh6WPSQ==", - "requires": { - "@babel/helper-validator-identifier": "^7.18.6", - "to-fast-properties": "^2.0.0" - } - } - } - }, - "@babel/helper-skip-transparent-expression-wrappers": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.18.6.tgz", - "integrity": "sha512-4KoLhwGS9vGethZpAhYnMejWkX64wsnHPDwvOsKWU6Fg4+AlK2Jz3TyjQLMEPvz+1zemi/WBdkYxCD0bAfIkiw==", - "requires": { - "@babel/types": "^7.18.6" - }, - "dependencies": { - "@babel/helper-validator-identifier": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.18.6.tgz", - "integrity": "sha512-MmetCkz9ej86nJQV+sFCxoGGrUbU3q02kgLciwkrt9QqEB7cP39oKEY0PakknEO0Gu20SskMRi+AYZ3b1TpN9g==" - }, - "@babel/types": { - "version": "7.18.7", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.7.tgz", - "integrity": "sha512-QG3yxTcTIBoAcQmkCs+wAPYZhu7Dk9rXKacINfNbdJDNERTbLQbHGyVG8q/YGMPeCJRIhSY0+fTc5+xuh6WPSQ==", - "requires": { - "@babel/helper-validator-identifier": "^7.18.6", - "to-fast-properties": "^2.0.0" - } - } - } - }, - "@babel/helper-split-export-declaration": { - "version": "7.16.7", - "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.16.7.tgz", - "integrity": "sha512-xbWoy/PFoxSWazIToT9Sif+jJTlrMcndIsaOKvTA6u7QEo7ilkRZpjew18/W3c7nm8fXdUDXh02VXTbZ0pGDNw==", - "requires": { - "@babel/types": "^7.16.7" - } - }, - "@babel/helper-validator-identifier": { - "version": "7.16.7", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.16.7.tgz", - "integrity": "sha512-hsEnFemeiW4D08A5gUAZxLBTXpZ39P+a+DGDsHw1yxqyQ/jzFEnxf5uTEGp+3bzAbNOxU1paTgYS4ECU/IgfDw==" - }, - "@babel/helper-validator-option": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.18.6.tgz", - "integrity": "sha512-XO7gESt5ouv/LRJdrVjkShckw6STTaB7l9BrpBaAHDeF5YZT+01PCwmR0SJHnkW6i8OwW/EVWRShfi4j2x+KQw==" - }, - "@babel/helper-wrap-function": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.18.6.tgz", - "integrity": "sha512-I5/LZfozwMNbwr/b1vhhuYD+J/mU+gfGAj5td7l5Rv9WYmH6i3Om69WGKNmlIpsVW/mF6O5bvTKbvDQZVgjqOw==", - "requires": { - "@babel/helper-function-name": "^7.18.6", - "@babel/template": "^7.18.6", - "@babel/traverse": "^7.18.6", - "@babel/types": "^7.18.6" - }, - "dependencies": { - "@babel/code-frame": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.18.6.tgz", - "integrity": "sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q==", - "requires": { - "@babel/highlight": "^7.18.6" - } - }, - "@babel/generator": { - "version": "7.18.7", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.18.7.tgz", - "integrity": "sha512-shck+7VLlY72a2w9c3zYWuE1pwOKEiQHV7GTUbSnhyl5eu3i04t30tBY82ZRWrDfo3gkakCFtevExnxbkf2a3A==", - "requires": { - "@babel/types": "^7.18.7", - "@jridgewell/gen-mapping": "^0.3.2", - "jsesc": "^2.5.1" - } - }, - "@babel/helper-environment-visitor": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.18.6.tgz", - "integrity": "sha512-8n6gSfn2baOY+qlp+VSzsosjCVGFqWKmDF0cCWOybh52Dw3SEyoWR1KrhMJASjLwIEkkAufZ0xvr+SxLHSpy2Q==" - }, - "@babel/helper-function-name": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.18.6.tgz", - "integrity": "sha512-0mWMxV1aC97dhjCah5U5Ua7668r5ZmSC2DLfH2EZnf9c3/dHZKiFa5pRLMH5tjSl471tY6496ZWk/kjNONBxhw==", - "requires": { - "@babel/template": "^7.18.6", - "@babel/types": "^7.18.6" - } - }, - "@babel/helper-hoist-variables": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.18.6.tgz", - "integrity": "sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q==", - "requires": { - "@babel/types": "^7.18.6" - } - }, - "@babel/helper-split-export-declaration": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.18.6.tgz", - "integrity": "sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA==", - "requires": { - "@babel/types": "^7.18.6" - } - }, - "@babel/helper-validator-identifier": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.18.6.tgz", - "integrity": "sha512-MmetCkz9ej86nJQV+sFCxoGGrUbU3q02kgLciwkrt9QqEB7cP39oKEY0PakknEO0Gu20SskMRi+AYZ3b1TpN9g==" - }, - "@babel/highlight": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.18.6.tgz", - "integrity": "sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==", - "requires": { - "@babel/helper-validator-identifier": "^7.18.6", - "chalk": "^2.0.0", - "js-tokens": "^4.0.0" - } - }, - "@babel/parser": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.18.6.tgz", - "integrity": "sha512-uQVSa9jJUe/G/304lXspfWVpKpK4euFLgGiMQFOCpM/bgcAdeoHwi/OQz23O9GK2osz26ZiXRRV9aV+Yl1O8tw==" - }, - "@babel/template": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.18.6.tgz", - "integrity": "sha512-JoDWzPe+wgBsTTgdnIma3iHNFC7YVJoPssVBDjiHfNlyt4YcunDtcDOUmfVDfCK5MfdsaIoX9PkijPhjH3nYUw==", - "requires": { - "@babel/code-frame": "^7.18.6", - "@babel/parser": "^7.18.6", - "@babel/types": "^7.18.6" - } - }, - "@babel/traverse": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.18.6.tgz", - "integrity": "sha512-zS/OKyqmD7lslOtFqbscH6gMLFYOfG1YPqCKfAW5KrTeolKqvB8UelR49Fpr6y93kYkW2Ik00mT1LOGiAGvizw==", - "requires": { - "@babel/code-frame": "^7.18.6", - "@babel/generator": "^7.18.6", - "@babel/helper-environment-visitor": "^7.18.6", - "@babel/helper-function-name": "^7.18.6", - "@babel/helper-hoist-variables": "^7.18.6", - "@babel/helper-split-export-declaration": "^7.18.6", - "@babel/parser": "^7.18.6", - "@babel/types": "^7.18.6", - "debug": "^4.1.0", - "globals": "^11.1.0" - } - }, - "@babel/types": { - "version": "7.18.7", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.7.tgz", - "integrity": "sha512-QG3yxTcTIBoAcQmkCs+wAPYZhu7Dk9rXKacINfNbdJDNERTbLQbHGyVG8q/YGMPeCJRIhSY0+fTc5+xuh6WPSQ==", - "requires": { - "@babel/helper-validator-identifier": "^7.18.6", - "to-fast-properties": "^2.0.0" - } - }, - "@jridgewell/gen-mapping": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.2.tgz", - "integrity": "sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A==", - "requires": { - "@jridgewell/set-array": "^1.0.1", - "@jridgewell/sourcemap-codec": "^1.4.10", - "@jridgewell/trace-mapping": "^0.3.9" - } - }, - "chalk": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", - "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", - "requires": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" - } - }, - "debug": { - "version": "4.3.4", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", - "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", - "requires": { - "ms": "2.1.2" - } - } + "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.18.6.tgz", + "integrity": "sha512-fTf7zoXnUGl9gF25fXCWE26t7Tvtyn6H4hkLSYhATwJvw2uYxd3aoXplMSe0g9XbwK7bmxNes7+FGO0rB/xC0g==", + "requires": { + "@babel/helper-environment-visitor": "^7.18.6", + "@babel/helper-member-expression-to-functions": "^7.18.6", + "@babel/helper-optimise-call-expression": "^7.18.6", + "@babel/traverse": "^7.18.6", + "@babel/types": "^7.18.6" + } + }, + "@babel/helper-simple-access": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.18.6.tgz", + "integrity": "sha512-iNpIgTgyAvDQpDj76POqg+YEt8fPxx3yaNBg3S30dxNKm2SWfYhD0TGrK/Eu9wHpUW63VQU894TsTg+GLbUa1g==", + "requires": { + "@babel/types": "^7.18.6" + } + }, + "@babel/helper-skip-transparent-expression-wrappers": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.18.6.tgz", + "integrity": "sha512-4KoLhwGS9vGethZpAhYnMejWkX64wsnHPDwvOsKWU6Fg4+AlK2Jz3TyjQLMEPvz+1zemi/WBdkYxCD0bAfIkiw==", + "requires": { + "@babel/types": "^7.18.6" + } + }, + "@babel/helper-split-export-declaration": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.18.6.tgz", + "integrity": "sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA==", + "requires": { + "@babel/types": "^7.18.6" + } + }, + "@babel/helper-validator-identifier": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.18.6.tgz", + "integrity": "sha512-MmetCkz9ej86nJQV+sFCxoGGrUbU3q02kgLciwkrt9QqEB7cP39oKEY0PakknEO0Gu20SskMRi+AYZ3b1TpN9g==" + }, + "@babel/helper-validator-option": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.18.6.tgz", + "integrity": "sha512-XO7gESt5ouv/LRJdrVjkShckw6STTaB7l9BrpBaAHDeF5YZT+01PCwmR0SJHnkW6i8OwW/EVWRShfi4j2x+KQw==" + }, + "@babel/helper-wrap-function": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.18.6.tgz", + "integrity": "sha512-I5/LZfozwMNbwr/b1vhhuYD+J/mU+gfGAj5td7l5Rv9WYmH6i3Om69WGKNmlIpsVW/mF6O5bvTKbvDQZVgjqOw==", + "requires": { + "@babel/helper-function-name": "^7.18.6", + "@babel/template": "^7.18.6", + "@babel/traverse": "^7.18.6", + "@babel/types": "^7.18.6" } }, "@babel/helpers": { @@ -1135,148 +379,14 @@ "@babel/template": "^7.18.6", "@babel/traverse": "^7.18.6", "@babel/types": "^7.18.6" - }, - "dependencies": { - "@babel/code-frame": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.18.6.tgz", - "integrity": "sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q==", - "requires": { - "@babel/highlight": "^7.18.6" - } - }, - "@babel/generator": { - "version": "7.18.7", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.18.7.tgz", - "integrity": "sha512-shck+7VLlY72a2w9c3zYWuE1pwOKEiQHV7GTUbSnhyl5eu3i04t30tBY82ZRWrDfo3gkakCFtevExnxbkf2a3A==", - "requires": { - "@babel/types": "^7.18.7", - "@jridgewell/gen-mapping": "^0.3.2", - "jsesc": "^2.5.1" - } - }, - "@babel/helper-environment-visitor": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.18.6.tgz", - "integrity": "sha512-8n6gSfn2baOY+qlp+VSzsosjCVGFqWKmDF0cCWOybh52Dw3SEyoWR1KrhMJASjLwIEkkAufZ0xvr+SxLHSpy2Q==" - }, - "@babel/helper-function-name": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.18.6.tgz", - "integrity": "sha512-0mWMxV1aC97dhjCah5U5Ua7668r5ZmSC2DLfH2EZnf9c3/dHZKiFa5pRLMH5tjSl471tY6496ZWk/kjNONBxhw==", - "requires": { - "@babel/template": "^7.18.6", - "@babel/types": "^7.18.6" - } - }, - "@babel/helper-hoist-variables": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.18.6.tgz", - "integrity": "sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q==", - "requires": { - "@babel/types": "^7.18.6" - } - }, - "@babel/helper-split-export-declaration": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.18.6.tgz", - "integrity": "sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA==", - "requires": { - "@babel/types": "^7.18.6" - } - }, - "@babel/helper-validator-identifier": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.18.6.tgz", - "integrity": "sha512-MmetCkz9ej86nJQV+sFCxoGGrUbU3q02kgLciwkrt9QqEB7cP39oKEY0PakknEO0Gu20SskMRi+AYZ3b1TpN9g==" - }, - "@babel/highlight": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.18.6.tgz", - "integrity": "sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==", - "requires": { - "@babel/helper-validator-identifier": "^7.18.6", - "chalk": "^2.0.0", - "js-tokens": "^4.0.0" - } - }, - "@babel/parser": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.18.6.tgz", - "integrity": "sha512-uQVSa9jJUe/G/304lXspfWVpKpK4euFLgGiMQFOCpM/bgcAdeoHwi/OQz23O9GK2osz26ZiXRRV9aV+Yl1O8tw==" - }, - "@babel/template": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.18.6.tgz", - "integrity": "sha512-JoDWzPe+wgBsTTgdnIma3iHNFC7YVJoPssVBDjiHfNlyt4YcunDtcDOUmfVDfCK5MfdsaIoX9PkijPhjH3nYUw==", - "requires": { - "@babel/code-frame": "^7.18.6", - "@babel/parser": "^7.18.6", - "@babel/types": "^7.18.6" - } - }, - "@babel/traverse": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.18.6.tgz", - "integrity": "sha512-zS/OKyqmD7lslOtFqbscH6gMLFYOfG1YPqCKfAW5KrTeolKqvB8UelR49Fpr6y93kYkW2Ik00mT1LOGiAGvizw==", - "requires": { - "@babel/code-frame": "^7.18.6", - "@babel/generator": "^7.18.6", - "@babel/helper-environment-visitor": "^7.18.6", - "@babel/helper-function-name": "^7.18.6", - "@babel/helper-hoist-variables": "^7.18.6", - "@babel/helper-split-export-declaration": "^7.18.6", - "@babel/parser": "^7.18.6", - "@babel/types": "^7.18.6", - "debug": "^4.1.0", - "globals": "^11.1.0" - } - }, - "@babel/types": { - "version": "7.18.7", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.7.tgz", - "integrity": "sha512-QG3yxTcTIBoAcQmkCs+wAPYZhu7Dk9rXKacINfNbdJDNERTbLQbHGyVG8q/YGMPeCJRIhSY0+fTc5+xuh6WPSQ==", - "requires": { - "@babel/helper-validator-identifier": "^7.18.6", - "to-fast-properties": "^2.0.0" - } - }, - "@jridgewell/gen-mapping": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.2.tgz", - "integrity": "sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A==", - "requires": { - "@jridgewell/set-array": "^1.0.1", - "@jridgewell/sourcemap-codec": "^1.4.10", - "@jridgewell/trace-mapping": "^0.3.9" - } - }, - "chalk": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", - "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", - "requires": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" - } - }, - "debug": { - "version": "4.3.4", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", - "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", - "requires": { - "ms": "2.1.2" - } - } } }, "@babel/highlight": { - "version": "7.17.12", - "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.17.12.tgz", - "integrity": "sha512-7yykMVF3hfZY2jsHZEEgLc+3x4o1O+fYyULu11GynEUQNwB6lua+IIQn1FiJxNucd5UlyJryrwsOh8PL9Sn8Qg==", + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.18.6.tgz", + "integrity": "sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==", "requires": { - "@babel/helper-validator-identifier": "^7.16.7", + "@babel/helper-validator-identifier": "^7.18.6", "chalk": "^2.0.0", "js-tokens": "^4.0.0" }, @@ -1294,9 +404,9 @@ } }, "@babel/parser": { - "version": "7.18.5", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.18.5.tgz", - "integrity": "sha512-YZWVaglMiplo7v8f1oMQ5ZPQr0vn7HPeZXxXWsxXJRjGVrzUFn9OxFQl1sb5wzfootjA/yChhW84BV+383FSOw==" + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.18.6.tgz", + "integrity": "sha512-uQVSa9jJUe/G/304lXspfWVpKpK4euFLgGiMQFOCpM/bgcAdeoHwi/OQz23O9GK2osz26ZiXRRV9aV+Yl1O8tw==" }, "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": { "version": "7.18.6", @@ -1325,13 +435,6 @@ "@babel/helper-plugin-utils": "^7.18.6", "@babel/helper-remap-async-to-generator": "^7.18.6", "@babel/plugin-syntax-async-generators": "^7.8.4" - }, - "dependencies": { - "@babel/helper-environment-visitor": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.18.6.tgz", - "integrity": "sha512-8n6gSfn2baOY+qlp+VSzsosjCVGFqWKmDF0cCWOybh52Dw3SEyoWR1KrhMJASjLwIEkkAufZ0xvr+SxLHSpy2Q==" - } } }, "@babel/plugin-proposal-class-properties": { @@ -1658,87 +761,6 @@ "@babel/helper-replace-supers": "^7.18.6", "@babel/helper-split-export-declaration": "^7.18.6", "globals": "^11.1.0" - }, - "dependencies": { - "@babel/code-frame": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.18.6.tgz", - "integrity": "sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q==", - "requires": { - "@babel/highlight": "^7.18.6" - } - }, - "@babel/helper-environment-visitor": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.18.6.tgz", - "integrity": "sha512-8n6gSfn2baOY+qlp+VSzsosjCVGFqWKmDF0cCWOybh52Dw3SEyoWR1KrhMJASjLwIEkkAufZ0xvr+SxLHSpy2Q==" - }, - "@babel/helper-function-name": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.18.6.tgz", - "integrity": "sha512-0mWMxV1aC97dhjCah5U5Ua7668r5ZmSC2DLfH2EZnf9c3/dHZKiFa5pRLMH5tjSl471tY6496ZWk/kjNONBxhw==", - "requires": { - "@babel/template": "^7.18.6", - "@babel/types": "^7.18.6" - } - }, - "@babel/helper-split-export-declaration": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.18.6.tgz", - "integrity": "sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA==", - "requires": { - "@babel/types": "^7.18.6" - } - }, - "@babel/helper-validator-identifier": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.18.6.tgz", - "integrity": "sha512-MmetCkz9ej86nJQV+sFCxoGGrUbU3q02kgLciwkrt9QqEB7cP39oKEY0PakknEO0Gu20SskMRi+AYZ3b1TpN9g==" - }, - "@babel/highlight": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.18.6.tgz", - "integrity": "sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==", - "requires": { - "@babel/helper-validator-identifier": "^7.18.6", - "chalk": "^2.0.0", - "js-tokens": "^4.0.0" - } - }, - "@babel/parser": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.18.6.tgz", - "integrity": "sha512-uQVSa9jJUe/G/304lXspfWVpKpK4euFLgGiMQFOCpM/bgcAdeoHwi/OQz23O9GK2osz26ZiXRRV9aV+Yl1O8tw==" - }, - "@babel/template": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.18.6.tgz", - "integrity": "sha512-JoDWzPe+wgBsTTgdnIma3iHNFC7YVJoPssVBDjiHfNlyt4YcunDtcDOUmfVDfCK5MfdsaIoX9PkijPhjH3nYUw==", - "requires": { - "@babel/code-frame": "^7.18.6", - "@babel/parser": "^7.18.6", - "@babel/types": "^7.18.6" - } - }, - "@babel/types": { - "version": "7.18.7", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.7.tgz", - "integrity": "sha512-QG3yxTcTIBoAcQmkCs+wAPYZhu7Dk9rXKacINfNbdJDNERTbLQbHGyVG8q/YGMPeCJRIhSY0+fTc5+xuh6WPSQ==", - "requires": { - "@babel/helper-validator-identifier": "^7.18.6", - "to-fast-properties": "^2.0.0" - } - }, - "chalk": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", - "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", - "requires": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" - } - } } }, "@babel/plugin-transform-computed-properties": { @@ -1808,74 +830,6 @@ "@babel/helper-compilation-targets": "^7.18.6", "@babel/helper-function-name": "^7.18.6", "@babel/helper-plugin-utils": "^7.18.6" - }, - "dependencies": { - "@babel/code-frame": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.18.6.tgz", - "integrity": "sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q==", - "requires": { - "@babel/highlight": "^7.18.6" - } - }, - "@babel/helper-function-name": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.18.6.tgz", - "integrity": "sha512-0mWMxV1aC97dhjCah5U5Ua7668r5ZmSC2DLfH2EZnf9c3/dHZKiFa5pRLMH5tjSl471tY6496ZWk/kjNONBxhw==", - "requires": { - "@babel/template": "^7.18.6", - "@babel/types": "^7.18.6" - } - }, - "@babel/helper-validator-identifier": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.18.6.tgz", - "integrity": "sha512-MmetCkz9ej86nJQV+sFCxoGGrUbU3q02kgLciwkrt9QqEB7cP39oKEY0PakknEO0Gu20SskMRi+AYZ3b1TpN9g==" - }, - "@babel/highlight": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.18.6.tgz", - "integrity": "sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==", - "requires": { - "@babel/helper-validator-identifier": "^7.18.6", - "chalk": "^2.0.0", - "js-tokens": "^4.0.0" - } - }, - "@babel/parser": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.18.6.tgz", - "integrity": "sha512-uQVSa9jJUe/G/304lXspfWVpKpK4euFLgGiMQFOCpM/bgcAdeoHwi/OQz23O9GK2osz26ZiXRRV9aV+Yl1O8tw==" - }, - "@babel/template": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.18.6.tgz", - "integrity": "sha512-JoDWzPe+wgBsTTgdnIma3iHNFC7YVJoPssVBDjiHfNlyt4YcunDtcDOUmfVDfCK5MfdsaIoX9PkijPhjH3nYUw==", - "requires": { - "@babel/code-frame": "^7.18.6", - "@babel/parser": "^7.18.6", - "@babel/types": "^7.18.6" - } - }, - "@babel/types": { - "version": "7.18.7", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.7.tgz", - "integrity": "sha512-QG3yxTcTIBoAcQmkCs+wAPYZhu7Dk9rXKacINfNbdJDNERTbLQbHGyVG8q/YGMPeCJRIhSY0+fTc5+xuh6WPSQ==", - "requires": { - "@babel/helper-validator-identifier": "^7.18.6", - "to-fast-properties": "^2.0.0" - } - }, - "chalk": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", - "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", - "requires": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" - } - } } }, "@babel/plugin-transform-literals": { @@ -1925,30 +879,6 @@ "@babel/helper-plugin-utils": "^7.18.6", "@babel/helper-validator-identifier": "^7.18.6", "babel-plugin-dynamic-import-node": "^2.3.3" - }, - "dependencies": { - "@babel/helper-hoist-variables": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.18.6.tgz", - "integrity": "sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q==", - "requires": { - "@babel/types": "^7.18.6" - } - }, - "@babel/helper-validator-identifier": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.18.6.tgz", - "integrity": "sha512-MmetCkz9ej86nJQV+sFCxoGGrUbU3q02kgLciwkrt9QqEB7cP39oKEY0PakknEO0Gu20SskMRi+AYZ3b1TpN9g==" - }, - "@babel/types": { - "version": "7.18.7", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.7.tgz", - "integrity": "sha512-QG3yxTcTIBoAcQmkCs+wAPYZhu7Dk9rXKacINfNbdJDNERTbLQbHGyVG8q/YGMPeCJRIhSY0+fTc5+xuh6WPSQ==", - "requires": { - "@babel/helper-validator-identifier": "^7.18.6", - "to-fast-properties": "^2.0.0" - } - } } }, "@babel/plugin-transform-modules-umd": { @@ -2020,22 +950,6 @@ "@babel/helper-plugin-utils": "^7.18.6", "@babel/plugin-syntax-jsx": "^7.18.6", "@babel/types": "^7.18.6" - }, - "dependencies": { - "@babel/helper-validator-identifier": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.18.6.tgz", - "integrity": "sha512-MmetCkz9ej86nJQV+sFCxoGGrUbU3q02kgLciwkrt9QqEB7cP39oKEY0PakknEO0Gu20SskMRi+AYZ3b1TpN9g==" - }, - "@babel/types": { - "version": "7.18.7", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.7.tgz", - "integrity": "sha512-QG3yxTcTIBoAcQmkCs+wAPYZhu7Dk9rXKacINfNbdJDNERTbLQbHGyVG8q/YGMPeCJRIhSY0+fTc5+xuh6WPSQ==", - "requires": { - "@babel/helper-validator-identifier": "^7.18.6", - "to-fast-properties": "^2.0.0" - } - } } }, "@babel/plugin-transform-react-jsx-development": { @@ -2242,20 +1156,6 @@ "semver": "^6.3.0" }, "dependencies": { - "@babel/helper-validator-identifier": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.18.6.tgz", - "integrity": "sha512-MmetCkz9ej86nJQV+sFCxoGGrUbU3q02kgLciwkrt9QqEB7cP39oKEY0PakknEO0Gu20SskMRi+AYZ3b1TpN9g==" - }, - "@babel/types": { - "version": "7.18.7", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.7.tgz", - "integrity": "sha512-QG3yxTcTIBoAcQmkCs+wAPYZhu7Dk9rXKacINfNbdJDNERTbLQbHGyVG8q/YGMPeCJRIhSY0+fTc5+xuh6WPSQ==", - "requires": { - "@babel/helper-validator-identifier": "^7.18.6", - "to-fast-properties": "^2.0.0" - } - }, "semver": { "version": "6.3.0", "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", @@ -2299,9 +1199,9 @@ } }, "@babel/runtime": { - "version": "7.18.3", - "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.18.3.tgz", - "integrity": "sha512-38Y8f7YUhce/K7RMwTp7m0uCumpv9hZkitCbBClqQIow1qSbCvGkcegKOXpEWCQLfWmevgRiWokZ1GkpfhbZug==", + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.18.6.tgz", + "integrity": "sha512-t9wi7/AW6XtKahAe20Yw0/mMljKq0B1r2fPdvaAdV/KPDZewFXdaaa6K7lxmZBZ8FBNpCiAT6iHPmd6QO9bKfQ==", "requires": { "regenerator-runtime": "^0.13.4" } @@ -2316,28 +1216,28 @@ } }, "@babel/template": { - "version": "7.16.7", - "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.16.7.tgz", - "integrity": "sha512-I8j/x8kHUrbYRTUxXrrMbfCa7jxkE7tZre39x3kjr9hvI82cK1FfqLygotcWN5kdPGWcLdWMHpSBavse5tWw3w==", + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.18.6.tgz", + "integrity": "sha512-JoDWzPe+wgBsTTgdnIma3iHNFC7YVJoPssVBDjiHfNlyt4YcunDtcDOUmfVDfCK5MfdsaIoX9PkijPhjH3nYUw==", "requires": { - "@babel/code-frame": "^7.16.7", - "@babel/parser": "^7.16.7", - "@babel/types": "^7.16.7" + "@babel/code-frame": "^7.18.6", + "@babel/parser": "^7.18.6", + "@babel/types": "^7.18.6" } }, "@babel/traverse": { - "version": "7.18.5", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.18.5.tgz", - "integrity": "sha512-aKXj1KT66sBj0vVzk6rEeAO6Z9aiiQ68wfDgge3nHhA/my6xMM/7HGQUNumKZaoa2qUPQ5whJG9aAifsxUKfLA==", - "requires": { - "@babel/code-frame": "^7.16.7", - "@babel/generator": "^7.18.2", - "@babel/helper-environment-visitor": "^7.18.2", - "@babel/helper-function-name": "^7.17.9", - "@babel/helper-hoist-variables": "^7.16.7", - "@babel/helper-split-export-declaration": "^7.16.7", - "@babel/parser": "^7.18.5", - "@babel/types": "^7.18.4", + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.18.6.tgz", + "integrity": "sha512-zS/OKyqmD7lslOtFqbscH6gMLFYOfG1YPqCKfAW5KrTeolKqvB8UelR49Fpr6y93kYkW2Ik00mT1LOGiAGvizw==", + "requires": { + "@babel/code-frame": "^7.18.6", + "@babel/generator": "^7.18.6", + "@babel/helper-environment-visitor": "^7.18.6", + "@babel/helper-function-name": "^7.18.6", + "@babel/helper-hoist-variables": "^7.18.6", + "@babel/helper-split-export-declaration": "^7.18.6", + "@babel/parser": "^7.18.6", + "@babel/types": "^7.18.6", "debug": "^4.1.0", "globals": "^11.1.0" }, @@ -2353,11 +1253,11 @@ } }, "@babel/types": { - "version": "7.18.4", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.4.tgz", - "integrity": "sha512-ThN1mBcMq5pG/Vm2IcBmPPfyPXbd8S02rS+OBIDENdufvqC7Z/jHPCv9IcP01277aKtDI8g/2XysBN4hA8niiw==", + "version": "7.18.7", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.7.tgz", + "integrity": "sha512-QG3yxTcTIBoAcQmkCs+wAPYZhu7Dk9rXKacINfNbdJDNERTbLQbHGyVG8q/YGMPeCJRIhSY0+fTc5+xuh6WPSQ==", "requires": { - "@babel/helper-validator-identifier": "^7.16.7", + "@babel/helper-validator-identifier": "^7.18.6", "to-fast-properties": "^2.0.0" } }, @@ -2402,9 +1302,9 @@ } }, "globals": { - "version": "13.15.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-13.15.0.tgz", - "integrity": "sha512-bpzcOlgDhMG070Av0Vy5Owklpv1I6+j96GhUI7Rh7IzDCKLzboflLrrfqMu8NquDbiR4EOQk7XzJwqVJxicxog==", + "version": "13.16.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.16.0.tgz", + "integrity": "sha512-A1lrQfpNF+McdPOnnFqY3kSN0AFTy485bTi1bkLk4mVPODIUEcSfhHgRqA+QdXPksrSTTztYXx37NFV+GpGk3Q==", "requires": { "type-fest": "^0.20.2" } @@ -2417,13 +1317,13 @@ } }, "@gatsbyjs/parcel-namer-relative-to-cwd": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/@gatsbyjs/parcel-namer-relative-to-cwd/-/parcel-namer-relative-to-cwd-1.2.0.tgz", - "integrity": "sha512-4iIdquFDl+b+U8Ng0dg6dCtxB/cnH27ERrlQQlxfdaWe8e9CLo8aWc6u3UeuHwNJixBFOUbOgEFaA5qCUPwLCQ==", + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/@gatsbyjs/parcel-namer-relative-to-cwd/-/parcel-namer-relative-to-cwd-1.3.0.tgz", + "integrity": "sha512-nd1lQn7ezg51ekqZm8iZjND8akB7bsGkGe7GdIPdTwbhale2dHLqd74qg+bBrEjv5f5aFZhpJeY9XpeU4emWZQ==", "requires": { "@babel/runtime": "^7.18.0", "@parcel/plugin": "2.6.0", - "gatsby-core-utils": "^3.17.0" + "gatsby-core-utils": "^3.18.0" } }, "@gatsbyjs/potrace": { @@ -2498,13 +1398,13 @@ } }, "@graphql-codegen/typescript": { - "version": "2.5.1", - "resolved": "https://registry.npmjs.org/@graphql-codegen/typescript/-/typescript-2.5.1.tgz", - "integrity": "sha512-D/9V2VfVIE4Mu5UiMGQtxyFU5xe1ZkAZi8g/IsqymW8rqlhTwsGhtk4JR55qPfOYxR8G94RJSJpzgNakRneytw==", + "version": "2.6.0", + "resolved": "https://registry.npmjs.org/@graphql-codegen/typescript/-/typescript-2.6.0.tgz", + "integrity": "sha512-f36ilg8J+wui0OhmQglIZ+2z4Ybc08Y7r7BlBDqfJ1F5X0zau0SlC7Hp2iCoCA0ucqZYtiUU/0n+/R8m1cTrQQ==", "requires": { "@graphql-codegen/plugin-helpers": "^2.4.0", "@graphql-codegen/schema-ast": "^2.4.1", - "@graphql-codegen/visitor-plugin-common": "2.9.1", + "@graphql-codegen/visitor-plugin-common": "2.10.0", "auto-bind": "~4.0.0", "tslib": "~2.4.0" }, @@ -2517,13 +1417,13 @@ } }, "@graphql-codegen/typescript-operations": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/@graphql-codegen/typescript-operations/-/typescript-operations-2.4.2.tgz", - "integrity": "sha512-0/Jk+FxJVOdznSJ+G3KKPbMr2gK67yQetUAUS0FzV9FptVDFkklK/BazKqJJE5dNrj9ubuI2BafXPzSTN4M2Ug==", + "version": "2.4.3", + "resolved": "https://registry.npmjs.org/@graphql-codegen/typescript-operations/-/typescript-operations-2.4.3.tgz", + "integrity": "sha512-MW9cU/zCAmfFAObwW23e+GrW3CoV9OX2gVm/V1565WGZXDQPUc5Y5IjdfGfunV4ApkgFDiHpF1Mz/AS55OErgw==", "requires": { "@graphql-codegen/plugin-helpers": "^2.4.0", - "@graphql-codegen/typescript": "^2.5.1", - "@graphql-codegen/visitor-plugin-common": "2.9.1", + "@graphql-codegen/typescript": "^2.6.0", + "@graphql-codegen/visitor-plugin-common": "2.10.0", "auto-bind": "~4.0.0", "tslib": "~2.4.0" }, @@ -2536,9 +1436,9 @@ } }, "@graphql-codegen/visitor-plugin-common": { - "version": "2.9.1", - "resolved": "https://registry.npmjs.org/@graphql-codegen/visitor-plugin-common/-/visitor-plugin-common-2.9.1.tgz", - "integrity": "sha512-j9eGOSGt+sJcwv0ijhZiQ2cF/0ponscekNVoF+vHdOT4RB0qgOQxykPBk6EbKxIHECnkdV8ARdPVTA21A93/QQ==", + "version": "2.10.0", + "resolved": "https://registry.npmjs.org/@graphql-codegen/visitor-plugin-common/-/visitor-plugin-common-2.10.0.tgz", + "integrity": "sha512-nWoxHKUdwOJCWV96Ks1x4EwYCWsZDJXB+2j6EQz5j27DzdxmQInZ86degaDCd3EgbwhMQEMtiZiPGFFDrgBkHA==", "requires": { "@graphql-codegen/plugin-helpers": "^2.4.0", "@graphql-tools/optimize": "^1.0.1", @@ -3384,14 +2284,14 @@ } }, "@jridgewell/resolve-uri": { - "version": "3.0.7", - "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.0.7.tgz", - "integrity": "sha512-8cXDaBBHOr2pQ7j77Y6Vp5VDT2sIqWyWQ56TjEq4ih/a4iST3dItRe8Q9fp0rrIl9DoKhWQtUQz/YpOxLkXbNA==" + "version": "3.0.8", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.0.8.tgz", + "integrity": "sha512-YK5G9LaddzGbcucK4c8h5tWFmMPBvRZ/uyWmN1/SbBdIvqGUdWGkJ5BAaccgs6XbzVLsqbPJrBSFwKv3kT9i7w==" }, "@jridgewell/set-array": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.1.tgz", - "integrity": "sha512-Ct5MqZkLGEXTVmQYbGtx9SVqD2fqwvdubdps5D3djjAkgkKwT918VNOz65pEHFaYTeWcukmJmH5SwsA9Tn2ObQ==" + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz", + "integrity": "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==" }, "@jridgewell/source-map": { "version": "0.3.2", @@ -3415,14 +2315,14 @@ } }, "@jridgewell/sourcemap-codec": { - "version": "1.4.13", - "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.13.tgz", - "integrity": "sha512-GryiOJmNcWbovBxTfZSF71V/mXbgcV3MewDe3kIMCLyIh5e7SKAeUZs+rMnJ8jkMolZ/4/VsdBmMrw3l+VdZ3w==" + "version": "1.4.14", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz", + "integrity": "sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==" }, "@jridgewell/trace-mapping": { - "version": "0.3.13", - "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.13.tgz", - "integrity": "sha512-o1xbKhp9qnIAoHJSWd6KlCZfqslL4valSF81H8ImioOAxluWYWOpWkpyktY2vnt4tbrX9XYaxovq6cgowaJp2w==", + "version": "0.3.14", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.14.tgz", + "integrity": "sha512-bJWEfQ9lPTvm3SneWwRFVLzrh6nhjwqw7TUFFBEMzwvg7t7PCDenf2lDwqo4NQXzdpgBXyFgDWnQA+2vkruksQ==", "requires": { "@jridgewell/resolve-uri": "^3.0.3", "@jridgewell/sourcemap-codec": "^1.4.10" @@ -3797,9 +2697,9 @@ }, "dependencies": { "globals": { - "version": "13.15.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-13.15.0.tgz", - "integrity": "sha512-bpzcOlgDhMG070Av0Vy5Owklpv1I6+j96GhUI7Rh7IzDCKLzboflLrrfqMu8NquDbiR4EOQk7XzJwqVJxicxog==", + "version": "13.16.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.16.0.tgz", + "integrity": "sha512-A1lrQfpNF+McdPOnnFqY3kSN0AFTy485bTi1bkLk4mVPODIUEcSfhHgRqA+QdXPksrSTTztYXx37NFV+GpGk3Q==", "requires": { "type-fest": "^0.20.2" } @@ -3881,9 +2781,9 @@ } }, "@parcel/source-map": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/@parcel/source-map/-/source-map-2.0.5.tgz", - "integrity": "sha512-DRVlCFKLpqBSIbMxUoVlHgfiv12HTW/U7nnhzw52YgzDVXUX9OA41dXS1PU0pJ1si+D1k8msATUC+AoldN43mg==", + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/@parcel/source-map/-/source-map-2.1.0.tgz", + "integrity": "sha512-E7UOEIof2o89LrKk1agSLmwakjigmEdDp1ZaEdsLVEvq63R/bul4Ij5CT+0ZDcijGpl5tnTbQADY9EyYGtjYgQ==", "requires": { "detect-libc": "^1.0.3" } @@ -4167,9 +3067,9 @@ } }, "@types/eslint-scope": { - "version": "3.7.3", - "resolved": "https://registry.npmjs.org/@types/eslint-scope/-/eslint-scope-3.7.3.tgz", - "integrity": "sha512-PB3ldyrcnAicT35TWPs5IcwKD8S333HMaa2VVv4+wdvebJkjWuW/xESoB8IwRcog8HYVYamb1g/R31Qv5Bx03g==", + "version": "3.7.4", + "resolved": "https://registry.npmjs.org/@types/eslint-scope/-/eslint-scope-3.7.4.tgz", + "integrity": "sha512-9K4zoImiZc3HlIp6AVUDE4CWYx22a+lhSZMYNpbjW04+YF0KWj4pJXnEMjdnFTiQibFFmElcsasJXDbdI/EPhA==", "requires": { "@types/eslint": "*", "@types/estree": "*" @@ -4249,9 +3149,9 @@ } }, "@types/node": { - "version": "18.0.0", - "resolved": "https://registry.npmjs.org/@types/node/-/node-18.0.0.tgz", - "integrity": "sha512-cHlGmko4gWLVI27cGJntjs/Sj8th9aYwplmZFwmmgYQQvL5NUsgVJG7OddLvNfLqYS31KFN0s3qlaD9qCaxACA==" + "version": "18.0.1", + "resolved": "https://registry.npmjs.org/@types/node/-/node-18.0.1.tgz", + "integrity": "sha512-CmR8+Tsy95hhwtZBKJBs0/FFq4XX7sDZHlGGf+0q+BRZfMbOTkzkj0AFAuTyXbObDIoanaBBW0+KEW+m3N16Wg==" }, "@types/node-fetch": { "version": "2.6.2", @@ -5007,12 +3907,12 @@ } }, "babel-plugin-remove-graphql-queries": { - "version": "4.17.0", - "resolved": "https://registry.npmjs.org/babel-plugin-remove-graphql-queries/-/babel-plugin-remove-graphql-queries-4.17.0.tgz", - "integrity": "sha512-UovjamHhy5y46WyBO/hfqxrLbMq04o+hlTeqCRzeLol4eWtH+8CufdLAZWYtM1l1BIChwvXCxDY2ugeXlbj7+w==", + "version": "4.18.0", + "resolved": "https://registry.npmjs.org/babel-plugin-remove-graphql-queries/-/babel-plugin-remove-graphql-queries-4.18.0.tgz", + "integrity": "sha512-6oOm/cTZdk+7yPh4R4ISLKNur3rK5w2zAUCXTOGKYcRYbvKCS22ODafQBrNcu/UdfpXwSz3XZOG5ru72Z5usUw==", "requires": { "@babel/runtime": "^7.15.4", - "gatsby-core-utils": "^3.17.0" + "gatsby-core-utils": "^3.18.0" } }, "babel-plugin-syntax-object-rest-spread": { @@ -5074,9 +3974,9 @@ } }, "babel-preset-gatsby": { - "version": "2.17.0", - "resolved": "https://registry.npmjs.org/babel-preset-gatsby/-/babel-preset-gatsby-2.17.0.tgz", - "integrity": "sha512-hLeovvehdKkfFAsfTKCATKQasLyQa49TrJtct5VthERrb2dhkV71NIfmbiEa9Ae5x+qGYhYvufqMROGptewXbQ==", + "version": "2.18.0", + "resolved": "https://registry.npmjs.org/babel-preset-gatsby/-/babel-preset-gatsby-2.18.0.tgz", + "integrity": "sha512-b6BJEl0MlA/nh+IkTJRgvPEgdN09Pu34Szo5dE4QYvQa66++EqfQUK5huqr+FgZJedPPYYbRY2SgKlRXev5QIQ==", "requires": { "@babel/plugin-proposal-class-properties": "^7.14.0", "@babel/plugin-proposal-nullish-coalescing-operator": "^7.14.5", @@ -5091,8 +3991,8 @@ "babel-plugin-dynamic-import-node": "^2.3.3", "babel-plugin-macros": "^3.1.0", "babel-plugin-transform-react-remove-prop-types": "^0.4.24", - "gatsby-core-utils": "^3.17.0", - "gatsby-legacy-polyfills": "^2.17.0" + "gatsby-core-utils": "^3.18.0", + "gatsby-legacy-polyfills": "^2.18.0" } }, "babel-runtime": { @@ -5456,9 +4356,9 @@ } }, "caniuse-lite": { - "version": "1.0.30001359", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001359.tgz", - "integrity": "sha512-Xln/BAsPzEuiVLgJ2/45IaqD9jShtk3Y33anKb4+yLwQzws3+v6odKfpgES/cDEaZMLzSChpIGdbOYtH9MyuHw==" + "version": "1.0.30001363", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001363.tgz", + "integrity": "sha512-HpQhpzTGGPVMnCjIomjt+jvyUu8vNFo3TaDiZ/RcoTrlOq/5+tC8zHdsbgFB6MxmaY+jCpsH09aD80Bb4Ow3Sg==" }, "capital-case": { "version": "1.0.4", @@ -5557,9 +4457,9 @@ "integrity": "sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==" }, "cheerio": { - "version": "1.0.0-rc.11", - "resolved": "https://registry.npmjs.org/cheerio/-/cheerio-1.0.0-rc.11.tgz", - "integrity": "sha512-bQwNaDIBKID5ts/DsdhxrjqFXYfLw4ste+wMKqWA8DyKcS4qwsPP4Bk8ZNaTJjvpiX/qW3BT4sU7d6Bh5i+dag==", + "version": "1.0.0-rc.12", + "resolved": "https://registry.npmjs.org/cheerio/-/cheerio-1.0.0-rc.12.tgz", + "integrity": "sha512-VqR8m68vM46BNnuZ5NtnGBKIE/DfN0cRIzg9n40EIq9NOv90ayxLBXA8fXC5gquFRGJSTRqBq25Jt2ECLR431Q==", "requires": { "cheerio-select": "^2.1.0", "dom-serializer": "^2.0.0", @@ -5567,8 +4467,7 @@ "domutils": "^3.0.1", "htmlparser2": "^8.0.1", "parse5": "^7.0.0", - "parse5-htmlparser2-tree-adapter": "^7.0.0", - "tslib": "^2.4.0" + "parse5-htmlparser2-tree-adapter": "^7.0.0" }, "dependencies": { "dom-serializer": { @@ -5600,9 +4499,9 @@ } }, "entities": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/entities/-/entities-4.3.0.tgz", - "integrity": "sha512-/iP1rZrSEJ0DTlPiX+jbzlA3eVkY/e8L8SozroF395fIqE3TYF/Nz7YOMAawta+vLmyJ/hkGNNPcSbMADCCXbg==" + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/entities/-/entities-4.3.1.tgz", + "integrity": "sha512-o4q/dYJlmyjP2zfnaWDUC6A3BQFmVTX+tZPezK7k0GLSU9QYCauscf5Y+qcEPzKL+EixVouYDgLQK5H9GrLpkg==" }, "htmlparser2": { "version": "8.0.1", @@ -5614,11 +4513,6 @@ "domutils": "^3.0.1", "entities": "^4.3.0" } - }, - "tslib": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz", - "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==" } } }, @@ -5676,9 +4570,9 @@ } }, "entities": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/entities/-/entities-4.3.0.tgz", - "integrity": "sha512-/iP1rZrSEJ0DTlPiX+jbzlA3eVkY/e8L8SozroF395fIqE3TYF/Nz7YOMAawta+vLmyJ/hkGNNPcSbMADCCXbg==" + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/entities/-/entities-4.3.1.tgz", + "integrity": "sha512-o4q/dYJlmyjP2zfnaWDUC6A3BQFmVTX+tZPezK7k0GLSU9QYCauscf5Y+qcEPzKL+EixVouYDgLQK5H9GrLpkg==" } } }, @@ -6149,9 +5043,9 @@ } }, "create-gatsby": { - "version": "2.17.0", - "resolved": "https://registry.npmjs.org/create-gatsby/-/create-gatsby-2.17.0.tgz", - "integrity": "sha512-RrMAHZL7J5Ew/laz83g+UNQ2RnXszGuub3sG7DQkG0tK5mS9TqTW+FIYyzHCLhdJkr81qC/HRDFsJv0fuYISwg==", + "version": "2.18.0", + "resolved": "https://registry.npmjs.org/create-gatsby/-/create-gatsby-2.18.0.tgz", + "integrity": "sha512-74yn3+wlFKwg3DUVdFdBnfqc6gUVpYjqr/1XtQ0Rb57i0ygvER8Xgp4rY5Mm+8rl7JwBma1NONeM20cdMQjT2w==", "requires": { "@babel/runtime": "^7.15.4" } @@ -6718,9 +5612,9 @@ "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==" }, "electron-to-chromium": { - "version": "1.4.172", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.172.tgz", - "integrity": "sha512-yDoFfTJnqBAB6hSiPvzmsBJSrjOXJtHSJoqJdI/zSIh7DYupYnIOHt/bbPw/WE31BJjNTybDdNAs21gCMnTh0Q==" + "version": "1.4.179", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.179.tgz", + "integrity": "sha512-1XeTb/U/8Xgh2YgPOqhakLYsvCcU4U7jUjTMbEnhIJoIWd/Qt3yC8y0cbG+fHzn4zUNF99Ey1xiPf20bwgLO3Q==" }, "emoji-regex": { "version": "8.0.0", @@ -7069,9 +5963,9 @@ } }, "globals": { - "version": "13.15.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-13.15.0.tgz", - "integrity": "sha512-bpzcOlgDhMG070Av0Vy5Owklpv1I6+j96GhUI7Rh7IzDCKLzboflLrrfqMu8NquDbiR4EOQk7XzJwqVJxicxog==", + "version": "13.16.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.16.0.tgz", + "integrity": "sha512-A1lrQfpNF+McdPOnnFqY3kSN0AFTy485bTi1bkLk4mVPODIUEcSfhHgRqA+QdXPksrSTTztYXx37NFV+GpGk3Q==", "requires": { "type-fest": "^0.20.2" } @@ -8086,9 +6980,9 @@ "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==" }, "gatsby": { - "version": "4.17.2", - "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-4.17.2.tgz", - "integrity": "sha512-uMNH/X/Fd0kGjelgAPTukgQhxu/aMhRj5YJ07SM4D2yBuO+c4+y1dZRz5q9EUryCeVSx1cSt0J6JMkfzOXmbyA==", + "version": "4.18.0", + "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-4.18.0.tgz", + "integrity": "sha512-EyiwYUsbSKUKsdjm8nnLw5AGJwOJ9NAWcrFg1V/QU4CUnk/M8EiP0TxiGUmK1/K7g82XGxUjuAPYJKJk85yxHA==", "requires": { "@babel/code-frame": "^7.14.0", "@babel/core": "^7.15.5", @@ -8124,15 +7018,15 @@ "babel-plugin-add-module-exports": "^1.0.4", "babel-plugin-dynamic-import-node": "^2.3.3", "babel-plugin-lodash": "^3.3.4", - "babel-plugin-remove-graphql-queries": "^4.17.0", - "babel-preset-gatsby": "^2.17.0", + "babel-plugin-remove-graphql-queries": "^4.18.0", + "babel-preset-gatsby": "^2.18.0", "better-opn": "^2.1.1", "bluebird": "^3.7.2", "body-parser": "^1.19.0", "browserslist": "^4.17.5", "cache-manager": "^2.11.1", "chalk": "^4.1.2", - "chokidar": "^3.5.2", + "chokidar": "^3.5.3", "common-tags": "^1.8.0", "compression": "^1.7.4", "cookie": "^0.4.1", @@ -8154,7 +7048,7 @@ "eslint-plugin-graphql": "^4.0.0", "eslint-plugin-import": "^2.26.0", "eslint-plugin-jsx-a11y": "^6.5.1", - "eslint-plugin-react": "^7.29.4", + "eslint-plugin-react": "^7.30.0", "eslint-plugin-react-hooks": "^4.5.0", "eslint-webpack-plugin": "^2.6.0", "event-source-polyfill": "1.0.25", @@ -8168,21 +7062,21 @@ "find-cache-dir": "^3.3.2", "fs-exists-cached": "1.0.0", "fs-extra": "^10.1.0", - "gatsby-cli": "^4.17.1", - "gatsby-core-utils": "^3.17.0", - "gatsby-graphiql-explorer": "^2.17.0", - "gatsby-legacy-polyfills": "^2.17.0", - "gatsby-link": "^4.17.0", - "gatsby-page-utils": "^2.17.0", - "gatsby-parcel-config": "0.8.0", - "gatsby-plugin-page-creator": "^4.17.0", - "gatsby-plugin-typescript": "^4.17.0", - "gatsby-plugin-utils": "^3.11.0", - "gatsby-react-router-scroll": "^5.17.0", - "gatsby-script": "^1.2.0", - "gatsby-sharp": "^0.11.0", - "gatsby-telemetry": "^3.17.0", - "gatsby-worker": "^1.17.0", + "gatsby-cli": "^4.18.0", + "gatsby-core-utils": "^3.18.0", + "gatsby-graphiql-explorer": "^2.18.0", + "gatsby-legacy-polyfills": "^2.18.0", + "gatsby-link": "^4.18.0", + "gatsby-page-utils": "^2.18.0", + "gatsby-parcel-config": "0.9.0", + "gatsby-plugin-page-creator": "^4.18.0", + "gatsby-plugin-typescript": "^4.18.0", + "gatsby-plugin-utils": "^3.12.0", + "gatsby-react-router-scroll": "^5.18.0", + "gatsby-script": "^1.3.0", + "gatsby-sharp": "^0.12.0", + "gatsby-telemetry": "^3.18.0", + "gatsby-worker": "^1.18.0", "glob": "^7.2.3", "globby": "^11.1.0", "got": "^11.8.2", @@ -8234,7 +7128,6 @@ "slugify": "^1.6.1", "socket.io": "3.1.2", "socket.io-client": "3.1.3", - "source-map-support": "^0.5.20", "st": "^2.0.0", "stack-trace": "^0.0.10", "string-similarity": "^1.2.2", @@ -8256,9 +7149,9 @@ }, "dependencies": { "gatsby-cli": { - "version": "4.17.1", - "resolved": "https://registry.npmjs.org/gatsby-cli/-/gatsby-cli-4.17.1.tgz", - "integrity": "sha512-yLNRGKo8vyeiqKNTH5MkE0Q3AF6Un1v3MVlXzvoyRNs1DIHwkkZ22jGOB64/KIIR/o2cjRsrKJNCVjGV7qNnzw==", + "version": "4.18.0", + "resolved": "https://registry.npmjs.org/gatsby-cli/-/gatsby-cli-4.18.0.tgz", + "integrity": "sha512-H4V1XvXP3EMwUBDbAlpu3jbjlCetUmHY6VB1YsH2kkIdlMrOgjUgNDFpqjgbk7k7z61du2tCgl1lyW+5he+SnA==", "requires": { "@babel/code-frame": "^7.14.0", "@babel/core": "^7.15.5", @@ -8277,13 +7170,13 @@ "common-tags": "^1.8.2", "configstore": "^5.0.1", "convert-hrtime": "^3.0.0", - "create-gatsby": "^2.17.0", + "create-gatsby": "^2.18.0", "envinfo": "^7.8.1", "execa": "^5.1.1", "fs-exists-cached": "^1.0.0", "fs-extra": "^10.1.0", - "gatsby-core-utils": "^3.17.0", - "gatsby-telemetry": "^3.17.0", + "gatsby-core-utils": "^3.18.0", + "gatsby-telemetry": "^3.18.0", "hosted-git-info": "^3.0.8", "is-valid-path": "^0.1.1", "joi": "^17.4.2", @@ -8309,9 +7202,9 @@ } }, "gatsby-core-utils": { - "version": "3.17.0", - "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.17.0.tgz", - "integrity": "sha512-1e0YaqTAEpSSBkpWkY703lu+Bl76ASXUvUcpnNO3CavCYZsRQxAXtMXIKIEvhm1z6zWJmY9HILo6/DjP+PHeyw==", + "version": "3.18.0", + "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.18.0.tgz", + "integrity": "sha512-mCoNgH4MilosLhEroklgVffwie9lyxgmvNwe/oIyzXr6NcZ2uxSp8G1KrgxdG2srt2hCNlZLlzS25ltLTeHTjA==", "requires": { "@babel/runtime": "^7.15.4", "ci-info": "2.0.0", @@ -8319,7 +7212,7 @@ "fastq": "^1.13.0", "file-type": "^16.5.3", "fs-extra": "^10.1.0", - "got": "^11.8.3", + "got": "^11.8.5", "import-from": "^4.0.0", "lmdb": "2.5.2", "lock": "^1.1.0", @@ -8331,17 +7224,17 @@ } }, "gatsby-graphiql-explorer": { - "version": "2.17.0", - "resolved": "https://registry.npmjs.org/gatsby-graphiql-explorer/-/gatsby-graphiql-explorer-2.17.0.tgz", - "integrity": "sha512-IWAcxMlOofpg8wRzLGjuey3HunWu3bLilKurX8csD0d+YsuiB4aqZc7dWi2Zc15ZHZ5Hh8zMpOv0MVW9qhjnCg==", + "version": "2.18.0", + "resolved": "https://registry.npmjs.org/gatsby-graphiql-explorer/-/gatsby-graphiql-explorer-2.18.0.tgz", + "integrity": "sha512-mmY+kHc+axpDO9lfjbCEf/0oEIHTcZmpe2PtQAzkhnQHyti3xd9IIafq/1W3QKIJo5c7f40+tR3sFTERqaBeIA==", "requires": { "@babel/runtime": "^7.15.4" } }, "gatsby-legacy-polyfills": { - "version": "2.17.0", - "resolved": "https://registry.npmjs.org/gatsby-legacy-polyfills/-/gatsby-legacy-polyfills-2.17.0.tgz", - "integrity": "sha512-tpONSDutxEZY3vOdUaZ1yE9d0QWZ5/p47juvnhTv0qjGkBwow3gfCpgJwDzWyzKl0w0geesZwlLnaCA3WSEv7Q==", + "version": "2.18.0", + "resolved": "https://registry.npmjs.org/gatsby-legacy-polyfills/-/gatsby-legacy-polyfills-2.18.0.tgz", + "integrity": "sha512-wPnsRUnnab10wyt5VPkIhpJC1k8bVrpn0Sfat1L3JskYwkVIEvquqTmHWkpGMB8SLbXQiJEGCs2TcIrx9riL+w==", "requires": { "@babel/runtime": "^7.15.4", "core-js-compat": "3.9.0" @@ -8364,37 +7257,37 @@ } }, "gatsby-link": { - "version": "4.17.0", - "resolved": "https://registry.npmjs.org/gatsby-link/-/gatsby-link-4.17.0.tgz", - "integrity": "sha512-hDh+9OFMHNQ/5YdDdTcpSMB8xAYSP4OMkRuwmgPKH1jtOuov3pzwFAo19RR34CsOqzKd3LSQbCjIovOksjlAeA==", + "version": "4.18.0", + "resolved": "https://registry.npmjs.org/gatsby-link/-/gatsby-link-4.18.0.tgz", + "integrity": "sha512-nE+Z/iE55Id84YqsQOT1bfPJ/AsupY/4s8i6NllQ8no/PRgDGMpkTG6ANqyt2CHs/bywxch2rv8Ho7Gwsuuueg==", "requires": { "@babel/runtime": "^7.15.4", "@types/reach__router": "^1.3.10", - "gatsby-page-utils": "^2.17.0", + "gatsby-page-utils": "^2.18.0", "prop-types": "^15.8.1" } }, "gatsby-page-utils": { - "version": "2.17.0", - "resolved": "https://registry.npmjs.org/gatsby-page-utils/-/gatsby-page-utils-2.17.0.tgz", - "integrity": "sha512-aeDrvYm6uTXayr/Yw0dNQUy+P9a5TshuG9UnRddCB7jQAR1aufjkNu8WH93l151p4jqUoYGemxgZIhrNv1+i/g==", + "version": "2.18.0", + "resolved": "https://registry.npmjs.org/gatsby-page-utils/-/gatsby-page-utils-2.18.0.tgz", + "integrity": "sha512-qTwlqscKxkBlMd+Mn8xj6sh7L0LbfLGYOPCYozJnukXv8d/6Jyk1nfaP6I82hwj/iyhaBQtk7g8g4XyBJJaESw==", "requires": { "@babel/runtime": "^7.15.4", "bluebird": "^3.7.2", - "chokidar": "^3.5.2", + "chokidar": "^3.5.3", "fs-exists-cached": "^1.0.0", - "gatsby-core-utils": "^3.17.0", + "gatsby-core-utils": "^3.18.0", "glob": "^7.2.3", "lodash": "^4.17.21", "micromatch": "^4.0.5" } }, "gatsby-parcel-config": { - "version": "0.8.0", - "resolved": "https://registry.npmjs.org/gatsby-parcel-config/-/gatsby-parcel-config-0.8.0.tgz", - "integrity": "sha512-HzLU8uoJLuakH08T27K8GKx7rcLEVkKVClffAuVKrlcVYhNH+x1LvIwe+uMTIIdfu+YtUpUP1PpTdua6YfrVTQ==", + "version": "0.9.0", + "resolved": "https://registry.npmjs.org/gatsby-parcel-config/-/gatsby-parcel-config-0.9.0.tgz", + "integrity": "sha512-ccGw/L8ylhDgE/4tr52B6tb2jreApOMoYPW75Z8aM2ULRz505fL5mrnkG1fdQDBZSCHx/0j0x2TZyCLrt0Bvlw==", "requires": { - "@gatsbyjs/parcel-namer-relative-to-cwd": "^1.2.0", + "@gatsbyjs/parcel-namer-relative-to-cwd": "1.3.0", "@parcel/bundler-default": "2.6.0", "@parcel/compressor-raw": "2.6.0", "@parcel/namer-default": "2.6.0", @@ -8414,60 +7307,60 @@ } }, "gatsby-plugin-gatsby-cloud": { - "version": "4.17.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-gatsby-cloud/-/gatsby-plugin-gatsby-cloud-4.17.0.tgz", - "integrity": "sha512-xO+CAtba+P6W+L1STv63D17iDYV9IOf1jQyXoDdxYd9CYy8g8VBMwFv1exVw+v9bGsPPRIJhFJM5wihw8W/hdg==", + "version": "4.18.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-gatsby-cloud/-/gatsby-plugin-gatsby-cloud-4.18.0.tgz", + "integrity": "sha512-c+PAabQCfmq0qUkGJ9Cp0vaB2+7mYiic7nj/Tx0cLqkeJJHrV7rqcUX1A2l4VycWRDFWSA5K1nTvb3uSUINB2g==", "requires": { "@babel/runtime": "^7.15.4", "fs-extra": "^10.1.0", - "gatsby-core-utils": "^3.17.0", - "gatsby-telemetry": "^3.17.0", + "gatsby-core-utils": "^3.18.0", + "gatsby-telemetry": "^3.18.0", "kebab-hash": "^0.1.2", "lodash": "^4.17.21", "webpack-assets-manifest": "^5.1.0" } }, "gatsby-plugin-image": { - "version": "2.17.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-image/-/gatsby-plugin-image-2.17.0.tgz", - "integrity": "sha512-YBVYczsxq04oA3+tx80f94FSxtCjFKc9tKj68Zp/NRZGmLL5/0/s++UcMHxzusmC2P/rAKfDlQ6HNOhm5dwFhQ==", + "version": "2.18.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-image/-/gatsby-plugin-image-2.18.0.tgz", + "integrity": "sha512-/WvMDUiZvofmxHzHeEPLNL605FU1AK5pLXKKS8aekRigbNbi+Gip2ZROFPJtj4oxyKDmtD+HaVCNf1q8SdhPEg==", "requires": { "@babel/code-frame": "^7.14.0", "@babel/parser": "^7.15.5", "@babel/runtime": "^7.15.4", "@babel/traverse": "^7.15.4", "babel-jsx-utils": "^1.1.0", - "babel-plugin-remove-graphql-queries": "^4.17.0", + "babel-plugin-remove-graphql-queries": "^4.18.0", "camelcase": "^5.3.1", - "chokidar": "^3.5.2", + "chokidar": "^3.5.3", "common-tags": "^1.8.2", "fs-extra": "^10.1.0", - "gatsby-core-utils": "^3.17.0", - "gatsby-plugin-utils": "^3.11.0", + "gatsby-core-utils": "^3.18.0", + "gatsby-plugin-utils": "^3.12.0", "objectFitPolyfill": "^2.3.5", "prop-types": "^15.8.1" } }, "gatsby-plugin-manifest": { - "version": "4.17.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-manifest/-/gatsby-plugin-manifest-4.17.0.tgz", - "integrity": "sha512-LGxK2tko8DEGLVQEd4FRH3gTDdfSvhOXDuGJxtP5uz382DgVPbfYjU5KO72T6nZ8YJUOyOibCN8o+rw4OzvMzQ==", + "version": "4.18.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-manifest/-/gatsby-plugin-manifest-4.18.0.tgz", + "integrity": "sha512-UqyENX8vwl9toCVnfdhVX/P7NZApG4FvXoDdkxfI53tKoFv93rIisb2IUGQeZZP9jHXprGlnP3y8dgTAmz5Ubw==", "requires": { "@babel/runtime": "^7.15.4", - "gatsby-core-utils": "^3.17.0", - "gatsby-plugin-utils": "^3.11.0", + "gatsby-core-utils": "^3.18.0", + "gatsby-plugin-utils": "^3.12.0", "semver": "^7.3.7", "sharp": "^0.30.3" } }, "gatsby-plugin-offline": { - "version": "5.17.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-offline/-/gatsby-plugin-offline-5.17.0.tgz", - "integrity": "sha512-4sGpLkjOrv/b6E9FI6TqAX92D47PGbgCubqQTTV7c4zcEIjq9MA86VzNRV/sU8Jys+9Az0kBOIA8e7NEckyvXQ==", + "version": "5.18.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-offline/-/gatsby-plugin-offline-5.18.0.tgz", + "integrity": "sha512-PfbAwEwfozkbAxtPVxUwYkvX47IsWpOJUlutn6wl7hj7VLHfegxDg3RZtc0trbDpj39wVtcLDdM8fu4schm3EA==", "requires": { "@babel/runtime": "^7.15.4", "cheerio": "^1.0.0-rc.10", - "gatsby-core-utils": "^3.17.0", + "gatsby-core-utils": "^3.18.0", "glob": "^7.2.3", "idb-keyval": "^3.2.0", "lodash": "^4.17.21", @@ -8475,35 +7368,35 @@ } }, "gatsby-plugin-page-creator": { - "version": "4.17.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-page-creator/-/gatsby-plugin-page-creator-4.17.0.tgz", - "integrity": "sha512-Nv1lryCAfo5cWqkVnnqiMC6bmXXXOhdl2efLZKK88QwqT4tZO51gGrgsZGL4mtXtUUSkJXGE8pmjelUOcR+23g==", + "version": "4.18.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-page-creator/-/gatsby-plugin-page-creator-4.18.0.tgz", + "integrity": "sha512-6bY4vJndDw0nBcOuQdX41Wvbctw0y9+a7IavCFJKFeNs+Zo0XH2FX0IAww0slDnSJU6AukJ9qfjHqKJkADAZpQ==", "requires": { "@babel/runtime": "^7.15.4", "@babel/traverse": "^7.15.4", "@sindresorhus/slugify": "^1.1.2", - "chokidar": "^3.5.2", + "chokidar": "^3.5.3", "fs-exists-cached": "^1.0.0", - "gatsby-core-utils": "^3.17.0", - "gatsby-page-utils": "^2.17.0", - "gatsby-plugin-utils": "^3.11.0", - "gatsby-telemetry": "^3.17.0", + "gatsby-core-utils": "^3.18.0", + "gatsby-page-utils": "^2.18.0", + "gatsby-plugin-utils": "^3.12.0", + "gatsby-telemetry": "^3.18.0", "globby": "^11.1.0", "lodash": "^4.17.21" } }, "gatsby-plugin-react-helmet": { - "version": "5.17.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-react-helmet/-/gatsby-plugin-react-helmet-5.17.0.tgz", - "integrity": "sha512-Lp52GFGNQO0Rt0VfYbFMFBw67XNaIITvwhBMqzxnIw/OCnnyjhylfYMpmyDQKT5S/yaWEF3MsvPmE2YCbXbSww==", + "version": "5.18.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-react-helmet/-/gatsby-plugin-react-helmet-5.18.0.tgz", + "integrity": "sha512-H55KLoKZ/LeWWILYmkbt+L1c6E2ViurN16GyGOOzIg2LGjd7OXu9zy9H9lMKrkNpn/HUXhyUilYHqVeo5fve1A==", "requires": { "@babel/runtime": "^7.15.4" } }, "gatsby-plugin-sharp": { - "version": "4.17.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-sharp/-/gatsby-plugin-sharp-4.17.0.tgz", - "integrity": "sha512-+wP4hskMBSNgPYqBX2uqoqb5JUtMMvaZTzYNkZmnKkg85rHeDpUy+eMoCqrhh8wpW/NgcbQ9o6uK43jj2qv0xQ==", + "version": "4.18.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-sharp/-/gatsby-plugin-sharp-4.18.0.tgz", + "integrity": "sha512-ExGzy8xAwc5+4nDHgGe1k8Id/HZpETPSizLNeJ5We3T4hjshdfgvnuRiAZf2VIY60+VPuVCezYNn4n7gPTShRw==", "requires": { "@babel/runtime": "^7.15.4", "@gatsbyjs/potrace": "^2.2.0", @@ -8512,10 +7405,10 @@ "debug": "^4.3.4", "filenamify": "^4.3.0", "fs-extra": "^10.1.0", - "gatsby-core-utils": "^3.17.0", - "gatsby-plugin-utils": "^3.11.0", - "gatsby-telemetry": "^3.17.0", - "got": "^11.8.3", + "gatsby-core-utils": "^3.18.0", + "gatsby-plugin-utils": "^3.12.0", + "gatsby-telemetry": "^3.18.0", + "got": "^11.8.5", "lodash": "^4.17.21", "mini-svg-data-uri": "^1.4.4", "probe-image-size": "^7.2.3", @@ -8644,9 +7537,9 @@ } }, "gatsby-plugin-typescript": { - "version": "4.17.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-typescript/-/gatsby-plugin-typescript-4.17.0.tgz", - "integrity": "sha512-aSO/h4z+jdWBZtEnH17NoZaFchO8LkEcIdNX2saYIjJfa2tMbOR+wnOuQJVAdj61n8ntc1pQkNJxiEK31IaZjw==", + "version": "4.18.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-typescript/-/gatsby-plugin-typescript-4.18.0.tgz", + "integrity": "sha512-SuNBrp57SnovOyhCz0zPkz7begV4UR2XdXUrFsh4N0jWOI5yFNVgENpKlbI/O7JnvgyV5KC/pkobNh3we+0mcQ==", "requires": { "@babel/core": "^7.15.5", "@babel/plugin-proposal-nullish-coalescing-operator": "^7.14.5", @@ -8654,19 +7547,19 @@ "@babel/plugin-proposal-optional-chaining": "^7.14.5", "@babel/preset-typescript": "^7.15.0", "@babel/runtime": "^7.15.4", - "babel-plugin-remove-graphql-queries": "^4.17.0" + "babel-plugin-remove-graphql-queries": "^4.18.0" } }, "gatsby-plugin-utils": { - "version": "3.11.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-utils/-/gatsby-plugin-utils-3.11.0.tgz", - "integrity": "sha512-v2D6O2aME9p7tqlGykq5mgtj7Jqp/CWatgo0zJ7bFWSYPPUpQ7jRVAph1PIgFTAV/CaUrrvt9sxdRaZrglJyug==", + "version": "3.12.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-utils/-/gatsby-plugin-utils-3.12.0.tgz", + "integrity": "sha512-vdz3qwaCOkvgzAxMkZlgpmpWf555jISwek5lyWYhGyJJvXYV8KQ2cZ4CoOfFKAYVeZVSucrHcdWyY3fLLpQvAA==", "requires": { "@babel/runtime": "^7.15.4", "@gatsbyjs/potrace": "^2.2.0", "fs-extra": "^10.1.0", - "gatsby-core-utils": "^3.17.0", - "gatsby-sharp": "^0.11.0", + "gatsby-core-utils": "^3.18.0", + "gatsby-sharp": "^0.12.0", "graphql-compose": "^9.0.7", "import-from": "^4.0.0", "joi": "^17.4.2", @@ -8683,38 +7576,38 @@ } }, "gatsby-react-router-scroll": { - "version": "5.17.0", - "resolved": "https://registry.npmjs.org/gatsby-react-router-scroll/-/gatsby-react-router-scroll-5.17.0.tgz", - "integrity": "sha512-RwFeZlKL0T8dxpEdlmuQAH+h4ugrQQpl4U2m0Wdo/F9/8/VEiAeX64oa2r2BqiiTf4MzAIIT+5/ONt83FcmZWg==", + "version": "5.18.0", + "resolved": "https://registry.npmjs.org/gatsby-react-router-scroll/-/gatsby-react-router-scroll-5.18.0.tgz", + "integrity": "sha512-/A1k468s6g713c8me5DuGiia8rPWLuwjITQ/pKqgJwioJVB6MnD/iBCbHUTzLHlNwZypAVdGHCN8fCIcPcMb6Q==", "requires": { "@babel/runtime": "^7.15.4", "prop-types": "^15.8.1" } }, "gatsby-script": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/gatsby-script/-/gatsby-script-1.2.0.tgz", - "integrity": "sha512-Fkf6yJxwuQCS6xdFxF0gpiCUiS3PYnRv5I2mCAJV0Cu7k4PYgVpQJt79bcDHvnx755VpXOmZIfMXegACg1XS0w==" + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/gatsby-script/-/gatsby-script-1.3.0.tgz", + "integrity": "sha512-eCz6mcMFpB7kvpmyM7AtMTxNxzdrzPgt8GiuDKWFOlDgk1il6PUjO99QsL/cCeokmaiH/6egVnm9b33/x+sy9A==" }, "gatsby-sharp": { - "version": "0.11.0", - "resolved": "https://registry.npmjs.org/gatsby-sharp/-/gatsby-sharp-0.11.0.tgz", - "integrity": "sha512-RIbU8qi/Qs7G/KJiY0zyGS9Yic5n4RpDUf/1W3gvRl78Uo3LSuIeGEpaai6mYEnreuGb5fQIcqdkYs/UV3e8WA==", + "version": "0.12.0", + "resolved": "https://registry.npmjs.org/gatsby-sharp/-/gatsby-sharp-0.12.0.tgz", + "integrity": "sha512-dZa/AgxmPzD0vvROEZSuT3IdzAFTxnq1FfLTf9n3mywonvsKYc84zj6nf8TEzBrVrBFAaLvZek4NpVAKWGr4/w==", "requires": { "@types/sharp": "^0.30.0", "sharp": "^0.30.3" } }, "gatsby-source-filesystem": { - "version": "4.17.0", - "resolved": "https://registry.npmjs.org/gatsby-source-filesystem/-/gatsby-source-filesystem-4.17.0.tgz", - "integrity": "sha512-1UErm5fcAqHOB3439V2BmSB5Kz+yDN15qj5J503/f6nL44kPPhJKSjjR64A5iz2y/3nCSTyZfmSs44jw9I1hhg==", + "version": "4.18.0", + "resolved": "https://registry.npmjs.org/gatsby-source-filesystem/-/gatsby-source-filesystem-4.18.0.tgz", + "integrity": "sha512-45ivbP9Ho6ioCqAJKdz5ejXlKCZ+8UCzQEC8cQbJI+k5CiJMdA09X65GVITUEob0bFRCcv5RQu4fOodrznaIwg==", "requires": { "@babel/runtime": "^7.15.4", - "chokidar": "^3.5.2", + "chokidar": "^3.5.3", "file-type": "^16.5.3", "fs-extra": "^10.1.0", - "gatsby-core-utils": "^3.17.0", + "gatsby-core-utils": "^3.18.0", "got": "^9.6.0", "md5-file": "^5.0.0", "mime": "^2.5.2", @@ -8844,19 +7737,19 @@ } }, "gatsby-telemetry": { - "version": "3.17.0", - "resolved": "https://registry.npmjs.org/gatsby-telemetry/-/gatsby-telemetry-3.17.0.tgz", - "integrity": "sha512-1N4uKj2Yj7AykLmwjsdOmNirf3UmP8CBXjj/LmWf5cLDVbdPqkirAlyD6uTeEliG5UFHPTlBsRi26v558mFYJQ==", + "version": "3.18.0", + "resolved": "https://registry.npmjs.org/gatsby-telemetry/-/gatsby-telemetry-3.18.0.tgz", + "integrity": "sha512-i1JvNqGOyLDPGEn1QN29YGpe2ripg2LZBAOhXmk6lAhRL5fTVo6WkEA2yW7XESnXIOJBFymgVbUlLjXoqeZ5Xg==", "requires": { "@babel/code-frame": "^7.14.0", "@babel/runtime": "^7.15.4", - "@turist/fetch": "^7.1.7", + "@turist/fetch": "^7.2.0", "@turist/time": "^0.0.2", "async-retry-ng": "^2.0.1", "boxen": "^4.2.0", "configstore": "^5.0.1", "fs-extra": "^10.1.0", - "gatsby-core-utils": "^3.17.0", + "gatsby-core-utils": "^3.18.0", "git-up": "^4.0.5", "is-docker": "^2.2.1", "lodash": "^4.17.21", @@ -8929,25 +7822,25 @@ } }, "gatsby-transformer-sharp": { - "version": "4.17.0", - "resolved": "https://registry.npmjs.org/gatsby-transformer-sharp/-/gatsby-transformer-sharp-4.17.0.tgz", - "integrity": "sha512-yaBzgqpjMqpy1ZuJ4CRbYh8rdiyvuSlMS0aMRiGlcjgUmKuT5qGJsQWsuhihbKWqn8OPhNzrAsnWvWnOVjAeCg==", + "version": "4.18.0", + "resolved": "https://registry.npmjs.org/gatsby-transformer-sharp/-/gatsby-transformer-sharp-4.18.0.tgz", + "integrity": "sha512-uOsP5U10pWPdhpKHkPyKWoxCFEGdnreqmSrWrKUsHa0oViCfudbDrM+xWla+QQ0MhHHkqOUjdcfZRG3SwUlPcg==", "requires": { "@babel/runtime": "^7.15.4", "@gatsbyjs/potrace": "^2.2.0", "bluebird": "^3.7.2", "common-tags": "^1.8.2", "fs-extra": "^10.1.0", - "gatsby-plugin-utils": "^3.11.0", + "gatsby-plugin-utils": "^3.12.0", "probe-image-size": "^7.2.3", "semver": "^7.3.7", "sharp": "^0.30.3" } }, "gatsby-worker": { - "version": "1.17.0", - "resolved": "https://registry.npmjs.org/gatsby-worker/-/gatsby-worker-1.17.0.tgz", - "integrity": "sha512-hA7awNHmcNWp3TgQkjF0Z3I9YGWpdsf8jUdJOlAjI+aBxQ2vdHTVNwbMdXwtlf9umQRwORnmEzADmQdm0Cx5AA==", + "version": "1.18.0", + "resolved": "https://registry.npmjs.org/gatsby-worker/-/gatsby-worker-1.18.0.tgz", + "integrity": "sha512-gNzqDrYFMXlfXCzdClORyDQWQZKTOF6nRUrhZT8PUxzQViO+DvnEKE3EAQvZizYKW1Hgw7cbiTtLG3qshkNepw==", "requires": { "@babel/core": "^7.15.5", "@babel/runtime": "^7.15.4" @@ -9858,11 +8751,11 @@ } }, "is-ssh": { - "version": "1.3.3", - "resolved": "https://registry.npmjs.org/is-ssh/-/is-ssh-1.3.3.tgz", - "integrity": "sha512-NKzJmQzJfEEma3w5cJNcUMxoXfDjz0Zj0eyCalHn2E6VOwlzjZo0yuO2fcBSf8zhFuVCL/82/r5gRcoi6aEPVQ==", + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/is-ssh/-/is-ssh-1.4.0.tgz", + "integrity": "sha512-x7+VxdxOdlV3CYpjvRLBv5Lo9OJerlYanjwFrPR9fuGPjCiNiCzFgAWpiLAohSbsnH4ZAys3SBh+hq5rJosxUQ==", "requires": { - "protocols": "^1.1.0" + "protocols": "^2.0.1" } }, "is-stream": { @@ -10104,9 +8997,9 @@ } }, "keyv": { - "version": "4.3.1", - "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.3.1.tgz", - "integrity": "sha512-nwP7AQOxFzELXsNq3zCx/oh81zu4DHWwCE6W9RaeHb7OHO0JpmKS8n801ovVQC7PTsZDWtPA5j1QY+/WWtARYg==", + "version": "4.3.2", + "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.3.2.tgz", + "integrity": "sha512-kn8WmodVBe12lmHpA6W8OY7SNh6wVR+Z+wZESF4iF5FCazaVXGWOtnbnvX0tMQ1bO+/TmOD9LziuYMvrIIs0xw==", "requires": { "compress-brotli": "^1.3.8", "json-buffer": "3.0.1" @@ -10128,9 +9021,9 @@ "integrity": "sha512-pJiBpiXMbt7dkzXe8Ghj/u4FfXOOa98fPW+bihOJ4SjnoijweJrNThJfd3ifXpXhREjpoF2mZVH1GfS9LV3kHQ==" }, "language-subtag-registry": { - "version": "0.3.21", - "resolved": "https://registry.npmjs.org/language-subtag-registry/-/language-subtag-registry-0.3.21.tgz", - "integrity": "sha512-L0IqwlIXjilBVVYKFT37X9Ih11Um5NEl9cbJIuU/SwP/zEEAbBPOnEeeuxVMf45ydWQRDQN3Nqc96OgbH1K+Pg==" + "version": "0.3.22", + "resolved": "https://registry.npmjs.org/language-subtag-registry/-/language-subtag-registry-0.3.22.tgz", + "integrity": "sha512-tN0MCzyWnoz/4nHS6uxdlFWoUZT7ABptwKPQ52Ea7URk6vll88bWBVhodtnlfEuCcKWNGoc+uGbw1cwa9IKh/w==" }, "language-tags": { "version": "1.0.5", @@ -10832,9 +9725,9 @@ } }, "node-gyp-build": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/node-gyp-build/-/node-gyp-build-4.4.0.tgz", - "integrity": "sha512-amJnQCcgtRVw9SvoebO3BKGESClrfXGCUTX9hSn1OuGQTQBOZmVd0Z0OlecpuRksKvbsUqALE8jls/ErClAPuQ==" + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/node-gyp-build/-/node-gyp-build-4.5.0.tgz", + "integrity": "sha512-2iGbaQBV+ITgCz76ZEjmhUKAKVf7xfY1sRl4UiKQspfZMH2h06SyhNsnSVy50cwkFQDGLyif6m/6uFXHkOZ6rg==" }, "node-gyp-build-optional-packages": { "version": "4.3.5", @@ -11063,9 +9956,9 @@ } }, "ordered-binary": { - "version": "1.2.5", - "resolved": "https://registry.npmjs.org/ordered-binary/-/ordered-binary-1.2.5.tgz", - "integrity": "sha512-djRmZoEpOGvIRW7ufsCDHtvcUa18UC9TxnPbHhSVFZHsoyg0dtut1bWtBZ/fmxdPN62oWXrV6adM7NoWU+CneA==" + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/ordered-binary/-/ordered-binary-1.3.0.tgz", + "integrity": "sha512-knIeYepTI6BDAzGxqFEDGtI/iGqs57H32CInAIxEvAHG46vk1Di0CEpyc1A7iY39B1mfik3g3KLYwOTNnnMHLA==" }, "os-tmpdir": { "version": "1.0.2", @@ -11319,17 +10212,31 @@ "protocols": "^1.4.0", "qs": "^6.9.4", "query-string": "^6.13.8" + }, + "dependencies": { + "protocols": { + "version": "1.4.8", + "resolved": "https://registry.npmjs.org/protocols/-/protocols-1.4.8.tgz", + "integrity": "sha512-IgjKyaUSjsROSO8/D49Ab7hP8mJgTYcqApOqdPhLoPxAplXmkp+zRvsrSQjFn5by0rhm4VH0GAUELIPpx7B1yg==" + } } }, "parse-url": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/parse-url/-/parse-url-6.0.0.tgz", - "integrity": "sha512-cYyojeX7yIIwuJzledIHeLUBVJ6COVLeT4eF+2P6aKVzwvgKQPndCBv3+yQ7pcWjqToYwaligxzSYNNmGoMAvw==", + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/parse-url/-/parse-url-6.0.2.tgz", + "integrity": "sha512-uCSjOvD3T+6B/sPWhR+QowAZcU/o4bjPrVBQBGFxcDF6J6FraCGIaDBsdoQawiaaAVdHvtqBe3w3vKlfBKySOQ==", "requires": { "is-ssh": "^1.3.0", "normalize-url": "^6.1.0", - "parse-path": "^4.0.0", + "parse-path": "^4.0.4", "protocols": "^1.4.0" + }, + "dependencies": { + "protocols": { + "version": "1.4.8", + "resolved": "https://registry.npmjs.org/protocols/-/protocols-1.4.8.tgz", + "integrity": "sha512-IgjKyaUSjsROSO8/D49Ab7hP8mJgTYcqApOqdPhLoPxAplXmkp+zRvsrSQjFn5by0rhm4VH0GAUELIPpx7B1yg==" + } } }, "parse5": { @@ -11341,9 +10248,9 @@ }, "dependencies": { "entities": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/entities/-/entities-4.3.0.tgz", - "integrity": "sha512-/iP1rZrSEJ0DTlPiX+jbzlA3eVkY/e8L8SozroF395fIqE3TYF/Nz7YOMAawta+vLmyJ/hkGNNPcSbMADCCXbg==" + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/entities/-/entities-4.3.1.tgz", + "integrity": "sha512-o4q/dYJlmyjP2zfnaWDUC6A3BQFmVTX+tZPezK7k0GLSU9QYCauscf5Y+qcEPzKL+EixVouYDgLQK5H9GrLpkg==" } } }, @@ -11950,9 +10857,9 @@ } }, "protocols": { - "version": "1.4.8", - "resolved": "https://registry.npmjs.org/protocols/-/protocols-1.4.8.tgz", - "integrity": "sha512-IgjKyaUSjsROSO8/D49Ab7hP8mJgTYcqApOqdPhLoPxAplXmkp+zRvsrSQjFn5by0rhm4VH0GAUELIPpx7B1yg==" + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/protocols/-/protocols-2.0.1.tgz", + "integrity": "sha512-/XJ368cyBJ7fzLMwLKv1e4vLxOju2MNAIokcr7meSaNcVbWz/CPcW22cP04mwxOErdA5mwjA8Q6w/cdAQxVn7Q==" }, "proxy-addr": { "version": "2.0.7", @@ -12778,14 +11685,14 @@ "integrity": "sha512-LUMFi+RppPlrHzbqmFnINTrazo0lPNwhcgzuAXVVcfy/mqPDrQmHAyz5bvV0gDAuRFrk804V0HpQ6u9sZ0tBeg==" }, "sharp": { - "version": "0.30.6", - "resolved": "https://registry.npmjs.org/sharp/-/sharp-0.30.6.tgz", - "integrity": "sha512-lSdVxFxcndzcXggDrak6ozdGJgmIgES9YVZWtAFrwi+a/H5vModaf51TghBtMPw+71sLxUsTy2j+aB7qLIODQg==", + "version": "0.30.7", + "resolved": "https://registry.npmjs.org/sharp/-/sharp-0.30.7.tgz", + "integrity": "sha512-G+MY2YW33jgflKPTXXptVO28HvNOo9G3j0MybYAHeEmby+QuD2U98dT6ueht9cv/XDqZspSpIhoSW+BAKJ7Hig==", "requires": { "color": "^4.2.3", "detect-libc": "^2.0.1", "node-addon-api": "^5.0.0", - "prebuild-install": "^7.1.0", + "prebuild-install": "^7.1.1", "semver": "^7.3.7", "simple-get": "^4.0.1", "tar-fs": "^2.1.1", diff --git a/starters/default/package.json b/starters/default/package.json index 2ce745a9bfbee..50185ed38e0df 100644 --- a/starters/default/package.json +++ b/starters/default/package.json @@ -5,15 +5,15 @@ "version": "0.1.0", "author": "Kyle Mathews ", "dependencies": { - "gatsby": "^4.17.2", - "gatsby-plugin-gatsby-cloud": "^4.17.0", - "gatsby-plugin-image": "^2.17.0", - "gatsby-plugin-manifest": "^4.17.0", - "gatsby-plugin-offline": "^5.17.0", - "gatsby-plugin-react-helmet": "^5.17.0", - "gatsby-plugin-sharp": "^4.17.0", - "gatsby-source-filesystem": "^4.17.0", - "gatsby-transformer-sharp": "^4.17.0", + "gatsby": "^4.18.0", + "gatsby-plugin-gatsby-cloud": "^4.18.0", + "gatsby-plugin-image": "^2.18.0", + "gatsby-plugin-manifest": "^4.18.0", + "gatsby-plugin-offline": "^5.18.0", + "gatsby-plugin-react-helmet": "^5.18.0", + "gatsby-plugin-sharp": "^4.18.0", + "gatsby-source-filesystem": "^4.18.0", + "gatsby-transformer-sharp": "^4.18.0", "prop-types": "^15.8.1", "react": "^18.1.0", "react-dom": "^18.1.0", diff --git a/starters/gatsby-starter-blog-theme-core/package-lock.json b/starters/gatsby-starter-blog-theme-core/package-lock.json index 59917b96fc247..eab94899874f5 100644 --- a/starters/gatsby-starter-blog-theme-core/package-lock.json +++ b/starters/gatsby-starter-blog-theme-core/package-lock.json @@ -1525,9 +1525,9 @@ } }, "globals": { - "version": "13.15.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-13.15.0.tgz", - "integrity": "sha512-bpzcOlgDhMG070Av0Vy5Owklpv1I6+j96GhUI7Rh7IzDCKLzboflLrrfqMu8NquDbiR4EOQk7XzJwqVJxicxog==", + "version": "13.16.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.16.0.tgz", + "integrity": "sha512-A1lrQfpNF+McdPOnnFqY3kSN0AFTy485bTi1bkLk4mVPODIUEcSfhHgRqA+QdXPksrSTTztYXx37NFV+GpGk3Q==", "requires": { "type-fest": "^0.20.2" } @@ -1545,19 +1545,19 @@ } }, "@gatsbyjs/parcel-namer-relative-to-cwd": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/@gatsbyjs/parcel-namer-relative-to-cwd/-/parcel-namer-relative-to-cwd-1.2.0.tgz", - "integrity": "sha512-4iIdquFDl+b+U8Ng0dg6dCtxB/cnH27ERrlQQlxfdaWe8e9CLo8aWc6u3UeuHwNJixBFOUbOgEFaA5qCUPwLCQ==", + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/@gatsbyjs/parcel-namer-relative-to-cwd/-/parcel-namer-relative-to-cwd-1.3.0.tgz", + "integrity": "sha512-nd1lQn7ezg51ekqZm8iZjND8akB7bsGkGe7GdIPdTwbhale2dHLqd74qg+bBrEjv5f5aFZhpJeY9XpeU4emWZQ==", "requires": { "@babel/runtime": "^7.18.0", "@parcel/plugin": "2.6.0", - "gatsby-core-utils": "^3.17.0" + "gatsby-core-utils": "^3.18.0" }, "dependencies": { "gatsby-core-utils": { - "version": "3.17.0", - "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.17.0.tgz", - "integrity": "sha512-1e0YaqTAEpSSBkpWkY703lu+Bl76ASXUvUcpnNO3CavCYZsRQxAXtMXIKIEvhm1z6zWJmY9HILo6/DjP+PHeyw==", + "version": "3.18.0", + "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.18.0.tgz", + "integrity": "sha512-mCoNgH4MilosLhEroklgVffwie9lyxgmvNwe/oIyzXr6NcZ2uxSp8G1KrgxdG2srt2hCNlZLlzS25ltLTeHTjA==", "requires": { "@babel/runtime": "^7.15.4", "ci-info": "2.0.0", @@ -1565,7 +1565,7 @@ "fastq": "^1.13.0", "file-type": "^16.5.3", "fs-extra": "^10.1.0", - "got": "^11.8.3", + "got": "^11.8.5", "import-from": "^4.0.0", "lmdb": "2.5.2", "lock": "^1.1.0", @@ -1576,6 +1576,24 @@ "xdg-basedir": "^4.0.0" } }, + "got": { + "version": "11.8.5", + "resolved": "https://registry.npmjs.org/got/-/got-11.8.5.tgz", + "integrity": "sha512-o0Je4NvQObAuZPHLFoRSkdG2lTgtcynqymzg2Vupdx6PorhaT5MCbIyXG6d4D94kk8ZG57QeosgdiqfJWhEhlQ==", + "requires": { + "@sindresorhus/is": "^4.0.0", + "@szmarczak/http-timer": "^4.0.5", + "@types/cacheable-request": "^6.0.1", + "@types/responselike": "^1.0.0", + "cacheable-lookup": "^5.0.3", + "cacheable-request": "^7.0.2", + "decompress-response": "^6.0.0", + "http2-wrapper": "^1.0.0-beta.5.2", + "lowercase-keys": "^2.0.0", + "p-cancelable": "^2.0.0", + "responselike": "^2.0.0" + } + }, "lmdb": { "version": "2.5.2", "resolved": "https://registry.npmjs.org/lmdb/-/lmdb-2.5.2.tgz", @@ -2023,13 +2041,13 @@ } }, "@graphql-codegen/typescript": { - "version": "2.5.1", - "resolved": "https://registry.npmjs.org/@graphql-codegen/typescript/-/typescript-2.5.1.tgz", - "integrity": "sha512-D/9V2VfVIE4Mu5UiMGQtxyFU5xe1ZkAZi8g/IsqymW8rqlhTwsGhtk4JR55qPfOYxR8G94RJSJpzgNakRneytw==", + "version": "2.6.0", + "resolved": "https://registry.npmjs.org/@graphql-codegen/typescript/-/typescript-2.6.0.tgz", + "integrity": "sha512-f36ilg8J+wui0OhmQglIZ+2z4Ybc08Y7r7BlBDqfJ1F5X0zau0SlC7Hp2iCoCA0ucqZYtiUU/0n+/R8m1cTrQQ==", "requires": { "@graphql-codegen/plugin-helpers": "^2.4.0", "@graphql-codegen/schema-ast": "^2.4.1", - "@graphql-codegen/visitor-plugin-common": "2.9.1", + "@graphql-codegen/visitor-plugin-common": "2.10.0", "auto-bind": "~4.0.0", "tslib": "~2.4.0" }, @@ -2042,13 +2060,13 @@ } }, "@graphql-codegen/typescript-operations": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/@graphql-codegen/typescript-operations/-/typescript-operations-2.4.2.tgz", - "integrity": "sha512-0/Jk+FxJVOdznSJ+G3KKPbMr2gK67yQetUAUS0FzV9FptVDFkklK/BazKqJJE5dNrj9ubuI2BafXPzSTN4M2Ug==", + "version": "2.4.3", + "resolved": "https://registry.npmjs.org/@graphql-codegen/typescript-operations/-/typescript-operations-2.4.3.tgz", + "integrity": "sha512-MW9cU/zCAmfFAObwW23e+GrW3CoV9OX2gVm/V1565WGZXDQPUc5Y5IjdfGfunV4ApkgFDiHpF1Mz/AS55OErgw==", "requires": { "@graphql-codegen/plugin-helpers": "^2.4.0", - "@graphql-codegen/typescript": "^2.5.1", - "@graphql-codegen/visitor-plugin-common": "2.9.1", + "@graphql-codegen/typescript": "^2.6.0", + "@graphql-codegen/visitor-plugin-common": "2.10.0", "auto-bind": "~4.0.0", "tslib": "~2.4.0" }, @@ -2061,9 +2079,9 @@ } }, "@graphql-codegen/visitor-plugin-common": { - "version": "2.9.1", - "resolved": "https://registry.npmjs.org/@graphql-codegen/visitor-plugin-common/-/visitor-plugin-common-2.9.1.tgz", - "integrity": "sha512-j9eGOSGt+sJcwv0ijhZiQ2cF/0ponscekNVoF+vHdOT4RB0qgOQxykPBk6EbKxIHECnkdV8ARdPVTA21A93/QQ==", + "version": "2.10.0", + "resolved": "https://registry.npmjs.org/@graphql-codegen/visitor-plugin-common/-/visitor-plugin-common-2.10.0.tgz", + "integrity": "sha512-nWoxHKUdwOJCWV96Ks1x4EwYCWsZDJXB+2j6EQz5j27DzdxmQInZ86degaDCd3EgbwhMQEMtiZiPGFFDrgBkHA==", "requires": { "@graphql-codegen/plugin-helpers": "^2.4.0", "@graphql-tools/optimize": "^1.0.1", @@ -3403,9 +3421,9 @@ }, "dependencies": { "globals": { - "version": "13.15.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-13.15.0.tgz", - "integrity": "sha512-bpzcOlgDhMG070Av0Vy5Owklpv1I6+j96GhUI7Rh7IzDCKLzboflLrrfqMu8NquDbiR4EOQk7XzJwqVJxicxog==", + "version": "13.16.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.16.0.tgz", + "integrity": "sha512-A1lrQfpNF+McdPOnnFqY3kSN0AFTy485bTi1bkLk4mVPODIUEcSfhHgRqA+QdXPksrSTTztYXx37NFV+GpGk3Q==", "requires": { "type-fest": "^0.20.2" } @@ -3492,9 +3510,9 @@ } }, "@parcel/source-map": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/@parcel/source-map/-/source-map-2.0.5.tgz", - "integrity": "sha512-DRVlCFKLpqBSIbMxUoVlHgfiv12HTW/U7nnhzw52YgzDVXUX9OA41dXS1PU0pJ1si+D1k8msATUC+AoldN43mg==", + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/@parcel/source-map/-/source-map-2.1.0.tgz", + "integrity": "sha512-E7UOEIof2o89LrKk1agSLmwakjigmEdDp1ZaEdsLVEvq63R/bul4Ij5CT+0ZDcijGpl5tnTbQADY9EyYGtjYgQ==", "requires": { "detect-libc": "^1.0.3" } @@ -3778,9 +3796,9 @@ } }, "@types/eslint-scope": { - "version": "3.7.3", - "resolved": "https://registry.npmjs.org/@types/eslint-scope/-/eslint-scope-3.7.3.tgz", - "integrity": "sha512-PB3ldyrcnAicT35TWPs5IcwKD8S333HMaa2VVv4+wdvebJkjWuW/xESoB8IwRcog8HYVYamb1g/R31Qv5Bx03g==", + "version": "3.7.4", + "resolved": "https://registry.npmjs.org/@types/eslint-scope/-/eslint-scope-3.7.4.tgz", + "integrity": "sha512-9K4zoImiZc3HlIp6AVUDE4CWYx22a+lhSZMYNpbjW04+YF0KWj4pJXnEMjdnFTiQibFFmElcsasJXDbdI/EPhA==", "requires": { "@types/eslint": "*", "@types/estree": "*" @@ -4593,14 +4611,14 @@ } }, "caniuse-lite": { - "version": "1.0.30001359", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001359.tgz", - "integrity": "sha512-Xln/BAsPzEuiVLgJ2/45IaqD9jShtk3Y33anKb4+yLwQzws3+v6odKfpgES/cDEaZMLzSChpIGdbOYtH9MyuHw==" + "version": "1.0.30001363", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001363.tgz", + "integrity": "sha512-HpQhpzTGGPVMnCjIomjt+jvyUu8vNFo3TaDiZ/RcoTrlOq/5+tC8zHdsbgFB6MxmaY+jCpsH09aD80Bb4Ow3Sg==" }, "electron-to-chromium": { - "version": "1.4.172", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.172.tgz", - "integrity": "sha512-yDoFfTJnqBAB6hSiPvzmsBJSrjOXJtHSJoqJdI/zSIh7DYupYnIOHt/bbPw/WE31BJjNTybDdNAs21gCMnTh0Q==" + "version": "1.4.179", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.179.tgz", + "integrity": "sha512-1XeTb/U/8Xgh2YgPOqhakLYsvCcU4U7jUjTMbEnhIJoIWd/Qt3yC8y0cbG+fHzn4zUNF99Ey1xiPf20bwgLO3Q==" } } }, @@ -4809,9 +4827,9 @@ } }, "babel-preset-gatsby": { - "version": "2.17.0", - "resolved": "https://registry.npmjs.org/babel-preset-gatsby/-/babel-preset-gatsby-2.17.0.tgz", - "integrity": "sha512-hLeovvehdKkfFAsfTKCATKQasLyQa49TrJtct5VthERrb2dhkV71NIfmbiEa9Ae5x+qGYhYvufqMROGptewXbQ==", + "version": "2.18.0", + "resolved": "https://registry.npmjs.org/babel-preset-gatsby/-/babel-preset-gatsby-2.18.0.tgz", + "integrity": "sha512-b6BJEl0MlA/nh+IkTJRgvPEgdN09Pu34Szo5dE4QYvQa66++EqfQUK5huqr+FgZJedPPYYbRY2SgKlRXev5QIQ==", "requires": { "@babel/plugin-proposal-class-properties": "^7.14.0", "@babel/plugin-proposal-nullish-coalescing-operator": "^7.14.5", @@ -4826,14 +4844,14 @@ "babel-plugin-dynamic-import-node": "^2.3.3", "babel-plugin-macros": "^3.1.0", "babel-plugin-transform-react-remove-prop-types": "^0.4.24", - "gatsby-core-utils": "^3.17.0", - "gatsby-legacy-polyfills": "^2.17.0" + "gatsby-core-utils": "^3.18.0", + "gatsby-legacy-polyfills": "^2.18.0" }, "dependencies": { "gatsby-core-utils": { - "version": "3.17.0", - "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.17.0.tgz", - "integrity": "sha512-1e0YaqTAEpSSBkpWkY703lu+Bl76ASXUvUcpnNO3CavCYZsRQxAXtMXIKIEvhm1z6zWJmY9HILo6/DjP+PHeyw==", + "version": "3.18.0", + "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.18.0.tgz", + "integrity": "sha512-mCoNgH4MilosLhEroklgVffwie9lyxgmvNwe/oIyzXr6NcZ2uxSp8G1KrgxdG2srt2hCNlZLlzS25ltLTeHTjA==", "requires": { "@babel/runtime": "^7.15.4", "ci-info": "2.0.0", @@ -4841,7 +4859,7 @@ "fastq": "^1.13.0", "file-type": "^16.5.3", "fs-extra": "^10.1.0", - "got": "^11.8.3", + "got": "^11.8.5", "import-from": "^4.0.0", "lmdb": "2.5.2", "lock": "^1.1.0", @@ -4852,6 +4870,24 @@ "xdg-basedir": "^4.0.0" } }, + "got": { + "version": "11.8.5", + "resolved": "https://registry.npmjs.org/got/-/got-11.8.5.tgz", + "integrity": "sha512-o0Je4NvQObAuZPHLFoRSkdG2lTgtcynqymzg2Vupdx6PorhaT5MCbIyXG6d4D94kk8ZG57QeosgdiqfJWhEhlQ==", + "requires": { + "@sindresorhus/is": "^4.0.0", + "@szmarczak/http-timer": "^4.0.5", + "@types/cacheable-request": "^6.0.1", + "@types/responselike": "^1.0.0", + "cacheable-lookup": "^5.0.3", + "cacheable-request": "^7.0.2", + "decompress-response": "^6.0.0", + "http2-wrapper": "^1.0.0-beta.5.2", + "lowercase-keys": "^2.0.0", + "p-cancelable": "^2.0.0", + "responselike": "^2.0.0" + } + }, "lmdb": { "version": "2.5.2", "resolved": "https://registry.npmjs.org/lmdb/-/lmdb-2.5.2.tgz", @@ -6084,9 +6120,9 @@ } }, "create-gatsby": { - "version": "2.17.0", - "resolved": "https://registry.npmjs.org/create-gatsby/-/create-gatsby-2.17.0.tgz", - "integrity": "sha512-RrMAHZL7J5Ew/laz83g+UNQ2RnXszGuub3sG7DQkG0tK5mS9TqTW+FIYyzHCLhdJkr81qC/HRDFsJv0fuYISwg==", + "version": "2.18.0", + "resolved": "https://registry.npmjs.org/create-gatsby/-/create-gatsby-2.18.0.tgz", + "integrity": "sha512-74yn3+wlFKwg3DUVdFdBnfqc6gUVpYjqr/1XtQ0Rb57i0ygvER8Xgp4rY5Mm+8rl7JwBma1NONeM20cdMQjT2w==", "requires": { "@babel/runtime": "^7.15.4" } @@ -7062,9 +7098,9 @@ } }, "globals": { - "version": "13.15.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-13.15.0.tgz", - "integrity": "sha512-bpzcOlgDhMG070Av0Vy5Owklpv1I6+j96GhUI7Rh7IzDCKLzboflLrrfqMu8NquDbiR4EOQk7XzJwqVJxicxog==", + "version": "13.16.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.16.0.tgz", + "integrity": "sha512-A1lrQfpNF+McdPOnnFqY3kSN0AFTy485bTi1bkLk4mVPODIUEcSfhHgRqA+QdXPksrSTTztYXx37NFV+GpGk3Q==", "requires": { "type-fest": "^0.20.2" } @@ -8154,9 +8190,9 @@ "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==" }, "gatsby": { - "version": "4.17.2", - "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-4.17.2.tgz", - "integrity": "sha512-uMNH/X/Fd0kGjelgAPTukgQhxu/aMhRj5YJ07SM4D2yBuO+c4+y1dZRz5q9EUryCeVSx1cSt0J6JMkfzOXmbyA==", + "version": "4.18.0", + "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-4.18.0.tgz", + "integrity": "sha512-EyiwYUsbSKUKsdjm8nnLw5AGJwOJ9NAWcrFg1V/QU4CUnk/M8EiP0TxiGUmK1/K7g82XGxUjuAPYJKJk85yxHA==", "requires": { "@babel/code-frame": "^7.14.0", "@babel/core": "^7.15.5", @@ -8192,15 +8228,15 @@ "babel-plugin-add-module-exports": "^1.0.4", "babel-plugin-dynamic-import-node": "^2.3.3", "babel-plugin-lodash": "^3.3.4", - "babel-plugin-remove-graphql-queries": "^4.17.0", - "babel-preset-gatsby": "^2.17.0", + "babel-plugin-remove-graphql-queries": "^4.18.0", + "babel-preset-gatsby": "^2.18.0", "better-opn": "^2.1.1", "bluebird": "^3.7.2", "body-parser": "^1.19.0", "browserslist": "^4.17.5", "cache-manager": "^2.11.1", "chalk": "^4.1.2", - "chokidar": "^3.5.2", + "chokidar": "^3.5.3", "common-tags": "^1.8.0", "compression": "^1.7.4", "cookie": "^0.4.1", @@ -8222,7 +8258,7 @@ "eslint-plugin-graphql": "^4.0.0", "eslint-plugin-import": "^2.26.0", "eslint-plugin-jsx-a11y": "^6.5.1", - "eslint-plugin-react": "^7.29.4", + "eslint-plugin-react": "^7.30.0", "eslint-plugin-react-hooks": "^4.5.0", "eslint-webpack-plugin": "^2.6.0", "event-source-polyfill": "1.0.25", @@ -8236,21 +8272,21 @@ "find-cache-dir": "^3.3.2", "fs-exists-cached": "1.0.0", "fs-extra": "^10.1.0", - "gatsby-cli": "^4.17.1", - "gatsby-core-utils": "^3.17.0", - "gatsby-graphiql-explorer": "^2.17.0", - "gatsby-legacy-polyfills": "^2.17.0", - "gatsby-link": "^4.17.0", - "gatsby-page-utils": "^2.17.0", - "gatsby-parcel-config": "0.8.0", - "gatsby-plugin-page-creator": "^4.17.0", - "gatsby-plugin-typescript": "^4.17.0", - "gatsby-plugin-utils": "^3.11.0", - "gatsby-react-router-scroll": "^5.17.0", - "gatsby-script": "^1.2.0", - "gatsby-sharp": "^0.11.0", - "gatsby-telemetry": "^3.17.0", - "gatsby-worker": "^1.17.0", + "gatsby-cli": "^4.18.0", + "gatsby-core-utils": "^3.18.0", + "gatsby-graphiql-explorer": "^2.18.0", + "gatsby-legacy-polyfills": "^2.18.0", + "gatsby-link": "^4.18.0", + "gatsby-page-utils": "^2.18.0", + "gatsby-parcel-config": "0.9.0", + "gatsby-plugin-page-creator": "^4.18.0", + "gatsby-plugin-typescript": "^4.18.0", + "gatsby-plugin-utils": "^3.12.0", + "gatsby-react-router-scroll": "^5.18.0", + "gatsby-script": "^1.3.0", + "gatsby-sharp": "^0.12.0", + "gatsby-telemetry": "^3.18.0", + "gatsby-worker": "^1.18.0", "glob": "^7.2.3", "globby": "^11.1.0", "got": "^11.8.2", @@ -8302,7 +8338,6 @@ "slugify": "^1.6.1", "socket.io": "3.1.2", "socket.io-client": "3.1.3", - "source-map-support": "^0.5.20", "st": "^2.0.0", "stack-trace": "^0.0.10", "string-similarity": "^1.2.2", @@ -8341,12 +8376,12 @@ } }, "babel-plugin-remove-graphql-queries": { - "version": "4.17.0", - "resolved": "https://registry.npmjs.org/babel-plugin-remove-graphql-queries/-/babel-plugin-remove-graphql-queries-4.17.0.tgz", - "integrity": "sha512-UovjamHhy5y46WyBO/hfqxrLbMq04o+hlTeqCRzeLol4eWtH+8CufdLAZWYtM1l1BIChwvXCxDY2ugeXlbj7+w==", + "version": "4.18.0", + "resolved": "https://registry.npmjs.org/babel-plugin-remove-graphql-queries/-/babel-plugin-remove-graphql-queries-4.18.0.tgz", + "integrity": "sha512-6oOm/cTZdk+7yPh4R4ISLKNur3rK5w2zAUCXTOGKYcRYbvKCS22ODafQBrNcu/UdfpXwSz3XZOG5ru72Z5usUw==", "requires": { "@babel/runtime": "^7.15.4", - "gatsby-core-utils": "^3.17.0" + "gatsby-core-utils": "^3.18.0" } }, "color-convert": { @@ -8372,9 +8407,9 @@ } }, "gatsby-cli": { - "version": "4.17.1", - "resolved": "https://registry.npmjs.org/gatsby-cli/-/gatsby-cli-4.17.1.tgz", - "integrity": "sha512-yLNRGKo8vyeiqKNTH5MkE0Q3AF6Un1v3MVlXzvoyRNs1DIHwkkZ22jGOB64/KIIR/o2cjRsrKJNCVjGV7qNnzw==", + "version": "4.18.0", + "resolved": "https://registry.npmjs.org/gatsby-cli/-/gatsby-cli-4.18.0.tgz", + "integrity": "sha512-H4V1XvXP3EMwUBDbAlpu3jbjlCetUmHY6VB1YsH2kkIdlMrOgjUgNDFpqjgbk7k7z61du2tCgl1lyW+5he+SnA==", "requires": { "@babel/code-frame": "^7.14.0", "@babel/core": "^7.15.5", @@ -8393,13 +8428,13 @@ "common-tags": "^1.8.2", "configstore": "^5.0.1", "convert-hrtime": "^3.0.0", - "create-gatsby": "^2.17.0", + "create-gatsby": "^2.18.0", "envinfo": "^7.8.1", "execa": "^5.1.1", "fs-exists-cached": "^1.0.0", "fs-extra": "^10.1.0", - "gatsby-core-utils": "^3.17.0", - "gatsby-telemetry": "^3.17.0", + "gatsby-core-utils": "^3.18.0", + "gatsby-telemetry": "^3.18.0", "hosted-git-info": "^3.0.8", "is-valid-path": "^0.1.1", "joi": "^17.4.2", @@ -8423,9 +8458,9 @@ } }, "gatsby-core-utils": { - "version": "3.17.0", - "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.17.0.tgz", - "integrity": "sha512-1e0YaqTAEpSSBkpWkY703lu+Bl76ASXUvUcpnNO3CavCYZsRQxAXtMXIKIEvhm1z6zWJmY9HILo6/DjP+PHeyw==", + "version": "3.18.0", + "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.18.0.tgz", + "integrity": "sha512-mCoNgH4MilosLhEroklgVffwie9lyxgmvNwe/oIyzXr6NcZ2uxSp8G1KrgxdG2srt2hCNlZLlzS25ltLTeHTjA==", "requires": { "@babel/runtime": "^7.15.4", "ci-info": "2.0.0", @@ -8433,7 +8468,7 @@ "fastq": "^1.13.0", "file-type": "^16.5.3", "fs-extra": "^10.1.0", - "got": "^11.8.3", + "got": "^11.8.5", "import-from": "^4.0.0", "lmdb": "2.5.2", "lock": "^1.1.0", @@ -8442,18 +8477,38 @@ "resolve-from": "^5.0.0", "tmp": "^0.2.1", "xdg-basedir": "^4.0.0" + }, + "dependencies": { + "got": { + "version": "11.8.5", + "resolved": "https://registry.npmjs.org/got/-/got-11.8.5.tgz", + "integrity": "sha512-o0Je4NvQObAuZPHLFoRSkdG2lTgtcynqymzg2Vupdx6PorhaT5MCbIyXG6d4D94kk8ZG57QeosgdiqfJWhEhlQ==", + "requires": { + "@sindresorhus/is": "^4.0.0", + "@szmarczak/http-timer": "^4.0.5", + "@types/cacheable-request": "^6.0.1", + "@types/responselike": "^1.0.0", + "cacheable-lookup": "^5.0.3", + "cacheable-request": "^7.0.2", + "decompress-response": "^6.0.0", + "http2-wrapper": "^1.0.0-beta.5.2", + "lowercase-keys": "^2.0.0", + "p-cancelable": "^2.0.0", + "responselike": "^2.0.0" + } + } } }, "gatsby-plugin-utils": { - "version": "3.11.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-utils/-/gatsby-plugin-utils-3.11.0.tgz", - "integrity": "sha512-v2D6O2aME9p7tqlGykq5mgtj7Jqp/CWatgo0zJ7bFWSYPPUpQ7jRVAph1PIgFTAV/CaUrrvt9sxdRaZrglJyug==", + "version": "3.12.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-utils/-/gatsby-plugin-utils-3.12.0.tgz", + "integrity": "sha512-vdz3qwaCOkvgzAxMkZlgpmpWf555jISwek5lyWYhGyJJvXYV8KQ2cZ4CoOfFKAYVeZVSucrHcdWyY3fLLpQvAA==", "requires": { "@babel/runtime": "^7.15.4", "@gatsbyjs/potrace": "^2.2.0", "fs-extra": "^10.1.0", - "gatsby-core-utils": "^3.17.0", - "gatsby-sharp": "^0.11.0", + "gatsby-core-utils": "^3.18.0", + "gatsby-sharp": "^0.12.0", "graphql-compose": "^9.0.7", "import-from": "^4.0.0", "joi": "^17.4.2", @@ -8470,28 +8525,28 @@ } }, "gatsby-sharp": { - "version": "0.11.0", - "resolved": "https://registry.npmjs.org/gatsby-sharp/-/gatsby-sharp-0.11.0.tgz", - "integrity": "sha512-RIbU8qi/Qs7G/KJiY0zyGS9Yic5n4RpDUf/1W3gvRl78Uo3LSuIeGEpaai6mYEnreuGb5fQIcqdkYs/UV3e8WA==", + "version": "0.12.0", + "resolved": "https://registry.npmjs.org/gatsby-sharp/-/gatsby-sharp-0.12.0.tgz", + "integrity": "sha512-dZa/AgxmPzD0vvROEZSuT3IdzAFTxnq1FfLTf9n3mywonvsKYc84zj6nf8TEzBrVrBFAaLvZek4NpVAKWGr4/w==", "requires": { "@types/sharp": "^0.30.0", "sharp": "^0.30.3" } }, "gatsby-telemetry": { - "version": "3.17.0", - "resolved": "https://registry.npmjs.org/gatsby-telemetry/-/gatsby-telemetry-3.17.0.tgz", - "integrity": "sha512-1N4uKj2Yj7AykLmwjsdOmNirf3UmP8CBXjj/LmWf5cLDVbdPqkirAlyD6uTeEliG5UFHPTlBsRi26v558mFYJQ==", + "version": "3.18.0", + "resolved": "https://registry.npmjs.org/gatsby-telemetry/-/gatsby-telemetry-3.18.0.tgz", + "integrity": "sha512-i1JvNqGOyLDPGEn1QN29YGpe2ripg2LZBAOhXmk6lAhRL5fTVo6WkEA2yW7XESnXIOJBFymgVbUlLjXoqeZ5Xg==", "requires": { "@babel/code-frame": "^7.14.0", "@babel/runtime": "^7.15.4", - "@turist/fetch": "^7.1.7", + "@turist/fetch": "^7.2.0", "@turist/time": "^0.0.2", "async-retry-ng": "^2.0.1", "boxen": "^4.2.0", "configstore": "^5.0.1", "fs-extra": "^10.1.0", - "gatsby-core-utils": "^3.17.0", + "gatsby-core-utils": "^3.18.0", "git-up": "^4.0.5", "is-docker": "^2.2.1", "lodash": "^4.17.21", @@ -8621,17 +8676,17 @@ } }, "gatsby-graphiql-explorer": { - "version": "2.17.0", - "resolved": "https://registry.npmjs.org/gatsby-graphiql-explorer/-/gatsby-graphiql-explorer-2.17.0.tgz", - "integrity": "sha512-IWAcxMlOofpg8wRzLGjuey3HunWu3bLilKurX8csD0d+YsuiB4aqZc7dWi2Zc15ZHZ5Hh8zMpOv0MVW9qhjnCg==", + "version": "2.18.0", + "resolved": "https://registry.npmjs.org/gatsby-graphiql-explorer/-/gatsby-graphiql-explorer-2.18.0.tgz", + "integrity": "sha512-mmY+kHc+axpDO9lfjbCEf/0oEIHTcZmpe2PtQAzkhnQHyti3xd9IIafq/1W3QKIJo5c7f40+tR3sFTERqaBeIA==", "requires": { "@babel/runtime": "^7.15.4" } }, "gatsby-legacy-polyfills": { - "version": "2.17.0", - "resolved": "https://registry.npmjs.org/gatsby-legacy-polyfills/-/gatsby-legacy-polyfills-2.17.0.tgz", - "integrity": "sha512-tpONSDutxEZY3vOdUaZ1yE9d0QWZ5/p47juvnhTv0qjGkBwow3gfCpgJwDzWyzKl0w0geesZwlLnaCA3WSEv7Q==", + "version": "2.18.0", + "resolved": "https://registry.npmjs.org/gatsby-legacy-polyfills/-/gatsby-legacy-polyfills-2.18.0.tgz", + "integrity": "sha512-wPnsRUnnab10wyt5VPkIhpJC1k8bVrpn0Sfat1L3JskYwkVIEvquqTmHWkpGMB8SLbXQiJEGCs2TcIrx9riL+w==", "requires": { "@babel/runtime": "^7.15.4", "core-js-compat": "3.9.0" @@ -8654,35 +8709,35 @@ } }, "gatsby-link": { - "version": "4.17.0", - "resolved": "https://registry.npmjs.org/gatsby-link/-/gatsby-link-4.17.0.tgz", - "integrity": "sha512-hDh+9OFMHNQ/5YdDdTcpSMB8xAYSP4OMkRuwmgPKH1jtOuov3pzwFAo19RR34CsOqzKd3LSQbCjIovOksjlAeA==", + "version": "4.18.0", + "resolved": "https://registry.npmjs.org/gatsby-link/-/gatsby-link-4.18.0.tgz", + "integrity": "sha512-nE+Z/iE55Id84YqsQOT1bfPJ/AsupY/4s8i6NllQ8no/PRgDGMpkTG6ANqyt2CHs/bywxch2rv8Ho7Gwsuuueg==", "requires": { "@babel/runtime": "^7.15.4", "@types/reach__router": "^1.3.10", - "gatsby-page-utils": "^2.17.0", + "gatsby-page-utils": "^2.18.0", "prop-types": "^15.8.1" } }, "gatsby-page-utils": { - "version": "2.17.0", - "resolved": "https://registry.npmjs.org/gatsby-page-utils/-/gatsby-page-utils-2.17.0.tgz", - "integrity": "sha512-aeDrvYm6uTXayr/Yw0dNQUy+P9a5TshuG9UnRddCB7jQAR1aufjkNu8WH93l151p4jqUoYGemxgZIhrNv1+i/g==", + "version": "2.18.0", + "resolved": "https://registry.npmjs.org/gatsby-page-utils/-/gatsby-page-utils-2.18.0.tgz", + "integrity": "sha512-qTwlqscKxkBlMd+Mn8xj6sh7L0LbfLGYOPCYozJnukXv8d/6Jyk1nfaP6I82hwj/iyhaBQtk7g8g4XyBJJaESw==", "requires": { "@babel/runtime": "^7.15.4", "bluebird": "^3.7.2", - "chokidar": "^3.5.2", + "chokidar": "^3.5.3", "fs-exists-cached": "^1.0.0", - "gatsby-core-utils": "^3.17.0", + "gatsby-core-utils": "^3.18.0", "glob": "^7.2.3", "lodash": "^4.17.21", "micromatch": "^4.0.5" }, "dependencies": { "gatsby-core-utils": { - "version": "3.17.0", - "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.17.0.tgz", - "integrity": "sha512-1e0YaqTAEpSSBkpWkY703lu+Bl76ASXUvUcpnNO3CavCYZsRQxAXtMXIKIEvhm1z6zWJmY9HILo6/DjP+PHeyw==", + "version": "3.18.0", + "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.18.0.tgz", + "integrity": "sha512-mCoNgH4MilosLhEroklgVffwie9lyxgmvNwe/oIyzXr6NcZ2uxSp8G1KrgxdG2srt2hCNlZLlzS25ltLTeHTjA==", "requires": { "@babel/runtime": "^7.15.4", "ci-info": "2.0.0", @@ -8690,7 +8745,7 @@ "fastq": "^1.13.0", "file-type": "^16.5.3", "fs-extra": "^10.1.0", - "got": "^11.8.3", + "got": "^11.8.5", "import-from": "^4.0.0", "lmdb": "2.5.2", "lock": "^1.1.0", @@ -8701,6 +8756,24 @@ "xdg-basedir": "^4.0.0" } }, + "got": { + "version": "11.8.5", + "resolved": "https://registry.npmjs.org/got/-/got-11.8.5.tgz", + "integrity": "sha512-o0Je4NvQObAuZPHLFoRSkdG2lTgtcynqymzg2Vupdx6PorhaT5MCbIyXG6d4D94kk8ZG57QeosgdiqfJWhEhlQ==", + "requires": { + "@sindresorhus/is": "^4.0.0", + "@szmarczak/http-timer": "^4.0.5", + "@types/cacheable-request": "^6.0.1", + "@types/responselike": "^1.0.0", + "cacheable-lookup": "^5.0.3", + "cacheable-request": "^7.0.2", + "decompress-response": "^6.0.0", + "http2-wrapper": "^1.0.0-beta.5.2", + "lowercase-keys": "^2.0.0", + "p-cancelable": "^2.0.0", + "responselike": "^2.0.0" + } + }, "lmdb": { "version": "2.5.2", "resolved": "https://registry.npmjs.org/lmdb/-/lmdb-2.5.2.tgz", @@ -8732,11 +8805,11 @@ } }, "gatsby-parcel-config": { - "version": "0.8.0", - "resolved": "https://registry.npmjs.org/gatsby-parcel-config/-/gatsby-parcel-config-0.8.0.tgz", - "integrity": "sha512-HzLU8uoJLuakH08T27K8GKx7rcLEVkKVClffAuVKrlcVYhNH+x1LvIwe+uMTIIdfu+YtUpUP1PpTdua6YfrVTQ==", + "version": "0.9.0", + "resolved": "https://registry.npmjs.org/gatsby-parcel-config/-/gatsby-parcel-config-0.9.0.tgz", + "integrity": "sha512-ccGw/L8ylhDgE/4tr52B6tb2jreApOMoYPW75Z8aM2ULRz505fL5mrnkG1fdQDBZSCHx/0j0x2TZyCLrt0Bvlw==", "requires": { - "@gatsbyjs/parcel-namer-relative-to-cwd": "^1.2.0", + "@gatsbyjs/parcel-namer-relative-to-cwd": "1.3.0", "@parcel/bundler-default": "2.6.0", "@parcel/compressor-raw": "2.6.0", "@parcel/namer-default": "2.6.0", @@ -8877,19 +8950,19 @@ } }, "gatsby-plugin-page-creator": { - "version": "4.17.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-page-creator/-/gatsby-plugin-page-creator-4.17.0.tgz", - "integrity": "sha512-Nv1lryCAfo5cWqkVnnqiMC6bmXXXOhdl2efLZKK88QwqT4tZO51gGrgsZGL4mtXtUUSkJXGE8pmjelUOcR+23g==", + "version": "4.18.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-page-creator/-/gatsby-plugin-page-creator-4.18.0.tgz", + "integrity": "sha512-6bY4vJndDw0nBcOuQdX41Wvbctw0y9+a7IavCFJKFeNs+Zo0XH2FX0IAww0slDnSJU6AukJ9qfjHqKJkADAZpQ==", "requires": { "@babel/runtime": "^7.15.4", "@babel/traverse": "^7.15.4", "@sindresorhus/slugify": "^1.1.2", - "chokidar": "^3.5.2", + "chokidar": "^3.5.3", "fs-exists-cached": "^1.0.0", - "gatsby-core-utils": "^3.17.0", - "gatsby-page-utils": "^2.17.0", - "gatsby-plugin-utils": "^3.11.0", - "gatsby-telemetry": "^3.17.0", + "gatsby-core-utils": "^3.18.0", + "gatsby-page-utils": "^2.18.0", + "gatsby-plugin-utils": "^3.12.0", + "gatsby-telemetry": "^3.18.0", "globby": "^11.1.0", "lodash": "^4.17.21" }, @@ -8949,9 +9022,9 @@ } }, "gatsby-core-utils": { - "version": "3.17.0", - "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.17.0.tgz", - "integrity": "sha512-1e0YaqTAEpSSBkpWkY703lu+Bl76ASXUvUcpnNO3CavCYZsRQxAXtMXIKIEvhm1z6zWJmY9HILo6/DjP+PHeyw==", + "version": "3.18.0", + "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.18.0.tgz", + "integrity": "sha512-mCoNgH4MilosLhEroklgVffwie9lyxgmvNwe/oIyzXr6NcZ2uxSp8G1KrgxdG2srt2hCNlZLlzS25ltLTeHTjA==", "requires": { "@babel/runtime": "^7.15.4", "ci-info": "2.0.0", @@ -8959,7 +9032,7 @@ "fastq": "^1.13.0", "file-type": "^16.5.3", "fs-extra": "^10.1.0", - "got": "^11.8.3", + "got": "^11.8.5", "import-from": "^4.0.0", "lmdb": "2.5.2", "lock": "^1.1.0", @@ -8971,15 +9044,15 @@ } }, "gatsby-plugin-utils": { - "version": "3.11.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-utils/-/gatsby-plugin-utils-3.11.0.tgz", - "integrity": "sha512-v2D6O2aME9p7tqlGykq5mgtj7Jqp/CWatgo0zJ7bFWSYPPUpQ7jRVAph1PIgFTAV/CaUrrvt9sxdRaZrglJyug==", + "version": "3.12.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-utils/-/gatsby-plugin-utils-3.12.0.tgz", + "integrity": "sha512-vdz3qwaCOkvgzAxMkZlgpmpWf555jISwek5lyWYhGyJJvXYV8KQ2cZ4CoOfFKAYVeZVSucrHcdWyY3fLLpQvAA==", "requires": { "@babel/runtime": "^7.15.4", "@gatsbyjs/potrace": "^2.2.0", "fs-extra": "^10.1.0", - "gatsby-core-utils": "^3.17.0", - "gatsby-sharp": "^0.11.0", + "gatsby-core-utils": "^3.18.0", + "gatsby-sharp": "^0.12.0", "graphql-compose": "^9.0.7", "import-from": "^4.0.0", "joi": "^17.4.2", @@ -8989,34 +9062,52 @@ } }, "gatsby-sharp": { - "version": "0.11.0", - "resolved": "https://registry.npmjs.org/gatsby-sharp/-/gatsby-sharp-0.11.0.tgz", - "integrity": "sha512-RIbU8qi/Qs7G/KJiY0zyGS9Yic5n4RpDUf/1W3gvRl78Uo3LSuIeGEpaai6mYEnreuGb5fQIcqdkYs/UV3e8WA==", + "version": "0.12.0", + "resolved": "https://registry.npmjs.org/gatsby-sharp/-/gatsby-sharp-0.12.0.tgz", + "integrity": "sha512-dZa/AgxmPzD0vvROEZSuT3IdzAFTxnq1FfLTf9n3mywonvsKYc84zj6nf8TEzBrVrBFAaLvZek4NpVAKWGr4/w==", "requires": { "@types/sharp": "^0.30.0", "sharp": "^0.30.3" } }, "gatsby-telemetry": { - "version": "3.17.0", - "resolved": "https://registry.npmjs.org/gatsby-telemetry/-/gatsby-telemetry-3.17.0.tgz", - "integrity": "sha512-1N4uKj2Yj7AykLmwjsdOmNirf3UmP8CBXjj/LmWf5cLDVbdPqkirAlyD6uTeEliG5UFHPTlBsRi26v558mFYJQ==", + "version": "3.18.0", + "resolved": "https://registry.npmjs.org/gatsby-telemetry/-/gatsby-telemetry-3.18.0.tgz", + "integrity": "sha512-i1JvNqGOyLDPGEn1QN29YGpe2ripg2LZBAOhXmk6lAhRL5fTVo6WkEA2yW7XESnXIOJBFymgVbUlLjXoqeZ5Xg==", "requires": { "@babel/code-frame": "^7.14.0", "@babel/runtime": "^7.15.4", - "@turist/fetch": "^7.1.7", + "@turist/fetch": "^7.2.0", "@turist/time": "^0.0.2", "async-retry-ng": "^2.0.1", "boxen": "^4.2.0", "configstore": "^5.0.1", "fs-extra": "^10.1.0", - "gatsby-core-utils": "^3.17.0", + "gatsby-core-utils": "^3.18.0", "git-up": "^4.0.5", "is-docker": "^2.2.1", "lodash": "^4.17.21", "node-fetch": "^2.6.7" } }, + "got": { + "version": "11.8.5", + "resolved": "https://registry.npmjs.org/got/-/got-11.8.5.tgz", + "integrity": "sha512-o0Je4NvQObAuZPHLFoRSkdG2lTgtcynqymzg2Vupdx6PorhaT5MCbIyXG6d4D94kk8ZG57QeosgdiqfJWhEhlQ==", + "requires": { + "@sindresorhus/is": "^4.0.0", + "@szmarczak/http-timer": "^4.0.5", + "@types/cacheable-request": "^6.0.1", + "@types/responselike": "^1.0.0", + "cacheable-lookup": "^5.0.3", + "cacheable-request": "^7.0.2", + "decompress-response": "^6.0.0", + "http2-wrapper": "^1.0.0-beta.5.2", + "lowercase-keys": "^2.0.0", + "p-cancelable": "^2.0.0", + "responselike": "^2.0.0" + } + }, "has-flag": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", @@ -9136,9 +9227,9 @@ } }, "gatsby-plugin-typescript": { - "version": "4.17.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-typescript/-/gatsby-plugin-typescript-4.17.0.tgz", - "integrity": "sha512-aSO/h4z+jdWBZtEnH17NoZaFchO8LkEcIdNX2saYIjJfa2tMbOR+wnOuQJVAdj61n8ntc1pQkNJxiEK31IaZjw==", + "version": "4.18.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-typescript/-/gatsby-plugin-typescript-4.18.0.tgz", + "integrity": "sha512-SuNBrp57SnovOyhCz0zPkz7begV4UR2XdXUrFsh4N0jWOI5yFNVgENpKlbI/O7JnvgyV5KC/pkobNh3we+0mcQ==", "requires": { "@babel/core": "^7.15.5", "@babel/plugin-proposal-nullish-coalescing-operator": "^7.14.5", @@ -9146,22 +9237,22 @@ "@babel/plugin-proposal-optional-chaining": "^7.14.5", "@babel/preset-typescript": "^7.15.0", "@babel/runtime": "^7.15.4", - "babel-plugin-remove-graphql-queries": "^4.17.0" + "babel-plugin-remove-graphql-queries": "^4.18.0" }, "dependencies": { "babel-plugin-remove-graphql-queries": { - "version": "4.17.0", - "resolved": "https://registry.npmjs.org/babel-plugin-remove-graphql-queries/-/babel-plugin-remove-graphql-queries-4.17.0.tgz", - "integrity": "sha512-UovjamHhy5y46WyBO/hfqxrLbMq04o+hlTeqCRzeLol4eWtH+8CufdLAZWYtM1l1BIChwvXCxDY2ugeXlbj7+w==", + "version": "4.18.0", + "resolved": "https://registry.npmjs.org/babel-plugin-remove-graphql-queries/-/babel-plugin-remove-graphql-queries-4.18.0.tgz", + "integrity": "sha512-6oOm/cTZdk+7yPh4R4ISLKNur3rK5w2zAUCXTOGKYcRYbvKCS22ODafQBrNcu/UdfpXwSz3XZOG5ru72Z5usUw==", "requires": { "@babel/runtime": "^7.15.4", - "gatsby-core-utils": "^3.17.0" + "gatsby-core-utils": "^3.18.0" } }, "gatsby-core-utils": { - "version": "3.17.0", - "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.17.0.tgz", - "integrity": "sha512-1e0YaqTAEpSSBkpWkY703lu+Bl76ASXUvUcpnNO3CavCYZsRQxAXtMXIKIEvhm1z6zWJmY9HILo6/DjP+PHeyw==", + "version": "3.18.0", + "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.18.0.tgz", + "integrity": "sha512-mCoNgH4MilosLhEroklgVffwie9lyxgmvNwe/oIyzXr6NcZ2uxSp8G1KrgxdG2srt2hCNlZLlzS25ltLTeHTjA==", "requires": { "@babel/runtime": "^7.15.4", "ci-info": "2.0.0", @@ -9169,7 +9260,7 @@ "fastq": "^1.13.0", "file-type": "^16.5.3", "fs-extra": "^10.1.0", - "got": "^11.8.3", + "got": "^11.8.5", "import-from": "^4.0.0", "lmdb": "2.5.2", "lock": "^1.1.0", @@ -9180,6 +9271,24 @@ "xdg-basedir": "^4.0.0" } }, + "got": { + "version": "11.8.5", + "resolved": "https://registry.npmjs.org/got/-/got-11.8.5.tgz", + "integrity": "sha512-o0Je4NvQObAuZPHLFoRSkdG2lTgtcynqymzg2Vupdx6PorhaT5MCbIyXG6d4D94kk8ZG57QeosgdiqfJWhEhlQ==", + "requires": { + "@sindresorhus/is": "^4.0.0", + "@szmarczak/http-timer": "^4.0.5", + "@types/cacheable-request": "^6.0.1", + "@types/responselike": "^1.0.0", + "cacheable-lookup": "^5.0.3", + "cacheable-request": "^7.0.2", + "decompress-response": "^6.0.0", + "http2-wrapper": "^1.0.0-beta.5.2", + "lowercase-keys": "^2.0.0", + "p-cancelable": "^2.0.0", + "responselike": "^2.0.0" + } + }, "lmdb": { "version": "2.5.2", "resolved": "https://registry.npmjs.org/lmdb/-/lmdb-2.5.2.tgz", @@ -9279,9 +9388,9 @@ } }, "gatsby-react-router-scroll": { - "version": "5.17.0", - "resolved": "https://registry.npmjs.org/gatsby-react-router-scroll/-/gatsby-react-router-scroll-5.17.0.tgz", - "integrity": "sha512-RwFeZlKL0T8dxpEdlmuQAH+h4ugrQQpl4U2m0Wdo/F9/8/VEiAeX64oa2r2BqiiTf4MzAIIT+5/ONt83FcmZWg==", + "version": "5.18.0", + "resolved": "https://registry.npmjs.org/gatsby-react-router-scroll/-/gatsby-react-router-scroll-5.18.0.tgz", + "integrity": "sha512-/A1k468s6g713c8me5DuGiia8rPWLuwjITQ/pKqgJwioJVB6MnD/iBCbHUTzLHlNwZypAVdGHCN8fCIcPcMb6Q==", "requires": { "@babel/runtime": "^7.15.4", "prop-types": "^15.8.1" @@ -9332,9 +9441,9 @@ } }, "gatsby-script": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/gatsby-script/-/gatsby-script-1.2.0.tgz", - "integrity": "sha512-Fkf6yJxwuQCS6xdFxF0gpiCUiS3PYnRv5I2mCAJV0Cu7k4PYgVpQJt79bcDHvnx755VpXOmZIfMXegACg1XS0w==" + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/gatsby-script/-/gatsby-script-1.3.0.tgz", + "integrity": "sha512-eCz6mcMFpB7kvpmyM7AtMTxNxzdrzPgt8GiuDKWFOlDgk1il6PUjO99QsL/cCeokmaiH/6egVnm9b33/x+sy9A==" }, "gatsby-sharp": { "version": "0.9.0", @@ -9614,9 +9723,9 @@ } }, "gatsby-worker": { - "version": "1.17.0", - "resolved": "https://registry.npmjs.org/gatsby-worker/-/gatsby-worker-1.17.0.tgz", - "integrity": "sha512-hA7awNHmcNWp3TgQkjF0Z3I9YGWpdsf8jUdJOlAjI+aBxQ2vdHTVNwbMdXwtlf9umQRwORnmEzADmQdm0Cx5AA==", + "version": "1.18.0", + "resolved": "https://registry.npmjs.org/gatsby-worker/-/gatsby-worker-1.18.0.tgz", + "integrity": "sha512-gNzqDrYFMXlfXCzdClORyDQWQZKTOF6nRUrhZT8PUxzQViO+DvnEKE3EAQvZizYKW1Hgw7cbiTtLG3qshkNepw==", "requires": { "@babel/core": "^7.15.5", "@babel/runtime": "^7.15.4" @@ -10987,9 +11096,9 @@ "integrity": "sha512-pJiBpiXMbt7dkzXe8Ghj/u4FfXOOa98fPW+bihOJ4SjnoijweJrNThJfd3ifXpXhREjpoF2mZVH1GfS9LV3kHQ==" }, "language-subtag-registry": { - "version": "0.3.21", - "resolved": "https://registry.npmjs.org/language-subtag-registry/-/language-subtag-registry-0.3.21.tgz", - "integrity": "sha512-L0IqwlIXjilBVVYKFT37X9Ih11Um5NEl9cbJIuU/SwP/zEEAbBPOnEeeuxVMf45ydWQRDQN3Nqc96OgbH1K+Pg==" + "version": "0.3.22", + "resolved": "https://registry.npmjs.org/language-subtag-registry/-/language-subtag-registry-0.3.22.tgz", + "integrity": "sha512-tN0MCzyWnoz/4nHS6uxdlFWoUZT7ABptwKPQ52Ea7URk6vll88bWBVhodtnlfEuCcKWNGoc+uGbw1cwa9IKh/w==" }, "language-tags": { "version": "1.0.5", @@ -12699,14 +12808,14 @@ } }, "caniuse-lite": { - "version": "1.0.30001359", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001359.tgz", - "integrity": "sha512-Xln/BAsPzEuiVLgJ2/45IaqD9jShtk3Y33anKb4+yLwQzws3+v6odKfpgES/cDEaZMLzSChpIGdbOYtH9MyuHw==" + "version": "1.0.30001363", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001363.tgz", + "integrity": "sha512-HpQhpzTGGPVMnCjIomjt+jvyUu8vNFo3TaDiZ/RcoTrlOq/5+tC8zHdsbgFB6MxmaY+jCpsH09aD80Bb4Ow3Sg==" }, "electron-to-chromium": { - "version": "1.4.172", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.172.tgz", - "integrity": "sha512-yDoFfTJnqBAB6hSiPvzmsBJSrjOXJtHSJoqJdI/zSIh7DYupYnIOHt/bbPw/WE31BJjNTybDdNAs21gCMnTh0Q==" + "version": "1.4.179", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.179.tgz", + "integrity": "sha512-1XeTb/U/8Xgh2YgPOqhakLYsvCcU4U7jUjTMbEnhIJoIWd/Qt3yC8y0cbG+fHzn4zUNF99Ey1xiPf20bwgLO3Q==" } } }, diff --git a/starters/gatsby-starter-blog-theme-core/package.json b/starters/gatsby-starter-blog-theme-core/package.json index 18557e0ba5791..4c8a6929a2540 100644 --- a/starters/gatsby-starter-blog-theme-core/package.json +++ b/starters/gatsby-starter-blog-theme-core/package.json @@ -11,7 +11,7 @@ "license": "0BSD", "dependencies": { "@mdx-js/react": "^1.6.22", - "gatsby": "^4.17.2", + "gatsby": "^4.18.0", "gatsby-theme-blog-core": "^4.0.0", "react": "^18.1.0", "react-dom": "^18.1.0" diff --git a/starters/gatsby-starter-blog-theme/package-lock.json b/starters/gatsby-starter-blog-theme/package-lock.json index d311da6943cdd..f9851605eb8f7 100644 --- a/starters/gatsby-starter-blog-theme/package-lock.json +++ b/starters/gatsby-starter-blog-theme/package-lock.json @@ -1691,9 +1691,9 @@ } }, "globals": { - "version": "13.15.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-13.15.0.tgz", - "integrity": "sha512-bpzcOlgDhMG070Av0Vy5Owklpv1I6+j96GhUI7Rh7IzDCKLzboflLrrfqMu8NquDbiR4EOQk7XzJwqVJxicxog==", + "version": "13.16.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.16.0.tgz", + "integrity": "sha512-A1lrQfpNF+McdPOnnFqY3kSN0AFTy485bTi1bkLk4mVPODIUEcSfhHgRqA+QdXPksrSTTztYXx37NFV+GpGk3Q==", "requires": { "type-fest": "^0.20.2" } @@ -1711,19 +1711,19 @@ } }, "@gatsbyjs/parcel-namer-relative-to-cwd": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/@gatsbyjs/parcel-namer-relative-to-cwd/-/parcel-namer-relative-to-cwd-1.2.0.tgz", - "integrity": "sha512-4iIdquFDl+b+U8Ng0dg6dCtxB/cnH27ERrlQQlxfdaWe8e9CLo8aWc6u3UeuHwNJixBFOUbOgEFaA5qCUPwLCQ==", + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/@gatsbyjs/parcel-namer-relative-to-cwd/-/parcel-namer-relative-to-cwd-1.3.0.tgz", + "integrity": "sha512-nd1lQn7ezg51ekqZm8iZjND8akB7bsGkGe7GdIPdTwbhale2dHLqd74qg+bBrEjv5f5aFZhpJeY9XpeU4emWZQ==", "requires": { "@babel/runtime": "^7.18.0", "@parcel/plugin": "2.6.0", - "gatsby-core-utils": "^3.17.0" + "gatsby-core-utils": "^3.18.0" }, "dependencies": { "gatsby-core-utils": { - "version": "3.17.0", - "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.17.0.tgz", - "integrity": "sha512-1e0YaqTAEpSSBkpWkY703lu+Bl76ASXUvUcpnNO3CavCYZsRQxAXtMXIKIEvhm1z6zWJmY9HILo6/DjP+PHeyw==", + "version": "3.18.0", + "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.18.0.tgz", + "integrity": "sha512-mCoNgH4MilosLhEroklgVffwie9lyxgmvNwe/oIyzXr6NcZ2uxSp8G1KrgxdG2srt2hCNlZLlzS25ltLTeHTjA==", "requires": { "@babel/runtime": "^7.15.4", "ci-info": "2.0.0", @@ -1731,7 +1731,7 @@ "fastq": "^1.13.0", "file-type": "^16.5.3", "fs-extra": "^10.1.0", - "got": "^11.8.3", + "got": "^11.8.5", "import-from": "^4.0.0", "lmdb": "2.5.2", "lock": "^1.1.0", @@ -1742,6 +1742,24 @@ "xdg-basedir": "^4.0.0" } }, + "got": { + "version": "11.8.5", + "resolved": "https://registry.npmjs.org/got/-/got-11.8.5.tgz", + "integrity": "sha512-o0Je4NvQObAuZPHLFoRSkdG2lTgtcynqymzg2Vupdx6PorhaT5MCbIyXG6d4D94kk8ZG57QeosgdiqfJWhEhlQ==", + "requires": { + "@sindresorhus/is": "^4.0.0", + "@szmarczak/http-timer": "^4.0.5", + "@types/cacheable-request": "^6.0.1", + "@types/responselike": "^1.0.0", + "cacheable-lookup": "^5.0.3", + "cacheable-request": "^7.0.2", + "decompress-response": "^6.0.0", + "http2-wrapper": "^1.0.0-beta.5.2", + "lowercase-keys": "^2.0.0", + "p-cancelable": "^2.0.0", + "responselike": "^2.0.0" + } + }, "lmdb": { "version": "2.5.2", "resolved": "https://registry.npmjs.org/lmdb/-/lmdb-2.5.2.tgz", @@ -2194,13 +2212,13 @@ } }, "@graphql-codegen/typescript": { - "version": "2.5.1", - "resolved": "https://registry.npmjs.org/@graphql-codegen/typescript/-/typescript-2.5.1.tgz", - "integrity": "sha512-D/9V2VfVIE4Mu5UiMGQtxyFU5xe1ZkAZi8g/IsqymW8rqlhTwsGhtk4JR55qPfOYxR8G94RJSJpzgNakRneytw==", + "version": "2.6.0", + "resolved": "https://registry.npmjs.org/@graphql-codegen/typescript/-/typescript-2.6.0.tgz", + "integrity": "sha512-f36ilg8J+wui0OhmQglIZ+2z4Ybc08Y7r7BlBDqfJ1F5X0zau0SlC7Hp2iCoCA0ucqZYtiUU/0n+/R8m1cTrQQ==", "requires": { "@graphql-codegen/plugin-helpers": "^2.4.0", "@graphql-codegen/schema-ast": "^2.4.1", - "@graphql-codegen/visitor-plugin-common": "2.9.1", + "@graphql-codegen/visitor-plugin-common": "2.10.0", "auto-bind": "~4.0.0", "tslib": "~2.4.0" }, @@ -2213,13 +2231,13 @@ } }, "@graphql-codegen/typescript-operations": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/@graphql-codegen/typescript-operations/-/typescript-operations-2.4.2.tgz", - "integrity": "sha512-0/Jk+FxJVOdznSJ+G3KKPbMr2gK67yQetUAUS0FzV9FptVDFkklK/BazKqJJE5dNrj9ubuI2BafXPzSTN4M2Ug==", + "version": "2.4.3", + "resolved": "https://registry.npmjs.org/@graphql-codegen/typescript-operations/-/typescript-operations-2.4.3.tgz", + "integrity": "sha512-MW9cU/zCAmfFAObwW23e+GrW3CoV9OX2gVm/V1565WGZXDQPUc5Y5IjdfGfunV4ApkgFDiHpF1Mz/AS55OErgw==", "requires": { "@graphql-codegen/plugin-helpers": "^2.4.0", - "@graphql-codegen/typescript": "^2.5.1", - "@graphql-codegen/visitor-plugin-common": "2.9.1", + "@graphql-codegen/typescript": "^2.6.0", + "@graphql-codegen/visitor-plugin-common": "2.10.0", "auto-bind": "~4.0.0", "tslib": "~2.4.0" }, @@ -2232,9 +2250,9 @@ } }, "@graphql-codegen/visitor-plugin-common": { - "version": "2.9.1", - "resolved": "https://registry.npmjs.org/@graphql-codegen/visitor-plugin-common/-/visitor-plugin-common-2.9.1.tgz", - "integrity": "sha512-j9eGOSGt+sJcwv0ijhZiQ2cF/0ponscekNVoF+vHdOT4RB0qgOQxykPBk6EbKxIHECnkdV8ARdPVTA21A93/QQ==", + "version": "2.10.0", + "resolved": "https://registry.npmjs.org/@graphql-codegen/visitor-plugin-common/-/visitor-plugin-common-2.10.0.tgz", + "integrity": "sha512-nWoxHKUdwOJCWV96Ks1x4EwYCWsZDJXB+2j6EQz5j27DzdxmQInZ86degaDCd3EgbwhMQEMtiZiPGFFDrgBkHA==", "requires": { "@graphql-codegen/plugin-helpers": "^2.4.0", "@graphql-tools/optimize": "^1.0.1", @@ -3519,9 +3537,9 @@ }, "dependencies": { "globals": { - "version": "13.15.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-13.15.0.tgz", - "integrity": "sha512-bpzcOlgDhMG070Av0Vy5Owklpv1I6+j96GhUI7Rh7IzDCKLzboflLrrfqMu8NquDbiR4EOQk7XzJwqVJxicxog==", + "version": "13.16.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.16.0.tgz", + "integrity": "sha512-A1lrQfpNF+McdPOnnFqY3kSN0AFTy485bTi1bkLk4mVPODIUEcSfhHgRqA+QdXPksrSTTztYXx37NFV+GpGk3Q==", "requires": { "type-fest": "^0.20.2" } @@ -3608,9 +3626,9 @@ } }, "@parcel/source-map": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/@parcel/source-map/-/source-map-2.0.5.tgz", - "integrity": "sha512-DRVlCFKLpqBSIbMxUoVlHgfiv12HTW/U7nnhzw52YgzDVXUX9OA41dXS1PU0pJ1si+D1k8msATUC+AoldN43mg==", + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/@parcel/source-map/-/source-map-2.1.0.tgz", + "integrity": "sha512-E7UOEIof2o89LrKk1agSLmwakjigmEdDp1ZaEdsLVEvq63R/bul4Ij5CT+0ZDcijGpl5tnTbQADY9EyYGtjYgQ==", "requires": { "detect-libc": "^1.0.3" } @@ -4148,9 +4166,9 @@ } }, "@types/eslint-scope": { - "version": "3.7.3", - "resolved": "https://registry.npmjs.org/@types/eslint-scope/-/eslint-scope-3.7.3.tgz", - "integrity": "sha512-PB3ldyrcnAicT35TWPs5IcwKD8S333HMaa2VVv4+wdvebJkjWuW/xESoB8IwRcog8HYVYamb1g/R31Qv5Bx03g==", + "version": "3.7.4", + "resolved": "https://registry.npmjs.org/@types/eslint-scope/-/eslint-scope-3.7.4.tgz", + "integrity": "sha512-9K4zoImiZc3HlIp6AVUDE4CWYx22a+lhSZMYNpbjW04+YF0KWj4pJXnEMjdnFTiQibFFmElcsasJXDbdI/EPhA==", "requires": { "@types/eslint": "*", "@types/estree": "*" @@ -4971,14 +4989,14 @@ } }, "caniuse-lite": { - "version": "1.0.30001359", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001359.tgz", - "integrity": "sha512-Xln/BAsPzEuiVLgJ2/45IaqD9jShtk3Y33anKb4+yLwQzws3+v6odKfpgES/cDEaZMLzSChpIGdbOYtH9MyuHw==" + "version": "1.0.30001363", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001363.tgz", + "integrity": "sha512-HpQhpzTGGPVMnCjIomjt+jvyUu8vNFo3TaDiZ/RcoTrlOq/5+tC8zHdsbgFB6MxmaY+jCpsH09aD80Bb4Ow3Sg==" }, "electron-to-chromium": { - "version": "1.4.172", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.172.tgz", - "integrity": "sha512-yDoFfTJnqBAB6hSiPvzmsBJSrjOXJtHSJoqJdI/zSIh7DYupYnIOHt/bbPw/WE31BJjNTybDdNAs21gCMnTh0Q==" + "version": "1.4.179", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.179.tgz", + "integrity": "sha512-1XeTb/U/8Xgh2YgPOqhakLYsvCcU4U7jUjTMbEnhIJoIWd/Qt3yC8y0cbG+fHzn4zUNF99Ey1xiPf20bwgLO3Q==" } } }, @@ -5182,9 +5200,9 @@ } }, "babel-preset-gatsby": { - "version": "2.17.0", - "resolved": "https://registry.npmjs.org/babel-preset-gatsby/-/babel-preset-gatsby-2.17.0.tgz", - "integrity": "sha512-hLeovvehdKkfFAsfTKCATKQasLyQa49TrJtct5VthERrb2dhkV71NIfmbiEa9Ae5x+qGYhYvufqMROGptewXbQ==", + "version": "2.18.0", + "resolved": "https://registry.npmjs.org/babel-preset-gatsby/-/babel-preset-gatsby-2.18.0.tgz", + "integrity": "sha512-b6BJEl0MlA/nh+IkTJRgvPEgdN09Pu34Szo5dE4QYvQa66++EqfQUK5huqr+FgZJedPPYYbRY2SgKlRXev5QIQ==", "requires": { "@babel/plugin-proposal-class-properties": "^7.14.0", "@babel/plugin-proposal-nullish-coalescing-operator": "^7.14.5", @@ -5199,8 +5217,8 @@ "babel-plugin-dynamic-import-node": "^2.3.3", "babel-plugin-macros": "^3.1.0", "babel-plugin-transform-react-remove-prop-types": "^0.4.24", - "gatsby-core-utils": "^3.17.0", - "gatsby-legacy-polyfills": "^2.17.0" + "gatsby-core-utils": "^3.18.0", + "gatsby-legacy-polyfills": "^2.18.0" }, "dependencies": { "babel-plugin-macros": { @@ -5226,9 +5244,9 @@ } }, "gatsby-core-utils": { - "version": "3.17.0", - "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.17.0.tgz", - "integrity": "sha512-1e0YaqTAEpSSBkpWkY703lu+Bl76ASXUvUcpnNO3CavCYZsRQxAXtMXIKIEvhm1z6zWJmY9HILo6/DjP+PHeyw==", + "version": "3.18.0", + "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.18.0.tgz", + "integrity": "sha512-mCoNgH4MilosLhEroklgVffwie9lyxgmvNwe/oIyzXr6NcZ2uxSp8G1KrgxdG2srt2hCNlZLlzS25ltLTeHTjA==", "requires": { "@babel/runtime": "^7.15.4", "ci-info": "2.0.0", @@ -5236,7 +5254,7 @@ "fastq": "^1.13.0", "file-type": "^16.5.3", "fs-extra": "^10.1.0", - "got": "^11.8.3", + "got": "^11.8.5", "import-from": "^4.0.0", "lmdb": "2.5.2", "lock": "^1.1.0", @@ -5247,6 +5265,24 @@ "xdg-basedir": "^4.0.0" } }, + "got": { + "version": "11.8.5", + "resolved": "https://registry.npmjs.org/got/-/got-11.8.5.tgz", + "integrity": "sha512-o0Je4NvQObAuZPHLFoRSkdG2lTgtcynqymzg2Vupdx6PorhaT5MCbIyXG6d4D94kk8ZG57QeosgdiqfJWhEhlQ==", + "requires": { + "@sindresorhus/is": "^4.0.0", + "@szmarczak/http-timer": "^4.0.5", + "@types/cacheable-request": "^6.0.1", + "@types/responselike": "^1.0.0", + "cacheable-lookup": "^5.0.3", + "cacheable-request": "^7.0.2", + "decompress-response": "^6.0.0", + "http2-wrapper": "^1.0.0-beta.5.2", + "lowercase-keys": "^2.0.0", + "p-cancelable": "^2.0.0", + "responselike": "^2.0.0" + } + }, "lmdb": { "version": "2.5.2", "resolved": "https://registry.npmjs.org/lmdb/-/lmdb-2.5.2.tgz", @@ -6484,9 +6520,9 @@ } }, "create-gatsby": { - "version": "2.17.0", - "resolved": "https://registry.npmjs.org/create-gatsby/-/create-gatsby-2.17.0.tgz", - "integrity": "sha512-RrMAHZL7J5Ew/laz83g+UNQ2RnXszGuub3sG7DQkG0tK5mS9TqTW+FIYyzHCLhdJkr81qC/HRDFsJv0fuYISwg==", + "version": "2.18.0", + "resolved": "https://registry.npmjs.org/create-gatsby/-/create-gatsby-2.18.0.tgz", + "integrity": "sha512-74yn3+wlFKwg3DUVdFdBnfqc6gUVpYjqr/1XtQ0Rb57i0ygvER8Xgp4rY5Mm+8rl7JwBma1NONeM20cdMQjT2w==", "requires": { "@babel/runtime": "^7.15.4" } @@ -7462,9 +7498,9 @@ } }, "globals": { - "version": "13.15.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-13.15.0.tgz", - "integrity": "sha512-bpzcOlgDhMG070Av0Vy5Owklpv1I6+j96GhUI7Rh7IzDCKLzboflLrrfqMu8NquDbiR4EOQk7XzJwqVJxicxog==", + "version": "13.16.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.16.0.tgz", + "integrity": "sha512-A1lrQfpNF+McdPOnnFqY3kSN0AFTy485bTi1bkLk4mVPODIUEcSfhHgRqA+QdXPksrSTTztYXx37NFV+GpGk3Q==", "requires": { "type-fest": "^0.20.2" } @@ -8547,9 +8583,9 @@ "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==" }, "gatsby": { - "version": "4.17.2", - "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-4.17.2.tgz", - "integrity": "sha512-uMNH/X/Fd0kGjelgAPTukgQhxu/aMhRj5YJ07SM4D2yBuO+c4+y1dZRz5q9EUryCeVSx1cSt0J6JMkfzOXmbyA==", + "version": "4.18.0", + "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-4.18.0.tgz", + "integrity": "sha512-EyiwYUsbSKUKsdjm8nnLw5AGJwOJ9NAWcrFg1V/QU4CUnk/M8EiP0TxiGUmK1/K7g82XGxUjuAPYJKJk85yxHA==", "requires": { "@babel/code-frame": "^7.14.0", "@babel/core": "^7.15.5", @@ -8585,15 +8621,15 @@ "babel-plugin-add-module-exports": "^1.0.4", "babel-plugin-dynamic-import-node": "^2.3.3", "babel-plugin-lodash": "^3.3.4", - "babel-plugin-remove-graphql-queries": "^4.17.0", - "babel-preset-gatsby": "^2.17.0", + "babel-plugin-remove-graphql-queries": "^4.18.0", + "babel-preset-gatsby": "^2.18.0", "better-opn": "^2.1.1", "bluebird": "^3.7.2", "body-parser": "^1.19.0", "browserslist": "^4.17.5", "cache-manager": "^2.11.1", "chalk": "^4.1.2", - "chokidar": "^3.5.2", + "chokidar": "^3.5.3", "common-tags": "^1.8.0", "compression": "^1.7.4", "cookie": "^0.4.1", @@ -8615,7 +8651,7 @@ "eslint-plugin-graphql": "^4.0.0", "eslint-plugin-import": "^2.26.0", "eslint-plugin-jsx-a11y": "^6.5.1", - "eslint-plugin-react": "^7.29.4", + "eslint-plugin-react": "^7.30.0", "eslint-plugin-react-hooks": "^4.5.0", "eslint-webpack-plugin": "^2.6.0", "event-source-polyfill": "1.0.25", @@ -8629,21 +8665,21 @@ "find-cache-dir": "^3.3.2", "fs-exists-cached": "1.0.0", "fs-extra": "^10.1.0", - "gatsby-cli": "^4.17.1", - "gatsby-core-utils": "^3.17.0", - "gatsby-graphiql-explorer": "^2.17.0", - "gatsby-legacy-polyfills": "^2.17.0", - "gatsby-link": "^4.17.0", - "gatsby-page-utils": "^2.17.0", - "gatsby-parcel-config": "0.8.0", - "gatsby-plugin-page-creator": "^4.17.0", - "gatsby-plugin-typescript": "^4.17.0", - "gatsby-plugin-utils": "^3.11.0", - "gatsby-react-router-scroll": "^5.17.0", - "gatsby-script": "^1.2.0", - "gatsby-sharp": "^0.11.0", - "gatsby-telemetry": "^3.17.0", - "gatsby-worker": "^1.17.0", + "gatsby-cli": "^4.18.0", + "gatsby-core-utils": "^3.18.0", + "gatsby-graphiql-explorer": "^2.18.0", + "gatsby-legacy-polyfills": "^2.18.0", + "gatsby-link": "^4.18.0", + "gatsby-page-utils": "^2.18.0", + "gatsby-parcel-config": "0.9.0", + "gatsby-plugin-page-creator": "^4.18.0", + "gatsby-plugin-typescript": "^4.18.0", + "gatsby-plugin-utils": "^3.12.0", + "gatsby-react-router-scroll": "^5.18.0", + "gatsby-script": "^1.3.0", + "gatsby-sharp": "^0.12.0", + "gatsby-telemetry": "^3.18.0", + "gatsby-worker": "^1.18.0", "glob": "^7.2.3", "globby": "^11.1.0", "got": "^11.8.2", @@ -8695,7 +8731,6 @@ "slugify": "^1.6.1", "socket.io": "3.1.2", "socket.io-client": "3.1.3", - "source-map-support": "^0.5.20", "st": "^2.0.0", "stack-trace": "^0.0.10", "string-similarity": "^1.2.2", @@ -8734,12 +8769,12 @@ } }, "babel-plugin-remove-graphql-queries": { - "version": "4.17.0", - "resolved": "https://registry.npmjs.org/babel-plugin-remove-graphql-queries/-/babel-plugin-remove-graphql-queries-4.17.0.tgz", - "integrity": "sha512-UovjamHhy5y46WyBO/hfqxrLbMq04o+hlTeqCRzeLol4eWtH+8CufdLAZWYtM1l1BIChwvXCxDY2ugeXlbj7+w==", + "version": "4.18.0", + "resolved": "https://registry.npmjs.org/babel-plugin-remove-graphql-queries/-/babel-plugin-remove-graphql-queries-4.18.0.tgz", + "integrity": "sha512-6oOm/cTZdk+7yPh4R4ISLKNur3rK5w2zAUCXTOGKYcRYbvKCS22ODafQBrNcu/UdfpXwSz3XZOG5ru72Z5usUw==", "requires": { "@babel/runtime": "^7.15.4", - "gatsby-core-utils": "^3.17.0" + "gatsby-core-utils": "^3.18.0" } }, "color-convert": { @@ -8765,9 +8800,9 @@ } }, "gatsby-cli": { - "version": "4.17.1", - "resolved": "https://registry.npmjs.org/gatsby-cli/-/gatsby-cli-4.17.1.tgz", - "integrity": "sha512-yLNRGKo8vyeiqKNTH5MkE0Q3AF6Un1v3MVlXzvoyRNs1DIHwkkZ22jGOB64/KIIR/o2cjRsrKJNCVjGV7qNnzw==", + "version": "4.18.0", + "resolved": "https://registry.npmjs.org/gatsby-cli/-/gatsby-cli-4.18.0.tgz", + "integrity": "sha512-H4V1XvXP3EMwUBDbAlpu3jbjlCetUmHY6VB1YsH2kkIdlMrOgjUgNDFpqjgbk7k7z61du2tCgl1lyW+5he+SnA==", "requires": { "@babel/code-frame": "^7.14.0", "@babel/core": "^7.15.5", @@ -8786,13 +8821,13 @@ "common-tags": "^1.8.2", "configstore": "^5.0.1", "convert-hrtime": "^3.0.0", - "create-gatsby": "^2.17.0", + "create-gatsby": "^2.18.0", "envinfo": "^7.8.1", "execa": "^5.1.1", "fs-exists-cached": "^1.0.0", "fs-extra": "^10.1.0", - "gatsby-core-utils": "^3.17.0", - "gatsby-telemetry": "^3.17.0", + "gatsby-core-utils": "^3.18.0", + "gatsby-telemetry": "^3.18.0", "hosted-git-info": "^3.0.8", "is-valid-path": "^0.1.1", "joi": "^17.4.2", @@ -8816,9 +8851,9 @@ } }, "gatsby-core-utils": { - "version": "3.17.0", - "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.17.0.tgz", - "integrity": "sha512-1e0YaqTAEpSSBkpWkY703lu+Bl76ASXUvUcpnNO3CavCYZsRQxAXtMXIKIEvhm1z6zWJmY9HILo6/DjP+PHeyw==", + "version": "3.18.0", + "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.18.0.tgz", + "integrity": "sha512-mCoNgH4MilosLhEroklgVffwie9lyxgmvNwe/oIyzXr6NcZ2uxSp8G1KrgxdG2srt2hCNlZLlzS25ltLTeHTjA==", "requires": { "@babel/runtime": "^7.15.4", "ci-info": "2.0.0", @@ -8826,7 +8861,7 @@ "fastq": "^1.13.0", "file-type": "^16.5.3", "fs-extra": "^10.1.0", - "got": "^11.8.3", + "got": "^11.8.5", "import-from": "^4.0.0", "lmdb": "2.5.2", "lock": "^1.1.0", @@ -8835,18 +8870,38 @@ "resolve-from": "^5.0.0", "tmp": "^0.2.1", "xdg-basedir": "^4.0.0" + }, + "dependencies": { + "got": { + "version": "11.8.5", + "resolved": "https://registry.npmjs.org/got/-/got-11.8.5.tgz", + "integrity": "sha512-o0Je4NvQObAuZPHLFoRSkdG2lTgtcynqymzg2Vupdx6PorhaT5MCbIyXG6d4D94kk8ZG57QeosgdiqfJWhEhlQ==", + "requires": { + "@sindresorhus/is": "^4.0.0", + "@szmarczak/http-timer": "^4.0.5", + "@types/cacheable-request": "^6.0.1", + "@types/responselike": "^1.0.0", + "cacheable-lookup": "^5.0.3", + "cacheable-request": "^7.0.2", + "decompress-response": "^6.0.0", + "http2-wrapper": "^1.0.0-beta.5.2", + "lowercase-keys": "^2.0.0", + "p-cancelable": "^2.0.0", + "responselike": "^2.0.0" + } + } } }, "gatsby-plugin-utils": { - "version": "3.11.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-utils/-/gatsby-plugin-utils-3.11.0.tgz", - "integrity": "sha512-v2D6O2aME9p7tqlGykq5mgtj7Jqp/CWatgo0zJ7bFWSYPPUpQ7jRVAph1PIgFTAV/CaUrrvt9sxdRaZrglJyug==", + "version": "3.12.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-utils/-/gatsby-plugin-utils-3.12.0.tgz", + "integrity": "sha512-vdz3qwaCOkvgzAxMkZlgpmpWf555jISwek5lyWYhGyJJvXYV8KQ2cZ4CoOfFKAYVeZVSucrHcdWyY3fLLpQvAA==", "requires": { "@babel/runtime": "^7.15.4", "@gatsbyjs/potrace": "^2.2.0", "fs-extra": "^10.1.0", - "gatsby-core-utils": "^3.17.0", - "gatsby-sharp": "^0.11.0", + "gatsby-core-utils": "^3.18.0", + "gatsby-sharp": "^0.12.0", "graphql-compose": "^9.0.7", "import-from": "^4.0.0", "joi": "^17.4.2", @@ -8863,28 +8918,28 @@ } }, "gatsby-sharp": { - "version": "0.11.0", - "resolved": "https://registry.npmjs.org/gatsby-sharp/-/gatsby-sharp-0.11.0.tgz", - "integrity": "sha512-RIbU8qi/Qs7G/KJiY0zyGS9Yic5n4RpDUf/1W3gvRl78Uo3LSuIeGEpaai6mYEnreuGb5fQIcqdkYs/UV3e8WA==", + "version": "0.12.0", + "resolved": "https://registry.npmjs.org/gatsby-sharp/-/gatsby-sharp-0.12.0.tgz", + "integrity": "sha512-dZa/AgxmPzD0vvROEZSuT3IdzAFTxnq1FfLTf9n3mywonvsKYc84zj6nf8TEzBrVrBFAaLvZek4NpVAKWGr4/w==", "requires": { "@types/sharp": "^0.30.0", "sharp": "^0.30.3" } }, "gatsby-telemetry": { - "version": "3.17.0", - "resolved": "https://registry.npmjs.org/gatsby-telemetry/-/gatsby-telemetry-3.17.0.tgz", - "integrity": "sha512-1N4uKj2Yj7AykLmwjsdOmNirf3UmP8CBXjj/LmWf5cLDVbdPqkirAlyD6uTeEliG5UFHPTlBsRi26v558mFYJQ==", + "version": "3.18.0", + "resolved": "https://registry.npmjs.org/gatsby-telemetry/-/gatsby-telemetry-3.18.0.tgz", + "integrity": "sha512-i1JvNqGOyLDPGEn1QN29YGpe2ripg2LZBAOhXmk6lAhRL5fTVo6WkEA2yW7XESnXIOJBFymgVbUlLjXoqeZ5Xg==", "requires": { "@babel/code-frame": "^7.14.0", "@babel/runtime": "^7.15.4", - "@turist/fetch": "^7.1.7", + "@turist/fetch": "^7.2.0", "@turist/time": "^0.0.2", "async-retry-ng": "^2.0.1", "boxen": "^4.2.0", "configstore": "^5.0.1", "fs-extra": "^10.1.0", - "gatsby-core-utils": "^3.17.0", + "gatsby-core-utils": "^3.18.0", "git-up": "^4.0.5", "is-docker": "^2.2.1", "lodash": "^4.17.21", @@ -9024,17 +9079,17 @@ } }, "gatsby-graphiql-explorer": { - "version": "2.17.0", - "resolved": "https://registry.npmjs.org/gatsby-graphiql-explorer/-/gatsby-graphiql-explorer-2.17.0.tgz", - "integrity": "sha512-IWAcxMlOofpg8wRzLGjuey3HunWu3bLilKurX8csD0d+YsuiB4aqZc7dWi2Zc15ZHZ5Hh8zMpOv0MVW9qhjnCg==", + "version": "2.18.0", + "resolved": "https://registry.npmjs.org/gatsby-graphiql-explorer/-/gatsby-graphiql-explorer-2.18.0.tgz", + "integrity": "sha512-mmY+kHc+axpDO9lfjbCEf/0oEIHTcZmpe2PtQAzkhnQHyti3xd9IIafq/1W3QKIJo5c7f40+tR3sFTERqaBeIA==", "requires": { "@babel/runtime": "^7.15.4" } }, "gatsby-legacy-polyfills": { - "version": "2.17.0", - "resolved": "https://registry.npmjs.org/gatsby-legacy-polyfills/-/gatsby-legacy-polyfills-2.17.0.tgz", - "integrity": "sha512-tpONSDutxEZY3vOdUaZ1yE9d0QWZ5/p47juvnhTv0qjGkBwow3gfCpgJwDzWyzKl0w0geesZwlLnaCA3WSEv7Q==", + "version": "2.18.0", + "resolved": "https://registry.npmjs.org/gatsby-legacy-polyfills/-/gatsby-legacy-polyfills-2.18.0.tgz", + "integrity": "sha512-wPnsRUnnab10wyt5VPkIhpJC1k8bVrpn0Sfat1L3JskYwkVIEvquqTmHWkpGMB8SLbXQiJEGCs2TcIrx9riL+w==", "requires": { "@babel/runtime": "^7.15.4", "core-js-compat": "3.9.0" @@ -9057,35 +9112,35 @@ } }, "gatsby-link": { - "version": "4.17.0", - "resolved": "https://registry.npmjs.org/gatsby-link/-/gatsby-link-4.17.0.tgz", - "integrity": "sha512-hDh+9OFMHNQ/5YdDdTcpSMB8xAYSP4OMkRuwmgPKH1jtOuov3pzwFAo19RR34CsOqzKd3LSQbCjIovOksjlAeA==", + "version": "4.18.0", + "resolved": "https://registry.npmjs.org/gatsby-link/-/gatsby-link-4.18.0.tgz", + "integrity": "sha512-nE+Z/iE55Id84YqsQOT1bfPJ/AsupY/4s8i6NllQ8no/PRgDGMpkTG6ANqyt2CHs/bywxch2rv8Ho7Gwsuuueg==", "requires": { "@babel/runtime": "^7.15.4", "@types/reach__router": "^1.3.10", - "gatsby-page-utils": "^2.17.0", + "gatsby-page-utils": "^2.18.0", "prop-types": "^15.8.1" } }, "gatsby-page-utils": { - "version": "2.17.0", - "resolved": "https://registry.npmjs.org/gatsby-page-utils/-/gatsby-page-utils-2.17.0.tgz", - "integrity": "sha512-aeDrvYm6uTXayr/Yw0dNQUy+P9a5TshuG9UnRddCB7jQAR1aufjkNu8WH93l151p4jqUoYGemxgZIhrNv1+i/g==", + "version": "2.18.0", + "resolved": "https://registry.npmjs.org/gatsby-page-utils/-/gatsby-page-utils-2.18.0.tgz", + "integrity": "sha512-qTwlqscKxkBlMd+Mn8xj6sh7L0LbfLGYOPCYozJnukXv8d/6Jyk1nfaP6I82hwj/iyhaBQtk7g8g4XyBJJaESw==", "requires": { "@babel/runtime": "^7.15.4", "bluebird": "^3.7.2", - "chokidar": "^3.5.2", + "chokidar": "^3.5.3", "fs-exists-cached": "^1.0.0", - "gatsby-core-utils": "^3.17.0", + "gatsby-core-utils": "^3.18.0", "glob": "^7.2.3", "lodash": "^4.17.21", "micromatch": "^4.0.5" }, "dependencies": { "gatsby-core-utils": { - "version": "3.17.0", - "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.17.0.tgz", - "integrity": "sha512-1e0YaqTAEpSSBkpWkY703lu+Bl76ASXUvUcpnNO3CavCYZsRQxAXtMXIKIEvhm1z6zWJmY9HILo6/DjP+PHeyw==", + "version": "3.18.0", + "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.18.0.tgz", + "integrity": "sha512-mCoNgH4MilosLhEroklgVffwie9lyxgmvNwe/oIyzXr6NcZ2uxSp8G1KrgxdG2srt2hCNlZLlzS25ltLTeHTjA==", "requires": { "@babel/runtime": "^7.15.4", "ci-info": "2.0.0", @@ -9093,7 +9148,7 @@ "fastq": "^1.13.0", "file-type": "^16.5.3", "fs-extra": "^10.1.0", - "got": "^11.8.3", + "got": "^11.8.5", "import-from": "^4.0.0", "lmdb": "2.5.2", "lock": "^1.1.0", @@ -9104,6 +9159,24 @@ "xdg-basedir": "^4.0.0" } }, + "got": { + "version": "11.8.5", + "resolved": "https://registry.npmjs.org/got/-/got-11.8.5.tgz", + "integrity": "sha512-o0Je4NvQObAuZPHLFoRSkdG2lTgtcynqymzg2Vupdx6PorhaT5MCbIyXG6d4D94kk8ZG57QeosgdiqfJWhEhlQ==", + "requires": { + "@sindresorhus/is": "^4.0.0", + "@szmarczak/http-timer": "^4.0.5", + "@types/cacheable-request": "^6.0.1", + "@types/responselike": "^1.0.0", + "cacheable-lookup": "^5.0.3", + "cacheable-request": "^7.0.2", + "decompress-response": "^6.0.0", + "http2-wrapper": "^1.0.0-beta.5.2", + "lowercase-keys": "^2.0.0", + "p-cancelable": "^2.0.0", + "responselike": "^2.0.0" + } + }, "lmdb": { "version": "2.5.2", "resolved": "https://registry.npmjs.org/lmdb/-/lmdb-2.5.2.tgz", @@ -9140,11 +9213,11 @@ } }, "gatsby-parcel-config": { - "version": "0.8.0", - "resolved": "https://registry.npmjs.org/gatsby-parcel-config/-/gatsby-parcel-config-0.8.0.tgz", - "integrity": "sha512-HzLU8uoJLuakH08T27K8GKx7rcLEVkKVClffAuVKrlcVYhNH+x1LvIwe+uMTIIdfu+YtUpUP1PpTdua6YfrVTQ==", + "version": "0.9.0", + "resolved": "https://registry.npmjs.org/gatsby-parcel-config/-/gatsby-parcel-config-0.9.0.tgz", + "integrity": "sha512-ccGw/L8ylhDgE/4tr52B6tb2jreApOMoYPW75Z8aM2ULRz505fL5mrnkG1fdQDBZSCHx/0j0x2TZyCLrt0Bvlw==", "requires": { - "@gatsbyjs/parcel-namer-relative-to-cwd": "^1.2.0", + "@gatsbyjs/parcel-namer-relative-to-cwd": "1.3.0", "@parcel/bundler-default": "2.6.0", "@parcel/compressor-raw": "2.6.0", "@parcel/namer-default": "2.6.0", @@ -9312,19 +9385,19 @@ } }, "gatsby-plugin-page-creator": { - "version": "4.17.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-page-creator/-/gatsby-plugin-page-creator-4.17.0.tgz", - "integrity": "sha512-Nv1lryCAfo5cWqkVnnqiMC6bmXXXOhdl2efLZKK88QwqT4tZO51gGrgsZGL4mtXtUUSkJXGE8pmjelUOcR+23g==", + "version": "4.18.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-page-creator/-/gatsby-plugin-page-creator-4.18.0.tgz", + "integrity": "sha512-6bY4vJndDw0nBcOuQdX41Wvbctw0y9+a7IavCFJKFeNs+Zo0XH2FX0IAww0slDnSJU6AukJ9qfjHqKJkADAZpQ==", "requires": { "@babel/runtime": "^7.15.4", "@babel/traverse": "^7.15.4", "@sindresorhus/slugify": "^1.1.2", - "chokidar": "^3.5.2", + "chokidar": "^3.5.3", "fs-exists-cached": "^1.0.0", - "gatsby-core-utils": "^3.17.0", - "gatsby-page-utils": "^2.17.0", - "gatsby-plugin-utils": "^3.11.0", - "gatsby-telemetry": "^3.17.0", + "gatsby-core-utils": "^3.18.0", + "gatsby-page-utils": "^2.18.0", + "gatsby-plugin-utils": "^3.12.0", + "gatsby-telemetry": "^3.18.0", "globby": "^11.1.0", "lodash": "^4.17.21" }, @@ -9384,9 +9457,9 @@ } }, "gatsby-core-utils": { - "version": "3.17.0", - "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.17.0.tgz", - "integrity": "sha512-1e0YaqTAEpSSBkpWkY703lu+Bl76ASXUvUcpnNO3CavCYZsRQxAXtMXIKIEvhm1z6zWJmY9HILo6/DjP+PHeyw==", + "version": "3.18.0", + "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.18.0.tgz", + "integrity": "sha512-mCoNgH4MilosLhEroklgVffwie9lyxgmvNwe/oIyzXr6NcZ2uxSp8G1KrgxdG2srt2hCNlZLlzS25ltLTeHTjA==", "requires": { "@babel/runtime": "^7.15.4", "ci-info": "2.0.0", @@ -9394,7 +9467,7 @@ "fastq": "^1.13.0", "file-type": "^16.5.3", "fs-extra": "^10.1.0", - "got": "^11.8.3", + "got": "^11.8.5", "import-from": "^4.0.0", "lmdb": "2.5.2", "lock": "^1.1.0", @@ -9406,15 +9479,15 @@ } }, "gatsby-plugin-utils": { - "version": "3.11.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-utils/-/gatsby-plugin-utils-3.11.0.tgz", - "integrity": "sha512-v2D6O2aME9p7tqlGykq5mgtj7Jqp/CWatgo0zJ7bFWSYPPUpQ7jRVAph1PIgFTAV/CaUrrvt9sxdRaZrglJyug==", + "version": "3.12.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-utils/-/gatsby-plugin-utils-3.12.0.tgz", + "integrity": "sha512-vdz3qwaCOkvgzAxMkZlgpmpWf555jISwek5lyWYhGyJJvXYV8KQ2cZ4CoOfFKAYVeZVSucrHcdWyY3fLLpQvAA==", "requires": { "@babel/runtime": "^7.15.4", "@gatsbyjs/potrace": "^2.2.0", "fs-extra": "^10.1.0", - "gatsby-core-utils": "^3.17.0", - "gatsby-sharp": "^0.11.0", + "gatsby-core-utils": "^3.18.0", + "gatsby-sharp": "^0.12.0", "graphql-compose": "^9.0.7", "import-from": "^4.0.0", "joi": "^17.4.2", @@ -9424,34 +9497,52 @@ } }, "gatsby-sharp": { - "version": "0.11.0", - "resolved": "https://registry.npmjs.org/gatsby-sharp/-/gatsby-sharp-0.11.0.tgz", - "integrity": "sha512-RIbU8qi/Qs7G/KJiY0zyGS9Yic5n4RpDUf/1W3gvRl78Uo3LSuIeGEpaai6mYEnreuGb5fQIcqdkYs/UV3e8WA==", + "version": "0.12.0", + "resolved": "https://registry.npmjs.org/gatsby-sharp/-/gatsby-sharp-0.12.0.tgz", + "integrity": "sha512-dZa/AgxmPzD0vvROEZSuT3IdzAFTxnq1FfLTf9n3mywonvsKYc84zj6nf8TEzBrVrBFAaLvZek4NpVAKWGr4/w==", "requires": { "@types/sharp": "^0.30.0", "sharp": "^0.30.3" } }, "gatsby-telemetry": { - "version": "3.17.0", - "resolved": "https://registry.npmjs.org/gatsby-telemetry/-/gatsby-telemetry-3.17.0.tgz", - "integrity": "sha512-1N4uKj2Yj7AykLmwjsdOmNirf3UmP8CBXjj/LmWf5cLDVbdPqkirAlyD6uTeEliG5UFHPTlBsRi26v558mFYJQ==", + "version": "3.18.0", + "resolved": "https://registry.npmjs.org/gatsby-telemetry/-/gatsby-telemetry-3.18.0.tgz", + "integrity": "sha512-i1JvNqGOyLDPGEn1QN29YGpe2ripg2LZBAOhXmk6lAhRL5fTVo6WkEA2yW7XESnXIOJBFymgVbUlLjXoqeZ5Xg==", "requires": { "@babel/code-frame": "^7.14.0", "@babel/runtime": "^7.15.4", - "@turist/fetch": "^7.1.7", + "@turist/fetch": "^7.2.0", "@turist/time": "^0.0.2", "async-retry-ng": "^2.0.1", "boxen": "^4.2.0", "configstore": "^5.0.1", "fs-extra": "^10.1.0", - "gatsby-core-utils": "^3.17.0", + "gatsby-core-utils": "^3.18.0", "git-up": "^4.0.5", "is-docker": "^2.2.1", "lodash": "^4.17.21", "node-fetch": "^2.6.7" } }, + "got": { + "version": "11.8.5", + "resolved": "https://registry.npmjs.org/got/-/got-11.8.5.tgz", + "integrity": "sha512-o0Je4NvQObAuZPHLFoRSkdG2lTgtcynqymzg2Vupdx6PorhaT5MCbIyXG6d4D94kk8ZG57QeosgdiqfJWhEhlQ==", + "requires": { + "@sindresorhus/is": "^4.0.0", + "@szmarczak/http-timer": "^4.0.5", + "@types/cacheable-request": "^6.0.1", + "@types/responselike": "^1.0.0", + "cacheable-lookup": "^5.0.3", + "cacheable-request": "^7.0.2", + "decompress-response": "^6.0.0", + "http2-wrapper": "^1.0.0-beta.5.2", + "lowercase-keys": "^2.0.0", + "p-cancelable": "^2.0.0", + "responselike": "^2.0.0" + } + }, "has-flag": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", @@ -9597,9 +9688,9 @@ } }, "gatsby-plugin-typescript": { - "version": "4.17.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-typescript/-/gatsby-plugin-typescript-4.17.0.tgz", - "integrity": "sha512-aSO/h4z+jdWBZtEnH17NoZaFchO8LkEcIdNX2saYIjJfa2tMbOR+wnOuQJVAdj61n8ntc1pQkNJxiEK31IaZjw==", + "version": "4.18.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-typescript/-/gatsby-plugin-typescript-4.18.0.tgz", + "integrity": "sha512-SuNBrp57SnovOyhCz0zPkz7begV4UR2XdXUrFsh4N0jWOI5yFNVgENpKlbI/O7JnvgyV5KC/pkobNh3we+0mcQ==", "requires": { "@babel/core": "^7.15.5", "@babel/plugin-proposal-nullish-coalescing-operator": "^7.14.5", @@ -9607,22 +9698,22 @@ "@babel/plugin-proposal-optional-chaining": "^7.14.5", "@babel/preset-typescript": "^7.15.0", "@babel/runtime": "^7.15.4", - "babel-plugin-remove-graphql-queries": "^4.17.0" + "babel-plugin-remove-graphql-queries": "^4.18.0" }, "dependencies": { "babel-plugin-remove-graphql-queries": { - "version": "4.17.0", - "resolved": "https://registry.npmjs.org/babel-plugin-remove-graphql-queries/-/babel-plugin-remove-graphql-queries-4.17.0.tgz", - "integrity": "sha512-UovjamHhy5y46WyBO/hfqxrLbMq04o+hlTeqCRzeLol4eWtH+8CufdLAZWYtM1l1BIChwvXCxDY2ugeXlbj7+w==", + "version": "4.18.0", + "resolved": "https://registry.npmjs.org/babel-plugin-remove-graphql-queries/-/babel-plugin-remove-graphql-queries-4.18.0.tgz", + "integrity": "sha512-6oOm/cTZdk+7yPh4R4ISLKNur3rK5w2zAUCXTOGKYcRYbvKCS22ODafQBrNcu/UdfpXwSz3XZOG5ru72Z5usUw==", "requires": { "@babel/runtime": "^7.15.4", - "gatsby-core-utils": "^3.17.0" + "gatsby-core-utils": "^3.18.0" } }, "gatsby-core-utils": { - "version": "3.17.0", - "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.17.0.tgz", - "integrity": "sha512-1e0YaqTAEpSSBkpWkY703lu+Bl76ASXUvUcpnNO3CavCYZsRQxAXtMXIKIEvhm1z6zWJmY9HILo6/DjP+PHeyw==", + "version": "3.18.0", + "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.18.0.tgz", + "integrity": "sha512-mCoNgH4MilosLhEroklgVffwie9lyxgmvNwe/oIyzXr6NcZ2uxSp8G1KrgxdG2srt2hCNlZLlzS25ltLTeHTjA==", "requires": { "@babel/runtime": "^7.15.4", "ci-info": "2.0.0", @@ -9630,7 +9721,7 @@ "fastq": "^1.13.0", "file-type": "^16.5.3", "fs-extra": "^10.1.0", - "got": "^11.8.3", + "got": "^11.8.5", "import-from": "^4.0.0", "lmdb": "2.5.2", "lock": "^1.1.0", @@ -9641,6 +9732,24 @@ "xdg-basedir": "^4.0.0" } }, + "got": { + "version": "11.8.5", + "resolved": "https://registry.npmjs.org/got/-/got-11.8.5.tgz", + "integrity": "sha512-o0Je4NvQObAuZPHLFoRSkdG2lTgtcynqymzg2Vupdx6PorhaT5MCbIyXG6d4D94kk8ZG57QeosgdiqfJWhEhlQ==", + "requires": { + "@sindresorhus/is": "^4.0.0", + "@szmarczak/http-timer": "^4.0.5", + "@types/cacheable-request": "^6.0.1", + "@types/responselike": "^1.0.0", + "cacheable-lookup": "^5.0.3", + "cacheable-request": "^7.0.2", + "decompress-response": "^6.0.0", + "http2-wrapper": "^1.0.0-beta.5.2", + "lowercase-keys": "^2.0.0", + "p-cancelable": "^2.0.0", + "responselike": "^2.0.0" + } + }, "lmdb": { "version": "2.5.2", "resolved": "https://registry.npmjs.org/lmdb/-/lmdb-2.5.2.tgz", @@ -9745,9 +9854,9 @@ } }, "gatsby-react-router-scroll": { - "version": "5.17.0", - "resolved": "https://registry.npmjs.org/gatsby-react-router-scroll/-/gatsby-react-router-scroll-5.17.0.tgz", - "integrity": "sha512-RwFeZlKL0T8dxpEdlmuQAH+h4ugrQQpl4U2m0Wdo/F9/8/VEiAeX64oa2r2BqiiTf4MzAIIT+5/ONt83FcmZWg==", + "version": "5.18.0", + "resolved": "https://registry.npmjs.org/gatsby-react-router-scroll/-/gatsby-react-router-scroll-5.18.0.tgz", + "integrity": "sha512-/A1k468s6g713c8me5DuGiia8rPWLuwjITQ/pKqgJwioJVB6MnD/iBCbHUTzLHlNwZypAVdGHCN8fCIcPcMb6Q==", "requires": { "@babel/runtime": "^7.15.4", "prop-types": "^15.8.1" @@ -9798,9 +9907,9 @@ } }, "gatsby-script": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/gatsby-script/-/gatsby-script-1.2.0.tgz", - "integrity": "sha512-Fkf6yJxwuQCS6xdFxF0gpiCUiS3PYnRv5I2mCAJV0Cu7k4PYgVpQJt79bcDHvnx755VpXOmZIfMXegACg1XS0w==" + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/gatsby-script/-/gatsby-script-1.3.0.tgz", + "integrity": "sha512-eCz6mcMFpB7kvpmyM7AtMTxNxzdrzPgt8GiuDKWFOlDgk1il6PUjO99QsL/cCeokmaiH/6egVnm9b33/x+sy9A==" }, "gatsby-sharp": { "version": "0.9.0", @@ -10119,9 +10228,9 @@ } }, "gatsby-worker": { - "version": "1.17.0", - "resolved": "https://registry.npmjs.org/gatsby-worker/-/gatsby-worker-1.17.0.tgz", - "integrity": "sha512-hA7awNHmcNWp3TgQkjF0Z3I9YGWpdsf8jUdJOlAjI+aBxQ2vdHTVNwbMdXwtlf9umQRwORnmEzADmQdm0Cx5AA==", + "version": "1.18.0", + "resolved": "https://registry.npmjs.org/gatsby-worker/-/gatsby-worker-1.18.0.tgz", + "integrity": "sha512-gNzqDrYFMXlfXCzdClORyDQWQZKTOF6nRUrhZT8PUxzQViO+DvnEKE3EAQvZizYKW1Hgw7cbiTtLG3qshkNepw==", "requires": { "@babel/core": "^7.15.5", "@babel/runtime": "^7.15.4" @@ -11496,9 +11605,9 @@ "integrity": "sha512-pJiBpiXMbt7dkzXe8Ghj/u4FfXOOa98fPW+bihOJ4SjnoijweJrNThJfd3ifXpXhREjpoF2mZVH1GfS9LV3kHQ==" }, "language-subtag-registry": { - "version": "0.3.21", - "resolved": "https://registry.npmjs.org/language-subtag-registry/-/language-subtag-registry-0.3.21.tgz", - "integrity": "sha512-L0IqwlIXjilBVVYKFT37X9Ih11Um5NEl9cbJIuU/SwP/zEEAbBPOnEeeuxVMf45ydWQRDQN3Nqc96OgbH1K+Pg==" + "version": "0.3.22", + "resolved": "https://registry.npmjs.org/language-subtag-registry/-/language-subtag-registry-0.3.22.tgz", + "integrity": "sha512-tN0MCzyWnoz/4nHS6uxdlFWoUZT7ABptwKPQ52Ea7URk6vll88bWBVhodtnlfEuCcKWNGoc+uGbw1cwa9IKh/w==" }, "language-tags": { "version": "1.0.5", @@ -13230,14 +13339,14 @@ } }, "caniuse-lite": { - "version": "1.0.30001359", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001359.tgz", - "integrity": "sha512-Xln/BAsPzEuiVLgJ2/45IaqD9jShtk3Y33anKb4+yLwQzws3+v6odKfpgES/cDEaZMLzSChpIGdbOYtH9MyuHw==" + "version": "1.0.30001363", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001363.tgz", + "integrity": "sha512-HpQhpzTGGPVMnCjIomjt+jvyUu8vNFo3TaDiZ/RcoTrlOq/5+tC8zHdsbgFB6MxmaY+jCpsH09aD80Bb4Ow3Sg==" }, "electron-to-chromium": { - "version": "1.4.172", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.172.tgz", - "integrity": "sha512-yDoFfTJnqBAB6hSiPvzmsBJSrjOXJtHSJoqJdI/zSIh7DYupYnIOHt/bbPw/WE31BJjNTybDdNAs21gCMnTh0Q==" + "version": "1.4.179", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.179.tgz", + "integrity": "sha512-1XeTb/U/8Xgh2YgPOqhakLYsvCcU4U7jUjTMbEnhIJoIWd/Qt3yC8y0cbG+fHzn4zUNF99Ey1xiPf20bwgLO3Q==" } } }, diff --git a/starters/gatsby-starter-blog-theme/package.json b/starters/gatsby-starter-blog-theme/package.json index f479fbf753eab..32f7215753aed 100644 --- a/starters/gatsby-starter-blog-theme/package.json +++ b/starters/gatsby-starter-blog-theme/package.json @@ -13,7 +13,7 @@ "@emotion/react": "^11.9.3", "@emotion/styled": "^11.9.3", "@mdx-js/react": "^1.6.22", - "gatsby": "^4.17.2", + "gatsby": "^4.18.0", "gatsby-theme-blog": "^4.0.0", "react": "^18.1.0", "react-dom": "^18.1.0", diff --git a/starters/gatsby-starter-minimal-ts/package-lock.json b/starters/gatsby-starter-minimal-ts/package-lock.json index 3a316fe63a1b9..a1c053a2fc453 100644 --- a/starters/gatsby-starter-minimal-ts/package-lock.json +++ b/starters/gatsby-starter-minimal-ts/package-lock.json @@ -1302,9 +1302,9 @@ } }, "globals": { - "version": "13.15.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-13.15.0.tgz", - "integrity": "sha512-bpzcOlgDhMG070Av0Vy5Owklpv1I6+j96GhUI7Rh7IzDCKLzboflLrrfqMu8NquDbiR4EOQk7XzJwqVJxicxog==", + "version": "13.16.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.16.0.tgz", + "integrity": "sha512-A1lrQfpNF+McdPOnnFqY3kSN0AFTy485bTi1bkLk4mVPODIUEcSfhHgRqA+QdXPksrSTTztYXx37NFV+GpGk3Q==", "requires": { "type-fest": "^0.20.2" } @@ -1317,13 +1317,13 @@ } }, "@gatsbyjs/parcel-namer-relative-to-cwd": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/@gatsbyjs/parcel-namer-relative-to-cwd/-/parcel-namer-relative-to-cwd-1.2.0.tgz", - "integrity": "sha512-4iIdquFDl+b+U8Ng0dg6dCtxB/cnH27ERrlQQlxfdaWe8e9CLo8aWc6u3UeuHwNJixBFOUbOgEFaA5qCUPwLCQ==", + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/@gatsbyjs/parcel-namer-relative-to-cwd/-/parcel-namer-relative-to-cwd-1.3.0.tgz", + "integrity": "sha512-nd1lQn7ezg51ekqZm8iZjND8akB7bsGkGe7GdIPdTwbhale2dHLqd74qg+bBrEjv5f5aFZhpJeY9XpeU4emWZQ==", "requires": { "@babel/runtime": "^7.18.0", "@parcel/plugin": "2.6.0", - "gatsby-core-utils": "^3.17.0" + "gatsby-core-utils": "^3.18.0" } }, "@gatsbyjs/potrace": { @@ -1398,13 +1398,13 @@ } }, "@graphql-codegen/typescript": { - "version": "2.5.1", - "resolved": "https://registry.npmjs.org/@graphql-codegen/typescript/-/typescript-2.5.1.tgz", - "integrity": "sha512-D/9V2VfVIE4Mu5UiMGQtxyFU5xe1ZkAZi8g/IsqymW8rqlhTwsGhtk4JR55qPfOYxR8G94RJSJpzgNakRneytw==", + "version": "2.6.0", + "resolved": "https://registry.npmjs.org/@graphql-codegen/typescript/-/typescript-2.6.0.tgz", + "integrity": "sha512-f36ilg8J+wui0OhmQglIZ+2z4Ybc08Y7r7BlBDqfJ1F5X0zau0SlC7Hp2iCoCA0ucqZYtiUU/0n+/R8m1cTrQQ==", "requires": { "@graphql-codegen/plugin-helpers": "^2.4.0", "@graphql-codegen/schema-ast": "^2.4.1", - "@graphql-codegen/visitor-plugin-common": "2.9.1", + "@graphql-codegen/visitor-plugin-common": "2.10.0", "auto-bind": "~4.0.0", "tslib": "~2.4.0" }, @@ -1417,13 +1417,13 @@ } }, "@graphql-codegen/typescript-operations": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/@graphql-codegen/typescript-operations/-/typescript-operations-2.4.2.tgz", - "integrity": "sha512-0/Jk+FxJVOdznSJ+G3KKPbMr2gK67yQetUAUS0FzV9FptVDFkklK/BazKqJJE5dNrj9ubuI2BafXPzSTN4M2Ug==", + "version": "2.4.3", + "resolved": "https://registry.npmjs.org/@graphql-codegen/typescript-operations/-/typescript-operations-2.4.3.tgz", + "integrity": "sha512-MW9cU/zCAmfFAObwW23e+GrW3CoV9OX2gVm/V1565WGZXDQPUc5Y5IjdfGfunV4ApkgFDiHpF1Mz/AS55OErgw==", "requires": { "@graphql-codegen/plugin-helpers": "^2.4.0", - "@graphql-codegen/typescript": "^2.5.1", - "@graphql-codegen/visitor-plugin-common": "2.9.1", + "@graphql-codegen/typescript": "^2.6.0", + "@graphql-codegen/visitor-plugin-common": "2.10.0", "auto-bind": "~4.0.0", "tslib": "~2.4.0" }, @@ -1436,9 +1436,9 @@ } }, "@graphql-codegen/visitor-plugin-common": { - "version": "2.9.1", - "resolved": "https://registry.npmjs.org/@graphql-codegen/visitor-plugin-common/-/visitor-plugin-common-2.9.1.tgz", - "integrity": "sha512-j9eGOSGt+sJcwv0ijhZiQ2cF/0ponscekNVoF+vHdOT4RB0qgOQxykPBk6EbKxIHECnkdV8ARdPVTA21A93/QQ==", + "version": "2.10.0", + "resolved": "https://registry.npmjs.org/@graphql-codegen/visitor-plugin-common/-/visitor-plugin-common-2.10.0.tgz", + "integrity": "sha512-nWoxHKUdwOJCWV96Ks1x4EwYCWsZDJXB+2j6EQz5j27DzdxmQInZ86degaDCd3EgbwhMQEMtiZiPGFFDrgBkHA==", "requires": { "@graphql-codegen/plugin-helpers": "^2.4.0", "@graphql-tools/optimize": "^1.0.1", @@ -2661,9 +2661,9 @@ }, "dependencies": { "globals": { - "version": "13.15.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-13.15.0.tgz", - "integrity": "sha512-bpzcOlgDhMG070Av0Vy5Owklpv1I6+j96GhUI7Rh7IzDCKLzboflLrrfqMu8NquDbiR4EOQk7XzJwqVJxicxog==", + "version": "13.16.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.16.0.tgz", + "integrity": "sha512-A1lrQfpNF+McdPOnnFqY3kSN0AFTy485bTi1bkLk4mVPODIUEcSfhHgRqA+QdXPksrSTTztYXx37NFV+GpGk3Q==", "requires": { "type-fest": "^0.20.2" } @@ -2745,9 +2745,9 @@ } }, "@parcel/source-map": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/@parcel/source-map/-/source-map-2.0.5.tgz", - "integrity": "sha512-DRVlCFKLpqBSIbMxUoVlHgfiv12HTW/U7nnhzw52YgzDVXUX9OA41dXS1PU0pJ1si+D1k8msATUC+AoldN43mg==", + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/@parcel/source-map/-/source-map-2.1.0.tgz", + "integrity": "sha512-E7UOEIof2o89LrKk1agSLmwakjigmEdDp1ZaEdsLVEvq63R/bul4Ij5CT+0ZDcijGpl5tnTbQADY9EyYGtjYgQ==", "requires": { "detect-libc": "^1.0.3" } @@ -3031,9 +3031,9 @@ } }, "@types/eslint-scope": { - "version": "3.7.3", - "resolved": "https://registry.npmjs.org/@types/eslint-scope/-/eslint-scope-3.7.3.tgz", - "integrity": "sha512-PB3ldyrcnAicT35TWPs5IcwKD8S333HMaa2VVv4+wdvebJkjWuW/xESoB8IwRcog8HYVYamb1g/R31Qv5Bx03g==", + "version": "3.7.4", + "resolved": "https://registry.npmjs.org/@types/eslint-scope/-/eslint-scope-3.7.4.tgz", + "integrity": "sha512-9K4zoImiZc3HlIp6AVUDE4CWYx22a+lhSZMYNpbjW04+YF0KWj4pJXnEMjdnFTiQibFFmElcsasJXDbdI/EPhA==", "requires": { "@types/eslint": "*", "@types/estree": "*" @@ -3850,12 +3850,12 @@ } }, "babel-plugin-remove-graphql-queries": { - "version": "4.17.0", - "resolved": "https://registry.npmjs.org/babel-plugin-remove-graphql-queries/-/babel-plugin-remove-graphql-queries-4.17.0.tgz", - "integrity": "sha512-UovjamHhy5y46WyBO/hfqxrLbMq04o+hlTeqCRzeLol4eWtH+8CufdLAZWYtM1l1BIChwvXCxDY2ugeXlbj7+w==", + "version": "4.18.0", + "resolved": "https://registry.npmjs.org/babel-plugin-remove-graphql-queries/-/babel-plugin-remove-graphql-queries-4.18.0.tgz", + "integrity": "sha512-6oOm/cTZdk+7yPh4R4ISLKNur3rK5w2zAUCXTOGKYcRYbvKCS22ODafQBrNcu/UdfpXwSz3XZOG5ru72Z5usUw==", "requires": { "@babel/runtime": "^7.15.4", - "gatsby-core-utils": "^3.17.0" + "gatsby-core-utils": "^3.18.0" } }, "babel-plugin-syntax-trailing-function-commas": { @@ -3903,9 +3903,9 @@ } }, "babel-preset-gatsby": { - "version": "2.17.0", - "resolved": "https://registry.npmjs.org/babel-preset-gatsby/-/babel-preset-gatsby-2.17.0.tgz", - "integrity": "sha512-hLeovvehdKkfFAsfTKCATKQasLyQa49TrJtct5VthERrb2dhkV71NIfmbiEa9Ae5x+qGYhYvufqMROGptewXbQ==", + "version": "2.18.0", + "resolved": "https://registry.npmjs.org/babel-preset-gatsby/-/babel-preset-gatsby-2.18.0.tgz", + "integrity": "sha512-b6BJEl0MlA/nh+IkTJRgvPEgdN09Pu34Szo5dE4QYvQa66++EqfQUK5huqr+FgZJedPPYYbRY2SgKlRXev5QIQ==", "requires": { "@babel/plugin-proposal-class-properties": "^7.14.0", "@babel/plugin-proposal-nullish-coalescing-operator": "^7.14.5", @@ -3920,8 +3920,8 @@ "babel-plugin-dynamic-import-node": "^2.3.3", "babel-plugin-macros": "^3.1.0", "babel-plugin-transform-react-remove-prop-types": "^0.4.24", - "gatsby-core-utils": "^3.17.0", - "gatsby-legacy-polyfills": "^2.17.0" + "gatsby-core-utils": "^3.18.0", + "gatsby-legacy-polyfills": "^2.18.0" } }, "backo2": { @@ -4259,9 +4259,9 @@ } }, "caniuse-lite": { - "version": "1.0.30001359", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001359.tgz", - "integrity": "sha512-Xln/BAsPzEuiVLgJ2/45IaqD9jShtk3Y33anKb4+yLwQzws3+v6odKfpgES/cDEaZMLzSChpIGdbOYtH9MyuHw==" + "version": "1.0.30001363", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001363.tgz", + "integrity": "sha512-HpQhpzTGGPVMnCjIomjt+jvyUu8vNFo3TaDiZ/RcoTrlOq/5+tC8zHdsbgFB6MxmaY+jCpsH09aD80Bb4Ow3Sg==" }, "capital-case": { "version": "1.0.4", @@ -4804,9 +4804,9 @@ } }, "create-gatsby": { - "version": "2.17.0", - "resolved": "https://registry.npmjs.org/create-gatsby/-/create-gatsby-2.17.0.tgz", - "integrity": "sha512-RrMAHZL7J5Ew/laz83g+UNQ2RnXszGuub3sG7DQkG0tK5mS9TqTW+FIYyzHCLhdJkr81qC/HRDFsJv0fuYISwg==", + "version": "2.18.0", + "resolved": "https://registry.npmjs.org/create-gatsby/-/create-gatsby-2.18.0.tgz", + "integrity": "sha512-74yn3+wlFKwg3DUVdFdBnfqc6gUVpYjqr/1XtQ0Rb57i0ygvER8Xgp4rY5Mm+8rl7JwBma1NONeM20cdMQjT2w==", "requires": { "@babel/runtime": "^7.15.4" } @@ -5368,9 +5368,9 @@ "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==" }, "electron-to-chromium": { - "version": "1.4.172", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.172.tgz", - "integrity": "sha512-yDoFfTJnqBAB6hSiPvzmsBJSrjOXJtHSJoqJdI/zSIh7DYupYnIOHt/bbPw/WE31BJjNTybDdNAs21gCMnTh0Q==" + "version": "1.4.179", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.179.tgz", + "integrity": "sha512-1XeTb/U/8Xgh2YgPOqhakLYsvCcU4U7jUjTMbEnhIJoIWd/Qt3yC8y0cbG+fHzn4zUNF99Ey1xiPf20bwgLO3Q==" }, "emoji-regex": { "version": "8.0.0", @@ -5714,9 +5714,9 @@ } }, "globals": { - "version": "13.15.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-13.15.0.tgz", - "integrity": "sha512-bpzcOlgDhMG070Av0Vy5Owklpv1I6+j96GhUI7Rh7IzDCKLzboflLrrfqMu8NquDbiR4EOQk7XzJwqVJxicxog==", + "version": "13.16.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.16.0.tgz", + "integrity": "sha512-A1lrQfpNF+McdPOnnFqY3kSN0AFTy485bTi1bkLk4mVPODIUEcSfhHgRqA+QdXPksrSTTztYXx37NFV+GpGk3Q==", "requires": { "type-fest": "^0.20.2" } @@ -6716,9 +6716,9 @@ "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==" }, "gatsby": { - "version": "4.17.2", - "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-4.17.2.tgz", - "integrity": "sha512-uMNH/X/Fd0kGjelgAPTukgQhxu/aMhRj5YJ07SM4D2yBuO+c4+y1dZRz5q9EUryCeVSx1cSt0J6JMkfzOXmbyA==", + "version": "4.18.0", + "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-4.18.0.tgz", + "integrity": "sha512-EyiwYUsbSKUKsdjm8nnLw5AGJwOJ9NAWcrFg1V/QU4CUnk/M8EiP0TxiGUmK1/K7g82XGxUjuAPYJKJk85yxHA==", "requires": { "@babel/code-frame": "^7.14.0", "@babel/core": "^7.15.5", @@ -6754,15 +6754,15 @@ "babel-plugin-add-module-exports": "^1.0.4", "babel-plugin-dynamic-import-node": "^2.3.3", "babel-plugin-lodash": "^3.3.4", - "babel-plugin-remove-graphql-queries": "^4.17.0", - "babel-preset-gatsby": "^2.17.0", + "babel-plugin-remove-graphql-queries": "^4.18.0", + "babel-preset-gatsby": "^2.18.0", "better-opn": "^2.1.1", "bluebird": "^3.7.2", "body-parser": "^1.19.0", "browserslist": "^4.17.5", "cache-manager": "^2.11.1", "chalk": "^4.1.2", - "chokidar": "^3.5.2", + "chokidar": "^3.5.3", "common-tags": "^1.8.0", "compression": "^1.7.4", "cookie": "^0.4.1", @@ -6784,7 +6784,7 @@ "eslint-plugin-graphql": "^4.0.0", "eslint-plugin-import": "^2.26.0", "eslint-plugin-jsx-a11y": "^6.5.1", - "eslint-plugin-react": "^7.29.4", + "eslint-plugin-react": "^7.30.0", "eslint-plugin-react-hooks": "^4.5.0", "eslint-webpack-plugin": "^2.6.0", "event-source-polyfill": "1.0.25", @@ -6798,21 +6798,21 @@ "find-cache-dir": "^3.3.2", "fs-exists-cached": "1.0.0", "fs-extra": "^10.1.0", - "gatsby-cli": "^4.17.1", - "gatsby-core-utils": "^3.17.0", - "gatsby-graphiql-explorer": "^2.17.0", - "gatsby-legacy-polyfills": "^2.17.0", - "gatsby-link": "^4.17.0", - "gatsby-page-utils": "^2.17.0", - "gatsby-parcel-config": "0.8.0", - "gatsby-plugin-page-creator": "^4.17.0", - "gatsby-plugin-typescript": "^4.17.0", - "gatsby-plugin-utils": "^3.11.0", - "gatsby-react-router-scroll": "^5.17.0", - "gatsby-script": "^1.2.0", - "gatsby-sharp": "^0.11.0", - "gatsby-telemetry": "^3.17.0", - "gatsby-worker": "^1.17.0", + "gatsby-cli": "^4.18.0", + "gatsby-core-utils": "^3.18.0", + "gatsby-graphiql-explorer": "^2.18.0", + "gatsby-legacy-polyfills": "^2.18.0", + "gatsby-link": "^4.18.0", + "gatsby-page-utils": "^2.18.0", + "gatsby-parcel-config": "0.9.0", + "gatsby-plugin-page-creator": "^4.18.0", + "gatsby-plugin-typescript": "^4.18.0", + "gatsby-plugin-utils": "^3.12.0", + "gatsby-react-router-scroll": "^5.18.0", + "gatsby-script": "^1.3.0", + "gatsby-sharp": "^0.12.0", + "gatsby-telemetry": "^3.18.0", + "gatsby-worker": "^1.18.0", "glob": "^7.2.3", "globby": "^11.1.0", "got": "^11.8.2", @@ -6864,7 +6864,6 @@ "slugify": "^1.6.1", "socket.io": "3.1.2", "socket.io-client": "3.1.3", - "source-map-support": "^0.5.20", "st": "^2.0.0", "stack-trace": "^0.0.10", "string-similarity": "^1.2.2", @@ -6886,9 +6885,9 @@ }, "dependencies": { "gatsby-cli": { - "version": "4.17.1", - "resolved": "https://registry.npmjs.org/gatsby-cli/-/gatsby-cli-4.17.1.tgz", - "integrity": "sha512-yLNRGKo8vyeiqKNTH5MkE0Q3AF6Un1v3MVlXzvoyRNs1DIHwkkZ22jGOB64/KIIR/o2cjRsrKJNCVjGV7qNnzw==", + "version": "4.18.0", + "resolved": "https://registry.npmjs.org/gatsby-cli/-/gatsby-cli-4.18.0.tgz", + "integrity": "sha512-H4V1XvXP3EMwUBDbAlpu3jbjlCetUmHY6VB1YsH2kkIdlMrOgjUgNDFpqjgbk7k7z61du2tCgl1lyW+5he+SnA==", "requires": { "@babel/code-frame": "^7.14.0", "@babel/core": "^7.15.5", @@ -6907,13 +6906,13 @@ "common-tags": "^1.8.2", "configstore": "^5.0.1", "convert-hrtime": "^3.0.0", - "create-gatsby": "^2.17.0", + "create-gatsby": "^2.18.0", "envinfo": "^7.8.1", "execa": "^5.1.1", "fs-exists-cached": "^1.0.0", "fs-extra": "^10.1.0", - "gatsby-core-utils": "^3.17.0", - "gatsby-telemetry": "^3.17.0", + "gatsby-core-utils": "^3.18.0", + "gatsby-telemetry": "^3.18.0", "hosted-git-info": "^3.0.8", "is-valid-path": "^0.1.1", "joi": "^17.4.2", @@ -6939,9 +6938,9 @@ } }, "gatsby-core-utils": { - "version": "3.17.0", - "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.17.0.tgz", - "integrity": "sha512-1e0YaqTAEpSSBkpWkY703lu+Bl76ASXUvUcpnNO3CavCYZsRQxAXtMXIKIEvhm1z6zWJmY9HILo6/DjP+PHeyw==", + "version": "3.18.0", + "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.18.0.tgz", + "integrity": "sha512-mCoNgH4MilosLhEroklgVffwie9lyxgmvNwe/oIyzXr6NcZ2uxSp8G1KrgxdG2srt2hCNlZLlzS25ltLTeHTjA==", "requires": { "@babel/runtime": "^7.15.4", "ci-info": "2.0.0", @@ -6949,7 +6948,7 @@ "fastq": "^1.13.0", "file-type": "^16.5.3", "fs-extra": "^10.1.0", - "got": "^11.8.3", + "got": "^11.8.5", "import-from": "^4.0.0", "lmdb": "2.5.2", "lock": "^1.1.0", @@ -6961,17 +6960,17 @@ } }, "gatsby-graphiql-explorer": { - "version": "2.17.0", - "resolved": "https://registry.npmjs.org/gatsby-graphiql-explorer/-/gatsby-graphiql-explorer-2.17.0.tgz", - "integrity": "sha512-IWAcxMlOofpg8wRzLGjuey3HunWu3bLilKurX8csD0d+YsuiB4aqZc7dWi2Zc15ZHZ5Hh8zMpOv0MVW9qhjnCg==", + "version": "2.18.0", + "resolved": "https://registry.npmjs.org/gatsby-graphiql-explorer/-/gatsby-graphiql-explorer-2.18.0.tgz", + "integrity": "sha512-mmY+kHc+axpDO9lfjbCEf/0oEIHTcZmpe2PtQAzkhnQHyti3xd9IIafq/1W3QKIJo5c7f40+tR3sFTERqaBeIA==", "requires": { "@babel/runtime": "^7.15.4" } }, "gatsby-legacy-polyfills": { - "version": "2.17.0", - "resolved": "https://registry.npmjs.org/gatsby-legacy-polyfills/-/gatsby-legacy-polyfills-2.17.0.tgz", - "integrity": "sha512-tpONSDutxEZY3vOdUaZ1yE9d0QWZ5/p47juvnhTv0qjGkBwow3gfCpgJwDzWyzKl0w0geesZwlLnaCA3WSEv7Q==", + "version": "2.18.0", + "resolved": "https://registry.npmjs.org/gatsby-legacy-polyfills/-/gatsby-legacy-polyfills-2.18.0.tgz", + "integrity": "sha512-wPnsRUnnab10wyt5VPkIhpJC1k8bVrpn0Sfat1L3JskYwkVIEvquqTmHWkpGMB8SLbXQiJEGCs2TcIrx9riL+w==", "requires": { "@babel/runtime": "^7.15.4", "core-js-compat": "3.9.0" @@ -6994,37 +6993,37 @@ } }, "gatsby-link": { - "version": "4.17.0", - "resolved": "https://registry.npmjs.org/gatsby-link/-/gatsby-link-4.17.0.tgz", - "integrity": "sha512-hDh+9OFMHNQ/5YdDdTcpSMB8xAYSP4OMkRuwmgPKH1jtOuov3pzwFAo19RR34CsOqzKd3LSQbCjIovOksjlAeA==", + "version": "4.18.0", + "resolved": "https://registry.npmjs.org/gatsby-link/-/gatsby-link-4.18.0.tgz", + "integrity": "sha512-nE+Z/iE55Id84YqsQOT1bfPJ/AsupY/4s8i6NllQ8no/PRgDGMpkTG6ANqyt2CHs/bywxch2rv8Ho7Gwsuuueg==", "requires": { "@babel/runtime": "^7.15.4", "@types/reach__router": "^1.3.10", - "gatsby-page-utils": "^2.17.0", + "gatsby-page-utils": "^2.18.0", "prop-types": "^15.8.1" } }, "gatsby-page-utils": { - "version": "2.17.0", - "resolved": "https://registry.npmjs.org/gatsby-page-utils/-/gatsby-page-utils-2.17.0.tgz", - "integrity": "sha512-aeDrvYm6uTXayr/Yw0dNQUy+P9a5TshuG9UnRddCB7jQAR1aufjkNu8WH93l151p4jqUoYGemxgZIhrNv1+i/g==", + "version": "2.18.0", + "resolved": "https://registry.npmjs.org/gatsby-page-utils/-/gatsby-page-utils-2.18.0.tgz", + "integrity": "sha512-qTwlqscKxkBlMd+Mn8xj6sh7L0LbfLGYOPCYozJnukXv8d/6Jyk1nfaP6I82hwj/iyhaBQtk7g8g4XyBJJaESw==", "requires": { "@babel/runtime": "^7.15.4", "bluebird": "^3.7.2", - "chokidar": "^3.5.2", + "chokidar": "^3.5.3", "fs-exists-cached": "^1.0.0", - "gatsby-core-utils": "^3.17.0", + "gatsby-core-utils": "^3.18.0", "glob": "^7.2.3", "lodash": "^4.17.21", "micromatch": "^4.0.5" } }, "gatsby-parcel-config": { - "version": "0.8.0", - "resolved": "https://registry.npmjs.org/gatsby-parcel-config/-/gatsby-parcel-config-0.8.0.tgz", - "integrity": "sha512-HzLU8uoJLuakH08T27K8GKx7rcLEVkKVClffAuVKrlcVYhNH+x1LvIwe+uMTIIdfu+YtUpUP1PpTdua6YfrVTQ==", + "version": "0.9.0", + "resolved": "https://registry.npmjs.org/gatsby-parcel-config/-/gatsby-parcel-config-0.9.0.tgz", + "integrity": "sha512-ccGw/L8ylhDgE/4tr52B6tb2jreApOMoYPW75Z8aM2ULRz505fL5mrnkG1fdQDBZSCHx/0j0x2TZyCLrt0Bvlw==", "requires": { - "@gatsbyjs/parcel-namer-relative-to-cwd": "^1.2.0", + "@gatsbyjs/parcel-namer-relative-to-cwd": "1.3.0", "@parcel/bundler-default": "2.6.0", "@parcel/compressor-raw": "2.6.0", "@parcel/namer-default": "2.6.0", @@ -7044,27 +7043,27 @@ } }, "gatsby-plugin-page-creator": { - "version": "4.17.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-page-creator/-/gatsby-plugin-page-creator-4.17.0.tgz", - "integrity": "sha512-Nv1lryCAfo5cWqkVnnqiMC6bmXXXOhdl2efLZKK88QwqT4tZO51gGrgsZGL4mtXtUUSkJXGE8pmjelUOcR+23g==", + "version": "4.18.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-page-creator/-/gatsby-plugin-page-creator-4.18.0.tgz", + "integrity": "sha512-6bY4vJndDw0nBcOuQdX41Wvbctw0y9+a7IavCFJKFeNs+Zo0XH2FX0IAww0slDnSJU6AukJ9qfjHqKJkADAZpQ==", "requires": { "@babel/runtime": "^7.15.4", "@babel/traverse": "^7.15.4", "@sindresorhus/slugify": "^1.1.2", - "chokidar": "^3.5.2", + "chokidar": "^3.5.3", "fs-exists-cached": "^1.0.0", - "gatsby-core-utils": "^3.17.0", - "gatsby-page-utils": "^2.17.0", - "gatsby-plugin-utils": "^3.11.0", - "gatsby-telemetry": "^3.17.0", + "gatsby-core-utils": "^3.18.0", + "gatsby-page-utils": "^2.18.0", + "gatsby-plugin-utils": "^3.12.0", + "gatsby-telemetry": "^3.18.0", "globby": "^11.1.0", "lodash": "^4.17.21" } }, "gatsby-plugin-typescript": { - "version": "4.17.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-typescript/-/gatsby-plugin-typescript-4.17.0.tgz", - "integrity": "sha512-aSO/h4z+jdWBZtEnH17NoZaFchO8LkEcIdNX2saYIjJfa2tMbOR+wnOuQJVAdj61n8ntc1pQkNJxiEK31IaZjw==", + "version": "4.18.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-typescript/-/gatsby-plugin-typescript-4.18.0.tgz", + "integrity": "sha512-SuNBrp57SnovOyhCz0zPkz7begV4UR2XdXUrFsh4N0jWOI5yFNVgENpKlbI/O7JnvgyV5KC/pkobNh3we+0mcQ==", "requires": { "@babel/core": "^7.15.5", "@babel/plugin-proposal-nullish-coalescing-operator": "^7.14.5", @@ -7072,19 +7071,19 @@ "@babel/plugin-proposal-optional-chaining": "^7.14.5", "@babel/preset-typescript": "^7.15.0", "@babel/runtime": "^7.15.4", - "babel-plugin-remove-graphql-queries": "^4.17.0" + "babel-plugin-remove-graphql-queries": "^4.18.0" } }, "gatsby-plugin-utils": { - "version": "3.11.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-utils/-/gatsby-plugin-utils-3.11.0.tgz", - "integrity": "sha512-v2D6O2aME9p7tqlGykq5mgtj7Jqp/CWatgo0zJ7bFWSYPPUpQ7jRVAph1PIgFTAV/CaUrrvt9sxdRaZrglJyug==", + "version": "3.12.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-utils/-/gatsby-plugin-utils-3.12.0.tgz", + "integrity": "sha512-vdz3qwaCOkvgzAxMkZlgpmpWf555jISwek5lyWYhGyJJvXYV8KQ2cZ4CoOfFKAYVeZVSucrHcdWyY3fLLpQvAA==", "requires": { "@babel/runtime": "^7.15.4", "@gatsbyjs/potrace": "^2.2.0", "fs-extra": "^10.1.0", - "gatsby-core-utils": "^3.17.0", - "gatsby-sharp": "^0.11.0", + "gatsby-core-utils": "^3.18.0", + "gatsby-sharp": "^0.12.0", "graphql-compose": "^9.0.7", "import-from": "^4.0.0", "joi": "^17.4.2", @@ -7101,42 +7100,42 @@ } }, "gatsby-react-router-scroll": { - "version": "5.17.0", - "resolved": "https://registry.npmjs.org/gatsby-react-router-scroll/-/gatsby-react-router-scroll-5.17.0.tgz", - "integrity": "sha512-RwFeZlKL0T8dxpEdlmuQAH+h4ugrQQpl4U2m0Wdo/F9/8/VEiAeX64oa2r2BqiiTf4MzAIIT+5/ONt83FcmZWg==", + "version": "5.18.0", + "resolved": "https://registry.npmjs.org/gatsby-react-router-scroll/-/gatsby-react-router-scroll-5.18.0.tgz", + "integrity": "sha512-/A1k468s6g713c8me5DuGiia8rPWLuwjITQ/pKqgJwioJVB6MnD/iBCbHUTzLHlNwZypAVdGHCN8fCIcPcMb6Q==", "requires": { "@babel/runtime": "^7.15.4", "prop-types": "^15.8.1" } }, "gatsby-script": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/gatsby-script/-/gatsby-script-1.2.0.tgz", - "integrity": "sha512-Fkf6yJxwuQCS6xdFxF0gpiCUiS3PYnRv5I2mCAJV0Cu7k4PYgVpQJt79bcDHvnx755VpXOmZIfMXegACg1XS0w==" + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/gatsby-script/-/gatsby-script-1.3.0.tgz", + "integrity": "sha512-eCz6mcMFpB7kvpmyM7AtMTxNxzdrzPgt8GiuDKWFOlDgk1il6PUjO99QsL/cCeokmaiH/6egVnm9b33/x+sy9A==" }, "gatsby-sharp": { - "version": "0.11.0", - "resolved": "https://registry.npmjs.org/gatsby-sharp/-/gatsby-sharp-0.11.0.tgz", - "integrity": "sha512-RIbU8qi/Qs7G/KJiY0zyGS9Yic5n4RpDUf/1W3gvRl78Uo3LSuIeGEpaai6mYEnreuGb5fQIcqdkYs/UV3e8WA==", + "version": "0.12.0", + "resolved": "https://registry.npmjs.org/gatsby-sharp/-/gatsby-sharp-0.12.0.tgz", + "integrity": "sha512-dZa/AgxmPzD0vvROEZSuT3IdzAFTxnq1FfLTf9n3mywonvsKYc84zj6nf8TEzBrVrBFAaLvZek4NpVAKWGr4/w==", "requires": { "@types/sharp": "^0.30.0", "sharp": "^0.30.3" } }, "gatsby-telemetry": { - "version": "3.17.0", - "resolved": "https://registry.npmjs.org/gatsby-telemetry/-/gatsby-telemetry-3.17.0.tgz", - "integrity": "sha512-1N4uKj2Yj7AykLmwjsdOmNirf3UmP8CBXjj/LmWf5cLDVbdPqkirAlyD6uTeEliG5UFHPTlBsRi26v558mFYJQ==", + "version": "3.18.0", + "resolved": "https://registry.npmjs.org/gatsby-telemetry/-/gatsby-telemetry-3.18.0.tgz", + "integrity": "sha512-i1JvNqGOyLDPGEn1QN29YGpe2ripg2LZBAOhXmk6lAhRL5fTVo6WkEA2yW7XESnXIOJBFymgVbUlLjXoqeZ5Xg==", "requires": { "@babel/code-frame": "^7.14.0", "@babel/runtime": "^7.15.4", - "@turist/fetch": "^7.1.7", + "@turist/fetch": "^7.2.0", "@turist/time": "^0.0.2", "async-retry-ng": "^2.0.1", "boxen": "^4.2.0", "configstore": "^5.0.1", "fs-extra": "^10.1.0", - "gatsby-core-utils": "^3.17.0", + "gatsby-core-utils": "^3.18.0", "git-up": "^4.0.5", "is-docker": "^2.2.1", "lodash": "^4.17.21", @@ -7209,9 +7208,9 @@ } }, "gatsby-worker": { - "version": "1.17.0", - "resolved": "https://registry.npmjs.org/gatsby-worker/-/gatsby-worker-1.17.0.tgz", - "integrity": "sha512-hA7awNHmcNWp3TgQkjF0Z3I9YGWpdsf8jUdJOlAjI+aBxQ2vdHTVNwbMdXwtlf9umQRwORnmEzADmQdm0Cx5AA==", + "version": "1.18.0", + "resolved": "https://registry.npmjs.org/gatsby-worker/-/gatsby-worker-1.18.0.tgz", + "integrity": "sha512-gNzqDrYFMXlfXCzdClORyDQWQZKTOF6nRUrhZT8PUxzQViO+DvnEKE3EAQvZizYKW1Hgw7cbiTtLG3qshkNepw==", "requires": { "@babel/core": "^7.15.5", "@babel/runtime": "^7.15.4" @@ -8369,9 +8368,9 @@ "integrity": "sha512-pJiBpiXMbt7dkzXe8Ghj/u4FfXOOa98fPW+bihOJ4SjnoijweJrNThJfd3ifXpXhREjpoF2mZVH1GfS9LV3kHQ==" }, "language-subtag-registry": { - "version": "0.3.21", - "resolved": "https://registry.npmjs.org/language-subtag-registry/-/language-subtag-registry-0.3.21.tgz", - "integrity": "sha512-L0IqwlIXjilBVVYKFT37X9Ih11Um5NEl9cbJIuU/SwP/zEEAbBPOnEeeuxVMf45ydWQRDQN3Nqc96OgbH1K+Pg==" + "version": "0.3.22", + "resolved": "https://registry.npmjs.org/language-subtag-registry/-/language-subtag-registry-0.3.22.tgz", + "integrity": "sha512-tN0MCzyWnoz/4nHS6uxdlFWoUZT7ABptwKPQ52Ea7URk6vll88bWBVhodtnlfEuCcKWNGoc+uGbw1cwa9IKh/w==" }, "language-tags": { "version": "1.0.5", @@ -9023,9 +9022,9 @@ } }, "node-gyp-build": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/node-gyp-build/-/node-gyp-build-4.4.0.tgz", - "integrity": "sha512-amJnQCcgtRVw9SvoebO3BKGESClrfXGCUTX9hSn1OuGQTQBOZmVd0Z0OlecpuRksKvbsUqALE8jls/ErClAPuQ==" + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/node-gyp-build/-/node-gyp-build-4.5.0.tgz", + "integrity": "sha512-2iGbaQBV+ITgCz76ZEjmhUKAKVf7xfY1sRl4UiKQspfZMH2h06SyhNsnSVy50cwkFQDGLyif6m/6uFXHkOZ6rg==" }, "node-gyp-build-optional-packages": { "version": "4.3.5", diff --git a/starters/gatsby-starter-minimal-ts/package.json b/starters/gatsby-starter-minimal-ts/package.json index 79616f112ebb6..7b54310fbd401 100644 --- a/starters/gatsby-starter-minimal-ts/package.json +++ b/starters/gatsby-starter-minimal-ts/package.json @@ -17,7 +17,7 @@ }, "license": "0BSD", "dependencies": { - "gatsby": "^4.17.2", + "gatsby": "^4.18.0", "react": "^18.1.0", "react-dom": "^18.1.0" }, diff --git a/starters/gatsby-starter-minimal/package-lock.json b/starters/gatsby-starter-minimal/package-lock.json index c6a87f9a167ca..5b2330aeac71a 100644 --- a/starters/gatsby-starter-minimal/package-lock.json +++ b/starters/gatsby-starter-minimal/package-lock.json @@ -1302,9 +1302,9 @@ } }, "globals": { - "version": "13.15.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-13.15.0.tgz", - "integrity": "sha512-bpzcOlgDhMG070Av0Vy5Owklpv1I6+j96GhUI7Rh7IzDCKLzboflLrrfqMu8NquDbiR4EOQk7XzJwqVJxicxog==", + "version": "13.16.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.16.0.tgz", + "integrity": "sha512-A1lrQfpNF+McdPOnnFqY3kSN0AFTy485bTi1bkLk4mVPODIUEcSfhHgRqA+QdXPksrSTTztYXx37NFV+GpGk3Q==", "requires": { "type-fest": "^0.20.2" } @@ -1317,13 +1317,13 @@ } }, "@gatsbyjs/parcel-namer-relative-to-cwd": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/@gatsbyjs/parcel-namer-relative-to-cwd/-/parcel-namer-relative-to-cwd-1.2.0.tgz", - "integrity": "sha512-4iIdquFDl+b+U8Ng0dg6dCtxB/cnH27ERrlQQlxfdaWe8e9CLo8aWc6u3UeuHwNJixBFOUbOgEFaA5qCUPwLCQ==", + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/@gatsbyjs/parcel-namer-relative-to-cwd/-/parcel-namer-relative-to-cwd-1.3.0.tgz", + "integrity": "sha512-nd1lQn7ezg51ekqZm8iZjND8akB7bsGkGe7GdIPdTwbhale2dHLqd74qg+bBrEjv5f5aFZhpJeY9XpeU4emWZQ==", "requires": { "@babel/runtime": "^7.18.0", "@parcel/plugin": "2.6.0", - "gatsby-core-utils": "^3.17.0" + "gatsby-core-utils": "^3.18.0" } }, "@gatsbyjs/potrace": { @@ -1398,13 +1398,13 @@ } }, "@graphql-codegen/typescript": { - "version": "2.5.1", - "resolved": "https://registry.npmjs.org/@graphql-codegen/typescript/-/typescript-2.5.1.tgz", - "integrity": "sha512-D/9V2VfVIE4Mu5UiMGQtxyFU5xe1ZkAZi8g/IsqymW8rqlhTwsGhtk4JR55qPfOYxR8G94RJSJpzgNakRneytw==", + "version": "2.6.0", + "resolved": "https://registry.npmjs.org/@graphql-codegen/typescript/-/typescript-2.6.0.tgz", + "integrity": "sha512-f36ilg8J+wui0OhmQglIZ+2z4Ybc08Y7r7BlBDqfJ1F5X0zau0SlC7Hp2iCoCA0ucqZYtiUU/0n+/R8m1cTrQQ==", "requires": { "@graphql-codegen/plugin-helpers": "^2.4.0", "@graphql-codegen/schema-ast": "^2.4.1", - "@graphql-codegen/visitor-plugin-common": "2.9.1", + "@graphql-codegen/visitor-plugin-common": "2.10.0", "auto-bind": "~4.0.0", "tslib": "~2.4.0" }, @@ -1417,13 +1417,13 @@ } }, "@graphql-codegen/typescript-operations": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/@graphql-codegen/typescript-operations/-/typescript-operations-2.4.2.tgz", - "integrity": "sha512-0/Jk+FxJVOdznSJ+G3KKPbMr2gK67yQetUAUS0FzV9FptVDFkklK/BazKqJJE5dNrj9ubuI2BafXPzSTN4M2Ug==", + "version": "2.4.3", + "resolved": "https://registry.npmjs.org/@graphql-codegen/typescript-operations/-/typescript-operations-2.4.3.tgz", + "integrity": "sha512-MW9cU/zCAmfFAObwW23e+GrW3CoV9OX2gVm/V1565WGZXDQPUc5Y5IjdfGfunV4ApkgFDiHpF1Mz/AS55OErgw==", "requires": { "@graphql-codegen/plugin-helpers": "^2.4.0", - "@graphql-codegen/typescript": "^2.5.1", - "@graphql-codegen/visitor-plugin-common": "2.9.1", + "@graphql-codegen/typescript": "^2.6.0", + "@graphql-codegen/visitor-plugin-common": "2.10.0", "auto-bind": "~4.0.0", "tslib": "~2.4.0" }, @@ -1436,9 +1436,9 @@ } }, "@graphql-codegen/visitor-plugin-common": { - "version": "2.9.1", - "resolved": "https://registry.npmjs.org/@graphql-codegen/visitor-plugin-common/-/visitor-plugin-common-2.9.1.tgz", - "integrity": "sha512-j9eGOSGt+sJcwv0ijhZiQ2cF/0ponscekNVoF+vHdOT4RB0qgOQxykPBk6EbKxIHECnkdV8ARdPVTA21A93/QQ==", + "version": "2.10.0", + "resolved": "https://registry.npmjs.org/@graphql-codegen/visitor-plugin-common/-/visitor-plugin-common-2.10.0.tgz", + "integrity": "sha512-nWoxHKUdwOJCWV96Ks1x4EwYCWsZDJXB+2j6EQz5j27DzdxmQInZ86degaDCd3EgbwhMQEMtiZiPGFFDrgBkHA==", "requires": { "@graphql-codegen/plugin-helpers": "^2.4.0", "@graphql-tools/optimize": "^1.0.1", @@ -2661,9 +2661,9 @@ }, "dependencies": { "globals": { - "version": "13.15.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-13.15.0.tgz", - "integrity": "sha512-bpzcOlgDhMG070Av0Vy5Owklpv1I6+j96GhUI7Rh7IzDCKLzboflLrrfqMu8NquDbiR4EOQk7XzJwqVJxicxog==", + "version": "13.16.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.16.0.tgz", + "integrity": "sha512-A1lrQfpNF+McdPOnnFqY3kSN0AFTy485bTi1bkLk4mVPODIUEcSfhHgRqA+QdXPksrSTTztYXx37NFV+GpGk3Q==", "requires": { "type-fest": "^0.20.2" } @@ -2745,9 +2745,9 @@ } }, "@parcel/source-map": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/@parcel/source-map/-/source-map-2.0.5.tgz", - "integrity": "sha512-DRVlCFKLpqBSIbMxUoVlHgfiv12HTW/U7nnhzw52YgzDVXUX9OA41dXS1PU0pJ1si+D1k8msATUC+AoldN43mg==", + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/@parcel/source-map/-/source-map-2.1.0.tgz", + "integrity": "sha512-E7UOEIof2o89LrKk1agSLmwakjigmEdDp1ZaEdsLVEvq63R/bul4Ij5CT+0ZDcijGpl5tnTbQADY9EyYGtjYgQ==", "requires": { "detect-libc": "^1.0.3" } @@ -3031,9 +3031,9 @@ } }, "@types/eslint-scope": { - "version": "3.7.3", - "resolved": "https://registry.npmjs.org/@types/eslint-scope/-/eslint-scope-3.7.3.tgz", - "integrity": "sha512-PB3ldyrcnAicT35TWPs5IcwKD8S333HMaa2VVv4+wdvebJkjWuW/xESoB8IwRcog8HYVYamb1g/R31Qv5Bx03g==", + "version": "3.7.4", + "resolved": "https://registry.npmjs.org/@types/eslint-scope/-/eslint-scope-3.7.4.tgz", + "integrity": "sha512-9K4zoImiZc3HlIp6AVUDE4CWYx22a+lhSZMYNpbjW04+YF0KWj4pJXnEMjdnFTiQibFFmElcsasJXDbdI/EPhA==", "requires": { "@types/eslint": "*", "@types/estree": "*" @@ -3113,9 +3113,9 @@ } }, "@types/node": { - "version": "18.0.0", - "resolved": "https://registry.npmjs.org/@types/node/-/node-18.0.0.tgz", - "integrity": "sha512-cHlGmko4gWLVI27cGJntjs/Sj8th9aYwplmZFwmmgYQQvL5NUsgVJG7OddLvNfLqYS31KFN0s3qlaD9qCaxACA==" + "version": "18.0.1", + "resolved": "https://registry.npmjs.org/@types/node/-/node-18.0.1.tgz", + "integrity": "sha512-CmR8+Tsy95hhwtZBKJBs0/FFq4XX7sDZHlGGf+0q+BRZfMbOTkzkj0AFAuTyXbObDIoanaBBW0+KEW+m3N16Wg==" }, "@types/node-fetch": { "version": "2.6.2", @@ -3841,12 +3841,12 @@ } }, "babel-plugin-remove-graphql-queries": { - "version": "4.17.0", - "resolved": "https://registry.npmjs.org/babel-plugin-remove-graphql-queries/-/babel-plugin-remove-graphql-queries-4.17.0.tgz", - "integrity": "sha512-UovjamHhy5y46WyBO/hfqxrLbMq04o+hlTeqCRzeLol4eWtH+8CufdLAZWYtM1l1BIChwvXCxDY2ugeXlbj7+w==", + "version": "4.18.0", + "resolved": "https://registry.npmjs.org/babel-plugin-remove-graphql-queries/-/babel-plugin-remove-graphql-queries-4.18.0.tgz", + "integrity": "sha512-6oOm/cTZdk+7yPh4R4ISLKNur3rK5w2zAUCXTOGKYcRYbvKCS22ODafQBrNcu/UdfpXwSz3XZOG5ru72Z5usUw==", "requires": { "@babel/runtime": "^7.15.4", - "gatsby-core-utils": "^3.17.0" + "gatsby-core-utils": "^3.18.0" } }, "babel-plugin-syntax-trailing-function-commas": { @@ -3894,9 +3894,9 @@ } }, "babel-preset-gatsby": { - "version": "2.17.0", - "resolved": "https://registry.npmjs.org/babel-preset-gatsby/-/babel-preset-gatsby-2.17.0.tgz", - "integrity": "sha512-hLeovvehdKkfFAsfTKCATKQasLyQa49TrJtct5VthERrb2dhkV71NIfmbiEa9Ae5x+qGYhYvufqMROGptewXbQ==", + "version": "2.18.0", + "resolved": "https://registry.npmjs.org/babel-preset-gatsby/-/babel-preset-gatsby-2.18.0.tgz", + "integrity": "sha512-b6BJEl0MlA/nh+IkTJRgvPEgdN09Pu34Szo5dE4QYvQa66++EqfQUK5huqr+FgZJedPPYYbRY2SgKlRXev5QIQ==", "requires": { "@babel/plugin-proposal-class-properties": "^7.14.0", "@babel/plugin-proposal-nullish-coalescing-operator": "^7.14.5", @@ -3911,8 +3911,8 @@ "babel-plugin-dynamic-import-node": "^2.3.3", "babel-plugin-macros": "^3.1.0", "babel-plugin-transform-react-remove-prop-types": "^0.4.24", - "gatsby-core-utils": "^3.17.0", - "gatsby-legacy-polyfills": "^2.17.0" + "gatsby-core-utils": "^3.18.0", + "gatsby-legacy-polyfills": "^2.18.0" } }, "backo2": { @@ -4250,9 +4250,9 @@ } }, "caniuse-lite": { - "version": "1.0.30001359", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001359.tgz", - "integrity": "sha512-Xln/BAsPzEuiVLgJ2/45IaqD9jShtk3Y33anKb4+yLwQzws3+v6odKfpgES/cDEaZMLzSChpIGdbOYtH9MyuHw==" + "version": "1.0.30001363", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001363.tgz", + "integrity": "sha512-HpQhpzTGGPVMnCjIomjt+jvyUu8vNFo3TaDiZ/RcoTrlOq/5+tC8zHdsbgFB6MxmaY+jCpsH09aD80Bb4Ow3Sg==" }, "capital-case": { "version": "1.0.4", @@ -4795,9 +4795,9 @@ } }, "create-gatsby": { - "version": "2.17.0", - "resolved": "https://registry.npmjs.org/create-gatsby/-/create-gatsby-2.17.0.tgz", - "integrity": "sha512-RrMAHZL7J5Ew/laz83g+UNQ2RnXszGuub3sG7DQkG0tK5mS9TqTW+FIYyzHCLhdJkr81qC/HRDFsJv0fuYISwg==", + "version": "2.18.0", + "resolved": "https://registry.npmjs.org/create-gatsby/-/create-gatsby-2.18.0.tgz", + "integrity": "sha512-74yn3+wlFKwg3DUVdFdBnfqc6gUVpYjqr/1XtQ0Rb57i0ygvER8Xgp4rY5Mm+8rl7JwBma1NONeM20cdMQjT2w==", "requires": { "@babel/runtime": "^7.15.4" } @@ -5359,9 +5359,9 @@ "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==" }, "electron-to-chromium": { - "version": "1.4.172", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.172.tgz", - "integrity": "sha512-yDoFfTJnqBAB6hSiPvzmsBJSrjOXJtHSJoqJdI/zSIh7DYupYnIOHt/bbPw/WE31BJjNTybDdNAs21gCMnTh0Q==" + "version": "1.4.179", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.179.tgz", + "integrity": "sha512-1XeTb/U/8Xgh2YgPOqhakLYsvCcU4U7jUjTMbEnhIJoIWd/Qt3yC8y0cbG+fHzn4zUNF99Ey1xiPf20bwgLO3Q==" }, "emoji-regex": { "version": "8.0.0", @@ -5705,9 +5705,9 @@ } }, "globals": { - "version": "13.15.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-13.15.0.tgz", - "integrity": "sha512-bpzcOlgDhMG070Av0Vy5Owklpv1I6+j96GhUI7Rh7IzDCKLzboflLrrfqMu8NquDbiR4EOQk7XzJwqVJxicxog==", + "version": "13.16.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.16.0.tgz", + "integrity": "sha512-A1lrQfpNF+McdPOnnFqY3kSN0AFTy485bTi1bkLk4mVPODIUEcSfhHgRqA+QdXPksrSTTztYXx37NFV+GpGk3Q==", "requires": { "type-fest": "^0.20.2" } @@ -6707,9 +6707,9 @@ "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==" }, "gatsby": { - "version": "4.17.2", - "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-4.17.2.tgz", - "integrity": "sha512-uMNH/X/Fd0kGjelgAPTukgQhxu/aMhRj5YJ07SM4D2yBuO+c4+y1dZRz5q9EUryCeVSx1cSt0J6JMkfzOXmbyA==", + "version": "4.18.0", + "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-4.18.0.tgz", + "integrity": "sha512-EyiwYUsbSKUKsdjm8nnLw5AGJwOJ9NAWcrFg1V/QU4CUnk/M8EiP0TxiGUmK1/K7g82XGxUjuAPYJKJk85yxHA==", "requires": { "@babel/code-frame": "^7.14.0", "@babel/core": "^7.15.5", @@ -6745,15 +6745,15 @@ "babel-plugin-add-module-exports": "^1.0.4", "babel-plugin-dynamic-import-node": "^2.3.3", "babel-plugin-lodash": "^3.3.4", - "babel-plugin-remove-graphql-queries": "^4.17.0", - "babel-preset-gatsby": "^2.17.0", + "babel-plugin-remove-graphql-queries": "^4.18.0", + "babel-preset-gatsby": "^2.18.0", "better-opn": "^2.1.1", "bluebird": "^3.7.2", "body-parser": "^1.19.0", "browserslist": "^4.17.5", "cache-manager": "^2.11.1", "chalk": "^4.1.2", - "chokidar": "^3.5.2", + "chokidar": "^3.5.3", "common-tags": "^1.8.0", "compression": "^1.7.4", "cookie": "^0.4.1", @@ -6775,7 +6775,7 @@ "eslint-plugin-graphql": "^4.0.0", "eslint-plugin-import": "^2.26.0", "eslint-plugin-jsx-a11y": "^6.5.1", - "eslint-plugin-react": "^7.29.4", + "eslint-plugin-react": "^7.30.0", "eslint-plugin-react-hooks": "^4.5.0", "eslint-webpack-plugin": "^2.6.0", "event-source-polyfill": "1.0.25", @@ -6789,21 +6789,21 @@ "find-cache-dir": "^3.3.2", "fs-exists-cached": "1.0.0", "fs-extra": "^10.1.0", - "gatsby-cli": "^4.17.1", - "gatsby-core-utils": "^3.17.0", - "gatsby-graphiql-explorer": "^2.17.0", - "gatsby-legacy-polyfills": "^2.17.0", - "gatsby-link": "^4.17.0", - "gatsby-page-utils": "^2.17.0", - "gatsby-parcel-config": "0.8.0", - "gatsby-plugin-page-creator": "^4.17.0", - "gatsby-plugin-typescript": "^4.17.0", - "gatsby-plugin-utils": "^3.11.0", - "gatsby-react-router-scroll": "^5.17.0", - "gatsby-script": "^1.2.0", - "gatsby-sharp": "^0.11.0", - "gatsby-telemetry": "^3.17.0", - "gatsby-worker": "^1.17.0", + "gatsby-cli": "^4.18.0", + "gatsby-core-utils": "^3.18.0", + "gatsby-graphiql-explorer": "^2.18.0", + "gatsby-legacy-polyfills": "^2.18.0", + "gatsby-link": "^4.18.0", + "gatsby-page-utils": "^2.18.0", + "gatsby-parcel-config": "0.9.0", + "gatsby-plugin-page-creator": "^4.18.0", + "gatsby-plugin-typescript": "^4.18.0", + "gatsby-plugin-utils": "^3.12.0", + "gatsby-react-router-scroll": "^5.18.0", + "gatsby-script": "^1.3.0", + "gatsby-sharp": "^0.12.0", + "gatsby-telemetry": "^3.18.0", + "gatsby-worker": "^1.18.0", "glob": "^7.2.3", "globby": "^11.1.0", "got": "^11.8.2", @@ -6855,7 +6855,6 @@ "slugify": "^1.6.1", "socket.io": "3.1.2", "socket.io-client": "3.1.3", - "source-map-support": "^0.5.20", "st": "^2.0.0", "stack-trace": "^0.0.10", "string-similarity": "^1.2.2", @@ -6877,9 +6876,9 @@ }, "dependencies": { "gatsby-cli": { - "version": "4.17.1", - "resolved": "https://registry.npmjs.org/gatsby-cli/-/gatsby-cli-4.17.1.tgz", - "integrity": "sha512-yLNRGKo8vyeiqKNTH5MkE0Q3AF6Un1v3MVlXzvoyRNs1DIHwkkZ22jGOB64/KIIR/o2cjRsrKJNCVjGV7qNnzw==", + "version": "4.18.0", + "resolved": "https://registry.npmjs.org/gatsby-cli/-/gatsby-cli-4.18.0.tgz", + "integrity": "sha512-H4V1XvXP3EMwUBDbAlpu3jbjlCetUmHY6VB1YsH2kkIdlMrOgjUgNDFpqjgbk7k7z61du2tCgl1lyW+5he+SnA==", "requires": { "@babel/code-frame": "^7.14.0", "@babel/core": "^7.15.5", @@ -6898,13 +6897,13 @@ "common-tags": "^1.8.2", "configstore": "^5.0.1", "convert-hrtime": "^3.0.0", - "create-gatsby": "^2.17.0", + "create-gatsby": "^2.18.0", "envinfo": "^7.8.1", "execa": "^5.1.1", "fs-exists-cached": "^1.0.0", "fs-extra": "^10.1.0", - "gatsby-core-utils": "^3.17.0", - "gatsby-telemetry": "^3.17.0", + "gatsby-core-utils": "^3.18.0", + "gatsby-telemetry": "^3.18.0", "hosted-git-info": "^3.0.8", "is-valid-path": "^0.1.1", "joi": "^17.4.2", @@ -6930,9 +6929,9 @@ } }, "gatsby-core-utils": { - "version": "3.17.0", - "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.17.0.tgz", - "integrity": "sha512-1e0YaqTAEpSSBkpWkY703lu+Bl76ASXUvUcpnNO3CavCYZsRQxAXtMXIKIEvhm1z6zWJmY9HILo6/DjP+PHeyw==", + "version": "3.18.0", + "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.18.0.tgz", + "integrity": "sha512-mCoNgH4MilosLhEroklgVffwie9lyxgmvNwe/oIyzXr6NcZ2uxSp8G1KrgxdG2srt2hCNlZLlzS25ltLTeHTjA==", "requires": { "@babel/runtime": "^7.15.4", "ci-info": "2.0.0", @@ -6940,7 +6939,7 @@ "fastq": "^1.13.0", "file-type": "^16.5.3", "fs-extra": "^10.1.0", - "got": "^11.8.3", + "got": "^11.8.5", "import-from": "^4.0.0", "lmdb": "2.5.2", "lock": "^1.1.0", @@ -6952,17 +6951,17 @@ } }, "gatsby-graphiql-explorer": { - "version": "2.17.0", - "resolved": "https://registry.npmjs.org/gatsby-graphiql-explorer/-/gatsby-graphiql-explorer-2.17.0.tgz", - "integrity": "sha512-IWAcxMlOofpg8wRzLGjuey3HunWu3bLilKurX8csD0d+YsuiB4aqZc7dWi2Zc15ZHZ5Hh8zMpOv0MVW9qhjnCg==", + "version": "2.18.0", + "resolved": "https://registry.npmjs.org/gatsby-graphiql-explorer/-/gatsby-graphiql-explorer-2.18.0.tgz", + "integrity": "sha512-mmY+kHc+axpDO9lfjbCEf/0oEIHTcZmpe2PtQAzkhnQHyti3xd9IIafq/1W3QKIJo5c7f40+tR3sFTERqaBeIA==", "requires": { "@babel/runtime": "^7.15.4" } }, "gatsby-legacy-polyfills": { - "version": "2.17.0", - "resolved": "https://registry.npmjs.org/gatsby-legacy-polyfills/-/gatsby-legacy-polyfills-2.17.0.tgz", - "integrity": "sha512-tpONSDutxEZY3vOdUaZ1yE9d0QWZ5/p47juvnhTv0qjGkBwow3gfCpgJwDzWyzKl0w0geesZwlLnaCA3WSEv7Q==", + "version": "2.18.0", + "resolved": "https://registry.npmjs.org/gatsby-legacy-polyfills/-/gatsby-legacy-polyfills-2.18.0.tgz", + "integrity": "sha512-wPnsRUnnab10wyt5VPkIhpJC1k8bVrpn0Sfat1L3JskYwkVIEvquqTmHWkpGMB8SLbXQiJEGCs2TcIrx9riL+w==", "requires": { "@babel/runtime": "^7.15.4", "core-js-compat": "3.9.0" @@ -6985,37 +6984,37 @@ } }, "gatsby-link": { - "version": "4.17.0", - "resolved": "https://registry.npmjs.org/gatsby-link/-/gatsby-link-4.17.0.tgz", - "integrity": "sha512-hDh+9OFMHNQ/5YdDdTcpSMB8xAYSP4OMkRuwmgPKH1jtOuov3pzwFAo19RR34CsOqzKd3LSQbCjIovOksjlAeA==", + "version": "4.18.0", + "resolved": "https://registry.npmjs.org/gatsby-link/-/gatsby-link-4.18.0.tgz", + "integrity": "sha512-nE+Z/iE55Id84YqsQOT1bfPJ/AsupY/4s8i6NllQ8no/PRgDGMpkTG6ANqyt2CHs/bywxch2rv8Ho7Gwsuuueg==", "requires": { "@babel/runtime": "^7.15.4", "@types/reach__router": "^1.3.10", - "gatsby-page-utils": "^2.17.0", + "gatsby-page-utils": "^2.18.0", "prop-types": "^15.8.1" } }, "gatsby-page-utils": { - "version": "2.17.0", - "resolved": "https://registry.npmjs.org/gatsby-page-utils/-/gatsby-page-utils-2.17.0.tgz", - "integrity": "sha512-aeDrvYm6uTXayr/Yw0dNQUy+P9a5TshuG9UnRddCB7jQAR1aufjkNu8WH93l151p4jqUoYGemxgZIhrNv1+i/g==", + "version": "2.18.0", + "resolved": "https://registry.npmjs.org/gatsby-page-utils/-/gatsby-page-utils-2.18.0.tgz", + "integrity": "sha512-qTwlqscKxkBlMd+Mn8xj6sh7L0LbfLGYOPCYozJnukXv8d/6Jyk1nfaP6I82hwj/iyhaBQtk7g8g4XyBJJaESw==", "requires": { "@babel/runtime": "^7.15.4", "bluebird": "^3.7.2", - "chokidar": "^3.5.2", + "chokidar": "^3.5.3", "fs-exists-cached": "^1.0.0", - "gatsby-core-utils": "^3.17.0", + "gatsby-core-utils": "^3.18.0", "glob": "^7.2.3", "lodash": "^4.17.21", "micromatch": "^4.0.5" } }, "gatsby-parcel-config": { - "version": "0.8.0", - "resolved": "https://registry.npmjs.org/gatsby-parcel-config/-/gatsby-parcel-config-0.8.0.tgz", - "integrity": "sha512-HzLU8uoJLuakH08T27K8GKx7rcLEVkKVClffAuVKrlcVYhNH+x1LvIwe+uMTIIdfu+YtUpUP1PpTdua6YfrVTQ==", + "version": "0.9.0", + "resolved": "https://registry.npmjs.org/gatsby-parcel-config/-/gatsby-parcel-config-0.9.0.tgz", + "integrity": "sha512-ccGw/L8ylhDgE/4tr52B6tb2jreApOMoYPW75Z8aM2ULRz505fL5mrnkG1fdQDBZSCHx/0j0x2TZyCLrt0Bvlw==", "requires": { - "@gatsbyjs/parcel-namer-relative-to-cwd": "^1.2.0", + "@gatsbyjs/parcel-namer-relative-to-cwd": "1.3.0", "@parcel/bundler-default": "2.6.0", "@parcel/compressor-raw": "2.6.0", "@parcel/namer-default": "2.6.0", @@ -7035,27 +7034,27 @@ } }, "gatsby-plugin-page-creator": { - "version": "4.17.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-page-creator/-/gatsby-plugin-page-creator-4.17.0.tgz", - "integrity": "sha512-Nv1lryCAfo5cWqkVnnqiMC6bmXXXOhdl2efLZKK88QwqT4tZO51gGrgsZGL4mtXtUUSkJXGE8pmjelUOcR+23g==", + "version": "4.18.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-page-creator/-/gatsby-plugin-page-creator-4.18.0.tgz", + "integrity": "sha512-6bY4vJndDw0nBcOuQdX41Wvbctw0y9+a7IavCFJKFeNs+Zo0XH2FX0IAww0slDnSJU6AukJ9qfjHqKJkADAZpQ==", "requires": { "@babel/runtime": "^7.15.4", "@babel/traverse": "^7.15.4", "@sindresorhus/slugify": "^1.1.2", - "chokidar": "^3.5.2", + "chokidar": "^3.5.3", "fs-exists-cached": "^1.0.0", - "gatsby-core-utils": "^3.17.0", - "gatsby-page-utils": "^2.17.0", - "gatsby-plugin-utils": "^3.11.0", - "gatsby-telemetry": "^3.17.0", + "gatsby-core-utils": "^3.18.0", + "gatsby-page-utils": "^2.18.0", + "gatsby-plugin-utils": "^3.12.0", + "gatsby-telemetry": "^3.18.0", "globby": "^11.1.0", "lodash": "^4.17.21" } }, "gatsby-plugin-typescript": { - "version": "4.17.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-typescript/-/gatsby-plugin-typescript-4.17.0.tgz", - "integrity": "sha512-aSO/h4z+jdWBZtEnH17NoZaFchO8LkEcIdNX2saYIjJfa2tMbOR+wnOuQJVAdj61n8ntc1pQkNJxiEK31IaZjw==", + "version": "4.18.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-typescript/-/gatsby-plugin-typescript-4.18.0.tgz", + "integrity": "sha512-SuNBrp57SnovOyhCz0zPkz7begV4UR2XdXUrFsh4N0jWOI5yFNVgENpKlbI/O7JnvgyV5KC/pkobNh3we+0mcQ==", "requires": { "@babel/core": "^7.15.5", "@babel/plugin-proposal-nullish-coalescing-operator": "^7.14.5", @@ -7063,19 +7062,19 @@ "@babel/plugin-proposal-optional-chaining": "^7.14.5", "@babel/preset-typescript": "^7.15.0", "@babel/runtime": "^7.15.4", - "babel-plugin-remove-graphql-queries": "^4.17.0" + "babel-plugin-remove-graphql-queries": "^4.18.0" } }, "gatsby-plugin-utils": { - "version": "3.11.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-utils/-/gatsby-plugin-utils-3.11.0.tgz", - "integrity": "sha512-v2D6O2aME9p7tqlGykq5mgtj7Jqp/CWatgo0zJ7bFWSYPPUpQ7jRVAph1PIgFTAV/CaUrrvt9sxdRaZrglJyug==", + "version": "3.12.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-utils/-/gatsby-plugin-utils-3.12.0.tgz", + "integrity": "sha512-vdz3qwaCOkvgzAxMkZlgpmpWf555jISwek5lyWYhGyJJvXYV8KQ2cZ4CoOfFKAYVeZVSucrHcdWyY3fLLpQvAA==", "requires": { "@babel/runtime": "^7.15.4", "@gatsbyjs/potrace": "^2.2.0", "fs-extra": "^10.1.0", - "gatsby-core-utils": "^3.17.0", - "gatsby-sharp": "^0.11.0", + "gatsby-core-utils": "^3.18.0", + "gatsby-sharp": "^0.12.0", "graphql-compose": "^9.0.7", "import-from": "^4.0.0", "joi": "^17.4.2", @@ -7092,42 +7091,42 @@ } }, "gatsby-react-router-scroll": { - "version": "5.17.0", - "resolved": "https://registry.npmjs.org/gatsby-react-router-scroll/-/gatsby-react-router-scroll-5.17.0.tgz", - "integrity": "sha512-RwFeZlKL0T8dxpEdlmuQAH+h4ugrQQpl4U2m0Wdo/F9/8/VEiAeX64oa2r2BqiiTf4MzAIIT+5/ONt83FcmZWg==", + "version": "5.18.0", + "resolved": "https://registry.npmjs.org/gatsby-react-router-scroll/-/gatsby-react-router-scroll-5.18.0.tgz", + "integrity": "sha512-/A1k468s6g713c8me5DuGiia8rPWLuwjITQ/pKqgJwioJVB6MnD/iBCbHUTzLHlNwZypAVdGHCN8fCIcPcMb6Q==", "requires": { "@babel/runtime": "^7.15.4", "prop-types": "^15.8.1" } }, "gatsby-script": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/gatsby-script/-/gatsby-script-1.2.0.tgz", - "integrity": "sha512-Fkf6yJxwuQCS6xdFxF0gpiCUiS3PYnRv5I2mCAJV0Cu7k4PYgVpQJt79bcDHvnx755VpXOmZIfMXegACg1XS0w==" + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/gatsby-script/-/gatsby-script-1.3.0.tgz", + "integrity": "sha512-eCz6mcMFpB7kvpmyM7AtMTxNxzdrzPgt8GiuDKWFOlDgk1il6PUjO99QsL/cCeokmaiH/6egVnm9b33/x+sy9A==" }, "gatsby-sharp": { - "version": "0.11.0", - "resolved": "https://registry.npmjs.org/gatsby-sharp/-/gatsby-sharp-0.11.0.tgz", - "integrity": "sha512-RIbU8qi/Qs7G/KJiY0zyGS9Yic5n4RpDUf/1W3gvRl78Uo3LSuIeGEpaai6mYEnreuGb5fQIcqdkYs/UV3e8WA==", + "version": "0.12.0", + "resolved": "https://registry.npmjs.org/gatsby-sharp/-/gatsby-sharp-0.12.0.tgz", + "integrity": "sha512-dZa/AgxmPzD0vvROEZSuT3IdzAFTxnq1FfLTf9n3mywonvsKYc84zj6nf8TEzBrVrBFAaLvZek4NpVAKWGr4/w==", "requires": { "@types/sharp": "^0.30.0", "sharp": "^0.30.3" } }, "gatsby-telemetry": { - "version": "3.17.0", - "resolved": "https://registry.npmjs.org/gatsby-telemetry/-/gatsby-telemetry-3.17.0.tgz", - "integrity": "sha512-1N4uKj2Yj7AykLmwjsdOmNirf3UmP8CBXjj/LmWf5cLDVbdPqkirAlyD6uTeEliG5UFHPTlBsRi26v558mFYJQ==", + "version": "3.18.0", + "resolved": "https://registry.npmjs.org/gatsby-telemetry/-/gatsby-telemetry-3.18.0.tgz", + "integrity": "sha512-i1JvNqGOyLDPGEn1QN29YGpe2ripg2LZBAOhXmk6lAhRL5fTVo6WkEA2yW7XESnXIOJBFymgVbUlLjXoqeZ5Xg==", "requires": { "@babel/code-frame": "^7.14.0", "@babel/runtime": "^7.15.4", - "@turist/fetch": "^7.1.7", + "@turist/fetch": "^7.2.0", "@turist/time": "^0.0.2", "async-retry-ng": "^2.0.1", "boxen": "^4.2.0", "configstore": "^5.0.1", "fs-extra": "^10.1.0", - "gatsby-core-utils": "^3.17.0", + "gatsby-core-utils": "^3.18.0", "git-up": "^4.0.5", "is-docker": "^2.2.1", "lodash": "^4.17.21", @@ -7200,9 +7199,9 @@ } }, "gatsby-worker": { - "version": "1.17.0", - "resolved": "https://registry.npmjs.org/gatsby-worker/-/gatsby-worker-1.17.0.tgz", - "integrity": "sha512-hA7awNHmcNWp3TgQkjF0Z3I9YGWpdsf8jUdJOlAjI+aBxQ2vdHTVNwbMdXwtlf9umQRwORnmEzADmQdm0Cx5AA==", + "version": "1.18.0", + "resolved": "https://registry.npmjs.org/gatsby-worker/-/gatsby-worker-1.18.0.tgz", + "integrity": "sha512-gNzqDrYFMXlfXCzdClORyDQWQZKTOF6nRUrhZT8PUxzQViO+DvnEKE3EAQvZizYKW1Hgw7cbiTtLG3qshkNepw==", "requires": { "@babel/core": "^7.15.5", "@babel/runtime": "^7.15.4" @@ -8360,9 +8359,9 @@ "integrity": "sha512-pJiBpiXMbt7dkzXe8Ghj/u4FfXOOa98fPW+bihOJ4SjnoijweJrNThJfd3ifXpXhREjpoF2mZVH1GfS9LV3kHQ==" }, "language-subtag-registry": { - "version": "0.3.21", - "resolved": "https://registry.npmjs.org/language-subtag-registry/-/language-subtag-registry-0.3.21.tgz", - "integrity": "sha512-L0IqwlIXjilBVVYKFT37X9Ih11Um5NEl9cbJIuU/SwP/zEEAbBPOnEeeuxVMf45ydWQRDQN3Nqc96OgbH1K+Pg==" + "version": "0.3.22", + "resolved": "https://registry.npmjs.org/language-subtag-registry/-/language-subtag-registry-0.3.22.tgz", + "integrity": "sha512-tN0MCzyWnoz/4nHS6uxdlFWoUZT7ABptwKPQ52Ea7URk6vll88bWBVhodtnlfEuCcKWNGoc+uGbw1cwa9IKh/w==" }, "language-tags": { "version": "1.0.5", @@ -9014,9 +9013,9 @@ } }, "node-gyp-build": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/node-gyp-build/-/node-gyp-build-4.4.0.tgz", - "integrity": "sha512-amJnQCcgtRVw9SvoebO3BKGESClrfXGCUTX9hSn1OuGQTQBOZmVd0Z0OlecpuRksKvbsUqALE8jls/ErClAPuQ==" + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/node-gyp-build/-/node-gyp-build-4.5.0.tgz", + "integrity": "sha512-2iGbaQBV+ITgCz76ZEjmhUKAKVf7xfY1sRl4UiKQspfZMH2h06SyhNsnSVy50cwkFQDGLyif6m/6uFXHkOZ6rg==" }, "node-gyp-build-optional-packages": { "version": "4.3.5", diff --git a/starters/gatsby-starter-minimal/package.json b/starters/gatsby-starter-minimal/package.json index cbfa97895e519..a9cb1aa06a75b 100644 --- a/starters/gatsby-starter-minimal/package.json +++ b/starters/gatsby-starter-minimal/package.json @@ -16,7 +16,7 @@ }, "license": "0BSD", "dependencies": { - "gatsby": "^4.17.2", + "gatsby": "^4.18.0", "react": "^18.1.0", "react-dom": "^18.1.0" } diff --git a/starters/gatsby-starter-notes-theme/package-lock.json b/starters/gatsby-starter-notes-theme/package-lock.json index 3e4839b2471a4..f596414281d85 100644 --- a/starters/gatsby-starter-notes-theme/package-lock.json +++ b/starters/gatsby-starter-notes-theme/package-lock.json @@ -1672,9 +1672,9 @@ } }, "globals": { - "version": "13.15.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-13.15.0.tgz", - "integrity": "sha512-bpzcOlgDhMG070Av0Vy5Owklpv1I6+j96GhUI7Rh7IzDCKLzboflLrrfqMu8NquDbiR4EOQk7XzJwqVJxicxog==", + "version": "13.16.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.16.0.tgz", + "integrity": "sha512-A1lrQfpNF+McdPOnnFqY3kSN0AFTy485bTi1bkLk4mVPODIUEcSfhHgRqA+QdXPksrSTTztYXx37NFV+GpGk3Q==", "requires": { "type-fest": "^0.20.2" } @@ -1687,13 +1687,13 @@ } }, "@gatsbyjs/parcel-namer-relative-to-cwd": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/@gatsbyjs/parcel-namer-relative-to-cwd/-/parcel-namer-relative-to-cwd-1.2.0.tgz", - "integrity": "sha512-4iIdquFDl+b+U8Ng0dg6dCtxB/cnH27ERrlQQlxfdaWe8e9CLo8aWc6u3UeuHwNJixBFOUbOgEFaA5qCUPwLCQ==", + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/@gatsbyjs/parcel-namer-relative-to-cwd/-/parcel-namer-relative-to-cwd-1.3.0.tgz", + "integrity": "sha512-nd1lQn7ezg51ekqZm8iZjND8akB7bsGkGe7GdIPdTwbhale2dHLqd74qg+bBrEjv5f5aFZhpJeY9XpeU4emWZQ==", "requires": { "@babel/runtime": "^7.18.0", "@parcel/plugin": "2.6.0", - "gatsby-core-utils": "^3.17.0" + "gatsby-core-utils": "^3.18.0" }, "dependencies": { "@babel/runtime": { @@ -1715,9 +1715,9 @@ } }, "gatsby-core-utils": { - "version": "3.17.0", - "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.17.0.tgz", - "integrity": "sha512-1e0YaqTAEpSSBkpWkY703lu+Bl76ASXUvUcpnNO3CavCYZsRQxAXtMXIKIEvhm1z6zWJmY9HILo6/DjP+PHeyw==", + "version": "3.18.0", + "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.18.0.tgz", + "integrity": "sha512-mCoNgH4MilosLhEroklgVffwie9lyxgmvNwe/oIyzXr6NcZ2uxSp8G1KrgxdG2srt2hCNlZLlzS25ltLTeHTjA==", "requires": { "@babel/runtime": "^7.15.4", "ci-info": "2.0.0", @@ -1725,7 +1725,7 @@ "fastq": "^1.13.0", "file-type": "^16.5.3", "fs-extra": "^10.1.0", - "got": "^11.8.3", + "got": "^11.8.5", "import-from": "^4.0.0", "lmdb": "2.5.2", "lock": "^1.1.0", @@ -1736,6 +1736,24 @@ "xdg-basedir": "^4.0.0" } }, + "got": { + "version": "11.8.5", + "resolved": "https://registry.npmjs.org/got/-/got-11.8.5.tgz", + "integrity": "sha512-o0Je4NvQObAuZPHLFoRSkdG2lTgtcynqymzg2Vupdx6PorhaT5MCbIyXG6d4D94kk8ZG57QeosgdiqfJWhEhlQ==", + "requires": { + "@sindresorhus/is": "^4.0.0", + "@szmarczak/http-timer": "^4.0.5", + "@types/cacheable-request": "^6.0.1", + "@types/responselike": "^1.0.0", + "cacheable-lookup": "^5.0.3", + "cacheable-request": "^7.0.2", + "decompress-response": "^6.0.0", + "http2-wrapper": "^1.0.0-beta.5.2", + "lowercase-keys": "^2.0.0", + "p-cancelable": "^2.0.0", + "responselike": "^2.0.0" + } + }, "jsonfile": { "version": "6.1.0", "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", @@ -1857,13 +1875,13 @@ } }, "@graphql-codegen/typescript": { - "version": "2.5.1", - "resolved": "https://registry.npmjs.org/@graphql-codegen/typescript/-/typescript-2.5.1.tgz", - "integrity": "sha512-D/9V2VfVIE4Mu5UiMGQtxyFU5xe1ZkAZi8g/IsqymW8rqlhTwsGhtk4JR55qPfOYxR8G94RJSJpzgNakRneytw==", + "version": "2.6.0", + "resolved": "https://registry.npmjs.org/@graphql-codegen/typescript/-/typescript-2.6.0.tgz", + "integrity": "sha512-f36ilg8J+wui0OhmQglIZ+2z4Ybc08Y7r7BlBDqfJ1F5X0zau0SlC7Hp2iCoCA0ucqZYtiUU/0n+/R8m1cTrQQ==", "requires": { "@graphql-codegen/plugin-helpers": "^2.4.0", "@graphql-codegen/schema-ast": "^2.4.1", - "@graphql-codegen/visitor-plugin-common": "2.9.1", + "@graphql-codegen/visitor-plugin-common": "2.10.0", "auto-bind": "~4.0.0", "tslib": "~2.4.0" }, @@ -1876,13 +1894,13 @@ } }, "@graphql-codegen/typescript-operations": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/@graphql-codegen/typescript-operations/-/typescript-operations-2.4.2.tgz", - "integrity": "sha512-0/Jk+FxJVOdznSJ+G3KKPbMr2gK67yQetUAUS0FzV9FptVDFkklK/BazKqJJE5dNrj9ubuI2BafXPzSTN4M2Ug==", + "version": "2.4.3", + "resolved": "https://registry.npmjs.org/@graphql-codegen/typescript-operations/-/typescript-operations-2.4.3.tgz", + "integrity": "sha512-MW9cU/zCAmfFAObwW23e+GrW3CoV9OX2gVm/V1565WGZXDQPUc5Y5IjdfGfunV4ApkgFDiHpF1Mz/AS55OErgw==", "requires": { "@graphql-codegen/plugin-helpers": "^2.4.0", - "@graphql-codegen/typescript": "^2.5.1", - "@graphql-codegen/visitor-plugin-common": "2.9.1", + "@graphql-codegen/typescript": "^2.6.0", + "@graphql-codegen/visitor-plugin-common": "2.10.0", "auto-bind": "~4.0.0", "tslib": "~2.4.0" }, @@ -1895,9 +1913,9 @@ } }, "@graphql-codegen/visitor-plugin-common": { - "version": "2.9.1", - "resolved": "https://registry.npmjs.org/@graphql-codegen/visitor-plugin-common/-/visitor-plugin-common-2.9.1.tgz", - "integrity": "sha512-j9eGOSGt+sJcwv0ijhZiQ2cF/0ponscekNVoF+vHdOT4RB0qgOQxykPBk6EbKxIHECnkdV8ARdPVTA21A93/QQ==", + "version": "2.10.0", + "resolved": "https://registry.npmjs.org/@graphql-codegen/visitor-plugin-common/-/visitor-plugin-common-2.10.0.tgz", + "integrity": "sha512-nWoxHKUdwOJCWV96Ks1x4EwYCWsZDJXB+2j6EQz5j27DzdxmQInZ86degaDCd3EgbwhMQEMtiZiPGFFDrgBkHA==", "requires": { "@graphql-codegen/plugin-helpers": "^2.4.0", "@graphql-tools/optimize": "^1.0.1", @@ -3275,9 +3293,9 @@ }, "dependencies": { "globals": { - "version": "13.15.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-13.15.0.tgz", - "integrity": "sha512-bpzcOlgDhMG070Av0Vy5Owklpv1I6+j96GhUI7Rh7IzDCKLzboflLrrfqMu8NquDbiR4EOQk7XzJwqVJxicxog==", + "version": "13.16.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.16.0.tgz", + "integrity": "sha512-A1lrQfpNF+McdPOnnFqY3kSN0AFTy485bTi1bkLk4mVPODIUEcSfhHgRqA+QdXPksrSTTztYXx37NFV+GpGk3Q==", "requires": { "type-fest": "^0.20.2" } @@ -3359,9 +3377,9 @@ } }, "@parcel/source-map": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/@parcel/source-map/-/source-map-2.0.5.tgz", - "integrity": "sha512-DRVlCFKLpqBSIbMxUoVlHgfiv12HTW/U7nnhzw52YgzDVXUX9OA41dXS1PU0pJ1si+D1k8msATUC+AoldN43mg==", + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/@parcel/source-map/-/source-map-2.1.0.tgz", + "integrity": "sha512-E7UOEIof2o89LrKk1agSLmwakjigmEdDp1ZaEdsLVEvq63R/bul4Ij5CT+0ZDcijGpl5tnTbQADY9EyYGtjYgQ==", "requires": { "detect-libc": "^1.0.3" } @@ -3852,9 +3870,9 @@ } }, "@types/eslint-scope": { - "version": "3.7.3", - "resolved": "https://registry.npmjs.org/@types/eslint-scope/-/eslint-scope-3.7.3.tgz", - "integrity": "sha512-PB3ldyrcnAicT35TWPs5IcwKD8S333HMaa2VVv4+wdvebJkjWuW/xESoB8IwRcog8HYVYamb1g/R31Qv5Bx03g==", + "version": "3.7.4", + "resolved": "https://registry.npmjs.org/@types/eslint-scope/-/eslint-scope-3.7.4.tgz", + "integrity": "sha512-9K4zoImiZc3HlIp6AVUDE4CWYx22a+lhSZMYNpbjW04+YF0KWj4pJXnEMjdnFTiQibFFmElcsasJXDbdI/EPhA==", "requires": { "@types/eslint": "*", "@types/estree": "*" @@ -4638,14 +4656,14 @@ } }, "caniuse-lite": { - "version": "1.0.30001359", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001359.tgz", - "integrity": "sha512-Xln/BAsPzEuiVLgJ2/45IaqD9jShtk3Y33anKb4+yLwQzws3+v6odKfpgES/cDEaZMLzSChpIGdbOYtH9MyuHw==" + "version": "1.0.30001363", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001363.tgz", + "integrity": "sha512-HpQhpzTGGPVMnCjIomjt+jvyUu8vNFo3TaDiZ/RcoTrlOq/5+tC8zHdsbgFB6MxmaY+jCpsH09aD80Bb4Ow3Sg==" }, "electron-to-chromium": { - "version": "1.4.172", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.172.tgz", - "integrity": "sha512-yDoFfTJnqBAB6hSiPvzmsBJSrjOXJtHSJoqJdI/zSIh7DYupYnIOHt/bbPw/WE31BJjNTybDdNAs21gCMnTh0Q==" + "version": "1.4.179", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.179.tgz", + "integrity": "sha512-1XeTb/U/8Xgh2YgPOqhakLYsvCcU4U7jUjTMbEnhIJoIWd/Qt3yC8y0cbG+fHzn4zUNF99Ey1xiPf20bwgLO3Q==" } } }, @@ -4796,12 +4814,12 @@ } }, "babel-plugin-remove-graphql-queries": { - "version": "4.17.0", - "resolved": "https://registry.npmjs.org/babel-plugin-remove-graphql-queries/-/babel-plugin-remove-graphql-queries-4.17.0.tgz", - "integrity": "sha512-UovjamHhy5y46WyBO/hfqxrLbMq04o+hlTeqCRzeLol4eWtH+8CufdLAZWYtM1l1BIChwvXCxDY2ugeXlbj7+w==", + "version": "4.18.0", + "resolved": "https://registry.npmjs.org/babel-plugin-remove-graphql-queries/-/babel-plugin-remove-graphql-queries-4.18.0.tgz", + "integrity": "sha512-6oOm/cTZdk+7yPh4R4ISLKNur3rK5w2zAUCXTOGKYcRYbvKCS22ODafQBrNcu/UdfpXwSz3XZOG5ru72Z5usUw==", "requires": { "@babel/runtime": "^7.15.4", - "gatsby-core-utils": "^3.17.0" + "gatsby-core-utils": "^3.18.0" }, "dependencies": { "fs-extra": { @@ -4815,9 +4833,9 @@ } }, "gatsby-core-utils": { - "version": "3.17.0", - "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.17.0.tgz", - "integrity": "sha512-1e0YaqTAEpSSBkpWkY703lu+Bl76ASXUvUcpnNO3CavCYZsRQxAXtMXIKIEvhm1z6zWJmY9HILo6/DjP+PHeyw==", + "version": "3.18.0", + "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.18.0.tgz", + "integrity": "sha512-mCoNgH4MilosLhEroklgVffwie9lyxgmvNwe/oIyzXr6NcZ2uxSp8G1KrgxdG2srt2hCNlZLlzS25ltLTeHTjA==", "requires": { "@babel/runtime": "^7.15.4", "ci-info": "2.0.0", @@ -4825,7 +4843,7 @@ "fastq": "^1.13.0", "file-type": "^16.5.3", "fs-extra": "^10.1.0", - "got": "^11.8.3", + "got": "^11.8.5", "import-from": "^4.0.0", "lmdb": "2.5.2", "lock": "^1.1.0", @@ -4836,6 +4854,24 @@ "xdg-basedir": "^4.0.0" } }, + "got": { + "version": "11.8.5", + "resolved": "https://registry.npmjs.org/got/-/got-11.8.5.tgz", + "integrity": "sha512-o0Je4NvQObAuZPHLFoRSkdG2lTgtcynqymzg2Vupdx6PorhaT5MCbIyXG6d4D94kk8ZG57QeosgdiqfJWhEhlQ==", + "requires": { + "@sindresorhus/is": "^4.0.0", + "@szmarczak/http-timer": "^4.0.5", + "@types/cacheable-request": "^6.0.1", + "@types/responselike": "^1.0.0", + "cacheable-lookup": "^5.0.3", + "cacheable-request": "^7.0.2", + "decompress-response": "^6.0.0", + "http2-wrapper": "^1.0.0-beta.5.2", + "lowercase-keys": "^2.0.0", + "p-cancelable": "^2.0.0", + "responselike": "^2.0.0" + } + }, "jsonfile": { "version": "6.1.0", "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", @@ -4930,9 +4966,9 @@ } }, "babel-preset-gatsby": { - "version": "2.17.0", - "resolved": "https://registry.npmjs.org/babel-preset-gatsby/-/babel-preset-gatsby-2.17.0.tgz", - "integrity": "sha512-hLeovvehdKkfFAsfTKCATKQasLyQa49TrJtct5VthERrb2dhkV71NIfmbiEa9Ae5x+qGYhYvufqMROGptewXbQ==", + "version": "2.18.0", + "resolved": "https://registry.npmjs.org/babel-preset-gatsby/-/babel-preset-gatsby-2.18.0.tgz", + "integrity": "sha512-b6BJEl0MlA/nh+IkTJRgvPEgdN09Pu34Szo5dE4QYvQa66++EqfQUK5huqr+FgZJedPPYYbRY2SgKlRXev5QIQ==", "requires": { "@babel/plugin-proposal-class-properties": "^7.14.0", "@babel/plugin-proposal-nullish-coalescing-operator": "^7.14.5", @@ -4947,8 +4983,8 @@ "babel-plugin-dynamic-import-node": "^2.3.3", "babel-plugin-macros": "^3.1.0", "babel-plugin-transform-react-remove-prop-types": "^0.4.24", - "gatsby-core-utils": "^3.17.0", - "gatsby-legacy-polyfills": "^2.17.0" + "gatsby-core-utils": "^3.18.0", + "gatsby-legacy-polyfills": "^2.18.0" }, "dependencies": { "babel-plugin-macros": { @@ -4984,9 +5020,9 @@ } }, "gatsby-core-utils": { - "version": "3.17.0", - "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.17.0.tgz", - "integrity": "sha512-1e0YaqTAEpSSBkpWkY703lu+Bl76ASXUvUcpnNO3CavCYZsRQxAXtMXIKIEvhm1z6zWJmY9HILo6/DjP+PHeyw==", + "version": "3.18.0", + "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.18.0.tgz", + "integrity": "sha512-mCoNgH4MilosLhEroklgVffwie9lyxgmvNwe/oIyzXr6NcZ2uxSp8G1KrgxdG2srt2hCNlZLlzS25ltLTeHTjA==", "requires": { "@babel/runtime": "^7.15.4", "ci-info": "2.0.0", @@ -4994,7 +5030,7 @@ "fastq": "^1.13.0", "file-type": "^16.5.3", "fs-extra": "^10.1.0", - "got": "^11.8.3", + "got": "^11.8.5", "import-from": "^4.0.0", "lmdb": "2.5.2", "lock": "^1.1.0", @@ -5005,6 +5041,24 @@ "xdg-basedir": "^4.0.0" } }, + "got": { + "version": "11.8.5", + "resolved": "https://registry.npmjs.org/got/-/got-11.8.5.tgz", + "integrity": "sha512-o0Je4NvQObAuZPHLFoRSkdG2lTgtcynqymzg2Vupdx6PorhaT5MCbIyXG6d4D94kk8ZG57QeosgdiqfJWhEhlQ==", + "requires": { + "@sindresorhus/is": "^4.0.0", + "@szmarczak/http-timer": "^4.0.5", + "@types/cacheable-request": "^6.0.1", + "@types/responselike": "^1.0.0", + "cacheable-lookup": "^5.0.3", + "cacheable-request": "^7.0.2", + "decompress-response": "^6.0.0", + "http2-wrapper": "^1.0.0-beta.5.2", + "lowercase-keys": "^2.0.0", + "p-cancelable": "^2.0.0", + "responselike": "^2.0.0" + } + }, "jsonfile": { "version": "6.1.0", "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", @@ -6268,9 +6322,9 @@ } }, "create-gatsby": { - "version": "2.17.0", - "resolved": "https://registry.npmjs.org/create-gatsby/-/create-gatsby-2.17.0.tgz", - "integrity": "sha512-RrMAHZL7J5Ew/laz83g+UNQ2RnXszGuub3sG7DQkG0tK5mS9TqTW+FIYyzHCLhdJkr81qC/HRDFsJv0fuYISwg==", + "version": "2.18.0", + "resolved": "https://registry.npmjs.org/create-gatsby/-/create-gatsby-2.18.0.tgz", + "integrity": "sha512-74yn3+wlFKwg3DUVdFdBnfqc6gUVpYjqr/1XtQ0Rb57i0ygvER8Xgp4rY5Mm+8rl7JwBma1NONeM20cdMQjT2w==", "requires": { "@babel/runtime": "^7.15.4" } @@ -7226,9 +7280,9 @@ } }, "globals": { - "version": "13.15.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-13.15.0.tgz", - "integrity": "sha512-bpzcOlgDhMG070Av0Vy5Owklpv1I6+j96GhUI7Rh7IzDCKLzboflLrrfqMu8NquDbiR4EOQk7XzJwqVJxicxog==", + "version": "13.16.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.16.0.tgz", + "integrity": "sha512-A1lrQfpNF+McdPOnnFqY3kSN0AFTy485bTi1bkLk4mVPODIUEcSfhHgRqA+QdXPksrSTTztYXx37NFV+GpGk3Q==", "requires": { "type-fest": "^0.20.2" } @@ -8347,9 +8401,9 @@ "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==" }, "gatsby": { - "version": "4.17.2", - "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-4.17.2.tgz", - "integrity": "sha512-uMNH/X/Fd0kGjelgAPTukgQhxu/aMhRj5YJ07SM4D2yBuO+c4+y1dZRz5q9EUryCeVSx1cSt0J6JMkfzOXmbyA==", + "version": "4.18.0", + "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-4.18.0.tgz", + "integrity": "sha512-EyiwYUsbSKUKsdjm8nnLw5AGJwOJ9NAWcrFg1V/QU4CUnk/M8EiP0TxiGUmK1/K7g82XGxUjuAPYJKJk85yxHA==", "requires": { "@babel/code-frame": "^7.14.0", "@babel/core": "^7.15.5", @@ -8385,15 +8439,15 @@ "babel-plugin-add-module-exports": "^1.0.4", "babel-plugin-dynamic-import-node": "^2.3.3", "babel-plugin-lodash": "^3.3.4", - "babel-plugin-remove-graphql-queries": "^4.17.0", - "babel-preset-gatsby": "^2.17.0", + "babel-plugin-remove-graphql-queries": "^4.18.0", + "babel-preset-gatsby": "^2.18.0", "better-opn": "^2.1.1", "bluebird": "^3.7.2", "body-parser": "^1.19.0", "browserslist": "^4.17.5", "cache-manager": "^2.11.1", "chalk": "^4.1.2", - "chokidar": "^3.5.2", + "chokidar": "^3.5.3", "common-tags": "^1.8.0", "compression": "^1.7.4", "cookie": "^0.4.1", @@ -8415,7 +8469,7 @@ "eslint-plugin-graphql": "^4.0.0", "eslint-plugin-import": "^2.26.0", "eslint-plugin-jsx-a11y": "^6.5.1", - "eslint-plugin-react": "^7.29.4", + "eslint-plugin-react": "^7.30.0", "eslint-plugin-react-hooks": "^4.5.0", "eslint-webpack-plugin": "^2.6.0", "event-source-polyfill": "1.0.25", @@ -8429,21 +8483,21 @@ "find-cache-dir": "^3.3.2", "fs-exists-cached": "1.0.0", "fs-extra": "^10.1.0", - "gatsby-cli": "^4.17.1", - "gatsby-core-utils": "^3.17.0", - "gatsby-graphiql-explorer": "^2.17.0", - "gatsby-legacy-polyfills": "^2.17.0", - "gatsby-link": "^4.17.0", - "gatsby-page-utils": "^2.17.0", - "gatsby-parcel-config": "0.8.0", - "gatsby-plugin-page-creator": "^4.17.0", - "gatsby-plugin-typescript": "^4.17.0", - "gatsby-plugin-utils": "^3.11.0", - "gatsby-react-router-scroll": "^5.17.0", - "gatsby-script": "^1.2.0", - "gatsby-sharp": "^0.11.0", - "gatsby-telemetry": "^3.17.0", - "gatsby-worker": "^1.17.0", + "gatsby-cli": "^4.18.0", + "gatsby-core-utils": "^3.18.0", + "gatsby-graphiql-explorer": "^2.18.0", + "gatsby-legacy-polyfills": "^2.18.0", + "gatsby-link": "^4.18.0", + "gatsby-page-utils": "^2.18.0", + "gatsby-parcel-config": "0.9.0", + "gatsby-plugin-page-creator": "^4.18.0", + "gatsby-plugin-typescript": "^4.18.0", + "gatsby-plugin-utils": "^3.12.0", + "gatsby-react-router-scroll": "^5.18.0", + "gatsby-script": "^1.3.0", + "gatsby-sharp": "^0.12.0", + "gatsby-telemetry": "^3.18.0", + "gatsby-worker": "^1.18.0", "glob": "^7.2.3", "globby": "^11.1.0", "got": "^11.8.2", @@ -8495,7 +8549,6 @@ "slugify": "^1.6.1", "socket.io": "3.1.2", "socket.io-client": "3.1.3", - "source-map-support": "^0.5.20", "st": "^2.0.0", "stack-trace": "^0.0.10", "string-similarity": "^1.2.2", @@ -8541,9 +8594,9 @@ } }, "gatsby-cli": { - "version": "4.17.1", - "resolved": "https://registry.npmjs.org/gatsby-cli/-/gatsby-cli-4.17.1.tgz", - "integrity": "sha512-yLNRGKo8vyeiqKNTH5MkE0Q3AF6Un1v3MVlXzvoyRNs1DIHwkkZ22jGOB64/KIIR/o2cjRsrKJNCVjGV7qNnzw==", + "version": "4.18.0", + "resolved": "https://registry.npmjs.org/gatsby-cli/-/gatsby-cli-4.18.0.tgz", + "integrity": "sha512-H4V1XvXP3EMwUBDbAlpu3jbjlCetUmHY6VB1YsH2kkIdlMrOgjUgNDFpqjgbk7k7z61du2tCgl1lyW+5he+SnA==", "requires": { "@babel/code-frame": "^7.14.0", "@babel/core": "^7.15.5", @@ -8562,13 +8615,13 @@ "common-tags": "^1.8.2", "configstore": "^5.0.1", "convert-hrtime": "^3.0.0", - "create-gatsby": "^2.17.0", + "create-gatsby": "^2.18.0", "envinfo": "^7.8.1", "execa": "^5.1.1", "fs-exists-cached": "^1.0.0", "fs-extra": "^10.1.0", - "gatsby-core-utils": "^3.17.0", - "gatsby-telemetry": "^3.17.0", + "gatsby-core-utils": "^3.18.0", + "gatsby-telemetry": "^3.18.0", "hosted-git-info": "^3.0.8", "is-valid-path": "^0.1.1", "joi": "^17.4.2", @@ -8592,9 +8645,9 @@ } }, "gatsby-core-utils": { - "version": "3.17.0", - "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.17.0.tgz", - "integrity": "sha512-1e0YaqTAEpSSBkpWkY703lu+Bl76ASXUvUcpnNO3CavCYZsRQxAXtMXIKIEvhm1z6zWJmY9HILo6/DjP+PHeyw==", + "version": "3.18.0", + "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.18.0.tgz", + "integrity": "sha512-mCoNgH4MilosLhEroklgVffwie9lyxgmvNwe/oIyzXr6NcZ2uxSp8G1KrgxdG2srt2hCNlZLlzS25ltLTeHTjA==", "requires": { "@babel/runtime": "^7.15.4", "ci-info": "2.0.0", @@ -8602,7 +8655,7 @@ "fastq": "^1.13.0", "file-type": "^16.5.3", "fs-extra": "^10.1.0", - "got": "^11.8.3", + "got": "^11.8.5", "import-from": "^4.0.0", "lmdb": "2.5.2", "lock": "^1.1.0", @@ -8611,6 +8664,26 @@ "resolve-from": "^5.0.0", "tmp": "^0.2.1", "xdg-basedir": "^4.0.0" + }, + "dependencies": { + "got": { + "version": "11.8.5", + "resolved": "https://registry.npmjs.org/got/-/got-11.8.5.tgz", + "integrity": "sha512-o0Je4NvQObAuZPHLFoRSkdG2lTgtcynqymzg2Vupdx6PorhaT5MCbIyXG6d4D94kk8ZG57QeosgdiqfJWhEhlQ==", + "requires": { + "@sindresorhus/is": "^4.0.0", + "@szmarczak/http-timer": "^4.0.5", + "@types/cacheable-request": "^6.0.1", + "@types/responselike": "^1.0.0", + "cacheable-lookup": "^5.0.3", + "cacheable-request": "^7.0.2", + "decompress-response": "^6.0.0", + "http2-wrapper": "^1.0.0-beta.5.2", + "lowercase-keys": "^2.0.0", + "p-cancelable": "^2.0.0", + "responselike": "^2.0.0" + } + } } }, "glob": { @@ -8718,17 +8791,17 @@ } }, "gatsby-graphiql-explorer": { - "version": "2.17.0", - "resolved": "https://registry.npmjs.org/gatsby-graphiql-explorer/-/gatsby-graphiql-explorer-2.17.0.tgz", - "integrity": "sha512-IWAcxMlOofpg8wRzLGjuey3HunWu3bLilKurX8csD0d+YsuiB4aqZc7dWi2Zc15ZHZ5Hh8zMpOv0MVW9qhjnCg==", + "version": "2.18.0", + "resolved": "https://registry.npmjs.org/gatsby-graphiql-explorer/-/gatsby-graphiql-explorer-2.18.0.tgz", + "integrity": "sha512-mmY+kHc+axpDO9lfjbCEf/0oEIHTcZmpe2PtQAzkhnQHyti3xd9IIafq/1W3QKIJo5c7f40+tR3sFTERqaBeIA==", "requires": { "@babel/runtime": "^7.15.4" } }, "gatsby-legacy-polyfills": { - "version": "2.17.0", - "resolved": "https://registry.npmjs.org/gatsby-legacy-polyfills/-/gatsby-legacy-polyfills-2.17.0.tgz", - "integrity": "sha512-tpONSDutxEZY3vOdUaZ1yE9d0QWZ5/p47juvnhTv0qjGkBwow3gfCpgJwDzWyzKl0w0geesZwlLnaCA3WSEv7Q==", + "version": "2.18.0", + "resolved": "https://registry.npmjs.org/gatsby-legacy-polyfills/-/gatsby-legacy-polyfills-2.18.0.tgz", + "integrity": "sha512-wPnsRUnnab10wyt5VPkIhpJC1k8bVrpn0Sfat1L3JskYwkVIEvquqTmHWkpGMB8SLbXQiJEGCs2TcIrx9riL+w==", "requires": { "@babel/runtime": "^7.15.4", "core-js-compat": "3.9.0" @@ -8751,26 +8824,26 @@ } }, "gatsby-link": { - "version": "4.17.0", - "resolved": "https://registry.npmjs.org/gatsby-link/-/gatsby-link-4.17.0.tgz", - "integrity": "sha512-hDh+9OFMHNQ/5YdDdTcpSMB8xAYSP4OMkRuwmgPKH1jtOuov3pzwFAo19RR34CsOqzKd3LSQbCjIovOksjlAeA==", + "version": "4.18.0", + "resolved": "https://registry.npmjs.org/gatsby-link/-/gatsby-link-4.18.0.tgz", + "integrity": "sha512-nE+Z/iE55Id84YqsQOT1bfPJ/AsupY/4s8i6NllQ8no/PRgDGMpkTG6ANqyt2CHs/bywxch2rv8Ho7Gwsuuueg==", "requires": { "@babel/runtime": "^7.15.4", "@types/reach__router": "^1.3.10", - "gatsby-page-utils": "^2.17.0", + "gatsby-page-utils": "^2.18.0", "prop-types": "^15.8.1" } }, "gatsby-page-utils": { - "version": "2.17.0", - "resolved": "https://registry.npmjs.org/gatsby-page-utils/-/gatsby-page-utils-2.17.0.tgz", - "integrity": "sha512-aeDrvYm6uTXayr/Yw0dNQUy+P9a5TshuG9UnRddCB7jQAR1aufjkNu8WH93l151p4jqUoYGemxgZIhrNv1+i/g==", + "version": "2.18.0", + "resolved": "https://registry.npmjs.org/gatsby-page-utils/-/gatsby-page-utils-2.18.0.tgz", + "integrity": "sha512-qTwlqscKxkBlMd+Mn8xj6sh7L0LbfLGYOPCYozJnukXv8d/6Jyk1nfaP6I82hwj/iyhaBQtk7g8g4XyBJJaESw==", "requires": { "@babel/runtime": "^7.15.4", "bluebird": "^3.7.2", - "chokidar": "^3.5.2", + "chokidar": "^3.5.3", "fs-exists-cached": "^1.0.0", - "gatsby-core-utils": "^3.17.0", + "gatsby-core-utils": "^3.18.0", "glob": "^7.2.3", "lodash": "^4.17.21", "micromatch": "^4.0.5" @@ -8787,9 +8860,9 @@ } }, "gatsby-core-utils": { - "version": "3.17.0", - "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.17.0.tgz", - "integrity": "sha512-1e0YaqTAEpSSBkpWkY703lu+Bl76ASXUvUcpnNO3CavCYZsRQxAXtMXIKIEvhm1z6zWJmY9HILo6/DjP+PHeyw==", + "version": "3.18.0", + "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.18.0.tgz", + "integrity": "sha512-mCoNgH4MilosLhEroklgVffwie9lyxgmvNwe/oIyzXr6NcZ2uxSp8G1KrgxdG2srt2hCNlZLlzS25ltLTeHTjA==", "requires": { "@babel/runtime": "^7.15.4", "ci-info": "2.0.0", @@ -8797,7 +8870,7 @@ "fastq": "^1.13.0", "file-type": "^16.5.3", "fs-extra": "^10.1.0", - "got": "^11.8.3", + "got": "^11.8.5", "import-from": "^4.0.0", "lmdb": "2.5.2", "lock": "^1.1.0", @@ -8821,6 +8894,24 @@ "path-is-absolute": "^1.0.0" } }, + "got": { + "version": "11.8.5", + "resolved": "https://registry.npmjs.org/got/-/got-11.8.5.tgz", + "integrity": "sha512-o0Je4NvQObAuZPHLFoRSkdG2lTgtcynqymzg2Vupdx6PorhaT5MCbIyXG6d4D94kk8ZG57QeosgdiqfJWhEhlQ==", + "requires": { + "@sindresorhus/is": "^4.0.0", + "@szmarczak/http-timer": "^4.0.5", + "@types/cacheable-request": "^6.0.1", + "@types/responselike": "^1.0.0", + "cacheable-lookup": "^5.0.3", + "cacheable-request": "^7.0.2", + "decompress-response": "^6.0.0", + "http2-wrapper": "^1.0.0-beta.5.2", + "lowercase-keys": "^2.0.0", + "p-cancelable": "^2.0.0", + "responselike": "^2.0.0" + } + }, "jsonfile": { "version": "6.1.0", "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", @@ -8879,11 +8970,11 @@ } }, "gatsby-parcel-config": { - "version": "0.8.0", - "resolved": "https://registry.npmjs.org/gatsby-parcel-config/-/gatsby-parcel-config-0.8.0.tgz", - "integrity": "sha512-HzLU8uoJLuakH08T27K8GKx7rcLEVkKVClffAuVKrlcVYhNH+x1LvIwe+uMTIIdfu+YtUpUP1PpTdua6YfrVTQ==", + "version": "0.9.0", + "resolved": "https://registry.npmjs.org/gatsby-parcel-config/-/gatsby-parcel-config-0.9.0.tgz", + "integrity": "sha512-ccGw/L8ylhDgE/4tr52B6tb2jreApOMoYPW75Z8aM2ULRz505fL5mrnkG1fdQDBZSCHx/0j0x2TZyCLrt0Bvlw==", "requires": { - "@gatsbyjs/parcel-namer-relative-to-cwd": "^1.2.0", + "@gatsbyjs/parcel-namer-relative-to-cwd": "1.3.0", "@parcel/bundler-default": "2.6.0", "@parcel/compressor-raw": "2.6.0", "@parcel/namer-default": "2.6.0", @@ -9026,19 +9117,19 @@ } }, "gatsby-plugin-page-creator": { - "version": "4.17.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-page-creator/-/gatsby-plugin-page-creator-4.17.0.tgz", - "integrity": "sha512-Nv1lryCAfo5cWqkVnnqiMC6bmXXXOhdl2efLZKK88QwqT4tZO51gGrgsZGL4mtXtUUSkJXGE8pmjelUOcR+23g==", + "version": "4.18.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-page-creator/-/gatsby-plugin-page-creator-4.18.0.tgz", + "integrity": "sha512-6bY4vJndDw0nBcOuQdX41Wvbctw0y9+a7IavCFJKFeNs+Zo0XH2FX0IAww0slDnSJU6AukJ9qfjHqKJkADAZpQ==", "requires": { "@babel/runtime": "^7.15.4", "@babel/traverse": "^7.15.4", "@sindresorhus/slugify": "^1.1.2", - "chokidar": "^3.5.2", + "chokidar": "^3.5.3", "fs-exists-cached": "^1.0.0", - "gatsby-core-utils": "^3.17.0", - "gatsby-page-utils": "^2.17.0", - "gatsby-plugin-utils": "^3.11.0", - "gatsby-telemetry": "^3.17.0", + "gatsby-core-utils": "^3.18.0", + "gatsby-page-utils": "^2.18.0", + "gatsby-plugin-utils": "^3.12.0", + "gatsby-telemetry": "^3.18.0", "globby": "^11.1.0", "lodash": "^4.17.21" }, @@ -9054,9 +9145,9 @@ } }, "gatsby-core-utils": { - "version": "3.17.0", - "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.17.0.tgz", - "integrity": "sha512-1e0YaqTAEpSSBkpWkY703lu+Bl76ASXUvUcpnNO3CavCYZsRQxAXtMXIKIEvhm1z6zWJmY9HILo6/DjP+PHeyw==", + "version": "3.18.0", + "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.18.0.tgz", + "integrity": "sha512-mCoNgH4MilosLhEroklgVffwie9lyxgmvNwe/oIyzXr6NcZ2uxSp8G1KrgxdG2srt2hCNlZLlzS25ltLTeHTjA==", "requires": { "@babel/runtime": "^7.15.4", "ci-info": "2.0.0", @@ -9064,7 +9155,7 @@ "fastq": "^1.13.0", "file-type": "^16.5.3", "fs-extra": "^10.1.0", - "got": "^11.8.3", + "got": "^11.8.5", "import-from": "^4.0.0", "lmdb": "2.5.2", "lock": "^1.1.0", @@ -9075,6 +9166,24 @@ "xdg-basedir": "^4.0.0" } }, + "got": { + "version": "11.8.5", + "resolved": "https://registry.npmjs.org/got/-/got-11.8.5.tgz", + "integrity": "sha512-o0Je4NvQObAuZPHLFoRSkdG2lTgtcynqymzg2Vupdx6PorhaT5MCbIyXG6d4D94kk8ZG57QeosgdiqfJWhEhlQ==", + "requires": { + "@sindresorhus/is": "^4.0.0", + "@szmarczak/http-timer": "^4.0.5", + "@types/cacheable-request": "^6.0.1", + "@types/responselike": "^1.0.0", + "cacheable-lookup": "^5.0.3", + "cacheable-request": "^7.0.2", + "decompress-response": "^6.0.0", + "http2-wrapper": "^1.0.0-beta.5.2", + "lowercase-keys": "^2.0.0", + "p-cancelable": "^2.0.0", + "responselike": "^2.0.0" + } + }, "jsonfile": { "version": "6.1.0", "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", @@ -9138,9 +9247,9 @@ "integrity": "sha512-G92tnNZyViyP/wMd6ps1KhXuG48qlInZ3aUqCrgMNpsX9Hb6rSet0mWmpgj8T8dSRw7Ll7byI0DfKXL5gScgjA==" }, "gatsby-plugin-typescript": { - "version": "4.17.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-typescript/-/gatsby-plugin-typescript-4.17.0.tgz", - "integrity": "sha512-aSO/h4z+jdWBZtEnH17NoZaFchO8LkEcIdNX2saYIjJfa2tMbOR+wnOuQJVAdj61n8ntc1pQkNJxiEK31IaZjw==", + "version": "4.18.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-typescript/-/gatsby-plugin-typescript-4.18.0.tgz", + "integrity": "sha512-SuNBrp57SnovOyhCz0zPkz7begV4UR2XdXUrFsh4N0jWOI5yFNVgENpKlbI/O7JnvgyV5KC/pkobNh3we+0mcQ==", "requires": { "@babel/core": "^7.15.5", "@babel/plugin-proposal-nullish-coalescing-operator": "^7.14.5", @@ -9148,19 +9257,19 @@ "@babel/plugin-proposal-optional-chaining": "^7.14.5", "@babel/preset-typescript": "^7.15.0", "@babel/runtime": "^7.15.4", - "babel-plugin-remove-graphql-queries": "^4.17.0" + "babel-plugin-remove-graphql-queries": "^4.18.0" } }, "gatsby-plugin-utils": { - "version": "3.11.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-utils/-/gatsby-plugin-utils-3.11.0.tgz", - "integrity": "sha512-v2D6O2aME9p7tqlGykq5mgtj7Jqp/CWatgo0zJ7bFWSYPPUpQ7jRVAph1PIgFTAV/CaUrrvt9sxdRaZrglJyug==", + "version": "3.12.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-utils/-/gatsby-plugin-utils-3.12.0.tgz", + "integrity": "sha512-vdz3qwaCOkvgzAxMkZlgpmpWf555jISwek5lyWYhGyJJvXYV8KQ2cZ4CoOfFKAYVeZVSucrHcdWyY3fLLpQvAA==", "requires": { "@babel/runtime": "^7.15.4", "@gatsbyjs/potrace": "^2.2.0", "fs-extra": "^10.1.0", - "gatsby-core-utils": "^3.17.0", - "gatsby-sharp": "^0.11.0", + "gatsby-core-utils": "^3.18.0", + "gatsby-sharp": "^0.12.0", "graphql-compose": "^9.0.7", "import-from": "^4.0.0", "joi": "^17.4.2", @@ -9180,9 +9289,9 @@ } }, "gatsby-core-utils": { - "version": "3.17.0", - "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.17.0.tgz", - "integrity": "sha512-1e0YaqTAEpSSBkpWkY703lu+Bl76ASXUvUcpnNO3CavCYZsRQxAXtMXIKIEvhm1z6zWJmY9HILo6/DjP+PHeyw==", + "version": "3.18.0", + "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.18.0.tgz", + "integrity": "sha512-mCoNgH4MilosLhEroklgVffwie9lyxgmvNwe/oIyzXr6NcZ2uxSp8G1KrgxdG2srt2hCNlZLlzS25ltLTeHTjA==", "requires": { "@babel/runtime": "^7.15.4", "ci-info": "2.0.0", @@ -9190,7 +9299,7 @@ "fastq": "^1.13.0", "file-type": "^16.5.3", "fs-extra": "^10.1.0", - "got": "^11.8.3", + "got": "^11.8.5", "import-from": "^4.0.0", "lmdb": "2.5.2", "lock": "^1.1.0", @@ -9201,6 +9310,24 @@ "xdg-basedir": "^4.0.0" } }, + "got": { + "version": "11.8.5", + "resolved": "https://registry.npmjs.org/got/-/got-11.8.5.tgz", + "integrity": "sha512-o0Je4NvQObAuZPHLFoRSkdG2lTgtcynqymzg2Vupdx6PorhaT5MCbIyXG6d4D94kk8ZG57QeosgdiqfJWhEhlQ==", + "requires": { + "@sindresorhus/is": "^4.0.0", + "@szmarczak/http-timer": "^4.0.5", + "@types/cacheable-request": "^6.0.1", + "@types/responselike": "^1.0.0", + "cacheable-lookup": "^5.0.3", + "cacheable-request": "^7.0.2", + "decompress-response": "^6.0.0", + "http2-wrapper": "^1.0.0-beta.5.2", + "lowercase-keys": "^2.0.0", + "p-cancelable": "^2.0.0", + "responselike": "^2.0.0" + } + }, "jsonfile": { "version": "6.1.0", "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", @@ -9256,23 +9383,23 @@ } }, "gatsby-react-router-scroll": { - "version": "5.17.0", - "resolved": "https://registry.npmjs.org/gatsby-react-router-scroll/-/gatsby-react-router-scroll-5.17.0.tgz", - "integrity": "sha512-RwFeZlKL0T8dxpEdlmuQAH+h4ugrQQpl4U2m0Wdo/F9/8/VEiAeX64oa2r2BqiiTf4MzAIIT+5/ONt83FcmZWg==", + "version": "5.18.0", + "resolved": "https://registry.npmjs.org/gatsby-react-router-scroll/-/gatsby-react-router-scroll-5.18.0.tgz", + "integrity": "sha512-/A1k468s6g713c8me5DuGiia8rPWLuwjITQ/pKqgJwioJVB6MnD/iBCbHUTzLHlNwZypAVdGHCN8fCIcPcMb6Q==", "requires": { "@babel/runtime": "^7.15.4", "prop-types": "^15.8.1" } }, "gatsby-script": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/gatsby-script/-/gatsby-script-1.2.0.tgz", - "integrity": "sha512-Fkf6yJxwuQCS6xdFxF0gpiCUiS3PYnRv5I2mCAJV0Cu7k4PYgVpQJt79bcDHvnx755VpXOmZIfMXegACg1XS0w==" + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/gatsby-script/-/gatsby-script-1.3.0.tgz", + "integrity": "sha512-eCz6mcMFpB7kvpmyM7AtMTxNxzdrzPgt8GiuDKWFOlDgk1il6PUjO99QsL/cCeokmaiH/6egVnm9b33/x+sy9A==" }, "gatsby-sharp": { - "version": "0.11.0", - "resolved": "https://registry.npmjs.org/gatsby-sharp/-/gatsby-sharp-0.11.0.tgz", - "integrity": "sha512-RIbU8qi/Qs7G/KJiY0zyGS9Yic5n4RpDUf/1W3gvRl78Uo3LSuIeGEpaai6mYEnreuGb5fQIcqdkYs/UV3e8WA==", + "version": "0.12.0", + "resolved": "https://registry.npmjs.org/gatsby-sharp/-/gatsby-sharp-0.12.0.tgz", + "integrity": "sha512-dZa/AgxmPzD0vvROEZSuT3IdzAFTxnq1FfLTf9n3mywonvsKYc84zj6nf8TEzBrVrBFAaLvZek4NpVAKWGr4/w==", "requires": { "@types/sharp": "^0.30.0", "sharp": "^0.30.3" @@ -9421,19 +9548,19 @@ } }, "gatsby-telemetry": { - "version": "3.17.0", - "resolved": "https://registry.npmjs.org/gatsby-telemetry/-/gatsby-telemetry-3.17.0.tgz", - "integrity": "sha512-1N4uKj2Yj7AykLmwjsdOmNirf3UmP8CBXjj/LmWf5cLDVbdPqkirAlyD6uTeEliG5UFHPTlBsRi26v558mFYJQ==", + "version": "3.18.0", + "resolved": "https://registry.npmjs.org/gatsby-telemetry/-/gatsby-telemetry-3.18.0.tgz", + "integrity": "sha512-i1JvNqGOyLDPGEn1QN29YGpe2ripg2LZBAOhXmk6lAhRL5fTVo6WkEA2yW7XESnXIOJBFymgVbUlLjXoqeZ5Xg==", "requires": { "@babel/code-frame": "^7.14.0", "@babel/runtime": "^7.15.4", - "@turist/fetch": "^7.1.7", + "@turist/fetch": "^7.2.0", "@turist/time": "^0.0.2", "async-retry-ng": "^2.0.1", "boxen": "^4.2.0", "configstore": "^5.0.1", "fs-extra": "^10.1.0", - "gatsby-core-utils": "^3.17.0", + "gatsby-core-utils": "^3.18.0", "git-up": "^4.0.5", "is-docker": "^2.2.1", "lodash": "^4.17.21", @@ -9496,9 +9623,9 @@ } }, "gatsby-core-utils": { - "version": "3.17.0", - "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.17.0.tgz", - "integrity": "sha512-1e0YaqTAEpSSBkpWkY703lu+Bl76ASXUvUcpnNO3CavCYZsRQxAXtMXIKIEvhm1z6zWJmY9HILo6/DjP+PHeyw==", + "version": "3.18.0", + "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.18.0.tgz", + "integrity": "sha512-mCoNgH4MilosLhEroklgVffwie9lyxgmvNwe/oIyzXr6NcZ2uxSp8G1KrgxdG2srt2hCNlZLlzS25ltLTeHTjA==", "requires": { "@babel/runtime": "^7.15.4", "ci-info": "2.0.0", @@ -9506,7 +9633,7 @@ "fastq": "^1.13.0", "file-type": "^16.5.3", "fs-extra": "^10.1.0", - "got": "^11.8.3", + "got": "^11.8.5", "import-from": "^4.0.0", "lmdb": "2.5.2", "lock": "^1.1.0", @@ -9517,6 +9644,24 @@ "xdg-basedir": "^4.0.0" } }, + "got": { + "version": "11.8.5", + "resolved": "https://registry.npmjs.org/got/-/got-11.8.5.tgz", + "integrity": "sha512-o0Je4NvQObAuZPHLFoRSkdG2lTgtcynqymzg2Vupdx6PorhaT5MCbIyXG6d4D94kk8ZG57QeosgdiqfJWhEhlQ==", + "requires": { + "@sindresorhus/is": "^4.0.0", + "@szmarczak/http-timer": "^4.0.5", + "@types/cacheable-request": "^6.0.1", + "@types/responselike": "^1.0.0", + "cacheable-lookup": "^5.0.3", + "cacheable-request": "^7.0.2", + "decompress-response": "^6.0.0", + "http2-wrapper": "^1.0.0-beta.5.2", + "lowercase-keys": "^2.0.0", + "p-cancelable": "^2.0.0", + "responselike": "^2.0.0" + } + }, "has-flag": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", @@ -9609,9 +9754,9 @@ "integrity": "sha512-vU2ynpSniobb+NbTDyQv9bvtJMEnTzcj+8tCBOUw6XuZ0ajI8o4UDM6vpW4kkwYmy6qllgzqC99xkklQkkVlXw==" }, "gatsby-worker": { - "version": "1.17.0", - "resolved": "https://registry.npmjs.org/gatsby-worker/-/gatsby-worker-1.17.0.tgz", - "integrity": "sha512-hA7awNHmcNWp3TgQkjF0Z3I9YGWpdsf8jUdJOlAjI+aBxQ2vdHTVNwbMdXwtlf9umQRwORnmEzADmQdm0Cx5AA==", + "version": "1.18.0", + "resolved": "https://registry.npmjs.org/gatsby-worker/-/gatsby-worker-1.18.0.tgz", + "integrity": "sha512-gNzqDrYFMXlfXCzdClORyDQWQZKTOF6nRUrhZT8PUxzQViO+DvnEKE3EAQvZizYKW1Hgw7cbiTtLG3qshkNepw==", "requires": { "@babel/core": "^7.15.5", "@babel/runtime": "^7.15.4" @@ -10959,9 +11104,9 @@ "integrity": "sha512-pJiBpiXMbt7dkzXe8Ghj/u4FfXOOa98fPW+bihOJ4SjnoijweJrNThJfd3ifXpXhREjpoF2mZVH1GfS9LV3kHQ==" }, "language-subtag-registry": { - "version": "0.3.21", - "resolved": "https://registry.npmjs.org/language-subtag-registry/-/language-subtag-registry-0.3.21.tgz", - "integrity": "sha512-L0IqwlIXjilBVVYKFT37X9Ih11Um5NEl9cbJIuU/SwP/zEEAbBPOnEeeuxVMf45ydWQRDQN3Nqc96OgbH1K+Pg==" + "version": "0.3.22", + "resolved": "https://registry.npmjs.org/language-subtag-registry/-/language-subtag-registry-0.3.22.tgz", + "integrity": "sha512-tN0MCzyWnoz/4nHS6uxdlFWoUZT7ABptwKPQ52Ea7URk6vll88bWBVhodtnlfEuCcKWNGoc+uGbw1cwa9IKh/w==" }, "language-tags": { "version": "1.0.5", @@ -12637,14 +12782,14 @@ } }, "caniuse-lite": { - "version": "1.0.30001359", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001359.tgz", - "integrity": "sha512-Xln/BAsPzEuiVLgJ2/45IaqD9jShtk3Y33anKb4+yLwQzws3+v6odKfpgES/cDEaZMLzSChpIGdbOYtH9MyuHw==" + "version": "1.0.30001363", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001363.tgz", + "integrity": "sha512-HpQhpzTGGPVMnCjIomjt+jvyUu8vNFo3TaDiZ/RcoTrlOq/5+tC8zHdsbgFB6MxmaY+jCpsH09aD80Bb4Ow3Sg==" }, "electron-to-chromium": { - "version": "1.4.172", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.172.tgz", - "integrity": "sha512-yDoFfTJnqBAB6hSiPvzmsBJSrjOXJtHSJoqJdI/zSIh7DYupYnIOHt/bbPw/WE31BJjNTybDdNAs21gCMnTh0Q==" + "version": "1.4.179", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.179.tgz", + "integrity": "sha512-1XeTb/U/8Xgh2YgPOqhakLYsvCcU4U7jUjTMbEnhIJoIWd/Qt3yC8y0cbG+fHzn4zUNF99Ey1xiPf20bwgLO3Q==" } } }, diff --git a/starters/gatsby-starter-notes-theme/package.json b/starters/gatsby-starter-notes-theme/package.json index ab3d10d0ac795..6e7c684b3c869 100644 --- a/starters/gatsby-starter-notes-theme/package.json +++ b/starters/gatsby-starter-notes-theme/package.json @@ -10,7 +10,7 @@ }, "license": "0BSD", "dependencies": { - "gatsby": "^4.17.2", + "gatsby": "^4.18.0", "gatsby-theme-notes": "^4.0.0", "react": "^17.0.2", "react-dom": "^17.0.2" diff --git a/starters/gatsby-starter-theme-workspace/example/package.json b/starters/gatsby-starter-theme-workspace/example/package.json index 06579be5af842..25fc3380f01b5 100644 --- a/starters/gatsby-starter-theme-workspace/example/package.json +++ b/starters/gatsby-starter-theme-workspace/example/package.json @@ -8,7 +8,7 @@ "build": "gatsby build" }, "dependencies": { - "gatsby": "^4.17.2", + "gatsby": "^4.18.0", "gatsby-theme-minimal": "^1.0.0", "react": "^18.1.0", "react-dom": "^18.1.0" diff --git a/starters/gatsby-starter-theme/package-lock.json b/starters/gatsby-starter-theme/package-lock.json index bda7a8aacefd4..5462cca604a10 100644 --- a/starters/gatsby-starter-theme/package-lock.json +++ b/starters/gatsby-starter-theme/package-lock.json @@ -1672,9 +1672,9 @@ } }, "globals": { - "version": "13.15.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-13.15.0.tgz", - "integrity": "sha512-bpzcOlgDhMG070Av0Vy5Owklpv1I6+j96GhUI7Rh7IzDCKLzboflLrrfqMu8NquDbiR4EOQk7XzJwqVJxicxog==", + "version": "13.16.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.16.0.tgz", + "integrity": "sha512-A1lrQfpNF+McdPOnnFqY3kSN0AFTy485bTi1bkLk4mVPODIUEcSfhHgRqA+QdXPksrSTTztYXx37NFV+GpGk3Q==", "requires": { "type-fest": "^0.20.2" } @@ -1692,13 +1692,13 @@ } }, "@gatsbyjs/parcel-namer-relative-to-cwd": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/@gatsbyjs/parcel-namer-relative-to-cwd/-/parcel-namer-relative-to-cwd-1.2.0.tgz", - "integrity": "sha512-4iIdquFDl+b+U8Ng0dg6dCtxB/cnH27ERrlQQlxfdaWe8e9CLo8aWc6u3UeuHwNJixBFOUbOgEFaA5qCUPwLCQ==", + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/@gatsbyjs/parcel-namer-relative-to-cwd/-/parcel-namer-relative-to-cwd-1.3.0.tgz", + "integrity": "sha512-nd1lQn7ezg51ekqZm8iZjND8akB7bsGkGe7GdIPdTwbhale2dHLqd74qg+bBrEjv5f5aFZhpJeY9XpeU4emWZQ==", "requires": { "@babel/runtime": "^7.18.0", "@parcel/plugin": "2.6.0", - "gatsby-core-utils": "^3.17.0" + "gatsby-core-utils": "^3.18.0" }, "dependencies": { "@babel/runtime": { @@ -1720,9 +1720,9 @@ } }, "gatsby-core-utils": { - "version": "3.17.0", - "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.17.0.tgz", - "integrity": "sha512-1e0YaqTAEpSSBkpWkY703lu+Bl76ASXUvUcpnNO3CavCYZsRQxAXtMXIKIEvhm1z6zWJmY9HILo6/DjP+PHeyw==", + "version": "3.18.0", + "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.18.0.tgz", + "integrity": "sha512-mCoNgH4MilosLhEroklgVffwie9lyxgmvNwe/oIyzXr6NcZ2uxSp8G1KrgxdG2srt2hCNlZLlzS25ltLTeHTjA==", "requires": { "@babel/runtime": "^7.15.4", "ci-info": "2.0.0", @@ -1730,7 +1730,7 @@ "fastq": "^1.13.0", "file-type": "^16.5.3", "fs-extra": "^10.1.0", - "got": "^11.8.3", + "got": "^11.8.5", "import-from": "^4.0.0", "lmdb": "2.5.2", "lock": "^1.1.0", @@ -1741,6 +1741,24 @@ "xdg-basedir": "^4.0.0" } }, + "got": { + "version": "11.8.5", + "resolved": "https://registry.npmjs.org/got/-/got-11.8.5.tgz", + "integrity": "sha512-o0Je4NvQObAuZPHLFoRSkdG2lTgtcynqymzg2Vupdx6PorhaT5MCbIyXG6d4D94kk8ZG57QeosgdiqfJWhEhlQ==", + "requires": { + "@sindresorhus/is": "^4.0.0", + "@szmarczak/http-timer": "^4.0.5", + "@types/cacheable-request": "^6.0.1", + "@types/responselike": "^1.0.0", + "cacheable-lookup": "^5.0.3", + "cacheable-request": "^7.0.2", + "decompress-response": "^6.0.0", + "http2-wrapper": "^1.0.0-beta.5.2", + "lowercase-keys": "^2.0.0", + "p-cancelable": "^2.0.0", + "responselike": "^2.0.0" + } + }, "jsonfile": { "version": "6.1.0", "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", @@ -2207,13 +2225,13 @@ } }, "@graphql-codegen/typescript": { - "version": "2.5.1", - "resolved": "https://registry.npmjs.org/@graphql-codegen/typescript/-/typescript-2.5.1.tgz", - "integrity": "sha512-D/9V2VfVIE4Mu5UiMGQtxyFU5xe1ZkAZi8g/IsqymW8rqlhTwsGhtk4JR55qPfOYxR8G94RJSJpzgNakRneytw==", + "version": "2.6.0", + "resolved": "https://registry.npmjs.org/@graphql-codegen/typescript/-/typescript-2.6.0.tgz", + "integrity": "sha512-f36ilg8J+wui0OhmQglIZ+2z4Ybc08Y7r7BlBDqfJ1F5X0zau0SlC7Hp2iCoCA0ucqZYtiUU/0n+/R8m1cTrQQ==", "requires": { "@graphql-codegen/plugin-helpers": "^2.4.0", "@graphql-codegen/schema-ast": "^2.4.1", - "@graphql-codegen/visitor-plugin-common": "2.9.1", + "@graphql-codegen/visitor-plugin-common": "2.10.0", "auto-bind": "~4.0.0", "tslib": "~2.4.0" }, @@ -2226,13 +2244,13 @@ } }, "@graphql-codegen/typescript-operations": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/@graphql-codegen/typescript-operations/-/typescript-operations-2.4.2.tgz", - "integrity": "sha512-0/Jk+FxJVOdznSJ+G3KKPbMr2gK67yQetUAUS0FzV9FptVDFkklK/BazKqJJE5dNrj9ubuI2BafXPzSTN4M2Ug==", + "version": "2.4.3", + "resolved": "https://registry.npmjs.org/@graphql-codegen/typescript-operations/-/typescript-operations-2.4.3.tgz", + "integrity": "sha512-MW9cU/zCAmfFAObwW23e+GrW3CoV9OX2gVm/V1565WGZXDQPUc5Y5IjdfGfunV4ApkgFDiHpF1Mz/AS55OErgw==", "requires": { "@graphql-codegen/plugin-helpers": "^2.4.0", - "@graphql-codegen/typescript": "^2.5.1", - "@graphql-codegen/visitor-plugin-common": "2.9.1", + "@graphql-codegen/typescript": "^2.6.0", + "@graphql-codegen/visitor-plugin-common": "2.10.0", "auto-bind": "~4.0.0", "tslib": "~2.4.0" }, @@ -2245,9 +2263,9 @@ } }, "@graphql-codegen/visitor-plugin-common": { - "version": "2.9.1", - "resolved": "https://registry.npmjs.org/@graphql-codegen/visitor-plugin-common/-/visitor-plugin-common-2.9.1.tgz", - "integrity": "sha512-j9eGOSGt+sJcwv0ijhZiQ2cF/0ponscekNVoF+vHdOT4RB0qgOQxykPBk6EbKxIHECnkdV8ARdPVTA21A93/QQ==", + "version": "2.10.0", + "resolved": "https://registry.npmjs.org/@graphql-codegen/visitor-plugin-common/-/visitor-plugin-common-2.10.0.tgz", + "integrity": "sha512-nWoxHKUdwOJCWV96Ks1x4EwYCWsZDJXB+2j6EQz5j27DzdxmQInZ86degaDCd3EgbwhMQEMtiZiPGFFDrgBkHA==", "requires": { "@graphql-codegen/plugin-helpers": "^2.4.0", "@graphql-tools/optimize": "^1.0.1", @@ -3646,9 +3664,9 @@ }, "dependencies": { "globals": { - "version": "13.15.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-13.15.0.tgz", - "integrity": "sha512-bpzcOlgDhMG070Av0Vy5Owklpv1I6+j96GhUI7Rh7IzDCKLzboflLrrfqMu8NquDbiR4EOQk7XzJwqVJxicxog==", + "version": "13.16.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.16.0.tgz", + "integrity": "sha512-A1lrQfpNF+McdPOnnFqY3kSN0AFTy485bTi1bkLk4mVPODIUEcSfhHgRqA+QdXPksrSTTztYXx37NFV+GpGk3Q==", "requires": { "type-fest": "^0.20.2" } @@ -3735,9 +3753,9 @@ } }, "@parcel/source-map": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/@parcel/source-map/-/source-map-2.0.5.tgz", - "integrity": "sha512-DRVlCFKLpqBSIbMxUoVlHgfiv12HTW/U7nnhzw52YgzDVXUX9OA41dXS1PU0pJ1si+D1k8msATUC+AoldN43mg==", + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/@parcel/source-map/-/source-map-2.1.0.tgz", + "integrity": "sha512-E7UOEIof2o89LrKk1agSLmwakjigmEdDp1ZaEdsLVEvq63R/bul4Ij5CT+0ZDcijGpl5tnTbQADY9EyYGtjYgQ==", "requires": { "detect-libc": "^1.0.3" } @@ -4275,9 +4293,9 @@ } }, "@types/eslint-scope": { - "version": "3.7.3", - "resolved": "https://registry.npmjs.org/@types/eslint-scope/-/eslint-scope-3.7.3.tgz", - "integrity": "sha512-PB3ldyrcnAicT35TWPs5IcwKD8S333HMaa2VVv4+wdvebJkjWuW/xESoB8IwRcog8HYVYamb1g/R31Qv5Bx03g==", + "version": "3.7.4", + "resolved": "https://registry.npmjs.org/@types/eslint-scope/-/eslint-scope-3.7.4.tgz", + "integrity": "sha512-9K4zoImiZc3HlIp6AVUDE4CWYx22a+lhSZMYNpbjW04+YF0KWj4pJXnEMjdnFTiQibFFmElcsasJXDbdI/EPhA==", "requires": { "@types/eslint": "*", "@types/estree": "*" @@ -5433,14 +5451,14 @@ } }, "caniuse-lite": { - "version": "1.0.30001359", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001359.tgz", - "integrity": "sha512-Xln/BAsPzEuiVLgJ2/45IaqD9jShtk3Y33anKb4+yLwQzws3+v6odKfpgES/cDEaZMLzSChpIGdbOYtH9MyuHw==" + "version": "1.0.30001363", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001363.tgz", + "integrity": "sha512-HpQhpzTGGPVMnCjIomjt+jvyUu8vNFo3TaDiZ/RcoTrlOq/5+tC8zHdsbgFB6MxmaY+jCpsH09aD80Bb4Ow3Sg==" }, "electron-to-chromium": { - "version": "1.4.172", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.172.tgz", - "integrity": "sha512-yDoFfTJnqBAB6hSiPvzmsBJSrjOXJtHSJoqJdI/zSIh7DYupYnIOHt/bbPw/WE31BJjNTybDdNAs21gCMnTh0Q==" + "version": "1.4.179", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.179.tgz", + "integrity": "sha512-1XeTb/U/8Xgh2YgPOqhakLYsvCcU4U7jUjTMbEnhIJoIWd/Qt3yC8y0cbG+fHzn4zUNF99Ey1xiPf20bwgLO3Q==" } } }, @@ -5649,9 +5667,9 @@ } }, "babel-preset-gatsby": { - "version": "2.17.0", - "resolved": "https://registry.npmjs.org/babel-preset-gatsby/-/babel-preset-gatsby-2.17.0.tgz", - "integrity": "sha512-hLeovvehdKkfFAsfTKCATKQasLyQa49TrJtct5VthERrb2dhkV71NIfmbiEa9Ae5x+qGYhYvufqMROGptewXbQ==", + "version": "2.18.0", + "resolved": "https://registry.npmjs.org/babel-preset-gatsby/-/babel-preset-gatsby-2.18.0.tgz", + "integrity": "sha512-b6BJEl0MlA/nh+IkTJRgvPEgdN09Pu34Szo5dE4QYvQa66++EqfQUK5huqr+FgZJedPPYYbRY2SgKlRXev5QIQ==", "requires": { "@babel/plugin-proposal-class-properties": "^7.14.0", "@babel/plugin-proposal-nullish-coalescing-operator": "^7.14.5", @@ -5666,8 +5684,8 @@ "babel-plugin-dynamic-import-node": "^2.3.3", "babel-plugin-macros": "^3.1.0", "babel-plugin-transform-react-remove-prop-types": "^0.4.24", - "gatsby-core-utils": "^3.17.0", - "gatsby-legacy-polyfills": "^2.17.0" + "gatsby-core-utils": "^3.18.0", + "gatsby-legacy-polyfills": "^2.18.0" }, "dependencies": { "babel-plugin-macros": { @@ -5703,9 +5721,9 @@ } }, "gatsby-core-utils": { - "version": "3.17.0", - "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.17.0.tgz", - "integrity": "sha512-1e0YaqTAEpSSBkpWkY703lu+Bl76ASXUvUcpnNO3CavCYZsRQxAXtMXIKIEvhm1z6zWJmY9HILo6/DjP+PHeyw==", + "version": "3.18.0", + "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.18.0.tgz", + "integrity": "sha512-mCoNgH4MilosLhEroklgVffwie9lyxgmvNwe/oIyzXr6NcZ2uxSp8G1KrgxdG2srt2hCNlZLlzS25ltLTeHTjA==", "requires": { "@babel/runtime": "^7.15.4", "ci-info": "2.0.0", @@ -5713,7 +5731,7 @@ "fastq": "^1.13.0", "file-type": "^16.5.3", "fs-extra": "^10.1.0", - "got": "^11.8.3", + "got": "^11.8.5", "import-from": "^4.0.0", "lmdb": "2.5.2", "lock": "^1.1.0", @@ -5724,6 +5742,24 @@ "xdg-basedir": "^4.0.0" } }, + "got": { + "version": "11.8.5", + "resolved": "https://registry.npmjs.org/got/-/got-11.8.5.tgz", + "integrity": "sha512-o0Je4NvQObAuZPHLFoRSkdG2lTgtcynqymzg2Vupdx6PorhaT5MCbIyXG6d4D94kk8ZG57QeosgdiqfJWhEhlQ==", + "requires": { + "@sindresorhus/is": "^4.0.0", + "@szmarczak/http-timer": "^4.0.5", + "@types/cacheable-request": "^6.0.1", + "@types/responselike": "^1.0.0", + "cacheable-lookup": "^5.0.3", + "cacheable-request": "^7.0.2", + "decompress-response": "^6.0.0", + "http2-wrapper": "^1.0.0-beta.5.2", + "lowercase-keys": "^2.0.0", + "p-cancelable": "^2.0.0", + "responselike": "^2.0.0" + } + }, "jsonfile": { "version": "6.1.0", "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", @@ -6975,9 +7011,9 @@ } }, "create-gatsby": { - "version": "2.17.0", - "resolved": "https://registry.npmjs.org/create-gatsby/-/create-gatsby-2.17.0.tgz", - "integrity": "sha512-RrMAHZL7J5Ew/laz83g+UNQ2RnXszGuub3sG7DQkG0tK5mS9TqTW+FIYyzHCLhdJkr81qC/HRDFsJv0fuYISwg==", + "version": "2.18.0", + "resolved": "https://registry.npmjs.org/create-gatsby/-/create-gatsby-2.18.0.tgz", + "integrity": "sha512-74yn3+wlFKwg3DUVdFdBnfqc6gUVpYjqr/1XtQ0Rb57i0ygvER8Xgp4rY5Mm+8rl7JwBma1NONeM20cdMQjT2w==", "requires": { "@babel/runtime": "^7.15.4" } @@ -7949,9 +7985,9 @@ } }, "globals": { - "version": "13.15.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-13.15.0.tgz", - "integrity": "sha512-bpzcOlgDhMG070Av0Vy5Owklpv1I6+j96GhUI7Rh7IzDCKLzboflLrrfqMu8NquDbiR4EOQk7XzJwqVJxicxog==", + "version": "13.16.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.16.0.tgz", + "integrity": "sha512-A1lrQfpNF+McdPOnnFqY3kSN0AFTy485bTi1bkLk4mVPODIUEcSfhHgRqA+QdXPksrSTTztYXx37NFV+GpGk3Q==", "requires": { "type-fest": "^0.20.2" } @@ -9098,9 +9134,9 @@ "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==" }, "gatsby": { - "version": "4.17.2", - "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-4.17.2.tgz", - "integrity": "sha512-uMNH/X/Fd0kGjelgAPTukgQhxu/aMhRj5YJ07SM4D2yBuO+c4+y1dZRz5q9EUryCeVSx1cSt0J6JMkfzOXmbyA==", + "version": "4.18.0", + "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-4.18.0.tgz", + "integrity": "sha512-EyiwYUsbSKUKsdjm8nnLw5AGJwOJ9NAWcrFg1V/QU4CUnk/M8EiP0TxiGUmK1/K7g82XGxUjuAPYJKJk85yxHA==", "requires": { "@babel/code-frame": "^7.14.0", "@babel/core": "^7.15.5", @@ -9136,15 +9172,15 @@ "babel-plugin-add-module-exports": "^1.0.4", "babel-plugin-dynamic-import-node": "^2.3.3", "babel-plugin-lodash": "^3.3.4", - "babel-plugin-remove-graphql-queries": "^4.17.0", - "babel-preset-gatsby": "^2.17.0", + "babel-plugin-remove-graphql-queries": "^4.18.0", + "babel-preset-gatsby": "^2.18.0", "better-opn": "^2.1.1", "bluebird": "^3.7.2", "body-parser": "^1.19.0", "browserslist": "^4.17.5", "cache-manager": "^2.11.1", "chalk": "^4.1.2", - "chokidar": "^3.5.2", + "chokidar": "^3.5.3", "common-tags": "^1.8.0", "compression": "^1.7.4", "cookie": "^0.4.1", @@ -9166,7 +9202,7 @@ "eslint-plugin-graphql": "^4.0.0", "eslint-plugin-import": "^2.26.0", "eslint-plugin-jsx-a11y": "^6.5.1", - "eslint-plugin-react": "^7.29.4", + "eslint-plugin-react": "^7.30.0", "eslint-plugin-react-hooks": "^4.5.0", "eslint-webpack-plugin": "^2.6.0", "event-source-polyfill": "1.0.25", @@ -9180,21 +9216,21 @@ "find-cache-dir": "^3.3.2", "fs-exists-cached": "1.0.0", "fs-extra": "^10.1.0", - "gatsby-cli": "^4.17.1", - "gatsby-core-utils": "^3.17.0", - "gatsby-graphiql-explorer": "^2.17.0", - "gatsby-legacy-polyfills": "^2.17.0", - "gatsby-link": "^4.17.0", - "gatsby-page-utils": "^2.17.0", - "gatsby-parcel-config": "0.8.0", - "gatsby-plugin-page-creator": "^4.17.0", - "gatsby-plugin-typescript": "^4.17.0", - "gatsby-plugin-utils": "^3.11.0", - "gatsby-react-router-scroll": "^5.17.0", - "gatsby-script": "^1.2.0", - "gatsby-sharp": "^0.11.0", - "gatsby-telemetry": "^3.17.0", - "gatsby-worker": "^1.17.0", + "gatsby-cli": "^4.18.0", + "gatsby-core-utils": "^3.18.0", + "gatsby-graphiql-explorer": "^2.18.0", + "gatsby-legacy-polyfills": "^2.18.0", + "gatsby-link": "^4.18.0", + "gatsby-page-utils": "^2.18.0", + "gatsby-parcel-config": "0.9.0", + "gatsby-plugin-page-creator": "^4.18.0", + "gatsby-plugin-typescript": "^4.18.0", + "gatsby-plugin-utils": "^3.12.0", + "gatsby-react-router-scroll": "^5.18.0", + "gatsby-script": "^1.3.0", + "gatsby-sharp": "^0.12.0", + "gatsby-telemetry": "^3.18.0", + "gatsby-worker": "^1.18.0", "glob": "^7.2.3", "globby": "^11.1.0", "got": "^11.8.2", @@ -9246,7 +9282,6 @@ "slugify": "^1.6.1", "socket.io": "3.1.2", "socket.io-client": "3.1.3", - "source-map-support": "^0.5.20", "st": "^2.0.0", "stack-trace": "^0.0.10", "string-similarity": "^1.2.2", @@ -9285,12 +9320,12 @@ } }, "babel-plugin-remove-graphql-queries": { - "version": "4.17.0", - "resolved": "https://registry.npmjs.org/babel-plugin-remove-graphql-queries/-/babel-plugin-remove-graphql-queries-4.17.0.tgz", - "integrity": "sha512-UovjamHhy5y46WyBO/hfqxrLbMq04o+hlTeqCRzeLol4eWtH+8CufdLAZWYtM1l1BIChwvXCxDY2ugeXlbj7+w==", + "version": "4.18.0", + "resolved": "https://registry.npmjs.org/babel-plugin-remove-graphql-queries/-/babel-plugin-remove-graphql-queries-4.18.0.tgz", + "integrity": "sha512-6oOm/cTZdk+7yPh4R4ISLKNur3rK5w2zAUCXTOGKYcRYbvKCS22ODafQBrNcu/UdfpXwSz3XZOG5ru72Z5usUw==", "requires": { "@babel/runtime": "^7.15.4", - "gatsby-core-utils": "^3.17.0" + "gatsby-core-utils": "^3.18.0" } }, "color-convert": { @@ -9331,9 +9366,9 @@ } }, "gatsby-cli": { - "version": "4.17.1", - "resolved": "https://registry.npmjs.org/gatsby-cli/-/gatsby-cli-4.17.1.tgz", - "integrity": "sha512-yLNRGKo8vyeiqKNTH5MkE0Q3AF6Un1v3MVlXzvoyRNs1DIHwkkZ22jGOB64/KIIR/o2cjRsrKJNCVjGV7qNnzw==", + "version": "4.18.0", + "resolved": "https://registry.npmjs.org/gatsby-cli/-/gatsby-cli-4.18.0.tgz", + "integrity": "sha512-H4V1XvXP3EMwUBDbAlpu3jbjlCetUmHY6VB1YsH2kkIdlMrOgjUgNDFpqjgbk7k7z61du2tCgl1lyW+5he+SnA==", "requires": { "@babel/code-frame": "^7.14.0", "@babel/core": "^7.15.5", @@ -9352,13 +9387,13 @@ "common-tags": "^1.8.2", "configstore": "^5.0.1", "convert-hrtime": "^3.0.0", - "create-gatsby": "^2.17.0", + "create-gatsby": "^2.18.0", "envinfo": "^7.8.1", "execa": "^5.1.1", "fs-exists-cached": "^1.0.0", "fs-extra": "^10.1.0", - "gatsby-core-utils": "^3.17.0", - "gatsby-telemetry": "^3.17.0", + "gatsby-core-utils": "^3.18.0", + "gatsby-telemetry": "^3.18.0", "hosted-git-info": "^3.0.8", "is-valid-path": "^0.1.1", "joi": "^17.4.2", @@ -9382,9 +9417,9 @@ } }, "gatsby-core-utils": { - "version": "3.17.0", - "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.17.0.tgz", - "integrity": "sha512-1e0YaqTAEpSSBkpWkY703lu+Bl76ASXUvUcpnNO3CavCYZsRQxAXtMXIKIEvhm1z6zWJmY9HILo6/DjP+PHeyw==", + "version": "3.18.0", + "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.18.0.tgz", + "integrity": "sha512-mCoNgH4MilosLhEroklgVffwie9lyxgmvNwe/oIyzXr6NcZ2uxSp8G1KrgxdG2srt2hCNlZLlzS25ltLTeHTjA==", "requires": { "@babel/runtime": "^7.15.4", "ci-info": "2.0.0", @@ -9392,7 +9427,7 @@ "fastq": "^1.13.0", "file-type": "^16.5.3", "fs-extra": "^10.1.0", - "got": "^11.8.3", + "got": "^11.8.5", "import-from": "^4.0.0", "lmdb": "2.5.2", "lock": "^1.1.0", @@ -9401,18 +9436,38 @@ "resolve-from": "^5.0.0", "tmp": "^0.2.1", "xdg-basedir": "^4.0.0" + }, + "dependencies": { + "got": { + "version": "11.8.5", + "resolved": "https://registry.npmjs.org/got/-/got-11.8.5.tgz", + "integrity": "sha512-o0Je4NvQObAuZPHLFoRSkdG2lTgtcynqymzg2Vupdx6PorhaT5MCbIyXG6d4D94kk8ZG57QeosgdiqfJWhEhlQ==", + "requires": { + "@sindresorhus/is": "^4.0.0", + "@szmarczak/http-timer": "^4.0.5", + "@types/cacheable-request": "^6.0.1", + "@types/responselike": "^1.0.0", + "cacheable-lookup": "^5.0.3", + "cacheable-request": "^7.0.2", + "decompress-response": "^6.0.0", + "http2-wrapper": "^1.0.0-beta.5.2", + "lowercase-keys": "^2.0.0", + "p-cancelable": "^2.0.0", + "responselike": "^2.0.0" + } + } } }, "gatsby-plugin-utils": { - "version": "3.11.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-utils/-/gatsby-plugin-utils-3.11.0.tgz", - "integrity": "sha512-v2D6O2aME9p7tqlGykq5mgtj7Jqp/CWatgo0zJ7bFWSYPPUpQ7jRVAph1PIgFTAV/CaUrrvt9sxdRaZrglJyug==", + "version": "3.12.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-utils/-/gatsby-plugin-utils-3.12.0.tgz", + "integrity": "sha512-vdz3qwaCOkvgzAxMkZlgpmpWf555jISwek5lyWYhGyJJvXYV8KQ2cZ4CoOfFKAYVeZVSucrHcdWyY3fLLpQvAA==", "requires": { "@babel/runtime": "^7.15.4", "@gatsbyjs/potrace": "^2.2.0", "fs-extra": "^10.1.0", - "gatsby-core-utils": "^3.17.0", - "gatsby-sharp": "^0.11.0", + "gatsby-core-utils": "^3.18.0", + "gatsby-sharp": "^0.12.0", "graphql-compose": "^9.0.7", "import-from": "^4.0.0", "joi": "^17.4.2", @@ -9429,19 +9484,19 @@ } }, "gatsby-telemetry": { - "version": "3.17.0", - "resolved": "https://registry.npmjs.org/gatsby-telemetry/-/gatsby-telemetry-3.17.0.tgz", - "integrity": "sha512-1N4uKj2Yj7AykLmwjsdOmNirf3UmP8CBXjj/LmWf5cLDVbdPqkirAlyD6uTeEliG5UFHPTlBsRi26v558mFYJQ==", + "version": "3.18.0", + "resolved": "https://registry.npmjs.org/gatsby-telemetry/-/gatsby-telemetry-3.18.0.tgz", + "integrity": "sha512-i1JvNqGOyLDPGEn1QN29YGpe2ripg2LZBAOhXmk6lAhRL5fTVo6WkEA2yW7XESnXIOJBFymgVbUlLjXoqeZ5Xg==", "requires": { "@babel/code-frame": "^7.14.0", "@babel/runtime": "^7.15.4", - "@turist/fetch": "^7.1.7", + "@turist/fetch": "^7.2.0", "@turist/time": "^0.0.2", "async-retry-ng": "^2.0.1", "boxen": "^4.2.0", "configstore": "^5.0.1", "fs-extra": "^10.1.0", - "gatsby-core-utils": "^3.17.0", + "gatsby-core-utils": "^3.18.0", "git-up": "^4.0.5", "is-docker": "^2.2.1", "lodash": "^4.17.21", @@ -9629,17 +9684,17 @@ } }, "gatsby-graphiql-explorer": { - "version": "2.17.0", - "resolved": "https://registry.npmjs.org/gatsby-graphiql-explorer/-/gatsby-graphiql-explorer-2.17.0.tgz", - "integrity": "sha512-IWAcxMlOofpg8wRzLGjuey3HunWu3bLilKurX8csD0d+YsuiB4aqZc7dWi2Zc15ZHZ5Hh8zMpOv0MVW9qhjnCg==", + "version": "2.18.0", + "resolved": "https://registry.npmjs.org/gatsby-graphiql-explorer/-/gatsby-graphiql-explorer-2.18.0.tgz", + "integrity": "sha512-mmY+kHc+axpDO9lfjbCEf/0oEIHTcZmpe2PtQAzkhnQHyti3xd9IIafq/1W3QKIJo5c7f40+tR3sFTERqaBeIA==", "requires": { "@babel/runtime": "^7.15.4" } }, "gatsby-legacy-polyfills": { - "version": "2.17.0", - "resolved": "https://registry.npmjs.org/gatsby-legacy-polyfills/-/gatsby-legacy-polyfills-2.17.0.tgz", - "integrity": "sha512-tpONSDutxEZY3vOdUaZ1yE9d0QWZ5/p47juvnhTv0qjGkBwow3gfCpgJwDzWyzKl0w0geesZwlLnaCA3WSEv7Q==", + "version": "2.18.0", + "resolved": "https://registry.npmjs.org/gatsby-legacy-polyfills/-/gatsby-legacy-polyfills-2.18.0.tgz", + "integrity": "sha512-wPnsRUnnab10wyt5VPkIhpJC1k8bVrpn0Sfat1L3JskYwkVIEvquqTmHWkpGMB8SLbXQiJEGCs2TcIrx9riL+w==", "requires": { "@babel/runtime": "^7.15.4", "core-js-compat": "3.9.0" @@ -9662,26 +9717,26 @@ } }, "gatsby-link": { - "version": "4.17.0", - "resolved": "https://registry.npmjs.org/gatsby-link/-/gatsby-link-4.17.0.tgz", - "integrity": "sha512-hDh+9OFMHNQ/5YdDdTcpSMB8xAYSP4OMkRuwmgPKH1jtOuov3pzwFAo19RR34CsOqzKd3LSQbCjIovOksjlAeA==", + "version": "4.18.0", + "resolved": "https://registry.npmjs.org/gatsby-link/-/gatsby-link-4.18.0.tgz", + "integrity": "sha512-nE+Z/iE55Id84YqsQOT1bfPJ/AsupY/4s8i6NllQ8no/PRgDGMpkTG6ANqyt2CHs/bywxch2rv8Ho7Gwsuuueg==", "requires": { "@babel/runtime": "^7.15.4", "@types/reach__router": "^1.3.10", - "gatsby-page-utils": "^2.17.0", + "gatsby-page-utils": "^2.18.0", "prop-types": "^15.8.1" } }, "gatsby-page-utils": { - "version": "2.17.0", - "resolved": "https://registry.npmjs.org/gatsby-page-utils/-/gatsby-page-utils-2.17.0.tgz", - "integrity": "sha512-aeDrvYm6uTXayr/Yw0dNQUy+P9a5TshuG9UnRddCB7jQAR1aufjkNu8WH93l151p4jqUoYGemxgZIhrNv1+i/g==", + "version": "2.18.0", + "resolved": "https://registry.npmjs.org/gatsby-page-utils/-/gatsby-page-utils-2.18.0.tgz", + "integrity": "sha512-qTwlqscKxkBlMd+Mn8xj6sh7L0LbfLGYOPCYozJnukXv8d/6Jyk1nfaP6I82hwj/iyhaBQtk7g8g4XyBJJaESw==", "requires": { "@babel/runtime": "^7.15.4", "bluebird": "^3.7.2", - "chokidar": "^3.5.2", + "chokidar": "^3.5.3", "fs-exists-cached": "^1.0.0", - "gatsby-core-utils": "^3.17.0", + "gatsby-core-utils": "^3.18.0", "glob": "^7.2.3", "lodash": "^4.17.21", "micromatch": "^4.0.5" @@ -9698,9 +9753,9 @@ } }, "gatsby-core-utils": { - "version": "3.17.0", - "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.17.0.tgz", - "integrity": "sha512-1e0YaqTAEpSSBkpWkY703lu+Bl76ASXUvUcpnNO3CavCYZsRQxAXtMXIKIEvhm1z6zWJmY9HILo6/DjP+PHeyw==", + "version": "3.18.0", + "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.18.0.tgz", + "integrity": "sha512-mCoNgH4MilosLhEroklgVffwie9lyxgmvNwe/oIyzXr6NcZ2uxSp8G1KrgxdG2srt2hCNlZLlzS25ltLTeHTjA==", "requires": { "@babel/runtime": "^7.15.4", "ci-info": "2.0.0", @@ -9708,7 +9763,7 @@ "fastq": "^1.13.0", "file-type": "^16.5.3", "fs-extra": "^10.1.0", - "got": "^11.8.3", + "got": "^11.8.5", "import-from": "^4.0.0", "lmdb": "2.5.2", "lock": "^1.1.0", @@ -9732,6 +9787,24 @@ "path-is-absolute": "^1.0.0" } }, + "got": { + "version": "11.8.5", + "resolved": "https://registry.npmjs.org/got/-/got-11.8.5.tgz", + "integrity": "sha512-o0Je4NvQObAuZPHLFoRSkdG2lTgtcynqymzg2Vupdx6PorhaT5MCbIyXG6d4D94kk8ZG57QeosgdiqfJWhEhlQ==", + "requires": { + "@sindresorhus/is": "^4.0.0", + "@szmarczak/http-timer": "^4.0.5", + "@types/cacheable-request": "^6.0.1", + "@types/responselike": "^1.0.0", + "cacheable-lookup": "^5.0.3", + "cacheable-request": "^7.0.2", + "decompress-response": "^6.0.0", + "http2-wrapper": "^1.0.0-beta.5.2", + "lowercase-keys": "^2.0.0", + "p-cancelable": "^2.0.0", + "responselike": "^2.0.0" + } + }, "jsonfile": { "version": "6.1.0", "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", @@ -9790,11 +9863,11 @@ } }, "gatsby-parcel-config": { - "version": "0.8.0", - "resolved": "https://registry.npmjs.org/gatsby-parcel-config/-/gatsby-parcel-config-0.8.0.tgz", - "integrity": "sha512-HzLU8uoJLuakH08T27K8GKx7rcLEVkKVClffAuVKrlcVYhNH+x1LvIwe+uMTIIdfu+YtUpUP1PpTdua6YfrVTQ==", + "version": "0.9.0", + "resolved": "https://registry.npmjs.org/gatsby-parcel-config/-/gatsby-parcel-config-0.9.0.tgz", + "integrity": "sha512-ccGw/L8ylhDgE/4tr52B6tb2jreApOMoYPW75Z8aM2ULRz505fL5mrnkG1fdQDBZSCHx/0j0x2TZyCLrt0Bvlw==", "requires": { - "@gatsbyjs/parcel-namer-relative-to-cwd": "^1.2.0", + "@gatsbyjs/parcel-namer-relative-to-cwd": "1.3.0", "@parcel/bundler-default": "2.6.0", "@parcel/compressor-raw": "2.6.0", "@parcel/namer-default": "2.6.0", @@ -9978,19 +10051,19 @@ } }, "gatsby-plugin-page-creator": { - "version": "4.17.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-page-creator/-/gatsby-plugin-page-creator-4.17.0.tgz", - "integrity": "sha512-Nv1lryCAfo5cWqkVnnqiMC6bmXXXOhdl2efLZKK88QwqT4tZO51gGrgsZGL4mtXtUUSkJXGE8pmjelUOcR+23g==", + "version": "4.18.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-page-creator/-/gatsby-plugin-page-creator-4.18.0.tgz", + "integrity": "sha512-6bY4vJndDw0nBcOuQdX41Wvbctw0y9+a7IavCFJKFeNs+Zo0XH2FX0IAww0slDnSJU6AukJ9qfjHqKJkADAZpQ==", "requires": { "@babel/runtime": "^7.15.4", "@babel/traverse": "^7.15.4", "@sindresorhus/slugify": "^1.1.2", - "chokidar": "^3.5.2", + "chokidar": "^3.5.3", "fs-exists-cached": "^1.0.0", - "gatsby-core-utils": "^3.17.0", - "gatsby-page-utils": "^2.17.0", - "gatsby-plugin-utils": "^3.11.0", - "gatsby-telemetry": "^3.17.0", + "gatsby-core-utils": "^3.18.0", + "gatsby-page-utils": "^2.18.0", + "gatsby-plugin-utils": "^3.12.0", + "gatsby-telemetry": "^3.18.0", "globby": "^11.1.0", "lodash": "^4.17.21" }, @@ -10060,9 +10133,9 @@ } }, "gatsby-core-utils": { - "version": "3.17.0", - "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.17.0.tgz", - "integrity": "sha512-1e0YaqTAEpSSBkpWkY703lu+Bl76ASXUvUcpnNO3CavCYZsRQxAXtMXIKIEvhm1z6zWJmY9HILo6/DjP+PHeyw==", + "version": "3.18.0", + "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.18.0.tgz", + "integrity": "sha512-mCoNgH4MilosLhEroklgVffwie9lyxgmvNwe/oIyzXr6NcZ2uxSp8G1KrgxdG2srt2hCNlZLlzS25ltLTeHTjA==", "requires": { "@babel/runtime": "^7.15.4", "ci-info": "2.0.0", @@ -10070,7 +10143,7 @@ "fastq": "^1.13.0", "file-type": "^16.5.3", "fs-extra": "^10.1.0", - "got": "^11.8.3", + "got": "^11.8.5", "import-from": "^4.0.0", "lmdb": "2.5.2", "lock": "^1.1.0", @@ -10082,15 +10155,15 @@ } }, "gatsby-plugin-utils": { - "version": "3.11.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-utils/-/gatsby-plugin-utils-3.11.0.tgz", - "integrity": "sha512-v2D6O2aME9p7tqlGykq5mgtj7Jqp/CWatgo0zJ7bFWSYPPUpQ7jRVAph1PIgFTAV/CaUrrvt9sxdRaZrglJyug==", + "version": "3.12.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-utils/-/gatsby-plugin-utils-3.12.0.tgz", + "integrity": "sha512-vdz3qwaCOkvgzAxMkZlgpmpWf555jISwek5lyWYhGyJJvXYV8KQ2cZ4CoOfFKAYVeZVSucrHcdWyY3fLLpQvAA==", "requires": { "@babel/runtime": "^7.15.4", "@gatsbyjs/potrace": "^2.2.0", "fs-extra": "^10.1.0", - "gatsby-core-utils": "^3.17.0", - "gatsby-sharp": "^0.11.0", + "gatsby-core-utils": "^3.18.0", + "gatsby-sharp": "^0.12.0", "graphql-compose": "^9.0.7", "import-from": "^4.0.0", "joi": "^17.4.2", @@ -10100,25 +10173,43 @@ } }, "gatsby-telemetry": { - "version": "3.17.0", - "resolved": "https://registry.npmjs.org/gatsby-telemetry/-/gatsby-telemetry-3.17.0.tgz", - "integrity": "sha512-1N4uKj2Yj7AykLmwjsdOmNirf3UmP8CBXjj/LmWf5cLDVbdPqkirAlyD6uTeEliG5UFHPTlBsRi26v558mFYJQ==", + "version": "3.18.0", + "resolved": "https://registry.npmjs.org/gatsby-telemetry/-/gatsby-telemetry-3.18.0.tgz", + "integrity": "sha512-i1JvNqGOyLDPGEn1QN29YGpe2ripg2LZBAOhXmk6lAhRL5fTVo6WkEA2yW7XESnXIOJBFymgVbUlLjXoqeZ5Xg==", "requires": { "@babel/code-frame": "^7.14.0", "@babel/runtime": "^7.15.4", - "@turist/fetch": "^7.1.7", + "@turist/fetch": "^7.2.0", "@turist/time": "^0.0.2", "async-retry-ng": "^2.0.1", "boxen": "^4.2.0", "configstore": "^5.0.1", "fs-extra": "^10.1.0", - "gatsby-core-utils": "^3.17.0", + "gatsby-core-utils": "^3.18.0", "git-up": "^4.0.5", "is-docker": "^2.2.1", "lodash": "^4.17.21", "node-fetch": "^2.6.7" } }, + "got": { + "version": "11.8.5", + "resolved": "https://registry.npmjs.org/got/-/got-11.8.5.tgz", + "integrity": "sha512-o0Je4NvQObAuZPHLFoRSkdG2lTgtcynqymzg2Vupdx6PorhaT5MCbIyXG6d4D94kk8ZG57QeosgdiqfJWhEhlQ==", + "requires": { + "@sindresorhus/is": "^4.0.0", + "@szmarczak/http-timer": "^4.0.5", + "@types/cacheable-request": "^6.0.1", + "@types/responselike": "^1.0.0", + "cacheable-lookup": "^5.0.3", + "cacheable-request": "^7.0.2", + "decompress-response": "^6.0.0", + "http2-wrapper": "^1.0.0-beta.5.2", + "lowercase-keys": "^2.0.0", + "p-cancelable": "^2.0.0", + "responselike": "^2.0.0" + } + }, "has-flag": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", @@ -10291,9 +10382,9 @@ } }, "gatsby-plugin-typescript": { - "version": "4.17.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-typescript/-/gatsby-plugin-typescript-4.17.0.tgz", - "integrity": "sha512-aSO/h4z+jdWBZtEnH17NoZaFchO8LkEcIdNX2saYIjJfa2tMbOR+wnOuQJVAdj61n8ntc1pQkNJxiEK31IaZjw==", + "version": "4.18.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-typescript/-/gatsby-plugin-typescript-4.18.0.tgz", + "integrity": "sha512-SuNBrp57SnovOyhCz0zPkz7begV4UR2XdXUrFsh4N0jWOI5yFNVgENpKlbI/O7JnvgyV5KC/pkobNh3we+0mcQ==", "requires": { "@babel/core": "^7.15.5", "@babel/plugin-proposal-nullish-coalescing-operator": "^7.14.5", @@ -10301,16 +10392,16 @@ "@babel/plugin-proposal-optional-chaining": "^7.14.5", "@babel/preset-typescript": "^7.15.0", "@babel/runtime": "^7.15.4", - "babel-plugin-remove-graphql-queries": "^4.17.0" + "babel-plugin-remove-graphql-queries": "^4.18.0" }, "dependencies": { "babel-plugin-remove-graphql-queries": { - "version": "4.17.0", - "resolved": "https://registry.npmjs.org/babel-plugin-remove-graphql-queries/-/babel-plugin-remove-graphql-queries-4.17.0.tgz", - "integrity": "sha512-UovjamHhy5y46WyBO/hfqxrLbMq04o+hlTeqCRzeLol4eWtH+8CufdLAZWYtM1l1BIChwvXCxDY2ugeXlbj7+w==", + "version": "4.18.0", + "resolved": "https://registry.npmjs.org/babel-plugin-remove-graphql-queries/-/babel-plugin-remove-graphql-queries-4.18.0.tgz", + "integrity": "sha512-6oOm/cTZdk+7yPh4R4ISLKNur3rK5w2zAUCXTOGKYcRYbvKCS22ODafQBrNcu/UdfpXwSz3XZOG5ru72Z5usUw==", "requires": { "@babel/runtime": "^7.15.4", - "gatsby-core-utils": "^3.17.0" + "gatsby-core-utils": "^3.18.0" } }, "fs-extra": { @@ -10324,9 +10415,9 @@ } }, "gatsby-core-utils": { - "version": "3.17.0", - "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.17.0.tgz", - "integrity": "sha512-1e0YaqTAEpSSBkpWkY703lu+Bl76ASXUvUcpnNO3CavCYZsRQxAXtMXIKIEvhm1z6zWJmY9HILo6/DjP+PHeyw==", + "version": "3.18.0", + "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.18.0.tgz", + "integrity": "sha512-mCoNgH4MilosLhEroklgVffwie9lyxgmvNwe/oIyzXr6NcZ2uxSp8G1KrgxdG2srt2hCNlZLlzS25ltLTeHTjA==", "requires": { "@babel/runtime": "^7.15.4", "ci-info": "2.0.0", @@ -10334,7 +10425,7 @@ "fastq": "^1.13.0", "file-type": "^16.5.3", "fs-extra": "^10.1.0", - "got": "^11.8.3", + "got": "^11.8.5", "import-from": "^4.0.0", "lmdb": "2.5.2", "lock": "^1.1.0", @@ -10345,6 +10436,24 @@ "xdg-basedir": "^4.0.0" } }, + "got": { + "version": "11.8.5", + "resolved": "https://registry.npmjs.org/got/-/got-11.8.5.tgz", + "integrity": "sha512-o0Je4NvQObAuZPHLFoRSkdG2lTgtcynqymzg2Vupdx6PorhaT5MCbIyXG6d4D94kk8ZG57QeosgdiqfJWhEhlQ==", + "requires": { + "@sindresorhus/is": "^4.0.0", + "@szmarczak/http-timer": "^4.0.5", + "@types/cacheable-request": "^6.0.1", + "@types/responselike": "^1.0.0", + "cacheable-lookup": "^5.0.3", + "cacheable-request": "^7.0.2", + "decompress-response": "^6.0.0", + "http2-wrapper": "^1.0.0-beta.5.2", + "lowercase-keys": "^2.0.0", + "p-cancelable": "^2.0.0", + "responselike": "^2.0.0" + } + }, "jsonfile": { "version": "6.1.0", "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", @@ -10404,9 +10513,9 @@ } }, "gatsby-react-router-scroll": { - "version": "5.17.0", - "resolved": "https://registry.npmjs.org/gatsby-react-router-scroll/-/gatsby-react-router-scroll-5.17.0.tgz", - "integrity": "sha512-RwFeZlKL0T8dxpEdlmuQAH+h4ugrQQpl4U2m0Wdo/F9/8/VEiAeX64oa2r2BqiiTf4MzAIIT+5/ONt83FcmZWg==", + "version": "5.18.0", + "resolved": "https://registry.npmjs.org/gatsby-react-router-scroll/-/gatsby-react-router-scroll-5.18.0.tgz", + "integrity": "sha512-/A1k468s6g713c8me5DuGiia8rPWLuwjITQ/pKqgJwioJVB6MnD/iBCbHUTzLHlNwZypAVdGHCN8fCIcPcMb6Q==", "requires": { "@babel/runtime": "^7.15.4", "prop-types": "^15.8.1" @@ -10457,14 +10566,14 @@ } }, "gatsby-script": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/gatsby-script/-/gatsby-script-1.2.0.tgz", - "integrity": "sha512-Fkf6yJxwuQCS6xdFxF0gpiCUiS3PYnRv5I2mCAJV0Cu7k4PYgVpQJt79bcDHvnx755VpXOmZIfMXegACg1XS0w==" + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/gatsby-script/-/gatsby-script-1.3.0.tgz", + "integrity": "sha512-eCz6mcMFpB7kvpmyM7AtMTxNxzdrzPgt8GiuDKWFOlDgk1il6PUjO99QsL/cCeokmaiH/6egVnm9b33/x+sy9A==" }, "gatsby-sharp": { - "version": "0.11.0", - "resolved": "https://registry.npmjs.org/gatsby-sharp/-/gatsby-sharp-0.11.0.tgz", - "integrity": "sha512-RIbU8qi/Qs7G/KJiY0zyGS9Yic5n4RpDUf/1W3gvRl78Uo3LSuIeGEpaai6mYEnreuGb5fQIcqdkYs/UV3e8WA==", + "version": "0.12.0", + "resolved": "https://registry.npmjs.org/gatsby-sharp/-/gatsby-sharp-0.12.0.tgz", + "integrity": "sha512-dZa/AgxmPzD0vvROEZSuT3IdzAFTxnq1FfLTf9n3mywonvsKYc84zj6nf8TEzBrVrBFAaLvZek4NpVAKWGr4/w==", "requires": { "@types/sharp": "^0.30.0", "sharp": "^0.30.3" @@ -10858,9 +10967,9 @@ } }, "gatsby-worker": { - "version": "1.17.0", - "resolved": "https://registry.npmjs.org/gatsby-worker/-/gatsby-worker-1.17.0.tgz", - "integrity": "sha512-hA7awNHmcNWp3TgQkjF0Z3I9YGWpdsf8jUdJOlAjI+aBxQ2vdHTVNwbMdXwtlf9umQRwORnmEzADmQdm0Cx5AA==", + "version": "1.18.0", + "resolved": "https://registry.npmjs.org/gatsby-worker/-/gatsby-worker-1.18.0.tgz", + "integrity": "sha512-gNzqDrYFMXlfXCzdClORyDQWQZKTOF6nRUrhZT8PUxzQViO+DvnEKE3EAQvZizYKW1Hgw7cbiTtLG3qshkNepw==", "requires": { "@babel/core": "^7.15.5", "@babel/runtime": "^7.15.4" @@ -12248,9 +12357,9 @@ "integrity": "sha512-pJiBpiXMbt7dkzXe8Ghj/u4FfXOOa98fPW+bihOJ4SjnoijweJrNThJfd3ifXpXhREjpoF2mZVH1GfS9LV3kHQ==" }, "language-subtag-registry": { - "version": "0.3.21", - "resolved": "https://registry.npmjs.org/language-subtag-registry/-/language-subtag-registry-0.3.21.tgz", - "integrity": "sha512-L0IqwlIXjilBVVYKFT37X9Ih11Um5NEl9cbJIuU/SwP/zEEAbBPOnEeeuxVMf45ydWQRDQN3Nqc96OgbH1K+Pg==" + "version": "0.3.22", + "resolved": "https://registry.npmjs.org/language-subtag-registry/-/language-subtag-registry-0.3.22.tgz", + "integrity": "sha512-tN0MCzyWnoz/4nHS6uxdlFWoUZT7ABptwKPQ52Ea7URk6vll88bWBVhodtnlfEuCcKWNGoc+uGbw1cwa9IKh/w==" }, "language-tags": { "version": "1.0.5", @@ -14061,14 +14170,14 @@ } }, "caniuse-lite": { - "version": "1.0.30001359", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001359.tgz", - "integrity": "sha512-Xln/BAsPzEuiVLgJ2/45IaqD9jShtk3Y33anKb4+yLwQzws3+v6odKfpgES/cDEaZMLzSChpIGdbOYtH9MyuHw==" + "version": "1.0.30001363", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001363.tgz", + "integrity": "sha512-HpQhpzTGGPVMnCjIomjt+jvyUu8vNFo3TaDiZ/RcoTrlOq/5+tC8zHdsbgFB6MxmaY+jCpsH09aD80Bb4Ow3Sg==" }, "electron-to-chromium": { - "version": "1.4.172", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.172.tgz", - "integrity": "sha512-yDoFfTJnqBAB6hSiPvzmsBJSrjOXJtHSJoqJdI/zSIh7DYupYnIOHt/bbPw/WE31BJjNTybDdNAs21gCMnTh0Q==" + "version": "1.4.179", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.179.tgz", + "integrity": "sha512-1XeTb/U/8Xgh2YgPOqhakLYsvCcU4U7jUjTMbEnhIJoIWd/Qt3yC8y0cbG+fHzn4zUNF99Ey1xiPf20bwgLO3Q==" } } }, diff --git a/starters/gatsby-starter-theme/package.json b/starters/gatsby-starter-theme/package.json index 156d3bdc8eef3..16157f56152f0 100644 --- a/starters/gatsby-starter-theme/package.json +++ b/starters/gatsby-starter-theme/package.json @@ -10,7 +10,7 @@ }, "license": "0BSD", "dependencies": { - "gatsby": "^4.17.2", + "gatsby": "^4.18.0", "gatsby-theme-blog": "^4.0.0", "gatsby-theme-notes": "^4.0.0", "react": "^17.0.2", diff --git a/starters/gatsby-starter-wordpress-blog/package-lock.json b/starters/gatsby-starter-wordpress-blog/package-lock.json index f1c38d5e233ed..720407f5518cd 100644 --- a/starters/gatsby-starter-wordpress-blog/package-lock.json +++ b/starters/gatsby-starter-wordpress-blog/package-lock.json @@ -95,46 +95,6 @@ "@babel/highlight": "^7.18.6" } }, - "@babel/generator": { - "version": "7.18.7", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.18.7.tgz", - "integrity": "sha512-shck+7VLlY72a2w9c3zYWuE1pwOKEiQHV7GTUbSnhyl5eu3i04t30tBY82ZRWrDfo3gkakCFtevExnxbkf2a3A==", - "requires": { - "@babel/types": "^7.18.7", - "@jridgewell/gen-mapping": "^0.3.2", - "jsesc": "^2.5.1" - } - }, - "@babel/helper-environment-visitor": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.18.6.tgz", - "integrity": "sha512-8n6gSfn2baOY+qlp+VSzsosjCVGFqWKmDF0cCWOybh52Dw3SEyoWR1KrhMJASjLwIEkkAufZ0xvr+SxLHSpy2Q==" - }, - "@babel/helper-function-name": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.18.6.tgz", - "integrity": "sha512-0mWMxV1aC97dhjCah5U5Ua7668r5ZmSC2DLfH2EZnf9c3/dHZKiFa5pRLMH5tjSl471tY6496ZWk/kjNONBxhw==", - "requires": { - "@babel/template": "^7.18.6", - "@babel/types": "^7.18.6" - } - }, - "@babel/helper-hoist-variables": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.18.6.tgz", - "integrity": "sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q==", - "requires": { - "@babel/types": "^7.18.6" - } - }, - "@babel/helper-split-export-declaration": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.18.6.tgz", - "integrity": "sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA==", - "requires": { - "@babel/types": "^7.18.6" - } - }, "@babel/helper-validator-identifier": { "version": "7.18.6", "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.18.6.tgz", @@ -150,38 +110,6 @@ "js-tokens": "^4.0.0" } }, - "@babel/parser": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.18.6.tgz", - "integrity": "sha512-uQVSa9jJUe/G/304lXspfWVpKpK4euFLgGiMQFOCpM/bgcAdeoHwi/OQz23O9GK2osz26ZiXRRV9aV+Yl1O8tw==" - }, - "@babel/template": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.18.6.tgz", - "integrity": "sha512-JoDWzPe+wgBsTTgdnIma3iHNFC7YVJoPssVBDjiHfNlyt4YcunDtcDOUmfVDfCK5MfdsaIoX9PkijPhjH3nYUw==", - "requires": { - "@babel/code-frame": "^7.18.6", - "@babel/parser": "^7.18.6", - "@babel/types": "^7.18.6" - } - }, - "@babel/traverse": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.18.6.tgz", - "integrity": "sha512-zS/OKyqmD7lslOtFqbscH6gMLFYOfG1YPqCKfAW5KrTeolKqvB8UelR49Fpr6y93kYkW2Ik00mT1LOGiAGvizw==", - "requires": { - "@babel/code-frame": "^7.18.6", - "@babel/generator": "^7.18.6", - "@babel/helper-environment-visitor": "^7.18.6", - "@babel/helper-function-name": "^7.18.6", - "@babel/helper-hoist-variables": "^7.18.6", - "@babel/helper-split-export-declaration": "^7.18.6", - "@babel/parser": "^7.18.6", - "@babel/types": "^7.18.6", - "debug": "^4.1.0", - "globals": "^11.1.0" - } - }, "@babel/types": { "version": "7.18.7", "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.7.tgz", @@ -191,24 +119,6 @@ "to-fast-properties": "^2.0.0" } }, - "@jridgewell/gen-mapping": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.2.tgz", - "integrity": "sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A==", - "requires": { - "@jridgewell/set-array": "^1.0.1", - "@jridgewell/sourcemap-codec": "^1.4.10", - "@jridgewell/trace-mapping": "^0.3.9" - } - }, - "ansi-styles": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", - "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", - "requires": { - "color-convert": "^1.9.0" - } - }, "chalk": { "version": "2.4.2", "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", @@ -219,19 +129,6 @@ "supports-color": "^5.3.0" } }, - "color-convert": { - "version": "1.9.3", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", - "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", - "requires": { - "color-name": "1.1.3" - } - }, - "color-name": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", - "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==" - }, "debug": { "version": "4.3.4", "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", @@ -240,23 +137,10 @@ "ms": "2.1.2" } }, - "has-flag": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", - "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==" - }, "semver": { "version": "6.3.0", "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==" - }, - "supports-color": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", - "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", - "requires": { - "has-flag": "^3.0.0" - } } } }, @@ -278,21 +162,35 @@ } }, "@babel/generator": { - "version": "7.18.2", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.18.2.tgz", - "integrity": "sha512-W1lG5vUwFvfMd8HVXqdfbuG7RuaSrTCCD8cl8fP8wOivdbtbIg2Db3IWUcgvfxKbbn6ZBGYRW/Zk1MIwK49mgw==", + "version": "7.18.7", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.18.7.tgz", + "integrity": "sha512-shck+7VLlY72a2w9c3zYWuE1pwOKEiQHV7GTUbSnhyl5eu3i04t30tBY82ZRWrDfo3gkakCFtevExnxbkf2a3A==", "requires": { - "@babel/types": "^7.18.2", - "@jridgewell/gen-mapping": "^0.3.0", + "@babel/types": "^7.18.7", + "@jridgewell/gen-mapping": "^0.3.2", "jsesc": "^2.5.1" }, "dependencies": { + "@babel/helper-validator-identifier": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.18.6.tgz", + "integrity": "sha512-MmetCkz9ej86nJQV+sFCxoGGrUbU3q02kgLciwkrt9QqEB7cP39oKEY0PakknEO0Gu20SskMRi+AYZ3b1TpN9g==" + }, + "@babel/types": { + "version": "7.18.7", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.7.tgz", + "integrity": "sha512-QG3yxTcTIBoAcQmkCs+wAPYZhu7Dk9rXKacINfNbdJDNERTbLQbHGyVG8q/YGMPeCJRIhSY0+fTc5+xuh6WPSQ==", + "requires": { + "@babel/helper-validator-identifier": "^7.18.6", + "to-fast-properties": "^2.0.0" + } + }, "@jridgewell/gen-mapping": { - "version": "0.3.1", - "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.1.tgz", - "integrity": "sha512-GcHwniMlA2z+WFPWuY8lp3fsza0I8xPFMWL5+n8LYyP6PSvPrXf4+n8stDHZY2DM0zy9sVkRDy1jDI4XGzYVqg==", + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.2.tgz", + "integrity": "sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A==", "requires": { - "@jridgewell/set-array": "^1.0.0", + "@jridgewell/set-array": "^1.0.1", "@jridgewell/sourcemap-codec": "^1.4.10", "@jridgewell/trace-mapping": "^0.3.9" } @@ -378,121 +276,6 @@ "@babel/helper-optimise-call-expression": "^7.18.6", "@babel/helper-replace-supers": "^7.18.6", "@babel/helper-split-export-declaration": "^7.18.6" - }, - "dependencies": { - "@babel/code-frame": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.18.6.tgz", - "integrity": "sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q==", - "requires": { - "@babel/highlight": "^7.18.6" - } - }, - "@babel/helper-environment-visitor": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.18.6.tgz", - "integrity": "sha512-8n6gSfn2baOY+qlp+VSzsosjCVGFqWKmDF0cCWOybh52Dw3SEyoWR1KrhMJASjLwIEkkAufZ0xvr+SxLHSpy2Q==" - }, - "@babel/helper-function-name": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.18.6.tgz", - "integrity": "sha512-0mWMxV1aC97dhjCah5U5Ua7668r5ZmSC2DLfH2EZnf9c3/dHZKiFa5pRLMH5tjSl471tY6496ZWk/kjNONBxhw==", - "requires": { - "@babel/template": "^7.18.6", - "@babel/types": "^7.18.6" - } - }, - "@babel/helper-split-export-declaration": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.18.6.tgz", - "integrity": "sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA==", - "requires": { - "@babel/types": "^7.18.6" - } - }, - "@babel/helper-validator-identifier": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.18.6.tgz", - "integrity": "sha512-MmetCkz9ej86nJQV+sFCxoGGrUbU3q02kgLciwkrt9QqEB7cP39oKEY0PakknEO0Gu20SskMRi+AYZ3b1TpN9g==" - }, - "@babel/highlight": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.18.6.tgz", - "integrity": "sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==", - "requires": { - "@babel/helper-validator-identifier": "^7.18.6", - "chalk": "^2.0.0", - "js-tokens": "^4.0.0" - } - }, - "@babel/parser": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.18.6.tgz", - "integrity": "sha512-uQVSa9jJUe/G/304lXspfWVpKpK4euFLgGiMQFOCpM/bgcAdeoHwi/OQz23O9GK2osz26ZiXRRV9aV+Yl1O8tw==" - }, - "@babel/template": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.18.6.tgz", - "integrity": "sha512-JoDWzPe+wgBsTTgdnIma3iHNFC7YVJoPssVBDjiHfNlyt4YcunDtcDOUmfVDfCK5MfdsaIoX9PkijPhjH3nYUw==", - "requires": { - "@babel/code-frame": "^7.18.6", - "@babel/parser": "^7.18.6", - "@babel/types": "^7.18.6" - } - }, - "@babel/types": { - "version": "7.18.7", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.7.tgz", - "integrity": "sha512-QG3yxTcTIBoAcQmkCs+wAPYZhu7Dk9rXKacINfNbdJDNERTbLQbHGyVG8q/YGMPeCJRIhSY0+fTc5+xuh6WPSQ==", - "requires": { - "@babel/helper-validator-identifier": "^7.18.6", - "to-fast-properties": "^2.0.0" - } - }, - "ansi-styles": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", - "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", - "requires": { - "color-convert": "^1.9.0" - } - }, - "chalk": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", - "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", - "requires": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" - } - }, - "color-convert": { - "version": "1.9.3", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", - "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", - "requires": { - "color-name": "1.1.3" - } - }, - "color-name": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", - "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==" - }, - "has-flag": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", - "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==" - }, - "supports-color": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", - "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", - "requires": { - "has-flag": "^3.0.0" - } - } } }, "@babel/helper-create-regexp-features-plugin": { @@ -535,9 +318,9 @@ } }, "@babel/helper-environment-visitor": { - "version": "7.18.2", - "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.18.2.tgz", - "integrity": "sha512-14GQKWkX9oJzPiQQ7/J36FTXcD4kSp8egKjO9nINlSKiHITRA9q/R74qu8S9xlc/b/yjsJItQUeeh3xnGN0voQ==" + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.18.6.tgz", + "integrity": "sha512-8n6gSfn2baOY+qlp+VSzsosjCVGFqWKmDF0cCWOybh52Dw3SEyoWR1KrhMJASjLwIEkkAufZ0xvr+SxLHSpy2Q==" }, "@babel/helper-explode-assignable-expression": { "version": "7.18.6", @@ -564,20 +347,52 @@ } }, "@babel/helper-function-name": { - "version": "7.17.9", - "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.17.9.tgz", - "integrity": "sha512-7cRisGlVtiVqZ0MW0/yFB4atgpGLWEHUVYnb448hZK4x+vih0YO5UoS11XIYtZYqHd0dIPMdUSv8q5K4LdMnIg==", + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.18.6.tgz", + "integrity": "sha512-0mWMxV1aC97dhjCah5U5Ua7668r5ZmSC2DLfH2EZnf9c3/dHZKiFa5pRLMH5tjSl471tY6496ZWk/kjNONBxhw==", "requires": { - "@babel/template": "^7.16.7", - "@babel/types": "^7.17.0" + "@babel/template": "^7.18.6", + "@babel/types": "^7.18.6" + }, + "dependencies": { + "@babel/helper-validator-identifier": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.18.6.tgz", + "integrity": "sha512-MmetCkz9ej86nJQV+sFCxoGGrUbU3q02kgLciwkrt9QqEB7cP39oKEY0PakknEO0Gu20SskMRi+AYZ3b1TpN9g==" + }, + "@babel/types": { + "version": "7.18.7", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.7.tgz", + "integrity": "sha512-QG3yxTcTIBoAcQmkCs+wAPYZhu7Dk9rXKacINfNbdJDNERTbLQbHGyVG8q/YGMPeCJRIhSY0+fTc5+xuh6WPSQ==", + "requires": { + "@babel/helper-validator-identifier": "^7.18.6", + "to-fast-properties": "^2.0.0" + } + } } }, "@babel/helper-hoist-variables": { - "version": "7.16.7", - "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.16.7.tgz", - "integrity": "sha512-m04d/0Op34H5v7pbZw6pSKP7weA6lsMvfiIAMeIvkY/R4xQtBSMFEigu9QTZ2qB/9l22vsxtM8a+Q8CzD255fg==", + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.18.6.tgz", + "integrity": "sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q==", "requires": { - "@babel/types": "^7.16.7" + "@babel/types": "^7.18.6" + }, + "dependencies": { + "@babel/helper-validator-identifier": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.18.6.tgz", + "integrity": "sha512-MmetCkz9ej86nJQV+sFCxoGGrUbU3q02kgLciwkrt9QqEB7cP39oKEY0PakknEO0Gu20SskMRi+AYZ3b1TpN9g==" + }, + "@babel/types": { + "version": "7.18.7", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.7.tgz", + "integrity": "sha512-QG3yxTcTIBoAcQmkCs+wAPYZhu7Dk9rXKacINfNbdJDNERTbLQbHGyVG8q/YGMPeCJRIhSY0+fTc5+xuh6WPSQ==", + "requires": { + "@babel/helper-validator-identifier": "^7.18.6", + "to-fast-properties": "^2.0.0" + } + } } }, "@babel/helper-member-expression-to-functions": { @@ -627,46 +442,6 @@ "@babel/types": "^7.18.6" }, "dependencies": { - "@babel/code-frame": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.18.6.tgz", - "integrity": "sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q==", - "requires": { - "@babel/highlight": "^7.18.6" - } - }, - "@babel/generator": { - "version": "7.18.7", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.18.7.tgz", - "integrity": "sha512-shck+7VLlY72a2w9c3zYWuE1pwOKEiQHV7GTUbSnhyl5eu3i04t30tBY82ZRWrDfo3gkakCFtevExnxbkf2a3A==", - "requires": { - "@babel/types": "^7.18.7", - "@jridgewell/gen-mapping": "^0.3.2", - "jsesc": "^2.5.1" - } - }, - "@babel/helper-environment-visitor": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.18.6.tgz", - "integrity": "sha512-8n6gSfn2baOY+qlp+VSzsosjCVGFqWKmDF0cCWOybh52Dw3SEyoWR1KrhMJASjLwIEkkAufZ0xvr+SxLHSpy2Q==" - }, - "@babel/helper-function-name": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.18.6.tgz", - "integrity": "sha512-0mWMxV1aC97dhjCah5U5Ua7668r5ZmSC2DLfH2EZnf9c3/dHZKiFa5pRLMH5tjSl471tY6496ZWk/kjNONBxhw==", - "requires": { - "@babel/template": "^7.18.6", - "@babel/types": "^7.18.6" - } - }, - "@babel/helper-hoist-variables": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.18.6.tgz", - "integrity": "sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q==", - "requires": { - "@babel/types": "^7.18.6" - } - }, "@babel/helper-module-imports": { "version": "7.18.6", "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.18.6.tgz", @@ -675,61 +450,11 @@ "@babel/types": "^7.18.6" } }, - "@babel/helper-split-export-declaration": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.18.6.tgz", - "integrity": "sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA==", - "requires": { - "@babel/types": "^7.18.6" - } - }, - "@babel/helper-validator-identifier": { + "@babel/helper-validator-identifier": { "version": "7.18.6", "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.18.6.tgz", "integrity": "sha512-MmetCkz9ej86nJQV+sFCxoGGrUbU3q02kgLciwkrt9QqEB7cP39oKEY0PakknEO0Gu20SskMRi+AYZ3b1TpN9g==" }, - "@babel/highlight": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.18.6.tgz", - "integrity": "sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==", - "requires": { - "@babel/helper-validator-identifier": "^7.18.6", - "chalk": "^2.0.0", - "js-tokens": "^4.0.0" - } - }, - "@babel/parser": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.18.6.tgz", - "integrity": "sha512-uQVSa9jJUe/G/304lXspfWVpKpK4euFLgGiMQFOCpM/bgcAdeoHwi/OQz23O9GK2osz26ZiXRRV9aV+Yl1O8tw==" - }, - "@babel/template": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.18.6.tgz", - "integrity": "sha512-JoDWzPe+wgBsTTgdnIma3iHNFC7YVJoPssVBDjiHfNlyt4YcunDtcDOUmfVDfCK5MfdsaIoX9PkijPhjH3nYUw==", - "requires": { - "@babel/code-frame": "^7.18.6", - "@babel/parser": "^7.18.6", - "@babel/types": "^7.18.6" - } - }, - "@babel/traverse": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.18.6.tgz", - "integrity": "sha512-zS/OKyqmD7lslOtFqbscH6gMLFYOfG1YPqCKfAW5KrTeolKqvB8UelR49Fpr6y93kYkW2Ik00mT1LOGiAGvizw==", - "requires": { - "@babel/code-frame": "^7.18.6", - "@babel/generator": "^7.18.6", - "@babel/helper-environment-visitor": "^7.18.6", - "@babel/helper-function-name": "^7.18.6", - "@babel/helper-hoist-variables": "^7.18.6", - "@babel/helper-split-export-declaration": "^7.18.6", - "@babel/parser": "^7.18.6", - "@babel/types": "^7.18.6", - "debug": "^4.1.0", - "globals": "^11.1.0" - } - }, "@babel/types": { "version": "7.18.7", "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.7.tgz", @@ -738,68 +463,6 @@ "@babel/helper-validator-identifier": "^7.18.6", "to-fast-properties": "^2.0.0" } - }, - "@jridgewell/gen-mapping": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.2.tgz", - "integrity": "sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A==", - "requires": { - "@jridgewell/set-array": "^1.0.1", - "@jridgewell/sourcemap-codec": "^1.4.10", - "@jridgewell/trace-mapping": "^0.3.9" - } - }, - "ansi-styles": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", - "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", - "requires": { - "color-convert": "^1.9.0" - } - }, - "chalk": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", - "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", - "requires": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" - } - }, - "color-convert": { - "version": "1.9.3", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", - "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", - "requires": { - "color-name": "1.1.3" - } - }, - "color-name": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", - "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==" - }, - "debug": { - "version": "4.3.4", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", - "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", - "requires": { - "ms": "2.1.2" - } - }, - "has-flag": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", - "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==" - }, - "supports-color": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", - "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", - "requires": { - "has-flag": "^3.0.0" - } } } }, @@ -843,11 +506,6 @@ "@babel/types": "^7.18.6" }, "dependencies": { - "@babel/helper-environment-visitor": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.18.6.tgz", - "integrity": "sha512-8n6gSfn2baOY+qlp+VSzsosjCVGFqWKmDF0cCWOybh52Dw3SEyoWR1KrhMJASjLwIEkkAufZ0xvr+SxLHSpy2Q==" - }, "@babel/helper-validator-identifier": { "version": "7.18.6", "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.18.6.tgz", @@ -876,101 +534,11 @@ "@babel/types": "^7.18.6" }, "dependencies": { - "@babel/code-frame": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.18.6.tgz", - "integrity": "sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q==", - "requires": { - "@babel/highlight": "^7.18.6" - } - }, - "@babel/generator": { - "version": "7.18.7", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.18.7.tgz", - "integrity": "sha512-shck+7VLlY72a2w9c3zYWuE1pwOKEiQHV7GTUbSnhyl5eu3i04t30tBY82ZRWrDfo3gkakCFtevExnxbkf2a3A==", - "requires": { - "@babel/types": "^7.18.7", - "@jridgewell/gen-mapping": "^0.3.2", - "jsesc": "^2.5.1" - } - }, - "@babel/helper-environment-visitor": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.18.6.tgz", - "integrity": "sha512-8n6gSfn2baOY+qlp+VSzsosjCVGFqWKmDF0cCWOybh52Dw3SEyoWR1KrhMJASjLwIEkkAufZ0xvr+SxLHSpy2Q==" - }, - "@babel/helper-function-name": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.18.6.tgz", - "integrity": "sha512-0mWMxV1aC97dhjCah5U5Ua7668r5ZmSC2DLfH2EZnf9c3/dHZKiFa5pRLMH5tjSl471tY6496ZWk/kjNONBxhw==", - "requires": { - "@babel/template": "^7.18.6", - "@babel/types": "^7.18.6" - } - }, - "@babel/helper-hoist-variables": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.18.6.tgz", - "integrity": "sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q==", - "requires": { - "@babel/types": "^7.18.6" - } - }, - "@babel/helper-split-export-declaration": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.18.6.tgz", - "integrity": "sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA==", - "requires": { - "@babel/types": "^7.18.6" - } - }, "@babel/helper-validator-identifier": { "version": "7.18.6", "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.18.6.tgz", "integrity": "sha512-MmetCkz9ej86nJQV+sFCxoGGrUbU3q02kgLciwkrt9QqEB7cP39oKEY0PakknEO0Gu20SskMRi+AYZ3b1TpN9g==" }, - "@babel/highlight": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.18.6.tgz", - "integrity": "sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==", - "requires": { - "@babel/helper-validator-identifier": "^7.18.6", - "chalk": "^2.0.0", - "js-tokens": "^4.0.0" - } - }, - "@babel/parser": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.18.6.tgz", - "integrity": "sha512-uQVSa9jJUe/G/304lXspfWVpKpK4euFLgGiMQFOCpM/bgcAdeoHwi/OQz23O9GK2osz26ZiXRRV9aV+Yl1O8tw==" - }, - "@babel/template": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.18.6.tgz", - "integrity": "sha512-JoDWzPe+wgBsTTgdnIma3iHNFC7YVJoPssVBDjiHfNlyt4YcunDtcDOUmfVDfCK5MfdsaIoX9PkijPhjH3nYUw==", - "requires": { - "@babel/code-frame": "^7.18.6", - "@babel/parser": "^7.18.6", - "@babel/types": "^7.18.6" - } - }, - "@babel/traverse": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.18.6.tgz", - "integrity": "sha512-zS/OKyqmD7lslOtFqbscH6gMLFYOfG1YPqCKfAW5KrTeolKqvB8UelR49Fpr6y93kYkW2Ik00mT1LOGiAGvizw==", - "requires": { - "@babel/code-frame": "^7.18.6", - "@babel/generator": "^7.18.6", - "@babel/helper-environment-visitor": "^7.18.6", - "@babel/helper-function-name": "^7.18.6", - "@babel/helper-hoist-variables": "^7.18.6", - "@babel/helper-split-export-declaration": "^7.18.6", - "@babel/parser": "^7.18.6", - "@babel/types": "^7.18.6", - "debug": "^4.1.0", - "globals": "^11.1.0" - } - }, "@babel/types": { "version": "7.18.7", "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.7.tgz", @@ -979,68 +547,6 @@ "@babel/helper-validator-identifier": "^7.18.6", "to-fast-properties": "^2.0.0" } - }, - "@jridgewell/gen-mapping": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.2.tgz", - "integrity": "sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A==", - "requires": { - "@jridgewell/set-array": "^1.0.1", - "@jridgewell/sourcemap-codec": "^1.4.10", - "@jridgewell/trace-mapping": "^0.3.9" - } - }, - "ansi-styles": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", - "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", - "requires": { - "color-convert": "^1.9.0" - } - }, - "chalk": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", - "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", - "requires": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" - } - }, - "color-convert": { - "version": "1.9.3", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", - "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", - "requires": { - "color-name": "1.1.3" - } - }, - "color-name": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", - "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==" - }, - "debug": { - "version": "4.3.4", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", - "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", - "requires": { - "ms": "2.1.2" - } - }, - "has-flag": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", - "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==" - }, - "supports-color": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", - "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", - "requires": { - "has-flag": "^3.0.0" - } } } }, @@ -1093,11 +599,27 @@ } }, "@babel/helper-split-export-declaration": { - "version": "7.16.7", - "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.16.7.tgz", - "integrity": "sha512-xbWoy/PFoxSWazIToT9Sif+jJTlrMcndIsaOKvTA6u7QEo7ilkRZpjew18/W3c7nm8fXdUDXh02VXTbZ0pGDNw==", + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.18.6.tgz", + "integrity": "sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA==", "requires": { - "@babel/types": "^7.16.7" + "@babel/types": "^7.18.6" + }, + "dependencies": { + "@babel/helper-validator-identifier": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.18.6.tgz", + "integrity": "sha512-MmetCkz9ej86nJQV+sFCxoGGrUbU3q02kgLciwkrt9QqEB7cP39oKEY0PakknEO0Gu20SskMRi+AYZ3b1TpN9g==" + }, + "@babel/types": { + "version": "7.18.7", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.7.tgz", + "integrity": "sha512-QG3yxTcTIBoAcQmkCs+wAPYZhu7Dk9rXKacINfNbdJDNERTbLQbHGyVG8q/YGMPeCJRIhSY0+fTc5+xuh6WPSQ==", + "requires": { + "@babel/helper-validator-identifier": "^7.18.6", + "to-fast-properties": "^2.0.0" + } + } } }, "@babel/helper-validator-identifier": { @@ -1120,171 +642,19 @@ "@babel/traverse": "^7.18.6", "@babel/types": "^7.18.6" }, - "dependencies": { - "@babel/code-frame": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.18.6.tgz", - "integrity": "sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q==", - "requires": { - "@babel/highlight": "^7.18.6" - } - }, - "@babel/generator": { - "version": "7.18.7", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.18.7.tgz", - "integrity": "sha512-shck+7VLlY72a2w9c3zYWuE1pwOKEiQHV7GTUbSnhyl5eu3i04t30tBY82ZRWrDfo3gkakCFtevExnxbkf2a3A==", - "requires": { - "@babel/types": "^7.18.7", - "@jridgewell/gen-mapping": "^0.3.2", - "jsesc": "^2.5.1" - } - }, - "@babel/helper-environment-visitor": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.18.6.tgz", - "integrity": "sha512-8n6gSfn2baOY+qlp+VSzsosjCVGFqWKmDF0cCWOybh52Dw3SEyoWR1KrhMJASjLwIEkkAufZ0xvr+SxLHSpy2Q==" - }, - "@babel/helper-function-name": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.18.6.tgz", - "integrity": "sha512-0mWMxV1aC97dhjCah5U5Ua7668r5ZmSC2DLfH2EZnf9c3/dHZKiFa5pRLMH5tjSl471tY6496ZWk/kjNONBxhw==", - "requires": { - "@babel/template": "^7.18.6", - "@babel/types": "^7.18.6" - } - }, - "@babel/helper-hoist-variables": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.18.6.tgz", - "integrity": "sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q==", - "requires": { - "@babel/types": "^7.18.6" - } - }, - "@babel/helper-split-export-declaration": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.18.6.tgz", - "integrity": "sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA==", - "requires": { - "@babel/types": "^7.18.6" - } - }, - "@babel/helper-validator-identifier": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.18.6.tgz", - "integrity": "sha512-MmetCkz9ej86nJQV+sFCxoGGrUbU3q02kgLciwkrt9QqEB7cP39oKEY0PakknEO0Gu20SskMRi+AYZ3b1TpN9g==" - }, - "@babel/highlight": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.18.6.tgz", - "integrity": "sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==", - "requires": { - "@babel/helper-validator-identifier": "^7.18.6", - "chalk": "^2.0.0", - "js-tokens": "^4.0.0" - } - }, - "@babel/parser": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.18.6.tgz", - "integrity": "sha512-uQVSa9jJUe/G/304lXspfWVpKpK4euFLgGiMQFOCpM/bgcAdeoHwi/OQz23O9GK2osz26ZiXRRV9aV+Yl1O8tw==" - }, - "@babel/template": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.18.6.tgz", - "integrity": "sha512-JoDWzPe+wgBsTTgdnIma3iHNFC7YVJoPssVBDjiHfNlyt4YcunDtcDOUmfVDfCK5MfdsaIoX9PkijPhjH3nYUw==", - "requires": { - "@babel/code-frame": "^7.18.6", - "@babel/parser": "^7.18.6", - "@babel/types": "^7.18.6" - } - }, - "@babel/traverse": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.18.6.tgz", - "integrity": "sha512-zS/OKyqmD7lslOtFqbscH6gMLFYOfG1YPqCKfAW5KrTeolKqvB8UelR49Fpr6y93kYkW2Ik00mT1LOGiAGvizw==", - "requires": { - "@babel/code-frame": "^7.18.6", - "@babel/generator": "^7.18.6", - "@babel/helper-environment-visitor": "^7.18.6", - "@babel/helper-function-name": "^7.18.6", - "@babel/helper-hoist-variables": "^7.18.6", - "@babel/helper-split-export-declaration": "^7.18.6", - "@babel/parser": "^7.18.6", - "@babel/types": "^7.18.6", - "debug": "^4.1.0", - "globals": "^11.1.0" - } - }, - "@babel/types": { - "version": "7.18.7", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.7.tgz", - "integrity": "sha512-QG3yxTcTIBoAcQmkCs+wAPYZhu7Dk9rXKacINfNbdJDNERTbLQbHGyVG8q/YGMPeCJRIhSY0+fTc5+xuh6WPSQ==", - "requires": { - "@babel/helper-validator-identifier": "^7.18.6", - "to-fast-properties": "^2.0.0" - } - }, - "@jridgewell/gen-mapping": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.2.tgz", - "integrity": "sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A==", - "requires": { - "@jridgewell/set-array": "^1.0.1", - "@jridgewell/sourcemap-codec": "^1.4.10", - "@jridgewell/trace-mapping": "^0.3.9" - } - }, - "ansi-styles": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", - "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", - "requires": { - "color-convert": "^1.9.0" - } - }, - "chalk": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", - "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", - "requires": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" - } - }, - "color-convert": { - "version": "1.9.3", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", - "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", - "requires": { - "color-name": "1.1.3" - } - }, - "color-name": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", - "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==" - }, - "debug": { - "version": "4.3.4", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", - "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", - "requires": { - "ms": "2.1.2" - } - }, - "has-flag": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", - "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==" + "dependencies": { + "@babel/helper-validator-identifier": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.18.6.tgz", + "integrity": "sha512-MmetCkz9ej86nJQV+sFCxoGGrUbU3q02kgLciwkrt9QqEB7cP39oKEY0PakknEO0Gu20SskMRi+AYZ3b1TpN9g==" }, - "supports-color": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", - "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "@babel/types": { + "version": "7.18.7", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.7.tgz", + "integrity": "sha512-QG3yxTcTIBoAcQmkCs+wAPYZhu7Dk9rXKacINfNbdJDNERTbLQbHGyVG8q/YGMPeCJRIhSY0+fTc5+xuh6WPSQ==", "requires": { - "has-flag": "^3.0.0" + "@babel/helper-validator-identifier": "^7.18.6", + "to-fast-properties": "^2.0.0" } } } @@ -1299,101 +669,11 @@ "@babel/types": "^7.18.6" }, "dependencies": { - "@babel/code-frame": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.18.6.tgz", - "integrity": "sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q==", - "requires": { - "@babel/highlight": "^7.18.6" - } - }, - "@babel/generator": { - "version": "7.18.7", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.18.7.tgz", - "integrity": "sha512-shck+7VLlY72a2w9c3zYWuE1pwOKEiQHV7GTUbSnhyl5eu3i04t30tBY82ZRWrDfo3gkakCFtevExnxbkf2a3A==", - "requires": { - "@babel/types": "^7.18.7", - "@jridgewell/gen-mapping": "^0.3.2", - "jsesc": "^2.5.1" - } - }, - "@babel/helper-environment-visitor": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.18.6.tgz", - "integrity": "sha512-8n6gSfn2baOY+qlp+VSzsosjCVGFqWKmDF0cCWOybh52Dw3SEyoWR1KrhMJASjLwIEkkAufZ0xvr+SxLHSpy2Q==" - }, - "@babel/helper-function-name": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.18.6.tgz", - "integrity": "sha512-0mWMxV1aC97dhjCah5U5Ua7668r5ZmSC2DLfH2EZnf9c3/dHZKiFa5pRLMH5tjSl471tY6496ZWk/kjNONBxhw==", - "requires": { - "@babel/template": "^7.18.6", - "@babel/types": "^7.18.6" - } - }, - "@babel/helper-hoist-variables": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.18.6.tgz", - "integrity": "sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q==", - "requires": { - "@babel/types": "^7.18.6" - } - }, - "@babel/helper-split-export-declaration": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.18.6.tgz", - "integrity": "sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA==", - "requires": { - "@babel/types": "^7.18.6" - } - }, "@babel/helper-validator-identifier": { "version": "7.18.6", "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.18.6.tgz", "integrity": "sha512-MmetCkz9ej86nJQV+sFCxoGGrUbU3q02kgLciwkrt9QqEB7cP39oKEY0PakknEO0Gu20SskMRi+AYZ3b1TpN9g==" }, - "@babel/highlight": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.18.6.tgz", - "integrity": "sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==", - "requires": { - "@babel/helper-validator-identifier": "^7.18.6", - "chalk": "^2.0.0", - "js-tokens": "^4.0.0" - } - }, - "@babel/parser": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.18.6.tgz", - "integrity": "sha512-uQVSa9jJUe/G/304lXspfWVpKpK4euFLgGiMQFOCpM/bgcAdeoHwi/OQz23O9GK2osz26ZiXRRV9aV+Yl1O8tw==" - }, - "@babel/template": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.18.6.tgz", - "integrity": "sha512-JoDWzPe+wgBsTTgdnIma3iHNFC7YVJoPssVBDjiHfNlyt4YcunDtcDOUmfVDfCK5MfdsaIoX9PkijPhjH3nYUw==", - "requires": { - "@babel/code-frame": "^7.18.6", - "@babel/parser": "^7.18.6", - "@babel/types": "^7.18.6" - } - }, - "@babel/traverse": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.18.6.tgz", - "integrity": "sha512-zS/OKyqmD7lslOtFqbscH6gMLFYOfG1YPqCKfAW5KrTeolKqvB8UelR49Fpr6y93kYkW2Ik00mT1LOGiAGvizw==", - "requires": { - "@babel/code-frame": "^7.18.6", - "@babel/generator": "^7.18.6", - "@babel/helper-environment-visitor": "^7.18.6", - "@babel/helper-function-name": "^7.18.6", - "@babel/helper-hoist-variables": "^7.18.6", - "@babel/helper-split-export-declaration": "^7.18.6", - "@babel/parser": "^7.18.6", - "@babel/types": "^7.18.6", - "debug": "^4.1.0", - "globals": "^11.1.0" - } - }, "@babel/types": { "version": "7.18.7", "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.7.tgz", @@ -1402,68 +682,6 @@ "@babel/helper-validator-identifier": "^7.18.6", "to-fast-properties": "^2.0.0" } - }, - "@jridgewell/gen-mapping": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.2.tgz", - "integrity": "sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A==", - "requires": { - "@jridgewell/set-array": "^1.0.1", - "@jridgewell/sourcemap-codec": "^1.4.10", - "@jridgewell/trace-mapping": "^0.3.9" - } - }, - "ansi-styles": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", - "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", - "requires": { - "color-convert": "^1.9.0" - } - }, - "chalk": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", - "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", - "requires": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" - } - }, - "color-convert": { - "version": "1.9.3", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", - "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", - "requires": { - "color-name": "1.1.3" - } - }, - "color-name": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", - "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==" - }, - "debug": { - "version": "4.3.4", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", - "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", - "requires": { - "ms": "2.1.2" - } - }, - "has-flag": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", - "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==" - }, - "supports-color": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", - "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", - "requires": { - "has-flag": "^3.0.0" - } } } }, @@ -1524,9 +742,9 @@ } }, "@babel/parser": { - "version": "7.18.5", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.18.5.tgz", - "integrity": "sha512-YZWVaglMiplo7v8f1oMQ5ZPQr0vn7HPeZXxXWsxXJRjGVrzUFn9OxFQl1sb5wzfootjA/yChhW84BV+383FSOw==" + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.18.6.tgz", + "integrity": "sha512-uQVSa9jJUe/G/304lXspfWVpKpK4euFLgGiMQFOCpM/bgcAdeoHwi/OQz23O9GK2osz26ZiXRRV9aV+Yl1O8tw==" }, "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": { "version": "7.18.6", @@ -1555,13 +773,6 @@ "@babel/helper-plugin-utils": "^7.18.6", "@babel/helper-remap-async-to-generator": "^7.18.6", "@babel/plugin-syntax-async-generators": "^7.8.4" - }, - "dependencies": { - "@babel/helper-environment-visitor": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.18.6.tgz", - "integrity": "sha512-8n6gSfn2baOY+qlp+VSzsosjCVGFqWKmDF0cCWOybh52Dw3SEyoWR1KrhMJASjLwIEkkAufZ0xvr+SxLHSpy2Q==" - } } }, "@babel/plugin-proposal-class-properties": { @@ -1864,171 +1075,56 @@ "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.18.6.tgz", "integrity": "sha512-0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA==", "requires": { - "@babel/types": "^7.18.6" - } - }, - "@babel/helper-validator-identifier": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.18.6.tgz", - "integrity": "sha512-MmetCkz9ej86nJQV+sFCxoGGrUbU3q02kgLciwkrt9QqEB7cP39oKEY0PakknEO0Gu20SskMRi+AYZ3b1TpN9g==" - }, - "@babel/types": { - "version": "7.18.7", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.7.tgz", - "integrity": "sha512-QG3yxTcTIBoAcQmkCs+wAPYZhu7Dk9rXKacINfNbdJDNERTbLQbHGyVG8q/YGMPeCJRIhSY0+fTc5+xuh6WPSQ==", - "requires": { - "@babel/helper-validator-identifier": "^7.18.6", - "to-fast-properties": "^2.0.0" - } - } - } - }, - "@babel/plugin-transform-block-scoped-functions": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.18.6.tgz", - "integrity": "sha512-ExUcOqpPWnliRcPqves5HJcJOvHvIIWfuS4sroBUenPuMdmW+SMHDakmtS7qOo13sVppmUijqeTv7qqGsvURpQ==", - "requires": { - "@babel/helper-plugin-utils": "^7.18.6" - } - }, - "@babel/plugin-transform-block-scoping": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.18.6.tgz", - "integrity": "sha512-pRqwb91C42vs1ahSAWJkxOxU1RHWDn16XAa6ggQ72wjLlWyYeAcLvTtE0aM8ph3KNydy9CQF2nLYcjq1WysgxQ==", - "requires": { - "@babel/helper-plugin-utils": "^7.18.6" - } - }, - "@babel/plugin-transform-classes": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.18.6.tgz", - "integrity": "sha512-XTg8XW/mKpzAF3actL554Jl/dOYoJtv3l8fxaEczpgz84IeeVf+T1u2CSvPHuZbt0w3JkIx4rdn/MRQI7mo0HQ==", - "requires": { - "@babel/helper-annotate-as-pure": "^7.18.6", - "@babel/helper-environment-visitor": "^7.18.6", - "@babel/helper-function-name": "^7.18.6", - "@babel/helper-optimise-call-expression": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6", - "@babel/helper-replace-supers": "^7.18.6", - "@babel/helper-split-export-declaration": "^7.18.6", - "globals": "^11.1.0" - }, - "dependencies": { - "@babel/code-frame": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.18.6.tgz", - "integrity": "sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q==", - "requires": { - "@babel/highlight": "^7.18.6" - } - }, - "@babel/helper-environment-visitor": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.18.6.tgz", - "integrity": "sha512-8n6gSfn2baOY+qlp+VSzsosjCVGFqWKmDF0cCWOybh52Dw3SEyoWR1KrhMJASjLwIEkkAufZ0xvr+SxLHSpy2Q==" - }, - "@babel/helper-function-name": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.18.6.tgz", - "integrity": "sha512-0mWMxV1aC97dhjCah5U5Ua7668r5ZmSC2DLfH2EZnf9c3/dHZKiFa5pRLMH5tjSl471tY6496ZWk/kjNONBxhw==", - "requires": { - "@babel/template": "^7.18.6", - "@babel/types": "^7.18.6" - } - }, - "@babel/helper-split-export-declaration": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.18.6.tgz", - "integrity": "sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA==", - "requires": { - "@babel/types": "^7.18.6" - } - }, - "@babel/helper-validator-identifier": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.18.6.tgz", - "integrity": "sha512-MmetCkz9ej86nJQV+sFCxoGGrUbU3q02kgLciwkrt9QqEB7cP39oKEY0PakknEO0Gu20SskMRi+AYZ3b1TpN9g==" - }, - "@babel/highlight": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.18.6.tgz", - "integrity": "sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==", - "requires": { - "@babel/helper-validator-identifier": "^7.18.6", - "chalk": "^2.0.0", - "js-tokens": "^4.0.0" - } - }, - "@babel/parser": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.18.6.tgz", - "integrity": "sha512-uQVSa9jJUe/G/304lXspfWVpKpK4euFLgGiMQFOCpM/bgcAdeoHwi/OQz23O9GK2osz26ZiXRRV9aV+Yl1O8tw==" - }, - "@babel/template": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.18.6.tgz", - "integrity": "sha512-JoDWzPe+wgBsTTgdnIma3iHNFC7YVJoPssVBDjiHfNlyt4YcunDtcDOUmfVDfCK5MfdsaIoX9PkijPhjH3nYUw==", - "requires": { - "@babel/code-frame": "^7.18.6", - "@babel/parser": "^7.18.6", - "@babel/types": "^7.18.6" - } - }, - "@babel/types": { - "version": "7.18.7", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.7.tgz", - "integrity": "sha512-QG3yxTcTIBoAcQmkCs+wAPYZhu7Dk9rXKacINfNbdJDNERTbLQbHGyVG8q/YGMPeCJRIhSY0+fTc5+xuh6WPSQ==", - "requires": { - "@babel/helper-validator-identifier": "^7.18.6", - "to-fast-properties": "^2.0.0" - } - }, - "ansi-styles": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", - "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", - "requires": { - "color-convert": "^1.9.0" - } - }, - "chalk": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", - "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", - "requires": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" - } - }, - "color-convert": { - "version": "1.9.3", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", - "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", - "requires": { - "color-name": "1.1.3" + "@babel/types": "^7.18.6" } }, - "color-name": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", - "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==" - }, - "has-flag": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", - "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==" + "@babel/helper-validator-identifier": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.18.6.tgz", + "integrity": "sha512-MmetCkz9ej86nJQV+sFCxoGGrUbU3q02kgLciwkrt9QqEB7cP39oKEY0PakknEO0Gu20SskMRi+AYZ3b1TpN9g==" }, - "supports-color": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", - "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "@babel/types": { + "version": "7.18.7", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.7.tgz", + "integrity": "sha512-QG3yxTcTIBoAcQmkCs+wAPYZhu7Dk9rXKacINfNbdJDNERTbLQbHGyVG8q/YGMPeCJRIhSY0+fTc5+xuh6WPSQ==", "requires": { - "has-flag": "^3.0.0" + "@babel/helper-validator-identifier": "^7.18.6", + "to-fast-properties": "^2.0.0" } } } }, + "@babel/plugin-transform-block-scoped-functions": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.18.6.tgz", + "integrity": "sha512-ExUcOqpPWnliRcPqves5HJcJOvHvIIWfuS4sroBUenPuMdmW+SMHDakmtS7qOo13sVppmUijqeTv7qqGsvURpQ==", + "requires": { + "@babel/helper-plugin-utils": "^7.18.6" + } + }, + "@babel/plugin-transform-block-scoping": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.18.6.tgz", + "integrity": "sha512-pRqwb91C42vs1ahSAWJkxOxU1RHWDn16XAa6ggQ72wjLlWyYeAcLvTtE0aM8ph3KNydy9CQF2nLYcjq1WysgxQ==", + "requires": { + "@babel/helper-plugin-utils": "^7.18.6" + } + }, + "@babel/plugin-transform-classes": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.18.6.tgz", + "integrity": "sha512-XTg8XW/mKpzAF3actL554Jl/dOYoJtv3l8fxaEczpgz84IeeVf+T1u2CSvPHuZbt0w3JkIx4rdn/MRQI7mo0HQ==", + "requires": { + "@babel/helper-annotate-as-pure": "^7.18.6", + "@babel/helper-environment-visitor": "^7.18.6", + "@babel/helper-function-name": "^7.18.6", + "@babel/helper-optimise-call-expression": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6", + "@babel/helper-replace-supers": "^7.18.6", + "@babel/helper-split-export-declaration": "^7.18.6", + "globals": "^11.1.0" + } + }, "@babel/plugin-transform-computed-properties": { "version": "7.18.6", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.18.6.tgz", @@ -2096,108 +1192,6 @@ "@babel/helper-compilation-targets": "^7.18.6", "@babel/helper-function-name": "^7.18.6", "@babel/helper-plugin-utils": "^7.18.6" - }, - "dependencies": { - "@babel/code-frame": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.18.6.tgz", - "integrity": "sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q==", - "requires": { - "@babel/highlight": "^7.18.6" - } - }, - "@babel/helper-function-name": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.18.6.tgz", - "integrity": "sha512-0mWMxV1aC97dhjCah5U5Ua7668r5ZmSC2DLfH2EZnf9c3/dHZKiFa5pRLMH5tjSl471tY6496ZWk/kjNONBxhw==", - "requires": { - "@babel/template": "^7.18.6", - "@babel/types": "^7.18.6" - } - }, - "@babel/helper-validator-identifier": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.18.6.tgz", - "integrity": "sha512-MmetCkz9ej86nJQV+sFCxoGGrUbU3q02kgLciwkrt9QqEB7cP39oKEY0PakknEO0Gu20SskMRi+AYZ3b1TpN9g==" - }, - "@babel/highlight": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.18.6.tgz", - "integrity": "sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==", - "requires": { - "@babel/helper-validator-identifier": "^7.18.6", - "chalk": "^2.0.0", - "js-tokens": "^4.0.0" - } - }, - "@babel/parser": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.18.6.tgz", - "integrity": "sha512-uQVSa9jJUe/G/304lXspfWVpKpK4euFLgGiMQFOCpM/bgcAdeoHwi/OQz23O9GK2osz26ZiXRRV9aV+Yl1O8tw==" - }, - "@babel/template": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.18.6.tgz", - "integrity": "sha512-JoDWzPe+wgBsTTgdnIma3iHNFC7YVJoPssVBDjiHfNlyt4YcunDtcDOUmfVDfCK5MfdsaIoX9PkijPhjH3nYUw==", - "requires": { - "@babel/code-frame": "^7.18.6", - "@babel/parser": "^7.18.6", - "@babel/types": "^7.18.6" - } - }, - "@babel/types": { - "version": "7.18.7", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.7.tgz", - "integrity": "sha512-QG3yxTcTIBoAcQmkCs+wAPYZhu7Dk9rXKacINfNbdJDNERTbLQbHGyVG8q/YGMPeCJRIhSY0+fTc5+xuh6WPSQ==", - "requires": { - "@babel/helper-validator-identifier": "^7.18.6", - "to-fast-properties": "^2.0.0" - } - }, - "ansi-styles": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", - "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", - "requires": { - "color-convert": "^1.9.0" - } - }, - "chalk": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", - "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", - "requires": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" - } - }, - "color-convert": { - "version": "1.9.3", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", - "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", - "requires": { - "color-name": "1.1.3" - } - }, - "color-name": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", - "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==" - }, - "has-flag": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", - "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==" - }, - "supports-color": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", - "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", - "requires": { - "has-flag": "^3.0.0" - } - } } }, "@babel/plugin-transform-literals": { @@ -2249,27 +1243,10 @@ "babel-plugin-dynamic-import-node": "^2.3.3" }, "dependencies": { - "@babel/helper-hoist-variables": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.18.6.tgz", - "integrity": "sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q==", - "requires": { - "@babel/types": "^7.18.6" - } - }, "@babel/helper-validator-identifier": { "version": "7.18.6", "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.18.6.tgz", "integrity": "sha512-MmetCkz9ej86nJQV+sFCxoGGrUbU3q02kgLciwkrt9QqEB7cP39oKEY0PakknEO0Gu20SskMRi+AYZ3b1TpN9g==" - }, - "@babel/types": { - "version": "7.18.7", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.7.tgz", - "integrity": "sha512-QG3yxTcTIBoAcQmkCs+wAPYZhu7Dk9rXKacINfNbdJDNERTbLQbHGyVG8q/YGMPeCJRIhSY0+fTc5+xuh6WPSQ==", - "requires": { - "@babel/helper-validator-identifier": "^7.18.6", - "to-fast-properties": "^2.0.0" - } } } }, @@ -2668,41 +1645,118 @@ } }, "@babel/template": { - "version": "7.16.7", - "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.16.7.tgz", - "integrity": "sha512-I8j/x8kHUrbYRTUxXrrMbfCa7jxkE7tZre39x3kjr9hvI82cK1FfqLygotcWN5kdPGWcLdWMHpSBavse5tWw3w==", + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.18.6.tgz", + "integrity": "sha512-JoDWzPe+wgBsTTgdnIma3iHNFC7YVJoPssVBDjiHfNlyt4YcunDtcDOUmfVDfCK5MfdsaIoX9PkijPhjH3nYUw==", "requires": { - "@babel/code-frame": "^7.16.7", - "@babel/parser": "^7.16.7", - "@babel/types": "^7.16.7" + "@babel/code-frame": "^7.18.6", + "@babel/parser": "^7.18.6", + "@babel/types": "^7.18.6" + }, + "dependencies": { + "@babel/code-frame": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.18.6.tgz", + "integrity": "sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q==", + "requires": { + "@babel/highlight": "^7.18.6" + } + }, + "@babel/helper-validator-identifier": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.18.6.tgz", + "integrity": "sha512-MmetCkz9ej86nJQV+sFCxoGGrUbU3q02kgLciwkrt9QqEB7cP39oKEY0PakknEO0Gu20SskMRi+AYZ3b1TpN9g==" + }, + "@babel/highlight": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.18.6.tgz", + "integrity": "sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==", + "requires": { + "@babel/helper-validator-identifier": "^7.18.6", + "chalk": "^2.0.0", + "js-tokens": "^4.0.0" + } + }, + "@babel/types": { + "version": "7.18.7", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.7.tgz", + "integrity": "sha512-QG3yxTcTIBoAcQmkCs+wAPYZhu7Dk9rXKacINfNbdJDNERTbLQbHGyVG8q/YGMPeCJRIhSY0+fTc5+xuh6WPSQ==", + "requires": { + "@babel/helper-validator-identifier": "^7.18.6", + "to-fast-properties": "^2.0.0" + } + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + } + } } }, "@babel/traverse": { - "version": "7.18.5", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.18.5.tgz", - "integrity": "sha512-aKXj1KT66sBj0vVzk6rEeAO6Z9aiiQ68wfDgge3nHhA/my6xMM/7HGQUNumKZaoa2qUPQ5whJG9aAifsxUKfLA==", - "requires": { - "@babel/code-frame": "^7.16.7", - "@babel/generator": "^7.18.2", - "@babel/helper-environment-visitor": "^7.18.2", - "@babel/helper-function-name": "^7.17.9", - "@babel/helper-hoist-variables": "^7.16.7", - "@babel/helper-split-export-declaration": "^7.16.7", - "@babel/parser": "^7.18.5", - "@babel/types": "^7.18.4", + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.18.6.tgz", + "integrity": "sha512-zS/OKyqmD7lslOtFqbscH6gMLFYOfG1YPqCKfAW5KrTeolKqvB8UelR49Fpr6y93kYkW2Ik00mT1LOGiAGvizw==", + "requires": { + "@babel/code-frame": "^7.18.6", + "@babel/generator": "^7.18.6", + "@babel/helper-environment-visitor": "^7.18.6", + "@babel/helper-function-name": "^7.18.6", + "@babel/helper-hoist-variables": "^7.18.6", + "@babel/helper-split-export-declaration": "^7.18.6", + "@babel/parser": "^7.18.6", + "@babel/types": "^7.18.6", "debug": "^4.1.0", "globals": "^11.1.0" }, "dependencies": { + "@babel/code-frame": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.18.6.tgz", + "integrity": "sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q==", + "requires": { + "@babel/highlight": "^7.18.6" + } + }, + "@babel/helper-validator-identifier": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.18.6.tgz", + "integrity": "sha512-MmetCkz9ej86nJQV+sFCxoGGrUbU3q02kgLciwkrt9QqEB7cP39oKEY0PakknEO0Gu20SskMRi+AYZ3b1TpN9g==" + }, + "@babel/highlight": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.18.6.tgz", + "integrity": "sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==", + "requires": { + "@babel/helper-validator-identifier": "^7.18.6", + "chalk": "^2.0.0", + "js-tokens": "^4.0.0" + } + }, "@babel/types": { - "version": "7.18.4", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.4.tgz", - "integrity": "sha512-ThN1mBcMq5pG/Vm2IcBmPPfyPXbd8S02rS+OBIDENdufvqC7Z/jHPCv9IcP01277aKtDI8g/2XysBN4hA8niiw==", + "version": "7.18.7", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.7.tgz", + "integrity": "sha512-QG3yxTcTIBoAcQmkCs+wAPYZhu7Dk9rXKacINfNbdJDNERTbLQbHGyVG8q/YGMPeCJRIhSY0+fTc5+xuh6WPSQ==", "requires": { - "@babel/helper-validator-identifier": "^7.16.7", + "@babel/helper-validator-identifier": "^7.18.6", "to-fast-properties": "^2.0.0" } }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + } + }, "debug": { "version": "4.3.4", "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", @@ -2888,9 +1942,9 @@ } }, "globals": { - "version": "13.15.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-13.15.0.tgz", - "integrity": "sha512-bpzcOlgDhMG070Av0Vy5Owklpv1I6+j96GhUI7Rh7IzDCKLzboflLrrfqMu8NquDbiR4EOQk7XzJwqVJxicxog==", + "version": "13.16.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.16.0.tgz", + "integrity": "sha512-A1lrQfpNF+McdPOnnFqY3kSN0AFTy485bTi1bkLk4mVPODIUEcSfhHgRqA+QdXPksrSTTztYXx37NFV+GpGk3Q==", "requires": { "type-fest": "^0.20.2" } @@ -2903,13 +1957,13 @@ } }, "@gatsbyjs/parcel-namer-relative-to-cwd": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/@gatsbyjs/parcel-namer-relative-to-cwd/-/parcel-namer-relative-to-cwd-1.2.0.tgz", - "integrity": "sha512-4iIdquFDl+b+U8Ng0dg6dCtxB/cnH27ERrlQQlxfdaWe8e9CLo8aWc6u3UeuHwNJixBFOUbOgEFaA5qCUPwLCQ==", + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/@gatsbyjs/parcel-namer-relative-to-cwd/-/parcel-namer-relative-to-cwd-1.3.0.tgz", + "integrity": "sha512-nd1lQn7ezg51ekqZm8iZjND8akB7bsGkGe7GdIPdTwbhale2dHLqd74qg+bBrEjv5f5aFZhpJeY9XpeU4emWZQ==", "requires": { "@babel/runtime": "^7.18.0", "@parcel/plugin": "2.6.0", - "gatsby-core-utils": "^3.17.0" + "gatsby-core-utils": "^3.18.0" } }, "@gatsbyjs/potrace": { @@ -3012,33 +2066,33 @@ } }, "@graphql-codegen/typescript": { - "version": "2.5.1", - "resolved": "https://registry.npmjs.org/@graphql-codegen/typescript/-/typescript-2.5.1.tgz", - "integrity": "sha512-D/9V2VfVIE4Mu5UiMGQtxyFU5xe1ZkAZi8g/IsqymW8rqlhTwsGhtk4JR55qPfOYxR8G94RJSJpzgNakRneytw==", + "version": "2.6.0", + "resolved": "https://registry.npmjs.org/@graphql-codegen/typescript/-/typescript-2.6.0.tgz", + "integrity": "sha512-f36ilg8J+wui0OhmQglIZ+2z4Ybc08Y7r7BlBDqfJ1F5X0zau0SlC7Hp2iCoCA0ucqZYtiUU/0n+/R8m1cTrQQ==", "requires": { "@graphql-codegen/plugin-helpers": "^2.4.0", "@graphql-codegen/schema-ast": "^2.4.1", - "@graphql-codegen/visitor-plugin-common": "2.9.1", + "@graphql-codegen/visitor-plugin-common": "2.10.0", "auto-bind": "~4.0.0", "tslib": "~2.4.0" } }, "@graphql-codegen/typescript-operations": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/@graphql-codegen/typescript-operations/-/typescript-operations-2.4.2.tgz", - "integrity": "sha512-0/Jk+FxJVOdznSJ+G3KKPbMr2gK67yQetUAUS0FzV9FptVDFkklK/BazKqJJE5dNrj9ubuI2BafXPzSTN4M2Ug==", + "version": "2.4.3", + "resolved": "https://registry.npmjs.org/@graphql-codegen/typescript-operations/-/typescript-operations-2.4.3.tgz", + "integrity": "sha512-MW9cU/zCAmfFAObwW23e+GrW3CoV9OX2gVm/V1565WGZXDQPUc5Y5IjdfGfunV4ApkgFDiHpF1Mz/AS55OErgw==", "requires": { "@graphql-codegen/plugin-helpers": "^2.4.0", - "@graphql-codegen/typescript": "^2.5.1", - "@graphql-codegen/visitor-plugin-common": "2.9.1", + "@graphql-codegen/typescript": "^2.6.0", + "@graphql-codegen/visitor-plugin-common": "2.10.0", "auto-bind": "~4.0.0", "tslib": "~2.4.0" } }, "@graphql-codegen/visitor-plugin-common": { - "version": "2.9.1", - "resolved": "https://registry.npmjs.org/@graphql-codegen/visitor-plugin-common/-/visitor-plugin-common-2.9.1.tgz", - "integrity": "sha512-j9eGOSGt+sJcwv0ijhZiQ2cF/0ponscekNVoF+vHdOT4RB0qgOQxykPBk6EbKxIHECnkdV8ARdPVTA21A93/QQ==", + "version": "2.10.0", + "resolved": "https://registry.npmjs.org/@graphql-codegen/visitor-plugin-common/-/visitor-plugin-common-2.10.0.tgz", + "integrity": "sha512-nWoxHKUdwOJCWV96Ks1x4EwYCWsZDJXB+2j6EQz5j27DzdxmQInZ86degaDCd3EgbwhMQEMtiZiPGFFDrgBkHA==", "requires": { "@graphql-codegen/plugin-helpers": "^2.4.0", "@graphql-tools/optimize": "^1.0.1", @@ -3821,14 +2875,14 @@ } }, "@jridgewell/resolve-uri": { - "version": "3.0.7", - "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.0.7.tgz", - "integrity": "sha512-8cXDaBBHOr2pQ7j77Y6Vp5VDT2sIqWyWQ56TjEq4ih/a4iST3dItRe8Q9fp0rrIl9DoKhWQtUQz/YpOxLkXbNA==" + "version": "3.0.8", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.0.8.tgz", + "integrity": "sha512-YK5G9LaddzGbcucK4c8h5tWFmMPBvRZ/uyWmN1/SbBdIvqGUdWGkJ5BAaccgs6XbzVLsqbPJrBSFwKv3kT9i7w==" }, "@jridgewell/set-array": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.1.tgz", - "integrity": "sha512-Ct5MqZkLGEXTVmQYbGtx9SVqD2fqwvdubdps5D3djjAkgkKwT918VNOz65pEHFaYTeWcukmJmH5SwsA9Tn2ObQ==" + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz", + "integrity": "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==" }, "@jridgewell/source-map": { "version": "0.3.2", @@ -3852,14 +2906,14 @@ } }, "@jridgewell/sourcemap-codec": { - "version": "1.4.13", - "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.13.tgz", - "integrity": "sha512-GryiOJmNcWbovBxTfZSF71V/mXbgcV3MewDe3kIMCLyIh5e7SKAeUZs+rMnJ8jkMolZ/4/VsdBmMrw3l+VdZ3w==" + "version": "1.4.14", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz", + "integrity": "sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==" }, "@jridgewell/trace-mapping": { - "version": "0.3.13", - "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.13.tgz", - "integrity": "sha512-o1xbKhp9qnIAoHJSWd6KlCZfqslL4valSF81H8ImioOAxluWYWOpWkpyktY2vnt4tbrX9XYaxovq6cgowaJp2w==", + "version": "0.3.14", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.14.tgz", + "integrity": "sha512-bJWEfQ9lPTvm3SneWwRFVLzrh6nhjwqw7TUFFBEMzwvg7t7PCDenf2lDwqo4NQXzdpgBXyFgDWnQA+2vkruksQ==", "requires": { "@jridgewell/resolve-uri": "^3.0.3", "@jridgewell/sourcemap-codec": "^1.4.10" @@ -4234,9 +3288,9 @@ }, "dependencies": { "globals": { - "version": "13.15.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-13.15.0.tgz", - "integrity": "sha512-bpzcOlgDhMG070Av0Vy5Owklpv1I6+j96GhUI7Rh7IzDCKLzboflLrrfqMu8NquDbiR4EOQk7XzJwqVJxicxog==", + "version": "13.16.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.16.0.tgz", + "integrity": "sha512-A1lrQfpNF+McdPOnnFqY3kSN0AFTy485bTi1bkLk4mVPODIUEcSfhHgRqA+QdXPksrSTTztYXx37NFV+GpGk3Q==", "requires": { "type-fest": "^0.20.2" } @@ -4318,9 +3372,9 @@ } }, "@parcel/source-map": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/@parcel/source-map/-/source-map-2.0.5.tgz", - "integrity": "sha512-DRVlCFKLpqBSIbMxUoVlHgfiv12HTW/U7nnhzw52YgzDVXUX9OA41dXS1PU0pJ1si+D1k8msATUC+AoldN43mg==", + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/@parcel/source-map/-/source-map-2.1.0.tgz", + "integrity": "sha512-E7UOEIof2o89LrKk1agSLmwakjigmEdDp1ZaEdsLVEvq63R/bul4Ij5CT+0ZDcijGpl5tnTbQADY9EyYGtjYgQ==", "requires": { "detect-libc": "^1.0.3" } @@ -4685,9 +3739,9 @@ } }, "@types/eslint-scope": { - "version": "3.7.3", - "resolved": "https://registry.npmjs.org/@types/eslint-scope/-/eslint-scope-3.7.3.tgz", - "integrity": "sha512-PB3ldyrcnAicT35TWPs5IcwKD8S333HMaa2VVv4+wdvebJkjWuW/xESoB8IwRcog8HYVYamb1g/R31Qv5Bx03g==", + "version": "3.7.4", + "resolved": "https://registry.npmjs.org/@types/eslint-scope/-/eslint-scope-3.7.4.tgz", + "integrity": "sha512-9K4zoImiZc3HlIp6AVUDE4CWYx22a+lhSZMYNpbjW04+YF0KWj4pJXnEMjdnFTiQibFFmElcsasJXDbdI/EPhA==", "requires": { "@types/eslint": "*", "@types/estree": "*" @@ -6958,11 +6012,11 @@ "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==" }, "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", "requires": { - "color-convert": "^2.0.1" + "color-convert": "^1.9.0" } }, "any-base": { @@ -7331,12 +6385,12 @@ } }, "babel-plugin-remove-graphql-queries": { - "version": "4.17.0", - "resolved": "https://registry.npmjs.org/babel-plugin-remove-graphql-queries/-/babel-plugin-remove-graphql-queries-4.17.0.tgz", - "integrity": "sha512-UovjamHhy5y46WyBO/hfqxrLbMq04o+hlTeqCRzeLol4eWtH+8CufdLAZWYtM1l1BIChwvXCxDY2ugeXlbj7+w==", + "version": "4.18.0", + "resolved": "https://registry.npmjs.org/babel-plugin-remove-graphql-queries/-/babel-plugin-remove-graphql-queries-4.18.0.tgz", + "integrity": "sha512-6oOm/cTZdk+7yPh4R4ISLKNur3rK5w2zAUCXTOGKYcRYbvKCS22ODafQBrNcu/UdfpXwSz3XZOG5ru72Z5usUw==", "requires": { "@babel/runtime": "^7.15.4", - "gatsby-core-utils": "^3.17.0" + "gatsby-core-utils": "^3.18.0" } }, "babel-plugin-syntax-jsx": { @@ -7403,9 +6457,9 @@ } }, "babel-preset-gatsby": { - "version": "2.17.0", - "resolved": "https://registry.npmjs.org/babel-preset-gatsby/-/babel-preset-gatsby-2.17.0.tgz", - "integrity": "sha512-hLeovvehdKkfFAsfTKCATKQasLyQa49TrJtct5VthERrb2dhkV71NIfmbiEa9Ae5x+qGYhYvufqMROGptewXbQ==", + "version": "2.18.0", + "resolved": "https://registry.npmjs.org/babel-preset-gatsby/-/babel-preset-gatsby-2.18.0.tgz", + "integrity": "sha512-b6BJEl0MlA/nh+IkTJRgvPEgdN09Pu34Szo5dE4QYvQa66++EqfQUK5huqr+FgZJedPPYYbRY2SgKlRXev5QIQ==", "requires": { "@babel/plugin-proposal-class-properties": "^7.14.0", "@babel/plugin-proposal-nullish-coalescing-operator": "^7.14.5", @@ -7420,8 +6474,8 @@ "babel-plugin-dynamic-import-node": "^2.3.3", "babel-plugin-macros": "^3.1.0", "babel-plugin-transform-react-remove-prop-types": "^0.4.24", - "gatsby-core-utils": "^3.17.0", - "gatsby-legacy-polyfills": "^2.17.0" + "gatsby-core-utils": "^3.18.0", + "gatsby-legacy-polyfills": "^2.18.0" }, "dependencies": { "babel-plugin-macros": { @@ -7626,11 +6680,32 @@ "wrap-ansi": "^7.0.0" }, "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "requires": { + "color-convert": "^2.0.1" + } + }, "camelcase": { "version": "6.3.0", "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==" }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, "wrap-ansi": { "version": "7.0.0", "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", @@ -7841,9 +6916,9 @@ } }, "caniuse-lite": { - "version": "1.0.30001359", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001359.tgz", - "integrity": "sha512-Xln/BAsPzEuiVLgJ2/45IaqD9jShtk3Y33anKb4+yLwQzws3+v6odKfpgES/cDEaZMLzSChpIGdbOYtH9MyuHw==" + "version": "1.0.30001363", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001363.tgz", + "integrity": "sha512-HpQhpzTGGPVMnCjIomjt+jvyUu8vNFo3TaDiZ/RcoTrlOq/5+tC8zHdsbgFB6MxmaY+jCpsH09aD80Bb4Ow3Sg==" }, "capital-case": { "version": "1.0.4", @@ -7862,6 +6937,42 @@ "requires": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "requires": { + "color-convert": "^2.0.1" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "requires": { + "has-flag": "^4.0.0" + } + } } }, "change-case": { @@ -7906,9 +7017,9 @@ "integrity": "sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==" }, "cheerio": { - "version": "1.0.0-rc.11", - "resolved": "https://registry.npmjs.org/cheerio/-/cheerio-1.0.0-rc.11.tgz", - "integrity": "sha512-bQwNaDIBKID5ts/DsdhxrjqFXYfLw4ste+wMKqWA8DyKcS4qwsPP4Bk8ZNaTJjvpiX/qW3BT4sU7d6Bh5i+dag==", + "version": "1.0.0-rc.12", + "resolved": "https://registry.npmjs.org/cheerio/-/cheerio-1.0.0-rc.12.tgz", + "integrity": "sha512-VqR8m68vM46BNnuZ5NtnGBKIE/DfN0cRIzg9n40EIq9NOv90ayxLBXA8fXC5gquFRGJSTRqBq25Jt2ECLR431Q==", "requires": { "cheerio-select": "^2.1.0", "dom-serializer": "^2.0.0", @@ -7916,8 +7027,7 @@ "domutils": "^3.0.1", "htmlparser2": "^8.0.1", "parse5": "^7.0.0", - "parse5-htmlparser2-tree-adapter": "^7.0.0", - "tslib": "^2.4.0" + "parse5-htmlparser2-tree-adapter": "^7.0.0" }, "dependencies": { "dom-serializer": { @@ -7949,9 +7059,9 @@ } }, "entities": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/entities/-/entities-4.3.0.tgz", - "integrity": "sha512-/iP1rZrSEJ0DTlPiX+jbzlA3eVkY/e8L8SozroF395fIqE3TYF/Nz7YOMAawta+vLmyJ/hkGNNPcSbMADCCXbg==" + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/entities/-/entities-4.3.1.tgz", + "integrity": "sha512-o4q/dYJlmyjP2zfnaWDUC6A3BQFmVTX+tZPezK7k0GLSU9QYCauscf5Y+qcEPzKL+EixVouYDgLQK5H9GrLpkg==" }, "htmlparser2": { "version": "8.0.1", @@ -8020,9 +7130,9 @@ } }, "entities": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/entities/-/entities-4.3.0.tgz", - "integrity": "sha512-/iP1rZrSEJ0DTlPiX+jbzlA3eVkY/e8L8SozroF395fIqE3TYF/Nz7YOMAawta+vLmyJ/hkGNNPcSbMADCCXbg==" + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/entities/-/entities-4.3.1.tgz", + "integrity": "sha512-o4q/dYJlmyjP2zfnaWDUC6A3BQFmVTX+tZPezK7k0GLSU9QYCauscf5Y+qcEPzKL+EixVouYDgLQK5H9GrLpkg==" } } }, @@ -8194,14 +7304,6 @@ "q": "^1.1.2" }, "dependencies": { - "ansi-styles": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", - "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", - "requires": { - "color-convert": "^1.9.0" - } - }, "chalk": { "version": "2.4.2", "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", @@ -8211,32 +7313,6 @@ "escape-string-regexp": "^1.0.5", "supports-color": "^5.3.0" } - }, - "color-convert": { - "version": "1.9.3", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", - "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", - "requires": { - "color-name": "1.1.3" - } - }, - "color-name": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", - "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==" - }, - "has-flag": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", - "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==" - }, - "supports-color": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", - "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", - "requires": { - "has-flag": "^3.0.0" - } } } }, @@ -8247,20 +7323,35 @@ "requires": { "color-convert": "^2.0.1", "color-string": "^1.9.0" + }, + "dependencies": { + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + } } }, "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", "requires": { - "color-name": "~1.1.4" + "color-name": "1.1.3" } }, "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==" }, "color-string": { "version": "1.9.1", @@ -8576,9 +7667,9 @@ } }, "create-gatsby": { - "version": "2.17.0", - "resolved": "https://registry.npmjs.org/create-gatsby/-/create-gatsby-2.17.0.tgz", - "integrity": "sha512-RrMAHZL7J5Ew/laz83g+UNQ2RnXszGuub3sG7DQkG0tK5mS9TqTW+FIYyzHCLhdJkr81qC/HRDFsJv0fuYISwg==", + "version": "2.18.0", + "resolved": "https://registry.npmjs.org/create-gatsby/-/create-gatsby-2.18.0.tgz", + "integrity": "sha512-74yn3+wlFKwg3DUVdFdBnfqc6gUVpYjqr/1XtQ0Rb57i0ygvER8Xgp4rY5Mm+8rl7JwBma1NONeM20cdMQjT2w==", "requires": { "@babel/runtime": "^7.15.4" } @@ -9223,9 +8314,9 @@ "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==" }, "electron-to-chromium": { - "version": "1.4.172", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.172.tgz", - "integrity": "sha512-yDoFfTJnqBAB6hSiPvzmsBJSrjOXJtHSJoqJdI/zSIh7DYupYnIOHt/bbPw/WE31BJjNTybDdNAs21gCMnTh0Q==" + "version": "1.4.179", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.179.tgz", + "integrity": "sha512-1XeTb/U/8Xgh2YgPOqhakLYsvCcU4U7jUjTMbEnhIJoIWd/Qt3yC8y0cbG+fHzn4zUNF99Ey1xiPf20bwgLO3Q==" }, "emoji-regex": { "version": "8.0.0", @@ -9616,9 +8707,9 @@ } }, "globals": { - "version": "13.15.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-13.15.0.tgz", - "integrity": "sha512-bpzcOlgDhMG070Av0Vy5Owklpv1I6+j96GhUI7Rh7IzDCKLzboflLrrfqMu8NquDbiR4EOQk7XzJwqVJxicxog==", + "version": "13.16.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.16.0.tgz", + "integrity": "sha512-A1lrQfpNF+McdPOnnFqY3kSN0AFTy485bTi1bkLk4mVPODIUEcSfhHgRqA+QdXPksrSTTztYXx37NFV+GpGk3Q==", "requires": { "type-fest": "^0.20.2" } @@ -9908,6 +8999,11 @@ "schema-utils": "^3.1.1" }, "dependencies": { + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" + }, "jest-worker": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-27.5.1.tgz", @@ -10644,9 +9740,9 @@ "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==" }, "gatsby": { - "version": "4.17.2", - "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-4.17.2.tgz", - "integrity": "sha512-uMNH/X/Fd0kGjelgAPTukgQhxu/aMhRj5YJ07SM4D2yBuO+c4+y1dZRz5q9EUryCeVSx1cSt0J6JMkfzOXmbyA==", + "version": "4.18.0", + "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-4.18.0.tgz", + "integrity": "sha512-EyiwYUsbSKUKsdjm8nnLw5AGJwOJ9NAWcrFg1V/QU4CUnk/M8EiP0TxiGUmK1/K7g82XGxUjuAPYJKJk85yxHA==", "requires": { "@babel/code-frame": "^7.14.0", "@babel/core": "^7.15.5", @@ -10682,15 +9778,15 @@ "babel-plugin-add-module-exports": "^1.0.4", "babel-plugin-dynamic-import-node": "^2.3.3", "babel-plugin-lodash": "^3.3.4", - "babel-plugin-remove-graphql-queries": "^4.17.0", - "babel-preset-gatsby": "^2.17.0", + "babel-plugin-remove-graphql-queries": "^4.18.0", + "babel-preset-gatsby": "^2.18.0", "better-opn": "^2.1.1", "bluebird": "^3.7.2", "body-parser": "^1.19.0", "browserslist": "^4.17.5", "cache-manager": "^2.11.1", "chalk": "^4.1.2", - "chokidar": "^3.5.2", + "chokidar": "^3.5.3", "common-tags": "^1.8.0", "compression": "^1.7.4", "cookie": "^0.4.1", @@ -10712,7 +9808,7 @@ "eslint-plugin-graphql": "^4.0.0", "eslint-plugin-import": "^2.26.0", "eslint-plugin-jsx-a11y": "^6.5.1", - "eslint-plugin-react": "^7.29.4", + "eslint-plugin-react": "^7.30.0", "eslint-plugin-react-hooks": "^4.5.0", "eslint-webpack-plugin": "^2.6.0", "event-source-polyfill": "1.0.25", @@ -10726,21 +9822,21 @@ "find-cache-dir": "^3.3.2", "fs-exists-cached": "1.0.0", "fs-extra": "^10.1.0", - "gatsby-cli": "^4.17.1", - "gatsby-core-utils": "^3.17.0", - "gatsby-graphiql-explorer": "^2.17.0", - "gatsby-legacy-polyfills": "^2.17.0", - "gatsby-link": "^4.17.0", - "gatsby-page-utils": "^2.17.0", - "gatsby-parcel-config": "0.8.0", - "gatsby-plugin-page-creator": "^4.17.0", - "gatsby-plugin-typescript": "^4.17.0", - "gatsby-plugin-utils": "^3.11.0", - "gatsby-react-router-scroll": "^5.17.0", - "gatsby-script": "^1.2.0", - "gatsby-sharp": "^0.11.0", - "gatsby-telemetry": "^3.17.0", - "gatsby-worker": "^1.17.0", + "gatsby-cli": "^4.18.0", + "gatsby-core-utils": "^3.18.0", + "gatsby-graphiql-explorer": "^2.18.0", + "gatsby-legacy-polyfills": "^2.18.0", + "gatsby-link": "^4.18.0", + "gatsby-page-utils": "^2.18.0", + "gatsby-parcel-config": "0.9.0", + "gatsby-plugin-page-creator": "^4.18.0", + "gatsby-plugin-typescript": "^4.18.0", + "gatsby-plugin-utils": "^3.12.0", + "gatsby-react-router-scroll": "^5.18.0", + "gatsby-script": "^1.3.0", + "gatsby-sharp": "^0.12.0", + "gatsby-telemetry": "^3.18.0", + "gatsby-worker": "^1.18.0", "glob": "^7.2.3", "globby": "^11.1.0", "got": "^11.8.2", @@ -10792,7 +9888,6 @@ "slugify": "^1.6.1", "socket.io": "3.1.2", "socket.io-client": "3.1.3", - "source-map-support": "^0.5.20", "st": "^2.0.0", "stack-trace": "^0.0.10", "string-similarity": "^1.2.2", @@ -10814,9 +9909,9 @@ }, "dependencies": { "gatsby-cli": { - "version": "4.17.1", - "resolved": "https://registry.npmjs.org/gatsby-cli/-/gatsby-cli-4.17.1.tgz", - "integrity": "sha512-yLNRGKo8vyeiqKNTH5MkE0Q3AF6Un1v3MVlXzvoyRNs1DIHwkkZ22jGOB64/KIIR/o2cjRsrKJNCVjGV7qNnzw==", + "version": "4.18.0", + "resolved": "https://registry.npmjs.org/gatsby-cli/-/gatsby-cli-4.18.0.tgz", + "integrity": "sha512-H4V1XvXP3EMwUBDbAlpu3jbjlCetUmHY6VB1YsH2kkIdlMrOgjUgNDFpqjgbk7k7z61du2tCgl1lyW+5he+SnA==", "requires": { "@babel/code-frame": "^7.14.0", "@babel/core": "^7.15.5", @@ -10835,13 +9930,13 @@ "common-tags": "^1.8.2", "configstore": "^5.0.1", "convert-hrtime": "^3.0.0", - "create-gatsby": "^2.17.0", + "create-gatsby": "^2.18.0", "envinfo": "^7.8.1", "execa": "^5.1.1", "fs-exists-cached": "^1.0.0", "fs-extra": "^10.1.0", - "gatsby-core-utils": "^3.17.0", - "gatsby-telemetry": "^3.17.0", + "gatsby-core-utils": "^3.18.0", + "gatsby-telemetry": "^3.18.0", "hosted-git-info": "^3.0.8", "is-valid-path": "^0.1.1", "joi": "^17.4.2", @@ -10880,9 +9975,9 @@ } }, "gatsby-core-utils": { - "version": "3.17.0", - "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.17.0.tgz", - "integrity": "sha512-1e0YaqTAEpSSBkpWkY703lu+Bl76ASXUvUcpnNO3CavCYZsRQxAXtMXIKIEvhm1z6zWJmY9HILo6/DjP+PHeyw==", + "version": "3.18.0", + "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.18.0.tgz", + "integrity": "sha512-mCoNgH4MilosLhEroklgVffwie9lyxgmvNwe/oIyzXr6NcZ2uxSp8G1KrgxdG2srt2hCNlZLlzS25ltLTeHTjA==", "requires": { "@babel/runtime": "^7.15.4", "ci-info": "2.0.0", @@ -10890,7 +9985,7 @@ "fastq": "^1.13.0", "file-type": "^16.5.3", "fs-extra": "^10.1.0", - "got": "^11.8.3", + "got": "^11.8.5", "import-from": "^4.0.0", "lmdb": "2.5.2", "lock": "^1.1.0", @@ -10902,9 +9997,9 @@ } }, "gatsby-graphiql-explorer": { - "version": "2.17.0", - "resolved": "https://registry.npmjs.org/gatsby-graphiql-explorer/-/gatsby-graphiql-explorer-2.17.0.tgz", - "integrity": "sha512-IWAcxMlOofpg8wRzLGjuey3HunWu3bLilKurX8csD0d+YsuiB4aqZc7dWi2Zc15ZHZ5Hh8zMpOv0MVW9qhjnCg==", + "version": "2.18.0", + "resolved": "https://registry.npmjs.org/gatsby-graphiql-explorer/-/gatsby-graphiql-explorer-2.18.0.tgz", + "integrity": "sha512-mmY+kHc+axpDO9lfjbCEf/0oEIHTcZmpe2PtQAzkhnQHyti3xd9IIafq/1W3QKIJo5c7f40+tR3sFTERqaBeIA==", "requires": { "@babel/runtime": "^7.15.4" } @@ -10920,9 +10015,9 @@ } }, "gatsby-legacy-polyfills": { - "version": "2.17.0", - "resolved": "https://registry.npmjs.org/gatsby-legacy-polyfills/-/gatsby-legacy-polyfills-2.17.0.tgz", - "integrity": "sha512-tpONSDutxEZY3vOdUaZ1yE9d0QWZ5/p47juvnhTv0qjGkBwow3gfCpgJwDzWyzKl0w0geesZwlLnaCA3WSEv7Q==", + "version": "2.18.0", + "resolved": "https://registry.npmjs.org/gatsby-legacy-polyfills/-/gatsby-legacy-polyfills-2.18.0.tgz", + "integrity": "sha512-wPnsRUnnab10wyt5VPkIhpJC1k8bVrpn0Sfat1L3JskYwkVIEvquqTmHWkpGMB8SLbXQiJEGCs2TcIrx9riL+w==", "requires": { "@babel/runtime": "^7.15.4", "core-js-compat": "3.9.0" @@ -10945,37 +10040,37 @@ } }, "gatsby-link": { - "version": "4.17.0", - "resolved": "https://registry.npmjs.org/gatsby-link/-/gatsby-link-4.17.0.tgz", - "integrity": "sha512-hDh+9OFMHNQ/5YdDdTcpSMB8xAYSP4OMkRuwmgPKH1jtOuov3pzwFAo19RR34CsOqzKd3LSQbCjIovOksjlAeA==", + "version": "4.18.0", + "resolved": "https://registry.npmjs.org/gatsby-link/-/gatsby-link-4.18.0.tgz", + "integrity": "sha512-nE+Z/iE55Id84YqsQOT1bfPJ/AsupY/4s8i6NllQ8no/PRgDGMpkTG6ANqyt2CHs/bywxch2rv8Ho7Gwsuuueg==", "requires": { "@babel/runtime": "^7.15.4", "@types/reach__router": "^1.3.10", - "gatsby-page-utils": "^2.17.0", + "gatsby-page-utils": "^2.18.0", "prop-types": "^15.8.1" } }, "gatsby-page-utils": { - "version": "2.17.0", - "resolved": "https://registry.npmjs.org/gatsby-page-utils/-/gatsby-page-utils-2.17.0.tgz", - "integrity": "sha512-aeDrvYm6uTXayr/Yw0dNQUy+P9a5TshuG9UnRddCB7jQAR1aufjkNu8WH93l151p4jqUoYGemxgZIhrNv1+i/g==", + "version": "2.18.0", + "resolved": "https://registry.npmjs.org/gatsby-page-utils/-/gatsby-page-utils-2.18.0.tgz", + "integrity": "sha512-qTwlqscKxkBlMd+Mn8xj6sh7L0LbfLGYOPCYozJnukXv8d/6Jyk1nfaP6I82hwj/iyhaBQtk7g8g4XyBJJaESw==", "requires": { "@babel/runtime": "^7.15.4", "bluebird": "^3.7.2", - "chokidar": "^3.5.2", + "chokidar": "^3.5.3", "fs-exists-cached": "^1.0.0", - "gatsby-core-utils": "^3.17.0", + "gatsby-core-utils": "^3.18.0", "glob": "^7.2.3", "lodash": "^4.17.21", "micromatch": "^4.0.5" } }, "gatsby-parcel-config": { - "version": "0.8.0", - "resolved": "https://registry.npmjs.org/gatsby-parcel-config/-/gatsby-parcel-config-0.8.0.tgz", - "integrity": "sha512-HzLU8uoJLuakH08T27K8GKx7rcLEVkKVClffAuVKrlcVYhNH+x1LvIwe+uMTIIdfu+YtUpUP1PpTdua6YfrVTQ==", + "version": "0.9.0", + "resolved": "https://registry.npmjs.org/gatsby-parcel-config/-/gatsby-parcel-config-0.9.0.tgz", + "integrity": "sha512-ccGw/L8ylhDgE/4tr52B6tb2jreApOMoYPW75Z8aM2ULRz505fL5mrnkG1fdQDBZSCHx/0j0x2TZyCLrt0Bvlw==", "requires": { - "@gatsbyjs/parcel-namer-relative-to-cwd": "^1.2.0", + "@gatsbyjs/parcel-namer-relative-to-cwd": "1.3.0", "@parcel/bundler-default": "2.6.0", "@parcel/compressor-raw": "2.6.0", "@parcel/namer-default": "2.6.0", @@ -10995,55 +10090,55 @@ } }, "gatsby-plugin-catch-links": { - "version": "4.17.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-catch-links/-/gatsby-plugin-catch-links-4.17.0.tgz", - "integrity": "sha512-hqrNbrmeJ22nhq2W1u+KBFtrH9zpDrum6DQD+TOTOjlA+MX59Nmc4mewUjuMKa9CEv93/k3Y58NIhFcGk6jHWg==", + "version": "4.18.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-catch-links/-/gatsby-plugin-catch-links-4.18.0.tgz", + "integrity": "sha512-BhrK//cvOuBKhKZ+P8GW/PrjQjo2Vx2fiiZbIuV4/tVWMx76vbdR1tzija2OHBts4mq3ngVNJOknLpaxRk6JAg==", "requires": { "@babel/runtime": "^7.15.4", "escape-string-regexp": "^1.0.5" } }, "gatsby-plugin-image": { - "version": "2.17.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-image/-/gatsby-plugin-image-2.17.0.tgz", - "integrity": "sha512-YBVYczsxq04oA3+tx80f94FSxtCjFKc9tKj68Zp/NRZGmLL5/0/s++UcMHxzusmC2P/rAKfDlQ6HNOhm5dwFhQ==", + "version": "2.18.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-image/-/gatsby-plugin-image-2.18.0.tgz", + "integrity": "sha512-/WvMDUiZvofmxHzHeEPLNL605FU1AK5pLXKKS8aekRigbNbi+Gip2ZROFPJtj4oxyKDmtD+HaVCNf1q8SdhPEg==", "requires": { "@babel/code-frame": "^7.14.0", "@babel/parser": "^7.15.5", "@babel/runtime": "^7.15.4", "@babel/traverse": "^7.15.4", "babel-jsx-utils": "^1.1.0", - "babel-plugin-remove-graphql-queries": "^4.17.0", + "babel-plugin-remove-graphql-queries": "^4.18.0", "camelcase": "^5.3.1", - "chokidar": "^3.5.2", + "chokidar": "^3.5.3", "common-tags": "^1.8.2", "fs-extra": "^10.1.0", - "gatsby-core-utils": "^3.17.0", - "gatsby-plugin-utils": "^3.11.0", + "gatsby-core-utils": "^3.18.0", + "gatsby-plugin-utils": "^3.12.0", "objectFitPolyfill": "^2.3.5", "prop-types": "^15.8.1" } }, "gatsby-plugin-manifest": { - "version": "4.17.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-manifest/-/gatsby-plugin-manifest-4.17.0.tgz", - "integrity": "sha512-LGxK2tko8DEGLVQEd4FRH3gTDdfSvhOXDuGJxtP5uz382DgVPbfYjU5KO72T6nZ8YJUOyOibCN8o+rw4OzvMzQ==", + "version": "4.18.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-manifest/-/gatsby-plugin-manifest-4.18.0.tgz", + "integrity": "sha512-UqyENX8vwl9toCVnfdhVX/P7NZApG4FvXoDdkxfI53tKoFv93rIisb2IUGQeZZP9jHXprGlnP3y8dgTAmz5Ubw==", "requires": { "@babel/runtime": "^7.15.4", - "gatsby-core-utils": "^3.17.0", - "gatsby-plugin-utils": "^3.11.0", + "gatsby-core-utils": "^3.18.0", + "gatsby-plugin-utils": "^3.12.0", "semver": "^7.3.7", "sharp": "^0.30.3" } }, "gatsby-plugin-offline": { - "version": "5.17.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-offline/-/gatsby-plugin-offline-5.17.0.tgz", - "integrity": "sha512-4sGpLkjOrv/b6E9FI6TqAX92D47PGbgCubqQTTV7c4zcEIjq9MA86VzNRV/sU8Jys+9Az0kBOIA8e7NEckyvXQ==", + "version": "5.18.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-offline/-/gatsby-plugin-offline-5.18.0.tgz", + "integrity": "sha512-PfbAwEwfozkbAxtPVxUwYkvX47IsWpOJUlutn6wl7hj7VLHfegxDg3RZtc0trbDpj39wVtcLDdM8fu4schm3EA==", "requires": { "@babel/runtime": "^7.15.4", "cheerio": "^1.0.0-rc.10", - "gatsby-core-utils": "^3.17.0", + "gatsby-core-utils": "^3.18.0", "glob": "^7.2.3", "idb-keyval": "^3.2.0", "lodash": "^4.17.21", @@ -11051,35 +10146,35 @@ } }, "gatsby-plugin-page-creator": { - "version": "4.17.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-page-creator/-/gatsby-plugin-page-creator-4.17.0.tgz", - "integrity": "sha512-Nv1lryCAfo5cWqkVnnqiMC6bmXXXOhdl2efLZKK88QwqT4tZO51gGrgsZGL4mtXtUUSkJXGE8pmjelUOcR+23g==", + "version": "4.18.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-page-creator/-/gatsby-plugin-page-creator-4.18.0.tgz", + "integrity": "sha512-6bY4vJndDw0nBcOuQdX41Wvbctw0y9+a7IavCFJKFeNs+Zo0XH2FX0IAww0slDnSJU6AukJ9qfjHqKJkADAZpQ==", "requires": { "@babel/runtime": "^7.15.4", "@babel/traverse": "^7.15.4", "@sindresorhus/slugify": "^1.1.2", - "chokidar": "^3.5.2", + "chokidar": "^3.5.3", "fs-exists-cached": "^1.0.0", - "gatsby-core-utils": "^3.17.0", - "gatsby-page-utils": "^2.17.0", - "gatsby-plugin-utils": "^3.11.0", - "gatsby-telemetry": "^3.17.0", + "gatsby-core-utils": "^3.18.0", + "gatsby-page-utils": "^2.18.0", + "gatsby-plugin-utils": "^3.12.0", + "gatsby-telemetry": "^3.18.0", "globby": "^11.1.0", "lodash": "^4.17.21" } }, "gatsby-plugin-react-helmet": { - "version": "5.17.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-react-helmet/-/gatsby-plugin-react-helmet-5.17.0.tgz", - "integrity": "sha512-Lp52GFGNQO0Rt0VfYbFMFBw67XNaIITvwhBMqzxnIw/OCnnyjhylfYMpmyDQKT5S/yaWEF3MsvPmE2YCbXbSww==", + "version": "5.18.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-react-helmet/-/gatsby-plugin-react-helmet-5.18.0.tgz", + "integrity": "sha512-H55KLoKZ/LeWWILYmkbt+L1c6E2ViurN16GyGOOzIg2LGjd7OXu9zy9H9lMKrkNpn/HUXhyUilYHqVeo5fve1A==", "requires": { "@babel/runtime": "^7.15.4" } }, "gatsby-plugin-sharp": { - "version": "4.17.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-sharp/-/gatsby-plugin-sharp-4.17.0.tgz", - "integrity": "sha512-+wP4hskMBSNgPYqBX2uqoqb5JUtMMvaZTzYNkZmnKkg85rHeDpUy+eMoCqrhh8wpW/NgcbQ9o6uK43jj2qv0xQ==", + "version": "4.18.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-sharp/-/gatsby-plugin-sharp-4.18.0.tgz", + "integrity": "sha512-ExGzy8xAwc5+4nDHgGe1k8Id/HZpETPSizLNeJ5We3T4hjshdfgvnuRiAZf2VIY60+VPuVCezYNn4n7gPTShRw==", "requires": { "@babel/runtime": "^7.15.4", "@gatsbyjs/potrace": "^2.2.0", @@ -11088,10 +10183,10 @@ "debug": "^4.3.4", "filenamify": "^4.3.0", "fs-extra": "^10.1.0", - "gatsby-core-utils": "^3.17.0", - "gatsby-plugin-utils": "^3.11.0", - "gatsby-telemetry": "^3.17.0", - "got": "^11.8.3", + "gatsby-core-utils": "^3.18.0", + "gatsby-plugin-utils": "^3.12.0", + "gatsby-telemetry": "^3.18.0", + "got": "^11.8.5", "lodash": "^4.17.21", "mini-svg-data-uri": "^1.4.4", "probe-image-size": "^7.2.3", @@ -11101,14 +10196,6 @@ "svgo": "1.3.2" }, "dependencies": { - "ansi-styles": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", - "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", - "requires": { - "color-convert": "^1.9.0" - } - }, "async": { "version": "3.2.4", "resolved": "https://registry.npmjs.org/async/-/async-3.2.4.tgz", @@ -11124,19 +10211,6 @@ "supports-color": "^5.3.0" } }, - "color-convert": { - "version": "1.9.3", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", - "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", - "requires": { - "color-name": "1.1.3" - } - }, - "color-name": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", - "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==" - }, "css-select": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/css-select/-/css-select-2.1.0.tgz", @@ -11200,11 +10274,6 @@ "domelementtype": "1" } }, - "has-flag": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", - "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==" - }, "mdn-data": { "version": "2.0.4", "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.4.tgz", @@ -11223,14 +10292,6 @@ "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" }, - "supports-color": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", - "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", - "requires": { - "has-flag": "^3.0.0" - } - }, "svgo": { "version": "1.3.2", "resolved": "https://registry.npmjs.org/svgo/-/svgo-1.3.2.tgz", @@ -11254,9 +10315,9 @@ } }, "gatsby-plugin-typescript": { - "version": "4.17.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-typescript/-/gatsby-plugin-typescript-4.17.0.tgz", - "integrity": "sha512-aSO/h4z+jdWBZtEnH17NoZaFchO8LkEcIdNX2saYIjJfa2tMbOR+wnOuQJVAdj61n8ntc1pQkNJxiEK31IaZjw==", + "version": "4.18.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-typescript/-/gatsby-plugin-typescript-4.18.0.tgz", + "integrity": "sha512-SuNBrp57SnovOyhCz0zPkz7begV4UR2XdXUrFsh4N0jWOI5yFNVgENpKlbI/O7JnvgyV5KC/pkobNh3we+0mcQ==", "requires": { "@babel/core": "^7.15.5", "@babel/plugin-proposal-nullish-coalescing-operator": "^7.14.5", @@ -11264,19 +10325,19 @@ "@babel/plugin-proposal-optional-chaining": "^7.14.5", "@babel/preset-typescript": "^7.15.0", "@babel/runtime": "^7.15.4", - "babel-plugin-remove-graphql-queries": "^4.17.0" + "babel-plugin-remove-graphql-queries": "^4.18.0" } }, "gatsby-plugin-utils": { - "version": "3.11.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-utils/-/gatsby-plugin-utils-3.11.0.tgz", - "integrity": "sha512-v2D6O2aME9p7tqlGykq5mgtj7Jqp/CWatgo0zJ7bFWSYPPUpQ7jRVAph1PIgFTAV/CaUrrvt9sxdRaZrglJyug==", + "version": "3.12.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-utils/-/gatsby-plugin-utils-3.12.0.tgz", + "integrity": "sha512-vdz3qwaCOkvgzAxMkZlgpmpWf555jISwek5lyWYhGyJJvXYV8KQ2cZ4CoOfFKAYVeZVSucrHcdWyY3fLLpQvAA==", "requires": { "@babel/runtime": "^7.15.4", "@gatsbyjs/potrace": "^2.2.0", "fs-extra": "^10.1.0", - "gatsby-core-utils": "^3.17.0", - "gatsby-sharp": "^0.11.0", + "gatsby-core-utils": "^3.18.0", + "gatsby-sharp": "^0.12.0", "graphql-compose": "^9.0.7", "import-from": "^4.0.0", "joi": "^17.4.2", @@ -11293,38 +10354,38 @@ } }, "gatsby-react-router-scroll": { - "version": "5.17.0", - "resolved": "https://registry.npmjs.org/gatsby-react-router-scroll/-/gatsby-react-router-scroll-5.17.0.tgz", - "integrity": "sha512-RwFeZlKL0T8dxpEdlmuQAH+h4ugrQQpl4U2m0Wdo/F9/8/VEiAeX64oa2r2BqiiTf4MzAIIT+5/ONt83FcmZWg==", + "version": "5.18.0", + "resolved": "https://registry.npmjs.org/gatsby-react-router-scroll/-/gatsby-react-router-scroll-5.18.0.tgz", + "integrity": "sha512-/A1k468s6g713c8me5DuGiia8rPWLuwjITQ/pKqgJwioJVB6MnD/iBCbHUTzLHlNwZypAVdGHCN8fCIcPcMb6Q==", "requires": { "@babel/runtime": "^7.15.4", "prop-types": "^15.8.1" } }, "gatsby-script": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/gatsby-script/-/gatsby-script-1.2.0.tgz", - "integrity": "sha512-Fkf6yJxwuQCS6xdFxF0gpiCUiS3PYnRv5I2mCAJV0Cu7k4PYgVpQJt79bcDHvnx755VpXOmZIfMXegACg1XS0w==" + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/gatsby-script/-/gatsby-script-1.3.0.tgz", + "integrity": "sha512-eCz6mcMFpB7kvpmyM7AtMTxNxzdrzPgt8GiuDKWFOlDgk1il6PUjO99QsL/cCeokmaiH/6egVnm9b33/x+sy9A==" }, "gatsby-sharp": { - "version": "0.11.0", - "resolved": "https://registry.npmjs.org/gatsby-sharp/-/gatsby-sharp-0.11.0.tgz", - "integrity": "sha512-RIbU8qi/Qs7G/KJiY0zyGS9Yic5n4RpDUf/1W3gvRl78Uo3LSuIeGEpaai6mYEnreuGb5fQIcqdkYs/UV3e8WA==", + "version": "0.12.0", + "resolved": "https://registry.npmjs.org/gatsby-sharp/-/gatsby-sharp-0.12.0.tgz", + "integrity": "sha512-dZa/AgxmPzD0vvROEZSuT3IdzAFTxnq1FfLTf9n3mywonvsKYc84zj6nf8TEzBrVrBFAaLvZek4NpVAKWGr4/w==", "requires": { "@types/sharp": "^0.30.0", "sharp": "^0.30.3" } }, "gatsby-source-filesystem": { - "version": "4.17.0", - "resolved": "https://registry.npmjs.org/gatsby-source-filesystem/-/gatsby-source-filesystem-4.17.0.tgz", - "integrity": "sha512-1UErm5fcAqHOB3439V2BmSB5Kz+yDN15qj5J503/f6nL44kPPhJKSjjR64A5iz2y/3nCSTyZfmSs44jw9I1hhg==", + "version": "4.18.0", + "resolved": "https://registry.npmjs.org/gatsby-source-filesystem/-/gatsby-source-filesystem-4.18.0.tgz", + "integrity": "sha512-45ivbP9Ho6ioCqAJKdz5ejXlKCZ+8UCzQEC8cQbJI+k5CiJMdA09X65GVITUEob0bFRCcv5RQu4fOodrznaIwg==", "requires": { "@babel/runtime": "^7.15.4", - "chokidar": "^3.5.2", + "chokidar": "^3.5.3", "file-type": "^16.5.3", "fs-extra": "^10.1.0", - "gatsby-core-utils": "^3.17.0", + "gatsby-core-utils": "^3.18.0", "got": "^9.6.0", "md5-file": "^5.0.0", "mime": "^2.5.2", @@ -11454,9 +10515,9 @@ } }, "gatsby-source-wordpress": { - "version": "6.17.0", - "resolved": "https://registry.npmjs.org/gatsby-source-wordpress/-/gatsby-source-wordpress-6.17.0.tgz", - "integrity": "sha512-OogZA6jdq6FgNqgOPusA8z55cj5hhWbF+eqyTTY/pPsl1oQ6rO7UAH6XA2K0ZOLojJl3AZ8Ulg9LksaoSPIxyw==", + "version": "6.18.0", + "resolved": "https://registry.npmjs.org/gatsby-source-wordpress/-/gatsby-source-wordpress-6.18.0.tgz", + "integrity": "sha512-Sdb9BotvzGpvB3D4FYzPoxJESGcsH2qjP2Mw7jjAXwCr1cJE+4yA08+jmd4kuUj/VuH04kXw/NV4h2YOaXZ/Tg==", "requires": { "@babel/runtime": "^7.15.4", "@rematch/core": "^1.4.0", @@ -11466,28 +10527,28 @@ "axios": "^0.21.1", "axios-rate-limit": "^1.3.0", "better-queue": "^3.8.10", - "cache-manager": "^3.6.1", + "cache-manager": "^3.6.3", "cache-manager-fs-hash": "^0.0.9", "chalk": "^4.1.2", "cheerio": "^1.0.0-rc.10", "clipboardy": "^2.3.0", - "diff": "^5.0.0", + "diff": "^5.1.0", "dumper.js": "^1.3.1", "execall": "^2.0.0", "fast-json-stable-stringify": "^2.1.0", "file-type": "^15.0.1", "filesize": "^6.4.0", "fs-extra": "^10.1.0", - "gatsby-core-utils": "^3.17.0", - "gatsby-plugin-catch-links": "^4.17.0", - "gatsby-plugin-utils": "^3.11.0", - "gatsby-source-filesystem": "^4.17.0", + "gatsby-core-utils": "^3.18.0", + "gatsby-plugin-catch-links": "^4.18.0", + "gatsby-plugin-utils": "^3.12.0", + "gatsby-source-filesystem": "^4.18.0", "glob": "^7.2.3", - "got": "^11.8.3", + "got": "^11.8.5", "lodash": "^4.17.21", "node-fetch": "^2.6.7", "p-queue": "^6.6.2", - "prettier": "^2.5.1", + "prettier": "^2.7.1", "read-chunk": "^3.2.0", "replaceall": "^0.1.6", "semver": "^7.3.7", @@ -11553,25 +10614,33 @@ } }, "gatsby-telemetry": { - "version": "3.17.0", - "resolved": "https://registry.npmjs.org/gatsby-telemetry/-/gatsby-telemetry-3.17.0.tgz", - "integrity": "sha512-1N4uKj2Yj7AykLmwjsdOmNirf3UmP8CBXjj/LmWf5cLDVbdPqkirAlyD6uTeEliG5UFHPTlBsRi26v558mFYJQ==", + "version": "3.18.0", + "resolved": "https://registry.npmjs.org/gatsby-telemetry/-/gatsby-telemetry-3.18.0.tgz", + "integrity": "sha512-i1JvNqGOyLDPGEn1QN29YGpe2ripg2LZBAOhXmk6lAhRL5fTVo6WkEA2yW7XESnXIOJBFymgVbUlLjXoqeZ5Xg==", "requires": { "@babel/code-frame": "^7.14.0", "@babel/runtime": "^7.15.4", - "@turist/fetch": "^7.1.7", + "@turist/fetch": "^7.2.0", "@turist/time": "^0.0.2", "async-retry-ng": "^2.0.1", "boxen": "^4.2.0", "configstore": "^5.0.1", "fs-extra": "^10.1.0", - "gatsby-core-utils": "^3.17.0", + "gatsby-core-utils": "^3.18.0", "git-up": "^4.0.5", "is-docker": "^2.2.1", "lodash": "^4.17.21", "node-fetch": "^2.6.7" }, "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "requires": { + "color-convert": "^2.0.1" + } + }, "boxen": { "version": "4.2.0", "resolved": "https://registry.npmjs.org/boxen/-/boxen-4.2.0.tgz", @@ -11596,6 +10665,32 @@ "supports-color": "^7.1.0" } }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "requires": { + "has-flag": "^4.0.0" + } + }, "type-fest": { "version": "0.8.1", "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz", @@ -11604,25 +10699,25 @@ } }, "gatsby-transformer-sharp": { - "version": "4.17.0", - "resolved": "https://registry.npmjs.org/gatsby-transformer-sharp/-/gatsby-transformer-sharp-4.17.0.tgz", - "integrity": "sha512-yaBzgqpjMqpy1ZuJ4CRbYh8rdiyvuSlMS0aMRiGlcjgUmKuT5qGJsQWsuhihbKWqn8OPhNzrAsnWvWnOVjAeCg==", + "version": "4.18.0", + "resolved": "https://registry.npmjs.org/gatsby-transformer-sharp/-/gatsby-transformer-sharp-4.18.0.tgz", + "integrity": "sha512-uOsP5U10pWPdhpKHkPyKWoxCFEGdnreqmSrWrKUsHa0oViCfudbDrM+xWla+QQ0MhHHkqOUjdcfZRG3SwUlPcg==", "requires": { "@babel/runtime": "^7.15.4", "@gatsbyjs/potrace": "^2.2.0", "bluebird": "^3.7.2", "common-tags": "^1.8.2", "fs-extra": "^10.1.0", - "gatsby-plugin-utils": "^3.11.0", + "gatsby-plugin-utils": "^3.12.0", "probe-image-size": "^7.2.3", "semver": "^7.3.7", "sharp": "^0.30.3" } }, "gatsby-worker": { - "version": "1.17.0", - "resolved": "https://registry.npmjs.org/gatsby-worker/-/gatsby-worker-1.17.0.tgz", - "integrity": "sha512-hA7awNHmcNWp3TgQkjF0Z3I9YGWpdsf8jUdJOlAjI+aBxQ2vdHTVNwbMdXwtlf9umQRwORnmEzADmQdm0Cx5AA==", + "version": "1.18.0", + "resolved": "https://registry.npmjs.org/gatsby-worker/-/gatsby-worker-1.18.0.tgz", + "integrity": "sha512-gNzqDrYFMXlfXCzdClORyDQWQZKTOF6nRUrhZT8PUxzQViO+DvnEKE3EAQvZizYKW1Hgw7cbiTtLG3qshkNepw==", "requires": { "@babel/core": "^7.15.5", "@babel/runtime": "^7.15.4" @@ -12045,9 +11140,9 @@ "integrity": "sha512-g5VNKdkFuUuVCP9gYfDJHjK2nqdQJ7aDLTnycnc2+RvsOQbuLdF5pm7vuE5J76SEBIQjs4kQY/BWq74JUmjbXA==" }, "has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==" }, "has-property-descriptors": { "version": "1.0.0", @@ -12719,11 +11814,11 @@ } }, "is-ssh": { - "version": "1.3.3", - "resolved": "https://registry.npmjs.org/is-ssh/-/is-ssh-1.3.3.tgz", - "integrity": "sha512-NKzJmQzJfEEma3w5cJNcUMxoXfDjz0Zj0eyCalHn2E6VOwlzjZo0yuO2fcBSf8zhFuVCL/82/r5gRcoi6aEPVQ==", + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/is-ssh/-/is-ssh-1.4.0.tgz", + "integrity": "sha512-x7+VxdxOdlV3CYpjvRLBv5Lo9OJerlYanjwFrPR9fuGPjCiNiCzFgAWpiLAohSbsnH4ZAys3SBh+hq5rJosxUQ==", "requires": { - "protocols": "^1.1.0" + "protocols": "^2.0.1" } }, "is-stream": { @@ -12848,6 +11943,21 @@ "@types/node": "*", "merge-stream": "^2.0.0", "supports-color": "^7.0.0" + }, + "dependencies": { + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "requires": { + "has-flag": "^4.0.0" + } + } } }, "jimp": { @@ -12955,9 +12065,9 @@ } }, "keyv": { - "version": "4.3.1", - "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.3.1.tgz", - "integrity": "sha512-nwP7AQOxFzELXsNq3zCx/oh81zu4DHWwCE6W9RaeHb7OHO0JpmKS8n801ovVQC7PTsZDWtPA5j1QY+/WWtARYg==", + "version": "4.3.2", + "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.3.2.tgz", + "integrity": "sha512-kn8WmodVBe12lmHpA6W8OY7SNh6wVR+Z+wZESF4iF5FCazaVXGWOtnbnvX0tMQ1bO+/TmOD9LziuYMvrIIs0xw==", "requires": { "compress-brotli": "^1.3.8", "json-buffer": "3.0.1" @@ -12979,9 +12089,9 @@ "integrity": "sha512-pJiBpiXMbt7dkzXe8Ghj/u4FfXOOa98fPW+bihOJ4SjnoijweJrNThJfd3ifXpXhREjpoF2mZVH1GfS9LV3kHQ==" }, "language-subtag-registry": { - "version": "0.3.21", - "resolved": "https://registry.npmjs.org/language-subtag-registry/-/language-subtag-registry-0.3.21.tgz", - "integrity": "sha512-L0IqwlIXjilBVVYKFT37X9Ih11Um5NEl9cbJIuU/SwP/zEEAbBPOnEeeuxVMf45ydWQRDQN3Nqc96OgbH1K+Pg==" + "version": "0.3.22", + "resolved": "https://registry.npmjs.org/language-subtag-registry/-/language-subtag-registry-0.3.22.tgz", + "integrity": "sha512-tN0MCzyWnoz/4nHS6uxdlFWoUZT7ABptwKPQ52Ea7URk6vll88bWBVhodtnlfEuCcKWNGoc+uGbw1cwa9IKh/w==" }, "language-tags": { "version": "1.0.5", @@ -13704,9 +12814,9 @@ } }, "node-gyp-build": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/node-gyp-build/-/node-gyp-build-4.4.0.tgz", - "integrity": "sha512-amJnQCcgtRVw9SvoebO3BKGESClrfXGCUTX9hSn1OuGQTQBOZmVd0Z0OlecpuRksKvbsUqALE8jls/ErClAPuQ==" + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/node-gyp-build/-/node-gyp-build-4.5.0.tgz", + "integrity": "sha512-2iGbaQBV+ITgCz76ZEjmhUKAKVf7xfY1sRl4UiKQspfZMH2h06SyhNsnSVy50cwkFQDGLyif6m/6uFXHkOZ6rg==" }, "node-gyp-build-optional-packages": { "version": "4.3.5", @@ -13954,9 +13064,9 @@ } }, "ordered-binary": { - "version": "1.2.5", - "resolved": "https://registry.npmjs.org/ordered-binary/-/ordered-binary-1.2.5.tgz", - "integrity": "sha512-djRmZoEpOGvIRW7ufsCDHtvcUa18UC9TxnPbHhSVFZHsoyg0dtut1bWtBZ/fmxdPN62oWXrV6adM7NoWU+CneA==" + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/ordered-binary/-/ordered-binary-1.3.0.tgz", + "integrity": "sha512-knIeYepTI6BDAzGxqFEDGtI/iGqs57H32CInAIxEvAHG46vk1Di0CEpyc1A7iY39B1mfik3g3KLYwOTNnnMHLA==" }, "os-tmpdir": { "version": "1.0.2", @@ -14234,17 +13344,31 @@ "protocols": "^1.4.0", "qs": "^6.9.4", "query-string": "^6.13.8" + }, + "dependencies": { + "protocols": { + "version": "1.4.8", + "resolved": "https://registry.npmjs.org/protocols/-/protocols-1.4.8.tgz", + "integrity": "sha512-IgjKyaUSjsROSO8/D49Ab7hP8mJgTYcqApOqdPhLoPxAplXmkp+zRvsrSQjFn5by0rhm4VH0GAUELIPpx7B1yg==" + } } }, "parse-url": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/parse-url/-/parse-url-6.0.0.tgz", - "integrity": "sha512-cYyojeX7yIIwuJzledIHeLUBVJ6COVLeT4eF+2P6aKVzwvgKQPndCBv3+yQ7pcWjqToYwaligxzSYNNmGoMAvw==", + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/parse-url/-/parse-url-6.0.2.tgz", + "integrity": "sha512-uCSjOvD3T+6B/sPWhR+QowAZcU/o4bjPrVBQBGFxcDF6J6FraCGIaDBsdoQawiaaAVdHvtqBe3w3vKlfBKySOQ==", "requires": { "is-ssh": "^1.3.0", "normalize-url": "^6.1.0", - "parse-path": "^4.0.0", + "parse-path": "^4.0.4", "protocols": "^1.4.0" + }, + "dependencies": { + "protocols": { + "version": "1.4.8", + "resolved": "https://registry.npmjs.org/protocols/-/protocols-1.4.8.tgz", + "integrity": "sha512-IgjKyaUSjsROSO8/D49Ab7hP8mJgTYcqApOqdPhLoPxAplXmkp+zRvsrSQjFn5by0rhm4VH0GAUELIPpx7B1yg==" + } } }, "parse5": { @@ -14256,9 +13380,9 @@ }, "dependencies": { "entities": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/entities/-/entities-4.3.0.tgz", - "integrity": "sha512-/iP1rZrSEJ0DTlPiX+jbzlA3eVkY/e8L8SozroF395fIqE3TYF/Nz7YOMAawta+vLmyJ/hkGNNPcSbMADCCXbg==" + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/entities/-/entities-4.3.1.tgz", + "integrity": "sha512-o4q/dYJlmyjP2zfnaWDUC6A3BQFmVTX+tZPezK7k0GLSU9QYCauscf5Y+qcEPzKL+EixVouYDgLQK5H9GrLpkg==" } } }, @@ -14913,9 +14037,9 @@ } }, "protocols": { - "version": "1.4.8", - "resolved": "https://registry.npmjs.org/protocols/-/protocols-1.4.8.tgz", - "integrity": "sha512-IgjKyaUSjsROSO8/D49Ab7hP8mJgTYcqApOqdPhLoPxAplXmkp+zRvsrSQjFn5by0rhm4VH0GAUELIPpx7B1yg==" + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/protocols/-/protocols-2.0.1.tgz", + "integrity": "sha512-/XJ368cyBJ7fzLMwLKv1e4vLxOju2MNAIokcr7meSaNcVbWz/CPcW22cP04mwxOErdA5mwjA8Q6w/cdAQxVn7Q==" }, "proxy-addr": { "version": "2.0.7", @@ -16037,14 +15161,14 @@ "integrity": "sha512-y0m1JoUZSlPAjXVtPPW70aZWfIL/dSP7AFkRnniLCrK/8MDKog3TySTBmckD+RObVxH0v4Tox67+F14PdED2oQ==" }, "sharp": { - "version": "0.30.6", - "resolved": "https://registry.npmjs.org/sharp/-/sharp-0.30.6.tgz", - "integrity": "sha512-lSdVxFxcndzcXggDrak6ozdGJgmIgES9YVZWtAFrwi+a/H5vModaf51TghBtMPw+71sLxUsTy2j+aB7qLIODQg==", + "version": "0.30.7", + "resolved": "https://registry.npmjs.org/sharp/-/sharp-0.30.7.tgz", + "integrity": "sha512-G+MY2YW33jgflKPTXXptVO28HvNOo9G3j0MybYAHeEmby+QuD2U98dT6ueht9cv/XDqZspSpIhoSW+BAKJ7Hig==", "requires": { "color": "^4.2.3", "detect-libc": "^2.0.1", "node-addon-api": "^5.0.0", - "prebuild-install": "^7.1.0", + "prebuild-install": "^7.1.1", "semver": "^7.3.7", "simple-get": "^4.0.1", "tar-fs": "^2.1.1", @@ -16303,6 +15427,29 @@ "ansi-styles": "^4.0.0", "astral-regex": "^2.0.0", "is-fullwidth-code-point": "^3.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "requires": { + "color-convert": "^2.0.1" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + } } }, "slugify": { @@ -16752,11 +15899,11 @@ "integrity": "sha512-rlBo3HU/1zAJUrkY6jNxDOC9eVYliG6nS4JA8u8KAshITd07tafMc/Br7xQwCSseXwJ2iCcHCE8SNWX3q8Z+kw==" }, "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", "requires": { - "has-flag": "^4.0.0" + "has-flag": "^3.0.0" } }, "supports-preserve-symlinks-flag": { @@ -16908,6 +16055,11 @@ "terser": "^5.7.2" }, "dependencies": { + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" + }, "jest-worker": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-27.5.1.tgz", @@ -17850,6 +17002,29 @@ "ansi-styles": "^4.0.0", "string-width": "^4.1.0", "strip-ansi": "^6.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "requires": { + "color-convert": "^2.0.1" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + } } }, "wrappy": { @@ -18048,14 +17223,6 @@ "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.1.tgz", "integrity": "sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g==" }, - "ansi-styles": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", - "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", - "requires": { - "color-convert": "^1.9.0" - } - }, "chalk": { "version": "2.4.2", "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", @@ -18066,24 +17233,6 @@ "supports-color": "^5.3.0" } }, - "color-convert": { - "version": "1.9.3", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", - "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", - "requires": { - "color-name": "1.1.3" - } - }, - "color-name": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", - "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==" - }, - "has-flag": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", - "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==" - }, "strip-ansi": { "version": "5.2.0", "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", @@ -18091,14 +17240,6 @@ "requires": { "ansi-regex": "^4.1.0" } - }, - "supports-color": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", - "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", - "requires": { - "has-flag": "^3.0.0" - } } } } diff --git a/starters/gatsby-starter-wordpress-blog/package.json b/starters/gatsby-starter-wordpress-blog/package.json index 133afb59b4b4f..49bece55a16e6 100644 --- a/starters/gatsby-starter-wordpress-blog/package.json +++ b/starters/gatsby-starter-wordpress-blog/package.json @@ -9,15 +9,15 @@ }, "dependencies": { "@wordpress/block-library": "^2.29.3", - "gatsby": "^4.17.2", + "gatsby": "^4.18.0", "gatsby-image": "^3.11.0", - "gatsby-plugin-image": "^2.17.0", - "gatsby-plugin-manifest": "^4.17.0", - "gatsby-plugin-offline": "^5.17.0", - "gatsby-plugin-react-helmet": "^5.17.0", - "gatsby-plugin-sharp": "^4.17.0", - "gatsby-source-wordpress": "^6.17.0", - "gatsby-transformer-sharp": "^4.17.0", + "gatsby-plugin-image": "^2.18.0", + "gatsby-plugin-manifest": "^4.18.0", + "gatsby-plugin-offline": "^5.18.0", + "gatsby-plugin-react-helmet": "^5.18.0", + "gatsby-plugin-sharp": "^4.18.0", + "gatsby-source-wordpress": "^6.18.0", + "gatsby-transformer-sharp": "^4.18.0", "html-react-parser": "^0.14.3", "lodash": "^4.17.21", "react": "^16.12.0", diff --git a/starters/hello-world/package-lock.json b/starters/hello-world/package-lock.json index 486a061670b02..a3b0d7c7a78e0 100644 --- a/starters/hello-world/package-lock.json +++ b/starters/hello-world/package-lock.json @@ -1302,9 +1302,9 @@ } }, "globals": { - "version": "13.15.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-13.15.0.tgz", - "integrity": "sha512-bpzcOlgDhMG070Av0Vy5Owklpv1I6+j96GhUI7Rh7IzDCKLzboflLrrfqMu8NquDbiR4EOQk7XzJwqVJxicxog==", + "version": "13.16.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.16.0.tgz", + "integrity": "sha512-A1lrQfpNF+McdPOnnFqY3kSN0AFTy485bTi1bkLk4mVPODIUEcSfhHgRqA+QdXPksrSTTztYXx37NFV+GpGk3Q==", "requires": { "type-fest": "^0.20.2" } @@ -1317,13 +1317,13 @@ } }, "@gatsbyjs/parcel-namer-relative-to-cwd": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/@gatsbyjs/parcel-namer-relative-to-cwd/-/parcel-namer-relative-to-cwd-1.2.0.tgz", - "integrity": "sha512-4iIdquFDl+b+U8Ng0dg6dCtxB/cnH27ERrlQQlxfdaWe8e9CLo8aWc6u3UeuHwNJixBFOUbOgEFaA5qCUPwLCQ==", + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/@gatsbyjs/parcel-namer-relative-to-cwd/-/parcel-namer-relative-to-cwd-1.3.0.tgz", + "integrity": "sha512-nd1lQn7ezg51ekqZm8iZjND8akB7bsGkGe7GdIPdTwbhale2dHLqd74qg+bBrEjv5f5aFZhpJeY9XpeU4emWZQ==", "requires": { "@babel/runtime": "^7.18.0", "@parcel/plugin": "2.6.0", - "gatsby-core-utils": "^3.17.0" + "gatsby-core-utils": "^3.18.0" } }, "@gatsbyjs/potrace": { @@ -1398,13 +1398,13 @@ } }, "@graphql-codegen/typescript": { - "version": "2.5.1", - "resolved": "https://registry.npmjs.org/@graphql-codegen/typescript/-/typescript-2.5.1.tgz", - "integrity": "sha512-D/9V2VfVIE4Mu5UiMGQtxyFU5xe1ZkAZi8g/IsqymW8rqlhTwsGhtk4JR55qPfOYxR8G94RJSJpzgNakRneytw==", + "version": "2.6.0", + "resolved": "https://registry.npmjs.org/@graphql-codegen/typescript/-/typescript-2.6.0.tgz", + "integrity": "sha512-f36ilg8J+wui0OhmQglIZ+2z4Ybc08Y7r7BlBDqfJ1F5X0zau0SlC7Hp2iCoCA0ucqZYtiUU/0n+/R8m1cTrQQ==", "requires": { "@graphql-codegen/plugin-helpers": "^2.4.0", "@graphql-codegen/schema-ast": "^2.4.1", - "@graphql-codegen/visitor-plugin-common": "2.9.1", + "@graphql-codegen/visitor-plugin-common": "2.10.0", "auto-bind": "~4.0.0", "tslib": "~2.4.0" }, @@ -1417,13 +1417,13 @@ } }, "@graphql-codegen/typescript-operations": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/@graphql-codegen/typescript-operations/-/typescript-operations-2.4.2.tgz", - "integrity": "sha512-0/Jk+FxJVOdznSJ+G3KKPbMr2gK67yQetUAUS0FzV9FptVDFkklK/BazKqJJE5dNrj9ubuI2BafXPzSTN4M2Ug==", + "version": "2.4.3", + "resolved": "https://registry.npmjs.org/@graphql-codegen/typescript-operations/-/typescript-operations-2.4.3.tgz", + "integrity": "sha512-MW9cU/zCAmfFAObwW23e+GrW3CoV9OX2gVm/V1565WGZXDQPUc5Y5IjdfGfunV4ApkgFDiHpF1Mz/AS55OErgw==", "requires": { "@graphql-codegen/plugin-helpers": "^2.4.0", - "@graphql-codegen/typescript": "^2.5.1", - "@graphql-codegen/visitor-plugin-common": "2.9.1", + "@graphql-codegen/typescript": "^2.6.0", + "@graphql-codegen/visitor-plugin-common": "2.10.0", "auto-bind": "~4.0.0", "tslib": "~2.4.0" }, @@ -1436,9 +1436,9 @@ } }, "@graphql-codegen/visitor-plugin-common": { - "version": "2.9.1", - "resolved": "https://registry.npmjs.org/@graphql-codegen/visitor-plugin-common/-/visitor-plugin-common-2.9.1.tgz", - "integrity": "sha512-j9eGOSGt+sJcwv0ijhZiQ2cF/0ponscekNVoF+vHdOT4RB0qgOQxykPBk6EbKxIHECnkdV8ARdPVTA21A93/QQ==", + "version": "2.10.0", + "resolved": "https://registry.npmjs.org/@graphql-codegen/visitor-plugin-common/-/visitor-plugin-common-2.10.0.tgz", + "integrity": "sha512-nWoxHKUdwOJCWV96Ks1x4EwYCWsZDJXB+2j6EQz5j27DzdxmQInZ86degaDCd3EgbwhMQEMtiZiPGFFDrgBkHA==", "requires": { "@graphql-codegen/plugin-helpers": "^2.4.0", "@graphql-tools/optimize": "^1.0.1", @@ -2661,9 +2661,9 @@ }, "dependencies": { "globals": { - "version": "13.15.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-13.15.0.tgz", - "integrity": "sha512-bpzcOlgDhMG070Av0Vy5Owklpv1I6+j96GhUI7Rh7IzDCKLzboflLrrfqMu8NquDbiR4EOQk7XzJwqVJxicxog==", + "version": "13.16.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.16.0.tgz", + "integrity": "sha512-A1lrQfpNF+McdPOnnFqY3kSN0AFTy485bTi1bkLk4mVPODIUEcSfhHgRqA+QdXPksrSTTztYXx37NFV+GpGk3Q==", "requires": { "type-fest": "^0.20.2" } @@ -2745,9 +2745,9 @@ } }, "@parcel/source-map": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/@parcel/source-map/-/source-map-2.0.5.tgz", - "integrity": "sha512-DRVlCFKLpqBSIbMxUoVlHgfiv12HTW/U7nnhzw52YgzDVXUX9OA41dXS1PU0pJ1si+D1k8msATUC+AoldN43mg==", + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/@parcel/source-map/-/source-map-2.1.0.tgz", + "integrity": "sha512-E7UOEIof2o89LrKk1agSLmwakjigmEdDp1ZaEdsLVEvq63R/bul4Ij5CT+0ZDcijGpl5tnTbQADY9EyYGtjYgQ==", "requires": { "detect-libc": "^1.0.3" } @@ -3031,9 +3031,9 @@ } }, "@types/eslint-scope": { - "version": "3.7.3", - "resolved": "https://registry.npmjs.org/@types/eslint-scope/-/eslint-scope-3.7.3.tgz", - "integrity": "sha512-PB3ldyrcnAicT35TWPs5IcwKD8S333HMaa2VVv4+wdvebJkjWuW/xESoB8IwRcog8HYVYamb1g/R31Qv5Bx03g==", + "version": "3.7.4", + "resolved": "https://registry.npmjs.org/@types/eslint-scope/-/eslint-scope-3.7.4.tgz", + "integrity": "sha512-9K4zoImiZc3HlIp6AVUDE4CWYx22a+lhSZMYNpbjW04+YF0KWj4pJXnEMjdnFTiQibFFmElcsasJXDbdI/EPhA==", "requires": { "@types/eslint": "*", "@types/estree": "*" @@ -3113,9 +3113,9 @@ } }, "@types/node": { - "version": "18.0.0", - "resolved": "https://registry.npmjs.org/@types/node/-/node-18.0.0.tgz", - "integrity": "sha512-cHlGmko4gWLVI27cGJntjs/Sj8th9aYwplmZFwmmgYQQvL5NUsgVJG7OddLvNfLqYS31KFN0s3qlaD9qCaxACA==" + "version": "18.0.1", + "resolved": "https://registry.npmjs.org/@types/node/-/node-18.0.1.tgz", + "integrity": "sha512-CmR8+Tsy95hhwtZBKJBs0/FFq4XX7sDZHlGGf+0q+BRZfMbOTkzkj0AFAuTyXbObDIoanaBBW0+KEW+m3N16Wg==" }, "@types/node-fetch": { "version": "2.6.2", @@ -3841,12 +3841,12 @@ } }, "babel-plugin-remove-graphql-queries": { - "version": "4.17.0", - "resolved": "https://registry.npmjs.org/babel-plugin-remove-graphql-queries/-/babel-plugin-remove-graphql-queries-4.17.0.tgz", - "integrity": "sha512-UovjamHhy5y46WyBO/hfqxrLbMq04o+hlTeqCRzeLol4eWtH+8CufdLAZWYtM1l1BIChwvXCxDY2ugeXlbj7+w==", + "version": "4.18.0", + "resolved": "https://registry.npmjs.org/babel-plugin-remove-graphql-queries/-/babel-plugin-remove-graphql-queries-4.18.0.tgz", + "integrity": "sha512-6oOm/cTZdk+7yPh4R4ISLKNur3rK5w2zAUCXTOGKYcRYbvKCS22ODafQBrNcu/UdfpXwSz3XZOG5ru72Z5usUw==", "requires": { "@babel/runtime": "^7.15.4", - "gatsby-core-utils": "^3.17.0" + "gatsby-core-utils": "^3.18.0" } }, "babel-plugin-syntax-trailing-function-commas": { @@ -3894,9 +3894,9 @@ } }, "babel-preset-gatsby": { - "version": "2.17.0", - "resolved": "https://registry.npmjs.org/babel-preset-gatsby/-/babel-preset-gatsby-2.17.0.tgz", - "integrity": "sha512-hLeovvehdKkfFAsfTKCATKQasLyQa49TrJtct5VthERrb2dhkV71NIfmbiEa9Ae5x+qGYhYvufqMROGptewXbQ==", + "version": "2.18.0", + "resolved": "https://registry.npmjs.org/babel-preset-gatsby/-/babel-preset-gatsby-2.18.0.tgz", + "integrity": "sha512-b6BJEl0MlA/nh+IkTJRgvPEgdN09Pu34Szo5dE4QYvQa66++EqfQUK5huqr+FgZJedPPYYbRY2SgKlRXev5QIQ==", "requires": { "@babel/plugin-proposal-class-properties": "^7.14.0", "@babel/plugin-proposal-nullish-coalescing-operator": "^7.14.5", @@ -3911,8 +3911,8 @@ "babel-plugin-dynamic-import-node": "^2.3.3", "babel-plugin-macros": "^3.1.0", "babel-plugin-transform-react-remove-prop-types": "^0.4.24", - "gatsby-core-utils": "^3.17.0", - "gatsby-legacy-polyfills": "^2.17.0" + "gatsby-core-utils": "^3.18.0", + "gatsby-legacy-polyfills": "^2.18.0" } }, "backo2": { @@ -4250,9 +4250,9 @@ } }, "caniuse-lite": { - "version": "1.0.30001359", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001359.tgz", - "integrity": "sha512-Xln/BAsPzEuiVLgJ2/45IaqD9jShtk3Y33anKb4+yLwQzws3+v6odKfpgES/cDEaZMLzSChpIGdbOYtH9MyuHw==" + "version": "1.0.30001363", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001363.tgz", + "integrity": "sha512-HpQhpzTGGPVMnCjIomjt+jvyUu8vNFo3TaDiZ/RcoTrlOq/5+tC8zHdsbgFB6MxmaY+jCpsH09aD80Bb4Ow3Sg==" }, "capital-case": { "version": "1.0.4", @@ -4795,9 +4795,9 @@ } }, "create-gatsby": { - "version": "2.17.0", - "resolved": "https://registry.npmjs.org/create-gatsby/-/create-gatsby-2.17.0.tgz", - "integrity": "sha512-RrMAHZL7J5Ew/laz83g+UNQ2RnXszGuub3sG7DQkG0tK5mS9TqTW+FIYyzHCLhdJkr81qC/HRDFsJv0fuYISwg==", + "version": "2.18.0", + "resolved": "https://registry.npmjs.org/create-gatsby/-/create-gatsby-2.18.0.tgz", + "integrity": "sha512-74yn3+wlFKwg3DUVdFdBnfqc6gUVpYjqr/1XtQ0Rb57i0ygvER8Xgp4rY5Mm+8rl7JwBma1NONeM20cdMQjT2w==", "requires": { "@babel/runtime": "^7.15.4" } @@ -5359,9 +5359,9 @@ "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==" }, "electron-to-chromium": { - "version": "1.4.172", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.172.tgz", - "integrity": "sha512-yDoFfTJnqBAB6hSiPvzmsBJSrjOXJtHSJoqJdI/zSIh7DYupYnIOHt/bbPw/WE31BJjNTybDdNAs21gCMnTh0Q==" + "version": "1.4.179", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.179.tgz", + "integrity": "sha512-1XeTb/U/8Xgh2YgPOqhakLYsvCcU4U7jUjTMbEnhIJoIWd/Qt3yC8y0cbG+fHzn4zUNF99Ey1xiPf20bwgLO3Q==" }, "emoji-regex": { "version": "8.0.0", @@ -5705,9 +5705,9 @@ } }, "globals": { - "version": "13.15.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-13.15.0.tgz", - "integrity": "sha512-bpzcOlgDhMG070Av0Vy5Owklpv1I6+j96GhUI7Rh7IzDCKLzboflLrrfqMu8NquDbiR4EOQk7XzJwqVJxicxog==", + "version": "13.16.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.16.0.tgz", + "integrity": "sha512-A1lrQfpNF+McdPOnnFqY3kSN0AFTy485bTi1bkLk4mVPODIUEcSfhHgRqA+QdXPksrSTTztYXx37NFV+GpGk3Q==", "requires": { "type-fest": "^0.20.2" } @@ -6707,9 +6707,9 @@ "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==" }, "gatsby": { - "version": "4.17.2", - "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-4.17.2.tgz", - "integrity": "sha512-uMNH/X/Fd0kGjelgAPTukgQhxu/aMhRj5YJ07SM4D2yBuO+c4+y1dZRz5q9EUryCeVSx1cSt0J6JMkfzOXmbyA==", + "version": "4.18.0", + "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-4.18.0.tgz", + "integrity": "sha512-EyiwYUsbSKUKsdjm8nnLw5AGJwOJ9NAWcrFg1V/QU4CUnk/M8EiP0TxiGUmK1/K7g82XGxUjuAPYJKJk85yxHA==", "requires": { "@babel/code-frame": "^7.14.0", "@babel/core": "^7.15.5", @@ -6745,15 +6745,15 @@ "babel-plugin-add-module-exports": "^1.0.4", "babel-plugin-dynamic-import-node": "^2.3.3", "babel-plugin-lodash": "^3.3.4", - "babel-plugin-remove-graphql-queries": "^4.17.0", - "babel-preset-gatsby": "^2.17.0", + "babel-plugin-remove-graphql-queries": "^4.18.0", + "babel-preset-gatsby": "^2.18.0", "better-opn": "^2.1.1", "bluebird": "^3.7.2", "body-parser": "^1.19.0", "browserslist": "^4.17.5", "cache-manager": "^2.11.1", "chalk": "^4.1.2", - "chokidar": "^3.5.2", + "chokidar": "^3.5.3", "common-tags": "^1.8.0", "compression": "^1.7.4", "cookie": "^0.4.1", @@ -6775,7 +6775,7 @@ "eslint-plugin-graphql": "^4.0.0", "eslint-plugin-import": "^2.26.0", "eslint-plugin-jsx-a11y": "^6.5.1", - "eslint-plugin-react": "^7.29.4", + "eslint-plugin-react": "^7.30.0", "eslint-plugin-react-hooks": "^4.5.0", "eslint-webpack-plugin": "^2.6.0", "event-source-polyfill": "1.0.25", @@ -6789,21 +6789,21 @@ "find-cache-dir": "^3.3.2", "fs-exists-cached": "1.0.0", "fs-extra": "^10.1.0", - "gatsby-cli": "^4.17.1", - "gatsby-core-utils": "^3.17.0", - "gatsby-graphiql-explorer": "^2.17.0", - "gatsby-legacy-polyfills": "^2.17.0", - "gatsby-link": "^4.17.0", - "gatsby-page-utils": "^2.17.0", - "gatsby-parcel-config": "0.8.0", - "gatsby-plugin-page-creator": "^4.17.0", - "gatsby-plugin-typescript": "^4.17.0", - "gatsby-plugin-utils": "^3.11.0", - "gatsby-react-router-scroll": "^5.17.0", - "gatsby-script": "^1.2.0", - "gatsby-sharp": "^0.11.0", - "gatsby-telemetry": "^3.17.0", - "gatsby-worker": "^1.17.0", + "gatsby-cli": "^4.18.0", + "gatsby-core-utils": "^3.18.0", + "gatsby-graphiql-explorer": "^2.18.0", + "gatsby-legacy-polyfills": "^2.18.0", + "gatsby-link": "^4.18.0", + "gatsby-page-utils": "^2.18.0", + "gatsby-parcel-config": "0.9.0", + "gatsby-plugin-page-creator": "^4.18.0", + "gatsby-plugin-typescript": "^4.18.0", + "gatsby-plugin-utils": "^3.12.0", + "gatsby-react-router-scroll": "^5.18.0", + "gatsby-script": "^1.3.0", + "gatsby-sharp": "^0.12.0", + "gatsby-telemetry": "^3.18.0", + "gatsby-worker": "^1.18.0", "glob": "^7.2.3", "globby": "^11.1.0", "got": "^11.8.2", @@ -6855,7 +6855,6 @@ "slugify": "^1.6.1", "socket.io": "3.1.2", "socket.io-client": "3.1.3", - "source-map-support": "^0.5.20", "st": "^2.0.0", "stack-trace": "^0.0.10", "string-similarity": "^1.2.2", @@ -6877,9 +6876,9 @@ }, "dependencies": { "gatsby-cli": { - "version": "4.17.1", - "resolved": "https://registry.npmjs.org/gatsby-cli/-/gatsby-cli-4.17.1.tgz", - "integrity": "sha512-yLNRGKo8vyeiqKNTH5MkE0Q3AF6Un1v3MVlXzvoyRNs1DIHwkkZ22jGOB64/KIIR/o2cjRsrKJNCVjGV7qNnzw==", + "version": "4.18.0", + "resolved": "https://registry.npmjs.org/gatsby-cli/-/gatsby-cli-4.18.0.tgz", + "integrity": "sha512-H4V1XvXP3EMwUBDbAlpu3jbjlCetUmHY6VB1YsH2kkIdlMrOgjUgNDFpqjgbk7k7z61du2tCgl1lyW+5he+SnA==", "requires": { "@babel/code-frame": "^7.14.0", "@babel/core": "^7.15.5", @@ -6898,13 +6897,13 @@ "common-tags": "^1.8.2", "configstore": "^5.0.1", "convert-hrtime": "^3.0.0", - "create-gatsby": "^2.17.0", + "create-gatsby": "^2.18.0", "envinfo": "^7.8.1", "execa": "^5.1.1", "fs-exists-cached": "^1.0.0", "fs-extra": "^10.1.0", - "gatsby-core-utils": "^3.17.0", - "gatsby-telemetry": "^3.17.0", + "gatsby-core-utils": "^3.18.0", + "gatsby-telemetry": "^3.18.0", "hosted-git-info": "^3.0.8", "is-valid-path": "^0.1.1", "joi": "^17.4.2", @@ -6930,9 +6929,9 @@ } }, "gatsby-core-utils": { - "version": "3.17.0", - "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.17.0.tgz", - "integrity": "sha512-1e0YaqTAEpSSBkpWkY703lu+Bl76ASXUvUcpnNO3CavCYZsRQxAXtMXIKIEvhm1z6zWJmY9HILo6/DjP+PHeyw==", + "version": "3.18.0", + "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.18.0.tgz", + "integrity": "sha512-mCoNgH4MilosLhEroklgVffwie9lyxgmvNwe/oIyzXr6NcZ2uxSp8G1KrgxdG2srt2hCNlZLlzS25ltLTeHTjA==", "requires": { "@babel/runtime": "^7.15.4", "ci-info": "2.0.0", @@ -6940,7 +6939,7 @@ "fastq": "^1.13.0", "file-type": "^16.5.3", "fs-extra": "^10.1.0", - "got": "^11.8.3", + "got": "^11.8.5", "import-from": "^4.0.0", "lmdb": "2.5.2", "lock": "^1.1.0", @@ -6952,17 +6951,17 @@ } }, "gatsby-graphiql-explorer": { - "version": "2.17.0", - "resolved": "https://registry.npmjs.org/gatsby-graphiql-explorer/-/gatsby-graphiql-explorer-2.17.0.tgz", - "integrity": "sha512-IWAcxMlOofpg8wRzLGjuey3HunWu3bLilKurX8csD0d+YsuiB4aqZc7dWi2Zc15ZHZ5Hh8zMpOv0MVW9qhjnCg==", + "version": "2.18.0", + "resolved": "https://registry.npmjs.org/gatsby-graphiql-explorer/-/gatsby-graphiql-explorer-2.18.0.tgz", + "integrity": "sha512-mmY+kHc+axpDO9lfjbCEf/0oEIHTcZmpe2PtQAzkhnQHyti3xd9IIafq/1W3QKIJo5c7f40+tR3sFTERqaBeIA==", "requires": { "@babel/runtime": "^7.15.4" } }, "gatsby-legacy-polyfills": { - "version": "2.17.0", - "resolved": "https://registry.npmjs.org/gatsby-legacy-polyfills/-/gatsby-legacy-polyfills-2.17.0.tgz", - "integrity": "sha512-tpONSDutxEZY3vOdUaZ1yE9d0QWZ5/p47juvnhTv0qjGkBwow3gfCpgJwDzWyzKl0w0geesZwlLnaCA3WSEv7Q==", + "version": "2.18.0", + "resolved": "https://registry.npmjs.org/gatsby-legacy-polyfills/-/gatsby-legacy-polyfills-2.18.0.tgz", + "integrity": "sha512-wPnsRUnnab10wyt5VPkIhpJC1k8bVrpn0Sfat1L3JskYwkVIEvquqTmHWkpGMB8SLbXQiJEGCs2TcIrx9riL+w==", "requires": { "@babel/runtime": "^7.15.4", "core-js-compat": "3.9.0" @@ -6985,37 +6984,37 @@ } }, "gatsby-link": { - "version": "4.17.0", - "resolved": "https://registry.npmjs.org/gatsby-link/-/gatsby-link-4.17.0.tgz", - "integrity": "sha512-hDh+9OFMHNQ/5YdDdTcpSMB8xAYSP4OMkRuwmgPKH1jtOuov3pzwFAo19RR34CsOqzKd3LSQbCjIovOksjlAeA==", + "version": "4.18.0", + "resolved": "https://registry.npmjs.org/gatsby-link/-/gatsby-link-4.18.0.tgz", + "integrity": "sha512-nE+Z/iE55Id84YqsQOT1bfPJ/AsupY/4s8i6NllQ8no/PRgDGMpkTG6ANqyt2CHs/bywxch2rv8Ho7Gwsuuueg==", "requires": { "@babel/runtime": "^7.15.4", "@types/reach__router": "^1.3.10", - "gatsby-page-utils": "^2.17.0", + "gatsby-page-utils": "^2.18.0", "prop-types": "^15.8.1" } }, "gatsby-page-utils": { - "version": "2.17.0", - "resolved": "https://registry.npmjs.org/gatsby-page-utils/-/gatsby-page-utils-2.17.0.tgz", - "integrity": "sha512-aeDrvYm6uTXayr/Yw0dNQUy+P9a5TshuG9UnRddCB7jQAR1aufjkNu8WH93l151p4jqUoYGemxgZIhrNv1+i/g==", + "version": "2.18.0", + "resolved": "https://registry.npmjs.org/gatsby-page-utils/-/gatsby-page-utils-2.18.0.tgz", + "integrity": "sha512-qTwlqscKxkBlMd+Mn8xj6sh7L0LbfLGYOPCYozJnukXv8d/6Jyk1nfaP6I82hwj/iyhaBQtk7g8g4XyBJJaESw==", "requires": { "@babel/runtime": "^7.15.4", "bluebird": "^3.7.2", - "chokidar": "^3.5.2", + "chokidar": "^3.5.3", "fs-exists-cached": "^1.0.0", - "gatsby-core-utils": "^3.17.0", + "gatsby-core-utils": "^3.18.0", "glob": "^7.2.3", "lodash": "^4.17.21", "micromatch": "^4.0.5" } }, "gatsby-parcel-config": { - "version": "0.8.0", - "resolved": "https://registry.npmjs.org/gatsby-parcel-config/-/gatsby-parcel-config-0.8.0.tgz", - "integrity": "sha512-HzLU8uoJLuakH08T27K8GKx7rcLEVkKVClffAuVKrlcVYhNH+x1LvIwe+uMTIIdfu+YtUpUP1PpTdua6YfrVTQ==", + "version": "0.9.0", + "resolved": "https://registry.npmjs.org/gatsby-parcel-config/-/gatsby-parcel-config-0.9.0.tgz", + "integrity": "sha512-ccGw/L8ylhDgE/4tr52B6tb2jreApOMoYPW75Z8aM2ULRz505fL5mrnkG1fdQDBZSCHx/0j0x2TZyCLrt0Bvlw==", "requires": { - "@gatsbyjs/parcel-namer-relative-to-cwd": "^1.2.0", + "@gatsbyjs/parcel-namer-relative-to-cwd": "1.3.0", "@parcel/bundler-default": "2.6.0", "@parcel/compressor-raw": "2.6.0", "@parcel/namer-default": "2.6.0", @@ -7035,27 +7034,27 @@ } }, "gatsby-plugin-page-creator": { - "version": "4.17.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-page-creator/-/gatsby-plugin-page-creator-4.17.0.tgz", - "integrity": "sha512-Nv1lryCAfo5cWqkVnnqiMC6bmXXXOhdl2efLZKK88QwqT4tZO51gGrgsZGL4mtXtUUSkJXGE8pmjelUOcR+23g==", + "version": "4.18.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-page-creator/-/gatsby-plugin-page-creator-4.18.0.tgz", + "integrity": "sha512-6bY4vJndDw0nBcOuQdX41Wvbctw0y9+a7IavCFJKFeNs+Zo0XH2FX0IAww0slDnSJU6AukJ9qfjHqKJkADAZpQ==", "requires": { "@babel/runtime": "^7.15.4", "@babel/traverse": "^7.15.4", "@sindresorhus/slugify": "^1.1.2", - "chokidar": "^3.5.2", + "chokidar": "^3.5.3", "fs-exists-cached": "^1.0.0", - "gatsby-core-utils": "^3.17.0", - "gatsby-page-utils": "^2.17.0", - "gatsby-plugin-utils": "^3.11.0", - "gatsby-telemetry": "^3.17.0", + "gatsby-core-utils": "^3.18.0", + "gatsby-page-utils": "^2.18.0", + "gatsby-plugin-utils": "^3.12.0", + "gatsby-telemetry": "^3.18.0", "globby": "^11.1.0", "lodash": "^4.17.21" } }, "gatsby-plugin-typescript": { - "version": "4.17.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-typescript/-/gatsby-plugin-typescript-4.17.0.tgz", - "integrity": "sha512-aSO/h4z+jdWBZtEnH17NoZaFchO8LkEcIdNX2saYIjJfa2tMbOR+wnOuQJVAdj61n8ntc1pQkNJxiEK31IaZjw==", + "version": "4.18.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-typescript/-/gatsby-plugin-typescript-4.18.0.tgz", + "integrity": "sha512-SuNBrp57SnovOyhCz0zPkz7begV4UR2XdXUrFsh4N0jWOI5yFNVgENpKlbI/O7JnvgyV5KC/pkobNh3we+0mcQ==", "requires": { "@babel/core": "^7.15.5", "@babel/plugin-proposal-nullish-coalescing-operator": "^7.14.5", @@ -7063,19 +7062,19 @@ "@babel/plugin-proposal-optional-chaining": "^7.14.5", "@babel/preset-typescript": "^7.15.0", "@babel/runtime": "^7.15.4", - "babel-plugin-remove-graphql-queries": "^4.17.0" + "babel-plugin-remove-graphql-queries": "^4.18.0" } }, "gatsby-plugin-utils": { - "version": "3.11.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-utils/-/gatsby-plugin-utils-3.11.0.tgz", - "integrity": "sha512-v2D6O2aME9p7tqlGykq5mgtj7Jqp/CWatgo0zJ7bFWSYPPUpQ7jRVAph1PIgFTAV/CaUrrvt9sxdRaZrglJyug==", + "version": "3.12.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-utils/-/gatsby-plugin-utils-3.12.0.tgz", + "integrity": "sha512-vdz3qwaCOkvgzAxMkZlgpmpWf555jISwek5lyWYhGyJJvXYV8KQ2cZ4CoOfFKAYVeZVSucrHcdWyY3fLLpQvAA==", "requires": { "@babel/runtime": "^7.15.4", "@gatsbyjs/potrace": "^2.2.0", "fs-extra": "^10.1.0", - "gatsby-core-utils": "^3.17.0", - "gatsby-sharp": "^0.11.0", + "gatsby-core-utils": "^3.18.0", + "gatsby-sharp": "^0.12.0", "graphql-compose": "^9.0.7", "import-from": "^4.0.0", "joi": "^17.4.2", @@ -7092,42 +7091,42 @@ } }, "gatsby-react-router-scroll": { - "version": "5.17.0", - "resolved": "https://registry.npmjs.org/gatsby-react-router-scroll/-/gatsby-react-router-scroll-5.17.0.tgz", - "integrity": "sha512-RwFeZlKL0T8dxpEdlmuQAH+h4ugrQQpl4U2m0Wdo/F9/8/VEiAeX64oa2r2BqiiTf4MzAIIT+5/ONt83FcmZWg==", + "version": "5.18.0", + "resolved": "https://registry.npmjs.org/gatsby-react-router-scroll/-/gatsby-react-router-scroll-5.18.0.tgz", + "integrity": "sha512-/A1k468s6g713c8me5DuGiia8rPWLuwjITQ/pKqgJwioJVB6MnD/iBCbHUTzLHlNwZypAVdGHCN8fCIcPcMb6Q==", "requires": { "@babel/runtime": "^7.15.4", "prop-types": "^15.8.1" } }, "gatsby-script": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/gatsby-script/-/gatsby-script-1.2.0.tgz", - "integrity": "sha512-Fkf6yJxwuQCS6xdFxF0gpiCUiS3PYnRv5I2mCAJV0Cu7k4PYgVpQJt79bcDHvnx755VpXOmZIfMXegACg1XS0w==" + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/gatsby-script/-/gatsby-script-1.3.0.tgz", + "integrity": "sha512-eCz6mcMFpB7kvpmyM7AtMTxNxzdrzPgt8GiuDKWFOlDgk1il6PUjO99QsL/cCeokmaiH/6egVnm9b33/x+sy9A==" }, "gatsby-sharp": { - "version": "0.11.0", - "resolved": "https://registry.npmjs.org/gatsby-sharp/-/gatsby-sharp-0.11.0.tgz", - "integrity": "sha512-RIbU8qi/Qs7G/KJiY0zyGS9Yic5n4RpDUf/1W3gvRl78Uo3LSuIeGEpaai6mYEnreuGb5fQIcqdkYs/UV3e8WA==", + "version": "0.12.0", + "resolved": "https://registry.npmjs.org/gatsby-sharp/-/gatsby-sharp-0.12.0.tgz", + "integrity": "sha512-dZa/AgxmPzD0vvROEZSuT3IdzAFTxnq1FfLTf9n3mywonvsKYc84zj6nf8TEzBrVrBFAaLvZek4NpVAKWGr4/w==", "requires": { "@types/sharp": "^0.30.0", "sharp": "^0.30.3" } }, "gatsby-telemetry": { - "version": "3.17.0", - "resolved": "https://registry.npmjs.org/gatsby-telemetry/-/gatsby-telemetry-3.17.0.tgz", - "integrity": "sha512-1N4uKj2Yj7AykLmwjsdOmNirf3UmP8CBXjj/LmWf5cLDVbdPqkirAlyD6uTeEliG5UFHPTlBsRi26v558mFYJQ==", + "version": "3.18.0", + "resolved": "https://registry.npmjs.org/gatsby-telemetry/-/gatsby-telemetry-3.18.0.tgz", + "integrity": "sha512-i1JvNqGOyLDPGEn1QN29YGpe2ripg2LZBAOhXmk6lAhRL5fTVo6WkEA2yW7XESnXIOJBFymgVbUlLjXoqeZ5Xg==", "requires": { "@babel/code-frame": "^7.14.0", "@babel/runtime": "^7.15.4", - "@turist/fetch": "^7.1.7", + "@turist/fetch": "^7.2.0", "@turist/time": "^0.0.2", "async-retry-ng": "^2.0.1", "boxen": "^4.2.0", "configstore": "^5.0.1", "fs-extra": "^10.1.0", - "gatsby-core-utils": "^3.17.0", + "gatsby-core-utils": "^3.18.0", "git-up": "^4.0.5", "is-docker": "^2.2.1", "lodash": "^4.17.21", @@ -7200,9 +7199,9 @@ } }, "gatsby-worker": { - "version": "1.17.0", - "resolved": "https://registry.npmjs.org/gatsby-worker/-/gatsby-worker-1.17.0.tgz", - "integrity": "sha512-hA7awNHmcNWp3TgQkjF0Z3I9YGWpdsf8jUdJOlAjI+aBxQ2vdHTVNwbMdXwtlf9umQRwORnmEzADmQdm0Cx5AA==", + "version": "1.18.0", + "resolved": "https://registry.npmjs.org/gatsby-worker/-/gatsby-worker-1.18.0.tgz", + "integrity": "sha512-gNzqDrYFMXlfXCzdClORyDQWQZKTOF6nRUrhZT8PUxzQViO+DvnEKE3EAQvZizYKW1Hgw7cbiTtLG3qshkNepw==", "requires": { "@babel/core": "^7.15.5", "@babel/runtime": "^7.15.4" @@ -8360,9 +8359,9 @@ "integrity": "sha512-pJiBpiXMbt7dkzXe8Ghj/u4FfXOOa98fPW+bihOJ4SjnoijweJrNThJfd3ifXpXhREjpoF2mZVH1GfS9LV3kHQ==" }, "language-subtag-registry": { - "version": "0.3.21", - "resolved": "https://registry.npmjs.org/language-subtag-registry/-/language-subtag-registry-0.3.21.tgz", - "integrity": "sha512-L0IqwlIXjilBVVYKFT37X9Ih11Um5NEl9cbJIuU/SwP/zEEAbBPOnEeeuxVMf45ydWQRDQN3Nqc96OgbH1K+Pg==" + "version": "0.3.22", + "resolved": "https://registry.npmjs.org/language-subtag-registry/-/language-subtag-registry-0.3.22.tgz", + "integrity": "sha512-tN0MCzyWnoz/4nHS6uxdlFWoUZT7ABptwKPQ52Ea7URk6vll88bWBVhodtnlfEuCcKWNGoc+uGbw1cwa9IKh/w==" }, "language-tags": { "version": "1.0.5", @@ -9014,9 +9013,9 @@ } }, "node-gyp-build": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/node-gyp-build/-/node-gyp-build-4.4.0.tgz", - "integrity": "sha512-amJnQCcgtRVw9SvoebO3BKGESClrfXGCUTX9hSn1OuGQTQBOZmVd0Z0OlecpuRksKvbsUqALE8jls/ErClAPuQ==" + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/node-gyp-build/-/node-gyp-build-4.5.0.tgz", + "integrity": "sha512-2iGbaQBV+ITgCz76ZEjmhUKAKVf7xfY1sRl4UiKQspfZMH2h06SyhNsnSVy50cwkFQDGLyif6m/6uFXHkOZ6rg==" }, "node-gyp-build-optional-packages": { "version": "4.3.5", diff --git a/starters/hello-world/package.json b/starters/hello-world/package.json index 34b8bb5a1ab1e..378314016860d 100644 --- a/starters/hello-world/package.json +++ b/starters/hello-world/package.json @@ -14,7 +14,7 @@ "test": "echo \"Write tests! -> https://gatsby.dev/unit-testing\" && exit 1" }, "dependencies": { - "gatsby": "^4.17.2", + "gatsby": "^4.18.0", "react": "^18.1.0", "react-dom": "^18.1.0" }, From 297a1b7771ec902f993c1048961b0fbe628a4d64 Mon Sep 17 00:00:00 2001 From: LekoArts Date: Wed, 6 Jul 2022 07:29:05 +0200 Subject: [PATCH 07/90] chore: Update lock file --- yarn.lock | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/yarn.lock b/yarn.lock index 28614c8ac0a2b..d673984abd897 100644 --- a/yarn.lock +++ b/yarn.lock @@ -9444,10 +9444,10 @@ dnserrors@2.1.2: lodash.defaults "^4.2.0" lodash.omit "^4.5.0" -do-sync@^3.0.11: - version "3.0.11" - resolved "https://registry.yarnpkg.com/do-sync/-/do-sync-3.0.11.tgz#2500fa69a71fba466556fe4ce564569ffa5ab5b1" - integrity sha512-LxkTVZflWg0frWsgg3dEiJb0FViDUydK/lNXdqgHdz5Oz1vi77Uw7GRdEPp7CL2kjl96ijCMJWHJv35wQ9FglA== +do-sync@^3.0.18: + version "3.0.19" + resolved "https://registry.yarnpkg.com/do-sync/-/do-sync-3.0.19.tgz#17acc210db9c4f346e63ea7a823a167c638e9963" + integrity sha512-qyrGtw7NY05HAqVIkaZwkEp9vachHrZd7TPeEjwGiABfu4RT/voNrS8fMqYuXCnIN45szOFj8guvKsw9N0S26g== dependencies: cross-spawn "^7.0.2" From 4e5f42d09e879fb5b9f2268eb6e679a0cb0225e3 Mon Sep 17 00:00:00 2001 From: Lennart Date: Wed, 6 Jul 2022 08:13:32 +0200 Subject: [PATCH 08/90] chore(renovate): Move lmdb into its own group (#36070) --- renovate.json5 | 5412 ++++++++++++++++---------- scripts/renovate-config-generator.js | 8 + 2 files changed, 3315 insertions(+), 2105 deletions(-) diff --git a/renovate.json5 b/renovate.json5 index 587104e29ee9f..51abaddf6f619 100644 --- a/renovate.json5 +++ b/renovate.json5 @@ -467,6 +467,26 @@ ], "dependencyDashboardApproval": false }, + { + "groupName": "lmdb", + "matchPaths": [ + "+(package.json)", + "packages/**/package.json" + ], + "matchPackagePatterns": [ + "lmdb" + ], + "matchUpdateTypes": [ + "major", + "minor", + "patch" + ], + "matchDepTypes": [ + "dependencies", + "devDependencies" + ], + "dependencyDashboardApproval": false + }, { "matchPaths": [ "packages/babel-plugin-remove-graphql-queries/package.json" @@ -507,7 +527,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for babel-plugin-remove-graphql-queries{{/unless}}" }, @@ -551,7 +572,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for babel-plugin-remove-graphql-queries{{/unless}}" }, @@ -594,7 +616,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for babel-plugin-remove-graphql-queries{{/unless}}" }, @@ -636,7 +659,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for babel-plugin-remove-graphql-queries{{/unless}}", "dependencyDashboardApproval": true @@ -680,7 +704,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for babel-plugin-remove-graphql-queries{{/unless}}" }, @@ -724,7 +749,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for babel-plugin-remove-graphql-queries{{/unless}}", "dependencyDashboardApproval": true @@ -769,7 +795,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for babel-preset-gatsby-package{{/unless}}" }, @@ -813,7 +840,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for babel-preset-gatsby-package{{/unless}}" }, @@ -856,7 +884,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for babel-preset-gatsby-package{{/unless}}" }, @@ -898,7 +927,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for babel-preset-gatsby-package{{/unless}}", "dependencyDashboardApproval": true @@ -942,7 +972,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for babel-preset-gatsby-package{{/unless}}" }, @@ -986,7 +1017,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for babel-preset-gatsby-package{{/unless}}", "dependencyDashboardApproval": true @@ -1031,7 +1063,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for babel-preset-gatsby{{/unless}}" }, @@ -1075,7 +1108,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for babel-preset-gatsby{{/unless}}" }, @@ -1118,7 +1152,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for babel-preset-gatsby{{/unless}}" }, @@ -1160,7 +1195,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for babel-preset-gatsby{{/unless}}", "dependencyDashboardApproval": true @@ -1206,7 +1242,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for babel-preset-gatsby{{/unless}}" }, @@ -1252,7 +1289,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for babel-preset-gatsby{{/unless}}", "dependencyDashboardApproval": true @@ -1297,7 +1335,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for create-gatsby{{/unless}}" }, @@ -1341,7 +1380,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for create-gatsby{{/unless}}" }, @@ -1384,7 +1424,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for create-gatsby{{/unless}}" }, @@ -1426,7 +1467,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for create-gatsby{{/unless}}", "dependencyDashboardApproval": true @@ -1470,7 +1512,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for create-gatsby{{/unless}}" }, @@ -1514,7 +1557,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for create-gatsby{{/unless}}", "dependencyDashboardApproval": true @@ -1559,7 +1603,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-cli{{/unless}}" }, @@ -1603,7 +1648,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-cli{{/unless}}" }, @@ -1646,7 +1692,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-cli{{/unless}}" }, @@ -1688,7 +1735,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-cli{{/unless}}", "dependencyDashboardApproval": true @@ -1703,6 +1751,7 @@ "groupName": "minor and patch dependencies for gatsby-cli", "groupSlug": "gatsby-cli-prod-minor", "matchPackageNames": [ + "@jridgewell/trace-mapping", "is-valid-path", "opentracing", "stack-trace" @@ -1736,7 +1785,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-cli{{/unless}}" }, @@ -1750,6 +1800,7 @@ "groupName": "major dependencies for gatsby-cli", "groupSlug": "gatsby-cli-prod-major", "matchPackageNames": [ + "@jridgewell/trace-mapping", "is-valid-path", "opentracing", "stack-trace" @@ -1784,7 +1835,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-cli{{/unless}}", "dependencyDashboardApproval": true @@ -1829,7 +1881,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-codemods{{/unless}}" }, @@ -1873,7 +1926,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-codemods{{/unless}}" }, @@ -1916,7 +1970,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-codemods{{/unless}}" }, @@ -1958,7 +2013,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-codemods{{/unless}}", "dependencyDashboardApproval": true @@ -2005,7 +2061,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-codemods{{/unless}}" }, @@ -2052,7 +2109,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-codemods{{/unless}}", "dependencyDashboardApproval": true @@ -2097,7 +2155,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-core-utils{{/unless}}" }, @@ -2141,7 +2200,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-core-utils{{/unless}}" }, @@ -2184,7 +2244,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-core-utils{{/unless}}" }, @@ -2226,7 +2287,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-core-utils{{/unless}}", "dependencyDashboardApproval": true @@ -2272,7 +2334,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-core-utils{{/unless}}" }, @@ -2318,7 +2381,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-core-utils{{/unless}}", "dependencyDashboardApproval": true @@ -2363,7 +2427,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-cypress{{/unless}}" }, @@ -2407,7 +2472,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-cypress{{/unless}}" }, @@ -2450,7 +2516,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-cypress{{/unless}}" }, @@ -2492,7 +2559,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-cypress{{/unless}}", "dependencyDashboardApproval": true @@ -2536,7 +2604,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-cypress{{/unless}}" }, @@ -2580,7 +2649,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-cypress{{/unless}}", "dependencyDashboardApproval": true @@ -2625,7 +2695,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-design-tokens{{/unless}}" }, @@ -2669,7 +2740,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-design-tokens{{/unless}}" }, @@ -2712,7 +2784,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-design-tokens{{/unless}}" }, @@ -2754,7 +2827,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-design-tokens{{/unless}}", "dependencyDashboardApproval": true @@ -2800,7 +2874,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-design-tokens{{/unless}}" }, @@ -2846,7 +2921,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-design-tokens{{/unless}}", "dependencyDashboardApproval": true @@ -2891,7 +2967,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-dev-cli{{/unless}}" }, @@ -2935,7 +3012,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-dev-cli{{/unless}}" }, @@ -2978,7 +3056,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-dev-cli{{/unless}}" }, @@ -3020,7 +3099,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-dev-cli{{/unless}}", "dependencyDashboardApproval": true @@ -3064,7 +3144,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-dev-cli{{/unless}}" }, @@ -3108,7 +3189,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-dev-cli{{/unless}}", "dependencyDashboardApproval": true @@ -3153,7 +3235,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-graphiql-explorer{{/unless}}" }, @@ -3197,7 +3280,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-graphiql-explorer{{/unless}}" }, @@ -3240,7 +3324,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-graphiql-explorer{{/unless}}" }, @@ -3282,7 +3367,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-graphiql-explorer{{/unless}}", "dependencyDashboardApproval": true @@ -3326,7 +3412,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-graphiql-explorer{{/unless}}" }, @@ -3370,7 +3457,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-graphiql-explorer{{/unless}}", "dependencyDashboardApproval": true @@ -3415,7 +3503,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-legacy-polyfills{{/unless}}" }, @@ -3459,7 +3548,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-legacy-polyfills{{/unless}}" }, @@ -3502,7 +3592,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-legacy-polyfills{{/unless}}" }, @@ -3544,7 +3635,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-legacy-polyfills{{/unless}}", "dependencyDashboardApproval": true @@ -3588,7 +3680,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-legacy-polyfills{{/unless}}" }, @@ -3632,7 +3725,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-legacy-polyfills{{/unless}}", "dependencyDashboardApproval": true @@ -3677,7 +3771,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-link{{/unless}}" }, @@ -3721,7 +3816,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-link{{/unless}}" }, @@ -3764,7 +3860,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-link{{/unless}}" }, @@ -3806,7 +3903,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-link{{/unless}}", "dependencyDashboardApproval": true @@ -3850,7 +3948,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-link{{/unless}}" }, @@ -3894,7 +3993,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-link{{/unless}}", "dependencyDashboardApproval": true @@ -3939,7 +4039,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-page-utils{{/unless}}" }, @@ -3983,7 +4084,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-page-utils{{/unless}}" }, @@ -4026,7 +4128,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-page-utils{{/unless}}" }, @@ -4068,7 +4171,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-page-utils{{/unless}}", "dependencyDashboardApproval": true @@ -4112,7 +4216,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-page-utils{{/unless}}" }, @@ -4156,7 +4261,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-page-utils{{/unless}}", "dependencyDashboardApproval": true @@ -4201,7 +4307,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-parcel-config{{/unless}}" }, @@ -4245,7 +4352,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-parcel-config{{/unless}}" }, @@ -4288,7 +4396,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-parcel-config{{/unless}}" }, @@ -4330,7 +4439,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-parcel-config{{/unless}}", "dependencyDashboardApproval": true @@ -4374,7 +4484,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-parcel-config{{/unless}}" }, @@ -4418,14 +4529,15 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-parcel-config{{/unless}}", "dependencyDashboardApproval": true }, { "matchPaths": [ - "packages/gatsby-plugin-benchmark-reporting/package.json" + "packages/gatsby-parcel-namer-relative-to-cwd/package.json" ], "matchDepTypes": [ "devDependencies" @@ -4434,8 +4546,8 @@ "patch", "minor" ], - "groupName": "[DEV] minor and patch dependencies for gatsby-plugin-benchmark-reporting", - "groupSlug": "gatsby-plugin-benchmark-reporting-dev-minor", + "groupName": "[DEV] minor and patch dependencies for gatsby-parcel-namer-relative-to-cwd", + "groupSlug": "gatsby-parcel-namer-relative-to-cwd-dev-minor", "automerge": true, "excludePackageNames": [ "eslint", @@ -4463,13 +4575,14 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-benchmark-reporting{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-parcel-namer-relative-to-cwd{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-plugin-benchmark-reporting/package.json" + "packages/gatsby-parcel-namer-relative-to-cwd/package.json" ], "matchDepTypes": [ "devDependencies" @@ -4477,8 +4590,8 @@ "matchUpdateTypes": [ "major" ], - "groupName": "[DEV] major dependencies for gatsby-plugin-benchmark-reporting", - "groupSlug": "gatsby-plugin-benchmark-reporting-dev-major", + "groupName": "[DEV] major dependencies for gatsby-parcel-namer-relative-to-cwd", + "groupSlug": "gatsby-parcel-namer-relative-to-cwd-dev-major", "automerge": true, "dependencyDashboardApproval": false, "excludePackageNames": [ @@ -4507,13 +4620,14 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-benchmark-reporting{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-parcel-namer-relative-to-cwd{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-plugin-benchmark-reporting/package.json" + "packages/gatsby-parcel-namer-relative-to-cwd/package.json" ], "matchDepTypes": [ "dependencies" @@ -4522,8 +4636,8 @@ "patch", "minor" ], - "groupName": "minor and patch dependencies for gatsby-plugin-benchmark-reporting", - "groupSlug": "gatsby-plugin-benchmark-reporting-prod-minor", + "groupName": "minor and patch dependencies for gatsby-parcel-namer-relative-to-cwd", + "groupSlug": "gatsby-parcel-namer-relative-to-cwd-prod-minor", "excludePackageNames": [ "eslint", "prettier", @@ -4550,13 +4664,14 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-benchmark-reporting{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-parcel-namer-relative-to-cwd{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-plugin-benchmark-reporting/package.json" + "packages/gatsby-parcel-namer-relative-to-cwd/package.json" ], "matchDepTypes": [ "dependencies" @@ -4564,8 +4679,8 @@ "matchUpdateTypes": [ "major" ], - "groupName": "major dependencies for gatsby-plugin-benchmark-reporting", - "groupSlug": "gatsby-plugin-benchmark-reporting-prod-major", + "groupName": "major dependencies for gatsby-parcel-namer-relative-to-cwd", + "groupSlug": "gatsby-parcel-namer-relative-to-cwd-prod-major", "excludePackageNames": [ "eslint", "prettier", @@ -4592,20 +4707,21 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-benchmark-reporting{{/unless}}", + "commitMessageSuffix": "{{#unless groupName}} for gatsby-parcel-namer-relative-to-cwd{{/unless}}", "dependencyDashboardApproval": true }, { "matchPaths": [ - "packages/gatsby-plugin-benchmark-reporting/package.json" + "packages/gatsby-parcel-namer-relative-to-cwd/package.json" ], "matchDepTypes": [ "dependencies" ], - "groupName": "minor and patch dependencies for gatsby-plugin-benchmark-reporting", - "groupSlug": "gatsby-plugin-benchmark-reporting-prod-minor", + "groupName": "minor and patch dependencies for gatsby-parcel-namer-relative-to-cwd", + "groupSlug": "gatsby-parcel-namer-relative-to-cwd-prod-minor", "matchPackageNames": [], "matchUpdateTypes": [ "patch" @@ -4636,19 +4752,20 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-benchmark-reporting{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-parcel-namer-relative-to-cwd{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-plugin-benchmark-reporting/package.json" + "packages/gatsby-parcel-namer-relative-to-cwd/package.json" ], "matchDepTypes": [ "dependencies" ], - "groupName": "major dependencies for gatsby-plugin-benchmark-reporting", - "groupSlug": "gatsby-plugin-benchmark-reporting-prod-major", + "groupName": "major dependencies for gatsby-parcel-namer-relative-to-cwd", + "groupSlug": "gatsby-parcel-namer-relative-to-cwd-prod-major", "matchPackageNames": [], "matchUpdateTypes": [ "major", @@ -4680,14 +4797,15 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-benchmark-reporting{{/unless}}", + "commitMessageSuffix": "{{#unless groupName}} for gatsby-parcel-namer-relative-to-cwd{{/unless}}", "dependencyDashboardApproval": true }, { "matchPaths": [ - "packages/gatsby-plugin-canonical-urls/package.json" + "packages/gatsby-plugin-benchmark-reporting/package.json" ], "matchDepTypes": [ "devDependencies" @@ -4696,8 +4814,8 @@ "patch", "minor" ], - "groupName": "[DEV] minor and patch dependencies for gatsby-plugin-canonical-urls", - "groupSlug": "gatsby-plugin-canonical-urls-dev-minor", + "groupName": "[DEV] minor and patch dependencies for gatsby-plugin-benchmark-reporting", + "groupSlug": "gatsby-plugin-benchmark-reporting-dev-minor", "automerge": true, "excludePackageNames": [ "eslint", @@ -4725,13 +4843,14 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-canonical-urls{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-benchmark-reporting{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-plugin-canonical-urls/package.json" + "packages/gatsby-plugin-benchmark-reporting/package.json" ], "matchDepTypes": [ "devDependencies" @@ -4739,8 +4858,8 @@ "matchUpdateTypes": [ "major" ], - "groupName": "[DEV] major dependencies for gatsby-plugin-canonical-urls", - "groupSlug": "gatsby-plugin-canonical-urls-dev-major", + "groupName": "[DEV] major dependencies for gatsby-plugin-benchmark-reporting", + "groupSlug": "gatsby-plugin-benchmark-reporting-dev-major", "automerge": true, "dependencyDashboardApproval": false, "excludePackageNames": [ @@ -4769,13 +4888,14 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-canonical-urls{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-benchmark-reporting{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-plugin-canonical-urls/package.json" + "packages/gatsby-plugin-benchmark-reporting/package.json" ], "matchDepTypes": [ "dependencies" @@ -4784,8 +4904,8 @@ "patch", "minor" ], - "groupName": "minor and patch dependencies for gatsby-plugin-canonical-urls", - "groupSlug": "gatsby-plugin-canonical-urls-prod-minor", + "groupName": "minor and patch dependencies for gatsby-plugin-benchmark-reporting", + "groupSlug": "gatsby-plugin-benchmark-reporting-prod-minor", "excludePackageNames": [ "eslint", "prettier", @@ -4812,13 +4932,14 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-canonical-urls{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-benchmark-reporting{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-plugin-canonical-urls/package.json" + "packages/gatsby-plugin-benchmark-reporting/package.json" ], "matchDepTypes": [ "dependencies" @@ -4826,8 +4947,8 @@ "matchUpdateTypes": [ "major" ], - "groupName": "major dependencies for gatsby-plugin-canonical-urls", - "groupSlug": "gatsby-plugin-canonical-urls-prod-major", + "groupName": "major dependencies for gatsby-plugin-benchmark-reporting", + "groupSlug": "gatsby-plugin-benchmark-reporting-prod-major", "excludePackageNames": [ "eslint", "prettier", @@ -4854,20 +4975,21 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-canonical-urls{{/unless}}", + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-benchmark-reporting{{/unless}}", "dependencyDashboardApproval": true }, { "matchPaths": [ - "packages/gatsby-plugin-canonical-urls/package.json" + "packages/gatsby-plugin-benchmark-reporting/package.json" ], "matchDepTypes": [ "dependencies" ], - "groupName": "minor and patch dependencies for gatsby-plugin-canonical-urls", - "groupSlug": "gatsby-plugin-canonical-urls-prod-minor", + "groupName": "minor and patch dependencies for gatsby-plugin-benchmark-reporting", + "groupSlug": "gatsby-plugin-benchmark-reporting-prod-minor", "matchPackageNames": [], "matchUpdateTypes": [ "patch" @@ -4898,19 +5020,20 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-canonical-urls{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-benchmark-reporting{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-plugin-canonical-urls/package.json" + "packages/gatsby-plugin-benchmark-reporting/package.json" ], "matchDepTypes": [ "dependencies" ], - "groupName": "major dependencies for gatsby-plugin-canonical-urls", - "groupSlug": "gatsby-plugin-canonical-urls-prod-major", + "groupName": "major dependencies for gatsby-plugin-benchmark-reporting", + "groupSlug": "gatsby-plugin-benchmark-reporting-prod-major", "matchPackageNames": [], "matchUpdateTypes": [ "major", @@ -4942,14 +5065,15 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-canonical-urls{{/unless}}", + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-benchmark-reporting{{/unless}}", "dependencyDashboardApproval": true }, { "matchPaths": [ - "packages/gatsby-plugin-catch-links/package.json" + "packages/gatsby-plugin-canonical-urls/package.json" ], "matchDepTypes": [ "devDependencies" @@ -4958,8 +5082,8 @@ "patch", "minor" ], - "groupName": "[DEV] minor and patch dependencies for gatsby-plugin-catch-links", - "groupSlug": "gatsby-plugin-catch-links-dev-minor", + "groupName": "[DEV] minor and patch dependencies for gatsby-plugin-canonical-urls", + "groupSlug": "gatsby-plugin-canonical-urls-dev-minor", "automerge": true, "excludePackageNames": [ "eslint", @@ -4987,13 +5111,14 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-catch-links{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-canonical-urls{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-plugin-catch-links/package.json" + "packages/gatsby-plugin-canonical-urls/package.json" ], "matchDepTypes": [ "devDependencies" @@ -5001,8 +5126,8 @@ "matchUpdateTypes": [ "major" ], - "groupName": "[DEV] major dependencies for gatsby-plugin-catch-links", - "groupSlug": "gatsby-plugin-catch-links-dev-major", + "groupName": "[DEV] major dependencies for gatsby-plugin-canonical-urls", + "groupSlug": "gatsby-plugin-canonical-urls-dev-major", "automerge": true, "dependencyDashboardApproval": false, "excludePackageNames": [ @@ -5031,13 +5156,14 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-catch-links{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-canonical-urls{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-plugin-catch-links/package.json" + "packages/gatsby-plugin-canonical-urls/package.json" ], "matchDepTypes": [ "dependencies" @@ -5046,8 +5172,8 @@ "patch", "minor" ], - "groupName": "minor and patch dependencies for gatsby-plugin-catch-links", - "groupSlug": "gatsby-plugin-catch-links-prod-minor", + "groupName": "minor and patch dependencies for gatsby-plugin-canonical-urls", + "groupSlug": "gatsby-plugin-canonical-urls-prod-minor", "excludePackageNames": [ "eslint", "prettier", @@ -5074,13 +5200,14 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-catch-links{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-canonical-urls{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-plugin-catch-links/package.json" + "packages/gatsby-plugin-canonical-urls/package.json" ], "matchDepTypes": [ "dependencies" @@ -5088,8 +5215,8 @@ "matchUpdateTypes": [ "major" ], - "groupName": "major dependencies for gatsby-plugin-catch-links", - "groupSlug": "gatsby-plugin-catch-links-prod-major", + "groupName": "major dependencies for gatsby-plugin-canonical-urls", + "groupSlug": "gatsby-plugin-canonical-urls-prod-major", "excludePackageNames": [ "eslint", "prettier", @@ -5116,20 +5243,21 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-catch-links{{/unless}}", + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-canonical-urls{{/unless}}", "dependencyDashboardApproval": true }, { "matchPaths": [ - "packages/gatsby-plugin-catch-links/package.json" + "packages/gatsby-plugin-canonical-urls/package.json" ], "matchDepTypes": [ "dependencies" ], - "groupName": "minor and patch dependencies for gatsby-plugin-catch-links", - "groupSlug": "gatsby-plugin-catch-links-prod-minor", + "groupName": "minor and patch dependencies for gatsby-plugin-canonical-urls", + "groupSlug": "gatsby-plugin-canonical-urls-prod-minor", "matchPackageNames": [], "matchUpdateTypes": [ "patch" @@ -5160,19 +5288,20 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-catch-links{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-canonical-urls{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-plugin-catch-links/package.json" + "packages/gatsby-plugin-canonical-urls/package.json" ], "matchDepTypes": [ "dependencies" ], - "groupName": "major dependencies for gatsby-plugin-catch-links", - "groupSlug": "gatsby-plugin-catch-links-prod-major", + "groupName": "major dependencies for gatsby-plugin-canonical-urls", + "groupSlug": "gatsby-plugin-canonical-urls-prod-major", "matchPackageNames": [], "matchUpdateTypes": [ "major", @@ -5204,14 +5333,15 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-catch-links{{/unless}}", + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-canonical-urls{{/unless}}", "dependencyDashboardApproval": true }, { "matchPaths": [ - "packages/gatsby-plugin-coffeescript/package.json" + "packages/gatsby-plugin-catch-links/package.json" ], "matchDepTypes": [ "devDependencies" @@ -5220,8 +5350,8 @@ "patch", "minor" ], - "groupName": "[DEV] minor and patch dependencies for gatsby-plugin-coffeescript", - "groupSlug": "gatsby-plugin-coffeescript-dev-minor", + "groupName": "[DEV] minor and patch dependencies for gatsby-plugin-catch-links", + "groupSlug": "gatsby-plugin-catch-links-dev-minor", "automerge": true, "excludePackageNames": [ "eslint", @@ -5249,13 +5379,14 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-coffeescript{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-catch-links{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-plugin-coffeescript/package.json" + "packages/gatsby-plugin-catch-links/package.json" ], "matchDepTypes": [ "devDependencies" @@ -5263,8 +5394,8 @@ "matchUpdateTypes": [ "major" ], - "groupName": "[DEV] major dependencies for gatsby-plugin-coffeescript", - "groupSlug": "gatsby-plugin-coffeescript-dev-major", + "groupName": "[DEV] major dependencies for gatsby-plugin-catch-links", + "groupSlug": "gatsby-plugin-catch-links-dev-major", "automerge": true, "dependencyDashboardApproval": false, "excludePackageNames": [ @@ -5293,13 +5424,14 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-coffeescript{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-catch-links{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-plugin-coffeescript/package.json" + "packages/gatsby-plugin-catch-links/package.json" ], "matchDepTypes": [ "dependencies" @@ -5308,8 +5440,8 @@ "patch", "minor" ], - "groupName": "minor and patch dependencies for gatsby-plugin-coffeescript", - "groupSlug": "gatsby-plugin-coffeescript-prod-minor", + "groupName": "minor and patch dependencies for gatsby-plugin-catch-links", + "groupSlug": "gatsby-plugin-catch-links-prod-minor", "excludePackageNames": [ "eslint", "prettier", @@ -5336,13 +5468,14 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-coffeescript{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-catch-links{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-plugin-coffeescript/package.json" + "packages/gatsby-plugin-catch-links/package.json" ], "matchDepTypes": [ "dependencies" @@ -5350,8 +5483,8 @@ "matchUpdateTypes": [ "major" ], - "groupName": "major dependencies for gatsby-plugin-coffeescript", - "groupSlug": "gatsby-plugin-coffeescript-prod-major", + "groupName": "major dependencies for gatsby-plugin-catch-links", + "groupSlug": "gatsby-plugin-catch-links-prod-major", "excludePackageNames": [ "eslint", "prettier", @@ -5378,23 +5511,22 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-coffeescript{{/unless}}", + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-catch-links{{/unless}}", "dependencyDashboardApproval": true }, { "matchPaths": [ - "packages/gatsby-plugin-coffeescript/package.json" + "packages/gatsby-plugin-catch-links/package.json" ], "matchDepTypes": [ "dependencies" ], - "groupName": "minor and patch dependencies for gatsby-plugin-coffeescript", - "groupSlug": "gatsby-plugin-coffeescript-prod-minor", - "matchPackageNames": [ - "coffee-loader" - ], + "groupName": "minor and patch dependencies for gatsby-plugin-catch-links", + "groupSlug": "gatsby-plugin-catch-links-prod-minor", + "matchPackageNames": [], "matchUpdateTypes": [ "patch" ], @@ -5424,22 +5556,21 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-coffeescript{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-catch-links{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-plugin-coffeescript/package.json" + "packages/gatsby-plugin-catch-links/package.json" ], "matchDepTypes": [ "dependencies" ], - "groupName": "major dependencies for gatsby-plugin-coffeescript", - "groupSlug": "gatsby-plugin-coffeescript-prod-major", - "matchPackageNames": [ - "coffee-loader" - ], + "groupName": "major dependencies for gatsby-plugin-catch-links", + "groupSlug": "gatsby-plugin-catch-links-prod-major", + "matchPackageNames": [], "matchUpdateTypes": [ "major", "minor" @@ -5470,14 +5601,15 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-coffeescript{{/unless}}", + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-catch-links{{/unless}}", "dependencyDashboardApproval": true }, { "matchPaths": [ - "packages/gatsby-plugin-cxs/package.json" + "packages/gatsby-plugin-coffeescript/package.json" ], "matchDepTypes": [ "devDependencies" @@ -5486,8 +5618,8 @@ "patch", "minor" ], - "groupName": "[DEV] minor and patch dependencies for gatsby-plugin-cxs", - "groupSlug": "gatsby-plugin-cxs-dev-minor", + "groupName": "[DEV] minor and patch dependencies for gatsby-plugin-coffeescript", + "groupSlug": "gatsby-plugin-coffeescript-dev-minor", "automerge": true, "excludePackageNames": [ "eslint", @@ -5515,13 +5647,14 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-cxs{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-coffeescript{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-plugin-cxs/package.json" + "packages/gatsby-plugin-coffeescript/package.json" ], "matchDepTypes": [ "devDependencies" @@ -5529,8 +5662,8 @@ "matchUpdateTypes": [ "major" ], - "groupName": "[DEV] major dependencies for gatsby-plugin-cxs", - "groupSlug": "gatsby-plugin-cxs-dev-major", + "groupName": "[DEV] major dependencies for gatsby-plugin-coffeescript", + "groupSlug": "gatsby-plugin-coffeescript-dev-major", "automerge": true, "dependencyDashboardApproval": false, "excludePackageNames": [ @@ -5559,13 +5692,14 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-cxs{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-coffeescript{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-plugin-cxs/package.json" + "packages/gatsby-plugin-coffeescript/package.json" ], "matchDepTypes": [ "dependencies" @@ -5574,8 +5708,8 @@ "patch", "minor" ], - "groupName": "minor and patch dependencies for gatsby-plugin-cxs", - "groupSlug": "gatsby-plugin-cxs-prod-minor", + "groupName": "minor and patch dependencies for gatsby-plugin-coffeescript", + "groupSlug": "gatsby-plugin-coffeescript-prod-minor", "excludePackageNames": [ "eslint", "prettier", @@ -5602,13 +5736,14 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-cxs{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-coffeescript{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-plugin-cxs/package.json" + "packages/gatsby-plugin-coffeescript/package.json" ], "matchDepTypes": [ "dependencies" @@ -5616,8 +5751,8 @@ "matchUpdateTypes": [ "major" ], - "groupName": "major dependencies for gatsby-plugin-cxs", - "groupSlug": "gatsby-plugin-cxs-prod-major", + "groupName": "major dependencies for gatsby-plugin-coffeescript", + "groupSlug": "gatsby-plugin-coffeescript-prod-major", "excludePackageNames": [ "eslint", "prettier", @@ -5644,21 +5779,24 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-cxs{{/unless}}", + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-coffeescript{{/unless}}", "dependencyDashboardApproval": true }, { "matchPaths": [ - "packages/gatsby-plugin-cxs/package.json" + "packages/gatsby-plugin-coffeescript/package.json" ], "matchDepTypes": [ "dependencies" ], - "groupName": "minor and patch dependencies for gatsby-plugin-cxs", - "groupSlug": "gatsby-plugin-cxs-prod-minor", - "matchPackageNames": [], + "groupName": "minor and patch dependencies for gatsby-plugin-coffeescript", + "groupSlug": "gatsby-plugin-coffeescript-prod-minor", + "matchPackageNames": [ + "coffee-loader" + ], "matchUpdateTypes": [ "patch" ], @@ -5688,20 +5826,23 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-cxs{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-coffeescript{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-plugin-cxs/package.json" + "packages/gatsby-plugin-coffeescript/package.json" ], "matchDepTypes": [ "dependencies" ], - "groupName": "major dependencies for gatsby-plugin-cxs", - "groupSlug": "gatsby-plugin-cxs-prod-major", - "matchPackageNames": [], + "groupName": "major dependencies for gatsby-plugin-coffeescript", + "groupSlug": "gatsby-plugin-coffeescript-prod-major", + "matchPackageNames": [ + "coffee-loader" + ], "matchUpdateTypes": [ "major", "minor" @@ -5732,14 +5873,15 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-cxs{{/unless}}", + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-coffeescript{{/unless}}", "dependencyDashboardApproval": true }, { "matchPaths": [ - "packages/gatsby-plugin-emotion/package.json" + "packages/gatsby-plugin-cxs/package.json" ], "matchDepTypes": [ "devDependencies" @@ -5748,8 +5890,8 @@ "patch", "minor" ], - "groupName": "[DEV] minor and patch dependencies for gatsby-plugin-emotion", - "groupSlug": "gatsby-plugin-emotion-dev-minor", + "groupName": "[DEV] minor and patch dependencies for gatsby-plugin-cxs", + "groupSlug": "gatsby-plugin-cxs-dev-minor", "automerge": true, "excludePackageNames": [ "eslint", @@ -5777,13 +5919,14 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-emotion{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-cxs{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-plugin-emotion/package.json" + "packages/gatsby-plugin-cxs/package.json" ], "matchDepTypes": [ "devDependencies" @@ -5791,8 +5934,8 @@ "matchUpdateTypes": [ "major" ], - "groupName": "[DEV] major dependencies for gatsby-plugin-emotion", - "groupSlug": "gatsby-plugin-emotion-dev-major", + "groupName": "[DEV] major dependencies for gatsby-plugin-cxs", + "groupSlug": "gatsby-plugin-cxs-dev-major", "automerge": true, "dependencyDashboardApproval": false, "excludePackageNames": [ @@ -5821,13 +5964,14 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-emotion{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-cxs{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-plugin-emotion/package.json" + "packages/gatsby-plugin-cxs/package.json" ], "matchDepTypes": [ "dependencies" @@ -5836,8 +5980,8 @@ "patch", "minor" ], - "groupName": "minor and patch dependencies for gatsby-plugin-emotion", - "groupSlug": "gatsby-plugin-emotion-prod-minor", + "groupName": "minor and patch dependencies for gatsby-plugin-cxs", + "groupSlug": "gatsby-plugin-cxs-prod-minor", "excludePackageNames": [ "eslint", "prettier", @@ -5864,13 +6008,14 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-emotion{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-cxs{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-plugin-emotion/package.json" + "packages/gatsby-plugin-cxs/package.json" ], "matchDepTypes": [ "dependencies" @@ -5878,8 +6023,8 @@ "matchUpdateTypes": [ "major" ], - "groupName": "major dependencies for gatsby-plugin-emotion", - "groupSlug": "gatsby-plugin-emotion-prod-major", + "groupName": "major dependencies for gatsby-plugin-cxs", + "groupSlug": "gatsby-plugin-cxs-prod-major", "excludePackageNames": [ "eslint", "prettier", @@ -5906,20 +6051,21 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-emotion{{/unless}}", + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-cxs{{/unless}}", "dependencyDashboardApproval": true }, { "matchPaths": [ - "packages/gatsby-plugin-emotion/package.json" + "packages/gatsby-plugin-cxs/package.json" ], "matchDepTypes": [ "dependencies" ], - "groupName": "minor and patch dependencies for gatsby-plugin-emotion", - "groupSlug": "gatsby-plugin-emotion-prod-minor", + "groupName": "minor and patch dependencies for gatsby-plugin-cxs", + "groupSlug": "gatsby-plugin-cxs-prod-minor", "matchPackageNames": [], "matchUpdateTypes": [ "patch" @@ -5950,19 +6096,20 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-emotion{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-cxs{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-plugin-emotion/package.json" + "packages/gatsby-plugin-cxs/package.json" ], "matchDepTypes": [ "dependencies" ], - "groupName": "major dependencies for gatsby-plugin-emotion", - "groupSlug": "gatsby-plugin-emotion-prod-major", + "groupName": "major dependencies for gatsby-plugin-cxs", + "groupSlug": "gatsby-plugin-cxs-prod-major", "matchPackageNames": [], "matchUpdateTypes": [ "major", @@ -5994,14 +6141,15 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-emotion{{/unless}}", + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-cxs{{/unless}}", "dependencyDashboardApproval": true }, { "matchPaths": [ - "packages/gatsby-plugin-facebook-analytics/package.json" + "packages/gatsby-plugin-emotion/package.json" ], "matchDepTypes": [ "devDependencies" @@ -6010,8 +6158,8 @@ "patch", "minor" ], - "groupName": "[DEV] minor and patch dependencies for gatsby-plugin-facebook-analytics", - "groupSlug": "gatsby-plugin-facebook-analytics-dev-minor", + "groupName": "[DEV] minor and patch dependencies for gatsby-plugin-emotion", + "groupSlug": "gatsby-plugin-emotion-dev-minor", "automerge": true, "excludePackageNames": [ "eslint", @@ -6039,13 +6187,14 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-facebook-analytics{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-emotion{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-plugin-facebook-analytics/package.json" + "packages/gatsby-plugin-emotion/package.json" ], "matchDepTypes": [ "devDependencies" @@ -6053,8 +6202,8 @@ "matchUpdateTypes": [ "major" ], - "groupName": "[DEV] major dependencies for gatsby-plugin-facebook-analytics", - "groupSlug": "gatsby-plugin-facebook-analytics-dev-major", + "groupName": "[DEV] major dependencies for gatsby-plugin-emotion", + "groupSlug": "gatsby-plugin-emotion-dev-major", "automerge": true, "dependencyDashboardApproval": false, "excludePackageNames": [ @@ -6083,13 +6232,14 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-facebook-analytics{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-emotion{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-plugin-facebook-analytics/package.json" + "packages/gatsby-plugin-emotion/package.json" ], "matchDepTypes": [ "dependencies" @@ -6098,8 +6248,8 @@ "patch", "minor" ], - "groupName": "minor and patch dependencies for gatsby-plugin-facebook-analytics", - "groupSlug": "gatsby-plugin-facebook-analytics-prod-minor", + "groupName": "minor and patch dependencies for gatsby-plugin-emotion", + "groupSlug": "gatsby-plugin-emotion-prod-minor", "excludePackageNames": [ "eslint", "prettier", @@ -6126,13 +6276,14 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-facebook-analytics{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-emotion{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-plugin-facebook-analytics/package.json" + "packages/gatsby-plugin-emotion/package.json" ], "matchDepTypes": [ "dependencies" @@ -6140,8 +6291,8 @@ "matchUpdateTypes": [ "major" ], - "groupName": "major dependencies for gatsby-plugin-facebook-analytics", - "groupSlug": "gatsby-plugin-facebook-analytics-prod-major", + "groupName": "major dependencies for gatsby-plugin-emotion", + "groupSlug": "gatsby-plugin-emotion-prod-major", "excludePackageNames": [ "eslint", "prettier", @@ -6168,20 +6319,21 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-facebook-analytics{{/unless}}", + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-emotion{{/unless}}", "dependencyDashboardApproval": true }, { "matchPaths": [ - "packages/gatsby-plugin-facebook-analytics/package.json" + "packages/gatsby-plugin-emotion/package.json" ], "matchDepTypes": [ "dependencies" ], - "groupName": "minor and patch dependencies for gatsby-plugin-facebook-analytics", - "groupSlug": "gatsby-plugin-facebook-analytics-prod-minor", + "groupName": "minor and patch dependencies for gatsby-plugin-emotion", + "groupSlug": "gatsby-plugin-emotion-prod-minor", "matchPackageNames": [], "matchUpdateTypes": [ "patch" @@ -6212,19 +6364,20 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-facebook-analytics{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-emotion{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-plugin-facebook-analytics/package.json" + "packages/gatsby-plugin-emotion/package.json" ], "matchDepTypes": [ "dependencies" ], - "groupName": "major dependencies for gatsby-plugin-facebook-analytics", - "groupSlug": "gatsby-plugin-facebook-analytics-prod-major", + "groupName": "major dependencies for gatsby-plugin-emotion", + "groupSlug": "gatsby-plugin-emotion-prod-major", "matchPackageNames": [], "matchUpdateTypes": [ "major", @@ -6256,14 +6409,15 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-facebook-analytics{{/unless}}", + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-emotion{{/unless}}", "dependencyDashboardApproval": true }, { "matchPaths": [ - "packages/gatsby-plugin-feed/package.json" + "packages/gatsby-plugin-facebook-analytics/package.json" ], "matchDepTypes": [ "devDependencies" @@ -6272,8 +6426,8 @@ "patch", "minor" ], - "groupName": "[DEV] minor and patch dependencies for gatsby-plugin-feed", - "groupSlug": "gatsby-plugin-feed-dev-minor", + "groupName": "[DEV] minor and patch dependencies for gatsby-plugin-facebook-analytics", + "groupSlug": "gatsby-plugin-facebook-analytics-dev-minor", "automerge": true, "excludePackageNames": [ "eslint", @@ -6301,13 +6455,14 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-feed{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-facebook-analytics{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-plugin-feed/package.json" + "packages/gatsby-plugin-facebook-analytics/package.json" ], "matchDepTypes": [ "devDependencies" @@ -6315,8 +6470,8 @@ "matchUpdateTypes": [ "major" ], - "groupName": "[DEV] major dependencies for gatsby-plugin-feed", - "groupSlug": "gatsby-plugin-feed-dev-major", + "groupName": "[DEV] major dependencies for gatsby-plugin-facebook-analytics", + "groupSlug": "gatsby-plugin-facebook-analytics-dev-major", "automerge": true, "dependencyDashboardApproval": false, "excludePackageNames": [ @@ -6345,13 +6500,14 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-feed{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-facebook-analytics{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-plugin-feed/package.json" + "packages/gatsby-plugin-facebook-analytics/package.json" ], "matchDepTypes": [ "dependencies" @@ -6360,8 +6516,8 @@ "patch", "minor" ], - "groupName": "minor and patch dependencies for gatsby-plugin-feed", - "groupSlug": "gatsby-plugin-feed-prod-minor", + "groupName": "minor and patch dependencies for gatsby-plugin-facebook-analytics", + "groupSlug": "gatsby-plugin-facebook-analytics-prod-minor", "excludePackageNames": [ "eslint", "prettier", @@ -6388,13 +6544,14 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-feed{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-facebook-analytics{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-plugin-feed/package.json" + "packages/gatsby-plugin-facebook-analytics/package.json" ], "matchDepTypes": [ "dependencies" @@ -6402,8 +6559,8 @@ "matchUpdateTypes": [ "major" ], - "groupName": "major dependencies for gatsby-plugin-feed", - "groupSlug": "gatsby-plugin-feed-prod-major", + "groupName": "major dependencies for gatsby-plugin-facebook-analytics", + "groupSlug": "gatsby-plugin-facebook-analytics-prod-major", "excludePackageNames": [ "eslint", "prettier", @@ -6430,20 +6587,21 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-feed{{/unless}}", + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-facebook-analytics{{/unless}}", "dependencyDashboardApproval": true }, { "matchPaths": [ - "packages/gatsby-plugin-feed/package.json" + "packages/gatsby-plugin-facebook-analytics/package.json" ], "matchDepTypes": [ "dependencies" ], - "groupName": "minor and patch dependencies for gatsby-plugin-feed", - "groupSlug": "gatsby-plugin-feed-prod-minor", + "groupName": "minor and patch dependencies for gatsby-plugin-facebook-analytics", + "groupSlug": "gatsby-plugin-facebook-analytics-prod-minor", "matchPackageNames": [], "matchUpdateTypes": [ "patch" @@ -6474,19 +6632,20 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-feed{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-facebook-analytics{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-plugin-feed/package.json" + "packages/gatsby-plugin-facebook-analytics/package.json" ], "matchDepTypes": [ "dependencies" ], - "groupName": "major dependencies for gatsby-plugin-feed", - "groupSlug": "gatsby-plugin-feed-prod-major", + "groupName": "major dependencies for gatsby-plugin-facebook-analytics", + "groupSlug": "gatsby-plugin-facebook-analytics-prod-major", "matchPackageNames": [], "matchUpdateTypes": [ "major", @@ -6518,14 +6677,15 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-feed{{/unless}}", + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-facebook-analytics{{/unless}}", "dependencyDashboardApproval": true }, { "matchPaths": [ - "packages/gatsby-plugin-flow/package.json" + "packages/gatsby-plugin-feed/package.json" ], "matchDepTypes": [ "devDependencies" @@ -6534,8 +6694,8 @@ "patch", "minor" ], - "groupName": "[DEV] minor and patch dependencies for gatsby-plugin-flow", - "groupSlug": "gatsby-plugin-flow-dev-minor", + "groupName": "[DEV] minor and patch dependencies for gatsby-plugin-feed", + "groupSlug": "gatsby-plugin-feed-dev-minor", "automerge": true, "excludePackageNames": [ "eslint", @@ -6563,13 +6723,14 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-flow{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-feed{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-plugin-flow/package.json" + "packages/gatsby-plugin-feed/package.json" ], "matchDepTypes": [ "devDependencies" @@ -6577,8 +6738,8 @@ "matchUpdateTypes": [ "major" ], - "groupName": "[DEV] major dependencies for gatsby-plugin-flow", - "groupSlug": "gatsby-plugin-flow-dev-major", + "groupName": "[DEV] major dependencies for gatsby-plugin-feed", + "groupSlug": "gatsby-plugin-feed-dev-major", "automerge": true, "dependencyDashboardApproval": false, "excludePackageNames": [ @@ -6607,13 +6768,14 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-flow{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-feed{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-plugin-flow/package.json" + "packages/gatsby-plugin-feed/package.json" ], "matchDepTypes": [ "dependencies" @@ -6622,8 +6784,8 @@ "patch", "minor" ], - "groupName": "minor and patch dependencies for gatsby-plugin-flow", - "groupSlug": "gatsby-plugin-flow-prod-minor", + "groupName": "minor and patch dependencies for gatsby-plugin-feed", + "groupSlug": "gatsby-plugin-feed-prod-minor", "excludePackageNames": [ "eslint", "prettier", @@ -6650,13 +6812,14 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-flow{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-feed{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-plugin-flow/package.json" + "packages/gatsby-plugin-feed/package.json" ], "matchDepTypes": [ "dependencies" @@ -6664,8 +6827,8 @@ "matchUpdateTypes": [ "major" ], - "groupName": "major dependencies for gatsby-plugin-flow", - "groupSlug": "gatsby-plugin-flow-prod-major", + "groupName": "major dependencies for gatsby-plugin-feed", + "groupSlug": "gatsby-plugin-feed-prod-major", "excludePackageNames": [ "eslint", "prettier", @@ -6692,20 +6855,21 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-flow{{/unless}}", + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-feed{{/unless}}", "dependencyDashboardApproval": true }, { "matchPaths": [ - "packages/gatsby-plugin-flow/package.json" + "packages/gatsby-plugin-feed/package.json" ], "matchDepTypes": [ "dependencies" ], - "groupName": "minor and patch dependencies for gatsby-plugin-flow", - "groupSlug": "gatsby-plugin-flow-prod-minor", + "groupName": "minor and patch dependencies for gatsby-plugin-feed", + "groupSlug": "gatsby-plugin-feed-prod-minor", "matchPackageNames": [], "matchUpdateTypes": [ "patch" @@ -6736,19 +6900,20 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-flow{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-feed{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-plugin-flow/package.json" + "packages/gatsby-plugin-feed/package.json" ], "matchDepTypes": [ "dependencies" ], - "groupName": "major dependencies for gatsby-plugin-flow", - "groupSlug": "gatsby-plugin-flow-prod-major", + "groupName": "major dependencies for gatsby-plugin-feed", + "groupSlug": "gatsby-plugin-feed-prod-major", "matchPackageNames": [], "matchUpdateTypes": [ "major", @@ -6780,14 +6945,15 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-flow{{/unless}}", + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-feed{{/unless}}", "dependencyDashboardApproval": true }, { "matchPaths": [ - "packages/gatsby-plugin-fullstory/package.json" + "packages/gatsby-plugin-flow/package.json" ], "matchDepTypes": [ "devDependencies" @@ -6796,8 +6962,8 @@ "patch", "minor" ], - "groupName": "[DEV] minor and patch dependencies for gatsby-plugin-fullstory", - "groupSlug": "gatsby-plugin-fullstory-dev-minor", + "groupName": "[DEV] minor and patch dependencies for gatsby-plugin-flow", + "groupSlug": "gatsby-plugin-flow-dev-minor", "automerge": true, "excludePackageNames": [ "eslint", @@ -6825,13 +6991,14 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-fullstory{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-flow{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-plugin-fullstory/package.json" + "packages/gatsby-plugin-flow/package.json" ], "matchDepTypes": [ "devDependencies" @@ -6839,8 +7006,8 @@ "matchUpdateTypes": [ "major" ], - "groupName": "[DEV] major dependencies for gatsby-plugin-fullstory", - "groupSlug": "gatsby-plugin-fullstory-dev-major", + "groupName": "[DEV] major dependencies for gatsby-plugin-flow", + "groupSlug": "gatsby-plugin-flow-dev-major", "automerge": true, "dependencyDashboardApproval": false, "excludePackageNames": [ @@ -6869,13 +7036,14 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-fullstory{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-flow{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-plugin-fullstory/package.json" + "packages/gatsby-plugin-flow/package.json" ], "matchDepTypes": [ "dependencies" @@ -6884,8 +7052,8 @@ "patch", "minor" ], - "groupName": "minor and patch dependencies for gatsby-plugin-fullstory", - "groupSlug": "gatsby-plugin-fullstory-prod-minor", + "groupName": "minor and patch dependencies for gatsby-plugin-flow", + "groupSlug": "gatsby-plugin-flow-prod-minor", "excludePackageNames": [ "eslint", "prettier", @@ -6912,13 +7080,14 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-fullstory{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-flow{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-plugin-fullstory/package.json" + "packages/gatsby-plugin-flow/package.json" ], "matchDepTypes": [ "dependencies" @@ -6926,8 +7095,8 @@ "matchUpdateTypes": [ "major" ], - "groupName": "major dependencies for gatsby-plugin-fullstory", - "groupSlug": "gatsby-plugin-fullstory-prod-major", + "groupName": "major dependencies for gatsby-plugin-flow", + "groupSlug": "gatsby-plugin-flow-prod-major", "excludePackageNames": [ "eslint", "prettier", @@ -6954,20 +7123,21 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-fullstory{{/unless}}", + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-flow{{/unless}}", "dependencyDashboardApproval": true }, { "matchPaths": [ - "packages/gatsby-plugin-fullstory/package.json" + "packages/gatsby-plugin-flow/package.json" ], "matchDepTypes": [ "dependencies" ], - "groupName": "minor and patch dependencies for gatsby-plugin-fullstory", - "groupSlug": "gatsby-plugin-fullstory-prod-minor", + "groupName": "minor and patch dependencies for gatsby-plugin-flow", + "groupSlug": "gatsby-plugin-flow-prod-minor", "matchPackageNames": [], "matchUpdateTypes": [ "patch" @@ -6998,19 +7168,20 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-fullstory{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-flow{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-plugin-fullstory/package.json" + "packages/gatsby-plugin-flow/package.json" ], "matchDepTypes": [ "dependencies" ], - "groupName": "major dependencies for gatsby-plugin-fullstory", - "groupSlug": "gatsby-plugin-fullstory-prod-major", + "groupName": "major dependencies for gatsby-plugin-flow", + "groupSlug": "gatsby-plugin-flow-prod-major", "matchPackageNames": [], "matchUpdateTypes": [ "major", @@ -7042,14 +7213,15 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-fullstory{{/unless}}", + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-flow{{/unless}}", "dependencyDashboardApproval": true }, { "matchPaths": [ - "packages/gatsby-plugin-gatsby-cloud/package.json" + "packages/gatsby-plugin-fullstory/package.json" ], "matchDepTypes": [ "devDependencies" @@ -7058,8 +7230,8 @@ "patch", "minor" ], - "groupName": "[DEV] minor and patch dependencies for gatsby-plugin-gatsby-cloud", - "groupSlug": "gatsby-plugin-gatsby-cloud-dev-minor", + "groupName": "[DEV] minor and patch dependencies for gatsby-plugin-fullstory", + "groupSlug": "gatsby-plugin-fullstory-dev-minor", "automerge": true, "excludePackageNames": [ "eslint", @@ -7087,13 +7259,14 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-gatsby-cloud{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-fullstory{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-plugin-gatsby-cloud/package.json" + "packages/gatsby-plugin-fullstory/package.json" ], "matchDepTypes": [ "devDependencies" @@ -7101,8 +7274,8 @@ "matchUpdateTypes": [ "major" ], - "groupName": "[DEV] major dependencies for gatsby-plugin-gatsby-cloud", - "groupSlug": "gatsby-plugin-gatsby-cloud-dev-major", + "groupName": "[DEV] major dependencies for gatsby-plugin-fullstory", + "groupSlug": "gatsby-plugin-fullstory-dev-major", "automerge": true, "dependencyDashboardApproval": false, "excludePackageNames": [ @@ -7131,13 +7304,14 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-gatsby-cloud{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-fullstory{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-plugin-gatsby-cloud/package.json" + "packages/gatsby-plugin-fullstory/package.json" ], "matchDepTypes": [ "dependencies" @@ -7146,8 +7320,8 @@ "patch", "minor" ], - "groupName": "minor and patch dependencies for gatsby-plugin-gatsby-cloud", - "groupSlug": "gatsby-plugin-gatsby-cloud-prod-minor", + "groupName": "minor and patch dependencies for gatsby-plugin-fullstory", + "groupSlug": "gatsby-plugin-fullstory-prod-minor", "excludePackageNames": [ "eslint", "prettier", @@ -7174,13 +7348,14 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-gatsby-cloud{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-fullstory{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-plugin-gatsby-cloud/package.json" + "packages/gatsby-plugin-fullstory/package.json" ], "matchDepTypes": [ "dependencies" @@ -7188,8 +7363,8 @@ "matchUpdateTypes": [ "major" ], - "groupName": "major dependencies for gatsby-plugin-gatsby-cloud", - "groupSlug": "gatsby-plugin-gatsby-cloud-prod-major", + "groupName": "major dependencies for gatsby-plugin-fullstory", + "groupSlug": "gatsby-plugin-fullstory-prod-major", "excludePackageNames": [ "eslint", "prettier", @@ -7216,23 +7391,22 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-gatsby-cloud{{/unless}}", + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-fullstory{{/unless}}", "dependencyDashboardApproval": true }, { "matchPaths": [ - "packages/gatsby-plugin-gatsby-cloud/package.json" + "packages/gatsby-plugin-fullstory/package.json" ], "matchDepTypes": [ "dependencies" ], - "groupName": "minor and patch dependencies for gatsby-plugin-gatsby-cloud", - "groupSlug": "gatsby-plugin-gatsby-cloud-prod-minor", - "matchPackageNames": [ - "kebab-hash" - ], + "groupName": "minor and patch dependencies for gatsby-plugin-fullstory", + "groupSlug": "gatsby-plugin-fullstory-prod-minor", + "matchPackageNames": [], "matchUpdateTypes": [ "patch" ], @@ -7262,22 +7436,21 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-gatsby-cloud{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-fullstory{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-plugin-gatsby-cloud/package.json" + "packages/gatsby-plugin-fullstory/package.json" ], "matchDepTypes": [ "dependencies" ], - "groupName": "major dependencies for gatsby-plugin-gatsby-cloud", - "groupSlug": "gatsby-plugin-gatsby-cloud-prod-major", - "matchPackageNames": [ - "kebab-hash" - ], + "groupName": "major dependencies for gatsby-plugin-fullstory", + "groupSlug": "gatsby-plugin-fullstory-prod-major", + "matchPackageNames": [], "matchUpdateTypes": [ "major", "minor" @@ -7308,14 +7481,15 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-gatsby-cloud{{/unless}}", + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-fullstory{{/unless}}", "dependencyDashboardApproval": true }, { "matchPaths": [ - "packages/gatsby-plugin-google-analytics/package.json" + "packages/gatsby-plugin-gatsby-cloud/package.json" ], "matchDepTypes": [ "devDependencies" @@ -7324,8 +7498,8 @@ "patch", "minor" ], - "groupName": "[DEV] minor and patch dependencies for gatsby-plugin-google-analytics", - "groupSlug": "gatsby-plugin-google-analytics-dev-minor", + "groupName": "[DEV] minor and patch dependencies for gatsby-plugin-gatsby-cloud", + "groupSlug": "gatsby-plugin-gatsby-cloud-dev-minor", "automerge": true, "excludePackageNames": [ "eslint", @@ -7353,13 +7527,14 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-google-analytics{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-gatsby-cloud{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-plugin-google-analytics/package.json" + "packages/gatsby-plugin-gatsby-cloud/package.json" ], "matchDepTypes": [ "devDependencies" @@ -7367,8 +7542,8 @@ "matchUpdateTypes": [ "major" ], - "groupName": "[DEV] major dependencies for gatsby-plugin-google-analytics", - "groupSlug": "gatsby-plugin-google-analytics-dev-major", + "groupName": "[DEV] major dependencies for gatsby-plugin-gatsby-cloud", + "groupSlug": "gatsby-plugin-gatsby-cloud-dev-major", "automerge": true, "dependencyDashboardApproval": false, "excludePackageNames": [ @@ -7397,13 +7572,14 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-google-analytics{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-gatsby-cloud{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-plugin-google-analytics/package.json" + "packages/gatsby-plugin-gatsby-cloud/package.json" ], "matchDepTypes": [ "dependencies" @@ -7412,8 +7588,8 @@ "patch", "minor" ], - "groupName": "minor and patch dependencies for gatsby-plugin-google-analytics", - "groupSlug": "gatsby-plugin-google-analytics-prod-minor", + "groupName": "minor and patch dependencies for gatsby-plugin-gatsby-cloud", + "groupSlug": "gatsby-plugin-gatsby-cloud-prod-minor", "excludePackageNames": [ "eslint", "prettier", @@ -7440,13 +7616,14 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-google-analytics{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-gatsby-cloud{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-plugin-google-analytics/package.json" + "packages/gatsby-plugin-gatsby-cloud/package.json" ], "matchDepTypes": [ "dependencies" @@ -7454,8 +7631,8 @@ "matchUpdateTypes": [ "major" ], - "groupName": "major dependencies for gatsby-plugin-google-analytics", - "groupSlug": "gatsby-plugin-google-analytics-prod-major", + "groupName": "major dependencies for gatsby-plugin-gatsby-cloud", + "groupSlug": "gatsby-plugin-gatsby-cloud-prod-major", "excludePackageNames": [ "eslint", "prettier", @@ -7482,21 +7659,24 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-google-analytics{{/unless}}", + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-gatsby-cloud{{/unless}}", "dependencyDashboardApproval": true }, { "matchPaths": [ - "packages/gatsby-plugin-google-analytics/package.json" + "packages/gatsby-plugin-gatsby-cloud/package.json" ], "matchDepTypes": [ "dependencies" ], - "groupName": "minor and patch dependencies for gatsby-plugin-google-analytics", - "groupSlug": "gatsby-plugin-google-analytics-prod-minor", - "matchPackageNames": [], + "groupName": "minor and patch dependencies for gatsby-plugin-gatsby-cloud", + "groupSlug": "gatsby-plugin-gatsby-cloud-prod-minor", + "matchPackageNames": [ + "kebab-hash" + ], "matchUpdateTypes": [ "patch" ], @@ -7526,20 +7706,23 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-google-analytics{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-gatsby-cloud{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-plugin-google-analytics/package.json" + "packages/gatsby-plugin-gatsby-cloud/package.json" ], "matchDepTypes": [ "dependencies" ], - "groupName": "major dependencies for gatsby-plugin-google-analytics", - "groupSlug": "gatsby-plugin-google-analytics-prod-major", - "matchPackageNames": [], + "groupName": "major dependencies for gatsby-plugin-gatsby-cloud", + "groupSlug": "gatsby-plugin-gatsby-cloud-prod-major", + "matchPackageNames": [ + "kebab-hash" + ], "matchUpdateTypes": [ "major", "minor" @@ -7570,14 +7753,15 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-google-analytics{{/unless}}", + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-gatsby-cloud{{/unless}}", "dependencyDashboardApproval": true }, { "matchPaths": [ - "packages/gatsby-plugin-google-gtag/package.json" + "packages/gatsby-plugin-google-analytics/package.json" ], "matchDepTypes": [ "devDependencies" @@ -7586,8 +7770,8 @@ "patch", "minor" ], - "groupName": "[DEV] minor and patch dependencies for gatsby-plugin-google-gtag", - "groupSlug": "gatsby-plugin-google-gtag-dev-minor", + "groupName": "[DEV] minor and patch dependencies for gatsby-plugin-google-analytics", + "groupSlug": "gatsby-plugin-google-analytics-dev-minor", "automerge": true, "excludePackageNames": [ "eslint", @@ -7615,13 +7799,14 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-google-gtag{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-google-analytics{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-plugin-google-gtag/package.json" + "packages/gatsby-plugin-google-analytics/package.json" ], "matchDepTypes": [ "devDependencies" @@ -7629,8 +7814,8 @@ "matchUpdateTypes": [ "major" ], - "groupName": "[DEV] major dependencies for gatsby-plugin-google-gtag", - "groupSlug": "gatsby-plugin-google-gtag-dev-major", + "groupName": "[DEV] major dependencies for gatsby-plugin-google-analytics", + "groupSlug": "gatsby-plugin-google-analytics-dev-major", "automerge": true, "dependencyDashboardApproval": false, "excludePackageNames": [ @@ -7659,13 +7844,14 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-google-gtag{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-google-analytics{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-plugin-google-gtag/package.json" + "packages/gatsby-plugin-google-analytics/package.json" ], "matchDepTypes": [ "dependencies" @@ -7674,8 +7860,8 @@ "patch", "minor" ], - "groupName": "minor and patch dependencies for gatsby-plugin-google-gtag", - "groupSlug": "gatsby-plugin-google-gtag-prod-minor", + "groupName": "minor and patch dependencies for gatsby-plugin-google-analytics", + "groupSlug": "gatsby-plugin-google-analytics-prod-minor", "excludePackageNames": [ "eslint", "prettier", @@ -7702,13 +7888,14 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-google-gtag{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-google-analytics{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-plugin-google-gtag/package.json" + "packages/gatsby-plugin-google-analytics/package.json" ], "matchDepTypes": [ "dependencies" @@ -7716,8 +7903,8 @@ "matchUpdateTypes": [ "major" ], - "groupName": "major dependencies for gatsby-plugin-google-gtag", - "groupSlug": "gatsby-plugin-google-gtag-prod-major", + "groupName": "major dependencies for gatsby-plugin-google-analytics", + "groupSlug": "gatsby-plugin-google-analytics-prod-major", "excludePackageNames": [ "eslint", "prettier", @@ -7744,20 +7931,21 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-google-gtag{{/unless}}", + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-google-analytics{{/unless}}", "dependencyDashboardApproval": true }, { "matchPaths": [ - "packages/gatsby-plugin-google-gtag/package.json" + "packages/gatsby-plugin-google-analytics/package.json" ], "matchDepTypes": [ "dependencies" ], - "groupName": "minor and patch dependencies for gatsby-plugin-google-gtag", - "groupSlug": "gatsby-plugin-google-gtag-prod-minor", + "groupName": "minor and patch dependencies for gatsby-plugin-google-analytics", + "groupSlug": "gatsby-plugin-google-analytics-prod-minor", "matchPackageNames": [], "matchUpdateTypes": [ "patch" @@ -7788,19 +7976,20 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-google-gtag{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-google-analytics{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-plugin-google-gtag/package.json" + "packages/gatsby-plugin-google-analytics/package.json" ], "matchDepTypes": [ "dependencies" ], - "groupName": "major dependencies for gatsby-plugin-google-gtag", - "groupSlug": "gatsby-plugin-google-gtag-prod-major", + "groupName": "major dependencies for gatsby-plugin-google-analytics", + "groupSlug": "gatsby-plugin-google-analytics-prod-major", "matchPackageNames": [], "matchUpdateTypes": [ "major", @@ -7832,14 +8021,15 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-google-gtag{{/unless}}", + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-google-analytics{{/unless}}", "dependencyDashboardApproval": true }, { "matchPaths": [ - "packages/gatsby-plugin-google-tagmanager/package.json" + "packages/gatsby-plugin-google-gtag/package.json" ], "matchDepTypes": [ "devDependencies" @@ -7848,8 +8038,8 @@ "patch", "minor" ], - "groupName": "[DEV] minor and patch dependencies for gatsby-plugin-google-tagmanager", - "groupSlug": "gatsby-plugin-google-tagmanager-dev-minor", + "groupName": "[DEV] minor and patch dependencies for gatsby-plugin-google-gtag", + "groupSlug": "gatsby-plugin-google-gtag-dev-minor", "automerge": true, "excludePackageNames": [ "eslint", @@ -7877,13 +8067,14 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-google-tagmanager{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-google-gtag{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-plugin-google-tagmanager/package.json" + "packages/gatsby-plugin-google-gtag/package.json" ], "matchDepTypes": [ "devDependencies" @@ -7891,8 +8082,8 @@ "matchUpdateTypes": [ "major" ], - "groupName": "[DEV] major dependencies for gatsby-plugin-google-tagmanager", - "groupSlug": "gatsby-plugin-google-tagmanager-dev-major", + "groupName": "[DEV] major dependencies for gatsby-plugin-google-gtag", + "groupSlug": "gatsby-plugin-google-gtag-dev-major", "automerge": true, "dependencyDashboardApproval": false, "excludePackageNames": [ @@ -7921,13 +8112,14 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-google-tagmanager{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-google-gtag{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-plugin-google-tagmanager/package.json" + "packages/gatsby-plugin-google-gtag/package.json" ], "matchDepTypes": [ "dependencies" @@ -7936,8 +8128,8 @@ "patch", "minor" ], - "groupName": "minor and patch dependencies for gatsby-plugin-google-tagmanager", - "groupSlug": "gatsby-plugin-google-tagmanager-prod-minor", + "groupName": "minor and patch dependencies for gatsby-plugin-google-gtag", + "groupSlug": "gatsby-plugin-google-gtag-prod-minor", "excludePackageNames": [ "eslint", "prettier", @@ -7964,13 +8156,14 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-google-tagmanager{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-google-gtag{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-plugin-google-tagmanager/package.json" + "packages/gatsby-plugin-google-gtag/package.json" ], "matchDepTypes": [ "dependencies" @@ -7978,8 +8171,8 @@ "matchUpdateTypes": [ "major" ], - "groupName": "major dependencies for gatsby-plugin-google-tagmanager", - "groupSlug": "gatsby-plugin-google-tagmanager-prod-major", + "groupName": "major dependencies for gatsby-plugin-google-gtag", + "groupSlug": "gatsby-plugin-google-gtag-prod-major", "excludePackageNames": [ "eslint", "prettier", @@ -8006,20 +8199,21 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-google-tagmanager{{/unless}}", + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-google-gtag{{/unless}}", "dependencyDashboardApproval": true }, { "matchPaths": [ - "packages/gatsby-plugin-google-tagmanager/package.json" + "packages/gatsby-plugin-google-gtag/package.json" ], "matchDepTypes": [ "dependencies" ], - "groupName": "minor and patch dependencies for gatsby-plugin-google-tagmanager", - "groupSlug": "gatsby-plugin-google-tagmanager-prod-minor", + "groupName": "minor and patch dependencies for gatsby-plugin-google-gtag", + "groupSlug": "gatsby-plugin-google-gtag-prod-minor", "matchPackageNames": [], "matchUpdateTypes": [ "patch" @@ -8050,19 +8244,20 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-google-tagmanager{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-google-gtag{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-plugin-google-tagmanager/package.json" + "packages/gatsby-plugin-google-gtag/package.json" ], "matchDepTypes": [ "dependencies" ], - "groupName": "major dependencies for gatsby-plugin-google-tagmanager", - "groupSlug": "gatsby-plugin-google-tagmanager-prod-major", + "groupName": "major dependencies for gatsby-plugin-google-gtag", + "groupSlug": "gatsby-plugin-google-gtag-prod-major", "matchPackageNames": [], "matchUpdateTypes": [ "major", @@ -8094,14 +8289,15 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-google-tagmanager{{/unless}}", + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-google-gtag{{/unless}}", "dependencyDashboardApproval": true }, { "matchPaths": [ - "packages/gatsby-plugin-image/package.json" + "packages/gatsby-plugin-google-tagmanager/package.json" ], "matchDepTypes": [ "devDependencies" @@ -8110,8 +8306,8 @@ "patch", "minor" ], - "groupName": "[DEV] minor and patch dependencies for gatsby-plugin-image", - "groupSlug": "gatsby-plugin-image-dev-minor", + "groupName": "[DEV] minor and patch dependencies for gatsby-plugin-google-tagmanager", + "groupSlug": "gatsby-plugin-google-tagmanager-dev-minor", "automerge": true, "excludePackageNames": [ "eslint", @@ -8139,13 +8335,14 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-image{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-google-tagmanager{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-plugin-image/package.json" + "packages/gatsby-plugin-google-tagmanager/package.json" ], "matchDepTypes": [ "devDependencies" @@ -8153,8 +8350,8 @@ "matchUpdateTypes": [ "major" ], - "groupName": "[DEV] major dependencies for gatsby-plugin-image", - "groupSlug": "gatsby-plugin-image-dev-major", + "groupName": "[DEV] major dependencies for gatsby-plugin-google-tagmanager", + "groupSlug": "gatsby-plugin-google-tagmanager-dev-major", "automerge": true, "dependencyDashboardApproval": false, "excludePackageNames": [ @@ -8183,13 +8380,14 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-image{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-google-tagmanager{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-plugin-image/package.json" + "packages/gatsby-plugin-google-tagmanager/package.json" ], "matchDepTypes": [ "dependencies" @@ -8198,8 +8396,8 @@ "patch", "minor" ], - "groupName": "minor and patch dependencies for gatsby-plugin-image", - "groupSlug": "gatsby-plugin-image-prod-minor", + "groupName": "minor and patch dependencies for gatsby-plugin-google-tagmanager", + "groupSlug": "gatsby-plugin-google-tagmanager-prod-minor", "excludePackageNames": [ "eslint", "prettier", @@ -8226,13 +8424,14 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-image{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-google-tagmanager{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-plugin-image/package.json" + "packages/gatsby-plugin-google-tagmanager/package.json" ], "matchDepTypes": [ "dependencies" @@ -8240,8 +8439,8 @@ "matchUpdateTypes": [ "major" ], - "groupName": "major dependencies for gatsby-plugin-image", - "groupSlug": "gatsby-plugin-image-prod-major", + "groupName": "major dependencies for gatsby-plugin-google-tagmanager", + "groupSlug": "gatsby-plugin-google-tagmanager-prod-major", "excludePackageNames": [ "eslint", "prettier", @@ -8268,20 +8467,21 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-image{{/unless}}", + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-google-tagmanager{{/unless}}", "dependencyDashboardApproval": true }, { "matchPaths": [ - "packages/gatsby-plugin-image/package.json" + "packages/gatsby-plugin-google-tagmanager/package.json" ], "matchDepTypes": [ "dependencies" ], - "groupName": "minor and patch dependencies for gatsby-plugin-image", - "groupSlug": "gatsby-plugin-image-prod-minor", + "groupName": "minor and patch dependencies for gatsby-plugin-google-tagmanager", + "groupSlug": "gatsby-plugin-google-tagmanager-prod-minor", "matchPackageNames": [], "matchUpdateTypes": [ "patch" @@ -8312,19 +8512,20 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-image{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-google-tagmanager{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-plugin-image/package.json" + "packages/gatsby-plugin-google-tagmanager/package.json" ], "matchDepTypes": [ "dependencies" ], - "groupName": "major dependencies for gatsby-plugin-image", - "groupSlug": "gatsby-plugin-image-prod-major", + "groupName": "major dependencies for gatsby-plugin-google-tagmanager", + "groupSlug": "gatsby-plugin-google-tagmanager-prod-major", "matchPackageNames": [], "matchUpdateTypes": [ "major", @@ -8356,14 +8557,15 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-image{{/unless}}", + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-google-tagmanager{{/unless}}", "dependencyDashboardApproval": true }, { "matchPaths": [ - "packages/gatsby-plugin-jss/package.json" + "packages/gatsby-plugin-image/package.json" ], "matchDepTypes": [ "devDependencies" @@ -8372,8 +8574,8 @@ "patch", "minor" ], - "groupName": "[DEV] minor and patch dependencies for gatsby-plugin-jss", - "groupSlug": "gatsby-plugin-jss-dev-minor", + "groupName": "[DEV] minor and patch dependencies for gatsby-plugin-image", + "groupSlug": "gatsby-plugin-image-dev-minor", "automerge": true, "excludePackageNames": [ "eslint", @@ -8401,13 +8603,14 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-jss{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-image{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-plugin-jss/package.json" + "packages/gatsby-plugin-image/package.json" ], "matchDepTypes": [ "devDependencies" @@ -8415,8 +8618,8 @@ "matchUpdateTypes": [ "major" ], - "groupName": "[DEV] major dependencies for gatsby-plugin-jss", - "groupSlug": "gatsby-plugin-jss-dev-major", + "groupName": "[DEV] major dependencies for gatsby-plugin-image", + "groupSlug": "gatsby-plugin-image-dev-major", "automerge": true, "dependencyDashboardApproval": false, "excludePackageNames": [ @@ -8445,13 +8648,14 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-jss{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-image{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-plugin-jss/package.json" + "packages/gatsby-plugin-image/package.json" ], "matchDepTypes": [ "dependencies" @@ -8460,8 +8664,8 @@ "patch", "minor" ], - "groupName": "minor and patch dependencies for gatsby-plugin-jss", - "groupSlug": "gatsby-plugin-jss-prod-minor", + "groupName": "minor and patch dependencies for gatsby-plugin-image", + "groupSlug": "gatsby-plugin-image-prod-minor", "excludePackageNames": [ "eslint", "prettier", @@ -8488,13 +8692,14 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-jss{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-image{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-plugin-jss/package.json" + "packages/gatsby-plugin-image/package.json" ], "matchDepTypes": [ "dependencies" @@ -8502,8 +8707,8 @@ "matchUpdateTypes": [ "major" ], - "groupName": "major dependencies for gatsby-plugin-jss", - "groupSlug": "gatsby-plugin-jss-prod-major", + "groupName": "major dependencies for gatsby-plugin-image", + "groupSlug": "gatsby-plugin-image-prod-major", "excludePackageNames": [ "eslint", "prettier", @@ -8530,20 +8735,21 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-jss{{/unless}}", + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-image{{/unless}}", "dependencyDashboardApproval": true }, { "matchPaths": [ - "packages/gatsby-plugin-jss/package.json" + "packages/gatsby-plugin-image/package.json" ], "matchDepTypes": [ "dependencies" ], - "groupName": "minor and patch dependencies for gatsby-plugin-jss", - "groupSlug": "gatsby-plugin-jss-prod-minor", + "groupName": "minor and patch dependencies for gatsby-plugin-image", + "groupSlug": "gatsby-plugin-image-prod-minor", "matchPackageNames": [], "matchUpdateTypes": [ "patch" @@ -8574,19 +8780,20 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-jss{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-image{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-plugin-jss/package.json" + "packages/gatsby-plugin-image/package.json" ], "matchDepTypes": [ "dependencies" ], - "groupName": "major dependencies for gatsby-plugin-jss", - "groupSlug": "gatsby-plugin-jss-prod-major", + "groupName": "major dependencies for gatsby-plugin-image", + "groupSlug": "gatsby-plugin-image-prod-major", "matchPackageNames": [], "matchUpdateTypes": [ "major", @@ -8618,14 +8825,15 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-jss{{/unless}}", + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-image{{/unless}}", "dependencyDashboardApproval": true }, { "matchPaths": [ - "packages/gatsby-plugin-layout/package.json" + "packages/gatsby-plugin-jss/package.json" ], "matchDepTypes": [ "devDependencies" @@ -8634,8 +8842,8 @@ "patch", "minor" ], - "groupName": "[DEV] minor and patch dependencies for gatsby-plugin-layout", - "groupSlug": "gatsby-plugin-layout-dev-minor", + "groupName": "[DEV] minor and patch dependencies for gatsby-plugin-jss", + "groupSlug": "gatsby-plugin-jss-dev-minor", "automerge": true, "excludePackageNames": [ "eslint", @@ -8663,13 +8871,14 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-layout{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-jss{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-plugin-layout/package.json" + "packages/gatsby-plugin-jss/package.json" ], "matchDepTypes": [ "devDependencies" @@ -8677,8 +8886,8 @@ "matchUpdateTypes": [ "major" ], - "groupName": "[DEV] major dependencies for gatsby-plugin-layout", - "groupSlug": "gatsby-plugin-layout-dev-major", + "groupName": "[DEV] major dependencies for gatsby-plugin-jss", + "groupSlug": "gatsby-plugin-jss-dev-major", "automerge": true, "dependencyDashboardApproval": false, "excludePackageNames": [ @@ -8707,13 +8916,14 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-layout{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-jss{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-plugin-layout/package.json" + "packages/gatsby-plugin-jss/package.json" ], "matchDepTypes": [ "dependencies" @@ -8722,8 +8932,8 @@ "patch", "minor" ], - "groupName": "minor and patch dependencies for gatsby-plugin-layout", - "groupSlug": "gatsby-plugin-layout-prod-minor", + "groupName": "minor and patch dependencies for gatsby-plugin-jss", + "groupSlug": "gatsby-plugin-jss-prod-minor", "excludePackageNames": [ "eslint", "prettier", @@ -8750,13 +8960,14 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-layout{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-jss{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-plugin-layout/package.json" + "packages/gatsby-plugin-jss/package.json" ], "matchDepTypes": [ "dependencies" @@ -8764,8 +8975,8 @@ "matchUpdateTypes": [ "major" ], - "groupName": "major dependencies for gatsby-plugin-layout", - "groupSlug": "gatsby-plugin-layout-prod-major", + "groupName": "major dependencies for gatsby-plugin-jss", + "groupSlug": "gatsby-plugin-jss-prod-major", "excludePackageNames": [ "eslint", "prettier", @@ -8792,20 +9003,21 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-layout{{/unless}}", + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-jss{{/unless}}", "dependencyDashboardApproval": true }, { "matchPaths": [ - "packages/gatsby-plugin-layout/package.json" + "packages/gatsby-plugin-jss/package.json" ], "matchDepTypes": [ "dependencies" ], - "groupName": "minor and patch dependencies for gatsby-plugin-layout", - "groupSlug": "gatsby-plugin-layout-prod-minor", + "groupName": "minor and patch dependencies for gatsby-plugin-jss", + "groupSlug": "gatsby-plugin-jss-prod-minor", "matchPackageNames": [], "matchUpdateTypes": [ "patch" @@ -8836,19 +9048,20 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-layout{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-jss{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-plugin-layout/package.json" + "packages/gatsby-plugin-jss/package.json" ], "matchDepTypes": [ "dependencies" ], - "groupName": "major dependencies for gatsby-plugin-layout", - "groupSlug": "gatsby-plugin-layout-prod-major", + "groupName": "major dependencies for gatsby-plugin-jss", + "groupSlug": "gatsby-plugin-jss-prod-major", "matchPackageNames": [], "matchUpdateTypes": [ "major", @@ -8880,14 +9093,15 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-layout{{/unless}}", + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-jss{{/unless}}", "dependencyDashboardApproval": true }, { "matchPaths": [ - "packages/gatsby-plugin-less/package.json" + "packages/gatsby-plugin-layout/package.json" ], "matchDepTypes": [ "devDependencies" @@ -8896,8 +9110,8 @@ "patch", "minor" ], - "groupName": "[DEV] minor and patch dependencies for gatsby-plugin-less", - "groupSlug": "gatsby-plugin-less-dev-minor", + "groupName": "[DEV] minor and patch dependencies for gatsby-plugin-layout", + "groupSlug": "gatsby-plugin-layout-dev-minor", "automerge": true, "excludePackageNames": [ "eslint", @@ -8925,13 +9139,14 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-less{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-layout{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-plugin-less/package.json" + "packages/gatsby-plugin-layout/package.json" ], "matchDepTypes": [ "devDependencies" @@ -8939,8 +9154,8 @@ "matchUpdateTypes": [ "major" ], - "groupName": "[DEV] major dependencies for gatsby-plugin-less", - "groupSlug": "gatsby-plugin-less-dev-major", + "groupName": "[DEV] major dependencies for gatsby-plugin-layout", + "groupSlug": "gatsby-plugin-layout-dev-major", "automerge": true, "dependencyDashboardApproval": false, "excludePackageNames": [ @@ -8969,13 +9184,14 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-less{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-layout{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-plugin-less/package.json" + "packages/gatsby-plugin-layout/package.json" ], "matchDepTypes": [ "dependencies" @@ -8984,8 +9200,8 @@ "patch", "minor" ], - "groupName": "minor and patch dependencies for gatsby-plugin-less", - "groupSlug": "gatsby-plugin-less-prod-minor", + "groupName": "minor and patch dependencies for gatsby-plugin-layout", + "groupSlug": "gatsby-plugin-layout-prod-minor", "excludePackageNames": [ "eslint", "prettier", @@ -9012,13 +9228,14 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-less{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-layout{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-plugin-less/package.json" + "packages/gatsby-plugin-layout/package.json" ], "matchDepTypes": [ "dependencies" @@ -9026,8 +9243,8 @@ "matchUpdateTypes": [ "major" ], - "groupName": "major dependencies for gatsby-plugin-less", - "groupSlug": "gatsby-plugin-less-prod-major", + "groupName": "major dependencies for gatsby-plugin-layout", + "groupSlug": "gatsby-plugin-layout-prod-major", "excludePackageNames": [ "eslint", "prettier", @@ -9054,20 +9271,21 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-less{{/unless}}", + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-layout{{/unless}}", "dependencyDashboardApproval": true }, { "matchPaths": [ - "packages/gatsby-plugin-less/package.json" + "packages/gatsby-plugin-layout/package.json" ], "matchDepTypes": [ "dependencies" ], - "groupName": "minor and patch dependencies for gatsby-plugin-less", - "groupSlug": "gatsby-plugin-less-prod-minor", + "groupName": "minor and patch dependencies for gatsby-plugin-layout", + "groupSlug": "gatsby-plugin-layout-prod-minor", "matchPackageNames": [], "matchUpdateTypes": [ "patch" @@ -9098,19 +9316,20 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-less{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-layout{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-plugin-less/package.json" + "packages/gatsby-plugin-layout/package.json" ], "matchDepTypes": [ "dependencies" ], - "groupName": "major dependencies for gatsby-plugin-less", - "groupSlug": "gatsby-plugin-less-prod-major", + "groupName": "major dependencies for gatsby-plugin-layout", + "groupSlug": "gatsby-plugin-layout-prod-major", "matchPackageNames": [], "matchUpdateTypes": [ "major", @@ -9142,14 +9361,15 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-less{{/unless}}", + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-layout{{/unless}}", "dependencyDashboardApproval": true }, { "matchPaths": [ - "packages/gatsby-plugin-lodash/package.json" + "packages/gatsby-plugin-less/package.json" ], "matchDepTypes": [ "devDependencies" @@ -9158,8 +9378,8 @@ "patch", "minor" ], - "groupName": "[DEV] minor and patch dependencies for gatsby-plugin-lodash", - "groupSlug": "gatsby-plugin-lodash-dev-minor", + "groupName": "[DEV] minor and patch dependencies for gatsby-plugin-less", + "groupSlug": "gatsby-plugin-less-dev-minor", "automerge": true, "excludePackageNames": [ "eslint", @@ -9187,13 +9407,14 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-lodash{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-less{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-plugin-lodash/package.json" + "packages/gatsby-plugin-less/package.json" ], "matchDepTypes": [ "devDependencies" @@ -9201,8 +9422,8 @@ "matchUpdateTypes": [ "major" ], - "groupName": "[DEV] major dependencies for gatsby-plugin-lodash", - "groupSlug": "gatsby-plugin-lodash-dev-major", + "groupName": "[DEV] major dependencies for gatsby-plugin-less", + "groupSlug": "gatsby-plugin-less-dev-major", "automerge": true, "dependencyDashboardApproval": false, "excludePackageNames": [ @@ -9231,13 +9452,14 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-lodash{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-less{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-plugin-lodash/package.json" + "packages/gatsby-plugin-less/package.json" ], "matchDepTypes": [ "dependencies" @@ -9246,8 +9468,8 @@ "patch", "minor" ], - "groupName": "minor and patch dependencies for gatsby-plugin-lodash", - "groupSlug": "gatsby-plugin-lodash-prod-minor", + "groupName": "minor and patch dependencies for gatsby-plugin-less", + "groupSlug": "gatsby-plugin-less-prod-minor", "excludePackageNames": [ "eslint", "prettier", @@ -9274,13 +9496,14 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-lodash{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-less{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-plugin-lodash/package.json" + "packages/gatsby-plugin-less/package.json" ], "matchDepTypes": [ "dependencies" @@ -9288,8 +9511,8 @@ "matchUpdateTypes": [ "major" ], - "groupName": "major dependencies for gatsby-plugin-lodash", - "groupSlug": "gatsby-plugin-lodash-prod-major", + "groupName": "major dependencies for gatsby-plugin-less", + "groupSlug": "gatsby-plugin-less-prod-major", "excludePackageNames": [ "eslint", "prettier", @@ -9316,23 +9539,22 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-lodash{{/unless}}", + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-less{{/unless}}", "dependencyDashboardApproval": true }, { "matchPaths": [ - "packages/gatsby-plugin-lodash/package.json" + "packages/gatsby-plugin-less/package.json" ], "matchDepTypes": [ "dependencies" ], - "groupName": "minor and patch dependencies for gatsby-plugin-lodash", - "groupSlug": "gatsby-plugin-lodash-prod-minor", - "matchPackageNames": [ - "lodash-webpack-plugin" - ], + "groupName": "minor and patch dependencies for gatsby-plugin-less", + "groupSlug": "gatsby-plugin-less-prod-minor", + "matchPackageNames": [], "matchUpdateTypes": [ "patch" ], @@ -9362,22 +9584,21 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-lodash{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-less{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-plugin-lodash/package.json" + "packages/gatsby-plugin-less/package.json" ], "matchDepTypes": [ "dependencies" ], - "groupName": "major dependencies for gatsby-plugin-lodash", - "groupSlug": "gatsby-plugin-lodash-prod-major", - "matchPackageNames": [ - "lodash-webpack-plugin" - ], + "groupName": "major dependencies for gatsby-plugin-less", + "groupSlug": "gatsby-plugin-less-prod-major", + "matchPackageNames": [], "matchUpdateTypes": [ "major", "minor" @@ -9408,14 +9629,15 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-lodash{{/unless}}", + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-less{{/unless}}", "dependencyDashboardApproval": true }, { "matchPaths": [ - "packages/gatsby-plugin-manifest/package.json" + "packages/gatsby-plugin-lodash/package.json" ], "matchDepTypes": [ "devDependencies" @@ -9424,8 +9646,8 @@ "patch", "minor" ], - "groupName": "[DEV] minor and patch dependencies for gatsby-plugin-manifest", - "groupSlug": "gatsby-plugin-manifest-dev-minor", + "groupName": "[DEV] minor and patch dependencies for gatsby-plugin-lodash", + "groupSlug": "gatsby-plugin-lodash-dev-minor", "automerge": true, "excludePackageNames": [ "eslint", @@ -9453,13 +9675,14 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-manifest{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-lodash{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-plugin-manifest/package.json" + "packages/gatsby-plugin-lodash/package.json" ], "matchDepTypes": [ "devDependencies" @@ -9467,8 +9690,8 @@ "matchUpdateTypes": [ "major" ], - "groupName": "[DEV] major dependencies for gatsby-plugin-manifest", - "groupSlug": "gatsby-plugin-manifest-dev-major", + "groupName": "[DEV] major dependencies for gatsby-plugin-lodash", + "groupSlug": "gatsby-plugin-lodash-dev-major", "automerge": true, "dependencyDashboardApproval": false, "excludePackageNames": [ @@ -9497,13 +9720,14 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-manifest{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-lodash{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-plugin-manifest/package.json" + "packages/gatsby-plugin-lodash/package.json" ], "matchDepTypes": [ "dependencies" @@ -9512,8 +9736,8 @@ "patch", "minor" ], - "groupName": "minor and patch dependencies for gatsby-plugin-manifest", - "groupSlug": "gatsby-plugin-manifest-prod-minor", + "groupName": "minor and patch dependencies for gatsby-plugin-lodash", + "groupSlug": "gatsby-plugin-lodash-prod-minor", "excludePackageNames": [ "eslint", "prettier", @@ -9540,13 +9764,14 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-manifest{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-lodash{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-plugin-manifest/package.json" + "packages/gatsby-plugin-lodash/package.json" ], "matchDepTypes": [ "dependencies" @@ -9554,8 +9779,8 @@ "matchUpdateTypes": [ "major" ], - "groupName": "major dependencies for gatsby-plugin-manifest", - "groupSlug": "gatsby-plugin-manifest-prod-major", + "groupName": "major dependencies for gatsby-plugin-lodash", + "groupSlug": "gatsby-plugin-lodash-prod-major", "excludePackageNames": [ "eslint", "prettier", @@ -9582,22 +9807,23 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-manifest{{/unless}}", + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-lodash{{/unless}}", "dependencyDashboardApproval": true }, { "matchPaths": [ - "packages/gatsby-plugin-manifest/package.json" + "packages/gatsby-plugin-lodash/package.json" ], "matchDepTypes": [ "dependencies" ], - "groupName": "minor and patch dependencies for gatsby-plugin-manifest", - "groupSlug": "gatsby-plugin-manifest-prod-minor", + "groupName": "minor and patch dependencies for gatsby-plugin-lodash", + "groupSlug": "gatsby-plugin-lodash-prod-minor", "matchPackageNames": [ - "sharp" + "lodash-webpack-plugin" ], "matchUpdateTypes": [ "patch" @@ -9628,21 +9854,22 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-manifest{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-lodash{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-plugin-manifest/package.json" + "packages/gatsby-plugin-lodash/package.json" ], "matchDepTypes": [ "dependencies" ], - "groupName": "major dependencies for gatsby-plugin-manifest", - "groupSlug": "gatsby-plugin-manifest-prod-major", + "groupName": "major dependencies for gatsby-plugin-lodash", + "groupSlug": "gatsby-plugin-lodash-prod-major", "matchPackageNames": [ - "sharp" + "lodash-webpack-plugin" ], "matchUpdateTypes": [ "major", @@ -9674,14 +9901,15 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-manifest{{/unless}}", + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-lodash{{/unless}}", "dependencyDashboardApproval": true }, { "matchPaths": [ - "packages/gatsby-plugin-mdx/package.json" + "packages/gatsby-plugin-manifest/package.json" ], "matchDepTypes": [ "devDependencies" @@ -9690,8 +9918,8 @@ "patch", "minor" ], - "groupName": "[DEV] minor and patch dependencies for gatsby-plugin-mdx", - "groupSlug": "gatsby-plugin-mdx-dev-minor", + "groupName": "[DEV] minor and patch dependencies for gatsby-plugin-manifest", + "groupSlug": "gatsby-plugin-manifest-dev-minor", "automerge": true, "excludePackageNames": [ "eslint", @@ -9719,13 +9947,14 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-mdx{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-manifest{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-plugin-mdx/package.json" + "packages/gatsby-plugin-manifest/package.json" ], "matchDepTypes": [ "devDependencies" @@ -9733,8 +9962,8 @@ "matchUpdateTypes": [ "major" ], - "groupName": "[DEV] major dependencies for gatsby-plugin-mdx", - "groupSlug": "gatsby-plugin-mdx-dev-major", + "groupName": "[DEV] major dependencies for gatsby-plugin-manifest", + "groupSlug": "gatsby-plugin-manifest-dev-major", "automerge": true, "dependencyDashboardApproval": false, "excludePackageNames": [ @@ -9763,13 +9992,14 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-mdx{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-manifest{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-plugin-mdx/package.json" + "packages/gatsby-plugin-manifest/package.json" ], "matchDepTypes": [ "dependencies" @@ -9778,8 +10008,8 @@ "patch", "minor" ], - "groupName": "minor and patch dependencies for gatsby-plugin-mdx", - "groupSlug": "gatsby-plugin-mdx-prod-minor", + "groupName": "minor and patch dependencies for gatsby-plugin-manifest", + "groupSlug": "gatsby-plugin-manifest-prod-minor", "excludePackageNames": [ "eslint", "prettier", @@ -9806,13 +10036,14 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-mdx{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-manifest{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-plugin-mdx/package.json" + "packages/gatsby-plugin-manifest/package.json" ], "matchDepTypes": [ "dependencies" @@ -9820,8 +10051,8 @@ "matchUpdateTypes": [ "major" ], - "groupName": "major dependencies for gatsby-plugin-mdx", - "groupSlug": "gatsby-plugin-mdx-prod-major", + "groupName": "major dependencies for gatsby-plugin-manifest", + "groupSlug": "gatsby-plugin-manifest-prod-major", "excludePackageNames": [ "eslint", "prettier", @@ -9848,23 +10079,23 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-mdx{{/unless}}", + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-manifest{{/unless}}", "dependencyDashboardApproval": true }, { "matchPaths": [ - "packages/gatsby-plugin-mdx/package.json" + "packages/gatsby-plugin-manifest/package.json" ], "matchDepTypes": [ "dependencies" ], - "groupName": "minor and patch dependencies for gatsby-plugin-mdx", - "groupSlug": "gatsby-plugin-mdx-prod-minor", + "groupName": "minor and patch dependencies for gatsby-plugin-manifest", + "groupSlug": "gatsby-plugin-manifest-prod-minor", "matchPackageNames": [ - "eval", - "style-to-object" + "sharp" ], "matchUpdateTypes": [ "patch" @@ -9895,22 +10126,22 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-mdx{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-manifest{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-plugin-mdx/package.json" + "packages/gatsby-plugin-manifest/package.json" ], "matchDepTypes": [ "dependencies" ], - "groupName": "major dependencies for gatsby-plugin-mdx", - "groupSlug": "gatsby-plugin-mdx-prod-major", + "groupName": "major dependencies for gatsby-plugin-manifest", + "groupSlug": "gatsby-plugin-manifest-prod-major", "matchPackageNames": [ - "eval", - "style-to-object" + "sharp" ], "matchUpdateTypes": [ "major", @@ -9942,14 +10173,15 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-mdx{{/unless}}", + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-manifest{{/unless}}", "dependencyDashboardApproval": true }, { "matchPaths": [ - "packages/gatsby-plugin-netlify-cms/package.json" + "packages/gatsby-plugin-mdx/package.json" ], "matchDepTypes": [ "devDependencies" @@ -9958,8 +10190,8 @@ "patch", "minor" ], - "groupName": "[DEV] minor and patch dependencies for gatsby-plugin-netlify-cms", - "groupSlug": "gatsby-plugin-netlify-cms-dev-minor", + "groupName": "[DEV] minor and patch dependencies for gatsby-plugin-mdx", + "groupSlug": "gatsby-plugin-mdx-dev-minor", "automerge": true, "excludePackageNames": [ "eslint", @@ -9987,13 +10219,14 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-netlify-cms{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-mdx{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-plugin-netlify-cms/package.json" + "packages/gatsby-plugin-mdx/package.json" ], "matchDepTypes": [ "devDependencies" @@ -10001,8 +10234,8 @@ "matchUpdateTypes": [ "major" ], - "groupName": "[DEV] major dependencies for gatsby-plugin-netlify-cms", - "groupSlug": "gatsby-plugin-netlify-cms-dev-major", + "groupName": "[DEV] major dependencies for gatsby-plugin-mdx", + "groupSlug": "gatsby-plugin-mdx-dev-major", "automerge": true, "dependencyDashboardApproval": false, "excludePackageNames": [ @@ -10031,13 +10264,14 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-netlify-cms{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-mdx{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-plugin-netlify-cms/package.json" + "packages/gatsby-plugin-mdx/package.json" ], "matchDepTypes": [ "dependencies" @@ -10046,8 +10280,8 @@ "patch", "minor" ], - "groupName": "minor and patch dependencies for gatsby-plugin-netlify-cms", - "groupSlug": "gatsby-plugin-netlify-cms-prod-minor", + "groupName": "minor and patch dependencies for gatsby-plugin-mdx", + "groupSlug": "gatsby-plugin-mdx-prod-minor", "excludePackageNames": [ "eslint", "prettier", @@ -10074,13 +10308,14 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-netlify-cms{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-mdx{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-plugin-netlify-cms/package.json" + "packages/gatsby-plugin-mdx/package.json" ], "matchDepTypes": [ "dependencies" @@ -10088,8 +10323,8 @@ "matchUpdateTypes": [ "major" ], - "groupName": "major dependencies for gatsby-plugin-netlify-cms", - "groupSlug": "gatsby-plugin-netlify-cms-prod-major", + "groupName": "major dependencies for gatsby-plugin-mdx", + "groupSlug": "gatsby-plugin-mdx-prod-major", "excludePackageNames": [ "eslint", "prettier", @@ -10116,21 +10351,25 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-netlify-cms{{/unless}}", + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-mdx{{/unless}}", "dependencyDashboardApproval": true }, { "matchPaths": [ - "packages/gatsby-plugin-netlify-cms/package.json" + "packages/gatsby-plugin-mdx/package.json" ], "matchDepTypes": [ "dependencies" ], - "groupName": "minor and patch dependencies for gatsby-plugin-netlify-cms", - "groupSlug": "gatsby-plugin-netlify-cms-prod-minor", - "matchPackageNames": [], + "groupName": "minor and patch dependencies for gatsby-plugin-mdx", + "groupSlug": "gatsby-plugin-mdx-prod-minor", + "matchPackageNames": [ + "eval", + "style-to-object" + ], "matchUpdateTypes": [ "patch" ], @@ -10160,20 +10399,24 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-netlify-cms{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-mdx{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-plugin-netlify-cms/package.json" + "packages/gatsby-plugin-mdx/package.json" ], "matchDepTypes": [ "dependencies" ], - "groupName": "major dependencies for gatsby-plugin-netlify-cms", - "groupSlug": "gatsby-plugin-netlify-cms-prod-major", - "matchPackageNames": [], + "groupName": "major dependencies for gatsby-plugin-mdx", + "groupSlug": "gatsby-plugin-mdx-prod-major", + "matchPackageNames": [ + "eval", + "style-to-object" + ], "matchUpdateTypes": [ "major", "minor" @@ -10204,14 +10447,15 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-netlify-cms{{/unless}}", + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-mdx{{/unless}}", "dependencyDashboardApproval": true }, { "matchPaths": [ - "packages/gatsby-plugin-no-sourcemaps/package.json" + "packages/gatsby-plugin-netlify-cms/package.json" ], "matchDepTypes": [ "devDependencies" @@ -10220,8 +10464,8 @@ "patch", "minor" ], - "groupName": "[DEV] minor and patch dependencies for gatsby-plugin-no-sourcemaps", - "groupSlug": "gatsby-plugin-no-sourcemaps-dev-minor", + "groupName": "[DEV] minor and patch dependencies for gatsby-plugin-netlify-cms", + "groupSlug": "gatsby-plugin-netlify-cms-dev-minor", "automerge": true, "excludePackageNames": [ "eslint", @@ -10249,13 +10493,14 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-no-sourcemaps{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-netlify-cms{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-plugin-no-sourcemaps/package.json" + "packages/gatsby-plugin-netlify-cms/package.json" ], "matchDepTypes": [ "devDependencies" @@ -10263,8 +10508,8 @@ "matchUpdateTypes": [ "major" ], - "groupName": "[DEV] major dependencies for gatsby-plugin-no-sourcemaps", - "groupSlug": "gatsby-plugin-no-sourcemaps-dev-major", + "groupName": "[DEV] major dependencies for gatsby-plugin-netlify-cms", + "groupSlug": "gatsby-plugin-netlify-cms-dev-major", "automerge": true, "dependencyDashboardApproval": false, "excludePackageNames": [ @@ -10293,13 +10538,14 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-no-sourcemaps{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-netlify-cms{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-plugin-no-sourcemaps/package.json" + "packages/gatsby-plugin-netlify-cms/package.json" ], "matchDepTypes": [ "dependencies" @@ -10308,8 +10554,8 @@ "patch", "minor" ], - "groupName": "minor and patch dependencies for gatsby-plugin-no-sourcemaps", - "groupSlug": "gatsby-plugin-no-sourcemaps-prod-minor", + "groupName": "minor and patch dependencies for gatsby-plugin-netlify-cms", + "groupSlug": "gatsby-plugin-netlify-cms-prod-minor", "excludePackageNames": [ "eslint", "prettier", @@ -10336,13 +10582,14 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-no-sourcemaps{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-netlify-cms{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-plugin-no-sourcemaps/package.json" + "packages/gatsby-plugin-netlify-cms/package.json" ], "matchDepTypes": [ "dependencies" @@ -10350,8 +10597,8 @@ "matchUpdateTypes": [ "major" ], - "groupName": "major dependencies for gatsby-plugin-no-sourcemaps", - "groupSlug": "gatsby-plugin-no-sourcemaps-prod-major", + "groupName": "major dependencies for gatsby-plugin-netlify-cms", + "groupSlug": "gatsby-plugin-netlify-cms-prod-major", "excludePackageNames": [ "eslint", "prettier", @@ -10378,20 +10625,21 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-no-sourcemaps{{/unless}}", + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-netlify-cms{{/unless}}", "dependencyDashboardApproval": true }, { "matchPaths": [ - "packages/gatsby-plugin-no-sourcemaps/package.json" + "packages/gatsby-plugin-netlify-cms/package.json" ], "matchDepTypes": [ "dependencies" ], - "groupName": "minor and patch dependencies for gatsby-plugin-no-sourcemaps", - "groupSlug": "gatsby-plugin-no-sourcemaps-prod-minor", + "groupName": "minor and patch dependencies for gatsby-plugin-netlify-cms", + "groupSlug": "gatsby-plugin-netlify-cms-prod-minor", "matchPackageNames": [], "matchUpdateTypes": [ "patch" @@ -10422,19 +10670,20 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-no-sourcemaps{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-netlify-cms{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-plugin-no-sourcemaps/package.json" + "packages/gatsby-plugin-netlify-cms/package.json" ], "matchDepTypes": [ "dependencies" ], - "groupName": "major dependencies for gatsby-plugin-no-sourcemaps", - "groupSlug": "gatsby-plugin-no-sourcemaps-prod-major", + "groupName": "major dependencies for gatsby-plugin-netlify-cms", + "groupSlug": "gatsby-plugin-netlify-cms-prod-major", "matchPackageNames": [], "matchUpdateTypes": [ "major", @@ -10466,14 +10715,15 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-no-sourcemaps{{/unless}}", + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-netlify-cms{{/unless}}", "dependencyDashboardApproval": true }, { "matchPaths": [ - "packages/gatsby-plugin-nprogress/package.json" + "packages/gatsby-plugin-no-sourcemaps/package.json" ], "matchDepTypes": [ "devDependencies" @@ -10482,8 +10732,8 @@ "patch", "minor" ], - "groupName": "[DEV] minor and patch dependencies for gatsby-plugin-nprogress", - "groupSlug": "gatsby-plugin-nprogress-dev-minor", + "groupName": "[DEV] minor and patch dependencies for gatsby-plugin-no-sourcemaps", + "groupSlug": "gatsby-plugin-no-sourcemaps-dev-minor", "automerge": true, "excludePackageNames": [ "eslint", @@ -10511,13 +10761,14 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-nprogress{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-no-sourcemaps{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-plugin-nprogress/package.json" + "packages/gatsby-plugin-no-sourcemaps/package.json" ], "matchDepTypes": [ "devDependencies" @@ -10525,8 +10776,8 @@ "matchUpdateTypes": [ "major" ], - "groupName": "[DEV] major dependencies for gatsby-plugin-nprogress", - "groupSlug": "gatsby-plugin-nprogress-dev-major", + "groupName": "[DEV] major dependencies for gatsby-plugin-no-sourcemaps", + "groupSlug": "gatsby-plugin-no-sourcemaps-dev-major", "automerge": true, "dependencyDashboardApproval": false, "excludePackageNames": [ @@ -10555,13 +10806,14 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-nprogress{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-no-sourcemaps{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-plugin-nprogress/package.json" + "packages/gatsby-plugin-no-sourcemaps/package.json" ], "matchDepTypes": [ "dependencies" @@ -10570,8 +10822,8 @@ "patch", "minor" ], - "groupName": "minor and patch dependencies for gatsby-plugin-nprogress", - "groupSlug": "gatsby-plugin-nprogress-prod-minor", + "groupName": "minor and patch dependencies for gatsby-plugin-no-sourcemaps", + "groupSlug": "gatsby-plugin-no-sourcemaps-prod-minor", "excludePackageNames": [ "eslint", "prettier", @@ -10598,13 +10850,14 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-nprogress{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-no-sourcemaps{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-plugin-nprogress/package.json" + "packages/gatsby-plugin-no-sourcemaps/package.json" ], "matchDepTypes": [ "dependencies" @@ -10612,8 +10865,8 @@ "matchUpdateTypes": [ "major" ], - "groupName": "major dependencies for gatsby-plugin-nprogress", - "groupSlug": "gatsby-plugin-nprogress-prod-major", + "groupName": "major dependencies for gatsby-plugin-no-sourcemaps", + "groupSlug": "gatsby-plugin-no-sourcemaps-prod-major", "excludePackageNames": [ "eslint", "prettier", @@ -10640,20 +10893,21 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-nprogress{{/unless}}", + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-no-sourcemaps{{/unless}}", "dependencyDashboardApproval": true }, { "matchPaths": [ - "packages/gatsby-plugin-nprogress/package.json" + "packages/gatsby-plugin-no-sourcemaps/package.json" ], "matchDepTypes": [ "dependencies" ], - "groupName": "minor and patch dependencies for gatsby-plugin-nprogress", - "groupSlug": "gatsby-plugin-nprogress-prod-minor", + "groupName": "minor and patch dependencies for gatsby-plugin-no-sourcemaps", + "groupSlug": "gatsby-plugin-no-sourcemaps-prod-minor", "matchPackageNames": [], "matchUpdateTypes": [ "patch" @@ -10684,19 +10938,20 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-nprogress{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-no-sourcemaps{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-plugin-nprogress/package.json" + "packages/gatsby-plugin-no-sourcemaps/package.json" ], "matchDepTypes": [ "dependencies" ], - "groupName": "major dependencies for gatsby-plugin-nprogress", - "groupSlug": "gatsby-plugin-nprogress-prod-major", + "groupName": "major dependencies for gatsby-plugin-no-sourcemaps", + "groupSlug": "gatsby-plugin-no-sourcemaps-prod-major", "matchPackageNames": [], "matchUpdateTypes": [ "major", @@ -10728,14 +10983,15 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-nprogress{{/unless}}", + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-no-sourcemaps{{/unless}}", "dependencyDashboardApproval": true }, { "matchPaths": [ - "packages/gatsby-plugin-offline/package.json" + "packages/gatsby-plugin-nprogress/package.json" ], "matchDepTypes": [ "devDependencies" @@ -10744,8 +11000,8 @@ "patch", "minor" ], - "groupName": "[DEV] minor and patch dependencies for gatsby-plugin-offline", - "groupSlug": "gatsby-plugin-offline-dev-minor", + "groupName": "[DEV] minor and patch dependencies for gatsby-plugin-nprogress", + "groupSlug": "gatsby-plugin-nprogress-dev-minor", "automerge": true, "excludePackageNames": [ "eslint", @@ -10773,13 +11029,14 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-offline{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-nprogress{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-plugin-offline/package.json" + "packages/gatsby-plugin-nprogress/package.json" ], "matchDepTypes": [ "devDependencies" @@ -10787,8 +11044,8 @@ "matchUpdateTypes": [ "major" ], - "groupName": "[DEV] major dependencies for gatsby-plugin-offline", - "groupSlug": "gatsby-plugin-offline-dev-major", + "groupName": "[DEV] major dependencies for gatsby-plugin-nprogress", + "groupSlug": "gatsby-plugin-nprogress-dev-major", "automerge": true, "dependencyDashboardApproval": false, "excludePackageNames": [ @@ -10817,13 +11074,14 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-offline{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-nprogress{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-plugin-offline/package.json" + "packages/gatsby-plugin-nprogress/package.json" ], "matchDepTypes": [ "dependencies" @@ -10832,8 +11090,8 @@ "patch", "minor" ], - "groupName": "minor and patch dependencies for gatsby-plugin-offline", - "groupSlug": "gatsby-plugin-offline-prod-minor", + "groupName": "minor and patch dependencies for gatsby-plugin-nprogress", + "groupSlug": "gatsby-plugin-nprogress-prod-minor", "excludePackageNames": [ "eslint", "prettier", @@ -10860,13 +11118,14 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-offline{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-nprogress{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-plugin-offline/package.json" + "packages/gatsby-plugin-nprogress/package.json" ], "matchDepTypes": [ "dependencies" @@ -10874,8 +11133,8 @@ "matchUpdateTypes": [ "major" ], - "groupName": "major dependencies for gatsby-plugin-offline", - "groupSlug": "gatsby-plugin-offline-prod-major", + "groupName": "major dependencies for gatsby-plugin-nprogress", + "groupSlug": "gatsby-plugin-nprogress-prod-major", "excludePackageNames": [ "eslint", "prettier", @@ -10902,20 +11161,21 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-offline{{/unless}}", + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-nprogress{{/unless}}", "dependencyDashboardApproval": true }, { "matchPaths": [ - "packages/gatsby-plugin-offline/package.json" + "packages/gatsby-plugin-nprogress/package.json" ], "matchDepTypes": [ "dependencies" ], - "groupName": "minor and patch dependencies for gatsby-plugin-offline", - "groupSlug": "gatsby-plugin-offline-prod-minor", + "groupName": "minor and patch dependencies for gatsby-plugin-nprogress", + "groupSlug": "gatsby-plugin-nprogress-prod-minor", "matchPackageNames": [], "matchUpdateTypes": [ "patch" @@ -10946,19 +11206,20 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-offline{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-nprogress{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-plugin-offline/package.json" + "packages/gatsby-plugin-nprogress/package.json" ], "matchDepTypes": [ "dependencies" ], - "groupName": "major dependencies for gatsby-plugin-offline", - "groupSlug": "gatsby-plugin-offline-prod-major", + "groupName": "major dependencies for gatsby-plugin-nprogress", + "groupSlug": "gatsby-plugin-nprogress-prod-major", "matchPackageNames": [], "matchUpdateTypes": [ "major", @@ -10990,14 +11251,15 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-offline{{/unless}}", + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-nprogress{{/unless}}", "dependencyDashboardApproval": true }, { "matchPaths": [ - "packages/gatsby-plugin-page-creator/package.json" + "packages/gatsby-plugin-offline/package.json" ], "matchDepTypes": [ "devDependencies" @@ -11006,8 +11268,8 @@ "patch", "minor" ], - "groupName": "[DEV] minor and patch dependencies for gatsby-plugin-page-creator", - "groupSlug": "gatsby-plugin-page-creator-dev-minor", + "groupName": "[DEV] minor and patch dependencies for gatsby-plugin-offline", + "groupSlug": "gatsby-plugin-offline-dev-minor", "automerge": true, "excludePackageNames": [ "eslint", @@ -11035,13 +11297,14 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-page-creator{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-offline{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-plugin-page-creator/package.json" + "packages/gatsby-plugin-offline/package.json" ], "matchDepTypes": [ "devDependencies" @@ -11049,8 +11312,8 @@ "matchUpdateTypes": [ "major" ], - "groupName": "[DEV] major dependencies for gatsby-plugin-page-creator", - "groupSlug": "gatsby-plugin-page-creator-dev-major", + "groupName": "[DEV] major dependencies for gatsby-plugin-offline", + "groupSlug": "gatsby-plugin-offline-dev-major", "automerge": true, "dependencyDashboardApproval": false, "excludePackageNames": [ @@ -11079,13 +11342,14 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-page-creator{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-offline{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-plugin-page-creator/package.json" + "packages/gatsby-plugin-offline/package.json" ], "matchDepTypes": [ "dependencies" @@ -11094,8 +11358,8 @@ "patch", "minor" ], - "groupName": "minor and patch dependencies for gatsby-plugin-page-creator", - "groupSlug": "gatsby-plugin-page-creator-prod-minor", + "groupName": "minor and patch dependencies for gatsby-plugin-offline", + "groupSlug": "gatsby-plugin-offline-prod-minor", "excludePackageNames": [ "eslint", "prettier", @@ -11122,13 +11386,14 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-page-creator{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-offline{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-plugin-page-creator/package.json" + "packages/gatsby-plugin-offline/package.json" ], "matchDepTypes": [ "dependencies" @@ -11136,8 +11401,8 @@ "matchUpdateTypes": [ "major" ], - "groupName": "major dependencies for gatsby-plugin-page-creator", - "groupSlug": "gatsby-plugin-page-creator-prod-major", + "groupName": "major dependencies for gatsby-plugin-offline", + "groupSlug": "gatsby-plugin-offline-prod-major", "excludePackageNames": [ "eslint", "prettier", @@ -11164,20 +11429,21 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-page-creator{{/unless}}", + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-offline{{/unless}}", "dependencyDashboardApproval": true }, { "matchPaths": [ - "packages/gatsby-plugin-page-creator/package.json" + "packages/gatsby-plugin-offline/package.json" ], "matchDepTypes": [ "dependencies" ], - "groupName": "minor and patch dependencies for gatsby-plugin-page-creator", - "groupSlug": "gatsby-plugin-page-creator-prod-minor", + "groupName": "minor and patch dependencies for gatsby-plugin-offline", + "groupSlug": "gatsby-plugin-offline-prod-minor", "matchPackageNames": [], "matchUpdateTypes": [ "patch" @@ -11208,19 +11474,20 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-page-creator{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-offline{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-plugin-page-creator/package.json" + "packages/gatsby-plugin-offline/package.json" ], "matchDepTypes": [ "dependencies" ], - "groupName": "major dependencies for gatsby-plugin-page-creator", - "groupSlug": "gatsby-plugin-page-creator-prod-major", + "groupName": "major dependencies for gatsby-plugin-offline", + "groupSlug": "gatsby-plugin-offline-prod-major", "matchPackageNames": [], "matchUpdateTypes": [ "major", @@ -11252,14 +11519,15 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-page-creator{{/unless}}", + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-offline{{/unless}}", "dependencyDashboardApproval": true }, { "matchPaths": [ - "packages/gatsby-plugin-postcss/package.json" + "packages/gatsby-plugin-page-creator/package.json" ], "matchDepTypes": [ "devDependencies" @@ -11268,8 +11536,8 @@ "patch", "minor" ], - "groupName": "[DEV] minor and patch dependencies for gatsby-plugin-postcss", - "groupSlug": "gatsby-plugin-postcss-dev-minor", + "groupName": "[DEV] minor and patch dependencies for gatsby-plugin-page-creator", + "groupSlug": "gatsby-plugin-page-creator-dev-minor", "automerge": true, "excludePackageNames": [ "eslint", @@ -11297,13 +11565,14 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-postcss{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-page-creator{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-plugin-postcss/package.json" + "packages/gatsby-plugin-page-creator/package.json" ], "matchDepTypes": [ "devDependencies" @@ -11311,8 +11580,8 @@ "matchUpdateTypes": [ "major" ], - "groupName": "[DEV] major dependencies for gatsby-plugin-postcss", - "groupSlug": "gatsby-plugin-postcss-dev-major", + "groupName": "[DEV] major dependencies for gatsby-plugin-page-creator", + "groupSlug": "gatsby-plugin-page-creator-dev-major", "automerge": true, "dependencyDashboardApproval": false, "excludePackageNames": [ @@ -11341,13 +11610,14 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-postcss{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-page-creator{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-plugin-postcss/package.json" + "packages/gatsby-plugin-page-creator/package.json" ], "matchDepTypes": [ "dependencies" @@ -11356,8 +11626,8 @@ "patch", "minor" ], - "groupName": "minor and patch dependencies for gatsby-plugin-postcss", - "groupSlug": "gatsby-plugin-postcss-prod-minor", + "groupName": "minor and patch dependencies for gatsby-plugin-page-creator", + "groupSlug": "gatsby-plugin-page-creator-prod-minor", "excludePackageNames": [ "eslint", "prettier", @@ -11384,13 +11654,14 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-postcss{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-page-creator{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-plugin-postcss/package.json" + "packages/gatsby-plugin-page-creator/package.json" ], "matchDepTypes": [ "dependencies" @@ -11398,8 +11669,8 @@ "matchUpdateTypes": [ "major" ], - "groupName": "major dependencies for gatsby-plugin-postcss", - "groupSlug": "gatsby-plugin-postcss-prod-major", + "groupName": "major dependencies for gatsby-plugin-page-creator", + "groupSlug": "gatsby-plugin-page-creator-prod-major", "excludePackageNames": [ "eslint", "prettier", @@ -11426,20 +11697,21 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-postcss{{/unless}}", + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-page-creator{{/unless}}", "dependencyDashboardApproval": true }, { "matchPaths": [ - "packages/gatsby-plugin-postcss/package.json" + "packages/gatsby-plugin-page-creator/package.json" ], "matchDepTypes": [ "dependencies" ], - "groupName": "minor and patch dependencies for gatsby-plugin-postcss", - "groupSlug": "gatsby-plugin-postcss-prod-minor", + "groupName": "minor and patch dependencies for gatsby-plugin-page-creator", + "groupSlug": "gatsby-plugin-page-creator-prod-minor", "matchPackageNames": [], "matchUpdateTypes": [ "patch" @@ -11470,19 +11742,20 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-postcss{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-page-creator{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-plugin-postcss/package.json" + "packages/gatsby-plugin-page-creator/package.json" ], "matchDepTypes": [ "dependencies" ], - "groupName": "major dependencies for gatsby-plugin-postcss", - "groupSlug": "gatsby-plugin-postcss-prod-major", + "groupName": "major dependencies for gatsby-plugin-page-creator", + "groupSlug": "gatsby-plugin-page-creator-prod-major", "matchPackageNames": [], "matchUpdateTypes": [ "major", @@ -11514,14 +11787,15 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-postcss{{/unless}}", + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-page-creator{{/unless}}", "dependencyDashboardApproval": true }, { "matchPaths": [ - "packages/gatsby-plugin-preact/package.json" + "packages/gatsby-plugin-postcss/package.json" ], "matchDepTypes": [ "devDependencies" @@ -11530,8 +11804,8 @@ "patch", "minor" ], - "groupName": "[DEV] minor and patch dependencies for gatsby-plugin-preact", - "groupSlug": "gatsby-plugin-preact-dev-minor", + "groupName": "[DEV] minor and patch dependencies for gatsby-plugin-postcss", + "groupSlug": "gatsby-plugin-postcss-dev-minor", "automerge": true, "excludePackageNames": [ "eslint", @@ -11559,13 +11833,14 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-preact{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-postcss{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-plugin-preact/package.json" + "packages/gatsby-plugin-postcss/package.json" ], "matchDepTypes": [ "devDependencies" @@ -11573,8 +11848,8 @@ "matchUpdateTypes": [ "major" ], - "groupName": "[DEV] major dependencies for gatsby-plugin-preact", - "groupSlug": "gatsby-plugin-preact-dev-major", + "groupName": "[DEV] major dependencies for gatsby-plugin-postcss", + "groupSlug": "gatsby-plugin-postcss-dev-major", "automerge": true, "dependencyDashboardApproval": false, "excludePackageNames": [ @@ -11603,13 +11878,14 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-preact{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-postcss{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-plugin-preact/package.json" + "packages/gatsby-plugin-postcss/package.json" ], "matchDepTypes": [ "dependencies" @@ -11618,8 +11894,8 @@ "patch", "minor" ], - "groupName": "minor and patch dependencies for gatsby-plugin-preact", - "groupSlug": "gatsby-plugin-preact-prod-minor", + "groupName": "minor and patch dependencies for gatsby-plugin-postcss", + "groupSlug": "gatsby-plugin-postcss-prod-minor", "excludePackageNames": [ "eslint", "prettier", @@ -11646,13 +11922,14 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-preact{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-postcss{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-plugin-preact/package.json" + "packages/gatsby-plugin-postcss/package.json" ], "matchDepTypes": [ "dependencies" @@ -11660,8 +11937,8 @@ "matchUpdateTypes": [ "major" ], - "groupName": "major dependencies for gatsby-plugin-preact", - "groupSlug": "gatsby-plugin-preact-prod-major", + "groupName": "major dependencies for gatsby-plugin-postcss", + "groupSlug": "gatsby-plugin-postcss-prod-major", "excludePackageNames": [ "eslint", "prettier", @@ -11688,23 +11965,22 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-preact{{/unless}}", + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-postcss{{/unless}}", "dependencyDashboardApproval": true }, { "matchPaths": [ - "packages/gatsby-plugin-preact/package.json" + "packages/gatsby-plugin-postcss/package.json" ], "matchDepTypes": [ "dependencies" ], - "groupName": "minor and patch dependencies for gatsby-plugin-preact", - "groupSlug": "gatsby-plugin-preact-prod-minor", - "matchPackageNames": [ - "@prefresh/babel-plugin" - ], + "groupName": "minor and patch dependencies for gatsby-plugin-postcss", + "groupSlug": "gatsby-plugin-postcss-prod-minor", + "matchPackageNames": [], "matchUpdateTypes": [ "patch" ], @@ -11734,22 +12010,21 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-preact{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-postcss{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-plugin-preact/package.json" + "packages/gatsby-plugin-postcss/package.json" ], "matchDepTypes": [ "dependencies" ], - "groupName": "major dependencies for gatsby-plugin-preact", - "groupSlug": "gatsby-plugin-preact-prod-major", - "matchPackageNames": [ - "@prefresh/babel-plugin" - ], + "groupName": "major dependencies for gatsby-plugin-postcss", + "groupSlug": "gatsby-plugin-postcss-prod-major", + "matchPackageNames": [], "matchUpdateTypes": [ "major", "minor" @@ -11780,14 +12055,15 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-preact{{/unless}}", + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-postcss{{/unless}}", "dependencyDashboardApproval": true }, { "matchPaths": [ - "packages/gatsby-plugin-preload-fonts/package.json" + "packages/gatsby-plugin-preact/package.json" ], "matchDepTypes": [ "devDependencies" @@ -11796,8 +12072,8 @@ "patch", "minor" ], - "groupName": "[DEV] minor and patch dependencies for gatsby-plugin-preload-fonts", - "groupSlug": "gatsby-plugin-preload-fonts-dev-minor", + "groupName": "[DEV] minor and patch dependencies for gatsby-plugin-preact", + "groupSlug": "gatsby-plugin-preact-dev-minor", "automerge": true, "excludePackageNames": [ "eslint", @@ -11825,13 +12101,14 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-preload-fonts{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-preact{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-plugin-preload-fonts/package.json" + "packages/gatsby-plugin-preact/package.json" ], "matchDepTypes": [ "devDependencies" @@ -11839,8 +12116,8 @@ "matchUpdateTypes": [ "major" ], - "groupName": "[DEV] major dependencies for gatsby-plugin-preload-fonts", - "groupSlug": "gatsby-plugin-preload-fonts-dev-major", + "groupName": "[DEV] major dependencies for gatsby-plugin-preact", + "groupSlug": "gatsby-plugin-preact-dev-major", "automerge": true, "dependencyDashboardApproval": false, "excludePackageNames": [ @@ -11869,13 +12146,14 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-preload-fonts{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-preact{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-plugin-preload-fonts/package.json" + "packages/gatsby-plugin-preact/package.json" ], "matchDepTypes": [ "dependencies" @@ -11884,8 +12162,8 @@ "patch", "minor" ], - "groupName": "minor and patch dependencies for gatsby-plugin-preload-fonts", - "groupSlug": "gatsby-plugin-preload-fonts-prod-minor", + "groupName": "minor and patch dependencies for gatsby-plugin-preact", + "groupSlug": "gatsby-plugin-preact-prod-minor", "excludePackageNames": [ "eslint", "prettier", @@ -11912,13 +12190,14 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-preload-fonts{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-preact{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-plugin-preload-fonts/package.json" + "packages/gatsby-plugin-preact/package.json" ], "matchDepTypes": [ "dependencies" @@ -11926,8 +12205,8 @@ "matchUpdateTypes": [ "major" ], - "groupName": "major dependencies for gatsby-plugin-preload-fonts", - "groupSlug": "gatsby-plugin-preload-fonts-prod-major", + "groupName": "major dependencies for gatsby-plugin-preact", + "groupSlug": "gatsby-plugin-preact-prod-major", "excludePackageNames": [ "eslint", "prettier", @@ -11954,21 +12233,24 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-preload-fonts{{/unless}}", + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-preact{{/unless}}", "dependencyDashboardApproval": true }, { "matchPaths": [ - "packages/gatsby-plugin-preload-fonts/package.json" + "packages/gatsby-plugin-preact/package.json" ], "matchDepTypes": [ "dependencies" ], - "groupName": "minor and patch dependencies for gatsby-plugin-preload-fonts", - "groupSlug": "gatsby-plugin-preload-fonts-prod-minor", - "matchPackageNames": [], + "groupName": "minor and patch dependencies for gatsby-plugin-preact", + "groupSlug": "gatsby-plugin-preact-prod-minor", + "matchPackageNames": [ + "@prefresh/babel-plugin" + ], "matchUpdateTypes": [ "patch" ], @@ -11998,20 +12280,23 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-preload-fonts{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-preact{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-plugin-preload-fonts/package.json" + "packages/gatsby-plugin-preact/package.json" ], "matchDepTypes": [ "dependencies" ], - "groupName": "major dependencies for gatsby-plugin-preload-fonts", - "groupSlug": "gatsby-plugin-preload-fonts-prod-major", - "matchPackageNames": [], + "groupName": "major dependencies for gatsby-plugin-preact", + "groupSlug": "gatsby-plugin-preact-prod-major", + "matchPackageNames": [ + "@prefresh/babel-plugin" + ], "matchUpdateTypes": [ "major", "minor" @@ -12042,14 +12327,15 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-preload-fonts{{/unless}}", + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-preact{{/unless}}", "dependencyDashboardApproval": true }, { "matchPaths": [ - "packages/gatsby-plugin-react-css-modules/package.json" + "packages/gatsby-plugin-preload-fonts/package.json" ], "matchDepTypes": [ "devDependencies" @@ -12058,8 +12344,8 @@ "patch", "minor" ], - "groupName": "[DEV] minor and patch dependencies for gatsby-plugin-react-css-modules", - "groupSlug": "gatsby-plugin-react-css-modules-dev-minor", + "groupName": "[DEV] minor and patch dependencies for gatsby-plugin-preload-fonts", + "groupSlug": "gatsby-plugin-preload-fonts-dev-minor", "automerge": true, "excludePackageNames": [ "eslint", @@ -12087,13 +12373,14 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-react-css-modules{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-preload-fonts{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-plugin-react-css-modules/package.json" + "packages/gatsby-plugin-preload-fonts/package.json" ], "matchDepTypes": [ "devDependencies" @@ -12101,8 +12388,544 @@ "matchUpdateTypes": [ "major" ], - "groupName": "[DEV] major dependencies for gatsby-plugin-react-css-modules", - "groupSlug": "gatsby-plugin-react-css-modules-dev-major", + "groupName": "[DEV] major dependencies for gatsby-plugin-preload-fonts", + "groupSlug": "gatsby-plugin-preload-fonts-dev-major", + "automerge": true, + "dependencyDashboardApproval": false, + "excludePackageNames": [ + "eslint", + "prettier", + "cross-env", + "execa", + "mini-css-extract-plugin", + "sharp", + "@types/sharp", + "typescript", + "cypress", + "cypress-image-snapshot", + "chalk", + "fs-extra", + "@types/fs-extra", + "cheerio", + "semver", + "@types/semver", + "core-js", + "core-js-compat", + "chokidar" + ], + "excludePackagePatterns": [ + "^@babel", + "^eslint-", + "^@typescript-eslint/", + "^@testing-library/", + "^@parcel/", + "lmdb" + ], + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-preload-fonts{{/unless}}" + }, + { + "matchPaths": [ + "packages/gatsby-plugin-preload-fonts/package.json" + ], + "matchDepTypes": [ + "dependencies" + ], + "matchUpdateTypes": [ + "patch", + "minor" + ], + "groupName": "minor and patch dependencies for gatsby-plugin-preload-fonts", + "groupSlug": "gatsby-plugin-preload-fonts-prod-minor", + "excludePackageNames": [ + "eslint", + "prettier", + "cross-env", + "execa", + "mini-css-extract-plugin", + "sharp", + "@types/sharp", + "typescript", + "cypress", + "cypress-image-snapshot", + "chalk", + "fs-extra", + "@types/fs-extra", + "cheerio", + "semver", + "@types/semver", + "core-js", + "core-js-compat", + "chokidar" + ], + "excludePackagePatterns": [ + "^@babel", + "^eslint-", + "^@typescript-eslint/", + "^@testing-library/", + "^@parcel/", + "lmdb" + ], + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-preload-fonts{{/unless}}" + }, + { + "matchPaths": [ + "packages/gatsby-plugin-preload-fonts/package.json" + ], + "matchDepTypes": [ + "dependencies" + ], + "matchUpdateTypes": [ + "major" + ], + "groupName": "major dependencies for gatsby-plugin-preload-fonts", + "groupSlug": "gatsby-plugin-preload-fonts-prod-major", + "excludePackageNames": [ + "eslint", + "prettier", + "cross-env", + "execa", + "mini-css-extract-plugin", + "sharp", + "@types/sharp", + "typescript", + "cypress", + "cypress-image-snapshot", + "chalk", + "fs-extra", + "@types/fs-extra", + "cheerio", + "semver", + "@types/semver", + "core-js", + "core-js-compat", + "chokidar" + ], + "excludePackagePatterns": [ + "^@babel", + "^eslint-", + "^@typescript-eslint/", + "^@testing-library/", + "^@parcel/", + "lmdb" + ], + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-preload-fonts{{/unless}}", + "dependencyDashboardApproval": true + }, + { + "matchPaths": [ + "packages/gatsby-plugin-preload-fonts/package.json" + ], + "matchDepTypes": [ + "dependencies" + ], + "groupName": "minor and patch dependencies for gatsby-plugin-preload-fonts", + "groupSlug": "gatsby-plugin-preload-fonts-prod-minor", + "matchPackageNames": [], + "matchUpdateTypes": [ + "patch" + ], + "excludePackageNames": [ + "eslint", + "prettier", + "cross-env", + "execa", + "mini-css-extract-plugin", + "sharp", + "@types/sharp", + "typescript", + "cypress", + "cypress-image-snapshot", + "chalk", + "fs-extra", + "@types/fs-extra", + "cheerio", + "semver", + "@types/semver", + "core-js", + "core-js-compat", + "chokidar" + ], + "excludePackagePatterns": [ + "^@babel", + "^eslint-", + "^@typescript-eslint/", + "^@testing-library/", + "^@parcel/", + "lmdb" + ], + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-preload-fonts{{/unless}}" + }, + { + "matchPaths": [ + "packages/gatsby-plugin-preload-fonts/package.json" + ], + "matchDepTypes": [ + "dependencies" + ], + "groupName": "major dependencies for gatsby-plugin-preload-fonts", + "groupSlug": "gatsby-plugin-preload-fonts-prod-major", + "matchPackageNames": [], + "matchUpdateTypes": [ + "major", + "minor" + ], + "excludePackageNames": [ + "eslint", + "prettier", + "cross-env", + "execa", + "mini-css-extract-plugin", + "sharp", + "@types/sharp", + "typescript", + "cypress", + "cypress-image-snapshot", + "chalk", + "fs-extra", + "@types/fs-extra", + "cheerio", + "semver", + "@types/semver", + "core-js", + "core-js-compat", + "chokidar" + ], + "excludePackagePatterns": [ + "^@babel", + "^eslint-", + "^@typescript-eslint/", + "^@testing-library/", + "^@parcel/", + "lmdb" + ], + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-preload-fonts{{/unless}}", + "dependencyDashboardApproval": true + }, + { + "matchPaths": [ + "packages/gatsby-plugin-react-css-modules/package.json" + ], + "matchDepTypes": [ + "devDependencies" + ], + "matchUpdateTypes": [ + "patch", + "minor" + ], + "groupName": "[DEV] minor and patch dependencies for gatsby-plugin-react-css-modules", + "groupSlug": "gatsby-plugin-react-css-modules-dev-minor", + "automerge": true, + "excludePackageNames": [ + "eslint", + "prettier", + "cross-env", + "execa", + "mini-css-extract-plugin", + "sharp", + "@types/sharp", + "typescript", + "cypress", + "cypress-image-snapshot", + "chalk", + "fs-extra", + "@types/fs-extra", + "cheerio", + "semver", + "@types/semver", + "core-js", + "core-js-compat", + "chokidar" + ], + "excludePackagePatterns": [ + "^@babel", + "^eslint-", + "^@typescript-eslint/", + "^@testing-library/", + "^@parcel/", + "lmdb" + ], + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-react-css-modules{{/unless}}" + }, + { + "matchPaths": [ + "packages/gatsby-plugin-react-css-modules/package.json" + ], + "matchDepTypes": [ + "devDependencies" + ], + "matchUpdateTypes": [ + "major" + ], + "groupName": "[DEV] major dependencies for gatsby-plugin-react-css-modules", + "groupSlug": "gatsby-plugin-react-css-modules-dev-major", + "automerge": true, + "dependencyDashboardApproval": false, + "excludePackageNames": [ + "eslint", + "prettier", + "cross-env", + "execa", + "mini-css-extract-plugin", + "sharp", + "@types/sharp", + "typescript", + "cypress", + "cypress-image-snapshot", + "chalk", + "fs-extra", + "@types/fs-extra", + "cheerio", + "semver", + "@types/semver", + "core-js", + "core-js-compat", + "chokidar" + ], + "excludePackagePatterns": [ + "^@babel", + "^eslint-", + "^@typescript-eslint/", + "^@testing-library/", + "^@parcel/", + "lmdb" + ], + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-react-css-modules{{/unless}}" + }, + { + "matchPaths": [ + "packages/gatsby-plugin-react-css-modules/package.json" + ], + "matchDepTypes": [ + "dependencies" + ], + "matchUpdateTypes": [ + "patch", + "minor" + ], + "groupName": "minor and patch dependencies for gatsby-plugin-react-css-modules", + "groupSlug": "gatsby-plugin-react-css-modules-prod-minor", + "excludePackageNames": [ + "eslint", + "prettier", + "cross-env", + "execa", + "mini-css-extract-plugin", + "sharp", + "@types/sharp", + "typescript", + "cypress", + "cypress-image-snapshot", + "chalk", + "fs-extra", + "@types/fs-extra", + "cheerio", + "semver", + "@types/semver", + "core-js", + "core-js-compat", + "chokidar" + ], + "excludePackagePatterns": [ + "^@babel", + "^eslint-", + "^@typescript-eslint/", + "^@testing-library/", + "^@parcel/", + "lmdb" + ], + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-react-css-modules{{/unless}}" + }, + { + "matchPaths": [ + "packages/gatsby-plugin-react-css-modules/package.json" + ], + "matchDepTypes": [ + "dependencies" + ], + "matchUpdateTypes": [ + "major" + ], + "groupName": "major dependencies for gatsby-plugin-react-css-modules", + "groupSlug": "gatsby-plugin-react-css-modules-prod-major", + "excludePackageNames": [ + "eslint", + "prettier", + "cross-env", + "execa", + "mini-css-extract-plugin", + "sharp", + "@types/sharp", + "typescript", + "cypress", + "cypress-image-snapshot", + "chalk", + "fs-extra", + "@types/fs-extra", + "cheerio", + "semver", + "@types/semver", + "core-js", + "core-js-compat", + "chokidar" + ], + "excludePackagePatterns": [ + "^@babel", + "^eslint-", + "^@typescript-eslint/", + "^@testing-library/", + "^@parcel/", + "lmdb" + ], + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-react-css-modules{{/unless}}", + "dependencyDashboardApproval": true + }, + { + "matchPaths": [ + "packages/gatsby-plugin-react-css-modules/package.json" + ], + "matchDepTypes": [ + "dependencies" + ], + "groupName": "minor and patch dependencies for gatsby-plugin-react-css-modules", + "groupSlug": "gatsby-plugin-react-css-modules-prod-minor", + "matchPackageNames": [], + "matchUpdateTypes": [ + "patch" + ], + "excludePackageNames": [ + "eslint", + "prettier", + "cross-env", + "execa", + "mini-css-extract-plugin", + "sharp", + "@types/sharp", + "typescript", + "cypress", + "cypress-image-snapshot", + "chalk", + "fs-extra", + "@types/fs-extra", + "cheerio", + "semver", + "@types/semver", + "core-js", + "core-js-compat", + "chokidar" + ], + "excludePackagePatterns": [ + "^@babel", + "^eslint-", + "^@typescript-eslint/", + "^@testing-library/", + "^@parcel/", + "lmdb" + ], + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-react-css-modules{{/unless}}" + }, + { + "matchPaths": [ + "packages/gatsby-plugin-react-css-modules/package.json" + ], + "matchDepTypes": [ + "dependencies" + ], + "groupName": "major dependencies for gatsby-plugin-react-css-modules", + "groupSlug": "gatsby-plugin-react-css-modules-prod-major", + "matchPackageNames": [], + "matchUpdateTypes": [ + "major", + "minor" + ], + "excludePackageNames": [ + "eslint", + "prettier", + "cross-env", + "execa", + "mini-css-extract-plugin", + "sharp", + "@types/sharp", + "typescript", + "cypress", + "cypress-image-snapshot", + "chalk", + "fs-extra", + "@types/fs-extra", + "cheerio", + "semver", + "@types/semver", + "core-js", + "core-js-compat", + "chokidar" + ], + "excludePackagePatterns": [ + "^@babel", + "^eslint-", + "^@typescript-eslint/", + "^@testing-library/", + "^@parcel/", + "lmdb" + ], + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-react-css-modules{{/unless}}", + "dependencyDashboardApproval": true + }, + { + "matchPaths": [ + "packages/gatsby-plugin-react-helmet/package.json" + ], + "matchDepTypes": [ + "devDependencies" + ], + "matchUpdateTypes": [ + "patch", + "minor" + ], + "groupName": "[DEV] minor and patch dependencies for gatsby-plugin-react-helmet", + "groupSlug": "gatsby-plugin-react-helmet-dev-minor", + "automerge": true, + "excludePackageNames": [ + "eslint", + "prettier", + "cross-env", + "execa", + "mini-css-extract-plugin", + "sharp", + "@types/sharp", + "typescript", + "cypress", + "cypress-image-snapshot", + "chalk", + "fs-extra", + "@types/fs-extra", + "cheerio", + "semver", + "@types/semver", + "core-js", + "core-js-compat", + "chokidar" + ], + "excludePackagePatterns": [ + "^@babel", + "^eslint-", + "^@typescript-eslint/", + "^@testing-library/", + "^@parcel/", + "lmdb" + ], + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-react-helmet{{/unless}}" + }, + { + "matchPaths": [ + "packages/gatsby-plugin-react-helmet/package.json" + ], + "matchDepTypes": [ + "devDependencies" + ], + "matchUpdateTypes": [ + "major" + ], + "groupName": "[DEV] major dependencies for gatsby-plugin-react-helmet", + "groupSlug": "gatsby-plugin-react-helmet-dev-major", "automerge": true, "dependencyDashboardApproval": false, "excludePackageNames": [ @@ -12131,13 +12954,14 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-react-css-modules{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-react-helmet{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-plugin-react-css-modules/package.json" + "packages/gatsby-plugin-react-helmet/package.json" ], "matchDepTypes": [ "dependencies" @@ -12146,8 +12970,8 @@ "patch", "minor" ], - "groupName": "minor and patch dependencies for gatsby-plugin-react-css-modules", - "groupSlug": "gatsby-plugin-react-css-modules-prod-minor", + "groupName": "minor and patch dependencies for gatsby-plugin-react-helmet", + "groupSlug": "gatsby-plugin-react-helmet-prod-minor", "excludePackageNames": [ "eslint", "prettier", @@ -12174,13 +12998,14 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-react-css-modules{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-react-helmet{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-plugin-react-css-modules/package.json" + "packages/gatsby-plugin-react-helmet/package.json" ], "matchDepTypes": [ "dependencies" @@ -12188,8 +13013,8 @@ "matchUpdateTypes": [ "major" ], - "groupName": "major dependencies for gatsby-plugin-react-css-modules", - "groupSlug": "gatsby-plugin-react-css-modules-prod-major", + "groupName": "major dependencies for gatsby-plugin-react-helmet", + "groupSlug": "gatsby-plugin-react-helmet-prod-major", "excludePackageNames": [ "eslint", "prettier", @@ -12216,20 +13041,21 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-react-css-modules{{/unless}}", + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-react-helmet{{/unless}}", "dependencyDashboardApproval": true }, { "matchPaths": [ - "packages/gatsby-plugin-react-css-modules/package.json" + "packages/gatsby-plugin-react-helmet/package.json" ], "matchDepTypes": [ "dependencies" ], - "groupName": "minor and patch dependencies for gatsby-plugin-react-css-modules", - "groupSlug": "gatsby-plugin-react-css-modules-prod-minor", + "groupName": "minor and patch dependencies for gatsby-plugin-react-helmet", + "groupSlug": "gatsby-plugin-react-helmet-prod-minor", "matchPackageNames": [], "matchUpdateTypes": [ "patch" @@ -12260,19 +13086,20 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-react-css-modules{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-react-helmet{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-plugin-react-css-modules/package.json" + "packages/gatsby-plugin-react-helmet/package.json" ], "matchDepTypes": [ "dependencies" ], - "groupName": "major dependencies for gatsby-plugin-react-css-modules", - "groupSlug": "gatsby-plugin-react-css-modules-prod-major", + "groupName": "major dependencies for gatsby-plugin-react-helmet", + "groupSlug": "gatsby-plugin-react-helmet-prod-major", "matchPackageNames": [], "matchUpdateTypes": [ "major", @@ -12304,14 +13131,15 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-react-css-modules{{/unless}}", + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-react-helmet{{/unless}}", "dependencyDashboardApproval": true }, { "matchPaths": [ - "packages/gatsby-plugin-react-helmet/package.json" + "packages/gatsby-plugin-remove-trailing-slashes/package.json" ], "matchDepTypes": [ "devDependencies" @@ -12320,8 +13148,8 @@ "patch", "minor" ], - "groupName": "[DEV] minor and patch dependencies for gatsby-plugin-react-helmet", - "groupSlug": "gatsby-plugin-react-helmet-dev-minor", + "groupName": "[DEV] minor and patch dependencies for gatsby-plugin-remove-trailing-slashes", + "groupSlug": "gatsby-plugin-remove-trailing-slashes-dev-minor", "automerge": true, "excludePackageNames": [ "eslint", @@ -12349,13 +13177,14 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-react-helmet{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-remove-trailing-slashes{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-plugin-react-helmet/package.json" + "packages/gatsby-plugin-remove-trailing-slashes/package.json" ], "matchDepTypes": [ "devDependencies" @@ -12363,8 +13192,8 @@ "matchUpdateTypes": [ "major" ], - "groupName": "[DEV] major dependencies for gatsby-plugin-react-helmet", - "groupSlug": "gatsby-plugin-react-helmet-dev-major", + "groupName": "[DEV] major dependencies for gatsby-plugin-remove-trailing-slashes", + "groupSlug": "gatsby-plugin-remove-trailing-slashes-dev-major", "automerge": true, "dependencyDashboardApproval": false, "excludePackageNames": [ @@ -12393,13 +13222,14 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-react-helmet{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-remove-trailing-slashes{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-plugin-react-helmet/package.json" + "packages/gatsby-plugin-remove-trailing-slashes/package.json" ], "matchDepTypes": [ "dependencies" @@ -12408,8 +13238,8 @@ "patch", "minor" ], - "groupName": "minor and patch dependencies for gatsby-plugin-react-helmet", - "groupSlug": "gatsby-plugin-react-helmet-prod-minor", + "groupName": "minor and patch dependencies for gatsby-plugin-remove-trailing-slashes", + "groupSlug": "gatsby-plugin-remove-trailing-slashes-prod-minor", "excludePackageNames": [ "eslint", "prettier", @@ -12436,13 +13266,14 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-react-helmet{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-remove-trailing-slashes{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-plugin-react-helmet/package.json" + "packages/gatsby-plugin-remove-trailing-slashes/package.json" ], "matchDepTypes": [ "dependencies" @@ -12450,8 +13281,8 @@ "matchUpdateTypes": [ "major" ], - "groupName": "major dependencies for gatsby-plugin-react-helmet", - "groupSlug": "gatsby-plugin-react-helmet-prod-major", + "groupName": "major dependencies for gatsby-plugin-remove-trailing-slashes", + "groupSlug": "gatsby-plugin-remove-trailing-slashes-prod-major", "excludePackageNames": [ "eslint", "prettier", @@ -12478,20 +13309,21 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-react-helmet{{/unless}}", + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-remove-trailing-slashes{{/unless}}", "dependencyDashboardApproval": true }, { "matchPaths": [ - "packages/gatsby-plugin-react-helmet/package.json" + "packages/gatsby-plugin-remove-trailing-slashes/package.json" ], "matchDepTypes": [ "dependencies" ], - "groupName": "minor and patch dependencies for gatsby-plugin-react-helmet", - "groupSlug": "gatsby-plugin-react-helmet-prod-minor", + "groupName": "minor and patch dependencies for gatsby-plugin-remove-trailing-slashes", + "groupSlug": "gatsby-plugin-remove-trailing-slashes-prod-minor", "matchPackageNames": [], "matchUpdateTypes": [ "patch" @@ -12522,19 +13354,20 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-react-helmet{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-remove-trailing-slashes{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-plugin-react-helmet/package.json" + "packages/gatsby-plugin-remove-trailing-slashes/package.json" ], "matchDepTypes": [ "dependencies" ], - "groupName": "major dependencies for gatsby-plugin-react-helmet", - "groupSlug": "gatsby-plugin-react-helmet-prod-major", + "groupName": "major dependencies for gatsby-plugin-remove-trailing-slashes", + "groupSlug": "gatsby-plugin-remove-trailing-slashes-prod-major", "matchPackageNames": [], "matchUpdateTypes": [ "major", @@ -12566,14 +13399,15 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-react-helmet{{/unless}}", + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-remove-trailing-slashes{{/unless}}", "dependencyDashboardApproval": true }, { "matchPaths": [ - "packages/gatsby-plugin-remove-trailing-slashes/package.json" + "packages/gatsby-plugin-sass/package.json" ], "matchDepTypes": [ "devDependencies" @@ -12582,8 +13416,8 @@ "patch", "minor" ], - "groupName": "[DEV] minor and patch dependencies for gatsby-plugin-remove-trailing-slashes", - "groupSlug": "gatsby-plugin-remove-trailing-slashes-dev-minor", + "groupName": "[DEV] minor and patch dependencies for gatsby-plugin-sass", + "groupSlug": "gatsby-plugin-sass-dev-minor", "automerge": true, "excludePackageNames": [ "eslint", @@ -12611,13 +13445,14 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-remove-trailing-slashes{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-sass{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-plugin-remove-trailing-slashes/package.json" + "packages/gatsby-plugin-sass/package.json" ], "matchDepTypes": [ "devDependencies" @@ -12625,8 +13460,8 @@ "matchUpdateTypes": [ "major" ], - "groupName": "[DEV] major dependencies for gatsby-plugin-remove-trailing-slashes", - "groupSlug": "gatsby-plugin-remove-trailing-slashes-dev-major", + "groupName": "[DEV] major dependencies for gatsby-plugin-sass", + "groupSlug": "gatsby-plugin-sass-dev-major", "automerge": true, "dependencyDashboardApproval": false, "excludePackageNames": [ @@ -12655,13 +13490,14 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-remove-trailing-slashes{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-sass{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-plugin-remove-trailing-slashes/package.json" + "packages/gatsby-plugin-sass/package.json" ], "matchDepTypes": [ "dependencies" @@ -12670,8 +13506,8 @@ "patch", "minor" ], - "groupName": "minor and patch dependencies for gatsby-plugin-remove-trailing-slashes", - "groupSlug": "gatsby-plugin-remove-trailing-slashes-prod-minor", + "groupName": "minor and patch dependencies for gatsby-plugin-sass", + "groupSlug": "gatsby-plugin-sass-prod-minor", "excludePackageNames": [ "eslint", "prettier", @@ -12698,13 +13534,14 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-remove-trailing-slashes{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-sass{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-plugin-remove-trailing-slashes/package.json" + "packages/gatsby-plugin-sass/package.json" ], "matchDepTypes": [ "dependencies" @@ -12712,8 +13549,8 @@ "matchUpdateTypes": [ "major" ], - "groupName": "major dependencies for gatsby-plugin-remove-trailing-slashes", - "groupSlug": "gatsby-plugin-remove-trailing-slashes-prod-major", + "groupName": "major dependencies for gatsby-plugin-sass", + "groupSlug": "gatsby-plugin-sass-prod-major", "excludePackageNames": [ "eslint", "prettier", @@ -12740,20 +13577,21 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-remove-trailing-slashes{{/unless}}", + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-sass{{/unless}}", "dependencyDashboardApproval": true }, { "matchPaths": [ - "packages/gatsby-plugin-remove-trailing-slashes/package.json" + "packages/gatsby-plugin-sass/package.json" ], "matchDepTypes": [ "dependencies" ], - "groupName": "minor and patch dependencies for gatsby-plugin-remove-trailing-slashes", - "groupSlug": "gatsby-plugin-remove-trailing-slashes-prod-minor", + "groupName": "minor and patch dependencies for gatsby-plugin-sass", + "groupSlug": "gatsby-plugin-sass-prod-minor", "matchPackageNames": [], "matchUpdateTypes": [ "patch" @@ -12784,19 +13622,20 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-remove-trailing-slashes{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-sass{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-plugin-remove-trailing-slashes/package.json" + "packages/gatsby-plugin-sass/package.json" ], "matchDepTypes": [ "dependencies" ], - "groupName": "major dependencies for gatsby-plugin-remove-trailing-slashes", - "groupSlug": "gatsby-plugin-remove-trailing-slashes-prod-major", + "groupName": "major dependencies for gatsby-plugin-sass", + "groupSlug": "gatsby-plugin-sass-prod-major", "matchPackageNames": [], "matchUpdateTypes": [ "major", @@ -12828,14 +13667,15 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-remove-trailing-slashes{{/unless}}", + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-sass{{/unless}}", "dependencyDashboardApproval": true }, { "matchPaths": [ - "packages/gatsby-plugin-sass/package.json" + "packages/gatsby-plugin-schema-snapshot/package.json" ], "matchDepTypes": [ "devDependencies" @@ -12844,8 +13684,8 @@ "patch", "minor" ], - "groupName": "[DEV] minor and patch dependencies for gatsby-plugin-sass", - "groupSlug": "gatsby-plugin-sass-dev-minor", + "groupName": "[DEV] minor and patch dependencies for gatsby-plugin-schema-snapshot", + "groupSlug": "gatsby-plugin-schema-snapshot-dev-minor", "automerge": true, "excludePackageNames": [ "eslint", @@ -12873,13 +13713,14 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-sass{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-schema-snapshot{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-plugin-sass/package.json" + "packages/gatsby-plugin-schema-snapshot/package.json" ], "matchDepTypes": [ "devDependencies" @@ -12887,8 +13728,8 @@ "matchUpdateTypes": [ "major" ], - "groupName": "[DEV] major dependencies for gatsby-plugin-sass", - "groupSlug": "gatsby-plugin-sass-dev-major", + "groupName": "[DEV] major dependencies for gatsby-plugin-schema-snapshot", + "groupSlug": "gatsby-plugin-schema-snapshot-dev-major", "automerge": true, "dependencyDashboardApproval": false, "excludePackageNames": [ @@ -12917,13 +13758,14 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-sass{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-schema-snapshot{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-plugin-sass/package.json" + "packages/gatsby-plugin-schema-snapshot/package.json" ], "matchDepTypes": [ "dependencies" @@ -12932,8 +13774,8 @@ "patch", "minor" ], - "groupName": "minor and patch dependencies for gatsby-plugin-sass", - "groupSlug": "gatsby-plugin-sass-prod-minor", + "groupName": "minor and patch dependencies for gatsby-plugin-schema-snapshot", + "groupSlug": "gatsby-plugin-schema-snapshot-prod-minor", "excludePackageNames": [ "eslint", "prettier", @@ -12960,13 +13802,14 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-sass{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-schema-snapshot{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-plugin-sass/package.json" + "packages/gatsby-plugin-schema-snapshot/package.json" ], "matchDepTypes": [ "dependencies" @@ -12974,8 +13817,8 @@ "matchUpdateTypes": [ "major" ], - "groupName": "major dependencies for gatsby-plugin-sass", - "groupSlug": "gatsby-plugin-sass-prod-major", + "groupName": "major dependencies for gatsby-plugin-schema-snapshot", + "groupSlug": "gatsby-plugin-schema-snapshot-prod-major", "excludePackageNames": [ "eslint", "prettier", @@ -13002,20 +13845,21 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-sass{{/unless}}", + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-schema-snapshot{{/unless}}", "dependencyDashboardApproval": true }, { "matchPaths": [ - "packages/gatsby-plugin-sass/package.json" + "packages/gatsby-plugin-schema-snapshot/package.json" ], "matchDepTypes": [ "dependencies" ], - "groupName": "minor and patch dependencies for gatsby-plugin-sass", - "groupSlug": "gatsby-plugin-sass-prod-minor", + "groupName": "minor and patch dependencies for gatsby-plugin-schema-snapshot", + "groupSlug": "gatsby-plugin-schema-snapshot-prod-minor", "matchPackageNames": [], "matchUpdateTypes": [ "patch" @@ -13046,19 +13890,20 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-sass{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-schema-snapshot{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-plugin-sass/package.json" + "packages/gatsby-plugin-schema-snapshot/package.json" ], "matchDepTypes": [ "dependencies" ], - "groupName": "major dependencies for gatsby-plugin-sass", - "groupSlug": "gatsby-plugin-sass-prod-major", + "groupName": "major dependencies for gatsby-plugin-schema-snapshot", + "groupSlug": "gatsby-plugin-schema-snapshot-prod-major", "matchPackageNames": [], "matchUpdateTypes": [ "major", @@ -13090,14 +13935,15 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-sass{{/unless}}", + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-schema-snapshot{{/unless}}", "dependencyDashboardApproval": true }, { "matchPaths": [ - "packages/gatsby-plugin-schema-snapshot/package.json" + "packages/gatsby-plugin-sharp/package.json" ], "matchDepTypes": [ "devDependencies" @@ -13106,8 +13952,8 @@ "patch", "minor" ], - "groupName": "[DEV] minor and patch dependencies for gatsby-plugin-schema-snapshot", - "groupSlug": "gatsby-plugin-schema-snapshot-dev-minor", + "groupName": "[DEV] minor and patch dependencies for gatsby-plugin-sharp", + "groupSlug": "gatsby-plugin-sharp-dev-minor", "automerge": true, "excludePackageNames": [ "eslint", @@ -13135,13 +13981,14 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-schema-snapshot{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-sharp{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-plugin-schema-snapshot/package.json" + "packages/gatsby-plugin-sharp/package.json" ], "matchDepTypes": [ "devDependencies" @@ -13149,8 +13996,8 @@ "matchUpdateTypes": [ "major" ], - "groupName": "[DEV] major dependencies for gatsby-plugin-schema-snapshot", - "groupSlug": "gatsby-plugin-schema-snapshot-dev-major", + "groupName": "[DEV] major dependencies for gatsby-plugin-sharp", + "groupSlug": "gatsby-plugin-sharp-dev-major", "automerge": true, "dependencyDashboardApproval": false, "excludePackageNames": [ @@ -13179,13 +14026,14 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-schema-snapshot{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-sharp{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-plugin-schema-snapshot/package.json" + "packages/gatsby-plugin-sharp/package.json" ], "matchDepTypes": [ "dependencies" @@ -13194,8 +14042,8 @@ "patch", "minor" ], - "groupName": "minor and patch dependencies for gatsby-plugin-schema-snapshot", - "groupSlug": "gatsby-plugin-schema-snapshot-prod-minor", + "groupName": "minor and patch dependencies for gatsby-plugin-sharp", + "groupSlug": "gatsby-plugin-sharp-prod-minor", "excludePackageNames": [ "eslint", "prettier", @@ -13222,13 +14070,14 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-schema-snapshot{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-sharp{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-plugin-schema-snapshot/package.json" + "packages/gatsby-plugin-sharp/package.json" ], "matchDepTypes": [ "dependencies" @@ -13236,8 +14085,8 @@ "matchUpdateTypes": [ "major" ], - "groupName": "major dependencies for gatsby-plugin-schema-snapshot", - "groupSlug": "gatsby-plugin-schema-snapshot-prod-major", + "groupName": "major dependencies for gatsby-plugin-sharp", + "groupSlug": "gatsby-plugin-sharp-prod-major", "excludePackageNames": [ "eslint", "prettier", @@ -13264,21 +14113,24 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-schema-snapshot{{/unless}}", + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-sharp{{/unless}}", "dependencyDashboardApproval": true }, { "matchPaths": [ - "packages/gatsby-plugin-schema-snapshot/package.json" + "packages/gatsby-plugin-sharp/package.json" ], "matchDepTypes": [ "dependencies" ], - "groupName": "minor and patch dependencies for gatsby-plugin-schema-snapshot", - "groupSlug": "gatsby-plugin-schema-snapshot-prod-minor", - "matchPackageNames": [], + "groupName": "minor and patch dependencies for gatsby-plugin-sharp", + "groupSlug": "gatsby-plugin-sharp-prod-minor", + "matchPackageNames": [ + "sharp" + ], "matchUpdateTypes": [ "patch" ], @@ -13308,20 +14160,23 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-schema-snapshot{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-sharp{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-plugin-schema-snapshot/package.json" + "packages/gatsby-plugin-sharp/package.json" ], "matchDepTypes": [ "dependencies" ], - "groupName": "major dependencies for gatsby-plugin-schema-snapshot", - "groupSlug": "gatsby-plugin-schema-snapshot-prod-major", - "matchPackageNames": [], + "groupName": "major dependencies for gatsby-plugin-sharp", + "groupSlug": "gatsby-plugin-sharp-prod-major", + "matchPackageNames": [ + "sharp" + ], "matchUpdateTypes": [ "major", "minor" @@ -13352,14 +14207,15 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-schema-snapshot{{/unless}}", + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-sharp{{/unless}}", "dependencyDashboardApproval": true }, { "matchPaths": [ - "packages/gatsby-plugin-sharp/package.json" + "packages/gatsby-plugin-sitemap/package.json" ], "matchDepTypes": [ "devDependencies" @@ -13368,8 +14224,8 @@ "patch", "minor" ], - "groupName": "[DEV] minor and patch dependencies for gatsby-plugin-sharp", - "groupSlug": "gatsby-plugin-sharp-dev-minor", + "groupName": "[DEV] minor and patch dependencies for gatsby-plugin-sitemap", + "groupSlug": "gatsby-plugin-sitemap-dev-minor", "automerge": true, "excludePackageNames": [ "eslint", @@ -13397,13 +14253,14 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-sharp{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-sitemap{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-plugin-sharp/package.json" + "packages/gatsby-plugin-sitemap/package.json" ], "matchDepTypes": [ "devDependencies" @@ -13411,8 +14268,8 @@ "matchUpdateTypes": [ "major" ], - "groupName": "[DEV] major dependencies for gatsby-plugin-sharp", - "groupSlug": "gatsby-plugin-sharp-dev-major", + "groupName": "[DEV] major dependencies for gatsby-plugin-sitemap", + "groupSlug": "gatsby-plugin-sitemap-dev-major", "automerge": true, "dependencyDashboardApproval": false, "excludePackageNames": [ @@ -13441,13 +14298,14 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-sharp{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-sitemap{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-plugin-sharp/package.json" + "packages/gatsby-plugin-sitemap/package.json" ], "matchDepTypes": [ "dependencies" @@ -13456,8 +14314,8 @@ "patch", "minor" ], - "groupName": "minor and patch dependencies for gatsby-plugin-sharp", - "groupSlug": "gatsby-plugin-sharp-prod-minor", + "groupName": "minor and patch dependencies for gatsby-plugin-sitemap", + "groupSlug": "gatsby-plugin-sitemap-prod-minor", "excludePackageNames": [ "eslint", "prettier", @@ -13484,13 +14342,14 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-sharp{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-sitemap{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-plugin-sharp/package.json" + "packages/gatsby-plugin-sitemap/package.json" ], "matchDepTypes": [ "dependencies" @@ -13498,8 +14357,8 @@ "matchUpdateTypes": [ "major" ], - "groupName": "major dependencies for gatsby-plugin-sharp", - "groupSlug": "gatsby-plugin-sharp-prod-major", + "groupName": "major dependencies for gatsby-plugin-sitemap", + "groupSlug": "gatsby-plugin-sitemap-prod-major", "excludePackageNames": [ "eslint", "prettier", @@ -13526,23 +14385,22 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-sharp{{/unless}}", + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-sitemap{{/unless}}", "dependencyDashboardApproval": true }, { "matchPaths": [ - "packages/gatsby-plugin-sharp/package.json" + "packages/gatsby-plugin-sitemap/package.json" ], "matchDepTypes": [ "dependencies" ], - "groupName": "minor and patch dependencies for gatsby-plugin-sharp", - "groupSlug": "gatsby-plugin-sharp-prod-minor", - "matchPackageNames": [ - "sharp" - ], + "groupName": "minor and patch dependencies for gatsby-plugin-sitemap", + "groupSlug": "gatsby-plugin-sitemap-prod-minor", + "matchPackageNames": [], "matchUpdateTypes": [ "patch" ], @@ -13572,22 +14430,21 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-sharp{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-sitemap{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-plugin-sharp/package.json" + "packages/gatsby-plugin-sitemap/package.json" ], "matchDepTypes": [ "dependencies" ], - "groupName": "major dependencies for gatsby-plugin-sharp", - "groupSlug": "gatsby-plugin-sharp-prod-major", - "matchPackageNames": [ - "sharp" - ], + "groupName": "major dependencies for gatsby-plugin-sitemap", + "groupSlug": "gatsby-plugin-sitemap-prod-major", + "matchPackageNames": [], "matchUpdateTypes": [ "major", "minor" @@ -13618,14 +14475,15 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-sharp{{/unless}}", + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-sitemap{{/unless}}", "dependencyDashboardApproval": true }, { "matchPaths": [ - "packages/gatsby-plugin-sitemap/package.json" + "packages/gatsby-plugin-styled-components/package.json" ], "matchDepTypes": [ "devDependencies" @@ -13634,8 +14492,8 @@ "patch", "minor" ], - "groupName": "[DEV] minor and patch dependencies for gatsby-plugin-sitemap", - "groupSlug": "gatsby-plugin-sitemap-dev-minor", + "groupName": "[DEV] minor and patch dependencies for gatsby-plugin-styled-components", + "groupSlug": "gatsby-plugin-styled-components-dev-minor", "automerge": true, "excludePackageNames": [ "eslint", @@ -13663,13 +14521,14 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-sitemap{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-styled-components{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-plugin-sitemap/package.json" + "packages/gatsby-plugin-styled-components/package.json" ], "matchDepTypes": [ "devDependencies" @@ -13677,8 +14536,8 @@ "matchUpdateTypes": [ "major" ], - "groupName": "[DEV] major dependencies for gatsby-plugin-sitemap", - "groupSlug": "gatsby-plugin-sitemap-dev-major", + "groupName": "[DEV] major dependencies for gatsby-plugin-styled-components", + "groupSlug": "gatsby-plugin-styled-components-dev-major", "automerge": true, "dependencyDashboardApproval": false, "excludePackageNames": [ @@ -13707,13 +14566,14 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-sitemap{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-styled-components{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-plugin-sitemap/package.json" + "packages/gatsby-plugin-styled-components/package.json" ], "matchDepTypes": [ "dependencies" @@ -13722,8 +14582,8 @@ "patch", "minor" ], - "groupName": "minor and patch dependencies for gatsby-plugin-sitemap", - "groupSlug": "gatsby-plugin-sitemap-prod-minor", + "groupName": "minor and patch dependencies for gatsby-plugin-styled-components", + "groupSlug": "gatsby-plugin-styled-components-prod-minor", "excludePackageNames": [ "eslint", "prettier", @@ -13750,13 +14610,14 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-sitemap{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-styled-components{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-plugin-sitemap/package.json" + "packages/gatsby-plugin-styled-components/package.json" ], "matchDepTypes": [ "dependencies" @@ -13764,8 +14625,8 @@ "matchUpdateTypes": [ "major" ], - "groupName": "major dependencies for gatsby-plugin-sitemap", - "groupSlug": "gatsby-plugin-sitemap-prod-major", + "groupName": "major dependencies for gatsby-plugin-styled-components", + "groupSlug": "gatsby-plugin-styled-components-prod-major", "excludePackageNames": [ "eslint", "prettier", @@ -13792,20 +14653,21 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-sitemap{{/unless}}", + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-styled-components{{/unless}}", "dependencyDashboardApproval": true }, { "matchPaths": [ - "packages/gatsby-plugin-sitemap/package.json" + "packages/gatsby-plugin-styled-components/package.json" ], "matchDepTypes": [ "dependencies" ], - "groupName": "minor and patch dependencies for gatsby-plugin-sitemap", - "groupSlug": "gatsby-plugin-sitemap-prod-minor", + "groupName": "minor and patch dependencies for gatsby-plugin-styled-components", + "groupSlug": "gatsby-plugin-styled-components-prod-minor", "matchPackageNames": [], "matchUpdateTypes": [ "patch" @@ -13836,19 +14698,20 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-sitemap{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-styled-components{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-plugin-sitemap/package.json" + "packages/gatsby-plugin-styled-components/package.json" ], "matchDepTypes": [ "dependencies" ], - "groupName": "major dependencies for gatsby-plugin-sitemap", - "groupSlug": "gatsby-plugin-sitemap-prod-major", + "groupName": "major dependencies for gatsby-plugin-styled-components", + "groupSlug": "gatsby-plugin-styled-components-prod-major", "matchPackageNames": [], "matchUpdateTypes": [ "major", @@ -13880,14 +14743,15 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-sitemap{{/unless}}", + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-styled-components{{/unless}}", "dependencyDashboardApproval": true }, { "matchPaths": [ - "packages/gatsby-plugin-styled-components/package.json" + "packages/gatsby-plugin-styled-jsx/package.json" ], "matchDepTypes": [ "devDependencies" @@ -13896,8 +14760,8 @@ "patch", "minor" ], - "groupName": "[DEV] minor and patch dependencies for gatsby-plugin-styled-components", - "groupSlug": "gatsby-plugin-styled-components-dev-minor", + "groupName": "[DEV] minor and patch dependencies for gatsby-plugin-styled-jsx", + "groupSlug": "gatsby-plugin-styled-jsx-dev-minor", "automerge": true, "excludePackageNames": [ "eslint", @@ -13925,13 +14789,14 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-styled-components{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-styled-jsx{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-plugin-styled-components/package.json" + "packages/gatsby-plugin-styled-jsx/package.json" ], "matchDepTypes": [ "devDependencies" @@ -13939,8 +14804,8 @@ "matchUpdateTypes": [ "major" ], - "groupName": "[DEV] major dependencies for gatsby-plugin-styled-components", - "groupSlug": "gatsby-plugin-styled-components-dev-major", + "groupName": "[DEV] major dependencies for gatsby-plugin-styled-jsx", + "groupSlug": "gatsby-plugin-styled-jsx-dev-major", "automerge": true, "dependencyDashboardApproval": false, "excludePackageNames": [ @@ -13969,13 +14834,14 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-styled-components{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-styled-jsx{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-plugin-styled-components/package.json" + "packages/gatsby-plugin-styled-jsx/package.json" ], "matchDepTypes": [ "dependencies" @@ -13984,8 +14850,8 @@ "patch", "minor" ], - "groupName": "minor and patch dependencies for gatsby-plugin-styled-components", - "groupSlug": "gatsby-plugin-styled-components-prod-minor", + "groupName": "minor and patch dependencies for gatsby-plugin-styled-jsx", + "groupSlug": "gatsby-plugin-styled-jsx-prod-minor", "excludePackageNames": [ "eslint", "prettier", @@ -14012,13 +14878,14 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-styled-components{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-styled-jsx{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-plugin-styled-components/package.json" + "packages/gatsby-plugin-styled-jsx/package.json" ], "matchDepTypes": [ "dependencies" @@ -14026,8 +14893,8 @@ "matchUpdateTypes": [ "major" ], - "groupName": "major dependencies for gatsby-plugin-styled-components", - "groupSlug": "gatsby-plugin-styled-components-prod-major", + "groupName": "major dependencies for gatsby-plugin-styled-jsx", + "groupSlug": "gatsby-plugin-styled-jsx-prod-major", "excludePackageNames": [ "eslint", "prettier", @@ -14054,20 +14921,21 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-styled-components{{/unless}}", + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-styled-jsx{{/unless}}", "dependencyDashboardApproval": true }, { "matchPaths": [ - "packages/gatsby-plugin-styled-components/package.json" + "packages/gatsby-plugin-styled-jsx/package.json" ], "matchDepTypes": [ "dependencies" ], - "groupName": "minor and patch dependencies for gatsby-plugin-styled-components", - "groupSlug": "gatsby-plugin-styled-components-prod-minor", + "groupName": "minor and patch dependencies for gatsby-plugin-styled-jsx", + "groupSlug": "gatsby-plugin-styled-jsx-prod-minor", "matchPackageNames": [], "matchUpdateTypes": [ "patch" @@ -14098,19 +14966,20 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-styled-components{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-styled-jsx{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-plugin-styled-components/package.json" + "packages/gatsby-plugin-styled-jsx/package.json" ], "matchDepTypes": [ "dependencies" ], - "groupName": "major dependencies for gatsby-plugin-styled-components", - "groupSlug": "gatsby-plugin-styled-components-prod-major", + "groupName": "major dependencies for gatsby-plugin-styled-jsx", + "groupSlug": "gatsby-plugin-styled-jsx-prod-major", "matchPackageNames": [], "matchUpdateTypes": [ "major", @@ -14142,14 +15011,15 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-styled-components{{/unless}}", + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-styled-jsx{{/unless}}", "dependencyDashboardApproval": true }, { "matchPaths": [ - "packages/gatsby-plugin-styled-jsx/package.json" + "packages/gatsby-plugin-styletron/package.json" ], "matchDepTypes": [ "devDependencies" @@ -14158,8 +15028,8 @@ "patch", "minor" ], - "groupName": "[DEV] minor and patch dependencies for gatsby-plugin-styled-jsx", - "groupSlug": "gatsby-plugin-styled-jsx-dev-minor", + "groupName": "[DEV] minor and patch dependencies for gatsby-plugin-styletron", + "groupSlug": "gatsby-plugin-styletron-dev-minor", "automerge": true, "excludePackageNames": [ "eslint", @@ -14187,13 +15057,14 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-styled-jsx{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-styletron{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-plugin-styled-jsx/package.json" + "packages/gatsby-plugin-styletron/package.json" ], "matchDepTypes": [ "devDependencies" @@ -14201,8 +15072,8 @@ "matchUpdateTypes": [ "major" ], - "groupName": "[DEV] major dependencies for gatsby-plugin-styled-jsx", - "groupSlug": "gatsby-plugin-styled-jsx-dev-major", + "groupName": "[DEV] major dependencies for gatsby-plugin-styletron", + "groupSlug": "gatsby-plugin-styletron-dev-major", "automerge": true, "dependencyDashboardApproval": false, "excludePackageNames": [ @@ -14231,13 +15102,14 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-styled-jsx{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-styletron{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-plugin-styled-jsx/package.json" + "packages/gatsby-plugin-styletron/package.json" ], "matchDepTypes": [ "dependencies" @@ -14246,8 +15118,8 @@ "patch", "minor" ], - "groupName": "minor and patch dependencies for gatsby-plugin-styled-jsx", - "groupSlug": "gatsby-plugin-styled-jsx-prod-minor", + "groupName": "minor and patch dependencies for gatsby-plugin-styletron", + "groupSlug": "gatsby-plugin-styletron-prod-minor", "excludePackageNames": [ "eslint", "prettier", @@ -14274,13 +15146,14 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-styled-jsx{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-styletron{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-plugin-styled-jsx/package.json" + "packages/gatsby-plugin-styletron/package.json" ], "matchDepTypes": [ "dependencies" @@ -14288,8 +15161,8 @@ "matchUpdateTypes": [ "major" ], - "groupName": "major dependencies for gatsby-plugin-styled-jsx", - "groupSlug": "gatsby-plugin-styled-jsx-prod-major", + "groupName": "major dependencies for gatsby-plugin-styletron", + "groupSlug": "gatsby-plugin-styletron-prod-major", "excludePackageNames": [ "eslint", "prettier", @@ -14316,20 +15189,21 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-styled-jsx{{/unless}}", + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-styletron{{/unless}}", "dependencyDashboardApproval": true }, { "matchPaths": [ - "packages/gatsby-plugin-styled-jsx/package.json" + "packages/gatsby-plugin-styletron/package.json" ], "matchDepTypes": [ "dependencies" ], - "groupName": "minor and patch dependencies for gatsby-plugin-styled-jsx", - "groupSlug": "gatsby-plugin-styled-jsx-prod-minor", + "groupName": "minor and patch dependencies for gatsby-plugin-styletron", + "groupSlug": "gatsby-plugin-styletron-prod-minor", "matchPackageNames": [], "matchUpdateTypes": [ "patch" @@ -14360,19 +15234,20 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-styled-jsx{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-styletron{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-plugin-styled-jsx/package.json" + "packages/gatsby-plugin-styletron/package.json" ], "matchDepTypes": [ "dependencies" ], - "groupName": "major dependencies for gatsby-plugin-styled-jsx", - "groupSlug": "gatsby-plugin-styled-jsx-prod-major", + "groupName": "major dependencies for gatsby-plugin-styletron", + "groupSlug": "gatsby-plugin-styletron-prod-major", "matchPackageNames": [], "matchUpdateTypes": [ "major", @@ -14404,14 +15279,15 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-styled-jsx{{/unless}}", + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-styletron{{/unless}}", "dependencyDashboardApproval": true }, { "matchPaths": [ - "packages/gatsby-plugin-styletron/package.json" + "packages/gatsby-plugin-stylus/package.json" ], "matchDepTypes": [ "devDependencies" @@ -14420,8 +15296,8 @@ "patch", "minor" ], - "groupName": "[DEV] minor and patch dependencies for gatsby-plugin-styletron", - "groupSlug": "gatsby-plugin-styletron-dev-minor", + "groupName": "[DEV] minor and patch dependencies for gatsby-plugin-stylus", + "groupSlug": "gatsby-plugin-stylus-dev-minor", "automerge": true, "excludePackageNames": [ "eslint", @@ -14449,13 +15325,14 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-styletron{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-stylus{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-plugin-styletron/package.json" + "packages/gatsby-plugin-stylus/package.json" ], "matchDepTypes": [ "devDependencies" @@ -14463,8 +15340,8 @@ "matchUpdateTypes": [ "major" ], - "groupName": "[DEV] major dependencies for gatsby-plugin-styletron", - "groupSlug": "gatsby-plugin-styletron-dev-major", + "groupName": "[DEV] major dependencies for gatsby-plugin-stylus", + "groupSlug": "gatsby-plugin-stylus-dev-major", "automerge": true, "dependencyDashboardApproval": false, "excludePackageNames": [ @@ -14493,13 +15370,14 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-styletron{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-stylus{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-plugin-styletron/package.json" + "packages/gatsby-plugin-stylus/package.json" ], "matchDepTypes": [ "dependencies" @@ -14508,8 +15386,8 @@ "patch", "minor" ], - "groupName": "minor and patch dependencies for gatsby-plugin-styletron", - "groupSlug": "gatsby-plugin-styletron-prod-minor", + "groupName": "minor and patch dependencies for gatsby-plugin-stylus", + "groupSlug": "gatsby-plugin-stylus-prod-minor", "excludePackageNames": [ "eslint", "prettier", @@ -14536,13 +15414,14 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-styletron{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-stylus{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-plugin-styletron/package.json" + "packages/gatsby-plugin-stylus/package.json" ], "matchDepTypes": [ "dependencies" @@ -14550,8 +15429,8 @@ "matchUpdateTypes": [ "major" ], - "groupName": "major dependencies for gatsby-plugin-styletron", - "groupSlug": "gatsby-plugin-styletron-prod-major", + "groupName": "major dependencies for gatsby-plugin-stylus", + "groupSlug": "gatsby-plugin-stylus-prod-major", "excludePackageNames": [ "eslint", "prettier", @@ -14578,21 +15457,24 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-styletron{{/unless}}", + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-stylus{{/unless}}", "dependencyDashboardApproval": true }, { "matchPaths": [ - "packages/gatsby-plugin-styletron/package.json" + "packages/gatsby-plugin-stylus/package.json" ], "matchDepTypes": [ "dependencies" ], - "groupName": "minor and patch dependencies for gatsby-plugin-styletron", - "groupSlug": "gatsby-plugin-styletron-prod-minor", - "matchPackageNames": [], + "groupName": "minor and patch dependencies for gatsby-plugin-stylus", + "groupSlug": "gatsby-plugin-stylus-prod-minor", + "matchPackageNames": [ + "stylus" + ], "matchUpdateTypes": [ "patch" ], @@ -14622,20 +15504,23 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-styletron{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-stylus{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-plugin-styletron/package.json" + "packages/gatsby-plugin-stylus/package.json" ], "matchDepTypes": [ "dependencies" ], - "groupName": "major dependencies for gatsby-plugin-styletron", - "groupSlug": "gatsby-plugin-styletron-prod-major", - "matchPackageNames": [], + "groupName": "major dependencies for gatsby-plugin-stylus", + "groupSlug": "gatsby-plugin-stylus-prod-major", + "matchPackageNames": [ + "stylus" + ], "matchUpdateTypes": [ "major", "minor" @@ -14666,14 +15551,15 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-styletron{{/unless}}", + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-stylus{{/unless}}", "dependencyDashboardApproval": true }, { "matchPaths": [ - "packages/gatsby-plugin-stylus/package.json" + "packages/gatsby-plugin-subfont/package.json" ], "matchDepTypes": [ "devDependencies" @@ -14682,8 +15568,8 @@ "patch", "minor" ], - "groupName": "[DEV] minor and patch dependencies for gatsby-plugin-stylus", - "groupSlug": "gatsby-plugin-stylus-dev-minor", + "groupName": "[DEV] minor and patch dependencies for gatsby-plugin-subfont", + "groupSlug": "gatsby-plugin-subfont-dev-minor", "automerge": true, "excludePackageNames": [ "eslint", @@ -14711,13 +15597,14 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-stylus{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-subfont{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-plugin-stylus/package.json" + "packages/gatsby-plugin-subfont/package.json" ], "matchDepTypes": [ "devDependencies" @@ -14725,8 +15612,8 @@ "matchUpdateTypes": [ "major" ], - "groupName": "[DEV] major dependencies for gatsby-plugin-stylus", - "groupSlug": "gatsby-plugin-stylus-dev-major", + "groupName": "[DEV] major dependencies for gatsby-plugin-subfont", + "groupSlug": "gatsby-plugin-subfont-dev-major", "automerge": true, "dependencyDashboardApproval": false, "excludePackageNames": [ @@ -14755,13 +15642,14 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-stylus{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-subfont{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-plugin-stylus/package.json" + "packages/gatsby-plugin-subfont/package.json" ], "matchDepTypes": [ "dependencies" @@ -14770,8 +15658,8 @@ "patch", "minor" ], - "groupName": "minor and patch dependencies for gatsby-plugin-stylus", - "groupSlug": "gatsby-plugin-stylus-prod-minor", + "groupName": "minor and patch dependencies for gatsby-plugin-subfont", + "groupSlug": "gatsby-plugin-subfont-prod-minor", "excludePackageNames": [ "eslint", "prettier", @@ -14798,13 +15686,14 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-stylus{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-subfont{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-plugin-stylus/package.json" + "packages/gatsby-plugin-subfont/package.json" ], "matchDepTypes": [ "dependencies" @@ -14812,8 +15701,8 @@ "matchUpdateTypes": [ "major" ], - "groupName": "major dependencies for gatsby-plugin-stylus", - "groupSlug": "gatsby-plugin-stylus-prod-major", + "groupName": "major dependencies for gatsby-plugin-subfont", + "groupSlug": "gatsby-plugin-subfont-prod-major", "excludePackageNames": [ "eslint", "prettier", @@ -14840,23 +15729,22 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-stylus{{/unless}}", + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-subfont{{/unless}}", "dependencyDashboardApproval": true }, { "matchPaths": [ - "packages/gatsby-plugin-stylus/package.json" + "packages/gatsby-plugin-subfont/package.json" ], "matchDepTypes": [ "dependencies" ], - "groupName": "minor and patch dependencies for gatsby-plugin-stylus", - "groupSlug": "gatsby-plugin-stylus-prod-minor", - "matchPackageNames": [ - "stylus" - ], + "groupName": "minor and patch dependencies for gatsby-plugin-subfont", + "groupSlug": "gatsby-plugin-subfont-prod-minor", + "matchPackageNames": [], "matchUpdateTypes": [ "patch" ], @@ -14886,22 +15774,21 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-stylus{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-subfont{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-plugin-stylus/package.json" + "packages/gatsby-plugin-subfont/package.json" ], "matchDepTypes": [ "dependencies" ], - "groupName": "major dependencies for gatsby-plugin-stylus", - "groupSlug": "gatsby-plugin-stylus-prod-major", - "matchPackageNames": [ - "stylus" - ], + "groupName": "major dependencies for gatsby-plugin-subfont", + "groupSlug": "gatsby-plugin-subfont-prod-major", + "matchPackageNames": [], "matchUpdateTypes": [ "major", "minor" @@ -14932,14 +15819,15 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-stylus{{/unless}}", + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-subfont{{/unless}}", "dependencyDashboardApproval": true }, { "matchPaths": [ - "packages/gatsby-plugin-subfont/package.json" + "packages/gatsby-plugin-twitter/package.json" ], "matchDepTypes": [ "devDependencies" @@ -14948,8 +15836,8 @@ "patch", "minor" ], - "groupName": "[DEV] minor and patch dependencies for gatsby-plugin-subfont", - "groupSlug": "gatsby-plugin-subfont-dev-minor", + "groupName": "[DEV] minor and patch dependencies for gatsby-plugin-twitter", + "groupSlug": "gatsby-plugin-twitter-dev-minor", "automerge": true, "excludePackageNames": [ "eslint", @@ -14977,13 +15865,14 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-subfont{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-twitter{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-plugin-subfont/package.json" + "packages/gatsby-plugin-twitter/package.json" ], "matchDepTypes": [ "devDependencies" @@ -14991,8 +15880,8 @@ "matchUpdateTypes": [ "major" ], - "groupName": "[DEV] major dependencies for gatsby-plugin-subfont", - "groupSlug": "gatsby-plugin-subfont-dev-major", + "groupName": "[DEV] major dependencies for gatsby-plugin-twitter", + "groupSlug": "gatsby-plugin-twitter-dev-major", "automerge": true, "dependencyDashboardApproval": false, "excludePackageNames": [ @@ -15021,13 +15910,14 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-subfont{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-twitter{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-plugin-subfont/package.json" + "packages/gatsby-plugin-twitter/package.json" ], "matchDepTypes": [ "dependencies" @@ -15036,8 +15926,8 @@ "patch", "minor" ], - "groupName": "minor and patch dependencies for gatsby-plugin-subfont", - "groupSlug": "gatsby-plugin-subfont-prod-minor", + "groupName": "minor and patch dependencies for gatsby-plugin-twitter", + "groupSlug": "gatsby-plugin-twitter-prod-minor", "excludePackageNames": [ "eslint", "prettier", @@ -15064,13 +15954,14 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-subfont{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-twitter{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-plugin-subfont/package.json" + "packages/gatsby-plugin-twitter/package.json" ], "matchDepTypes": [ "dependencies" @@ -15078,8 +15969,8 @@ "matchUpdateTypes": [ "major" ], - "groupName": "major dependencies for gatsby-plugin-subfont", - "groupSlug": "gatsby-plugin-subfont-prod-major", + "groupName": "major dependencies for gatsby-plugin-twitter", + "groupSlug": "gatsby-plugin-twitter-prod-major", "excludePackageNames": [ "eslint", "prettier", @@ -15106,20 +15997,21 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-subfont{{/unless}}", + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-twitter{{/unless}}", "dependencyDashboardApproval": true }, { "matchPaths": [ - "packages/gatsby-plugin-subfont/package.json" + "packages/gatsby-plugin-twitter/package.json" ], "matchDepTypes": [ "dependencies" ], - "groupName": "minor and patch dependencies for gatsby-plugin-subfont", - "groupSlug": "gatsby-plugin-subfont-prod-minor", + "groupName": "minor and patch dependencies for gatsby-plugin-twitter", + "groupSlug": "gatsby-plugin-twitter-prod-minor", "matchPackageNames": [], "matchUpdateTypes": [ "patch" @@ -15150,19 +16042,20 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-subfont{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-twitter{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-plugin-subfont/package.json" + "packages/gatsby-plugin-twitter/package.json" ], "matchDepTypes": [ "dependencies" ], - "groupName": "major dependencies for gatsby-plugin-subfont", - "groupSlug": "gatsby-plugin-subfont-prod-major", + "groupName": "major dependencies for gatsby-plugin-twitter", + "groupSlug": "gatsby-plugin-twitter-prod-major", "matchPackageNames": [], "matchUpdateTypes": [ "major", @@ -15194,14 +16087,15 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-subfont{{/unless}}", + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-twitter{{/unless}}", "dependencyDashboardApproval": true }, { "matchPaths": [ - "packages/gatsby-plugin-twitter/package.json" + "packages/gatsby-plugin-typescript/package.json" ], "matchDepTypes": [ "devDependencies" @@ -15210,8 +16104,8 @@ "patch", "minor" ], - "groupName": "[DEV] minor and patch dependencies for gatsby-plugin-twitter", - "groupSlug": "gatsby-plugin-twitter-dev-minor", + "groupName": "[DEV] minor and patch dependencies for gatsby-plugin-typescript", + "groupSlug": "gatsby-plugin-typescript-dev-minor", "automerge": true, "excludePackageNames": [ "eslint", @@ -15239,13 +16133,14 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-twitter{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-typescript{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-plugin-twitter/package.json" + "packages/gatsby-plugin-typescript/package.json" ], "matchDepTypes": [ "devDependencies" @@ -15253,8 +16148,8 @@ "matchUpdateTypes": [ "major" ], - "groupName": "[DEV] major dependencies for gatsby-plugin-twitter", - "groupSlug": "gatsby-plugin-twitter-dev-major", + "groupName": "[DEV] major dependencies for gatsby-plugin-typescript", + "groupSlug": "gatsby-plugin-typescript-dev-major", "automerge": true, "dependencyDashboardApproval": false, "excludePackageNames": [ @@ -15283,13 +16178,14 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-twitter{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-typescript{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-plugin-twitter/package.json" + "packages/gatsby-plugin-typescript/package.json" ], "matchDepTypes": [ "dependencies" @@ -15298,8 +16194,8 @@ "patch", "minor" ], - "groupName": "minor and patch dependencies for gatsby-plugin-twitter", - "groupSlug": "gatsby-plugin-twitter-prod-minor", + "groupName": "minor and patch dependencies for gatsby-plugin-typescript", + "groupSlug": "gatsby-plugin-typescript-prod-minor", "excludePackageNames": [ "eslint", "prettier", @@ -15326,13 +16222,14 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-twitter{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-typescript{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-plugin-twitter/package.json" + "packages/gatsby-plugin-typescript/package.json" ], "matchDepTypes": [ "dependencies" @@ -15340,8 +16237,8 @@ "matchUpdateTypes": [ "major" ], - "groupName": "major dependencies for gatsby-plugin-twitter", - "groupSlug": "gatsby-plugin-twitter-prod-major", + "groupName": "major dependencies for gatsby-plugin-typescript", + "groupSlug": "gatsby-plugin-typescript-prod-major", "excludePackageNames": [ "eslint", "prettier", @@ -15368,20 +16265,21 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-twitter{{/unless}}", + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-typescript{{/unless}}", "dependencyDashboardApproval": true }, { "matchPaths": [ - "packages/gatsby-plugin-twitter/package.json" + "packages/gatsby-plugin-typescript/package.json" ], "matchDepTypes": [ "dependencies" ], - "groupName": "minor and patch dependencies for gatsby-plugin-twitter", - "groupSlug": "gatsby-plugin-twitter-prod-minor", + "groupName": "minor and patch dependencies for gatsby-plugin-typescript", + "groupSlug": "gatsby-plugin-typescript-prod-minor", "matchPackageNames": [], "matchUpdateTypes": [ "patch" @@ -15412,19 +16310,20 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-twitter{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-typescript{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-plugin-twitter/package.json" + "packages/gatsby-plugin-typescript/package.json" ], "matchDepTypes": [ "dependencies" ], - "groupName": "major dependencies for gatsby-plugin-twitter", - "groupSlug": "gatsby-plugin-twitter-prod-major", + "groupName": "major dependencies for gatsby-plugin-typescript", + "groupSlug": "gatsby-plugin-typescript-prod-major", "matchPackageNames": [], "matchUpdateTypes": [ "major", @@ -15456,14 +16355,15 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-twitter{{/unless}}", + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-typescript{{/unless}}", "dependencyDashboardApproval": true }, { "matchPaths": [ - "packages/gatsby-plugin-typescript/package.json" + "packages/gatsby-plugin-typography/package.json" ], "matchDepTypes": [ "devDependencies" @@ -15472,8 +16372,8 @@ "patch", "minor" ], - "groupName": "[DEV] minor and patch dependencies for gatsby-plugin-typescript", - "groupSlug": "gatsby-plugin-typescript-dev-minor", + "groupName": "[DEV] minor and patch dependencies for gatsby-plugin-typography", + "groupSlug": "gatsby-plugin-typography-dev-minor", "automerge": true, "excludePackageNames": [ "eslint", @@ -15501,13 +16401,14 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-typescript{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-typography{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-plugin-typescript/package.json" + "packages/gatsby-plugin-typography/package.json" ], "matchDepTypes": [ "devDependencies" @@ -15515,8 +16416,8 @@ "matchUpdateTypes": [ "major" ], - "groupName": "[DEV] major dependencies for gatsby-plugin-typescript", - "groupSlug": "gatsby-plugin-typescript-dev-major", + "groupName": "[DEV] major dependencies for gatsby-plugin-typography", + "groupSlug": "gatsby-plugin-typography-dev-major", "automerge": true, "dependencyDashboardApproval": false, "excludePackageNames": [ @@ -15545,13 +16446,14 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-typescript{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-typography{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-plugin-typescript/package.json" + "packages/gatsby-plugin-typography/package.json" ], "matchDepTypes": [ "dependencies" @@ -15560,8 +16462,8 @@ "patch", "minor" ], - "groupName": "minor and patch dependencies for gatsby-plugin-typescript", - "groupSlug": "gatsby-plugin-typescript-prod-minor", + "groupName": "minor and patch dependencies for gatsby-plugin-typography", + "groupSlug": "gatsby-plugin-typography-prod-minor", "excludePackageNames": [ "eslint", "prettier", @@ -15588,13 +16490,14 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-typescript{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-typography{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-plugin-typescript/package.json" + "packages/gatsby-plugin-typography/package.json" ], "matchDepTypes": [ "dependencies" @@ -15602,8 +16505,8 @@ "matchUpdateTypes": [ "major" ], - "groupName": "major dependencies for gatsby-plugin-typescript", - "groupSlug": "gatsby-plugin-typescript-prod-major", + "groupName": "major dependencies for gatsby-plugin-typography", + "groupSlug": "gatsby-plugin-typography-prod-major", "excludePackageNames": [ "eslint", "prettier", @@ -15630,20 +16533,21 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-typescript{{/unless}}", + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-typography{{/unless}}", "dependencyDashboardApproval": true }, { "matchPaths": [ - "packages/gatsby-plugin-typescript/package.json" + "packages/gatsby-plugin-typography/package.json" ], "matchDepTypes": [ "dependencies" ], - "groupName": "minor and patch dependencies for gatsby-plugin-typescript", - "groupSlug": "gatsby-plugin-typescript-prod-minor", + "groupName": "minor and patch dependencies for gatsby-plugin-typography", + "groupSlug": "gatsby-plugin-typography-prod-minor", "matchPackageNames": [], "matchUpdateTypes": [ "patch" @@ -15674,19 +16578,20 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-typescript{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-typography{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-plugin-typescript/package.json" + "packages/gatsby-plugin-typography/package.json" ], "matchDepTypes": [ "dependencies" ], - "groupName": "major dependencies for gatsby-plugin-typescript", - "groupSlug": "gatsby-plugin-typescript-prod-major", + "groupName": "major dependencies for gatsby-plugin-typography", + "groupSlug": "gatsby-plugin-typography-prod-major", "matchPackageNames": [], "matchUpdateTypes": [ "major", @@ -15718,14 +16623,15 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-typescript{{/unless}}", + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-typography{{/unless}}", "dependencyDashboardApproval": true }, { "matchPaths": [ - "packages/gatsby-plugin-typography/package.json" + "packages/gatsby-plugin-utils/package.json" ], "matchDepTypes": [ "devDependencies" @@ -15734,8 +16640,8 @@ "patch", "minor" ], - "groupName": "[DEV] minor and patch dependencies for gatsby-plugin-typography", - "groupSlug": "gatsby-plugin-typography-dev-minor", + "groupName": "[DEV] minor and patch dependencies for gatsby-plugin-utils", + "groupSlug": "gatsby-plugin-utils-dev-minor", "automerge": true, "excludePackageNames": [ "eslint", @@ -15763,13 +16669,14 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-typography{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-utils{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-plugin-typography/package.json" + "packages/gatsby-plugin-utils/package.json" ], "matchDepTypes": [ "devDependencies" @@ -15777,8 +16684,8 @@ "matchUpdateTypes": [ "major" ], - "groupName": "[DEV] major dependencies for gatsby-plugin-typography", - "groupSlug": "gatsby-plugin-typography-dev-major", + "groupName": "[DEV] major dependencies for gatsby-plugin-utils", + "groupSlug": "gatsby-plugin-utils-dev-major", "automerge": true, "dependencyDashboardApproval": false, "excludePackageNames": [ @@ -15807,13 +16714,14 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-typography{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-utils{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-plugin-typography/package.json" + "packages/gatsby-plugin-utils/package.json" ], "matchDepTypes": [ "dependencies" @@ -15822,8 +16730,8 @@ "patch", "minor" ], - "groupName": "minor and patch dependencies for gatsby-plugin-typography", - "groupSlug": "gatsby-plugin-typography-prod-minor", + "groupName": "minor and patch dependencies for gatsby-plugin-utils", + "groupSlug": "gatsby-plugin-utils-prod-minor", "excludePackageNames": [ "eslint", "prettier", @@ -15850,13 +16758,14 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-typography{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-utils{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-plugin-typography/package.json" + "packages/gatsby-plugin-utils/package.json" ], "matchDepTypes": [ "dependencies" @@ -15864,8 +16773,8 @@ "matchUpdateTypes": [ "major" ], - "groupName": "major dependencies for gatsby-plugin-typography", - "groupSlug": "gatsby-plugin-typography-prod-major", + "groupName": "major dependencies for gatsby-plugin-utils", + "groupSlug": "gatsby-plugin-utils-prod-major", "excludePackageNames": [ "eslint", "prettier", @@ -15892,20 +16801,21 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-typography{{/unless}}", + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-utils{{/unless}}", "dependencyDashboardApproval": true }, { "matchPaths": [ - "packages/gatsby-plugin-typography/package.json" + "packages/gatsby-plugin-utils/package.json" ], "matchDepTypes": [ "dependencies" ], - "groupName": "minor and patch dependencies for gatsby-plugin-typography", - "groupSlug": "gatsby-plugin-typography-prod-minor", + "groupName": "minor and patch dependencies for gatsby-plugin-utils", + "groupSlug": "gatsby-plugin-utils-prod-minor", "matchPackageNames": [], "matchUpdateTypes": [ "patch" @@ -15936,19 +16846,20 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-typography{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-utils{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-plugin-typography/package.json" + "packages/gatsby-plugin-utils/package.json" ], "matchDepTypes": [ "dependencies" ], - "groupName": "major dependencies for gatsby-plugin-typography", - "groupSlug": "gatsby-plugin-typography-prod-major", + "groupName": "major dependencies for gatsby-plugin-utils", + "groupSlug": "gatsby-plugin-utils-prod-major", "matchPackageNames": [], "matchUpdateTypes": [ "major", @@ -15980,14 +16891,15 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-typography{{/unless}}", + "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-utils{{/unless}}", "dependencyDashboardApproval": true }, { "matchPaths": [ - "packages/gatsby-plugin-utils/package.json" + "packages/gatsby-react-router-scroll/package.json" ], "matchDepTypes": [ "devDependencies" @@ -15996,8 +16908,8 @@ "patch", "minor" ], - "groupName": "[DEV] minor and patch dependencies for gatsby-plugin-utils", - "groupSlug": "gatsby-plugin-utils-dev-minor", + "groupName": "[DEV] minor and patch dependencies for gatsby-react-router-scroll", + "groupSlug": "gatsby-react-router-scroll-dev-minor", "automerge": true, "excludePackageNames": [ "eslint", @@ -16025,13 +16937,14 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-utils{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-react-router-scroll{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-plugin-utils/package.json" + "packages/gatsby-react-router-scroll/package.json" ], "matchDepTypes": [ "devDependencies" @@ -16039,8 +16952,8 @@ "matchUpdateTypes": [ "major" ], - "groupName": "[DEV] major dependencies for gatsby-plugin-utils", - "groupSlug": "gatsby-plugin-utils-dev-major", + "groupName": "[DEV] major dependencies for gatsby-react-router-scroll", + "groupSlug": "gatsby-react-router-scroll-dev-major", "automerge": true, "dependencyDashboardApproval": false, "excludePackageNames": [ @@ -16069,13 +16982,14 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-utils{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-react-router-scroll{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-plugin-utils/package.json" + "packages/gatsby-react-router-scroll/package.json" ], "matchDepTypes": [ "dependencies" @@ -16084,8 +16998,8 @@ "patch", "minor" ], - "groupName": "minor and patch dependencies for gatsby-plugin-utils", - "groupSlug": "gatsby-plugin-utils-prod-minor", + "groupName": "minor and patch dependencies for gatsby-react-router-scroll", + "groupSlug": "gatsby-react-router-scroll-prod-minor", "excludePackageNames": [ "eslint", "prettier", @@ -16112,13 +17026,14 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-utils{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-react-router-scroll{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-plugin-utils/package.json" + "packages/gatsby-react-router-scroll/package.json" ], "matchDepTypes": [ "dependencies" @@ -16126,8 +17041,8 @@ "matchUpdateTypes": [ "major" ], - "groupName": "major dependencies for gatsby-plugin-utils", - "groupSlug": "gatsby-plugin-utils-prod-major", + "groupName": "major dependencies for gatsby-react-router-scroll", + "groupSlug": "gatsby-react-router-scroll-prod-major", "excludePackageNames": [ "eslint", "prettier", @@ -16154,20 +17069,21 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-utils{{/unless}}", + "commitMessageSuffix": "{{#unless groupName}} for gatsby-react-router-scroll{{/unless}}", "dependencyDashboardApproval": true }, { "matchPaths": [ - "packages/gatsby-plugin-utils/package.json" + "packages/gatsby-react-router-scroll/package.json" ], "matchDepTypes": [ "dependencies" ], - "groupName": "minor and patch dependencies for gatsby-plugin-utils", - "groupSlug": "gatsby-plugin-utils-prod-minor", + "groupName": "minor and patch dependencies for gatsby-react-router-scroll", + "groupSlug": "gatsby-react-router-scroll-prod-minor", "matchPackageNames": [], "matchUpdateTypes": [ "patch" @@ -16198,19 +17114,20 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-utils{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-react-router-scroll{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-plugin-utils/package.json" + "packages/gatsby-react-router-scroll/package.json" ], "matchDepTypes": [ "dependencies" ], - "groupName": "major dependencies for gatsby-plugin-utils", - "groupSlug": "gatsby-plugin-utils-prod-major", + "groupName": "major dependencies for gatsby-react-router-scroll", + "groupSlug": "gatsby-react-router-scroll-prod-major", "matchPackageNames": [], "matchUpdateTypes": [ "major", @@ -16242,14 +17159,15 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-utils{{/unless}}", + "commitMessageSuffix": "{{#unless groupName}} for gatsby-react-router-scroll{{/unless}}", "dependencyDashboardApproval": true }, { "matchPaths": [ - "packages/gatsby-react-router-scroll/package.json" + "packages/gatsby-remark-autolink-headers/package.json" ], "matchDepTypes": [ "devDependencies" @@ -16258,8 +17176,8 @@ "patch", "minor" ], - "groupName": "[DEV] minor and patch dependencies for gatsby-react-router-scroll", - "groupSlug": "gatsby-react-router-scroll-dev-minor", + "groupName": "[DEV] minor and patch dependencies for gatsby-remark-autolink-headers", + "groupSlug": "gatsby-remark-autolink-headers-dev-minor", "automerge": true, "excludePackageNames": [ "eslint", @@ -16287,13 +17205,14 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-react-router-scroll{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-autolink-headers{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-react-router-scroll/package.json" + "packages/gatsby-remark-autolink-headers/package.json" ], "matchDepTypes": [ "devDependencies" @@ -16301,8 +17220,8 @@ "matchUpdateTypes": [ "major" ], - "groupName": "[DEV] major dependencies for gatsby-react-router-scroll", - "groupSlug": "gatsby-react-router-scroll-dev-major", + "groupName": "[DEV] major dependencies for gatsby-remark-autolink-headers", + "groupSlug": "gatsby-remark-autolink-headers-dev-major", "automerge": true, "dependencyDashboardApproval": false, "excludePackageNames": [ @@ -16331,13 +17250,14 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-react-router-scroll{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-autolink-headers{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-react-router-scroll/package.json" + "packages/gatsby-remark-autolink-headers/package.json" ], "matchDepTypes": [ "dependencies" @@ -16346,8 +17266,8 @@ "patch", "minor" ], - "groupName": "minor and patch dependencies for gatsby-react-router-scroll", - "groupSlug": "gatsby-react-router-scroll-prod-minor", + "groupName": "minor and patch dependencies for gatsby-remark-autolink-headers", + "groupSlug": "gatsby-remark-autolink-headers-prod-minor", "excludePackageNames": [ "eslint", "prettier", @@ -16374,13 +17294,14 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-react-router-scroll{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-autolink-headers{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-react-router-scroll/package.json" + "packages/gatsby-remark-autolink-headers/package.json" ], "matchDepTypes": [ "dependencies" @@ -16388,8 +17309,8 @@ "matchUpdateTypes": [ "major" ], - "groupName": "major dependencies for gatsby-react-router-scroll", - "groupSlug": "gatsby-react-router-scroll-prod-major", + "groupName": "major dependencies for gatsby-remark-autolink-headers", + "groupSlug": "gatsby-remark-autolink-headers-prod-major", "excludePackageNames": [ "eslint", "prettier", @@ -16416,20 +17337,21 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-react-router-scroll{{/unless}}", + "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-autolink-headers{{/unless}}", "dependencyDashboardApproval": true }, { "matchPaths": [ - "packages/gatsby-react-router-scroll/package.json" + "packages/gatsby-remark-autolink-headers/package.json" ], "matchDepTypes": [ "dependencies" ], - "groupName": "minor and patch dependencies for gatsby-react-router-scroll", - "groupSlug": "gatsby-react-router-scroll-prod-minor", + "groupName": "minor and patch dependencies for gatsby-remark-autolink-headers", + "groupSlug": "gatsby-remark-autolink-headers-prod-minor", "matchPackageNames": [], "matchUpdateTypes": [ "patch" @@ -16460,19 +17382,20 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-react-router-scroll{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-autolink-headers{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-react-router-scroll/package.json" + "packages/gatsby-remark-autolink-headers/package.json" ], "matchDepTypes": [ "dependencies" ], - "groupName": "major dependencies for gatsby-react-router-scroll", - "groupSlug": "gatsby-react-router-scroll-prod-major", + "groupName": "major dependencies for gatsby-remark-autolink-headers", + "groupSlug": "gatsby-remark-autolink-headers-prod-major", "matchPackageNames": [], "matchUpdateTypes": [ "major", @@ -16504,14 +17427,15 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-react-router-scroll{{/unless}}", + "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-autolink-headers{{/unless}}", "dependencyDashboardApproval": true }, { "matchPaths": [ - "packages/gatsby-remark-autolink-headers/package.json" + "packages/gatsby-remark-code-repls/package.json" ], "matchDepTypes": [ "devDependencies" @@ -16520,8 +17444,8 @@ "patch", "minor" ], - "groupName": "[DEV] minor and patch dependencies for gatsby-remark-autolink-headers", - "groupSlug": "gatsby-remark-autolink-headers-dev-minor", + "groupName": "[DEV] minor and patch dependencies for gatsby-remark-code-repls", + "groupSlug": "gatsby-remark-code-repls-dev-minor", "automerge": true, "excludePackageNames": [ "eslint", @@ -16549,13 +17473,14 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-autolink-headers{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-code-repls{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-remark-autolink-headers/package.json" + "packages/gatsby-remark-code-repls/package.json" ], "matchDepTypes": [ "devDependencies" @@ -16563,8 +17488,8 @@ "matchUpdateTypes": [ "major" ], - "groupName": "[DEV] major dependencies for gatsby-remark-autolink-headers", - "groupSlug": "gatsby-remark-autolink-headers-dev-major", + "groupName": "[DEV] major dependencies for gatsby-remark-code-repls", + "groupSlug": "gatsby-remark-code-repls-dev-major", "automerge": true, "dependencyDashboardApproval": false, "excludePackageNames": [ @@ -16593,13 +17518,14 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-autolink-headers{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-code-repls{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-remark-autolink-headers/package.json" + "packages/gatsby-remark-code-repls/package.json" ], "matchDepTypes": [ "dependencies" @@ -16608,8 +17534,8 @@ "patch", "minor" ], - "groupName": "minor and patch dependencies for gatsby-remark-autolink-headers", - "groupSlug": "gatsby-remark-autolink-headers-prod-minor", + "groupName": "minor and patch dependencies for gatsby-remark-code-repls", + "groupSlug": "gatsby-remark-code-repls-prod-minor", "excludePackageNames": [ "eslint", "prettier", @@ -16636,13 +17562,14 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-autolink-headers{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-code-repls{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-remark-autolink-headers/package.json" + "packages/gatsby-remark-code-repls/package.json" ], "matchDepTypes": [ "dependencies" @@ -16650,8 +17577,8 @@ "matchUpdateTypes": [ "major" ], - "groupName": "major dependencies for gatsby-remark-autolink-headers", - "groupSlug": "gatsby-remark-autolink-headers-prod-major", + "groupName": "major dependencies for gatsby-remark-code-repls", + "groupSlug": "gatsby-remark-code-repls-prod-major", "excludePackageNames": [ "eslint", "prettier", @@ -16678,20 +17605,21 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-autolink-headers{{/unless}}", + "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-code-repls{{/unless}}", "dependencyDashboardApproval": true }, { "matchPaths": [ - "packages/gatsby-remark-autolink-headers/package.json" + "packages/gatsby-remark-code-repls/package.json" ], "matchDepTypes": [ "dependencies" ], - "groupName": "minor and patch dependencies for gatsby-remark-autolink-headers", - "groupSlug": "gatsby-remark-autolink-headers-prod-minor", + "groupName": "minor and patch dependencies for gatsby-remark-code-repls", + "groupSlug": "gatsby-remark-code-repls-prod-minor", "matchPackageNames": [], "matchUpdateTypes": [ "patch" @@ -16722,19 +17650,20 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-autolink-headers{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-code-repls{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-remark-autolink-headers/package.json" + "packages/gatsby-remark-code-repls/package.json" ], "matchDepTypes": [ "dependencies" ], - "groupName": "major dependencies for gatsby-remark-autolink-headers", - "groupSlug": "gatsby-remark-autolink-headers-prod-major", + "groupName": "major dependencies for gatsby-remark-code-repls", + "groupSlug": "gatsby-remark-code-repls-prod-major", "matchPackageNames": [], "matchUpdateTypes": [ "major", @@ -16766,14 +17695,15 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-autolink-headers{{/unless}}", + "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-code-repls{{/unless}}", "dependencyDashboardApproval": true }, { "matchPaths": [ - "packages/gatsby-remark-code-repls/package.json" + "packages/gatsby-remark-copy-linked-files/package.json" ], "matchDepTypes": [ "devDependencies" @@ -16782,8 +17712,8 @@ "patch", "minor" ], - "groupName": "[DEV] minor and patch dependencies for gatsby-remark-code-repls", - "groupSlug": "gatsby-remark-code-repls-dev-minor", + "groupName": "[DEV] minor and patch dependencies for gatsby-remark-copy-linked-files", + "groupSlug": "gatsby-remark-copy-linked-files-dev-minor", "automerge": true, "excludePackageNames": [ "eslint", @@ -16811,13 +17741,14 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-code-repls{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-copy-linked-files{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-remark-code-repls/package.json" + "packages/gatsby-remark-copy-linked-files/package.json" ], "matchDepTypes": [ "devDependencies" @@ -16825,8 +17756,8 @@ "matchUpdateTypes": [ "major" ], - "groupName": "[DEV] major dependencies for gatsby-remark-code-repls", - "groupSlug": "gatsby-remark-code-repls-dev-major", + "groupName": "[DEV] major dependencies for gatsby-remark-copy-linked-files", + "groupSlug": "gatsby-remark-copy-linked-files-dev-major", "automerge": true, "dependencyDashboardApproval": false, "excludePackageNames": [ @@ -16855,13 +17786,14 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-code-repls{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-copy-linked-files{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-remark-code-repls/package.json" + "packages/gatsby-remark-copy-linked-files/package.json" ], "matchDepTypes": [ "dependencies" @@ -16870,8 +17802,8 @@ "patch", "minor" ], - "groupName": "minor and patch dependencies for gatsby-remark-code-repls", - "groupSlug": "gatsby-remark-code-repls-prod-minor", + "groupName": "minor and patch dependencies for gatsby-remark-copy-linked-files", + "groupSlug": "gatsby-remark-copy-linked-files-prod-minor", "excludePackageNames": [ "eslint", "prettier", @@ -16898,22 +17830,23 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-code-repls{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-copy-linked-files{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-remark-code-repls/package.json" + "packages/gatsby-remark-copy-linked-files/package.json" ], "matchDepTypes": [ "dependencies" ], "matchUpdateTypes": [ "major" - ], - "groupName": "major dependencies for gatsby-remark-code-repls", - "groupSlug": "gatsby-remark-code-repls-prod-major", + ], + "groupName": "major dependencies for gatsby-remark-copy-linked-files", + "groupSlug": "gatsby-remark-copy-linked-files-prod-major", "excludePackageNames": [ "eslint", "prettier", @@ -16940,20 +17873,21 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-code-repls{{/unless}}", + "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-copy-linked-files{{/unless}}", "dependencyDashboardApproval": true }, { "matchPaths": [ - "packages/gatsby-remark-code-repls/package.json" + "packages/gatsby-remark-copy-linked-files/package.json" ], "matchDepTypes": [ "dependencies" ], - "groupName": "minor and patch dependencies for gatsby-remark-code-repls", - "groupSlug": "gatsby-remark-code-repls-prod-minor", + "groupName": "minor and patch dependencies for gatsby-remark-copy-linked-files", + "groupSlug": "gatsby-remark-copy-linked-files-prod-minor", "matchPackageNames": [], "matchUpdateTypes": [ "patch" @@ -16984,19 +17918,20 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-code-repls{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-copy-linked-files{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-remark-code-repls/package.json" + "packages/gatsby-remark-copy-linked-files/package.json" ], "matchDepTypes": [ "dependencies" ], - "groupName": "major dependencies for gatsby-remark-code-repls", - "groupSlug": "gatsby-remark-code-repls-prod-major", + "groupName": "major dependencies for gatsby-remark-copy-linked-files", + "groupSlug": "gatsby-remark-copy-linked-files-prod-major", "matchPackageNames": [], "matchUpdateTypes": [ "major", @@ -17028,14 +17963,15 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-code-repls{{/unless}}", + "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-copy-linked-files{{/unless}}", "dependencyDashboardApproval": true }, { "matchPaths": [ - "packages/gatsby-remark-copy-linked-files/package.json" + "packages/gatsby-remark-custom-blocks/package.json" ], "matchDepTypes": [ "devDependencies" @@ -17044,8 +17980,8 @@ "patch", "minor" ], - "groupName": "[DEV] minor and patch dependencies for gatsby-remark-copy-linked-files", - "groupSlug": "gatsby-remark-copy-linked-files-dev-minor", + "groupName": "[DEV] minor and patch dependencies for gatsby-remark-custom-blocks", + "groupSlug": "gatsby-remark-custom-blocks-dev-minor", "automerge": true, "excludePackageNames": [ "eslint", @@ -17073,13 +18009,14 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-copy-linked-files{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-custom-blocks{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-remark-copy-linked-files/package.json" + "packages/gatsby-remark-custom-blocks/package.json" ], "matchDepTypes": [ "devDependencies" @@ -17087,8 +18024,8 @@ "matchUpdateTypes": [ "major" ], - "groupName": "[DEV] major dependencies for gatsby-remark-copy-linked-files", - "groupSlug": "gatsby-remark-copy-linked-files-dev-major", + "groupName": "[DEV] major dependencies for gatsby-remark-custom-blocks", + "groupSlug": "gatsby-remark-custom-blocks-dev-major", "automerge": true, "dependencyDashboardApproval": false, "excludePackageNames": [ @@ -17117,13 +18054,14 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-copy-linked-files{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-custom-blocks{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-remark-copy-linked-files/package.json" + "packages/gatsby-remark-custom-blocks/package.json" ], "matchDepTypes": [ "dependencies" @@ -17132,8 +18070,8 @@ "patch", "minor" ], - "groupName": "minor and patch dependencies for gatsby-remark-copy-linked-files", - "groupSlug": "gatsby-remark-copy-linked-files-prod-minor", + "groupName": "minor and patch dependencies for gatsby-remark-custom-blocks", + "groupSlug": "gatsby-remark-custom-blocks-prod-minor", "excludePackageNames": [ "eslint", "prettier", @@ -17160,13 +18098,14 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-copy-linked-files{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-custom-blocks{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-remark-copy-linked-files/package.json" + "packages/gatsby-remark-custom-blocks/package.json" ], "matchDepTypes": [ "dependencies" @@ -17174,8 +18113,8 @@ "matchUpdateTypes": [ "major" ], - "groupName": "major dependencies for gatsby-remark-copy-linked-files", - "groupSlug": "gatsby-remark-copy-linked-files-prod-major", + "groupName": "major dependencies for gatsby-remark-custom-blocks", + "groupSlug": "gatsby-remark-custom-blocks-prod-major", "excludePackageNames": [ "eslint", "prettier", @@ -17202,20 +18141,21 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-copy-linked-files{{/unless}}", + "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-custom-blocks{{/unless}}", "dependencyDashboardApproval": true }, { "matchPaths": [ - "packages/gatsby-remark-copy-linked-files/package.json" + "packages/gatsby-remark-custom-blocks/package.json" ], "matchDepTypes": [ "dependencies" ], - "groupName": "minor and patch dependencies for gatsby-remark-copy-linked-files", - "groupSlug": "gatsby-remark-copy-linked-files-prod-minor", + "groupName": "minor and patch dependencies for gatsby-remark-custom-blocks", + "groupSlug": "gatsby-remark-custom-blocks-prod-minor", "matchPackageNames": [], "matchUpdateTypes": [ "patch" @@ -17246,19 +18186,20 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-copy-linked-files{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-custom-blocks{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-remark-copy-linked-files/package.json" + "packages/gatsby-remark-custom-blocks/package.json" ], "matchDepTypes": [ "dependencies" ], - "groupName": "major dependencies for gatsby-remark-copy-linked-files", - "groupSlug": "gatsby-remark-copy-linked-files-prod-major", + "groupName": "major dependencies for gatsby-remark-custom-blocks", + "groupSlug": "gatsby-remark-custom-blocks-prod-major", "matchPackageNames": [], "matchUpdateTypes": [ "major", @@ -17290,14 +18231,15 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-copy-linked-files{{/unless}}", + "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-custom-blocks{{/unless}}", "dependencyDashboardApproval": true }, { "matchPaths": [ - "packages/gatsby-remark-custom-blocks/package.json" + "packages/gatsby-remark-embed-snippet/package.json" ], "matchDepTypes": [ "devDependencies" @@ -17306,8 +18248,8 @@ "patch", "minor" ], - "groupName": "[DEV] minor and patch dependencies for gatsby-remark-custom-blocks", - "groupSlug": "gatsby-remark-custom-blocks-dev-minor", + "groupName": "[DEV] minor and patch dependencies for gatsby-remark-embed-snippet", + "groupSlug": "gatsby-remark-embed-snippet-dev-minor", "automerge": true, "excludePackageNames": [ "eslint", @@ -17335,13 +18277,14 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-custom-blocks{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-embed-snippet{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-remark-custom-blocks/package.json" + "packages/gatsby-remark-embed-snippet/package.json" ], "matchDepTypes": [ "devDependencies" @@ -17349,8 +18292,8 @@ "matchUpdateTypes": [ "major" ], - "groupName": "[DEV] major dependencies for gatsby-remark-custom-blocks", - "groupSlug": "gatsby-remark-custom-blocks-dev-major", + "groupName": "[DEV] major dependencies for gatsby-remark-embed-snippet", + "groupSlug": "gatsby-remark-embed-snippet-dev-major", "automerge": true, "dependencyDashboardApproval": false, "excludePackageNames": [ @@ -17379,13 +18322,14 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-custom-blocks{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-embed-snippet{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-remark-custom-blocks/package.json" + "packages/gatsby-remark-embed-snippet/package.json" ], "matchDepTypes": [ "dependencies" @@ -17394,8 +18338,8 @@ "patch", "minor" ], - "groupName": "minor and patch dependencies for gatsby-remark-custom-blocks", - "groupSlug": "gatsby-remark-custom-blocks-prod-minor", + "groupName": "minor and patch dependencies for gatsby-remark-embed-snippet", + "groupSlug": "gatsby-remark-embed-snippet-prod-minor", "excludePackageNames": [ "eslint", "prettier", @@ -17422,13 +18366,14 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-custom-blocks{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-embed-snippet{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-remark-custom-blocks/package.json" + "packages/gatsby-remark-embed-snippet/package.json" ], "matchDepTypes": [ "dependencies" @@ -17436,8 +18381,8 @@ "matchUpdateTypes": [ "major" ], - "groupName": "major dependencies for gatsby-remark-custom-blocks", - "groupSlug": "gatsby-remark-custom-blocks-prod-major", + "groupName": "major dependencies for gatsby-remark-embed-snippet", + "groupSlug": "gatsby-remark-embed-snippet-prod-major", "excludePackageNames": [ "eslint", "prettier", @@ -17464,20 +18409,21 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-custom-blocks{{/unless}}", + "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-embed-snippet{{/unless}}", "dependencyDashboardApproval": true }, { "matchPaths": [ - "packages/gatsby-remark-custom-blocks/package.json" + "packages/gatsby-remark-embed-snippet/package.json" ], "matchDepTypes": [ "dependencies" ], - "groupName": "minor and patch dependencies for gatsby-remark-custom-blocks", - "groupSlug": "gatsby-remark-custom-blocks-prod-minor", + "groupName": "minor and patch dependencies for gatsby-remark-embed-snippet", + "groupSlug": "gatsby-remark-embed-snippet-prod-minor", "matchPackageNames": [], "matchUpdateTypes": [ "patch" @@ -17508,19 +18454,20 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-custom-blocks{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-embed-snippet{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-remark-custom-blocks/package.json" + "packages/gatsby-remark-embed-snippet/package.json" ], "matchDepTypes": [ "dependencies" ], - "groupName": "major dependencies for gatsby-remark-custom-blocks", - "groupSlug": "gatsby-remark-custom-blocks-prod-major", + "groupName": "major dependencies for gatsby-remark-embed-snippet", + "groupSlug": "gatsby-remark-embed-snippet-prod-major", "matchPackageNames": [], "matchUpdateTypes": [ "major", @@ -17552,14 +18499,15 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-custom-blocks{{/unless}}", + "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-embed-snippet{{/unless}}", "dependencyDashboardApproval": true }, { "matchPaths": [ - "packages/gatsby-remark-embed-snippet/package.json" + "packages/gatsby-remark-graphviz/package.json" ], "matchDepTypes": [ "devDependencies" @@ -17568,8 +18516,8 @@ "patch", "minor" ], - "groupName": "[DEV] minor and patch dependencies for gatsby-remark-embed-snippet", - "groupSlug": "gatsby-remark-embed-snippet-dev-minor", + "groupName": "[DEV] minor and patch dependencies for gatsby-remark-graphviz", + "groupSlug": "gatsby-remark-graphviz-dev-minor", "automerge": true, "excludePackageNames": [ "eslint", @@ -17597,13 +18545,14 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-embed-snippet{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-graphviz{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-remark-embed-snippet/package.json" + "packages/gatsby-remark-graphviz/package.json" ], "matchDepTypes": [ "devDependencies" @@ -17611,8 +18560,8 @@ "matchUpdateTypes": [ "major" ], - "groupName": "[DEV] major dependencies for gatsby-remark-embed-snippet", - "groupSlug": "gatsby-remark-embed-snippet-dev-major", + "groupName": "[DEV] major dependencies for gatsby-remark-graphviz", + "groupSlug": "gatsby-remark-graphviz-dev-major", "automerge": true, "dependencyDashboardApproval": false, "excludePackageNames": [ @@ -17641,13 +18590,14 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-embed-snippet{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-graphviz{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-remark-embed-snippet/package.json" + "packages/gatsby-remark-graphviz/package.json" ], "matchDepTypes": [ "dependencies" @@ -17656,8 +18606,8 @@ "patch", "minor" ], - "groupName": "minor and patch dependencies for gatsby-remark-embed-snippet", - "groupSlug": "gatsby-remark-embed-snippet-prod-minor", + "groupName": "minor and patch dependencies for gatsby-remark-graphviz", + "groupSlug": "gatsby-remark-graphviz-prod-minor", "excludePackageNames": [ "eslint", "prettier", @@ -17684,13 +18634,14 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-embed-snippet{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-graphviz{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-remark-embed-snippet/package.json" + "packages/gatsby-remark-graphviz/package.json" ], "matchDepTypes": [ "dependencies" @@ -17698,8 +18649,8 @@ "matchUpdateTypes": [ "major" ], - "groupName": "major dependencies for gatsby-remark-embed-snippet", - "groupSlug": "gatsby-remark-embed-snippet-prod-major", + "groupName": "major dependencies for gatsby-remark-graphviz", + "groupSlug": "gatsby-remark-graphviz-prod-major", "excludePackageNames": [ "eslint", "prettier", @@ -17726,20 +18677,21 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-embed-snippet{{/unless}}", + "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-graphviz{{/unless}}", "dependencyDashboardApproval": true }, { "matchPaths": [ - "packages/gatsby-remark-embed-snippet/package.json" + "packages/gatsby-remark-graphviz/package.json" ], "matchDepTypes": [ "dependencies" ], - "groupName": "minor and patch dependencies for gatsby-remark-embed-snippet", - "groupSlug": "gatsby-remark-embed-snippet-prod-minor", + "groupName": "minor and patch dependencies for gatsby-remark-graphviz", + "groupSlug": "gatsby-remark-graphviz-prod-minor", "matchPackageNames": [], "matchUpdateTypes": [ "patch" @@ -17770,19 +18722,20 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-embed-snippet{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-graphviz{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-remark-embed-snippet/package.json" + "packages/gatsby-remark-graphviz/package.json" ], "matchDepTypes": [ "dependencies" ], - "groupName": "major dependencies for gatsby-remark-embed-snippet", - "groupSlug": "gatsby-remark-embed-snippet-prod-major", + "groupName": "major dependencies for gatsby-remark-graphviz", + "groupSlug": "gatsby-remark-graphviz-prod-major", "matchPackageNames": [], "matchUpdateTypes": [ "major", @@ -17814,14 +18767,15 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-embed-snippet{{/unless}}", + "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-graphviz{{/unless}}", "dependencyDashboardApproval": true }, { "matchPaths": [ - "packages/gatsby-remark-graphviz/package.json" + "packages/gatsby-remark-images-contentful/package.json" ], "matchDepTypes": [ "devDependencies" @@ -17830,8 +18784,8 @@ "patch", "minor" ], - "groupName": "[DEV] minor and patch dependencies for gatsby-remark-graphviz", - "groupSlug": "gatsby-remark-graphviz-dev-minor", + "groupName": "[DEV] minor and patch dependencies for gatsby-remark-images-contentful", + "groupSlug": "gatsby-remark-images-contentful-dev-minor", "automerge": true, "excludePackageNames": [ "eslint", @@ -17859,13 +18813,14 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-graphviz{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-images-contentful{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-remark-graphviz/package.json" + "packages/gatsby-remark-images-contentful/package.json" ], "matchDepTypes": [ "devDependencies" @@ -17873,8 +18828,8 @@ "matchUpdateTypes": [ "major" ], - "groupName": "[DEV] major dependencies for gatsby-remark-graphviz", - "groupSlug": "gatsby-remark-graphviz-dev-major", + "groupName": "[DEV] major dependencies for gatsby-remark-images-contentful", + "groupSlug": "gatsby-remark-images-contentful-dev-major", "automerge": true, "dependencyDashboardApproval": false, "excludePackageNames": [ @@ -17903,13 +18858,14 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-graphviz{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-images-contentful{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-remark-graphviz/package.json" + "packages/gatsby-remark-images-contentful/package.json" ], "matchDepTypes": [ "dependencies" @@ -17918,8 +18874,8 @@ "patch", "minor" ], - "groupName": "minor and patch dependencies for gatsby-remark-graphviz", - "groupSlug": "gatsby-remark-graphviz-prod-minor", + "groupName": "minor and patch dependencies for gatsby-remark-images-contentful", + "groupSlug": "gatsby-remark-images-contentful-prod-minor", "excludePackageNames": [ "eslint", "prettier", @@ -17946,13 +18902,14 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-graphviz{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-images-contentful{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-remark-graphviz/package.json" + "packages/gatsby-remark-images-contentful/package.json" ], "matchDepTypes": [ "dependencies" @@ -17960,8 +18917,8 @@ "matchUpdateTypes": [ "major" ], - "groupName": "major dependencies for gatsby-remark-graphviz", - "groupSlug": "gatsby-remark-graphviz-prod-major", + "groupName": "major dependencies for gatsby-remark-images-contentful", + "groupSlug": "gatsby-remark-images-contentful-prod-major", "excludePackageNames": [ "eslint", "prettier", @@ -17988,21 +18945,25 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-graphviz{{/unless}}", + "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-images-contentful{{/unless}}", "dependencyDashboardApproval": true }, { "matchPaths": [ - "packages/gatsby-remark-graphviz/package.json" + "packages/gatsby-remark-images-contentful/package.json" ], "matchDepTypes": [ "dependencies" ], - "groupName": "minor and patch dependencies for gatsby-remark-graphviz", - "groupSlug": "gatsby-remark-graphviz-prod-minor", - "matchPackageNames": [], + "groupName": "minor and patch dependencies for gatsby-remark-images-contentful", + "groupSlug": "gatsby-remark-images-contentful-prod-minor", + "matchPackageNames": [ + "axios", + "sharp" + ], "matchUpdateTypes": [ "patch" ], @@ -18032,20 +18993,24 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-graphviz{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-images-contentful{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-remark-graphviz/package.json" + "packages/gatsby-remark-images-contentful/package.json" ], "matchDepTypes": [ "dependencies" ], - "groupName": "major dependencies for gatsby-remark-graphviz", - "groupSlug": "gatsby-remark-graphviz-prod-major", - "matchPackageNames": [], + "groupName": "major dependencies for gatsby-remark-images-contentful", + "groupSlug": "gatsby-remark-images-contentful-prod-major", + "matchPackageNames": [ + "axios", + "sharp" + ], "matchUpdateTypes": [ "major", "minor" @@ -18076,14 +19041,15 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-graphviz{{/unless}}", + "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-images-contentful{{/unless}}", "dependencyDashboardApproval": true }, { "matchPaths": [ - "packages/gatsby-remark-images-contentful/package.json" + "packages/gatsby-remark-images/package.json" ], "matchDepTypes": [ "devDependencies" @@ -18092,8 +19058,8 @@ "patch", "minor" ], - "groupName": "[DEV] minor and patch dependencies for gatsby-remark-images-contentful", - "groupSlug": "gatsby-remark-images-contentful-dev-minor", + "groupName": "[DEV] minor and patch dependencies for gatsby-remark-images", + "groupSlug": "gatsby-remark-images-dev-minor", "automerge": true, "excludePackageNames": [ "eslint", @@ -18121,13 +19087,14 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-images-contentful{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-images{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-remark-images-contentful/package.json" + "packages/gatsby-remark-images/package.json" ], "matchDepTypes": [ "devDependencies" @@ -18135,8 +19102,8 @@ "matchUpdateTypes": [ "major" ], - "groupName": "[DEV] major dependencies for gatsby-remark-images-contentful", - "groupSlug": "gatsby-remark-images-contentful-dev-major", + "groupName": "[DEV] major dependencies for gatsby-remark-images", + "groupSlug": "gatsby-remark-images-dev-major", "automerge": true, "dependencyDashboardApproval": false, "excludePackageNames": [ @@ -18165,13 +19132,14 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-images-contentful{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-images{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-remark-images-contentful/package.json" + "packages/gatsby-remark-images/package.json" ], "matchDepTypes": [ "dependencies" @@ -18180,8 +19148,8 @@ "patch", "minor" ], - "groupName": "minor and patch dependencies for gatsby-remark-images-contentful", - "groupSlug": "gatsby-remark-images-contentful-prod-minor", + "groupName": "minor and patch dependencies for gatsby-remark-images", + "groupSlug": "gatsby-remark-images-prod-minor", "excludePackageNames": [ "eslint", "prettier", @@ -18208,13 +19176,14 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-images-contentful{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-images{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-remark-images-contentful/package.json" + "packages/gatsby-remark-images/package.json" ], "matchDepTypes": [ "dependencies" @@ -18222,8 +19191,8 @@ "matchUpdateTypes": [ "major" ], - "groupName": "major dependencies for gatsby-remark-images-contentful", - "groupSlug": "gatsby-remark-images-contentful-prod-major", + "groupName": "major dependencies for gatsby-remark-images", + "groupSlug": "gatsby-remark-images-prod-major", "excludePackageNames": [ "eslint", "prettier", @@ -18250,24 +19219,22 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-images-contentful{{/unless}}", + "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-images{{/unless}}", "dependencyDashboardApproval": true }, { "matchPaths": [ - "packages/gatsby-remark-images-contentful/package.json" + "packages/gatsby-remark-images/package.json" ], "matchDepTypes": [ "dependencies" ], - "groupName": "minor and patch dependencies for gatsby-remark-images-contentful", - "groupSlug": "gatsby-remark-images-contentful-prod-minor", - "matchPackageNames": [ - "axios", - "sharp" - ], + "groupName": "minor and patch dependencies for gatsby-remark-images", + "groupSlug": "gatsby-remark-images-prod-minor", + "matchPackageNames": [], "matchUpdateTypes": [ "patch" ], @@ -18297,23 +19264,21 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-images-contentful{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-images{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-remark-images-contentful/package.json" + "packages/gatsby-remark-images/package.json" ], "matchDepTypes": [ "dependencies" ], - "groupName": "major dependencies for gatsby-remark-images-contentful", - "groupSlug": "gatsby-remark-images-contentful-prod-major", - "matchPackageNames": [ - "axios", - "sharp" - ], + "groupName": "major dependencies for gatsby-remark-images", + "groupSlug": "gatsby-remark-images-prod-major", + "matchPackageNames": [], "matchUpdateTypes": [ "major", "minor" @@ -18344,14 +19309,15 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-images-contentful{{/unless}}", + "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-images{{/unless}}", "dependencyDashboardApproval": true }, { "matchPaths": [ - "packages/gatsby-remark-images/package.json" + "packages/gatsby-remark-katex/package.json" ], "matchDepTypes": [ "devDependencies" @@ -18360,8 +19326,8 @@ "patch", "minor" ], - "groupName": "[DEV] minor and patch dependencies for gatsby-remark-images", - "groupSlug": "gatsby-remark-images-dev-minor", + "groupName": "[DEV] minor and patch dependencies for gatsby-remark-katex", + "groupSlug": "gatsby-remark-katex-dev-minor", "automerge": true, "excludePackageNames": [ "eslint", @@ -18389,13 +19355,14 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-images{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-katex{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-remark-images/package.json" + "packages/gatsby-remark-katex/package.json" ], "matchDepTypes": [ "devDependencies" @@ -18403,8 +19370,8 @@ "matchUpdateTypes": [ "major" ], - "groupName": "[DEV] major dependencies for gatsby-remark-images", - "groupSlug": "gatsby-remark-images-dev-major", + "groupName": "[DEV] major dependencies for gatsby-remark-katex", + "groupSlug": "gatsby-remark-katex-dev-major", "automerge": true, "dependencyDashboardApproval": false, "excludePackageNames": [ @@ -18433,13 +19400,14 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-images{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-katex{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-remark-images/package.json" + "packages/gatsby-remark-katex/package.json" ], "matchDepTypes": [ "dependencies" @@ -18448,8 +19416,8 @@ "patch", "minor" ], - "groupName": "minor and patch dependencies for gatsby-remark-images", - "groupSlug": "gatsby-remark-images-prod-minor", + "groupName": "minor and patch dependencies for gatsby-remark-katex", + "groupSlug": "gatsby-remark-katex-prod-minor", "excludePackageNames": [ "eslint", "prettier", @@ -18476,13 +19444,14 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-images{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-katex{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-remark-images/package.json" + "packages/gatsby-remark-katex/package.json" ], "matchDepTypes": [ "dependencies" @@ -18490,8 +19459,8 @@ "matchUpdateTypes": [ "major" ], - "groupName": "major dependencies for gatsby-remark-images", - "groupSlug": "gatsby-remark-images-prod-major", + "groupName": "major dependencies for gatsby-remark-katex", + "groupSlug": "gatsby-remark-katex-prod-major", "excludePackageNames": [ "eslint", "prettier", @@ -18518,20 +19487,21 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-images{{/unless}}", + "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-katex{{/unless}}", "dependencyDashboardApproval": true }, { "matchPaths": [ - "packages/gatsby-remark-images/package.json" + "packages/gatsby-remark-katex/package.json" ], "matchDepTypes": [ "dependencies" ], - "groupName": "minor and patch dependencies for gatsby-remark-images", - "groupSlug": "gatsby-remark-images-prod-minor", + "groupName": "minor and patch dependencies for gatsby-remark-katex", + "groupSlug": "gatsby-remark-katex-prod-minor", "matchPackageNames": [], "matchUpdateTypes": [ "patch" @@ -18562,19 +19532,20 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-images{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-katex{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-remark-images/package.json" + "packages/gatsby-remark-katex/package.json" ], "matchDepTypes": [ "dependencies" ], - "groupName": "major dependencies for gatsby-remark-images", - "groupSlug": "gatsby-remark-images-prod-major", + "groupName": "major dependencies for gatsby-remark-katex", + "groupSlug": "gatsby-remark-katex-prod-major", "matchPackageNames": [], "matchUpdateTypes": [ "major", @@ -18606,14 +19577,15 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-images{{/unless}}", + "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-katex{{/unless}}", "dependencyDashboardApproval": true }, { "matchPaths": [ - "packages/gatsby-remark-katex/package.json" + "packages/gatsby-remark-prismjs/package.json" ], "matchDepTypes": [ "devDependencies" @@ -18622,8 +19594,8 @@ "patch", "minor" ], - "groupName": "[DEV] minor and patch dependencies for gatsby-remark-katex", - "groupSlug": "gatsby-remark-katex-dev-minor", + "groupName": "[DEV] minor and patch dependencies for gatsby-remark-prismjs", + "groupSlug": "gatsby-remark-prismjs-dev-minor", "automerge": true, "excludePackageNames": [ "eslint", @@ -18651,13 +19623,14 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-katex{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-prismjs{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-remark-katex/package.json" + "packages/gatsby-remark-prismjs/package.json" ], "matchDepTypes": [ "devDependencies" @@ -18665,8 +19638,8 @@ "matchUpdateTypes": [ "major" ], - "groupName": "[DEV] major dependencies for gatsby-remark-katex", - "groupSlug": "gatsby-remark-katex-dev-major", + "groupName": "[DEV] major dependencies for gatsby-remark-prismjs", + "groupSlug": "gatsby-remark-prismjs-dev-major", "automerge": true, "dependencyDashboardApproval": false, "excludePackageNames": [ @@ -18695,13 +19668,14 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-katex{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-prismjs{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-remark-katex/package.json" + "packages/gatsby-remark-prismjs/package.json" ], "matchDepTypes": [ "dependencies" @@ -18710,8 +19684,8 @@ "patch", "minor" ], - "groupName": "minor and patch dependencies for gatsby-remark-katex", - "groupSlug": "gatsby-remark-katex-prod-minor", + "groupName": "minor and patch dependencies for gatsby-remark-prismjs", + "groupSlug": "gatsby-remark-prismjs-prod-minor", "excludePackageNames": [ "eslint", "prettier", @@ -18738,13 +19712,14 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-katex{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-prismjs{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-remark-katex/package.json" + "packages/gatsby-remark-prismjs/package.json" ], "matchDepTypes": [ "dependencies" @@ -18752,8 +19727,8 @@ "matchUpdateTypes": [ "major" ], - "groupName": "major dependencies for gatsby-remark-katex", - "groupSlug": "gatsby-remark-katex-prod-major", + "groupName": "major dependencies for gatsby-remark-prismjs", + "groupSlug": "gatsby-remark-prismjs-prod-major", "excludePackageNames": [ "eslint", "prettier", @@ -18780,20 +19755,21 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-katex{{/unless}}", + "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-prismjs{{/unless}}", "dependencyDashboardApproval": true }, { "matchPaths": [ - "packages/gatsby-remark-katex/package.json" + "packages/gatsby-remark-prismjs/package.json" ], "matchDepTypes": [ "dependencies" ], - "groupName": "minor and patch dependencies for gatsby-remark-katex", - "groupSlug": "gatsby-remark-katex-prod-minor", + "groupName": "minor and patch dependencies for gatsby-remark-prismjs", + "groupSlug": "gatsby-remark-prismjs-prod-minor", "matchPackageNames": [], "matchUpdateTypes": [ "patch" @@ -18824,19 +19800,20 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-katex{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-prismjs{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-remark-katex/package.json" + "packages/gatsby-remark-prismjs/package.json" ], "matchDepTypes": [ "dependencies" ], - "groupName": "major dependencies for gatsby-remark-katex", - "groupSlug": "gatsby-remark-katex-prod-major", + "groupName": "major dependencies for gatsby-remark-prismjs", + "groupSlug": "gatsby-remark-prismjs-prod-major", "matchPackageNames": [], "matchUpdateTypes": [ "major", @@ -18868,14 +19845,15 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-katex{{/unless}}", + "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-prismjs{{/unless}}", "dependencyDashboardApproval": true }, { "matchPaths": [ - "packages/gatsby-remark-prismjs/package.json" + "packages/gatsby-remark-responsive-iframe/package.json" ], "matchDepTypes": [ "devDependencies" @@ -18884,8 +19862,8 @@ "patch", "minor" ], - "groupName": "[DEV] minor and patch dependencies for gatsby-remark-prismjs", - "groupSlug": "gatsby-remark-prismjs-dev-minor", + "groupName": "[DEV] minor and patch dependencies for gatsby-remark-responsive-iframe", + "groupSlug": "gatsby-remark-responsive-iframe-dev-minor", "automerge": true, "excludePackageNames": [ "eslint", @@ -18913,13 +19891,14 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-prismjs{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-responsive-iframe{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-remark-prismjs/package.json" + "packages/gatsby-remark-responsive-iframe/package.json" ], "matchDepTypes": [ "devDependencies" @@ -18927,8 +19906,8 @@ "matchUpdateTypes": [ "major" ], - "groupName": "[DEV] major dependencies for gatsby-remark-prismjs", - "groupSlug": "gatsby-remark-prismjs-dev-major", + "groupName": "[DEV] major dependencies for gatsby-remark-responsive-iframe", + "groupSlug": "gatsby-remark-responsive-iframe-dev-major", "automerge": true, "dependencyDashboardApproval": false, "excludePackageNames": [ @@ -18957,13 +19936,14 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-prismjs{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-responsive-iframe{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-remark-prismjs/package.json" + "packages/gatsby-remark-responsive-iframe/package.json" ], "matchDepTypes": [ "dependencies" @@ -18972,8 +19952,8 @@ "patch", "minor" ], - "groupName": "minor and patch dependencies for gatsby-remark-prismjs", - "groupSlug": "gatsby-remark-prismjs-prod-minor", + "groupName": "minor and patch dependencies for gatsby-remark-responsive-iframe", + "groupSlug": "gatsby-remark-responsive-iframe-prod-minor", "excludePackageNames": [ "eslint", "prettier", @@ -19000,13 +19980,14 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-prismjs{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-responsive-iframe{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-remark-prismjs/package.json" + "packages/gatsby-remark-responsive-iframe/package.json" ], "matchDepTypes": [ "dependencies" @@ -19014,8 +19995,8 @@ "matchUpdateTypes": [ "major" ], - "groupName": "major dependencies for gatsby-remark-prismjs", - "groupSlug": "gatsby-remark-prismjs-prod-major", + "groupName": "major dependencies for gatsby-remark-responsive-iframe", + "groupSlug": "gatsby-remark-responsive-iframe-prod-major", "excludePackageNames": [ "eslint", "prettier", @@ -19042,20 +20023,21 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-prismjs{{/unless}}", + "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-responsive-iframe{{/unless}}", "dependencyDashboardApproval": true }, { "matchPaths": [ - "packages/gatsby-remark-prismjs/package.json" + "packages/gatsby-remark-responsive-iframe/package.json" ], "matchDepTypes": [ "dependencies" ], - "groupName": "minor and patch dependencies for gatsby-remark-prismjs", - "groupSlug": "gatsby-remark-prismjs-prod-minor", + "groupName": "minor and patch dependencies for gatsby-remark-responsive-iframe", + "groupSlug": "gatsby-remark-responsive-iframe-prod-minor", "matchPackageNames": [], "matchUpdateTypes": [ "patch" @@ -19086,19 +20068,20 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-prismjs{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-responsive-iframe{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-remark-prismjs/package.json" + "packages/gatsby-remark-responsive-iframe/package.json" ], "matchDepTypes": [ "dependencies" ], - "groupName": "major dependencies for gatsby-remark-prismjs", - "groupSlug": "gatsby-remark-prismjs-prod-major", + "groupName": "major dependencies for gatsby-remark-responsive-iframe", + "groupSlug": "gatsby-remark-responsive-iframe-prod-major", "matchPackageNames": [], "matchUpdateTypes": [ "major", @@ -19130,14 +20113,15 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-prismjs{{/unless}}", + "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-responsive-iframe{{/unless}}", "dependencyDashboardApproval": true }, { "matchPaths": [ - "packages/gatsby-remark-responsive-iframe/package.json" + "packages/gatsby-remark-smartypants/package.json" ], "matchDepTypes": [ "devDependencies" @@ -19146,8 +20130,8 @@ "patch", "minor" ], - "groupName": "[DEV] minor and patch dependencies for gatsby-remark-responsive-iframe", - "groupSlug": "gatsby-remark-responsive-iframe-dev-minor", + "groupName": "[DEV] minor and patch dependencies for gatsby-remark-smartypants", + "groupSlug": "gatsby-remark-smartypants-dev-minor", "automerge": true, "excludePackageNames": [ "eslint", @@ -19175,13 +20159,14 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-responsive-iframe{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-smartypants{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-remark-responsive-iframe/package.json" + "packages/gatsby-remark-smartypants/package.json" ], "matchDepTypes": [ "devDependencies" @@ -19189,8 +20174,8 @@ "matchUpdateTypes": [ "major" ], - "groupName": "[DEV] major dependencies for gatsby-remark-responsive-iframe", - "groupSlug": "gatsby-remark-responsive-iframe-dev-major", + "groupName": "[DEV] major dependencies for gatsby-remark-smartypants", + "groupSlug": "gatsby-remark-smartypants-dev-major", "automerge": true, "dependencyDashboardApproval": false, "excludePackageNames": [ @@ -19219,13 +20204,14 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-responsive-iframe{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-smartypants{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-remark-responsive-iframe/package.json" + "packages/gatsby-remark-smartypants/package.json" ], "matchDepTypes": [ "dependencies" @@ -19234,8 +20220,8 @@ "patch", "minor" ], - "groupName": "minor and patch dependencies for gatsby-remark-responsive-iframe", - "groupSlug": "gatsby-remark-responsive-iframe-prod-minor", + "groupName": "minor and patch dependencies for gatsby-remark-smartypants", + "groupSlug": "gatsby-remark-smartypants-prod-minor", "excludePackageNames": [ "eslint", "prettier", @@ -19262,13 +20248,14 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-responsive-iframe{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-smartypants{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-remark-responsive-iframe/package.json" + "packages/gatsby-remark-smartypants/package.json" ], "matchDepTypes": [ "dependencies" @@ -19276,8 +20263,8 @@ "matchUpdateTypes": [ "major" ], - "groupName": "major dependencies for gatsby-remark-responsive-iframe", - "groupSlug": "gatsby-remark-responsive-iframe-prod-major", + "groupName": "major dependencies for gatsby-remark-smartypants", + "groupSlug": "gatsby-remark-smartypants-prod-major", "excludePackageNames": [ "eslint", "prettier", @@ -19304,20 +20291,21 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-responsive-iframe{{/unless}}", + "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-smartypants{{/unless}}", "dependencyDashboardApproval": true }, { "matchPaths": [ - "packages/gatsby-remark-responsive-iframe/package.json" + "packages/gatsby-remark-smartypants/package.json" ], "matchDepTypes": [ "dependencies" ], - "groupName": "minor and patch dependencies for gatsby-remark-responsive-iframe", - "groupSlug": "gatsby-remark-responsive-iframe-prod-minor", + "groupName": "minor and patch dependencies for gatsby-remark-smartypants", + "groupSlug": "gatsby-remark-smartypants-prod-minor", "matchPackageNames": [], "matchUpdateTypes": [ "patch" @@ -19348,19 +20336,20 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-responsive-iframe{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-smartypants{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-remark-responsive-iframe/package.json" + "packages/gatsby-remark-smartypants/package.json" ], "matchDepTypes": [ "dependencies" ], - "groupName": "major dependencies for gatsby-remark-responsive-iframe", - "groupSlug": "gatsby-remark-responsive-iframe-prod-major", + "groupName": "major dependencies for gatsby-remark-smartypants", + "groupSlug": "gatsby-remark-smartypants-prod-major", "matchPackageNames": [], "matchUpdateTypes": [ "major", @@ -19392,14 +20381,15 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-responsive-iframe{{/unless}}", + "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-smartypants{{/unless}}", "dependencyDashboardApproval": true }, { "matchPaths": [ - "packages/gatsby-remark-smartypants/package.json" + "packages/gatsby-script/package.json" ], "matchDepTypes": [ "devDependencies" @@ -19408,8 +20398,8 @@ "patch", "minor" ], - "groupName": "[DEV] minor and patch dependencies for gatsby-remark-smartypants", - "groupSlug": "gatsby-remark-smartypants-dev-minor", + "groupName": "[DEV] minor and patch dependencies for gatsby-script", + "groupSlug": "gatsby-script-dev-minor", "automerge": true, "excludePackageNames": [ "eslint", @@ -19437,13 +20427,14 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-smartypants{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-script{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-remark-smartypants/package.json" + "packages/gatsby-script/package.json" ], "matchDepTypes": [ "devDependencies" @@ -19451,8 +20442,8 @@ "matchUpdateTypes": [ "major" ], - "groupName": "[DEV] major dependencies for gatsby-remark-smartypants", - "groupSlug": "gatsby-remark-smartypants-dev-major", + "groupName": "[DEV] major dependencies for gatsby-script", + "groupSlug": "gatsby-script-dev-major", "automerge": true, "dependencyDashboardApproval": false, "excludePackageNames": [ @@ -19481,13 +20472,14 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-smartypants{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-script{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-remark-smartypants/package.json" + "packages/gatsby-script/package.json" ], "matchDepTypes": [ "dependencies" @@ -19496,8 +20488,8 @@ "patch", "minor" ], - "groupName": "minor and patch dependencies for gatsby-remark-smartypants", - "groupSlug": "gatsby-remark-smartypants-prod-minor", + "groupName": "minor and patch dependencies for gatsby-script", + "groupSlug": "gatsby-script-prod-minor", "excludePackageNames": [ "eslint", "prettier", @@ -19524,13 +20516,14 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-smartypants{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-script{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-remark-smartypants/package.json" + "packages/gatsby-script/package.json" ], "matchDepTypes": [ "dependencies" @@ -19538,8 +20531,8 @@ "matchUpdateTypes": [ "major" ], - "groupName": "major dependencies for gatsby-remark-smartypants", - "groupSlug": "gatsby-remark-smartypants-prod-major", + "groupName": "major dependencies for gatsby-script", + "groupSlug": "gatsby-script-prod-major", "excludePackageNames": [ "eslint", "prettier", @@ -19566,20 +20559,21 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-smartypants{{/unless}}", + "commitMessageSuffix": "{{#unless groupName}} for gatsby-script{{/unless}}", "dependencyDashboardApproval": true }, { "matchPaths": [ - "packages/gatsby-remark-smartypants/package.json" + "packages/gatsby-script/package.json" ], "matchDepTypes": [ "dependencies" ], - "groupName": "minor and patch dependencies for gatsby-remark-smartypants", - "groupSlug": "gatsby-remark-smartypants-prod-minor", + "groupName": "minor and patch dependencies for gatsby-script", + "groupSlug": "gatsby-script-prod-minor", "matchPackageNames": [], "matchUpdateTypes": [ "patch" @@ -19610,19 +20604,20 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-smartypants{{/unless}}" + "commitMessageSuffix": "{{#unless groupName}} for gatsby-script{{/unless}}" }, { "matchPaths": [ - "packages/gatsby-remark-smartypants/package.json" + "packages/gatsby-script/package.json" ], "matchDepTypes": [ "dependencies" ], - "groupName": "major dependencies for gatsby-remark-smartypants", - "groupSlug": "gatsby-remark-smartypants-prod-major", + "groupName": "major dependencies for gatsby-script", + "groupSlug": "gatsby-script-prod-major", "matchPackageNames": [], "matchUpdateTypes": [ "major", @@ -19654,9 +20649,10 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-smartypants{{/unless}}", + "commitMessageSuffix": "{{#unless groupName}} for gatsby-script{{/unless}}", "dependencyDashboardApproval": true }, { @@ -19699,7 +20695,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-sharp{{/unless}}" }, @@ -19743,7 +20740,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-sharp{{/unless}}" }, @@ -19786,7 +20784,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-sharp{{/unless}}" }, @@ -19828,7 +20827,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-sharp{{/unless}}", "dependencyDashboardApproval": true @@ -19875,7 +20875,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-sharp{{/unless}}" }, @@ -19922,7 +20923,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-sharp{{/unless}}", "dependencyDashboardApproval": true @@ -19967,7 +20969,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-source-contentful{{/unless}}" }, @@ -20011,7 +21014,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-source-contentful{{/unless}}" }, @@ -20054,7 +21058,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-source-contentful{{/unless}}" }, @@ -20096,7 +21101,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-source-contentful{{/unless}}", "dependencyDashboardApproval": true @@ -20111,7 +21117,8 @@ "groupName": "minor and patch dependencies for gatsby-source-contentful", "groupSlug": "gatsby-source-contentful-prod-minor", "matchPackageNames": [ - "axios" + "axios", + "url" ], "matchUpdateTypes": [ "patch" @@ -20142,7 +21149,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-source-contentful{{/unless}}" }, @@ -20156,7 +21164,8 @@ "groupName": "major dependencies for gatsby-source-contentful", "groupSlug": "gatsby-source-contentful-prod-major", "matchPackageNames": [ - "axios" + "axios", + "url" ], "matchUpdateTypes": [ "major", @@ -20188,7 +21197,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-source-contentful{{/unless}}", "dependencyDashboardApproval": true @@ -20233,7 +21243,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-source-drupal{{/unless}}" }, @@ -20277,7 +21288,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-source-drupal{{/unless}}" }, @@ -20320,7 +21332,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-source-drupal{{/unless}}" }, @@ -20362,7 +21375,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-source-drupal{{/unless}}", "dependencyDashboardApproval": true @@ -20408,7 +21422,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-source-drupal{{/unless}}" }, @@ -20454,7 +21469,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-source-drupal{{/unless}}", "dependencyDashboardApproval": true @@ -20499,7 +21515,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-source-faker{{/unless}}" }, @@ -20543,7 +21560,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-source-faker{{/unless}}" }, @@ -20586,7 +21604,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-source-faker{{/unless}}" }, @@ -20628,7 +21647,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-source-faker{{/unless}}", "dependencyDashboardApproval": true @@ -20672,7 +21692,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-source-faker{{/unless}}" }, @@ -20716,7 +21737,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-source-faker{{/unless}}", "dependencyDashboardApproval": true @@ -20761,7 +21783,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-source-filesystem{{/unless}}" }, @@ -20805,7 +21828,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-source-filesystem{{/unless}}" }, @@ -20848,7 +21872,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-source-filesystem{{/unless}}" }, @@ -20890,7 +21915,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-source-filesystem{{/unless}}", "dependencyDashboardApproval": true @@ -20934,7 +21960,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-source-filesystem{{/unless}}" }, @@ -20978,7 +22005,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-source-filesystem{{/unless}}", "dependencyDashboardApproval": true @@ -21023,7 +22051,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-source-graphql{{/unless}}" }, @@ -21067,7 +22096,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-source-graphql{{/unless}}" }, @@ -21110,7 +22140,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-source-graphql{{/unless}}" }, @@ -21152,7 +22183,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-source-graphql{{/unless}}", "dependencyDashboardApproval": true @@ -21196,7 +22228,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-source-graphql{{/unless}}" }, @@ -21240,7 +22273,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-source-graphql{{/unless}}", "dependencyDashboardApproval": true @@ -21285,7 +22319,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-source-hacker-news{{/unless}}" }, @@ -21329,7 +22364,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-source-hacker-news{{/unless}}" }, @@ -21372,7 +22408,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-source-hacker-news{{/unless}}" }, @@ -21414,7 +22451,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-source-hacker-news{{/unless}}", "dependencyDashboardApproval": true @@ -21460,7 +22498,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-source-hacker-news{{/unless}}" }, @@ -21506,7 +22545,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-source-hacker-news{{/unless}}", "dependencyDashboardApproval": true @@ -21551,7 +22591,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-source-lever{{/unless}}" }, @@ -21595,7 +22636,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-source-lever{{/unless}}" }, @@ -21638,7 +22680,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-source-lever{{/unless}}" }, @@ -21680,7 +22723,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-source-lever{{/unless}}", "dependencyDashboardApproval": true @@ -21726,7 +22770,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-source-lever{{/unless}}" }, @@ -21772,7 +22817,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-source-lever{{/unless}}", "dependencyDashboardApproval": true @@ -21817,7 +22863,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-source-medium{{/unless}}" }, @@ -21861,7 +22908,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-source-medium{{/unless}}" }, @@ -21904,7 +22952,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-source-medium{{/unless}}" }, @@ -21946,7 +22995,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-source-medium{{/unless}}", "dependencyDashboardApproval": true @@ -21992,7 +23042,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-source-medium{{/unless}}" }, @@ -22038,7 +23089,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-source-medium{{/unless}}", "dependencyDashboardApproval": true @@ -22083,7 +23135,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-source-mongodb{{/unless}}" }, @@ -22127,7 +23180,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-source-mongodb{{/unless}}" }, @@ -22170,7 +23224,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-source-mongodb{{/unless}}" }, @@ -22212,7 +23267,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-source-mongodb{{/unless}}", "dependencyDashboardApproval": true @@ -22256,7 +23312,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-source-mongodb{{/unless}}" }, @@ -22300,7 +23357,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-source-mongodb{{/unless}}", "dependencyDashboardApproval": true @@ -22345,7 +23403,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-source-npm-package-search{{/unless}}" }, @@ -22389,7 +23448,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-source-npm-package-search{{/unless}}" }, @@ -22432,7 +23492,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-source-npm-package-search{{/unless}}" }, @@ -22474,7 +23535,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-source-npm-package-search{{/unless}}", "dependencyDashboardApproval": true @@ -22518,7 +23580,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-source-npm-package-search{{/unless}}" }, @@ -22562,7 +23625,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-source-npm-package-search{{/unless}}", "dependencyDashboardApproval": true @@ -22607,7 +23671,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-source-shopify{{/unless}}" }, @@ -22651,7 +23716,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-source-shopify{{/unless}}" }, @@ -22694,7 +23760,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-source-shopify{{/unless}}" }, @@ -22736,7 +23803,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-source-shopify{{/unless}}", "dependencyDashboardApproval": true @@ -22783,7 +23851,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-source-shopify{{/unless}}" }, @@ -22830,7 +23899,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-source-shopify{{/unless}}", "dependencyDashboardApproval": true @@ -22875,7 +23945,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-source-wikipedia{{/unless}}" }, @@ -22919,7 +23990,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-source-wikipedia{{/unless}}" }, @@ -22962,7 +24034,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-source-wikipedia{{/unless}}" }, @@ -23004,7 +24077,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-source-wikipedia{{/unless}}", "dependencyDashboardApproval": true @@ -23048,7 +24122,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-source-wikipedia{{/unless}}" }, @@ -23092,7 +24167,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-source-wikipedia{{/unless}}", "dependencyDashboardApproval": true @@ -23137,7 +24213,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-source-wordpress{{/unless}}" }, @@ -23181,7 +24258,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-source-wordpress{{/unless}}" }, @@ -23224,7 +24302,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-source-wordpress{{/unless}}" }, @@ -23266,7 +24345,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-source-wordpress{{/unless}}", "dependencyDashboardApproval": true @@ -23315,7 +24395,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-source-wordpress{{/unless}}" }, @@ -23364,7 +24445,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-source-wordpress{{/unless}}", "dependencyDashboardApproval": true @@ -23409,7 +24491,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-telemetry{{/unless}}" }, @@ -23453,7 +24536,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-telemetry{{/unless}}" }, @@ -23496,7 +24580,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-telemetry{{/unless}}" }, @@ -23538,7 +24623,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-telemetry{{/unless}}", "dependencyDashboardApproval": true @@ -23584,7 +24670,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-telemetry{{/unless}}" }, @@ -23630,7 +24717,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-telemetry{{/unless}}", "dependencyDashboardApproval": true @@ -23675,7 +24763,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-asciidoc{{/unless}}" }, @@ -23719,7 +24808,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-asciidoc{{/unless}}" }, @@ -23762,7 +24852,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-asciidoc{{/unless}}" }, @@ -23804,7 +24895,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-asciidoc{{/unless}}", "dependencyDashboardApproval": true @@ -23848,7 +24940,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-asciidoc{{/unless}}" }, @@ -23892,7 +24985,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-asciidoc{{/unless}}", "dependencyDashboardApproval": true @@ -23937,7 +25031,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-csv{{/unless}}" }, @@ -23981,7 +25076,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-csv{{/unless}}" }, @@ -24024,7 +25120,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-csv{{/unless}}" }, @@ -24066,7 +25163,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-csv{{/unless}}", "dependencyDashboardApproval": true @@ -24110,7 +25208,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-csv{{/unless}}" }, @@ -24154,7 +25253,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-csv{{/unless}}", "dependencyDashboardApproval": true @@ -24199,7 +25299,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-documentationjs{{/unless}}" }, @@ -24243,7 +25344,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-documentationjs{{/unless}}" }, @@ -24286,7 +25388,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-documentationjs{{/unless}}" }, @@ -24328,7 +25431,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-documentationjs{{/unless}}", "dependencyDashboardApproval": true @@ -24372,7 +25476,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-documentationjs{{/unless}}" }, @@ -24416,7 +25521,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-documentationjs{{/unless}}", "dependencyDashboardApproval": true @@ -24461,7 +25567,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-excel{{/unless}}" }, @@ -24505,7 +25612,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-excel{{/unless}}" }, @@ -24548,7 +25656,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-excel{{/unless}}" }, @@ -24590,7 +25699,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-excel{{/unless}}", "dependencyDashboardApproval": true @@ -24636,7 +25746,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-excel{{/unless}}" }, @@ -24682,7 +25793,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-excel{{/unless}}", "dependencyDashboardApproval": true @@ -24727,7 +25839,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-hjson{{/unless}}" }, @@ -24771,7 +25884,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-hjson{{/unless}}" }, @@ -24814,7 +25928,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-hjson{{/unless}}" }, @@ -24856,7 +25971,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-hjson{{/unless}}", "dependencyDashboardApproval": true @@ -24900,7 +26016,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-hjson{{/unless}}" }, @@ -24944,7 +26061,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-hjson{{/unless}}", "dependencyDashboardApproval": true @@ -24989,7 +26107,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-javascript-frontmatter{{/unless}}" }, @@ -25033,7 +26152,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-javascript-frontmatter{{/unless}}" }, @@ -25076,7 +26196,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-javascript-frontmatter{{/unless}}" }, @@ -25118,7 +26239,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-javascript-frontmatter{{/unless}}", "dependencyDashboardApproval": true @@ -25162,7 +26284,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-javascript-frontmatter{{/unless}}" }, @@ -25206,7 +26329,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-javascript-frontmatter{{/unless}}", "dependencyDashboardApproval": true @@ -25251,7 +26375,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-javascript-static-exports{{/unless}}" }, @@ -25295,7 +26420,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-javascript-static-exports{{/unless}}" }, @@ -25338,7 +26464,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-javascript-static-exports{{/unless}}" }, @@ -25380,7 +26507,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-javascript-static-exports{{/unless}}", "dependencyDashboardApproval": true @@ -25424,7 +26552,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-javascript-static-exports{{/unless}}" }, @@ -25468,7 +26597,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-javascript-static-exports{{/unless}}", "dependencyDashboardApproval": true @@ -25513,7 +26643,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-json{{/unless}}" }, @@ -25557,7 +26688,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-json{{/unless}}" }, @@ -25600,7 +26732,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-json{{/unless}}" }, @@ -25642,7 +26775,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-json{{/unless}}", "dependencyDashboardApproval": true @@ -25686,7 +26820,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-json{{/unless}}" }, @@ -25730,7 +26865,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-json{{/unless}}", "dependencyDashboardApproval": true @@ -25775,7 +26911,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-pdf{{/unless}}" }, @@ -25819,7 +26956,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-pdf{{/unless}}" }, @@ -25862,7 +27000,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-pdf{{/unless}}" }, @@ -25904,7 +27043,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-pdf{{/unless}}", "dependencyDashboardApproval": true @@ -25948,7 +27088,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-pdf{{/unless}}" }, @@ -25992,7 +27133,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-pdf{{/unless}}", "dependencyDashboardApproval": true @@ -26037,7 +27179,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-react-docgen{{/unless}}" }, @@ -26081,7 +27224,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-react-docgen{{/unless}}" }, @@ -26124,7 +27268,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-react-docgen{{/unless}}" }, @@ -26166,7 +27311,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-react-docgen{{/unless}}", "dependencyDashboardApproval": true @@ -26212,7 +27358,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-react-docgen{{/unless}}" }, @@ -26258,7 +27405,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-react-docgen{{/unless}}", "dependencyDashboardApproval": true @@ -26303,7 +27451,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-remark{{/unless}}" }, @@ -26347,7 +27496,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-remark{{/unless}}" }, @@ -26390,7 +27540,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-remark{{/unless}}" }, @@ -26432,7 +27583,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-remark{{/unless}}", "dependencyDashboardApproval": true @@ -26476,7 +27628,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-remark{{/unless}}" }, @@ -26520,7 +27673,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-remark{{/unless}}", "dependencyDashboardApproval": true @@ -26565,7 +27719,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-screenshot{{/unless}}" }, @@ -26609,7 +27764,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-screenshot{{/unless}}" }, @@ -26652,7 +27808,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-screenshot{{/unless}}" }, @@ -26694,7 +27851,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-screenshot{{/unless}}", "dependencyDashboardApproval": true @@ -26740,7 +27898,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-screenshot{{/unless}}" }, @@ -26786,7 +27945,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-screenshot{{/unless}}", "dependencyDashboardApproval": true @@ -26831,7 +27991,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-sharp{{/unless}}" }, @@ -26875,7 +28036,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-sharp{{/unless}}" }, @@ -26918,7 +28080,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-sharp{{/unless}}" }, @@ -26960,7 +28123,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-sharp{{/unless}}", "dependencyDashboardApproval": true @@ -27006,7 +28170,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-sharp{{/unless}}" }, @@ -27052,7 +28217,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-sharp{{/unless}}", "dependencyDashboardApproval": true @@ -27097,7 +28263,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-sqip{{/unless}}" }, @@ -27141,7 +28308,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-sqip{{/unless}}" }, @@ -27184,7 +28352,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-sqip{{/unless}}" }, @@ -27226,7 +28395,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-sqip{{/unless}}", "dependencyDashboardApproval": true @@ -27272,7 +28442,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-sqip{{/unless}}" }, @@ -27318,7 +28489,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-sqip{{/unless}}", "dependencyDashboardApproval": true @@ -27363,7 +28535,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-toml{{/unless}}" }, @@ -27407,7 +28580,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-toml{{/unless}}" }, @@ -27450,7 +28624,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-toml{{/unless}}" }, @@ -27492,7 +28667,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-toml{{/unless}}", "dependencyDashboardApproval": true @@ -27536,7 +28712,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-toml{{/unless}}" }, @@ -27580,7 +28757,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-toml{{/unless}}", "dependencyDashboardApproval": true @@ -27625,7 +28803,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-xml{{/unless}}" }, @@ -27669,7 +28848,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-xml{{/unless}}" }, @@ -27712,7 +28892,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-xml{{/unless}}" }, @@ -27754,7 +28935,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-xml{{/unless}}", "dependencyDashboardApproval": true @@ -27798,7 +28980,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-xml{{/unless}}" }, @@ -27842,7 +29025,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-xml{{/unless}}", "dependencyDashboardApproval": true @@ -27887,7 +29071,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-yaml{{/unless}}" }, @@ -27931,7 +29116,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-yaml{{/unless}}" }, @@ -27974,7 +29160,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-yaml{{/unless}}" }, @@ -28016,7 +29203,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-yaml{{/unless}}", "dependencyDashboardApproval": true @@ -28060,7 +29248,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-yaml{{/unless}}" }, @@ -28104,7 +29293,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-yaml{{/unless}}", "dependencyDashboardApproval": true @@ -28149,7 +29339,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-worker{{/unless}}" }, @@ -28193,7 +29384,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-worker{{/unless}}" }, @@ -28236,7 +29428,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-worker{{/unless}}" }, @@ -28278,7 +29471,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-worker{{/unless}}", "dependencyDashboardApproval": true @@ -28322,7 +29516,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-worker{{/unless}}" }, @@ -28366,7 +29561,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby-worker{{/unless}}", "dependencyDashboardApproval": true @@ -28411,7 +29607,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby{{/unless}}" }, @@ -28455,7 +29652,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby{{/unless}}" }, @@ -28498,7 +29696,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby{{/unless}}" }, @@ -28540,7 +29739,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby{{/unless}}", "dependencyDashboardApproval": true @@ -28555,6 +29755,8 @@ "groupName": "minor and patch dependencies for gatsby", "groupSlug": "gatsby-prod-minor", "matchPackageNames": [ + "@builder.io/partytown", + "@jridgewell/trace-mapping", "@pmmmwh/react-refresh-webpack-plugin", "axios", "cookie", @@ -28563,8 +29765,6 @@ "memoizee", "opentracing", "react-refresh", - "source-map", - "source-map-support", "stack-trace", "tmp", "webpack-virtual-modules", @@ -28599,7 +29799,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby{{/unless}}" }, @@ -28613,6 +29814,8 @@ "groupName": "major dependencies for gatsby", "groupSlug": "gatsby-prod-major", "matchPackageNames": [ + "@builder.io/partytown", + "@jridgewell/trace-mapping", "@pmmmwh/react-refresh-webpack-plugin", "axios", "cookie", @@ -28621,8 +29824,6 @@ "memoizee", "opentracing", "react-refresh", - "source-map", - "source-map-support", "stack-trace", "tmp", "webpack-virtual-modules", @@ -28658,7 +29859,8 @@ "^eslint-", "^@typescript-eslint/", "^@testing-library/", - "^@parcel/" + "^@parcel/", + "lmdb" ], "commitMessageSuffix": "{{#unless groupName}} for gatsby{{/unless}}", "dependencyDashboardApproval": true diff --git a/scripts/renovate-config-generator.js b/scripts/renovate-config-generator.js index 062e08f7bb11d..2a4b6a16387f9 100644 --- a/scripts/renovate-config-generator.js +++ b/scripts/renovate-config-generator.js @@ -155,6 +155,14 @@ const globalPackageRules = [ matchDepTypes: [`dependencies`, `devDependencies`], dependencyDashboardApproval: false, }, + { + groupName: `lmdb`, + matchPaths: [`+(package.json)`, `packages/**/package.json`], + matchPackagePatterns: [`lmdb`], + matchUpdateTypes: [`major`, `minor`, `patch`], + matchDepTypes: [`dependencies`, `devDependencies`], + dependencyDashboardApproval: false, + }, ] // there is no excludeMatchSourceUrlPrefixes option so we force babel to be disabled From 99944e8daee00daede7c77ec36f9d2a282b612a9 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 6 Jul 2022 08:36:58 +0200 Subject: [PATCH 09/90] fix(deps): update parcel to v2.6.2 (#36036) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Lennart --- packages/gatsby-parcel-config/package.json | 32 +- .../package.json | 2 +- packages/gatsby/package.json | 2 +- yarn.lock | 495 ++++++++---------- 4 files changed, 239 insertions(+), 292 deletions(-) diff --git a/packages/gatsby-parcel-config/package.json b/packages/gatsby-parcel-config/package.json index 6e54481049a7e..11c78fcd66f2f 100644 --- a/packages/gatsby-parcel-config/package.json +++ b/packages/gatsby-parcel-config/package.json @@ -15,22 +15,22 @@ }, "dependencies": { "@gatsbyjs/parcel-namer-relative-to-cwd": "1.4.0-next.1", - "@parcel/bundler-default": "2.6.0", - "@parcel/compressor-raw": "2.6.0", - "@parcel/namer-default": "2.6.0", - "@parcel/optimizer-terser": "2.6.0", - "@parcel/packager-js": "2.6.0", - "@parcel/packager-raw": "2.6.0", - "@parcel/reporter-dev-server": "2.6.0", - "@parcel/resolver-default": "2.6.0", - "@parcel/runtime-browser-hmr": "2.6.0", - "@parcel/runtime-js": "2.6.0", - "@parcel/runtime-react-refresh": "2.6.0", - "@parcel/runtime-service-worker": "2.6.0", - "@parcel/transformer-js": "2.6.0", - "@parcel/transformer-json": "2.6.0", - "@parcel/transformer-raw": "2.6.0", - "@parcel/transformer-react-refresh-wrap": "2.6.0" + "@parcel/bundler-default": "2.6.2", + "@parcel/compressor-raw": "2.6.2", + "@parcel/namer-default": "2.6.2", + "@parcel/optimizer-terser": "2.6.2", + "@parcel/packager-js": "2.6.2", + "@parcel/packager-raw": "2.6.2", + "@parcel/reporter-dev-server": "2.6.2", + "@parcel/resolver-default": "2.6.2", + "@parcel/runtime-browser-hmr": "2.6.2", + "@parcel/runtime-js": "2.6.2", + "@parcel/runtime-react-refresh": "2.6.2", + "@parcel/runtime-service-worker": "2.6.2", + "@parcel/transformer-js": "2.6.2", + "@parcel/transformer-json": "2.6.2", + "@parcel/transformer-raw": "2.6.2", + "@parcel/transformer-react-refresh-wrap": "2.6.2" }, "parcelDependencies": { "@gatsbyjs/parcel-namer-relative-to-cwd": "1.0.0-next.0", diff --git a/packages/gatsby-parcel-namer-relative-to-cwd/package.json b/packages/gatsby-parcel-namer-relative-to-cwd/package.json index 5e103a8112bd8..1a730a4fa750e 100644 --- a/packages/gatsby-parcel-namer-relative-to-cwd/package.json +++ b/packages/gatsby-parcel-namer-relative-to-cwd/package.json @@ -17,7 +17,7 @@ "license": "MIT", "dependencies": { "@babel/runtime": "^7.18.0", - "@parcel/plugin": "2.6.0", + "@parcel/plugin": "2.6.2", "gatsby-core-utils": "^3.19.0-next.1" }, "devDependencies": { diff --git a/packages/gatsby/package.json b/packages/gatsby/package.json index b537a9a2dd7f2..2c34e1c6838dd 100644 --- a/packages/gatsby/package.json +++ b/packages/gatsby/package.json @@ -30,7 +30,7 @@ "@graphql-tools/load": "^7.5.10", "@jridgewell/trace-mapping": "^0.3.13", "@nodelib/fs.walk": "^1.2.8", - "@parcel/core": "2.6.0", + "@parcel/core": "2.6.2", "@pmmmwh/react-refresh-webpack-plugin": "^0.4.3", "@types/http-proxy": "^1.17.7", "@typescript-eslint/eslint-plugin": "^4.33.0", diff --git a/yarn.lock b/yarn.lock index d673984abd897..a31a7c58c19f3 100644 --- a/yarn.lock +++ b/yarn.lock @@ -3667,60 +3667,60 @@ resolved "https://registry.yarnpkg.com/@opentelemetry/semantic-conventions/-/semantic-conventions-0.26.0.tgz#df94120f3a91001a55ed939d2d2a3f8c9148f27b" integrity sha512-iO26zEr7GCAG9/yernhSj/LcB4EudVcN8fiI/8B4lVnoqLZQ/qHaOVdyemdeXZ8IkIvoCifoJYPqIARJpqg42w== -"@parcel/bundler-default@2.6.0": - version "2.6.0" - resolved "https://registry.yarnpkg.com/@parcel/bundler-default/-/bundler-default-2.6.0.tgz#3b091d2f6ebdb333558fc25c1fb98e28b854ace3" - integrity sha512-AplEdGm/odV7yGmoeOnglxnY31WlNB5EqGLFGxkgs7uwDaTWoTX/9SWPG6xfvirhjDpms8sLSiVuBdFRCCLtNA== +"@parcel/bundler-default@2.6.2": + version "2.6.2" + resolved "https://registry.yarnpkg.com/@parcel/bundler-default/-/bundler-default-2.6.2.tgz#bfa1be22af985ba2d6dbf1890a36ad4553f819d4" + integrity sha512-XIa3had/MIaTGgRFkHApXwytYs77k4geaNcmlb6nzmAABcYjW1CLYh83Zt0AbzLFsDT9ZcRY3u2UjhNf6efSaw== dependencies: - "@parcel/diagnostic" "2.6.0" - "@parcel/hash" "2.6.0" - "@parcel/plugin" "2.6.0" - "@parcel/utils" "2.6.0" + "@parcel/diagnostic" "2.6.2" + "@parcel/hash" "2.6.2" + "@parcel/plugin" "2.6.2" + "@parcel/utils" "2.6.2" nullthrows "^1.1.1" -"@parcel/cache@2.6.0": - version "2.6.0" - resolved "https://registry.yarnpkg.com/@parcel/cache/-/cache-2.6.0.tgz#19a5132e5715d7ab1df7cb7a5ae5e8c29003a7b1" - integrity sha512-4vbD5uSuf+kRnrFesKhpn0AKnOw8u2UlvCyrplYmp1g9bNAkIooC/nDGdmkb/9SviPEbni9PEanQEHDU2+slpA== +"@parcel/cache@2.6.2": + version "2.6.2" + resolved "https://registry.yarnpkg.com/@parcel/cache/-/cache-2.6.2.tgz#66163c8f8ac4aac865c4b9eb2197b0d9e6f91a74" + integrity sha512-hhJ6AsEGybeQZd9c/GYqfcKTgZKQXu3Xih6TlnP3gdR3KZoJOnb40ovHD1yYg4COvfcXThKP1cVJ18J6rcv3IA== dependencies: - "@parcel/fs" "2.6.0" - "@parcel/logger" "2.6.0" - "@parcel/utils" "2.6.0" - lmdb "2.3.10" + "@parcel/fs" "2.6.2" + "@parcel/logger" "2.6.2" + "@parcel/utils" "2.6.2" + lmdb "2.5.2" -"@parcel/codeframe@2.6.0": - version "2.6.0" - resolved "https://registry.yarnpkg.com/@parcel/codeframe/-/codeframe-2.6.0.tgz#1de477a8772191d5990348b6c75922c1350b835c" - integrity sha512-yXXxrO9yyedHKpTwC+Af0+vPmQm+A9xeEhkt4f0yVg1n4t4yUIxYlTedzbM8ygZEEBtkXU9jJ+PkgXbfMf0dqw== +"@parcel/codeframe@2.6.2": + version "2.6.2" + resolved "https://registry.yarnpkg.com/@parcel/codeframe/-/codeframe-2.6.2.tgz#01a7ae97fdb66457e6704c87cc6031085e539e6e" + integrity sha512-oFlHr6HCaYYsB4SHkU+gn9DKtbzvv3/4NdwMX0/6NAKyYVI7inEsXyPGw2Bbd2ZCFatW9QJZUETF0etvh5AEfQ== dependencies: chalk "^4.1.0" -"@parcel/compressor-raw@2.6.0": - version "2.6.0" - resolved "https://registry.yarnpkg.com/@parcel/compressor-raw/-/compressor-raw-2.6.0.tgz#d8b238db719f43807ebd96ec08270b3c937221e2" - integrity sha512-rtMU2mGl88bic6Xbq1u5L49bMK4s5185b0k7h3JRdS6/0rR+Xp4k/o9Wog+hHjK/s82z1eF9WmET779ZpIDIQQ== +"@parcel/compressor-raw@2.6.2": + version "2.6.2" + resolved "https://registry.yarnpkg.com/@parcel/compressor-raw/-/compressor-raw-2.6.2.tgz#6fec2654c7767a2fef042a37246549d41ee8a586" + integrity sha512-P3c8jjV5HVs+fNDjhvq7PtHXNm687nit1iwTS5VAt+ScXKhKBhoIJ56q+9opcw0jnXVjAAgZqcRZ50oAJBGdKw== dependencies: - "@parcel/plugin" "2.6.0" + "@parcel/plugin" "2.6.2" -"@parcel/core@2.6.0": - version "2.6.0" - resolved "https://registry.yarnpkg.com/@parcel/core/-/core-2.6.0.tgz#dad1f5f529ffb47df772c155ef09119d3294538c" - integrity sha512-8OOWbPuxpFydpwNyKoz6d3e3O4DmxNYmMw4DXwrPSj/jyg7oa+SDtMT0/VXEhujE0HYkQPCHt4npRajkSuf99A== +"@parcel/core@2.6.2": + version "2.6.2" + resolved "https://registry.yarnpkg.com/@parcel/core/-/core-2.6.2.tgz#c46d26e2f47967d80f08484f20d31fee7b90e888" + integrity sha512-JlKS3Ux0ngmdooSBbzQLShHJdsapF9E7TGMo1hFaHRquZip/DaqzvysYrgMJlDuCoLArciq5ei7ZKzGeK9zexA== dependencies: "@mischnic/json-sourcemap" "^0.1.0" - "@parcel/cache" "2.6.0" - "@parcel/diagnostic" "2.6.0" - "@parcel/events" "2.6.0" - "@parcel/fs" "2.6.0" - "@parcel/graph" "2.6.0" - "@parcel/hash" "2.6.0" - "@parcel/logger" "2.6.0" - "@parcel/package-manager" "2.6.0" - "@parcel/plugin" "2.6.0" + "@parcel/cache" "2.6.2" + "@parcel/diagnostic" "2.6.2" + "@parcel/events" "2.6.2" + "@parcel/fs" "2.6.2" + "@parcel/graph" "2.6.2" + "@parcel/hash" "2.6.2" + "@parcel/logger" "2.6.2" + "@parcel/package-manager" "2.6.2" + "@parcel/plugin" "2.6.2" "@parcel/source-map" "^2.0.0" - "@parcel/types" "2.6.0" - "@parcel/utils" "2.6.0" - "@parcel/workers" "2.6.0" + "@parcel/types" "2.6.2" + "@parcel/utils" "2.6.2" + "@parcel/workers" "2.6.2" abortcontroller-polyfill "^1.1.9" base-x "^3.0.8" browserslist "^4.6.6" @@ -3732,188 +3732,189 @@ nullthrows "^1.1.1" semver "^5.7.1" -"@parcel/diagnostic@2.6.0": - version "2.6.0" - resolved "https://registry.yarnpkg.com/@parcel/diagnostic/-/diagnostic-2.6.0.tgz#99570b28ed44d64d57a3c3521bcfa4f6f631b495" - integrity sha512-+p8gC2FKxSI2veD7SoaNlP572v4kw+nafCQEPDtJuzYYRqywYUGncch25dkpgNApB4W4cXVkZu3ZbtIpCAmjQQ== +"@parcel/diagnostic@2.6.2": + version "2.6.2" + resolved "https://registry.yarnpkg.com/@parcel/diagnostic/-/diagnostic-2.6.2.tgz#da3fca0d82bc012f49288c963024edd089ca9f41" + integrity sha512-3ODSBkKVihENU763z1/1DhGAWFhYWRxOCOShC72KXp+GFnSgGiBsxclu8NBa/N948Rzp8lqQI8U1nLcKkh0O/w== dependencies: "@mischnic/json-sourcemap" "^0.1.0" nullthrows "^1.1.1" -"@parcel/events@2.6.0": - version "2.6.0" - resolved "https://registry.yarnpkg.com/@parcel/events/-/events-2.6.0.tgz#6066c8c7b320e12fd206877bd549825b7eea8c63" - integrity sha512-2WaKtBs4iYwS88j4zRdyTJTgh8iuY4E32FMmjzzbheqETs6I05gWuPReGukJYxk8vc0Ir7tbzp12oAfpgo0Y+g== +"@parcel/events@2.6.2": + version "2.6.2" + resolved "https://registry.yarnpkg.com/@parcel/events/-/events-2.6.2.tgz#97a1059d1eb93df8d3d426b6b150f829f70f543b" + integrity sha512-IaCjOeA5ercdFVi1EZOmUHhGfIysmCUgc2Th9hMugSFO0I3GzRsBcAdP6XPfWm+TV6sQ/qZRfdk/drUxoAupnw== -"@parcel/fs-search@2.6.0": - version "2.6.0" - resolved "https://registry.yarnpkg.com/@parcel/fs-search/-/fs-search-2.6.0.tgz#35c52da3186cab953cf6686304921a7ab0c81be8" - integrity sha512-1nXzM3H/cA4kzLKvDBvwmNisKCdRqlgkLXh+OR1Zu28Kn4W34KuJMcHWW8cC+WIuuKqDh5oo2WPsC5y65GXBKQ== +"@parcel/fs-search@2.6.2": + version "2.6.2" + resolved "https://registry.yarnpkg.com/@parcel/fs-search/-/fs-search-2.6.2.tgz#6343a5da4f0753c96c004d6951897f83160c4d45" + integrity sha512-4STid1zqtGnmGjHD/2TG2g/zPDiCTtE3IAS24QYH3eiUAz2uoKGgEqd2tZbZ2yI96jtCuIhC1bzVu8Hbykls7w== dependencies: detect-libc "^1.0.3" -"@parcel/fs@2.6.0": - version "2.6.0" - resolved "https://registry.yarnpkg.com/@parcel/fs/-/fs-2.6.0.tgz#287a3cda558f16aae5c67ccbe33a17c1bbd75ceb" - integrity sha512-6vxtx5Zy6MvDvH1EPx9JxjKGF03bR7VE1dUf4HLeX2D8YmpL5hkHJnlRCFdcH08rzOVwaJLzg1QNtblWJXQ9CA== +"@parcel/fs@2.6.2": + version "2.6.2" + resolved "https://registry.yarnpkg.com/@parcel/fs/-/fs-2.6.2.tgz#c3f4ab9f88df6c1416af7c2a7a31b68ced862a16" + integrity sha512-mIhqdF3tjgeoIGqW7Nc/xfM2ClID7o8livwUe5lpQEP+ZaIBiMigXs6ckv3WToCACK+3uylrSD2A/HmlhrxMqQ== dependencies: - "@parcel/fs-search" "2.6.0" - "@parcel/types" "2.6.0" - "@parcel/utils" "2.6.0" + "@parcel/fs-search" "2.6.2" + "@parcel/types" "2.6.2" + "@parcel/utils" "2.6.2" "@parcel/watcher" "^2.0.0" - "@parcel/workers" "2.6.0" + "@parcel/workers" "2.6.2" -"@parcel/graph@2.6.0": - version "2.6.0" - resolved "https://registry.yarnpkg.com/@parcel/graph/-/graph-2.6.0.tgz#04f9660333e314a51af38483efefd766a5841bb0" - integrity sha512-rxrAzWm6rwbCRPbu0Z+zwMscpG8omffODniVWPlX2G0jgQGpjKsutBQ6RMfFIcfaQ4MzL3pIQOTf8bkjQOPsbg== +"@parcel/graph@2.6.2": + version "2.6.2" + resolved "https://registry.yarnpkg.com/@parcel/graph/-/graph-2.6.2.tgz#fe777666c6fa09cb89b1570932459a4b5e90b6aa" + integrity sha512-DPH4G/RBFJWayIN2fnhDXqhUw75n7k15YsGzdDKiXuwwz4wMOjoL4cyrI6zOf1SIyh3guRmeTYJ4jjPzwrLYww== dependencies: - "@parcel/utils" "2.6.0" + "@parcel/utils" "2.6.2" nullthrows "^1.1.1" -"@parcel/hash@2.6.0": - version "2.6.0" - resolved "https://registry.yarnpkg.com/@parcel/hash/-/hash-2.6.0.tgz#c41364425e08d7e0ae5dae8b49ebfec2094124fe" - integrity sha512-YugWqhLxqK80Lo++3B3Kr5UPCHOdS8iI2zJ1jkzUeH9v6WUzbwWOnmPf6lN2S5m1BrIFFJd8Jc+CbEXWi8zoJA== +"@parcel/hash@2.6.2": + version "2.6.2" + resolved "https://registry.yarnpkg.com/@parcel/hash/-/hash-2.6.2.tgz#485e31323036abdf3648ba7f8816985296f358ba" + integrity sha512-tFB+cJU1Wqag6WyJgsmx3nx+xhmjcNZqtWh/MtK1lHNnZdDRk6bjr7SapnygBwruz+SmSt5bbdVThcpk2dRCcA== dependencies: detect-libc "^1.0.3" xxhash-wasm "^0.4.2" -"@parcel/logger@2.6.0": - version "2.6.0" - resolved "https://registry.yarnpkg.com/@parcel/logger/-/logger-2.6.0.tgz#f7aa26368e39573a5362997bb215f4a987c799e4" - integrity sha512-J1/7kPfSGBvMKSZdi0WCNuN0fIeiWxifnDGn7W/K8KhD422YwFJA8N046ps8nkDOPIXf1osnIECNp4GIR9oSYw== +"@parcel/logger@2.6.2": + version "2.6.2" + resolved "https://registry.yarnpkg.com/@parcel/logger/-/logger-2.6.2.tgz#c99eed0e1ed13ac0c25f5e57355ab1bf5b3eda21" + integrity sha512-Sz5YGCj1DbEiX0/G8Uw97LLZ0uEK+qtWcRAkHNpJpeMiSqDiRNevxXltz42EcLo+oCh4d4wyiVzwi9mNwzhS/Q== dependencies: - "@parcel/diagnostic" "2.6.0" - "@parcel/events" "2.6.0" + "@parcel/diagnostic" "2.6.2" + "@parcel/events" "2.6.2" -"@parcel/markdown-ansi@2.6.0": - version "2.6.0" - resolved "https://registry.yarnpkg.com/@parcel/markdown-ansi/-/markdown-ansi-2.6.0.tgz#69720735d27ca039e1e03f0277224ec5a99c0ef7" - integrity sha512-fyjkrJQQSfKTUFTTasdZ6WrAkDoQ2+DYDjj+3p+RncYyrIa9zArKx4IiRiipsvNdtMvP0/hTdK8F3BOJ3KSU/g== +"@parcel/markdown-ansi@2.6.2": + version "2.6.2" + resolved "https://registry.yarnpkg.com/@parcel/markdown-ansi/-/markdown-ansi-2.6.2.tgz#7511f6d32688f8d150828cdd1162774c102070e3" + integrity sha512-N/h9J4eibhc+B+krzvPMzFUWL37GudBIZBa7XSLkcuH6MnYYfh6rrMvhIyyESwk6VkcZNVzAeZrGQqxEs0dHDQ== dependencies: chalk "^4.1.0" -"@parcel/namer-default@2.6.0": - version "2.6.0" - resolved "https://registry.yarnpkg.com/@parcel/namer-default/-/namer-default-2.6.0.tgz#1978397aabf13824f433157c683f64e1b6d37936" - integrity sha512-r8O12r7ozJBctnFxVdXbf/fK97GIdNj3hiiUNWlXEmED9sw6ZPcChaLcfot0/443g8i87JDmSTKJ8js2tuz5XA== +"@parcel/namer-default@2.6.2": + version "2.6.2" + resolved "https://registry.yarnpkg.com/@parcel/namer-default/-/namer-default-2.6.2.tgz#8034fb23d2013ae00e5b73e9f887553bef498075" + integrity sha512-mp7bx/BQaIuohmZP0uE+gAmDBzzH0Yu8F4yCtE611lc6i0mou+nWRhzyKLNC/ieuI8DB3BFh2QQKeTxJn4W0qg== dependencies: - "@parcel/diagnostic" "2.6.0" - "@parcel/plugin" "2.6.0" + "@parcel/diagnostic" "2.6.2" + "@parcel/plugin" "2.6.2" nullthrows "^1.1.1" -"@parcel/node-resolver-core@2.6.0": - version "2.6.0" - resolved "https://registry.yarnpkg.com/@parcel/node-resolver-core/-/node-resolver-core-2.6.0.tgz#2666897414274e0de72221f8ec34590f029ab95d" - integrity sha512-AJDj5DZbB58plv0li8bdVSD+zpnkHE36Om3TYyNn1jgXXwgBM64Er/9p8yQn356jBqTQMh7zlJqvbdIyOiMeMg== +"@parcel/node-resolver-core@2.6.2": + version "2.6.2" + resolved "https://registry.yarnpkg.com/@parcel/node-resolver-core/-/node-resolver-core-2.6.2.tgz#46381572e2829cd6b9424ea1cfd8c1330ab9ff4f" + integrity sha512-4b2L5QRYlTybvv3+TIRtwg4PPJXy+cRShCBa8eu1K0Fj297Afe8MOZrcVV+RIr2KPMIRXcIJoqDmOhyci/DynA== dependencies: - "@parcel/diagnostic" "2.6.0" - "@parcel/utils" "2.6.0" + "@parcel/diagnostic" "2.6.2" + "@parcel/utils" "2.6.2" nullthrows "^1.1.1" + semver "^5.7.1" -"@parcel/optimizer-terser@2.6.0": - version "2.6.0" - resolved "https://registry.yarnpkg.com/@parcel/optimizer-terser/-/optimizer-terser-2.6.0.tgz#98179f7e5e4c74f80aaca7660d4a83d0ed03877e" - integrity sha512-oezRt6Lz/QqcVDXyMfFjzQc7n0ThJowLJ4Lyhu8rMh0ZJYzc4UCFCw/19d4nRnzE+Qg0vj3mQCpdkA9/64E44g== +"@parcel/optimizer-terser@2.6.2": + version "2.6.2" + resolved "https://registry.yarnpkg.com/@parcel/optimizer-terser/-/optimizer-terser-2.6.2.tgz#3361e2fd51bfdf6736f1e85afb9d6bed207cdb60" + integrity sha512-ZSEVQ3G3zOiVPeHvH+BrHegZybrQj9kWQAaAA92leSqbvf6UaX4xqXbGRg2OttNFtbGYBzIl28Zm4t2SLeUIuA== dependencies: - "@parcel/diagnostic" "2.6.0" - "@parcel/plugin" "2.6.0" + "@parcel/diagnostic" "2.6.2" + "@parcel/plugin" "2.6.2" "@parcel/source-map" "^2.0.0" - "@parcel/utils" "2.6.0" + "@parcel/utils" "2.6.2" nullthrows "^1.1.1" terser "^5.2.0" -"@parcel/package-manager@2.6.0": - version "2.6.0" - resolved "https://registry.yarnpkg.com/@parcel/package-manager/-/package-manager-2.6.0.tgz#2d5dca646f2484ff6d643e1a2ed88cc48b25c6f6" - integrity sha512-AqFfdkbOw51q/3ia2mIsFTmrpYEyUb3k+2uYC5GsLMz3go6OGn7/Crz0lZLSclv5EtwpRg3TWr9yL7RekVN/Uw== - dependencies: - "@parcel/diagnostic" "2.6.0" - "@parcel/fs" "2.6.0" - "@parcel/logger" "2.6.0" - "@parcel/types" "2.6.0" - "@parcel/utils" "2.6.0" - "@parcel/workers" "2.6.0" +"@parcel/package-manager@2.6.2": + version "2.6.2" + resolved "https://registry.yarnpkg.com/@parcel/package-manager/-/package-manager-2.6.2.tgz#003e8326adf95f85b2a40bb5e5f24a735d58f114" + integrity sha512-xGMqTgnwTE3rgzYwUZMKxR8fzmP5iSYz/gj2H8FR3pEmwh/8xCMtNjTSth+hPVGuqgRZ6JxwpfdY/fXdZ61ViQ== + dependencies: + "@parcel/diagnostic" "2.6.2" + "@parcel/fs" "2.6.2" + "@parcel/logger" "2.6.2" + "@parcel/types" "2.6.2" + "@parcel/utils" "2.6.2" + "@parcel/workers" "2.6.2" semver "^5.7.1" -"@parcel/packager-js@2.6.0": - version "2.6.0" - resolved "https://registry.yarnpkg.com/@parcel/packager-js/-/packager-js-2.6.0.tgz#31810f10de497dd67e1912f83de0aba66db58173" - integrity sha512-Uz3pqIFchFfKszWnNGDgIwM1uwHHJp7Dts6VzS9lf/2RbRgZT0fmce+NPgnVO5MMKBHzdvm32ShT6gFAABF5Vw== +"@parcel/packager-js@2.6.2": + version "2.6.2" + resolved "https://registry.yarnpkg.com/@parcel/packager-js/-/packager-js-2.6.2.tgz#16257b343480490adea619671b56d9cd02c8302a" + integrity sha512-fm5rKWtaExR0W+UEKWivXNPysRFxuBCdskdxDByb1J1JeGMvp7dJElbi8oXDAQM4MnM5EyG7cg47SlMZNTLm4A== dependencies: - "@parcel/diagnostic" "2.6.0" - "@parcel/hash" "2.6.0" - "@parcel/plugin" "2.6.0" + "@parcel/diagnostic" "2.6.2" + "@parcel/hash" "2.6.2" + "@parcel/plugin" "2.6.2" "@parcel/source-map" "^2.0.0" - "@parcel/utils" "2.6.0" + "@parcel/utils" "2.6.2" globals "^13.2.0" nullthrows "^1.1.1" -"@parcel/packager-raw@2.6.0": - version "2.6.0" - resolved "https://registry.yarnpkg.com/@parcel/packager-raw/-/packager-raw-2.6.0.tgz#8ccf041acd102a38b2ffa02fd8ef634652255bd2" - integrity sha512-ktT6Qc/GgCq8H1+6y+AXufVzQj1s6KRoKf83qswCD0iY3MwCbJoEfc3IsB4K64FpHIL5Eu0z54IId+INvGbOYA== +"@parcel/packager-raw@2.6.2": + version "2.6.2" + resolved "https://registry.yarnpkg.com/@parcel/packager-raw/-/packager-raw-2.6.2.tgz#67f136cc8b404edeb4092ea5f56d277e0e60d0c6" + integrity sha512-Rl3ZkMtMjb+LEvRowijDD8fibUAS6rWK0/vZQMk9cDNYCP2gCpZayLk0HZIGxneeTbosf/0sbngHq4VeRQOnQA== dependencies: - "@parcel/plugin" "2.6.0" + "@parcel/plugin" "2.6.2" -"@parcel/plugin@2.6.0": - version "2.6.0" - resolved "https://registry.yarnpkg.com/@parcel/plugin/-/plugin-2.6.0.tgz#84fd9fffd7891027e4040be4b94647652fd46354" - integrity sha512-LzOaiK8R6eFEoov1cb3/W+o0XvXdI/VbDhMDl0L0II+/56M0UeayYtFP5QGTDn/fZqVlYfzPCtt3EMwdG7/dow== +"@parcel/plugin@2.6.2": + version "2.6.2" + resolved "https://registry.yarnpkg.com/@parcel/plugin/-/plugin-2.6.2.tgz#d4c8cc558e962e4dfb7154a7f0a023f6abad07ac" + integrity sha512-wbbWsM23Pr+8xtLSvf+UopXdVYlpKCCx6PuuZaZcKo+9IcDCWoGXD4M8Kkz14qBmkFn5uM00mULUqmVdSibB2w== dependencies: - "@parcel/types" "2.6.0" + "@parcel/types" "2.6.2" -"@parcel/reporter-dev-server@2.6.0": - version "2.6.0" - resolved "https://registry.yarnpkg.com/@parcel/reporter-dev-server/-/reporter-dev-server-2.6.0.tgz#8e692916c6684c3c04fecef058ddddae6b74121c" - integrity sha512-VvygsCA+uzWyijIV8zqU1gFyhAWknuaY4KIWhV4kCT8afRJwsLSwt/tpdaKDPuPU45h3tTsUdXH1wjaIk+dGeQ== +"@parcel/reporter-dev-server@2.6.2": + version "2.6.2" + resolved "https://registry.yarnpkg.com/@parcel/reporter-dev-server/-/reporter-dev-server-2.6.2.tgz#73e82c7bd6bbe47de61b2170ac9b7799c4e850fd" + integrity sha512-5QtL3ETMFL161jehlIK6rjBM+Pqk5cMhr60s9yLYqE1GY4M4gMj+Act+FXViyM6gmMA38cPxDvUsxTKBYXpFCw== dependencies: - "@parcel/plugin" "2.6.0" - "@parcel/utils" "2.6.0" + "@parcel/plugin" "2.6.2" + "@parcel/utils" "2.6.2" -"@parcel/resolver-default@2.6.0": - version "2.6.0" - resolved "https://registry.yarnpkg.com/@parcel/resolver-default/-/resolver-default-2.6.0.tgz#a80bc39c402abe0e78e3de8997ca2ea636c28a91" - integrity sha512-ATk9wXvy5GOHAqyHbnCnU11fUPTtf8dLjpgVqL5XylwugZnyBXbynoTWX4w8h6mffkVtdfmzTJx/o4Lresz9sA== +"@parcel/resolver-default@2.6.2": + version "2.6.2" + resolved "https://registry.yarnpkg.com/@parcel/resolver-default/-/resolver-default-2.6.2.tgz#b417fb4f9713f5bdeceab737ae1dacb8322f2778" + integrity sha512-Lo5sWb5QkjWvdBr+TdmAF6Mszb/sMldBBatc1osQTkHXCy679VMH+lfyiWxHbwK+F1pmdMeBJpYcMxvrgT8EsA== dependencies: - "@parcel/node-resolver-core" "2.6.0" - "@parcel/plugin" "2.6.0" + "@parcel/node-resolver-core" "2.6.2" + "@parcel/plugin" "2.6.2" -"@parcel/runtime-browser-hmr@2.6.0": - version "2.6.0" - resolved "https://registry.yarnpkg.com/@parcel/runtime-browser-hmr/-/runtime-browser-hmr-2.6.0.tgz#e817ead910f9ba572ed8f477447c862acbfe8d73" - integrity sha512-90xvv/10cFML5dAhClBEJZ/ExiBQVPqQsZcvRmVZmc5mpZVJMKattWCQrd7pAf7FDYl4JAcvsK3DTwvRT/oLNA== +"@parcel/runtime-browser-hmr@2.6.2": + version "2.6.2" + resolved "https://registry.yarnpkg.com/@parcel/runtime-browser-hmr/-/runtime-browser-hmr-2.6.2.tgz#121fe22b5df6b7a8591a23632146c008448240a5" + integrity sha512-M4X0+7dyfdI6smwGUGjGXb8Ns3HX7ZrTemyq4Gc7zp7P/5gWjR8i9eISz46sXmF9bf01a/4dKZpoCC9un1pH1g== dependencies: - "@parcel/plugin" "2.6.0" - "@parcel/utils" "2.6.0" + "@parcel/plugin" "2.6.2" + "@parcel/utils" "2.6.2" -"@parcel/runtime-js@2.6.0": - version "2.6.0" - resolved "https://registry.yarnpkg.com/@parcel/runtime-js/-/runtime-js-2.6.0.tgz#a10c672c7f90360d5903180d0e2b808355708e80" - integrity sha512-R4tJAIT/SX7VBQ+f7WmeekREQzzLsmgP1j486uKhQNyYrpvsN0HnRbg5aqvZjEjkEmSeJR0mOlWtMK5/m+0yTA== +"@parcel/runtime-js@2.6.2": + version "2.6.2" + resolved "https://registry.yarnpkg.com/@parcel/runtime-js/-/runtime-js-2.6.2.tgz#cc46ec03d4fe2a4832cd7709431afba857bd37e0" + integrity sha512-0S3JFwgvs6FmEx2dHta9R0Sfu8vCnFAm4i7Y4efGHtAcTrF2CHjyiz4/hG+RQGJ70eoWW463Q+8qt6EKbkaOBQ== dependencies: - "@parcel/plugin" "2.6.0" - "@parcel/utils" "2.6.0" + "@parcel/plugin" "2.6.2" + "@parcel/utils" "2.6.2" nullthrows "^1.1.1" -"@parcel/runtime-react-refresh@2.6.0": - version "2.6.0" - resolved "https://registry.yarnpkg.com/@parcel/runtime-react-refresh/-/runtime-react-refresh-2.6.0.tgz#52ae4d9acba3e1e3b20a4f2712ea140fac21aaaf" - integrity sha512-2sRd13gc2EbMV/O5n2NPVGGhKBasb1fDTXGEY8y7qi9xDKc+ewok/D83T+w243FhCPS9Pf3ur5GkbPlrJGcenQ== +"@parcel/runtime-react-refresh@2.6.2": + version "2.6.2" + resolved "https://registry.yarnpkg.com/@parcel/runtime-react-refresh/-/runtime-react-refresh-2.6.2.tgz#4504cea4468fbeabf4a94c99a991251c7cd04c59" + integrity sha512-DJTm5D/tUAGZm0o3ndDOPbKwdYrobuvm4jvkPq31LdEUqVvyuzBAMlqQFHc1yJEJDRRWOIQwQP9Y0NQbJmXFfg== dependencies: - "@parcel/plugin" "2.6.0" - "@parcel/utils" "2.6.0" + "@parcel/plugin" "2.6.2" + "@parcel/utils" "2.6.2" react-error-overlay "6.0.9" react-refresh "^0.9.0" -"@parcel/runtime-service-worker@2.6.0": - version "2.6.0" - resolved "https://registry.yarnpkg.com/@parcel/runtime-service-worker/-/runtime-service-worker-2.6.0.tgz#10e90d02d83ebe763bb8de838a8f03eb3118aef9" - integrity sha512-nVlknGw5J5Bkd1Wr1TbyWHhUd9CmVVebaRg/lpfVKYhAuE/2r+3N0+J8qbEIgtTRcHaSV7wTNpg4weSWq46VeA== +"@parcel/runtime-service-worker@2.6.2": + version "2.6.2" + resolved "https://registry.yarnpkg.com/@parcel/runtime-service-worker/-/runtime-service-worker-2.6.2.tgz#f1ea3e768f8ae9d2f5ec119db020595933185393" + integrity sha512-9jV+RwVEeDUI5+eLy8j1tapTNoHHGOY2+JUprcObQkQ8fux7KltQBJWFhpkUdGtz5LTCNXtj9tdycFtS5lmSzg== dependencies: - "@parcel/plugin" "2.6.0" - "@parcel/utils" "2.6.0" + "@parcel/plugin" "2.6.2" + "@parcel/utils" "2.6.2" nullthrows "^1.1.1" "@parcel/source-map@^2.0.0": @@ -3923,70 +3924,70 @@ dependencies: detect-libc "^1.0.3" -"@parcel/transformer-js@2.6.0": - version "2.6.0" - resolved "https://registry.yarnpkg.com/@parcel/transformer-js/-/transformer-js-2.6.0.tgz#b9f297e391a7091aaf0432135cd7f6c86e76301b" - integrity sha512-4v2r3EVdMKowBziVBW9HZqvAv88HaeiezkWyMX4wAfplo9jBtWEp99KEQINzSEdbXROR81M9oJjlGF5+yoVr/w== +"@parcel/transformer-js@2.6.2": + version "2.6.2" + resolved "https://registry.yarnpkg.com/@parcel/transformer-js/-/transformer-js-2.6.2.tgz#905285b5d6d8047d0420641dee257ee93bac69d8" + integrity sha512-uhXAMTjE/Q61amflV8qVpb73mj+mIdXIMH0cSks1/gDIAxcgIvWvrE14P4TvY6zJ1q1iRJRIRUN6cFSXqjjLSA== dependencies: - "@parcel/diagnostic" "2.6.0" - "@parcel/plugin" "2.6.0" + "@parcel/diagnostic" "2.6.2" + "@parcel/plugin" "2.6.2" "@parcel/source-map" "^2.0.0" - "@parcel/utils" "2.6.0" - "@parcel/workers" "2.6.0" - "@swc/helpers" "^0.3.15" + "@parcel/utils" "2.6.2" + "@parcel/workers" "2.6.2" + "@swc/helpers" "^0.4.2" browserslist "^4.6.6" detect-libc "^1.0.3" nullthrows "^1.1.1" regenerator-runtime "^0.13.7" semver "^5.7.1" -"@parcel/transformer-json@2.6.0": - version "2.6.0" - resolved "https://registry.yarnpkg.com/@parcel/transformer-json/-/transformer-json-2.6.0.tgz#c15fc774431bab4c7059b4013e0d1ca9b66fad5c" - integrity sha512-zb+TQAdHWdXijKcFhLe+5KN1O0IzXwW1gJhPr8DJEA3qhPaCsncsw5RCVjQlP3a7NXr1mMm1eMtO6bhIMqbXeA== +"@parcel/transformer-json@2.6.2": + version "2.6.2" + resolved "https://registry.yarnpkg.com/@parcel/transformer-json/-/transformer-json-2.6.2.tgz#37a5c3f4571c81e1a5f2d0c77f266b56e3866ad5" + integrity sha512-QGcIIvbPF/u10ihYvQhxXqb2QMXWSzcBxJrOSIXIl74TUGrWX05D5LmjDA/rzm/n/kvRnBkFNP60R/smYb8x+Q== dependencies: - "@parcel/plugin" "2.6.0" + "@parcel/plugin" "2.6.2" json5 "^2.2.0" -"@parcel/transformer-raw@2.6.0": - version "2.6.0" - resolved "https://registry.yarnpkg.com/@parcel/transformer-raw/-/transformer-raw-2.6.0.tgz#c0648e0f788bc71a26235788edc662f303f7c91b" - integrity sha512-QDirlWCS/qy0DQ3WvDIAnFP52n1TJW/uWH+4PGMNnX4/M3/2UchY8xp9CN0tx4NQ4g09S8o3gLlHvNxQqZxFrQ== +"@parcel/transformer-raw@2.6.2": + version "2.6.2" + resolved "https://registry.yarnpkg.com/@parcel/transformer-raw/-/transformer-raw-2.6.2.tgz#a77ffaa26d59fcf79b5094c1319b6f0922fffe7e" + integrity sha512-CsofYq5g9Zj/FNmhya2R7Xp3WHlzz34mEdN69bds3azRYHCrl/TS33xXcp/9J+74SEIY1Ufh552o1cM3fnSrDQ== dependencies: - "@parcel/plugin" "2.6.0" + "@parcel/plugin" "2.6.2" -"@parcel/transformer-react-refresh-wrap@2.6.0": - version "2.6.0" - resolved "https://registry.yarnpkg.com/@parcel/transformer-react-refresh-wrap/-/transformer-react-refresh-wrap-2.6.0.tgz#8a3c2274549189c04440562ae4d3ca17ac4a861a" - integrity sha512-G34orfvLDUTumuerqNmA8T8NUHk+R0jwUjbVPO7gpB6VCVQ5ocTABdE9vN9Uu/cUsHij40TUFwqK4R9TFEBIEQ== +"@parcel/transformer-react-refresh-wrap@2.6.2": + version "2.6.2" + resolved "https://registry.yarnpkg.com/@parcel/transformer-react-refresh-wrap/-/transformer-react-refresh-wrap-2.6.2.tgz#680a3c724d8ada39a637a10f8cb7fdc33aa138eb" + integrity sha512-7EE68ebISz+oAHm64ZJbz6uJQT4aOoB8QiK3PvuY6+RsP7aK4/FEHGM1afW49KrZbP4lWjloEkcJm/88DfBiGw== dependencies: - "@parcel/plugin" "2.6.0" - "@parcel/utils" "2.6.0" + "@parcel/plugin" "2.6.2" + "@parcel/utils" "2.6.2" react-refresh "^0.9.0" -"@parcel/types@2.6.0": - version "2.6.0" - resolved "https://registry.yarnpkg.com/@parcel/types/-/types-2.6.0.tgz#b9b7f93edaafcb77425e231a0b4662d3c8d61900" - integrity sha512-lAMYvOBfNEJMsPJ+plbB50305o0TwNrY1xX5RRIWBqwOa6bYmbW1ZljUk1tQvnkpIE4eAHQwnPR5Z2XWg18wGQ== +"@parcel/types@2.6.2": + version "2.6.2" + resolved "https://registry.yarnpkg.com/@parcel/types/-/types-2.6.2.tgz#216313bcaf625e59a2bd525a00c3b1f6701b0d92" + integrity sha512-MV8BFpCIs2jMUvK2RHqzkoiuOQ//JIbrD1zocA2YRW3zuPL/iABvbAABJoXpoPCKikVWOoCWASgBfWQo26VvJQ== dependencies: - "@parcel/cache" "2.6.0" - "@parcel/diagnostic" "2.6.0" - "@parcel/fs" "2.6.0" - "@parcel/package-manager" "2.6.0" + "@parcel/cache" "2.6.2" + "@parcel/diagnostic" "2.6.2" + "@parcel/fs" "2.6.2" + "@parcel/package-manager" "2.6.2" "@parcel/source-map" "^2.0.0" - "@parcel/workers" "2.6.0" + "@parcel/workers" "2.6.2" utility-types "^3.10.0" -"@parcel/utils@2.6.0": - version "2.6.0" - resolved "https://registry.yarnpkg.com/@parcel/utils/-/utils-2.6.0.tgz#d2d42635ad5b398fa21b26940868e7ff30175c07" - integrity sha512-ElXz+QHtT1JQIucbQJBk7SzAGoOlBp4yodEQVvTKS7GA+hEGrSP/cmibl6qm29Rjtd0zgQsdd+2XmP3xvP2gQQ== - dependencies: - "@parcel/codeframe" "2.6.0" - "@parcel/diagnostic" "2.6.0" - "@parcel/hash" "2.6.0" - "@parcel/logger" "2.6.0" - "@parcel/markdown-ansi" "2.6.0" +"@parcel/utils@2.6.2": + version "2.6.2" + resolved "https://registry.yarnpkg.com/@parcel/utils/-/utils-2.6.2.tgz#18d68a56330be8db59c269163b77617043ba8e3a" + integrity sha512-Ug7hpRxjgbY5AopW55nY7MmGMVmwmN+ihfCmxJkBUoESTG/3iq8uME7GjyOgW5DkQc2K7q62i8y8N0wCJT1u4Q== + dependencies: + "@parcel/codeframe" "2.6.2" + "@parcel/diagnostic" "2.6.2" + "@parcel/hash" "2.6.2" + "@parcel/logger" "2.6.2" + "@parcel/markdown-ansi" "2.6.2" "@parcel/source-map" "^2.0.0" chalk "^4.1.0" @@ -3998,15 +3999,15 @@ node-addon-api "^3.2.1" node-gyp-build "^4.3.0" -"@parcel/workers@2.6.0": - version "2.6.0" - resolved "https://registry.yarnpkg.com/@parcel/workers/-/workers-2.6.0.tgz#09a53d62425d26eb1ee288371348c4dedf0347c9" - integrity sha512-3tcI2LF5fd/WZtSnSjyWdDE+G+FitdNrRgSObzSp+axHKMAM23sO0z7KY8s2SYCF40msdYbFUW8eI6JlYNJoWQ== +"@parcel/workers@2.6.2": + version "2.6.2" + resolved "https://registry.yarnpkg.com/@parcel/workers/-/workers-2.6.2.tgz#2cae07db7a752295f11c2952b5026e426e38b19b" + integrity sha512-wBgUjJQm+lDd12fPRUmk09+ujTA9DgwPdqylSFK0OtI/yT6A+2kArUqjp8IwWo2tCJXoMzXBne2XQIWKqMiN4Q== dependencies: - "@parcel/diagnostic" "2.6.0" - "@parcel/logger" "2.6.0" - "@parcel/types" "2.6.0" - "@parcel/utils" "2.6.0" + "@parcel/diagnostic" "2.6.2" + "@parcel/logger" "2.6.2" + "@parcel/types" "2.6.2" + "@parcel/utils" "2.6.2" chrome-trace-event "^1.0.2" nullthrows "^1.1.1" @@ -4217,10 +4218,10 @@ json5 "^2.2.0" magic-string "^0.25.0" -"@swc/helpers@^0.3.15": - version "0.3.16" - resolved "https://registry.yarnpkg.com/@swc/helpers/-/helpers-0.3.16.tgz#896c44a5d476034d261f878bc4833da1624b1752" - integrity sha512-xOhhpOruRcroQ0Nb5a5IgP94AJ0DuJnhEfXL+icJ1gn7uls5DXX2mRrlBqmrd0rAj/+/BRU8RB2VN8mA8DuFYQ== +"@swc/helpers@^0.4.2": + version "0.4.3" + resolved "https://registry.yarnpkg.com/@swc/helpers/-/helpers-0.4.3.tgz#16593dfc248c53b699d4b5026040f88ddb497012" + integrity sha512-6JrF+fdUK2zbGpJIlN7G3v966PQjyx/dPt1T9km2wj+EUBqgrxCk3uX4Kct16MIm9gGxfKRcfax2hVf5jvlTzA== dependencies: tslib "^2.4.0" @@ -15292,55 +15293,6 @@ livereload-js@^2.3.0: version "2.3.0" resolved "https://registry.yarnpkg.com/livereload-js/-/livereload-js-2.3.0.tgz#c3ab22e8aaf5bf3505d80d098cbad67726548c9a" -lmdb-darwin-arm64@2.3.10: - version "2.3.10" - resolved "https://registry.yarnpkg.com/lmdb-darwin-arm64/-/lmdb-darwin-arm64-2.3.10.tgz#4e20f75770eeedc60af3d4630975fd105a89ffe8" - integrity sha512-LVXbH2MYu7/ZuQ8+P9rv+SwNyBKltxo7vHAGJS94HWyfwnCbKEYER9PImBvNBwzvgtaYk6x0RMX3oor6e6KdDQ== - -lmdb-darwin-x64@2.3.10: - version "2.3.10" - resolved "https://registry.yarnpkg.com/lmdb-darwin-x64/-/lmdb-darwin-x64-2.3.10.tgz#e53637a6735488eaa15feb7c0e9da142015b9476" - integrity sha512-gAc/1b/FZOb9yVOT+o0huA+hdW82oxLo5r22dFTLoRUFG1JMzxdTjmnW6ONVOHdqC9a5bt3vBCEY3jmXNqV26A== - -lmdb-linux-arm64@2.3.10: - version "2.3.10" - resolved "https://registry.yarnpkg.com/lmdb-linux-arm64/-/lmdb-linux-arm64-2.3.10.tgz#ac7db8bdfe0e9dbf2be1cc3362d6f2b79e2a9722" - integrity sha512-Ihr8mdICTK3jA4GXHxrXGK2oekn0mY6zuDSXQDNtyRSH19j3D2Y04A7SEI9S0EP/t5sjKSudYgZbiHDxRCsI5A== - -lmdb-linux-arm@2.3.10: - version "2.3.10" - resolved "https://registry.yarnpkg.com/lmdb-linux-arm/-/lmdb-linux-arm-2.3.10.tgz#74235418bbe7bf41e8ea5c9d52365c4ff5ca4b49" - integrity sha512-Rb8+4JjsThuEcJ7GLLwFkCFnoiwv/3hAAbELWITz70buQFF+dCZvCWWgEgmDTxwn5r+wIkdUjmFv4dqqiKQFmQ== - -lmdb-linux-x64@2.3.10: - version "2.3.10" - resolved "https://registry.yarnpkg.com/lmdb-linux-x64/-/lmdb-linux-x64-2.3.10.tgz#d790b95061d03c5c99a57b3ad5126f7723c60a2f" - integrity sha512-E3l3pDiCA9uvnLf+t3qkmBGRO01dp1EHD0x0g0iRnfpAhV7wYbayJGfG93BUt22Tj3fnq4HDo4dQ6ZWaDI1nuw== - -lmdb-win32-x64@2.3.10: - version "2.3.10" - resolved "https://registry.yarnpkg.com/lmdb-win32-x64/-/lmdb-win32-x64-2.3.10.tgz#bff73d12d94084343c569b16069d8d38626eb2d6" - integrity sha512-gspWk34tDANhjn+brdqZstJMptGiwj4qFNVg0Zey9ds+BUlif+Lgf5szrfOVzZ8gVRkk1Lgbz7i78+V7YK7SCA== - -lmdb@2.3.10: - version "2.3.10" - resolved "https://registry.yarnpkg.com/lmdb/-/lmdb-2.3.10.tgz#640fc60815846babcbe088d7f8ed0a51da857f6a" - integrity sha512-GtH+nStn9V59CfYeQ5ddx6YTfuFCmu86UJojIjJAweG+/Fm0PDknuk3ovgYDtY/foMeMdZa8/P7oSljW/d5UPw== - dependencies: - msgpackr "^1.5.4" - nan "^2.14.2" - node-addon-api "^4.3.0" - node-gyp-build-optional-packages "^4.3.2" - ordered-binary "^1.2.4" - weak-lru-cache "^1.2.2" - optionalDependencies: - lmdb-darwin-arm64 "2.3.10" - lmdb-darwin-x64 "2.3.10" - lmdb-linux-arm "2.3.10" - lmdb-linux-arm64 "2.3.10" - lmdb-linux-x64 "2.3.10" - lmdb-win32-x64 "2.3.10" - lmdb@2.5.2: version "2.5.2" resolved "https://registry.yarnpkg.com/lmdb/-/lmdb-2.5.2.tgz#37e28a9fb43405f4dc48c44cec0e13a14c4a6ff1" @@ -17308,11 +17260,6 @@ node-gyp-build-optional-packages@5.0.3: resolved "https://registry.yarnpkg.com/node-gyp-build-optional-packages/-/node-gyp-build-optional-packages-5.0.3.tgz#92a89d400352c44ad3975010368072b41ad66c17" integrity sha512-k75jcVzk5wnnc/FMxsf4udAoTEUv2jY3ycfdSd3yWu6Cnd1oee6/CfZJApyscA4FJOmdoixWwiwOyf16RzD5JA== -node-gyp-build-optional-packages@^4.3.2: - version "4.3.5" - resolved "https://registry.yarnpkg.com/node-gyp-build-optional-packages/-/node-gyp-build-optional-packages-4.3.5.tgz#a1de0039f81ecacecefcbb4349cdb96842343b31" - integrity sha512-5ke7D8SiQsTQL7CkHpfR1tLwfqtKc0KYEmlnkwd40jHCASskZeS98qoZ1qDUns2aUQWikcjidRUs6PM/3iyN/w== - node-gyp-build@^4.2.3, node-gyp-build@^4.3.0: version "4.3.0" resolved "https://registry.yarnpkg.com/node-gyp-build/-/node-gyp-build-4.3.0.tgz#9f256b03e5826150be39c764bf51e993946d71a3" From d3fff4e1889b902effafd964eefc072af54af591 Mon Sep 17 00:00:00 2001 From: Ty Hopp Date: Thu, 7 Jul 2022 17:39:41 +0800 Subject: [PATCH 10/90] feat(gatsby): Sanitize redux page state (#36074) --- packages/gatsby/src/redux/actions/public.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/packages/gatsby/src/redux/actions/public.js b/packages/gatsby/src/redux/actions/public.js index d70d88e9ad563..79feb63e3e470 100644 --- a/packages/gatsby/src/redux/actions/public.js +++ b/packages/gatsby/src/redux/actions/public.js @@ -494,6 +494,9 @@ ${reservedFields.map(f => ` * "${f}"`).join(`\n`)} } } + // Sanitize page object so we don't attempt to serialize user-provided objects that are not serializable later + const sanitizedPayload = sanitizeNode(internalPage) + const actions = [ { ...actionOptions, @@ -501,7 +504,7 @@ ${reservedFields.map(f => ` * "${f}"`).join(`\n`)} contextModified, componentModified, plugin, - payload: internalPage, + payload: sanitizedPayload, }, ] From 2bf6218976d2807ac8443b6f506ca3e5ccd3b90b Mon Sep 17 00:00:00 2001 From: tyhopp Date: Thu, 7 Jul 2022 17:46:01 +0800 Subject: [PATCH 11/90] chore(release): Publish next - gatsby-parcel-config@0.10.0-next.2 - @gatsbyjs/parcel-namer-relative-to-cwd@1.4.0-next.2 - gatsby@4.19.0-next.4 --- packages/gatsby-parcel-config/package.json | 4 ++-- packages/gatsby-parcel-namer-relative-to-cwd/package.json | 2 +- packages/gatsby/package.json | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/packages/gatsby-parcel-config/package.json b/packages/gatsby-parcel-config/package.json index 11c78fcd66f2f..a49c66cf5381c 100644 --- a/packages/gatsby-parcel-config/package.json +++ b/packages/gatsby-parcel-config/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-parcel-config", "main": "lib/index.json", - "version": "0.10.0-next.1", + "version": "0.10.0-next.2", "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-parcel-config#readme", "description": "A minimal Parcel config for use in Gatsby", "repository": { @@ -14,7 +14,7 @@ "parcel": "2.x" }, "dependencies": { - "@gatsbyjs/parcel-namer-relative-to-cwd": "1.4.0-next.1", + "@gatsbyjs/parcel-namer-relative-to-cwd": "1.4.0-next.2", "@parcel/bundler-default": "2.6.2", "@parcel/compressor-raw": "2.6.2", "@parcel/namer-default": "2.6.2", diff --git a/packages/gatsby-parcel-namer-relative-to-cwd/package.json b/packages/gatsby-parcel-namer-relative-to-cwd/package.json index 1a730a4fa750e..551ce0f921b34 100644 --- a/packages/gatsby-parcel-namer-relative-to-cwd/package.json +++ b/packages/gatsby-parcel-namer-relative-to-cwd/package.json @@ -1,7 +1,7 @@ { "name": "@gatsbyjs/parcel-namer-relative-to-cwd", "main": "lib/index.js", - "version": "1.4.0-next.1", + "version": "1.4.0-next.2", "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-parcel-namer-relative-to-cwd#readme", "description": "Parcel namer that preserve directory structure to stabilize output and keep the hierarchy.", "author": "Michal Piechowiak ", diff --git a/packages/gatsby/package.json b/packages/gatsby/package.json index 2c34e1c6838dd..3b2906402ca03 100644 --- a/packages/gatsby/package.json +++ b/packages/gatsby/package.json @@ -1,7 +1,7 @@ { "name": "gatsby", "description": "Blazing fast modern site generator for React", - "version": "4.19.0-next.3", + "version": "4.19.0-next.4", "author": "Kyle Mathews ", "bin": { "gatsby": "./cli.js" @@ -94,7 +94,7 @@ "gatsby-legacy-polyfills": "^2.19.0-next.2", "gatsby-link": "^4.19.0-next.2", "gatsby-page-utils": "^2.19.0-next.1", - "gatsby-parcel-config": "0.10.0-next.1", + "gatsby-parcel-config": "0.10.0-next.2", "gatsby-plugin-page-creator": "^4.19.0-next.2", "gatsby-plugin-typescript": "^4.19.0-next.1", "gatsby-plugin-utils": "^3.13.0-next.1", From 8877b068419ced1c642c8d464577616c1dee3e23 Mon Sep 17 00:00:00 2001 From: Ty Hopp Date: Fri, 8 Jul 2022 18:16:12 +0800 Subject: [PATCH 12/90] fix(gatsby): Show error, exit process on SSR error (#36082) * fix(gatsby): Show error, exit process on SSR error * Throw instead of exit process --- packages/gatsby/cache-dir/static-entry.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/packages/gatsby/cache-dir/static-entry.js b/packages/gatsby/cache-dir/static-entry.js index 02d88c6a084d6..cdaf3dfa8fd16 100644 --- a/packages/gatsby/cache-dir/static-entry.js +++ b/packages/gatsby/cache-dir/static-entry.js @@ -287,7 +287,9 @@ export default async function staticPage({ onAllReady() { pipe(writableStream) }, - onError() {}, + onError(error) { + throw error + }, }) bodyHtml = await writableStream From 002b62d62ea2d50d0bbe85ec67f28bd0945bffce Mon Sep 17 00:00:00 2001 From: Kyle Mathews Date: Fri, 8 Jul 2022 15:33:01 -0700 Subject: [PATCH 13/90] fix(docs): Remove unused docs & update node.js upgrade doc (#36088) * fix(docs): Remove unused docs & update node.js upgrade doc * better wording --- docs/docs/awesome-gatsby-resources.md | 144 -------------- docs/docs/creating-global-styles.md | 9 - .../creating-a-form-in-react.md | 180 ------------------ docs/docs/prpl-pattern.md | 38 ---- docs/docs/upgrading-node-js.md | 34 ++-- 5 files changed, 17 insertions(+), 388 deletions(-) delete mode 100644 docs/docs/awesome-gatsby-resources.md delete mode 100644 docs/docs/creating-global-styles.md delete mode 100644 docs/docs/how-to/adding-common-features/creating-a-form-in-react.md delete mode 100644 docs/docs/prpl-pattern.md diff --git a/docs/docs/awesome-gatsby-resources.md b/docs/docs/awesome-gatsby-resources.md deleted file mode 100644 index eaac250bc1e77..0000000000000 --- a/docs/docs/awesome-gatsby-resources.md +++ /dev/null @@ -1,144 +0,0 @@ ---- -title: Awesome Gatsby Resources ---- - -A curated list of interesting Gatsby community projects and learning resources. - -## Site showcase - -See the [site showcase](/showcase/) - -## Starters - -See the [library of official and community starters](/starters/) - -## Plugins - -See the [library of official and community plugins](/plugins/) - -## Themes - -See the [unofficial list of themes](https://gatsbytemplates.io/) - -## Tools - -- [Develop & Build GatsbyJS static sites within Docker](https://github.com/aripalo/gatsby-docker/) -- Is Gatsby? - Browser extension for [Chrome](https://chrome.google.com/webstore/detail/is-gatsby/jgaejkhmgkpagdmapahohjennkhbpgfj) and [Firefox](https://addons.mozilla.org/en-US/firefox/addon/is-gatsby/) to check if a site / page is using Gatsby. -- [Gatsby Docs Kit](https://github.com/brainhubeu/gatsby-docs-kit): A set of tools, extending Gatsby to generate gorgeous documentation static website. - -## Podcasts - -- [2020-01-21: Sam Julien on Real Talk JavaScript #67](https://realtalkjavascript.simplecast.com/episodes/episode-67-jamstacking-with-the-great-gatsby-sam-julien) -- [2019-06-05: Jason Lengstorf on Syntax #150: Gatsby Themes](https://syntax.fm/show/150/gatsby-themes) -- [2019-05-22: Jason Lengstorf on Full Stack Radio #115: Gatsby for Skeptics](http://www.fullstackradio.com/115) -- [2019-04-12: Jason Lengstorf on JS Party #71](https://changelog.com/jsparty/71) -- [2018-11-30: Kyle Mathews on Founders Talk #59](https://changelog.com/founderstalk/59) -- [2018-11-14: Jason Lengstorf on React Podcast](https://reactpodcast.simplecast.fm/28) -- [2018-07-18: The Great GatsbyJS w/ Jason Lengstorf on The Changelog #306](https://changelog.com/podcast/306) -- [2018-04-17: Gatsby.js w/Jason Lengstorf](https://spec.fm/podcasts/toolsday/134337) -- [2018-02-28: syntax.fm on Static Site Generators (lots of Gatsby love)](https://syntax.fm/show/034/why-static-site-generators-are-awesome) -- [2017-09-21: Kyle Mathews on JAMstack radio on "Static Site Generation with GatsbyJS](https://www.heavybit.com/library/podcasts/jamstack-radio/ep-22-static-site-generation-with-gatsbyjs/) -- [2017-07-21: Kyle Mathews on Web of Tomorrow](https://www.orbit.fm/weboftomorrow/39/) -- [2017-08-17: Kyle Mathews on Software Engineering Daily](https://softwareengineeringdaily.com/2017/08/17/gatsbyjs-with-kyle-mathews/) - -## Videos - -- [Gatsby's official YouTube channel](https://www.youtube.com/channel/UCjnp770qk7ujOq8Q9wiC82w) -- [Jason Lengstorf's "Learn stuff with Jason" playlist](https://www.youtube.com/playlist?list=PLz8Iz-Fnk_eTpvd49Sa77NiF8Uqq5Iykx) -- [Gatsby Days Bay Area December 2018 - Kyle Mathews & Guest Speakers](https://www.youtube.com/playlist?list=PLCU2qJekvcN1wzgVKymbjbGtZ3VgAWOdj) -- [Static Site Generation with Gatsby.js v0 — Scott Nonnenberg](https://blog.scottnonnenberg.com/static-site-generation-with-gatsby-js/) -- [Build a JAMstack SaaS App with Gatsby playlist](https://www.youtube.com/playlist?list=PL8KiuH6vpACWZ7989jU1Puil5P2_m2O8e) -- [React.js Conf 2016 - Lightning Talks - Kyle Mathews](https://www.youtube.com/watch?v=RFkNRKL6ZoE) -- [Developing with React and Gatsby.js — Kyle Mathews](https://www.youtube.com/watch?v=G4LVKJOOj7o) -- [GraphQL Summit Open Source Lightning Talk on Gatsby — Kyle Mathews](https://youtu.be/y588qNiCZZo) -- [Talk on GatsbyJS @ ViennaJS — Gerald Bauer](https://www.youtube.com/watch?v=f0O1nCgqA3E&feature=youtu.be&a) - -## Livestreams - -- [Learn with Jason](https://www.youtube.com/playlist?list=PLCU2qJekvcN0RuMHCnjMYAKlpSKQ_e1hO) -- [Build a SaaS app with Gatsby and the JAMstack](https://www.youtube.com/playlist?list=PL8KiuH6vpACWZ7989jU1Puil5P2_m2O8e) - -## Gatsby tutorials - -- [Official tutorial](/docs/tutorial/) -- [Creating a blog with Gatsby](/blog/2017-07-19-creating-a-blog-with-gatsby/) -- [Level Up Tutorials series on creating a blog](https://www.youtube.com/watch?v=b2H7fWhQcdE&list=PLLnpHn493BHHfoINKLELxDch3uJlSapxg) -- [Level up Tutorials Pro Gatsby series](https://www.leveluptutorials.com/store/products/tutorials/lut-dd020) -- [Giraffe Academy series on getting started with Gatsby](https://www.youtube.com/playlist?list=PLLAZ4kZ9dFpMXuwazIt4mWtTuqOHdjRlk) -- [Egghead course — "Build a Blog with React and Markdown using Gatsby"](https://egghead.io/courses/build-a-blog-with-react-and-markdown-using-gatsby) -- [Build a photo site with Gatsby — 6 part tutorial](https://jeremey.blog/gatsby-photo/) -- [Blazing fast website with Gatsby and Contentful series](https://www.youtube.com/watch?v=Ek4o40w1tH4&list=PL8KiuH6vpACV-F7jXribe4YveGBhBeG9A) -- [Image Optimization Made Easy with Gatsby.js](https://medium.com/@kyle.robert.gill/ridiculously-easy-image-optimization-with-gatsby-js-59d48e15db6e) -- [ReactJS E-Commerce With No Backend Using Snipcart & Gatsby](https://snipcart.com/blog/snipcart-reactjs-static-ecommerce-gatsby) -- [Michael Cereda's multi-part series of blog posts on building his site with Gatsby](https://medium.com/@michaelcereda/creating-an-isomorphic-universal-website-with-react-part-1-a905350acba8#.akoo25l6j) -- [Gatsby – Static Site Generator For React](https://codingthesmartway.com/gatsby-static-site-generater-for-react-introduction/) -- [Build your own blog CMS with Gatsby and Airtable](https://blog.airtable.com/build-your-own-custom-blog-cms-with-airtable-and-gatsbyjs/) -- [Gatsby JS Crash Course](https://www.youtube.com/watch?v=6YhqQ2ZW1sc) -- [How I made my portfolio website blazing fast with Gatsby](https://medium.freecodecamp.org/how-i-made-my-portfolio-website-blazing-fast-with-gatsby-82ccddc2f671) -- [JAMstack Basics: How to Create a Gatsby Starter with Contentful and Deploy to Netlify](https://itnext.io/jamstack-basics-how-to-create-a-gatsby-starter-with-contentful-and-deploy-to-netlify-846354cc74bc) -- [How to deploy a static Gatsby app to Heroku](https://medium.freecodecamp.org/how-to-deploy-a-static-gatsby-app-to-heroku-3362e3ecda0f) -- [A comprehensive guide to build your personal website using GatsbyJS and Ghost deployed on AWS](https://nishantdania.com/blog/guide-to-setup-ghost-gatsby-website) -- [Zero to Deploy: A Practical Guide to Static Sites with Gatsby.js](https://scotch.io/tutorials/zero-to-deploy-a-practical-guide-to-static-sites-with-gatsbyjs) -- [Build blazing fast web applications with Gatsby 101](https://gatsbyguides.com/) -- [Build a Coffee Shop Website w/ Gatsby, Contentful, SnipCard & Formspree](https://www.youtube.com/watch?v=oAVhEPey_qA) -- [Why I used GatsbyJS](https://medium.com/@jameshunt.co/why-i-used-gatsbyjs-70bbb0f5c4a7) -- [Introducing Dashbored — Generate Static Dashboards Using Gatsby](https://medium.com/planes-agency/introducing-dashbored-62550a028fcc) -- [12 Factor Applications with GatsbyJS](https://medium.com/@wonderboymusic/12-factor-applications-with-gatsbyjs-ef8a2b1f883a) -- [Reading Data From A JSON File With Gatsby + GraphQL](https://itnext.io/reading-data-from-a-json-file-with-gatsby-graphql-572b18ab98a) -- [The Great Gatsby Bootcamp \[Full Course\] - Andrew Mead](https://www.youtube.com/watch?v=8t0vNu2fCCM) -- [Understanding the Gatsby lifecycle](https://medium.com/narative/understanding-gatsbys-lifecycle-31c473ba2f2d) -- [GatsbyGuides.com series on building web applications with Gatsby & Drupal](https://gatsbyguides.com/) -- [Deep dive into Gatsby – Building a static blog using Gatsby, React and GraphQL](https://zocada.com/deep-dive-gatsby-building-a-simple-static-blog-using-gatsby-react-and-graphql/) -- [Gatsby - Full Tutorial for Beginners](https://www.youtube.com/watch?v=mHFAM0CXviE) -- [Building a Video Blog with Gatsby and Markdown (MDX)](https://scotch.io/tutorials/building-a-video-blog-with-gatsby-and-markdown-mdx) -- [Deploying Your First Gatsby Site to Netlify](https://scotch.io/tutorials/deploying-your-first-gatsby-site-to-netlify) -- [Add a chat widget to your Gatsby blog](https://pusher.com/tutorials/chat-gatsby/) -- [Headless WordPress: Why Gatsby Should Be Next on Your List of Things to Learn](https://deliciousbrains.com/gatsby-headless-wordpress/) -- [Gatsby Tutorials \[video series\] — Michael Uloth](https://www.youtube.com/watch?v=jAa1wh5ATm0&list=PLHBEcHVSROXQQhXpNhmiVKKcw72Cc0V-U) -- [Guiding Digital's "Gatsby" Playlist](https://www.youtube.com/playlist?list=PLlKF6nzQe39fzz4MHc19l8-PtSqyseqok) -- [Image Processing in Gatsby](https://www.useanvil.com/blog/engineering/gatsby-image-processing/) -- [Improving build times in Gatsby](https://www.useanvil.com/blog/engineering/build-times-in-a-static-site-generated-website/) - -### German - -- [Ultra-schnellen Blog mit React und Gatsby erstellen (German)](https://www.lekoarts.de/blog/ultra-schnellen-blog-mit-react-und-gatsby-erstellen) -- [styled-components in Gatsby nutzen (German)](https://www.lekoarts.de/blog/styled-components-in-gatsby-nutzen) -- [Kategorien & Tags zu Gatsby hinzufügen (German)](https://www.lekoarts.de/blog/kategorien-tags-zu-gatsby-hinzufugen/) -- [Erstelle dein Design System mit Gatsby (German)](https://www.lekoarts.de/blog/erstelle-dein-design-system-mit-gatsby/) -- [Upgrade-Guide: Gatsby v2 (German)](https://www.lekoarts.de/blog/upgrade-guide-gatsby-v-2/) - -### Russian - -- [JAMstack: Как создать свой блог используя Gatsby + Contentful + Netlify (Russian)](https://habr.com/ru/post/439232/) -- [Gatsby.js в деталях (Russian)](https://habr.com/ru/post/442298/) - -### Spanish - -- [Construye y Publica Tu Blog Personal con Gatsby y Netlify (Spanish)](https://medium.com/@n370/construye-y-publica-tu-blog-personal-con-gatsby-y-netlify-parte-1-89804ba63625) - -### Turkish - -- [GatsbyJS ile Modern Web Sitesi | 1. Bölüm (Başlangıç ve Kurulum) (Turkish)](https://medium.com/@raufsamestone/reactjs-ve-gatsbyjs-ile-modern-web-sitesi-1-b%C3%B6l%C3%BCm-ba%C5%9Flang%C4%B1%C3%A7-ve-kurulum-27437d6aaf54) - -### Ukrainian - -- [JAMstack: створюємо блог з Gatsby + Contentful + Netlify (Ukrainian)](https://dou.ua/lenta/articles/creating-blog-with-jamstack/) -- [Детально про Gatsby.js — інструмент для створення складних веб-сайтів (Ukrainian)](https://dou.ua/lenta/articles/gatsbyjs-guide/) - -## Other resources - -### DEV Community - -[The DEV Community Gatsby tag](https://dev.to/t/gatsbyjs) is a place to share Gatsby projects, articles and tutorials as well as start discussions and ask for feedback on Gatsby-related topics. Developers of all skill-levels are welcome to take part. - -### Hashnode Community - -[Gatsby community on Hashnode](https://hashnode.com/n/gatsby) is a place where you can read discussions about Gatsby projects, read articles and tutorials and ask the rest of the Hashnode community Gatsby-related questions. - -### Reddit Community - -[Gatsby community on Reddit](https://www.reddit.com/r/gatsbyjs) is a place where you can read news about Gatsby, interact with other Gatsby developers and get advice on Gatsby-related Questions. - -### FreeCodeCamp Community - -[The FreeCodeCamp News Gatsby tag](https://www.freecodecamp.org/news/tag/gatsby/) is a place where you can write and read substantial articles around Gatsby-related topics. diff --git a/docs/docs/creating-global-styles.md b/docs/docs/creating-global-styles.md deleted file mode 100644 index 4274ca6b2d202..0000000000000 --- a/docs/docs/creating-global-styles.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -title: Creating Global Styles ---- - -Creating global styles for your Gatsby site depends on your [styling approach](/docs/styling/), so we've moved the instructions to the relevant guides: - -- [Global styles with standard CSS files](/docs/how-to/styling/global-css/) (also applies if you're using CSS Modules for component-scoped styles) -- [Global styles with CSS-in-JS library Emotion](/docs/how-to/styling/emotion/) -- [Global styles with CSS-in-JS library Styled-Components](/docs/how-to/styling/styled-components/) diff --git a/docs/docs/how-to/adding-common-features/creating-a-form-in-react.md b/docs/docs/how-to/adding-common-features/creating-a-form-in-react.md deleted file mode 100644 index 56ae7cccae551..0000000000000 --- a/docs/docs/how-to/adding-common-features/creating-a-form-in-react.md +++ /dev/null @@ -1,180 +0,0 @@ ---- -title: Creating A Form In React ---- - -Gatsby is built on top of React. So anything that is possible with a React form is possible in Gatsby. Additional details about how to create React forms can be found in the [React forms documentation](https://reactjs.org/docs/forms.html) (which happens to be built with Gatsby!) - -Start with the following page. - -```jsx:title=src/pages/index.js -import React from "react" - -export default function Home() { - return
Hello world!
-} -``` - -This Gatsby page is a React component. When you want to create a form, you need to store the state of the form - what the user has entered. Convert your function (stateless) component to a class (stateful) component. - -```jsx:title=src/pages/index.js -import React from "react" - -export default class IndexPage extends React.Component { - render() { - return
Hello world!
- } -} -``` - -Now that you have created a class component, you can add `state` to the component. - -```jsx:title=src/pages/index.js -import React from "react" - -export default class IndexPage extends React.Component { - state = { - firstName: "", - lastName: "", - } - - render() { - return
Hello world!
- } -} -``` - -And now you can add a few input fields: - -```jsx:title=src/pages/index.js -import React from "react" - -export default class IndexPage extends React.Component { - state = { - firstName: "", - lastName: "", - } - - render() { - return ( -
- - - -
- ) - } -} -``` - -When a user types into an input box, the state should update. Add an `onChange` prop to update state and add a `value` prop to keep the input up to date with the new state: - -```jsx:title=src/pages/index.js -import React from "react" - -export default class IndexPage extends React.Component { - state = { - firstName: "", - lastName: "", - } - - handleInputChange = event => { - const target = event.target - const value = target.value - const name = target.name - - this.setState({ - [name]: value, - }) - } - - render() { - return ( -
- - - -
- ) - } -} -``` - -Now that your inputs are working, you want something to happen when you submit the form. Add `onSubmit` props to the form element and add `handleSubmit` to show an alert when the user submits the form: - -```jsx:title=src/pages/index.js -import React from "react" - -export default class IndexPage extends React.Component { - state = { - firstName: "", - lastName: "", - } - - handleInputChange = event => { - const target = event.target - const value = target.value - const name = target.name - - this.setState({ - [name]: value, - }) - } - - handleSubmit = event => { - event.preventDefault() - alert(`Welcome ${this.state.firstName} ${this.state.lastName}!`) - } - - render() { - return ( -
- - - -
- ) - } -} -``` - -This form isn't doing anything besides showing the user information that they just entered. At this point, you may want to move this form to a component, send the form state to a Function (see the [form example](https://github.com/gatsbyjs/gatsby-functions-beta/tree/main/examples/basic-form)), or add robust validation. You can also use fantastic React form libraries like [Formik](https://github.com/jaredpalmer/formik) or [Final Form](https://github.com/final-form/react-final-form) to speed up your development process. - -All of this is possible and more by leveraging the power of Gatsby and the React ecosystem! diff --git a/docs/docs/prpl-pattern.md b/docs/docs/prpl-pattern.md deleted file mode 100644 index 8b1124e420840..0000000000000 --- a/docs/docs/prpl-pattern.md +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: PRPL Pattern ---- - -## What is PRPL? - -PRPL is a website architecture developed by Google for building websites and -apps that work exceptionally well on smartphones and other devices with -unreliable network connections. - -https://developers.google.com/web/fundamentals/performance/prpl-pattern/ - -PRPL stands for: - -- **Push** critical resources for the initial URL route using `` - and HTTP/2. -- **Render** initial route. -- **Pre-cache** remaining routes. -- **Lazy-load** and create remaining routes on demand. - -_**Note** HTTP/2 Server Push is a developing server technology and not available on -most hosts just yet._ - -## Gatsby and PRPL - -Gatsby follows the PRPL architectural pattern. Gatsby sites _render_ a static -HTML version of the initial route and then load the code bundle for the page. -Then immediately starts _pre-caching_ resources for pages linked to from the -initial route. When a user clicks on a link, Gatsby creates the new page _on -demand_ on the client. - -This issue written at the start of Gatsby's 1.0 work provides further background -on how Gatsby works to guarantee high performance. - -https://github.com/gatsbyjs/gatsby/issues/431 - -This blog post also covers how we think about performance — -[Web Performance 101—also, why is Gatsby so fast?](/blog/2017-09-13-why-is-gatsby-so-fast/) diff --git a/docs/docs/upgrading-node-js.md b/docs/docs/upgrading-node-js.md index 6a0a648af9725..ad7a6959f0ce2 100644 --- a/docs/docs/upgrading-node-js.md +++ b/docs/docs/upgrading-node-js.md @@ -16,18 +16,18 @@ Run `node -v` in a terminal to see which version of Node.js you have. ```shell node -v -v12.21.0 +v14.19.2 ``` -This example shows Node.js version 12, specifically v12.21.0. +This example shows Node.js version 14, specifically v14.19.2. -## Upgrading from Node.js version 10 +## Upgrading from Node.js version 12 -Node.js version 10 _End-of-life_ date is April 30, 2021. Many of Gatsby's dependencies are updating to Node.js version 12 and above. Gatsby must also update in order to deliver new features and bug fixes more quickly. +Node.js version 12 _End-of-life_ date is April 30, 2022. Many of Gatsby's dependencies are updating to Node.js version 14 and above. Gatsby must also update in order to deliver new features and bug fixes more quickly. -Generally, it's recommended to use [the Node version whose status is _Active LTS_](https://github.com/nodejs/Release#nodejs-release-working-group) (Node 14 at time of writing). +Generally, it's recommended to use [the Node version whose status is _Active LTS_](https://github.com/nodejs/Release#nodejs-release-working-group) (Node 16 currently in summer 2022). -> What about Node.js 13? Stable versions of Node.js are evenly numbered releases - Node.js 8, Node.js 10, Node.js 12 etc. Only use uneven release numbers if you'd like to try cutting-edge and experimental features. +> What about Node.js 15 and other odd release versions? Stable versions of Node.js are evenly numbered releases - Node.js 14, Node.js 16, Node.js 18 etc. Only use uneven release numbers if you'd like to try cutting-edge and experimental features. There are multiple ways to update your version of Node.js depending on how you originally installed it. Read on to find the best approach for you. @@ -37,7 +37,7 @@ This is the recommended way to install a newer version of Node. You will have Homebrew installed on your computer if you [followed part zero of the Gatsby tutorial](/docs/tutorial/part-0/#install-nodejs-for-your-appropriate-operating-system). Homebrew is a program that allows you to install specific versions of Node.js (and other software). -To update from Node.js 10 to Node.js 12 using Homebrew, open a terminal and run the following commands: +To update from Node.js 12 to Node.js 14 using Homebrew, open a terminal and run the following commands: ```shell brew search node @@ -48,15 +48,15 @@ You should see output similar to this: ```shell brew search node ==> Formulae -heroku/brew/heroku-node ✔ llnode node@12 nodebrew -leafnode node ✔ node@10 nodeenv +heroku/brew/heroku-node ✔ llnode node@14 nodebrew +leafnode node ✔ node@12 nodeenv libbitcoin-node node-build node_exporter nodenv ``` -You're interested in the next stable version of Node.js after Node.js 10, which is Node.js 12. Homebrew makes this available in a package called `node@12`. Run: +You're interested in the next stable version of Node.js after Node.js 12, which is Node.js 14. Homebrew makes this available in a package called `node@14`. Run: ```shell -brew install node@12 +brew install node@14 ``` Once that's complete, run: @@ -65,7 +65,7 @@ Once that's complete, run: node -v ``` -to confirm that you've upgraded from Node.js version 10 up to version 12. +to confirm that you've upgraded from Node.js version 12 up to version 14. ### Using a Node.js version management package @@ -84,11 +84,11 @@ nvm in a terminal to see if nvm is installed on your system. If it's installed, you can run: ```shell -nvm install 12 -nvm alias default 12 +nvm install 14 +nvm alias default 14 ``` -to install and use Node.js version 12. +to install and use Node.js version 14. [Check nvm's documentation for further instructions](https://github.com/nvm-sh/nvm). @@ -100,7 +100,7 @@ Run: n ``` -in a terminal to see if n is installed on your system. If it's installed, you can run `n 12` to install and use Node.js version 12. +in a terminal to see if n is installed on your system. If it's installed, you can run `n 14` to install and use Node.js version 14. [Check n's documentation for further instructions](https://github.com/tj/n). @@ -116,4 +116,4 @@ Gatsby takes backwards compatibility seriously and aims to support older version Gatsby also relies on a huge ecosystem of JavaScript dependencies. As the ecosystem moves away from older, unsupported Node.js versions we have to keep pace to ensure that bugs can be fixed and new features can be released. -In this document, you learned how you upgrade from Node.js version 10 to Node.js version 12. +In this document, you learned how you upgrade from Node.js version 12 to Node.js version 14. From 316e3c359cbe628c42f6ff120ff2e2ea9805b3fa Mon Sep 17 00:00:00 2001 From: Sam Bhagwat Date: Fri, 8 Jul 2022 15:33:15 -0700 Subject: [PATCH 14/90] fix(docs): remove pages not linked from anywhere (#36089) fix docs pages not linked from anywhere --- docs/docs/add-a-service-worker.md | 30 --- .../conceptual/choosing-analytics-systems.md | 29 --- docs/docs/glamor.md | 5 - .../docs/how-to/sourcing-data/headless-cms.md | 1 - docs/docs/partnering-with-gatsby.md | 7 - docs/docs/preparing-for-site-launch.md | 11 - .../recipes/gitlab-continuous-integration.md | 60 ------ docs/docs/sourcing-from-seams-cms.md | 189 ------------------ .../answering-it-security.md | 19 -- .../best-practices-for-orgs.md | 14 -- .../component-libraries.md | 34 ---- .../convincing-others.md | 15 -- .../different-organization-types.md | 13 -- .../faster-recruiting.md | 9 - .../first-professional-project.md | 26 --- .../gatsby-for-agencies.md | 9 - .../gatsby-for-companies.md | 35 ---- .../gatsby-for-freelancers.md | 13 -- .../gatsby-in-the-enterprise.md | 77 ------- .../going-gatsby-only.md | 24 --- .../how-gatsby-boosts-career.md | 19 -- .../lower-bids-more-profit.md | 15 -- .../making-components-discoverable.md | 19 -- .../sanitize-your-stack.md | 15 -- .../setting-up-gatsby-without-gatsby-new.md | 69 ------- .../sharing-components-across-websites.md | 20 -- .../using-gatsby-professionally.md | 17 -- .../winning-over-clients.md | 27 --- .../winning-over-content-creators.md | 48 ----- .../winning-over-developers.md | 76 ------- .../winning-over-engineering-leaders.md | 74 ------- .../winning-over-executives.md | 58 ------ .../winning-over-marketers.md | 54 ----- .../winning-over-stakeholders.md | 15 -- 34 files changed, 1146 deletions(-) delete mode 100644 docs/docs/add-a-service-worker.md delete mode 100644 docs/docs/conceptual/choosing-analytics-systems.md delete mode 100644 docs/docs/glamor.md delete mode 100644 docs/docs/partnering-with-gatsby.md delete mode 100644 docs/docs/preparing-for-site-launch.md delete mode 100644 docs/docs/recipes/gitlab-continuous-integration.md delete mode 100644 docs/docs/sourcing-from-seams-cms.md delete mode 100644 docs/docs/using-gatsby-professionally/answering-it-security.md delete mode 100644 docs/docs/using-gatsby-professionally/best-practices-for-orgs.md delete mode 100644 docs/docs/using-gatsby-professionally/component-libraries.md delete mode 100644 docs/docs/using-gatsby-professionally/convincing-others.md delete mode 100644 docs/docs/using-gatsby-professionally/different-organization-types.md delete mode 100644 docs/docs/using-gatsby-professionally/faster-recruiting.md delete mode 100644 docs/docs/using-gatsby-professionally/first-professional-project.md delete mode 100644 docs/docs/using-gatsby-professionally/gatsby-for-agencies.md delete mode 100644 docs/docs/using-gatsby-professionally/gatsby-for-companies.md delete mode 100644 docs/docs/using-gatsby-professionally/gatsby-for-freelancers.md delete mode 100644 docs/docs/using-gatsby-professionally/gatsby-in-the-enterprise.md delete mode 100644 docs/docs/using-gatsby-professionally/going-gatsby-only.md delete mode 100644 docs/docs/using-gatsby-professionally/how-gatsby-boosts-career.md delete mode 100644 docs/docs/using-gatsby-professionally/lower-bids-more-profit.md delete mode 100644 docs/docs/using-gatsby-professionally/making-components-discoverable.md delete mode 100644 docs/docs/using-gatsby-professionally/sanitize-your-stack.md delete mode 100644 docs/docs/using-gatsby-professionally/setting-up-gatsby-without-gatsby-new.md delete mode 100644 docs/docs/using-gatsby-professionally/sharing-components-across-websites.md delete mode 100644 docs/docs/using-gatsby-professionally/using-gatsby-professionally.md delete mode 100644 docs/docs/using-gatsby-professionally/winning-over-clients.md delete mode 100644 docs/docs/using-gatsby-professionally/winning-over-content-creators.md delete mode 100644 docs/docs/using-gatsby-professionally/winning-over-developers.md delete mode 100644 docs/docs/using-gatsby-professionally/winning-over-engineering-leaders.md delete mode 100644 docs/docs/using-gatsby-professionally/winning-over-executives.md delete mode 100644 docs/docs/using-gatsby-professionally/winning-over-marketers.md delete mode 100644 docs/docs/using-gatsby-professionally/winning-over-stakeholders.md diff --git a/docs/docs/add-a-service-worker.md b/docs/docs/add-a-service-worker.md deleted file mode 100644 index 217ea1a1089f3..0000000000000 --- a/docs/docs/add-a-service-worker.md +++ /dev/null @@ -1,30 +0,0 @@ ---- -title: Adding a Service Worker ---- - -## What is a service worker? - -A service worker is a script that your browser runs in the background, separate from a web page, opening the door to features that don't need a web page or user interaction. They increase your site availability in spotty connections and are essential to making a nice user experience. - -It supports features like push notifications and background sync. - -## Using service workers in Gatsby with `gatsby-plugin-offline` - -Gatsby provides an awesome plugin interface to create and load a service worker into your site: [gatsby-plugin-offline](https://www.npmjs.com/package/gatsby-plugin-offline). - -You can use this plugin together with the [manifest plugin](https://www.npmjs.com/package/gatsby-plugin-manifest). (Don’t forget to list the offline plugin after the manifest plugin so that the manifest file can be included in the service worker). - -## Installing `gatsby-plugin-offline` - -`npm install gatsby-plugin-offline` - -Add this plugin to your `gatsby-config.js` - -```javascript:title=gatsby-config.js -plugins: [`gatsby-plugin-offline`] -``` - -## References - -- [Service Workers: an Introduction](https://developers.google.com/web/fundamentals/primers/service-workers/) -- [Service Worker API](https://developer.mozilla.org/en-US/docs/Web/API/Service_Worker_API) diff --git a/docs/docs/conceptual/choosing-analytics-systems.md b/docs/docs/conceptual/choosing-analytics-systems.md deleted file mode 100644 index 12c3fe5d901b7..0000000000000 --- a/docs/docs/conceptual/choosing-analytics-systems.md +++ /dev/null @@ -1,29 +0,0 @@ ---- -title: Choosing Analytics Systems ---- - -Website teams looking to collect insights on user behavior have a wide variety of options. - -**Basic Analytics**, which includes [Google Analytics](/plugins/gatsby-plugin-google-analytics/?=google%20analytics), focus on metrics like page views, sessions, bounce rate, entrances and exits, measured on a per-URL basis and tracked over time. They include UTM parameter tracking, in order to tie visitors to specific paid advertising or email campaigns. - -Basic analytics tools are often used alongside **Tag Managers** ([Google Tag Manager](/plugins/gatsby-plugin-google-tagmanager/?=google%20tag%20manager)), which can let marketers configure which pages load tracking scripts, or define events when certain elements are clicked. - -Google Analytics and Google Tag Manager are the most popular services used on Gatsby sites. But over the last few years, many specialized analytics services have emerged to give deeper insight into visitor behavior. - -Gatsby teams have primarily reached for three categories of tools: - -**Customer Data Platforms** ([Segment](/plugins/gatsby-plugin-segment-js/?=segment), [Rudderstack](/plugins/gatsby-plugin-rudderstack/?=rudderstack)) are tools that help teams manage and orchestrate multiple analytics systems. This includes centralizing data on visitors. - -From an ananlytics perspective, using a CDP allows website teams to replace multiple pixels and trackers with a single tracker, which can significantly improve page performance. (The CDP will ping each service from their systems, rather than the user's browser). CDP includes event replay, so teams can switch marketing tools while preserving historical data. - -- Blog post: [How WaveDirect Used Gatsby, Rudderstack, and Sanity to 4X Leads and Dominate Search Results](/blog/how-wavedirect-used-gatsby-rudderstack-and-sanity-to-4x-leads-and-dominate-search-results/) - -**Product analytics tools** ([Heap](/plugins/gatsby-plugin-heap/?=gatsby-plugin-heap), [Amplitude](/plugins/gatsby-plugin-amplitude-analytics/?=gatsby-plugin-amplitude), [Mixpanel](/plugins/gatsby-plugin-mixpanel/?=gatsby-plugin-mixpanel)) are aimed at giving more granular ways to segment users, measure the rate at which they performed specific actions, and compare groups of users to each other. They can also include advanced analyses, like cohort retention charts. Some (Heap) will auto-track all events, while others (Mixpanel, Amplitude) require users to define and trigger relevant events in code. - -Product analytics tools produce quantitative data -- charts, graphs, and tables -- and are primarily used by demand generation teams to optimize user purchase and conversion rates. - -- Blog post: [Jaxxon: Gatsby + Shopify = Faster Growth](/blog/jaxxon-gatsby-shopify-faster-growth) - -**Session recording tools** ([FullStory](/plugins/gatsby-plugin-hotjar/?=fulls), [Hotjar](/plugins/gatsby-plugin-hotjar/?=gatsby-plugin-hot)) include heatmaps visualizing where users tended to click, and scrollmaps showing engagement drop-offs on landing pages. They overlay users' actions on page screenshots, and let teams track individual visitors' journey through your website. - -Session recording tools collect individualized, qualitative data and tend to be used by designers and UX researchers iterating on page design, layout and copy. In addition, session recordings are often cross-referenced by support teams from their ticketing and chat systems while they are communicating with customers. diff --git a/docs/docs/glamor.md b/docs/docs/glamor.md deleted file mode 100644 index 215f80b865e64..0000000000000 --- a/docs/docs/glamor.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -title: Glamor ---- - -CSS-in-JS library [Glamor](https://github.com/threepointone/glamor) is not actively maintained. The maintainer recommends using [Emotion](/docs/how-to/styling/emotion/). diff --git a/docs/docs/how-to/sourcing-data/headless-cms.md b/docs/docs/how-to/sourcing-data/headless-cms.md index aada4b1e7817b..91999466774bc 100644 --- a/docs/docs/how-to/sourcing-data/headless-cms.md +++ b/docs/docs/how-to/sourcing-data/headless-cms.md @@ -50,7 +50,6 @@ The following CMSs have high popularity among Gatsby users and support key funct | [Prepr CMS](https://prepr.io/) | [guide](https://docs.prepr.io/docs/frontend-integrations/v1/gatsby) | | | | [Forestry](https://forestry.io/) | [guide](/docs/sourcing-from-forestry/) | | | | [Gentics Mesh](https://getmesh.io) | [guide](/docs/sourcing-from-gentics-mesh) | | | -| [Seams-CMS](https://seams-cms.com/) | [guide](/docs/sourcing-from-seams-cms) | | | | [Builder.io](https://www.builder.io/) | [guide](/docs/sourcing-from-builder-io/) | [docs](/plugins/@builder.io/gatsby/) | | | [Flotiq](https://flotiq.com/) | [guide](/docs/sourcing-from-flotiq/) | [docs](/plugins/gatsby-source-flotiq) | | diff --git a/docs/docs/partnering-with-gatsby.md b/docs/docs/partnering-with-gatsby.md deleted file mode 100644 index 09531c058222c..0000000000000 --- a/docs/docs/partnering-with-gatsby.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -title: Partnering with Gatsby ---- - -If you're an organization in the website space -- whether a vendor or an agency -- we'd love to work together with you. - - diff --git a/docs/docs/preparing-for-site-launch.md b/docs/docs/preparing-for-site-launch.md deleted file mode 100644 index b11e4c1db0459..0000000000000 --- a/docs/docs/preparing-for-site-launch.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -title: Preparing Your Site for Launch ---- - -So your Gatsby site is done, and you're ready to share it with the world, **congratulations**! 🎉 - -Before you hit that deploy button though, there are a few things you can do to make sure your site is configured properly to be searchable, shareable, and properly navigable. - -In this section you learn how to add a 404 page for when your users land somewhere unexpected, add search and categorization to your content, and a few other nifty things to ensure your site is crawl-able and index-able to all those fancy bots out there. 🤖 - - diff --git a/docs/docs/recipes/gitlab-continuous-integration.md b/docs/docs/recipes/gitlab-continuous-integration.md deleted file mode 100644 index b059257b81371..0000000000000 --- a/docs/docs/recipes/gitlab-continuous-integration.md +++ /dev/null @@ -1,60 +0,0 @@ ---- -title: "Recipes: Continuous Integration on GitLab" -tableOfContentsDepth: 1 ---- - -Continuous Integration works by pushing small code chunks to your application’s code base hosted in a Git repository, and, to every push, run a pipeline of scripts to build, test, and validate the code changes before merging them into the main branch. -This recipe helps you set up CI/CD on GitLab and automate your production build!. - -## Prerequisites - -- Make sure you have the [Gatsby CLI](/docs/reference/gatsby-cli) installed -- A [GitLab](https://gitlab.com/) account - -## Directions - -1. Create a gatsby site - -```shell -gatsby new {your-project-name} -``` - -2. Change directory and start a development server - -```shell -cd {your-project-name} -gatsby develop -``` - -3. Stop your development server (`Ctrl + C` on your command line in most cases) - -4. Create a `.gitlab-ci.yml` with the following content: - -```yaml -image: node:latest - -stages: - - build - -cache: - paths: - - node_modules/ - -install_dependencies: - stage: build - script: - - npm install - artifacts: - paths: - - node_modules/ -``` - -3. `git push ` -4. Check out your pipeline under the CI/CD option. - -## Additional resources - -- See how you can develop this file into something more real world [GitLab CI/CD Docs](https://docs.gitlab.com/ee/ci/README.html) -- Check this especially to learn how to make your newly build available for a next job - [GitLab Job Artifacts Docs](https://docs.gitlab.com/ee/ci/pipelines/job_artifacts.html) - -- [Getting started with GitLab CI/CD](https://gitlab.com/help/ci/quick_start/README) diff --git a/docs/docs/sourcing-from-seams-cms.md b/docs/docs/sourcing-from-seams-cms.md deleted file mode 100644 index ea1c72c6918dd..0000000000000 --- a/docs/docs/sourcing-from-seams-cms.md +++ /dev/null @@ -1,189 +0,0 @@ ---- -title: Sourcing from Seams-CMS ---- - -[Seams-CMS](https://seams-cms.com) is a [headless CMS](/docs/glossary/headless-cms/) system in which you can manage everything from blog posts to complex data structures like products and translations. After defining your data types, you can add content based on your specific structures. Seams-CMS allows you to localize your content and has an advanced security and workflow model. Your content can be retrieved through different JSON APIs and GraphQL endpoints, which allows you to use your content as you see fit. - -Seams-CMS makes it possible use your content in different scenarios: on your website, in your blogs, and in your apps while managing your content in a single location. - -Creating a Seams-CMS account is free for hobby or small sites. The code samples in this guide assume you're using the demo workspace that is automatically generated when you create a new account. Make sure you add an API key to this workspace in the API key settings. You will need your workspace ID and the (read-only) API key shortly. - -## Setup - -Create a new Gatsby site with the [default starter](https://github.com/gatsbyjs/gatsby-starter-default) and install the source plugin. - -Run this in your terminal: - -```shell -gatsby new seamscms-site -cd seamscms-site -npm install seams-cms-gatsby-source -``` - -### Configuring the source plugin - -Once you have installed the plugin, it's time to configure it. Add the following code to the `gatsby-config.js` file found in the root of your project. - -```javascript:title=gatsby-config.js -module.exports = { - ... - plugins: [ - ... - { - resolve: 'seams-cms-gatsby-source', - options: { - workspace: , - apiKey: , - contentTypes: ['blogpost'], - }, - } - ... - ], - ... -} -``` - -Change `` and `` into the ID of the workspace from your own Seams-CMS account and the newly generated API key inside that workspace. Within the `contentTypes` array, you can list all the IDs of the content types you'd like to import from Seams-CMS into your Gatsby site. For this tutorial, you'll only want to import the `blogpost` content. - -## Checking your connection - -Run `gatsby develop` to fetch your blog posts from Seams-CMS: - -```shell -gatsby develop -``` - -To check if it worked, you can check the GraphQL playground at `http://localhost:8000/___graphql` and look for an `allSeamsCmsBlogpost` section. If found, it means that your blog posts are correctly fetched and stored in the GraphQL layer of Gatsby, ready to be consumed. - -To see what kind of data it holds, try running the following query: - -```graphql -query MyQuery { - allSeamsCmsBlogpost { - edges { - node { - content { - title { - value - } - content { - value - } - author { - value { - content { - name { - value - } - } - } - } - categories { - value { - content { - name { - value - } - } - } - } - } - } - } - } -} -``` - -This will return the title, content, author name, and categories for each blog post. - -## Generating a blog post page - -You can create a site with a single page holding all blog posts. You can do this by creating a template blog index file at `src/templates/blog-index.js` with the following content: - -```javascript:title=src/templates/blog-index.js -import React from "react" - -import Layout from "../components/layout" - -const BlogIndex = ({ pageContext: { blogPosts } }) => ( - - {blogPosts.map(blogPost => ( - <> -

Title: {blogPost.node.content.title.value}

-

- Author: {blogPost.node.content.author.value[0].content.name.value} -

-

{blogPost.node.content.content.value}

-
- - ))} -
-) - -export default BlogIndex -``` - -This template fetches your blog posts from the `pageContext` (passing your data along with this variable), and iterates over all the posts. For each post, it prints the title, the author's name, the content, and whatever you'd like to add that is present in the GraphQL data. For instance, you might also fetch things like tags, categories, snippets, image headers, etc. - -Once you have created your template, connect your data to it! Check out the `gatsby-node.js` file found in your root directory. Note that you will need a GraphQL query that you can generate automatically through the web interface. Select all the fields you want to use in your template and copy/paste this query into the new file: - -```javascript:title=gatsby-node.js -const blogQuery = ` - query MyQuery { - allSeamsCmsBlogpost { - edges { - node { - content { - title { - value - } - content { - value - } - author { - value { - content { - name { - value - } - } - } - } - categories { - value { - content { - name { - value - } - } - } - } - } - } - } - } - } -` -``` - -You're almost there! Next, create and export a `createPages` function in the same `gatsby-node.js` file that will create your page: - -```javascript:title=gatsby-node.js -exports.createPages = async ({ graphql, actions: { createPage } }) => { - const query = await graphql(blogQuery) - - createPage({ - path: `/blogs`, - component: require.resolve("./src/templates/blog-index.js"), - context: { - blogPosts: query.data.allSeamsCmsBlogpost.edges, - }, - }) -} -``` - -Finally, when you run `gatsby develop` again, it should generate a `/blogs` page with your content. You can visit this at `http://localhost:8000/blogs`. - -## Other resources - -For more detailed information about setting up Seams-CMS with Gatsby, see the [Seams-CMS blog](https://blog.seams-cms.com/entry/using-seams-cms-with-gatsbyjs/). diff --git a/docs/docs/using-gatsby-professionally/answering-it-security.md b/docs/docs/using-gatsby-professionally/answering-it-security.md deleted file mode 100644 index a6a26433d1935..0000000000000 --- a/docs/docs/using-gatsby-professionally/answering-it-security.md +++ /dev/null @@ -1,19 +0,0 @@ ---- -title: Answering IT & Security Questions ---- - -At larger companies, such as the Fortune 500, there are Security teams that audit new technologies being used inside the company. - -If security engineers are interested in your project, some talking points that can help answer their questions include: - -- Because Gatsby compiles your site to flat files, rather than having running app servers and databases users are targeting, it reduces the attack surface of the site to outsiders. -- Gatsby adds a layer of indirection which obscures your CMS -- so even if your CMS _is_ vulnerable, bad actors have no idea where to find it. This is in contrast to systems where bad actors can easily locate the admin dashboard at, e.g., `/wp-admin` and attempt to hack in. -- Gatsby lets you serve your site from a global CDN, likely whatever CDN your company is using (e.g. Akamai, Cloudflare, Fastly...), which effectively eliminates the risk of DDoS attacks. - -It's helpful to emphasize to security personnel that these benefits were a factor in why Gatsby was selected for the project. You chose Gatsby, in part, because it is _more_ secure. - -Read about security in Gatsby: [https://www.gatsbyjs.com/blog/2019-04-06-security-for-modern-web-frameworks/](/blog/2019-04-06-security-for-modern-web-frameworks/) - ---- - -**Note:** do you have additional ideas on how to answer IT and security questions for Gatsby projects? We welcome contributions to the Gatsby docs. Find out [how to contribute](/contributing/docs-contributions/). diff --git a/docs/docs/using-gatsby-professionally/best-practices-for-orgs.md b/docs/docs/using-gatsby-professionally/best-practices-for-orgs.md deleted file mode 100644 index 16de8256e132a..0000000000000 --- a/docs/docs/using-gatsby-professionally/best-practices-for-orgs.md +++ /dev/null @@ -1,14 +0,0 @@ ---- -title: Best Practices for Organizations -issue: https://github.com/gatsbyjs/gatsby/issues/14042 ---- - -When you have multiple teams building Gatsby sites, there are some best practices to ensure you're working well at scale. These docs explain those practices. - - - --- - -This is a stub. Help our community expand it. - -Please use the [Gatsby Style Guide](/contributing/gatsby-style-guide/) to ensure your pull request gets accepted. diff --git a/docs/docs/using-gatsby-professionally/component-libraries.md b/docs/docs/using-gatsby-professionally/component-libraries.md deleted file mode 100644 index cf72c5d6185ba..0000000000000 --- a/docs/docs/using-gatsby-professionally/component-libraries.md +++ /dev/null @@ -1,34 +0,0 @@ ---- -title: Creating Component Libraries ---- - -Component libraries are often used in component-based UI systems like React and Vue. They are typically versioned repositories of components. - -IBM's [Carbon Design System](https://www.carbondesignsystem.com/) and Palantir's [Blueprint](https://blueprintjs.com/) are both good examples. - -## Why component libraries - -There are several rationales for creating component libraries. - -- **Create unified design**. In large web properties and web apps, the look and feel can diverge across different sections maintained by different teams. Component libraries are often used to implement a [design system](https://www.designsystems.com/). -- **Avoid reinventing the wheel**. Component libraries include common elements like carousels or dropdowns to avoid the need for individual teams to reimplement these components. - -## Tooling & team setups - -Component libraries are typically maintained by one individual or a design team that acts as a curator; when a website team or feature team needs a component, it is typically available ready for them to use, so they can move faster. - -Component libraries are typically stored in a separate repository. Individual apps or websites then specify in their dependencies (in `package.json`) which version of each component they are using. - -One drawback of using component libraries is the additional complexity of cross-repository dependencies. - -For example, if a feature developer need to change a library component, that developer's workflow typically involves two pull requests; one to the component repository repo to make the changes, and one to the website repository to bump the component version. - -## Different versioning approaches - -There are two different approaches for versioning component libraries. - -The first is to version on globally across the component library. At any given commit, the library has one version number (e.g. `30.3.1`). Any commit updating a component will then bump the version number accordingly. Both Carbon Design System and Blueprint take this approach. - -The second approach is to version each component in the component library. This was used, for example, [by Walmart.com](https://medium.com/walmartlabs/how-to-achieve-reusability-with-react-components-81edeb7fb0e0) -- they built their component library as React components, and created every component as a separate, versioned npm package. - -This approach allows more granularity -- _what if you want an older version of one component, but a newer version of another one?_ -- but requires additional tooling to make developer workflows pleasant. diff --git a/docs/docs/using-gatsby-professionally/convincing-others.md b/docs/docs/using-gatsby-professionally/convincing-others.md deleted file mode 100644 index c299890ac9659..0000000000000 --- a/docs/docs/using-gatsby-professionally/convincing-others.md +++ /dev/null @@ -1,15 +0,0 @@ ---- -title: Convincing Others ---- - -This section of the documentation has a slightly different tenor than the rest of the docs. - -The purpose of the rest of the docs is to help you understand Gatsby. The purpose of this section is to help you explain Gatsby to others. - -Explaining Gatsby well to others, and helping convince them to use it (or to let you use it) is a different kind of problem than becoming a talented Gatsby developer. - -It requires understanding what things those around you value, and helping them understand how Gatsby meets _their_ needs, rather than simply how Gatsby meets yours. - -Gatsby is a transformative technology, and teams using Gatsby have the chance to radically improve the way they design, develop, and deploy websites. As you help others around you understand how Gatsby meets their needs, you facilitate their growth. - -https://twitter.com/ryanflorence/status/1104060348363988992 diff --git a/docs/docs/using-gatsby-professionally/different-organization-types.md b/docs/docs/using-gatsby-professionally/different-organization-types.md deleted file mode 100644 index f5ed501b85227..0000000000000 --- a/docs/docs/using-gatsby-professionally/different-organization-types.md +++ /dev/null @@ -1,13 +0,0 @@ ---- -title: Different Organization Types ---- - -Using Gatsby more is a different kind of problem depending on the type of organization you work in. - -As a freelancer, the most important thing is [helping clients understand](/docs/using-gatsby-professionally/winning-over-clients/) the benefits of Gatsby. - -As an agency, you'll want to show others [how Gatsby helps your agency](/docs/using-gatsby-professionally/using-gatsby-professionally/gatsby-for-agencies/) ship higher quality sites faster and under budget -- and see how Gatsby can contribute to the agency's growth strategy. - -If you're at a company, there are [different strategies for adopting Gatsby](/docs/using-gatsby-professionally/using-gatsby-professionally/gatsby-for-companies/) depending on the type and size of company. - - diff --git a/docs/docs/using-gatsby-professionally/faster-recruiting.md b/docs/docs/using-gatsby-professionally/faster-recruiting.md deleted file mode 100644 index 7fb203f6571b4..0000000000000 --- a/docs/docs/using-gatsby-professionally/faster-recruiting.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -title: Faster Recruiting ---- - -With the rise of React, it's become easier to find talented developers who are skilled in React, than developers who are skilled in various flavors of CMS UI development frameworks. - -Jesus Olivas, the Head of Engineering at WeKnow, a 40-person agency based in San Diego, CA, [explains](https://www.youtube.com/watch?v=tWu1xfF18FI&feature=youtu.be&t=2392): - -> On the agency side of things, it's easier to get a developer that knows React, than finding another developer that knows Drupal theming [and] Twig... diff --git a/docs/docs/using-gatsby-professionally/first-professional-project.md b/docs/docs/using-gatsby-professionally/first-professional-project.md deleted file mode 100644 index 9267cfd113f91..0000000000000 --- a/docs/docs/using-gatsby-professionally/first-professional-project.md +++ /dev/null @@ -1,26 +0,0 @@ ---- -title: First Professional Project ---- - -The most important professional Gatsby project you or your organization will ever ship is your first project. - -Why is that? - -## Shipping Gatsby websites changes the conversation - -- **Shipped means more real.** It's common to talk about exciting new technologies, but much less common to actually see them used in production. Shipping a Gatsby website will make others see Gatsby as an actual choice to consider. -- **Seeing is believing.** Gatsby sites shock people by how fast they are. When someone ships a Gatsby site, other people start asking how they can get sites that fast. - -https://twitter.com/Netlify/status/1011344285529182211 - -- **Discover allies.** Once you ship a Gatsby website, other Gatsby enthusiasts may come out of the woodwork. It's common to want change, but believe it's impossible. When the first Gatsby site ships, others may join you in trying to push for increased Gatsby usage. - -- **Creating a case study.** Once business metrics, such as decreased page load times, increased conversion rates, or decreased bounce rates, are available from the new project launch, you can use these metrics as evidence that Gatsby is worth considering. - -## How to ship your first website - -Gatsby adoption within organizations tends to follow a "bottoms-up" rather than "top-down" approach. - -What that means is that the first usage is typically not driven by executive mandate for a high-profile project. Instead, typically, initial websites are often smaller or have fewer stakeholders. - -This could be one-off campaigns, landing pages, brochure sites, as well as documentation pages or other internal resources. diff --git a/docs/docs/using-gatsby-professionally/gatsby-for-agencies.md b/docs/docs/using-gatsby-professionally/gatsby-for-agencies.md deleted file mode 100644 index ab3f7715aaab3..0000000000000 --- a/docs/docs/using-gatsby-professionally/gatsby-for-agencies.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -title: Using Gatsby Inside Agencies ---- - -There are several aspects of Gatsby that create interesting potential playbooks for agencies using Gatsby, as well as unique benefits to agencies using Gatsby. - - - -The Gatsby blog has a [section on agencies](/blog/tags/agencies/) with additional stories and tips. diff --git a/docs/docs/using-gatsby-professionally/gatsby-for-companies.md b/docs/docs/using-gatsby-professionally/gatsby-for-companies.md deleted file mode 100644 index 20b726f258868..0000000000000 --- a/docs/docs/using-gatsby-professionally/gatsby-for-companies.md +++ /dev/null @@ -1,35 +0,0 @@ ---- -title: Spreading Gatsby in Companies ---- - -Broadly speaking, in terms of overall Gatsby usage, there are two types of organizations which have high receptivity to using Gatsby across the organization. - -First, **software companies** -- more broadly, organizations who primarily build, and generally sell, software. - -Second, **Internet-adjacent organizations** -- non-software organizations whose activities have been significantly affected by the Internet. This includes businesses in areas like travel, retail, consumer finance, media, and so on. - -## Software companies - -Software companies -- whether small startups or large, Fortune 500 companies -- tend to have lots of software developers. - -Moreover, in software companies, technology decisions are often made bottoms-up by developers rather than top-down by executives. - -In these environments, if one developer is excited about Gatsby, they can build company projects in Gatsby. If several developers become excited by Gatsby, they may get a team or a group of teams using Gatsby. - -If you work in this organization, and want your organization to use Gatsby more, you can go a long way simply by [getting other developers excited by Gatsby](/docs/using-gatsby-professionally/winning-over-developers/). - -After that, you'll find winning over [engineering leaders](/docs/using-gatsby-professionally/winning-over-engineering-leaders/), [marketers](/docs/using-gatsby-professionally/winning-over-marketers/) and [executives](/docs/using-gatsby-professionally/winning-over-executives/). is significantly easier. - -## Internet-adjacent organizations - -Internet-adjacent organizations whose activities have been significantly affected by the web, including areas like travel, retail, consumer finance, media, and so on. - -[Digital presence is increasingly important](/blog/2018-10-10-unbundling-of-the-cms) for these businesses, but they often don't often see themselves as software companies. - -Because developers are often not the decision-makers around technologies in these businesses, bottoms-up adoption can be challenging. - -If you're in an organization like this, it's important to: - -- strongly emphasize Gatsby's benefits in language familiar to [marketers](/docs/using-gatsby-professionally/winning-over-marketers/) and [executives](/docs/using-gatsby-professionally/winning-over-executives/). - -- position Gatsby as part of "digital transformation" initiatives your company undertakes. Faced with new competitors taking market share (e.g. Amazon in retail, Expedia and Airbnb in travel, PayPal in consumer finance), these businesses typically emphasize a priority as a company to be more Internet-native. This can provide an opening to pitch Gatsby as a way to do this. diff --git a/docs/docs/using-gatsby-professionally/gatsby-for-freelancers.md b/docs/docs/using-gatsby-professionally/gatsby-for-freelancers.md deleted file mode 100644 index 645ddbd6abe4b..0000000000000 --- a/docs/docs/using-gatsby-professionally/gatsby-for-freelancers.md +++ /dev/null @@ -1,13 +0,0 @@ ---- -title: Gatsby for Freelancers -issue: https://github.com/gatsbyjs/gatsby/issues/21069 ---- - -As a freelancer, the most important thing is [helping clients understand](/docs/using-gatsby-professionally/winning-over-clients/) the benefits of Gatsby. - --- - -This is a stub. Help our community expand it. - -Please use the [Gatsby Style Guide](/contributing/gatsby-style-guide/) to ensure your -pull request gets accepted. diff --git a/docs/docs/using-gatsby-professionally/gatsby-in-the-enterprise.md b/docs/docs/using-gatsby-professionally/gatsby-in-the-enterprise.md deleted file mode 100644 index fe6c0d1cfdfea..0000000000000 --- a/docs/docs/using-gatsby-professionally/gatsby-in-the-enterprise.md +++ /dev/null @@ -1,77 +0,0 @@ ---- -title: Building with Gatsby in the Enterprise ---- - -Some Gatsby advocates may be working inside “enterprise” software development organizations. Others may work at agencies which work closely with such organizations. - -If this describes you, you have unique challenges, but also opportunities, building with Gatsby at your company. - -This guide is designed to help you navigate the terrain in order to effectively advocate for Gatsby within your organization. - -## Common characteristics of enterprises - -People mean different things when they say “enterprise”. Some mean 500-person companies. Other people mean 20,000-person companies. - -When we say “enterprise” we mean large companies with established infrastructural setups -- in-house layers of code, frameworks, processes, and preferred vendors to handle concerns such as hosting, deployments, CDN, etc. - -Other common characteristics include specified procurement processes, standardization on particular technology stacks, changeover at e.g. 5-year intervals, and frequent security audits. Often, enterprises are heavily invested in maintaining and improving existing web properties (“brownfield”) as opposed to creating new ones (“greenfield”). - -## Key benefits of Gatsby for enterprises - -One of the key challenges that enterprises face is keeping their tech stack up to date in order to enjoy productivity and performance benefits, while preventing their tooling setups from degrading into “legacy” code. - -A related challenge is how to continue to attract and retain top engineering talent. - -Surveys at enterprises adopting Gatsby have found that developers there highlight benefits such as: - -**1. The ability to build with modern tools such as React, webpack, and GraphQL.** Adopting more common frameworks, rather than custom in-house tooling, tends to increase developer satisfaction, developer productivity, and the ability to recruit developers. - -**2. The ability to be productive from the start.** Reduced time on dev and build tooling setup / configuration helps developers get going right away. The burden of maintaining high-quality tooling setups is offloaded from internal tooling teams (and managers) to the Gatsby maintainer team. - -### Overcoming obstacles to adoption - -Introducing Gatsby in the enterprise has unique challenges. After watching different sizes and types of enterprises adopt Gatsby, we’ve learned some lessons about how to overcome them. - -Depending on your type of your organization, not all of these challenges may apply to you! - -**Challenge 1: Requirements to integrate with in-house tooling.** Some enterprises require integration with concerns such as those listed above. - -A somewhat complete list of potential areas that may have in-house, standard solutions: authentication, SSO, error logging, deployments, staging, hosting, security, CDN, middleware (data fetching), analytics, and internationalization/localization. - -These requirements tend to be in place to enable marketing, security, analytics, and operations teams to function effectively. - -**Solution 1: Dedicate a few days or weeks to build integrations.** If your company has these requirements, building integrations is quite feasible with Gatsby’s plugin system (and even well-documented, with many examples for each category of integration). - -**Challenge 2: Need for buy-in from executives.** Sometimes new technology adoption in the enterprise requires buy-in from executives who aren’t end users of Gatsby. - -**Solution 2: Potential strategies to get buy-in include building consensus among developers, executing a simple proof of concept, and using the language of execs and managers.** - -Depending on what your enterprise looks like, there can be different strategies for generating buy-in. These strategies can be used separately or together. - -**Build consensus among developers.** If developers in your organization are influential, it can be helpful to build consensus among developers and engineering managers around Gatsby. If other developers aren’t familiar with Gatsby, holding “brown bag lunches” and workshops (going through the Tutorial tends to work well) can build excitement. - -**Execute a simple proof of concept.** Actually having built something with Gatsby often changes the conversation — it becomes less of an abstract concept to others, and more of a concrete possible choice. Choosing a small project and building it with Gatsby can go a long way towards socializing Gatsby in your organization. - -**Use the language of executives and managers.** Executives have different goals and objectives than developers. Read about the [Executive persona](/docs/using-gatsby-professionally/winning-over-executives/) to see how to explain Gatsby in a way that executives find attractive. - -One key strategy can be to align yourself to organization-wide “digital transformation” initiatives, especially if your company is in an industry that is being changed by the Internet (such as retail, travel, consumer goods, content, or hospitality). - -**Challenge 3: Required coordination with third-party agencies.** Some enterprises contract with third-party agencies for a moderate or significant part of their website development. Desires by an enterprise for technology shifts and upgrades often require tight coordination with agency partners. If an enterprise and its agency partners don’t have a strong relationship, coordinating on a switch to Gatsby becomes difficult. - -**Solution 3: Work closely with agency partners to ensure adopting Gatsby helps them, too.** It’s often a benefit to agencies to be familiar with cutting-edge technologies such as Gatsby (and the whole Gatsby stack: React, GraphQL, webpack, etc). It allows them to share their expertise with other client organizations. In addition, it helps them distinguish themselves from their competitors (other agencies). - -Often, there are key individuals at agencies that are excited for personal and professional reasons to spearhead these kinds of projects. Identifying these individuals and working closely with them can unlock key doors and generate momentum to move your Gatsby project forward. - -One key to successfully completing a Gatsby project is having a pre-existing relationship of trust between the enterprise and its agency partners. When this isn’t true — perhaps because of past behavior on the part of one or both parties — any sort of change becomes difficult. - -## Conclusion - -Adopting Gatsby in an enterprise can be more difficult than in small companies. However, there are lasting benefits for the company as well as the individuals guiding the change. - -Because technology choices are more sticky in the enterprise, driving adoption of Gatsby may mean that you drive value for your company in a way that lasts for 5-10 years. - -The benefits your company will derive, such as performance and the ability to rapidly iterate on its consumer-facing web presence and digital footprint, will provide significant benefits in the marketplace. Your company will be more likely to thrive _because of the work you did_. - -Typically, individuals who guide and lead a shift to Gatsby are seen as forward-thinking and as agents of change, which can be [very beneficial for their careers within the company](/docs/using-gatsby-professionally/using-gatsby-professionally/how-gatsby-boosts-career/). In addition, as the Gatsby rollout gains steam and proceeds through the company, they are prime candidates to spearhead the effort. - -For more, see [blog posts on Gatsby in the enterprise](/blog/tags/enterprise). diff --git a/docs/docs/using-gatsby-professionally/going-gatsby-only.md b/docs/docs/using-gatsby-professionally/going-gatsby-only.md deleted file mode 100644 index 6c83513b9931c..0000000000000 --- a/docs/docs/using-gatsby-professionally/going-gatsby-only.md +++ /dev/null @@ -1,24 +0,0 @@ ---- -title: Going Gatsby-Only ---- - -Some agencies and freelancers have decided that in order to unify their business, they will _only_ build sites on Gatsby and turn down clients or projects where it's not possible to use Gatsby. - -Some of the benefits such agencies list include: - -- reduced knowledge silos -- a unified technology stack -- consistent fast development -- no time ever spent on performance optimization -- ability to build projects across CMS-es -- a more cohesive team. - -One example of this is [Narative.co](https://www.narative.co/), based in Montreal. Narative [wrote a blog post](/blog/2018-06-18-why-narative-loves-gatsby/) laying out some of these benefits: - -> Gatsby allows our team to use the powerful React API when creating page based websites with almost no drawbacks. All the principles and techniques we’ve learned from using React for the last few years can be leveraged with Gatsby. This has enabled us to create a team that is extremely dynamic and cohesive without the worry of creating silos or losing knowledge across teams. Our team is able to learn once, write everywhere. With an engineering team that’s familiar with React and Gatsby we’re able to tackle more problems faster, which is highly beneficial to our partners and the services we offer. - -> Gatsby does not only allow us to deliver fast websites, it has also sped up our development time. The developer experience is another focus of the team behind Gatsby - and it shows. Features such as live reload are ready to go at when you start a new project. There’s no need to set up a custom webpack configuration as the basics are completed for you. Building your website and deploying is also carefully thought out by Gatsby and often requires running a single command and using one of the many integrations for hosting. Furthermore, the documentation is comprehensive and has plenty of content from introductory guides to complex use cases. This has been amazing for training and onboarding new members of our team, especially if they’re already familiar with React. - -> Many popular CMS tools are tightly coupled to their source of data. Gatsby offers a clear separation between the data and view layer building on top of the Headless CMS principles. The advantage for Narative is that we can develop without CMS lock-in such as WordPress. If our team decides to go with a new view layer the migration would be less painful than migrating all the data as well. Often times flexibility in software means more complexity to manage but in this case the flexibility is in the right spots where it reduces complexity. - -> We pass this flexibility on to our partners. They are able to manage their data while our team is able to deliver an excellent product on top of their existing infrastructure. This has made our solutions to revamping legacy projects even stronger than before. diff --git a/docs/docs/using-gatsby-professionally/how-gatsby-boosts-career.md b/docs/docs/using-gatsby-professionally/how-gatsby-boosts-career.md deleted file mode 100644 index 0574b63015cd5..0000000000000 --- a/docs/docs/using-gatsby-professionally/how-gatsby-boosts-career.md +++ /dev/null @@ -1,19 +0,0 @@ ---- -title: How Gatsby Can Boost Your Career ---- - -If you're a developer, and you've come to this section looking for tips about spreading Gatsby in your organization, your main motive is probably the ability to work more with a tool you love. - -One, unintended, side effect: this is also good for your career. - -As you ship Gatsby sites and get [other developers](/docs/using-gatsby-professionally/winning-over-developers/), [engineering leaders](/docs/using-gatsby-professionally/winning-over-engineering-leaders/), [marketers](/docs/using-gatsby-professionally/winning-over-marketers/) and [executives](/docs/using-gatsby-professionally/winning-over-executives/), and [clients](/docs/using-gatsby-professionally/winning-over-clients/) excited about Gatsby, you'll notice that you gain visibility, a reputation for driving results and business value. - -> Some insight on driving results forward from prominent React developer, Ryan Florence: https://twitter.com/ryanflorence/status/1104060348363988992 - -In general, great engineering career opportunities often lie in developing expertise in new, rapidly emerging systems and technologies -- there are fewer established domain experts in these fields, room to carve out a personal brand as an expert, and an ever-growing demand for expertise. - -For an inspiring story on how Gatsby has already transformed someone's career, read our [interview with Ahmed Alahmady](/blog/2019-05-03-how-gatsby-helped-jump-start-my-engineering-career/) on the Gatsby blog. - ---- - -**Note:** do you have more ideas on how Gatsby can boost your career? We welcome contributions to this page. Find out [how to contribute](/contributing/docs-contributions/). diff --git a/docs/docs/using-gatsby-professionally/lower-bids-more-profit.md b/docs/docs/using-gatsby-professionally/lower-bids-more-profit.md deleted file mode 100644 index 17ec7ce902f37..0000000000000 --- a/docs/docs/using-gatsby-professionally/lower-bids-more-profit.md +++ /dev/null @@ -1,15 +0,0 @@ ---- -title: Lower Bids, More Profit ---- - -Many agencies use a different pricing model for bidding Gatsby websites that enables them to make more money and expand their business. - -After identifying projects that are a good fit for Gatsby, they will bid _significantly under_ a typical bid for a project of that time. Because Gatsby enables the team to work faster, they've still able to make standard profits on the project while growing their business and creating happy clients. - -Ben Robertson, of the 80-person Mediacurrent agency, [explains this strategy](https://www.youtube.com/watch?v=QiocnDGnKfs&feature=youtu.be&t=1145) in the context of Mediacurrent's work on the citysprings.com website for the city of Sandy Springs, GA: - -> "This was an experimental project for us. We had done decoupled Drupal before, but this was our first project as a team that was using Gatsby and it was a budget that was actually significantly under what we would charge for a full Drupal 8 build. And that was scary! - -Not only was the team able to deliver the project on time and under budget, but the client was so happy they were able to [get additional work immediately](https://www.youtube.com/watch?v=QiocnDGnKfs&feature=youtu.be&t=1531): - -> Because they saved a significant portion of the money that they had already set aside, they [told us], "Hey, you guys just saved us a bunch of money, and also we would like some new features, so can we please pay you some money to build those features for us?" diff --git a/docs/docs/using-gatsby-professionally/making-components-discoverable.md b/docs/docs/using-gatsby-professionally/making-components-discoverable.md deleted file mode 100644 index 934943f11a351..0000000000000 --- a/docs/docs/using-gatsby-professionally/making-components-discoverable.md +++ /dev/null @@ -1,19 +0,0 @@ ---- -title: Making Components Discoverable -issue: https://github.com/gatsbyjs/gatsby/issues/14042 ---- - -Code reuse is a useful advantage of the modularity provided by components. Discoverability is a key factor for sharing reusable components between developers and websites. - -In larger organizations using Gatsby, it becomes more important for different teams to be able to browse components used by other teams, in order to avoid reinventing the wheel. Making components discoverable also helps in creating a component design system that helps keep your UX/UI consistent across websites and applications. - -Shared components can be organized and made discoverable in a [shared component hub like bit.dev](https://bit.dev/components) to search, visualize, interact with and consume. Teams can share and discover components, use them in different projects, suggest updates and stay in sync. - -If using additional repositories and libraries to share components, tools like [StoryBook](/docs/how-to/testing/visual-testing-with-storybook/) and [Styleguidist](https://github.com/styleguidist/react-styleguidist) can help develop and visualize components in isolation, creating a visual documentation portal for shared components. - ---- - -This is a stub. Help our community expand it. - -Please use the [Gatsby Style Guide](/contributing/gatsby-style-guide/) to ensure your -pull request gets accepted. diff --git a/docs/docs/using-gatsby-professionally/sanitize-your-stack.md b/docs/docs/using-gatsby-professionally/sanitize-your-stack.md deleted file mode 100644 index 67a3372935c2b..0000000000000 --- a/docs/docs/using-gatsby-professionally/sanitize-your-stack.md +++ /dev/null @@ -1,15 +0,0 @@ ---- -title: Sanitize Your Stack ---- - -Websites come in a thousand different flavors. Timeframes, budgets, interactivity requirements, and content systems can vary wildly from one project to the next. - -This variety puts agency website teams between a rock and a hard place. They often have to maintain frontends built in multiple development systems, stretching their developers’ skill sets. Implementing the same dropdown in five different frameworks can be a huge headache. But what’s the alternative — turn down good client projects? - -To add to the difficulty, when your UI development framework is coupled to your client’s CMS backend, it doesn’t just cause technical problems; it causes people problems. It makes your team’s staffing plans dependent on specific projects. It hamstrings your ability to respond to changing client requirements by shifting resources around. - -Gatsby solves this -- because Gatsby pulls your data from wherever it lives and exposes it in a uniform GraphQL interface, agency teams can build all their UIs in React — no matter where their content is coming from. - -Gatsby lets agencies stop reinventing the wheel and makes agency developers more productive. Teams can use the best tool for the job, without creating a hodgepodge of technologies to maintain. - -Sanitize your stack, with Gatsby. diff --git a/docs/docs/using-gatsby-professionally/setting-up-gatsby-without-gatsby-new.md b/docs/docs/using-gatsby-professionally/setting-up-gatsby-without-gatsby-new.md deleted file mode 100644 index fec90e4e5c421..0000000000000 --- a/docs/docs/using-gatsby-professionally/setting-up-gatsby-without-gatsby-new.md +++ /dev/null @@ -1,69 +0,0 @@ ---- -title: Setting up a Gatsby Site Without the `gatsby new` Command ---- - -There are many Enterprise level companies that maintain an internal clone of the npm registry for security purposes. If you work for such a company, you may find that you are able to successfully run `npm install -g gatsby-cli` but cannot run the `gatsby new ` as the `gatsby new` command clones a repo from a public GitHub repository. Many companies block public GitHub, which will cause the `gatsby new` command to fail. Not to worry, though, you can set up a new Gatsby site without the `gatsby new` command with a few quick steps. - -## Preparing your environment - -To get started with Gatsby, you’ll need to make sure you have the following software tools installed: - -1. [Node.js](/docs/tutorial/part-0/#install-nodejs-for-your-appropriate-operating-system) -2. [Gatsby CLI](/docs/tutorial/part-0/#using-the-gatsby-cli) - -For step-by-step installation instructions and detailed explanations of the required software, head on over to the [Gatsby tutorial](/docs/tutorial/part-0/). - -After your developer environment is set up, you'll want to set up a new project folder. - -```shell -mkdir my-new-gatsby-site -cd my-new-gatsby-site -``` - -Next, you'll need to set up npm within your project. - -```shell -npm init -``` - -Fill out the prompts for the `package.json` file that is generated. If you'd like to skip that, you can run `npm init -y` and a pre-filled `package.json` will be generated for you. - -Now, you'll need to install the necessary packages that Gatsby relies on to work its magic. - -```shell -npm install gatsby react react-dom -``` - -Next, you'll add a `src` directory and a `pages` directory inside your project. - -```shell -mkdir src -cd src -mkdir pages -``` - -Inside the pages directory, you'll make an `index.js` file that exports a React component. - -```shell -cd pages -touch index.js -``` - -Now, add some React code to your `index.js` file as a starting point for your project. - -```jsx:title=src/pages/index.js -import React from "react" - -export default function Home() { - return

Hello Gatsby!

-} -``` - -Finally, go back to the root of your project and run the `gatsby develop` command to start a development server and begin coding. - -```shell -cd ../../ -gatsby develop -``` - -And that's it! You should now have your initial page running on `http://localhost:8000` with a GraphiQL IDE running on `http://localhost:8000/___graphql`. From here, you can follow the rest of the [Gatsby tutorial](/docs/tutorial/part-0/#set-up-a-code-editor) starting with setting up a code editor to get the full experience of what Gatsby can offer. diff --git a/docs/docs/using-gatsby-professionally/sharing-components-across-websites.md b/docs/docs/using-gatsby-professionally/sharing-components-across-websites.md deleted file mode 100644 index 8ce788b48a475..0000000000000 --- a/docs/docs/using-gatsby-professionally/sharing-components-across-websites.md +++ /dev/null @@ -1,20 +0,0 @@ ---- -title: Sharing Components Across Websites -issue: https://github.com/gatsbyjs/gatsby/issues/14042 ---- - -One of the benefits of multiple teams using Gatsby within your organization is the ability to share React components across different websites. - -There are several strategies here. - -**Component libraries** are a cleaner and purer approach, but often requiring additional tooling or causing some changes to require pull requests to multiple. - -Alternately, teams can implement **systems for component discoverability**, such as [Storybook](https://github.com/storybookjs/storybook) or [Styleguidist](https://github.com/styleguidist/react-styleguidist), on a per-site basis and copy-paste desired code across repositories. - -To avoid copy-pasting and reuse components instead you can use **component-sharing tools** such as [Bit](https://github.com/teambit/bit) to reuse and sync components between websites. - - - ---- - -**Note:** do you have additional ideas on sharing components across websites? We welcome contributions to the Gatsby docs. Find out [how to contribute](/contributing/docs-contributions/). diff --git a/docs/docs/using-gatsby-professionally/using-gatsby-professionally.md b/docs/docs/using-gatsby-professionally/using-gatsby-professionally.md deleted file mode 100644 index 537a708b4f6ac..0000000000000 --- a/docs/docs/using-gatsby-professionally/using-gatsby-professionally.md +++ /dev/null @@ -1,17 +0,0 @@ ---- -title: Using Gatsby Professionally ---- - -As a Gatsby developer and enthusiast, you may be interested in how you can spend more of your time professionally building with Gatsby. - -You may see problems happen around you that you know Gatsby could solve, and want others to adopt Gatsby so they don't encounter them in the future. You may be interested in driving business goals, such as growing your organization or increasing revenue. Or, you may simply love building with Gatsby and want to do it more. - -This section of the documentation is aimed to help you spend more time as a Gatsby developer by giving you the tools to spread Gatsby within your organization or convince clients that Gatsby is the right tool for them. - -It includes resources for how to explain Gatsby to different stakeholders, such as other developers, engineering leaders, marketers, executives, and clients. - -It also includes resources that help your teams develop more effectively at scale -- when there are multiple developers on a project or multiple projects in the organization. - -Finally, it includes resources for you about how Gatsby can help you advance professionally within your career -- whatever your goals and ambitions are. - - diff --git a/docs/docs/using-gatsby-professionally/winning-over-clients.md b/docs/docs/using-gatsby-professionally/winning-over-clients.md deleted file mode 100644 index 2c82338e05a5a..0000000000000 --- a/docs/docs/using-gatsby-professionally/winning-over-clients.md +++ /dev/null @@ -1,27 +0,0 @@ ---- -title: Winning Over Clients -issue: https://github.com/gatsbyjs/gatsby/issues/14040 ---- - -The top priority of most clients is that the website is shipped to their standard of quality, on time, and under budget. - -In addition, they usually want to be able to use familiar CMS-based workflows to create, edit, and publish content. - -Some benefits that you can use to pitch Gatsby to clients include: - -- Works with their CMS -- Fast development speed ensures project will be on time -- Ease of making development changes helps keep project under budget -- Lower hosting cost helps keep project under budget -- Fast performing websites which reduce page load and response time -- Supports creation of highly scalable and dynamic apps -- Rich plugin ecosystem which helps tackle complex code - -[This one-pager](/gatsby-one-pager.pdf) may also be useful for clients -- it explains Gatsby in their language. - --- - -This is a stub. Help our community expand it. - -Please use the [Gatsby Style Guide](/contributing/gatsby-style-guide/) to ensure your -pull request gets accepted. diff --git a/docs/docs/using-gatsby-professionally/winning-over-content-creators.md b/docs/docs/using-gatsby-professionally/winning-over-content-creators.md deleted file mode 100644 index cfe1d7eb79f96..0000000000000 --- a/docs/docs/using-gatsby-professionally/winning-over-content-creators.md +++ /dev/null @@ -1,48 +0,0 @@ ---- -title: "Winning Over Content Creators" ---- - -If you spend much time building marketing and other informational sites, you're probably used to leaving the day-to-day updates and maintenance of the site to content creators. For this reason, content creators are highly influential stakeholders in any decision around changes to content management tools and the frameworks/tech stack that interacts with those tools. The performance advantages of Gatsby and ability to pull content from any source are certainly enough to get them interested, but here are some talking points and resources to help convince them that Gatsby is right for their site. - -Some specific things that content creators care about include: - -- **Building efficient and clear workflows** Content creators often have to manage lots of different projects with lots of little deadlines. As a result, they often put a lot of work into establishing easy, repeatable patterns for completing their tasks. This frees up their time and energy for creating better content and meeting strategic goals. -- **Search engine optimization (SEO)** Content creators want people to be able to find their content! One of the best ways to do this is understanding how content is crawled by search engines and following SEO best practices. -- **Understanding their audience** Web content is meant to engage visitors, educate them, move them towards certain calls to action, and persuade them that you understand and can meet their specific needs. Understanding your visitors' specific needs and interests is critical to creating engaging content. -- **Easy site management** Publishing content to a website is generally the last step in any content project. If that step becomes a bottleneck or barrier for content creators who think they're in the home stretch, that can be extremely frustrating. It's even more frustrating if that project is a time-sensitive, last-minute product announcement or other high-stakes update. - -## Basic explanation - -Here’s an example of a basic explanation of Gatsby for content creators: - -> Gatsby is a framework for building modern websites and applications. It can pull data into your site from any and all CMSs or other sources you currently use. Gatsby sites have built-in performance optimization and other web best practices, and organizations that have moved their sites to Gatsby have seen significant improvements in organic search traffic and lead conversion. - -## Specific Benefits - -Content creators may be curious about how common content management systems can fit together with Gatsby, how it impacts user engagement, and how Gatsby's performance advantages can improve the visibility of their content. - -### Use the tools you already know and love - -> Gatsby can be configured to work with many CMS platforms and databases out of the box, including the CMS and tools you're already using. If you love using your current CMS and have carefully crafted workflows for your specific needs and tasks, great! Gatsby doesn’t decide your workflow, you do. - -### Better audience engagement and lead conversion - -> Site speed and performance has a huge impact on sales and customer engagement. A [recent Akamai study](https://www.akamai.com/uk/en/about/news/press/2017-press/akamai-releases-spring-2017-state-of-online-retail-performance-report.jsp) showed that a 100 millisecond delay in a site’s load time hurt conversion rates by 7%, and 53% of mobile users will leave pages that take more than 3 seconds to load. Gatsby sites are consistently 2-3x faster than similar sites built with different tools, and site owners have seen their [lead generation increase by up to 60% after transitioning to Gatsby](/blog/2018-11-16-youfit-case-study/). - -### Improved search traffic - -> Site speed is one of the factors Google uses in its search ranking algorithm, and slow site speeds can have a negative snowball effect on your SEO. Slower sites take longer to be crawled and indexed by search engines, they have higher bounce rates, and lower conversion rates, all of which will hurt your rankings. Gatsby sites have [built-in web and mobile performance optimizations](/blog/2018-11-07-gatsby-for-apps/#why-gatsby-for-apps). It actually takes more effort to make a Gatsby site perform badly. Learn more about [the impact of page speed on SEO on Moz](https://moz.com/learn/seo/page-speed). - -### Choose the best tools for your content and your users - -With Gatsby, you can pick whichever tools work best for your site and your content - choose the best CMS, the best e-commerce tool, the best video hosting, and build your own content stack without worrying about unreliable plugins or the politics of software partnerships. Gain full control over how your content gets delivered to your audience. - -## Conclusion - -Gatsby offers unparalleled flexibility so you can have the benefits of Gatsby without compromising the efficiency and power of your preferred content tools. Content creators can keep their existing workflows and have plenty of room to grow their site in exciting new ways, empowering them to do what they do best: create captivating content for their audience. - -## Other resources - -- If your content creator is also a marketer, the doc on [winning over marketers](/docs/using-gatsby-professionally/winning-over-marketers) could also be useful. -- If you want to read up on how to integrate Gatsby with different CMS platforms, the doc on [headless CMSs](/docs/how-to/sourcing-data/headless-cms) is a great starting point. Another relevant article is ["Building Sites with Headless CMSs"](/blog/2018-2-3-sites-with-headless-cms/) by Shannon Soper. -- Further reading could include the two-part blog by Michelle Gienow ["Delicious Simplicity ❤️ Gatsby: Building Happily Ever After"](/blog/2019-06-08-delicious-simplicity-case-study-part-1/) and ["Sharing the Gatsby Love with Content Creators"](/blog/2019-09-18-delicious-simplicity-case-study-part2/) by Linda Watkins. diff --git a/docs/docs/using-gatsby-professionally/winning-over-developers.md b/docs/docs/using-gatsby-professionally/winning-over-developers.md deleted file mode 100644 index 625ee0ddd1de0..0000000000000 --- a/docs/docs/using-gatsby-professionally/winning-over-developers.md +++ /dev/null @@ -1,76 +0,0 @@ ---- -title: Winning Over Developers ---- - -Developers are often the primary evangelists of Gatsby because they are the primary users of the framework. If you're a developer, you may find that talking to other developers about why _you_ like Gatsby is enough to get them interested. Here are some talking points to help support your conversations with developers. - -Some things that developers care about include: - -- **Site Performance** Building sites that are fast and that stay fast as new tools and technology get incorporated. -- **Working with the best tools and technologies** Getting to use new technologies and having the flexibility to pick the right tools for the job. -- **Not getting bogged down in configuration and setup** These things are often time consuming, frustrating, and prevent developers from getting to focus on the work they actually care about. -- **Developing as efficiently and effectively as possible** The more things can be streamlined, automated, and/or simplified, the better. - -## Basic explanation - -Here's an example of a basic explanation of Gatsby for developers: - -> Gatsby is a free, open-source, React-based framework for building fast websites and applications. Gatsby streamlines the setup and configuration of your build, it can pull data into your UI from any and all of your sources, and amazing performance and current web best practices are built into Gatsby sites. - -## Specific benefits - -Gatsby has many benefits that give developers the freedom to build great websites and use the skills and tools they love. Some specific talking points are listed below. - -### Site speed - -> Gatsby was built with performance in mind from its inception, and Gatsby sites are consistently 2-3x faster than similar sites built with other tools – pages load in milliseconds rather than seconds. Gatsby's automated performance optimizations include pre-fetching resources, code splitting, statically generating HTML, and Google's [PRPL Pattern](/docs/prpl-pattern/). If you want to take a deeper dive into Gatsby's performance features, check out [Web Performance 101 – also, why is Gatsby so fast?](/blog/2017-09-13-why-is-gatsby-so-fast/). - -### Modern web tools - -> Gatsby sites are built with React - currently the most popular framework for developing web apps, and data can be pulled into your React components via GraphQL. Gatsby is also built to pull data from any source so you can pick the best tool for each job and function your site needs to perform. Pull data from the best content management tools, the best e-commerce tools, whatever databases you're using, and more. - -### Plugins and features - -> Just about every feature you could want for building a state-of-the-art website or web app is available through Gatsby. If the feature isn't already built in, there's an extensive library of available plugins. There's a list of features, their availability, and comparisons with other site building options available on the [Features page](/features/). The complete list of currently available plugins can be found on the [Plugins page](/plugins/). - -### Data integration - -> Gatsby supports data integration from sources like CMSs, SaaS services, APIs, databases, and other data sources of all flavors. Gatsby can also pull unstructured data directly into pages using API calls specifically crafted for this purpose, this works great with smaller websites which can later be scaled up effortlessly if necessary. This makes Gatsby stand out from most other static site generators. - -### Community and documentation - -> You'd be hard-pressed to find a more active and welcoming open-source community than Gatsby. Documentation is thorough, detailed, and doesn't make any assumptions about your experience-level going in. The Gatsby team is committed to transparency and working in the open so the community can follow and participate in Gatsby's development and direction. Everyone is encouraged to contribute to Gatsby and every contribution is valued. - -### Brings focus to the frontend - -> A benefit that frequently comes up in discussions of Gatsby is how it helps bring more focus to frontend development and a clearer division between frontend and backend tasks. Complicated tooling and configuration can consume a lot of development time and can pull frontend developers away from doing what they do best. Because Gatsby requires minimal tooling and configuration, frontend developers can spend more time making great UI's and backend developers can focus on adding the features and integrations that make your product better. - -## Common concerns - -You may find that many of your developer friends and colleagues have some questions or concerns about Gatsby. Here are some common examples and responses you can provide to help alleviate those concerns. - -### Our site uses a lot of dynamic content and components. Isn't Gatsby a static site generator? - -> It is, but there's more to it. Gatsby statically generates HTML content using React DOM and server-side APIs – it's an important part of how Gatsby delivers exceptional speed and better security. However, this static HTML content can then be enhanced with client-side JavaScript via React hydration. You can learn more about this in Dustin Schau's blog post [Beyond Static: Building Dynamic apps with Gatsby](/blog/2018-10-15-beyond-static-intro/). - -### Do I have to learn GraphQL to use Gatsby? - -> GraphQL is used to pull the content from all your different sources into Gatsby in a consistent, unified way. You don't have to use GraphQL to do this, but learning GraphQL will equip you to create new integrations more easily (and it may not be as challenging as you think). Amberley Romo digs into some of the pros and cons in her post on [Using Gatsby without GraphQL](/blog/2018-10-25-using-gatsby-without-graphql/). - -### Our content team needs to be able to make site updates, but they're not super technical. Are they going to be able to work with a Gatsby site? - -> Gatsby can pull content from any different source, including all-in-one CMSs like WordPress and Drupal as well as the various headless CMSs out there, so your content team can work with whichever content editor suits their needs and preferences, including the CMS they're already using. - -## Case studies - -Sometimes the most effective way to get a developer's attention is to show them examples of real sites and dev teams using Gatsby. Here are some case studies you might want to share: - -- [Delicious Simplicity <3 Gatsby: Building Happily Ever After](/blog/2019-06-08-delicious-simplicity-case-study-part-1/) -- [Beyond Static: Haptic Media Uses Gatsby to Build a Dynamic Web App](/blog/2019-02-05-hapticmedia-case-study/) -- [IBM Uses Gatsby to Manage Enterprise-Level Content](/blog/2018-12-17-ibm-case-study/#big-company-big-website) - -For even more examples of Gatsby sites, [check out the Showcase](/showcase/) - -## Conclusion - -Many developers like being early adopters when exciting new tools come along, but they are just as likely to be skeptical when it seems like that new tool might be just another "flavor of the month." Luckily, Gatsby stands up to scrutiny. The information provided here is a great starting point for conversations with developers about Gatsby. From there, encourage developers to check it out for themselves. That may be all the convincing they need. diff --git a/docs/docs/using-gatsby-professionally/winning-over-engineering-leaders.md b/docs/docs/using-gatsby-professionally/winning-over-engineering-leaders.md deleted file mode 100644 index 0c15a7ea877e6..0000000000000 --- a/docs/docs/using-gatsby-professionally/winning-over-engineering-leaders.md +++ /dev/null @@ -1,74 +0,0 @@ ---- -title: Winning Over Engineering Leaders ---- - -Engineering leaders and managers typically make decisions about how to build the sites and products that fall under their ownership. These decisions are based on things like cost, complexity, team needs, business requirements, and the success metrics they are accountable for. - -These stakeholders need to be convinced that Gatsby can offer them the balance of efficiency, results, and low risk that will satisfy their team, their executives, and their users. - -Some specific things that engineering leaders and managers care about include: - -- **Performance and security** No one wants their product to be noticeably slow or the source of a major security vulnerability. Getting these two key features right can be complicated, even for experienced engineering teams. -- **Flexibility and scalability** Managers want to pick tools that can grow with their user base and with their long-term product roadmap. They do not want to choose a technology that will limit their growth or risk having to start over if (and when) that tool proves to be too rigid. -- **Not reinventing the wheel** While many managers appreciate and sympathize with their team's or colleagues' desire to try out cool new tech, they'd rather not spend valuable time and resources on a new thing when the job is already being done to their satisfaction. As the saying goes, "If it ain't broke, don't fix it." -- **Helping their team work smarter** New tech is interesting to managers when it removes obstacles for their team, helps them be more effective, and/or reduces [yak shaving](https://www.hanselman.com/blog/YakShavingDefinedIllGetThatDoneAsSoonAsIShaveThisYak.aspx). However, these benefits have to outweigh the cost of integrating a new tool and/or re-implementing an existing product. - -## Basic explanation - -Here's an example of a basic explanation of Gatsby for engineering leaders and managers: - -> Gatsby is a free, open-source framework for building websites and applications. It's extremely developer-friendly and streamlines the setup and configuration of your build. Gatsby can pull data into your UI from any and all of the sources you currently use; and exceptional performance, added security, and current web best practices are built into Gatsby so your team can focus on delivering an exceptional experience for your users and customers. - -## Specific benefits - -Gatsby has many benefits that will appeal to engineering leaders and help them meet their goals. Some specific talking points are listed below. (A lot of these benefits are also covered in Preston So's article [Enterprise Gatsby: How to Reduce Your Digital Total Cost of Ownership (TCO) with Gatsby](/blog/2019-05-15-enterprise-gatsby-how-to-reduce-your-digital-total-cost-of-ownership-with-gatsby/), which is definitely worth sending to your engineering leaders.) - -### Performance - -> From its inception, Gatsby was built to optimize performance. Gatsby sites are consistently 2-3x faster than similar sites built with other tools, with pages loading in milliseconds rather than seconds. Gatsby's automated performance optimizations include pre-fetching resources, code splitting, progressive image loading, statically generating HTML, and Google's [PRPL Pattern](/docs/prpl-pattern/). If you want to take a deeper dive into Gatsby's performance features, check out Kyle Mathews's article, [Web Performance 101 – also, why is Gatsby so fast?](/blog/2017-09-13-why-is-gatsby-so-fast/) or Dustin Schau's article, [Behind the Scenes: What makes Gatsby Great](/blog/2019-04-02-behind-the-scenes-what-makes-gatsby-great/). - -### Security - -> Gatsby is a modern site generator that outputs static HTML pages at build time. That means you don't need a database or content management system running on your public servers, both of which are common sources of security breaches. Static content is much easier to secure. This does not, by any means, eliminate _all_ security vulnerabilities for Gatsby sites, but they will be significantly reduced. Learn more about Gatsby security in Alex Moon's article on [Security for Modern Web Frameworks](/blog/2019-04-06-security-for-modern-web-frameworks/) and the Docs page on [Answering IT & Security Questions](/docs/using-gatsby-professionally/using-gatsby-professionally/answering-it-security/). - -### Scalability - -> The scalability of your traffic handling, product complexity and features, and your development process will all benefit from Gatsby. Gatsby sites can be entirely deployed to a CDN, effectively eliminating your risk of downtime due to traffic spikes. If your site or application needs to support new functionality, Gatsby can pull content from as many sources as you need. With other tools, integrations with external resources are an afterthought and a common source of frustration for developers, causing project delays and outages. Gatsby streamlines the integration process, eliminating many of these headaches and points of failure. Finally, Gatsby equips dev teams to make their own components that can be reused across projects with minimal reworking, giving them more time to work on new features. - -### Lower costs - -> CDN hosting for static sites is much, _much_ less expensive than traditional hosting costs. Read more about this here: [Enterprise Gatsby: How to Reduce Your Digital Total Cost of Ownership (TCO) with Gatsby](/blog/2019-05-15-enterprise-gatsby-how-to-reduce-your-digital-total-cost-of-ownership-with-gatsby/). You'll also save money on team resources as your developers will spend much less time working on performance optimization and configuring integrations. Many managers have also found it easier and less expensive to recruit for Gatsby projects because they don't require specialized CMS skills or the advanced expertise needed to handle complex tooling and development environments. - -### Improved development process - -> Gatsby [unifies your stack](/docs/using-gatsby-professionally/using-gatsby-professionally/sanitize-your-stack) and eliminates a lot of the complicated and time-consuming configuration steps that come with most development processes. This means happier developers and clearer division between frontend and backend tasks. Frontend developers can spend more time making great UIs and backend developers can focus on adding the features and integrations that make your product better. You can find more information on this subject in Sam Bhagwat's article [How Gatsby Changes Teams' Website Development Workflow](/blog/2018-04-25-how-gatsby-changes-teams-website-development-workflow/#architecture) - -## Common concerns - -You may find that your engineering leaders and managers have some concerns about Gatsby. Here are some common examples and responses you can provide to help alleviate those concerns. - -### Support for open source software is often unreliable and relatively few projects offer long-term viability. How is Gatsby different? - -> Gatsby has an extremely active and communicative community with over 2,000 contributors and tens of thousands of developers building Gatsby sites. The process for filing issues and [contributing to Gatsby](/contributing/) is well-documented. [Gatsby's extensive documentation](/docs/) also includes various guides, tutorials, plugin and starter libraries, troubleshooting, and additional resources. Last but not least, the Gatsby open source project is supported by [Gatsby, Inc](https://www.gatsbyjs.com/). whose team is committed, full-time, to developing and maintaining Gatsby. Gatsby, Inc. also offers support services, training, and partnership opportunities. - -### Our site uses a lot of dynamic content and components. Didn't you say Gatsby creates static sites? - -> Yes, but there's more to it. Gatsby statically generates HTML content using React DOM and server-side APIs – it's an important part of how Gatsby delivers exceptional speed and better security. However, this static HTML content can then be enhanced with client-side JavaScript via React hydration. You can learn more about this in Dustin Schau's blog post [Beyond Static: Building Dynamic apps with Gatsby](/blog/2018-10-15-beyond-static-intro/). - -### Our content team and other less-technical members of my organization need to be able to make site updates. Are they going to be able to work with a Gatsby site? - -> Gatsby can pull content from any source, including all-in-one CMSs, like WordPress and Drupal, and headless CMSs. Your content team can work with whichever content editor suits their needs and preferences, including the CMS they're already using. You can also enable more collaboration between your content and development teams with [Gatsby Preview](https://www.gatsbyjs.com/preview). - -## Case studies - -Case studies are an excellent way to build an engineering leader's confidence in Gatsby's capabilities. Here are some case studies you might want to share: - -- [Beyond Static: Haptic Media Uses Gatsby to Build a Dynamic Web App](/blog/2019-02-05-hapticmedia-case-study/) -- [IBM Uses Gatsby to Manage Enterprise-Level Content](/blog/2018-12-17-ibm-case-study/#big-company-big-website) -- [How we're migrating a government open data site to Gatsby](/blog/2019-02-08-government-open-data-site-with-gatsby/) - -For examples of Gatsby sites, [check out the Showcase](/showcase/). - -## Conclusion - -When you're trying to win over a stakeholder, your first instinct may be to focus completely on Gatsby's benefits. However, when you're speaking to engineering leaders and managers, it's important to be positive while still being honest about Gatsby's limitations. Setting expectations before they go out to do their own research will help them focus on finding solutions rather than faults. There is ample proof that Gatsby works well for many websites - don't be afraid to help your engineering leaders dig into pros and cons. (And it doesn't hurt to get a few of their team members on your side. Check out the [Winning Over Developers](/docs/using-gatsby-professionally/winning-over-developers/) page for more on that subject.) diff --git a/docs/docs/using-gatsby-professionally/winning-over-executives.md b/docs/docs/using-gatsby-professionally/winning-over-executives.md deleted file mode 100644 index 2bd3db4ec0878..0000000000000 --- a/docs/docs/using-gatsby-professionally/winning-over-executives.md +++ /dev/null @@ -1,58 +0,0 @@ ---- -title: Winning Over Executives ---- - -Before you speak to executives about Gatsby, make sure you understand their strategic goals, and align your argument for Gatsby with those specific goals. Focus on the results of Gatsby's features rather than the specifics of how they work. If some of the big ideas behind Gatsby fit in with the executive's strategic goals, don't be afraid to include them in your conversation. - -Some things executives care about include: - -- **Brand visibility** Making sure people are learning about your company by showing up in all the right places. This can be accomplished through things like SEO (search engine optimization), buying ad space, and gaining influence through content creation and/or event participation. -- **Customer experience** Do your customers like using your site and products? Can they find what they need? Do they have a positive impression of your company? -- **Innovation** Creating and adopting new technology and business models, preferably ones that will have long-term success. -- **Competitive edge** Distinguishing yourself from your competitors by delivering unique value that helps you claim a greater share of the market. -- **Growing the business** For most executives, success means gaining clients, leads, users, purchases and awareness - getting more orders moving through that sales funnel. - -## Basic explanation - -Here's an example of a basic explanation of Gatsby for executives: - -> Gatsby is a new way to build websites and applications with exceptional performance, reduced risk of downtime, fewer security vulnerabilities, and the flexibility to work with the best tools for your business. Companies that have moved their sites to Gatsby have seen significant improvements in their lead conversion, organic search traffic, and team productivity. - -## Specific benefits - -Sites built with Gatsby have experienced major sales and engagement benefits as a direct result of Gatsby's built-in features and optimizations. Here are some examples. - -### Better lead generation and customer engagement - -> Site speed and performance has a huge impact on sales and customer engagement. A [recent Akamai study](https://www.akamai.com/uk/en/about/news/press/2017-press/akamai-releases-spring-2017-state-of-online-retail-performance-report.jsp) showed that a 100 millisecond delay in a site's load time hurt conversion rates by 7%, and 53% of mobile users will leave pages that take more than 3 seconds to load. Gatsby sites are consistently 2-3x faster than similar sites built with different tools, and site owners have seen their [lead generation increase by up to 60% after transitioning to Gatsby](/blog/2018-11-16-youfit-case-study/). - -### Improved search traffic - -> Site speed is one of the factors Google uses in its search ranking algorithm, and slow site speeds can have a negative snowball effect on your SEO. Slower sites take longer to be crawled and indexed by search engines, they have higher bounce rates, and lower conversion rates, all of which will hurt your rankings. Gatsby sites have [built-in web and mobile performance optimizations](/blog/2018-11-07-gatsby-for-apps/#why-gatsby-for-apps). It actually takes _more_ effort to make a Gatsby site perform badly. Learn more about [the impact of page speed on SEO](https://moz.com/learn/seo/page-speed) on Moz. - -### Increase productivity - -> According to [Gatsby user survey results](/blog/2019-03-05-dot-org-messaging-survey/#productive-from-the-start), "Gatsby makes you productive right from the start — it takes away the overhead of time-consuming dev and build tooling setup and configuration which leads to faster iterations." Without the burden of complicated tooling, your development team is more focused, more productive, and more satisfied with their work. - -### Lower costs - -> Gatsby sites can be entirely deployed to a CDN which is much less expensive than traditional hosting costs. Plus, CDN hosting basically eliminates your risk of downtime during traffic spikes so you don't miss out on those lead-conversion opportunities. Finally, Gatsby is open source, so you're also saving on software licensing costs. - -### Keep your applications ahead of the curve - -> Gatsby is one of the technologies at the forefront of a new approach to web and application development known as the [JAMStack](https://jamstack.org/). The JAMStack represents a shift away from the limitations of CMS-centered sites and failure points of server-side code towards faster, light-weight, modular site construction. The JAMStack approach and Gatsby have been rapidly gaining popularity in the last few years with no sign of slowing down. (Check out [Gatsby and JAMStack on Google Trends](https://trends.google.com/trends/explore?date=today%205-y&geo=US&q=jamstack,gatsby%20js).) For companies that want to be leaders in technology trends and that want to differentiate themselves on important factors like site performance, this is a prime window of opportunity. Learn how you can [partner with Gatsby](/docs/partnering-with-gatsby/). - -## Case studies - -Case studies are a great way to help executives see Gatsby's potential and gain more practical insight into its benefits. Here are some case studies you might want to share: - -- [Youfit uses Gatsby to increase lead generation by 60%](/blog/2018-11-16-youfit-case-study/) -- [IBM Uses Gatsby to Manage Enterprise-Level Content](/blog/2018-12-17-ibm-case-study/#big-company-big-website) -- [Gatsby Fuels Content and Sales in Design+Code Rebuild](/blog/2019-03-15-design-code-blog-post/) -- [Growing Housecall Pro by 973% with Gatsby](/blog/2019-05-02-growing-housecall-pro-by-973-percent/) - -For even more examples of Gatsby sites, [check out the Showcase](/showcase/) - -## Conclusion - -Executives are always looking for ways to improve their business's efficiency, profits, and to grow their organization. Pointing out the financial benefits of Gatsby will help your case, but be sure to go into the many other ways Gatsby will help move your business forward. If you can show your executive(s) how the benefits of Gatsby significantly outweigh the risks and costs involved in adopting it, odds are good that they'll be very receptive to the idea. diff --git a/docs/docs/using-gatsby-professionally/winning-over-marketers.md b/docs/docs/using-gatsby-professionally/winning-over-marketers.md deleted file mode 100644 index 77bb9ad403dbe..0000000000000 --- a/docs/docs/using-gatsby-professionally/winning-over-marketers.md +++ /dev/null @@ -1,54 +0,0 @@ ---- -title: Winning Over Marketers ---- - -Some things that marketers care about include: - -- **Generating more "leads".** Leads are people who are interested in buying the product. -- **Increasing conversion rates.** This means helping more people move through a checkout funnel, or fill out an email capture form. -- **Making the website faster**. This tends to decrease the "bounce rate", which is the proportion of visitors leaving the website. -- **Generating revenue**. If the product is bought online through a checkout flow, such as e-commerce, marketers are often measured on revenue the site generates -- the dollar value of total sales. - -## Basic explanation - -A basic explanation of Gatsby to marketers is often along these lines: - -> Over 50% of people will abandon a site if it takes more than 3 seconds to load. This translates directly into lost revenue, decreased lead conversion, and a poor user experience. Get the most out of your website with a site that’s blazing fast and optimized for SEO, lead conversion, and revenue generation. Gatsby is the modern way to build reliable, lightning fast websites and apps. - -## Specific benefits - -Marketers may be curious about more information on specific topics such as SEO, site speed, lead conversion, and revenue. Some potential talking points on each topic are listed below. - -### Site speed - -> Think rocket ship vs. sea turtle. Gatsby takes fast to a whole new level with websites that are pre-built and live on the edge—right where your customers are. Pages load in milliseconds rather than seconds. Gatsby enables teams to create lightning-fast, content-driven websites without needing to become performance experts. - -### SEO optimized - -> Think of all the time a team spends on creating compelling, optimized content just to have the search ranking penalized by a slow website. A Search Engine Optimized website means a higher organic search ranking and more website traffic, which can mean more leads and revenue. Get as much out of your website as you do your content and see the impact. - -### Optimized for lead conversion - -> For every second it takes a page to load, the bounce rate increases and the lead conversion drops. For e-commerce sites, some estimates say you may lose up to 1% in revenue for every 100ms delay in page load time. The longer it takes a page to load, the more customers/leads/revenue you lose. Get greater lead conversion with a fast website that loads on even slow connections. - -### Generating revenue - -> Generating revenue with your website is especially important for e-commerce sites. If an e-commerce company doesn’t get a high enough ROI (return on investment), then they may be out of business in a few months. Even just a one second improvement in page load time can increase revenue by 7%. The less time it takes a page to load, the more money you make. - -## Case studies - -One question marketers often ask themselves when hearing new ideas, whether they vocalize them or not, is "who else is doing this?" - -In order to proactively diffuse these concerns, you might consider sharing stories of organizations that have adopted Gatsby: - -- [Flamingo, women’s body care brand from Harry’s, chooses Gatsby for critical e-commerce launch, 5X faster page loads](/blog/2019-01-30-flamingo-case-study/) -- [Youfit uses Gatsby to increase lead generation by 60%](/blog/2018-11-16-youfit-case-study/) -- [IBM Uses Gatsby to Manage Enterprise-Level Content](/blog/2018-12-17-ibm-case-study/#big-company-big-website) - -## Conclusion - -A perception marketers often have of developers is that they are not very business-savvy. Whether this perception is accurate or not, it often creates a barrier for marketers to accept developers' suggestions. - -The explanations above -- whether you use them word-for-word or restate them in your own and your organization's language -- are intended to demonstrate concern for the business as a whole, so marketers see you as a trusted partner. - -_Want to read more on this topic? Check out [How to Talk About Gatsby To Your Clients And Team](https://www.gatsbyjs.com/blog/2019-03-07-sell-gatsby-to-clients/) by [Linda Watkins](https://www.gatsbyjs.com/contributors/linda-watkins/)._ diff --git a/docs/docs/using-gatsby-professionally/winning-over-stakeholders.md b/docs/docs/using-gatsby-professionally/winning-over-stakeholders.md deleted file mode 100644 index 4f40e6c13dcbf..0000000000000 --- a/docs/docs/using-gatsby-professionally/winning-over-stakeholders.md +++ /dev/null @@ -1,15 +0,0 @@ ---- -title: Winning Over Stakeholders ---- - -Any website project has multiple stakeholders, such as developers, marketers, content creators, engineering leaders, executives, and clients. - -In smaller projects and organizations, one person may wear multiple hats. As a freelancer, you may be the developer, marketer, content creator, and engineering leader rolled into one. Working at a mid-sized agency or organization, you are likely to only wear one hat at a time. - -When working with other stakeholders, it's important to understand their motivations so you can explain the benefits of Gatsby in a way that resonates with them. - -For example, marketers typically care about increasing leads and conversion rates, executives focus on driving revenue, and clients prioritize the project shipping on time and under budget. - -This section includes guides to explaining the benefits of Gatsby to the various types of stakeholders that you may work with. - - From 24131491d89e35cd264f2e9af744e2af3754361f Mon Sep 17 00:00:00 2001 From: Michal Piechowiak Date: Mon, 11 Jul 2022 03:31:51 +0200 Subject: [PATCH 15/90] fix(gatsby): hydration issues when load is low enough to show indicator (#36083) * adjust logic dictating if we use hydrate or render on first render based on target element content * comment shuffling --- packages/gatsby/cache-dir/app.js | 49 ++++++++++--------- .../cache-dir/ssr-develop-static-entry.js | 35 +++++-------- 2 files changed, 39 insertions(+), 45 deletions(-) diff --git a/packages/gatsby/cache-dir/app.js b/packages/gatsby/cache-dir/app.js index c04a764101ec6..86247fc2404bb 100644 --- a/packages/gatsby/cache-dir/app.js +++ b/packages/gatsby/cache-dir/app.js @@ -40,23 +40,36 @@ loader.setApiRunner(apiRunner) window.___loader = publicLoader -let reactRender -let reactHydrate +let reactFirstRenderOrHydrate if (HAS_REACT_18) { const reactDomClient = require(`react-dom/client`) - reactRender = (Component, el) => { - const root = reactDomClient.createRoot(el) - root.render(Component) - return () => root.unmount() + reactFirstRenderOrHydrate = (Component, el) => { + // we will use hydrate if mount element has any content inside + const useHydrate = el && el.children.length + + if (useHydrate) { + const root = reactDomClient.hydrateRoot(el, Component) + return () => root.unmount() + } else { + const root = reactDomClient.createRoot(el) + root.render(Component) + return () => root.unmount() + } } - reactHydrate = (Component, el) => reactDomClient.hydrateRoot(el, Component) } else { const reactDomClient = require(`react-dom`) - reactRender = (Component, el) => { - reactDomClient.render(Component, el) - return () => ReactDOM.unmountComponentAtNode(el) + reactFirstRenderOrHydrate = (Component, el) => { + // we will use hydrate if mount element has any content inside + const useHydrate = el && el.children.length + + if (useHydrate) { + reactDomClient.hydrate(Component, el) + return () => ReactDOM.unmountComponentAtNode(el) + } else { + reactDomClient.render(Component, el) + return () => ReactDOM.unmountComponentAtNode(el) + } } - reactHydrate = reactDomClient.hydrate } // Do dummy dynamic import so the jsonp __webpack_require__.e is added to the commons.js @@ -147,20 +160,10 @@ apiRunnerAsync(`onClientEntry`).then(() => { } const rootElement = document.getElementById(`___gatsby`) - - const focusEl = document.getElementById(`gatsby-focus-wrapper`) - - // Client only pages have any empty body so we just do a normal - // render to avoid React complaining about hydration mis-matches. - let defaultRenderer = reactRender - if (focusEl && focusEl.children.length) { - defaultRenderer = reactHydrate - } - const renderer = apiRunner( `replaceHydrateFunction`, undefined, - defaultRenderer + reactFirstRenderOrHydrate )[0] let dismissLoadingIndicator @@ -184,7 +187,7 @@ apiRunnerAsync(`onClientEntry`).then(() => { if (indicatorMountElement) { // If user defined replaceHydrateFunction themselves the cleanupFn return might not be there // So fallback to unmountComponentAtNode for now - if (cleanupFn) { + if (cleanupFn && typeof cleanupFn === `function`) { cleanupFn() } else { ReactDOM.unmountComponentAtNode(indicatorMountElement) diff --git a/packages/gatsby/cache-dir/ssr-develop-static-entry.js b/packages/gatsby/cache-dir/ssr-develop-static-entry.js index bffa05c18d676..df9ed17d7e6b9 100644 --- a/packages/gatsby/cache-dir/ssr-develop-static-entry.js +++ b/packages/gatsby/cache-dir/ssr-develop-static-entry.js @@ -235,20 +235,10 @@ export default async function staticPage({ }, } - let pageElement - if ( - syncRequires.ssrComponents[componentChunkName] && - !isClientOnlyPage - ) { - pageElement = React.createElement( - preferDefault(syncRequires.ssrComponents[componentChunkName]), - props - ) - } else { - // If this is a client-only page or the pageComponent didn't finish - // compiling yet, just render an empty component. - pageElement = () => null - } + const pageElement = React.createElement( + preferDefault(syncRequires.ssrComponents[componentChunkName]), + props + ) const wrappedPage = apiRunner( `wrapPageElement`, @@ -263,14 +253,15 @@ export default async function staticPage({ } } - const routerElement = ( - - - - -
- - ) + const routerElement = + syncRequires.ssrComponents[componentChunkName] && !isClientOnlyPage ? ( + + + + +
+ + ) : null const bodyComponent = apiRunner( `wrapRootElement`, From 0110aa8a6dab77d5109a4a8d10f1fe0496f14a20 Mon Sep 17 00:00:00 2001 From: Erica Pisani Date: Mon, 11 Jul 2022 13:21:06 -0400 Subject: [PATCH 16/90] chore(gatsby): upgrade lmdb to 2.5.3 (#36087) --- packages/gatsby/package.json | 2 +- yarn.lock | 48 ++++++++++++++++++++++++++++++++++++ 2 files changed, 49 insertions(+), 1 deletion(-) diff --git a/packages/gatsby/package.json b/packages/gatsby/package.json index 3b2906402ca03..02c71b819659d 100644 --- a/packages/gatsby/package.json +++ b/packages/gatsby/package.json @@ -116,7 +116,7 @@ "joi": "^17.4.2", "json-loader": "^0.5.7", "latest-version": "5.1.0", - "lmdb": "2.5.2", + "lmdb": "2.5.3", "lodash": "^4.17.21", "md5-file": "^5.0.0", "meant": "^1.0.3", diff --git a/yarn.lock b/yarn.lock index a31a7c58c19f3..1887b60a2839f 100644 --- a/yarn.lock +++ b/yarn.lock @@ -3381,31 +3381,61 @@ resolved "https://registry.yarnpkg.com/@lmdb/lmdb-darwin-arm64/-/lmdb-darwin-arm64-2.5.2.tgz#bc66fa43286b5c082e8fee0eacc17995806b6fbe" integrity sha512-+F8ioQIUN68B4UFiIBYu0QQvgb9FmlKw2ctQMSBfW2QBrZIxz9vD9jCGqTCPqZBRbPHAS/vG1zSXnKqnS2ch/A== +"@lmdb/lmdb-darwin-arm64@2.5.3": + version "2.5.3" + resolved "https://registry.yarnpkg.com/@lmdb/lmdb-darwin-arm64/-/lmdb-darwin-arm64-2.5.3.tgz#c423b068165df18da57a81dce5c95f98c6ab9265" + integrity sha512-RXwGZ/0eCqtCY8FLTM/koR60w+MXyvBUpToXiIyjOcBnC81tAlTUHrRUavCEWPI9zc9VgvpK3+cbumPyR8BSuA== + "@lmdb/lmdb-darwin-x64@2.5.2": version "2.5.2" resolved "https://registry.yarnpkg.com/@lmdb/lmdb-darwin-x64/-/lmdb-darwin-x64-2.5.2.tgz#89d8390041bce6bab24a82a20392be22faf54ffc" integrity sha512-KvPH56KRLLx4KSfKBx0m1r7GGGUMXm0jrKmNE7plbHlesZMuPJICtn07HYgQhj1LNsK7Yqwuvnqh1QxhJnF1EA== +"@lmdb/lmdb-darwin-x64@2.5.3": + version "2.5.3" + resolved "https://registry.yarnpkg.com/@lmdb/lmdb-darwin-x64/-/lmdb-darwin-x64-2.5.3.tgz#dde76e65595b34a17289a63f770a8aee13a85a9b" + integrity sha512-337dNzh5yCdNCTk8kPfoU7jR3otibSlPDGW0vKZT97rKnQMb9tNdto3RtWoGPsQ8hKmlRZpojOJtmwjncq1MoA== + "@lmdb/lmdb-linux-arm64@2.5.2": version "2.5.2" resolved "https://registry.yarnpkg.com/@lmdb/lmdb-linux-arm64/-/lmdb-linux-arm64-2.5.2.tgz#14fe4c96c2bb1285f93797f45915fa35ee047268" integrity sha512-aLl89VHL/wjhievEOlPocoefUyWdvzVrcQ/MHQYZm2JfV1jUsrbr/ZfkPPUFvZBf+VSE+Q0clWs9l29PCX1hTQ== +"@lmdb/lmdb-linux-arm64@2.5.3": + version "2.5.3" + resolved "https://registry.yarnpkg.com/@lmdb/lmdb-linux-arm64/-/lmdb-linux-arm64-2.5.3.tgz#d98f32383d37a058e6c51b7ffd665c2c2f91c285" + integrity sha512-VJw60Mdgb4n+L0fO1PqfB0C7TyEQolJAC8qpqvG3JoQwvyOv6LH7Ib/WE3wxEW9nuHmVz9jkK7lk5HfWWgoO1Q== + "@lmdb/lmdb-linux-arm@2.5.2": version "2.5.2" resolved "https://registry.yarnpkg.com/@lmdb/lmdb-linux-arm/-/lmdb-linux-arm-2.5.2.tgz#05bde4573ab10cf21827339fe687148f2590cfa1" integrity sha512-5kQAP21hAkfW5Bl+e0P57dV4dGYnkNIpR7f/GAh6QHlgXx+vp/teVj4PGRZaKAvt0GX6++N6hF8NnGElLDuIDw== +"@lmdb/lmdb-linux-arm@2.5.3": + version "2.5.3" + resolved "https://registry.yarnpkg.com/@lmdb/lmdb-linux-arm/-/lmdb-linux-arm-2.5.3.tgz#6251143d7b470e126b0b0fc17ae64c6680e268b2" + integrity sha512-mU2HFJDGwECkoD9dHQEfeTG5mp8hNS2BCfwoiOpVPMeapjYpQz9Uw3FkUjRZ4dGHWKbin40oWHuL0bk2bCx+Sg== + "@lmdb/lmdb-linux-x64@2.5.2": version "2.5.2" resolved "https://registry.yarnpkg.com/@lmdb/lmdb-linux-x64/-/lmdb-linux-x64-2.5.2.tgz#d2f85afd857d2c33d2caa5b057944574edafcfee" integrity sha512-xUdUfwDJLGjOUPH3BuPBt0NlIrR7f/QHKgu3GZIXswMMIihAekj2i97oI0iWG5Bok/b+OBjHPfa8IU9velnP/Q== +"@lmdb/lmdb-linux-x64@2.5.3": + version "2.5.3" + resolved "https://registry.yarnpkg.com/@lmdb/lmdb-linux-x64/-/lmdb-linux-x64-2.5.3.tgz#ef3a9793391ab4a68379e753943c9055fd0f5bf3" + integrity sha512-qaReO5aV8griBDsBr8uBF/faO3ieGjY1RY4p8JvTL6Mu1ylLrTVvOONqKFlNaCwrmUjWw5jnf7VafxDAeQHTow== + "@lmdb/lmdb-win32-x64@2.5.2": version "2.5.2" resolved "https://registry.yarnpkg.com/@lmdb/lmdb-win32-x64/-/lmdb-win32-x64-2.5.2.tgz#28f643fbc0bec30b07fbe95b137879b6b4d1c9c5" integrity sha512-zrBczSbXKxEyK2ijtbRdICDygRqWSRPpZMN5dD1T8VMEW5RIhIbwFWw2phDRXuBQdVDpSjalCIUMWMV2h3JaZA== +"@lmdb/lmdb-win32-x64@2.5.3": + version "2.5.3" + resolved "https://registry.yarnpkg.com/@lmdb/lmdb-win32-x64/-/lmdb-win32-x64-2.5.3.tgz#c72e8b6faae31d925d23a6db0379cc3fe0216fdd" + integrity sha512-cK+Elf3RjEzrm3SerAhrFWL5oQAsZSJ/LmjL1joIpTfEP1etJJ9CTRvdaV6XLYAxaEkfdhk/9hOvHLbR9yIhCA== + "@lukeed/csprng@^1.0.0": version "1.0.0" resolved "https://registry.yarnpkg.com/@lukeed/csprng/-/csprng-1.0.0.tgz#733a122382749d27e2e46ec38f8c71c9d53a9636" @@ -15311,6 +15341,24 @@ lmdb@2.5.2: "@lmdb/lmdb-linux-x64" "2.5.2" "@lmdb/lmdb-win32-x64" "2.5.2" +lmdb@2.5.3: + version "2.5.3" + resolved "https://registry.yarnpkg.com/lmdb/-/lmdb-2.5.3.tgz#cac845a8576ef0fd2dcc279faab6fdb383f07463" + integrity sha512-iBA0cb13CobBSoGJLfZgnrykLlfJipDAnvtf+YwIqqzBEsTeQYsXrHaSBkaHd5wCWeabwrNvhjZoFMUrlo+eLw== + dependencies: + msgpackr "^1.5.4" + node-addon-api "^4.3.0" + node-gyp-build-optional-packages "5.0.3" + ordered-binary "^1.2.4" + weak-lru-cache "^1.2.2" + optionalDependencies: + "@lmdb/lmdb-darwin-arm64" "2.5.3" + "@lmdb/lmdb-darwin-x64" "2.5.3" + "@lmdb/lmdb-linux-arm" "2.5.3" + "@lmdb/lmdb-linux-arm64" "2.5.3" + "@lmdb/lmdb-linux-x64" "2.5.3" + "@lmdb/lmdb-win32-x64" "2.5.3" + load-bmfont@^1.3.1, load-bmfont@^1.4.0: version "1.4.0" resolved "https://registry.yarnpkg.com/load-bmfont/-/load-bmfont-1.4.0.tgz#75f17070b14a8c785fe7f5bee2e6fd4f98093b6b" From ea21cd4efb0497d29ca73b5cca6a2f7a6a4c3774 Mon Sep 17 00:00:00 2001 From: Robin <1105080+openscript@users.noreply.github.com> Date: Tue, 12 Jul 2022 06:50:33 +0200 Subject: [PATCH 17/90] chore(docs): Add `gatsby-link` to `transformIgnorePatterns` (#36076) --- docs/docs/how-to/testing/unit-testing.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docs/how-to/testing/unit-testing.md b/docs/docs/how-to/testing/unit-testing.md index 367fbd69d44da..5b1f05c4ba8ba 100644 --- a/docs/docs/how-to/testing/unit-testing.md +++ b/docs/docs/how-to/testing/unit-testing.md @@ -50,7 +50,7 @@ module.exports = { ], // Workaround for https://github.com/facebook/jest/issues/9771 }, testPathIgnorePatterns: [`node_modules`, `\\.cache`, `.*/public`], - transformIgnorePatterns: [`node_modules/(?!(gatsby|gatsby-script)/)`], + transformIgnorePatterns: [`node_modules/(?!(gatsby|gatsby-script|gatsby-link)/)`], globals: { __PATH_PREFIX__: ``, }, From 8488135dd7169264898f66310273b4bbb23fa9d7 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 12 Jul 2022 07:16:44 +0200 Subject: [PATCH 18/90] fix(deps): update dependency lmdb to v2.5.3 (#36099) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Lennart --- packages/gatsby-core-utils/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/gatsby-core-utils/package.json b/packages/gatsby-core-utils/package.json index a2fbdf47fde2f..d576c7ad2fca0 100644 --- a/packages/gatsby-core-utils/package.json +++ b/packages/gatsby-core-utils/package.json @@ -69,7 +69,7 @@ "fs-extra": "^10.1.0", "got": "^11.8.5", "import-from": "^4.0.0", - "lmdb": "2.5.2", + "lmdb": "2.5.3", "lock": "^1.1.0", "node-object-hash": "^2.3.10", "proper-lockfile": "^4.1.2", From d2c4d077f97c217ec31ddba1284fe4813f813108 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 12 Jul 2022 10:04:17 +0200 Subject: [PATCH 19/90] chore(deps): update starters and examples (#36096) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- starters/gatsby-starter-minimal-ts/package-lock.json | 12 ++++++------ starters/gatsby-starter-minimal-ts/package.json | 4 ++-- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/starters/gatsby-starter-minimal-ts/package-lock.json b/starters/gatsby-starter-minimal-ts/package-lock.json index a1c053a2fc453..c81c5f61e47c8 100644 --- a/starters/gatsby-starter-minimal-ts/package-lock.json +++ b/starters/gatsby-starter-minimal-ts/package-lock.json @@ -3157,9 +3157,9 @@ } }, "@types/react": { - "version": "18.0.14", - "resolved": "https://registry.npmjs.org/@types/react/-/react-18.0.14.tgz", - "integrity": "sha512-x4gGuASSiWmo0xjDLpm5mPb52syZHJx02VKbqUKdLmKtAwIh63XClGsiTI1K6DO5q7ox4xAsQrU+Gl3+gGXF9Q==", + "version": "18.0.15", + "resolved": "https://registry.npmjs.org/@types/react/-/react-18.0.15.tgz", + "integrity": "sha512-iz3BtLuIYH1uWdsv6wXYdhozhqj20oD4/Hk2DNXIn1kFsmp9x8d9QB6FnPhfkbhd2PgEONt9Q1x/ebkwjfFLow==", "requires": { "@types/prop-types": "*", "@types/scheduler": "*", @@ -3167,9 +3167,9 @@ } }, "@types/react-dom": { - "version": "18.0.5", - "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-18.0.5.tgz", - "integrity": "sha512-OWPWTUrY/NIrjsAPkAk1wW9LZeIjSvkXRhclsFO8CZcZGCOg2G0YZy4ft+rOyYxy8B7ui5iZzi9OkDebZ7/QSA==", + "version": "18.0.6", + "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-18.0.6.tgz", + "integrity": "sha512-/5OFZgfIPSwy+YuIBP/FgJnQnsxhZhjjrnxudMddeblOouIodEQ75X14Rr4wGSG/bknL+Omy9iWlLo1u/9GzAA==", "dev": true, "requires": { "@types/react": "*" diff --git a/starters/gatsby-starter-minimal-ts/package.json b/starters/gatsby-starter-minimal-ts/package.json index 7b54310fbd401..542174fdb1738 100644 --- a/starters/gatsby-starter-minimal-ts/package.json +++ b/starters/gatsby-starter-minimal-ts/package.json @@ -23,8 +23,8 @@ }, "devDependencies": { "@types/node": "^17.0.45", - "@types/react": "^18.0.14", - "@types/react-dom": "^18.0.5", + "@types/react": "^18.0.15", + "@types/react-dom": "^18.0.6", "typescript": "^4.7.4" } } From 7a410e377cb8efde8f0d64a96cef990a935ad4ae Mon Sep 17 00:00:00 2001 From: Ward Peeters Date: Tue, 12 Jul 2022 18:52:40 +0200 Subject: [PATCH 20/90] chore(gatsby): remove other services (#35675) --- .../__tests__/create-node-manifest.test.js | 52 +++- integration-tests/node-manifest/package.json | 6 +- .../node-manifest/utils/get-gatsby-process.js | 38 +-- .../src/gatsby-node.js | 1 + packages/gatsby/cache-dir/app.js | 48 ---- packages/gatsby/package.json | 2 - packages/gatsby/src/commands/develop.ts | 249 +----------------- packages/gatsby/src/commands/types.ts | 1 + .../internal-data-bridge/gatsby-node.js | 2 +- .../src/services/start-webpack-server.ts | 2 +- packages/gatsby/src/utils/develop-proxy.ts | 84 ------ .../src/utils/graphql-typegen/file-writes.ts | 2 +- .../gatsby/src/utils/restarting-screen.ts | 128 --------- packages/gatsby/src/utils/telemetry-server.ts | 68 ----- yarn.lock | 19 +- 15 files changed, 74 insertions(+), 628 deletions(-) delete mode 100644 packages/gatsby/src/utils/develop-proxy.ts delete mode 100644 packages/gatsby/src/utils/restarting-screen.ts delete mode 100644 packages/gatsby/src/utils/telemetry-server.ts diff --git a/integration-tests/node-manifest/__tests__/create-node-manifest.test.js b/integration-tests/node-manifest/__tests__/create-node-manifest.test.js index 916124cc2f952..00333d5a37ad8 100644 --- a/integration-tests/node-manifest/__tests__/create-node-manifest.test.js +++ b/integration-tests/node-manifest/__tests__/create-node-manifest.test.js @@ -54,16 +54,29 @@ describe(`Node Manifest API in "gatsby ${gatsbyCommandName}"`, () => { return urling(`http://localhost:${port}`) } else if (gatsbyCommandName === `build`) { // for gatsby build wait for the process to exit - return new Promise(resolve => - gatsbyProcess.on(`exit`, () => { - gatsbyProcess.kill() - resolve() - }) - ) + return gatsbyProcess } }) - afterAll(() => gatsbyProcess.kill()) + afterAll(() => { + return new Promise(resolve => { + if ( + !gatsbyProcess || + gatsbyProcess.killed || + gatsbyProcess.exitCode !== null + ) { + return resolve() + } + + gatsbyProcess.on(`exit`, () => { + setImmediate(() => { + resolve() + }) + }) + + gatsbyProcess.kill() + }) + }) it(`Creates an accurate node manifest when using the ownerNodeId argument in createPage`, async () => { const manifestFileContents = await getManifestContents(1) @@ -166,16 +179,29 @@ describe(`Node Manifest API in "gatsby ${gatsbyCommandName}"`, () => { await urling(`http://localhost:${port}`) } else if (gatsbyCommandName === `build`) { // for gatsby build wait for the process to exit - return new Promise(resolve => { - gatsbyProcess.on(`exit`, () => { - gatsbyProcess.kill() + return gatsbyProcess + } + }) + + afterAll(() => { + return new Promise(resolve => { + if ( + !gatsbyProcess || + gatsbyProcess.killed || + gatsbyProcess.exitCode !== null + ) { + return resolve() + } + + gatsbyProcess.on(`exit`, () => { + setImmediate(() => { resolve() }) }) - } - }) - afterAll(() => gatsbyProcess.kill()) + gatsbyProcess.kill() + }) + }) it(`Limits the number of node manifest files written to disk to 500`, async () => { const nodeManifestFiles = fs.readdirSync(manifestDir) diff --git a/integration-tests/node-manifest/package.json b/integration-tests/node-manifest/package.json index cab6ffe4b199e..d870f3010852a 100644 --- a/integration-tests/node-manifest/package.json +++ b/integration-tests/node-manifest/package.json @@ -4,7 +4,7 @@ "description": "A test site for Gatsby's node manifest API", "main": "index.js", "scripts": { - "test": "gatsby clean && GATSBY_COMMAND_NAME=build jest --runInBand && gatsby clean && GATSBY_COMMAND_NAME=develop jest --runInBand" + "test": "cross-env GATSBY_COMMAND_NAME=build jest --runInBand && cross-env GATSBY_COMMAND_NAME=develop jest --runInBand" }, "author": "Tyler Barnes ", "license": "ISC", @@ -14,9 +14,11 @@ "react-dom": "^17.0.2" }, "devDependencies": { + "cross-env": "^7.0.3", + "execa": "^5.1.1", "fs-extra": "^10.0.0", "jest": "^27.2.1", "rimraf": "^3.0.2", "urling": "^1.0.7" } -} \ No newline at end of file +} diff --git a/integration-tests/node-manifest/utils/get-gatsby-process.js b/integration-tests/node-manifest/utils/get-gatsby-process.js index d51bb68a8155c..1a5ebd3852ef9 100644 --- a/integration-tests/node-manifest/utils/get-gatsby-process.js +++ b/integration-tests/node-manifest/utils/get-gatsby-process.js @@ -1,29 +1,17 @@ -const { spawn } = require(`child_process`) +const execa = require(`execa`) const path = require(`path`) -const gatsbyBin = path.join(`node_modules`, `.bin`, `gatsby`) +function spawnGatsbyProcess(command = `develop`, env = {}) { + return execa(process.execPath, [`./node_modules/gatsby/cli.js`, command], { + stdio: [`inherit`, `inherit`, `inherit`], + env: { + ...process.env, + NODE_ENV: command === `develop` ? `development` : `production`, + ...env, + }, + }) +} -exports.spawnGatsbyProcess = (command = `develop`, env = {}) => - spawn( - gatsbyBin, - [command, ...(command === `develop` ? ["-H", "localhost"] : [])], - { - stdio: [`inherit`, `inherit`, `inherit`, `inherit`], - env: { - ...process.env, - NODE_ENV: command === `develop` ? `development` : `production`, - ...env, - }, - } - ) - - exports.runGatsbyClean = () => - spawn( - gatsbyBin, - ['clean'], - { - stdio: [`inherit`, `inherit`, `inherit`, `inherit`], - env: { ...process.env }, - }, - ) +exports.spawnGatsbyProcess = spawnGatsbyProcess +exports.runGatsbyClean = () => spawnGatsbyProcess("clean") diff --git a/packages/gatsby-plugin-netlify-cms/src/gatsby-node.js b/packages/gatsby-plugin-netlify-cms/src/gatsby-node.js index 16f7c5300ab13..196bfa290eb20 100644 --- a/packages/gatsby-plugin-netlify-cms/src/gatsby-node.js +++ b/packages/gatsby-plugin-netlify-cms/src/gatsby-node.js @@ -170,6 +170,7 @@ exports.onCreateWebpackConfig = ( new FriendlyErrorsPlugin({ clearConsole: false, compilationSuccessInfo: { + // TODO(v5): change proxyPort back in port messages: [ `Netlify CMS is running at ${ program.https ? `https://` : `http://` diff --git a/packages/gatsby/cache-dir/app.js b/packages/gatsby/cache-dir/app.js index 86247fc2404bb..f6dd93d47d556 100644 --- a/packages/gatsby/cache-dir/app.js +++ b/packages/gatsby/cache-dir/app.js @@ -1,7 +1,6 @@ /* global HAS_REACT_18 */ import React from "react" import ReactDOM from "react-dom" -import io from "socket.io-client" import socketIo from "./socketIo" import emitter from "./emitter" @@ -93,53 +92,6 @@ apiRunnerAsync(`onClientEntry`).then(() => { }) } - fetch(`/___services`) - .then(res => res.json()) - .then(services => { - if (services.developstatusserver) { - let isRestarting = false - const parentSocket = io( - `${window.location.protocol}//${window.location.hostname}:${services.developstatusserver.port}` - ) - - parentSocket.on(`structured-log`, msg => { - if ( - !isRestarting && - msg.type === `LOG_ACTION` && - msg.action.type === `DEVELOP` && - msg.action.payload === `RESTART_REQUIRED` && - window.confirm( - `The develop process needs to be restarted for the changes to ${msg.action.dirtyFile} to be applied.\nDo you want to restart the develop process now?` - ) - ) { - isRestarting = true - parentSocket.emit(`develop:restart`, () => { - window.location.reload() - }) - } - - if ( - isRestarting && - msg.type === `LOG_ACTION` && - msg.action.type === `SET_STATUS` && - msg.action.payload === `SUCCESS` - ) { - isRestarting = false - window.location.reload() - } - }) - - // Prevents certain browsers spamming XHR 'ERR_CONNECTION_REFUSED' - // errors within the console, such as when exiting the develop process. - parentSocket.on(`disconnect`, () => { - console.warn( - `[socket.io] Disconnected. Unable to perform health-check.` - ) - parentSocket.close() - }) - } - }) - /** * Service Workers are persistent by nature. They stick around, * serving a cached version of the site if they aren't removed. diff --git a/packages/gatsby/package.json b/packages/gatsby/package.json index 02c71b819659d..f7e54c5441ab6 100644 --- a/packages/gatsby/package.json +++ b/packages/gatsby/package.json @@ -48,7 +48,6 @@ "babel-preset-gatsby": "^2.19.0-next.2", "better-opn": "^2.1.1", "bluebird": "^3.7.2", - "body-parser": "^1.19.0", "browserslist": "^4.17.5", "cache-manager": "^2.11.1", "chalk": "^4.1.2", @@ -109,7 +108,6 @@ "graphql-compose": "^9.0.7", "graphql-playground-middleware-express": "^1.7.22", "hasha": "^5.2.2", - "http-proxy": "^1.18.1", "invariant": "^2.2.4", "is-relative": "^1.0.0", "is-relative-url": "^3.0.0", diff --git a/packages/gatsby/src/commands/develop.ts b/packages/gatsby/src/commands/develop.ts index 77dac27e248bb..5339b6b3de9ae 100644 --- a/packages/gatsby/src/commands/develop.ts +++ b/packages/gatsby/src/commands/develop.ts @@ -1,28 +1,15 @@ // NOTE(@mxstbr): Do not use the reporter in this file, as that has side-effects on import which break structured logging import path from "path" -import http from "http" -import https from "https" import tmp from "tmp" import { ChildProcess } from "child_process" import execa from "execa" -import chokidar from "chokidar" -import getRandomPort from "detect-port" import { detectPortInUseAndPrompt } from "../utils/detect-port-in-use-and-prompt" -import { Server as SocketIO } from "socket.io" import fs from "fs-extra" import onExit from "signal-exit" -import { - isCI, - slash, - createServiceLock, - getService, - updateInternalSiteMetadata, - UnlockFn, - uuid, -} from "gatsby-core-utils" +import { v4 } from "gatsby-core-utils/uuid" +import { slash } from "gatsby-core-utils/path" import reporter from "gatsby-cli/lib/reporter" import { getSslCert } from "../utils/get-ssl-cert" -import { IProxyControls, startDevelopProxy } from "../utils/develop-proxy" import { IProgram, IDebugInfo } from "./types" import { flush as telemetryFlush } from "gatsby-telemetry" @@ -41,34 +28,6 @@ const requireUncached = (file: string): any => { } } -// Heuristics for gatsby-config.js, as not all changes to it require a full restart to take effect -const doesConfigChangeRequireRestart = ( - lastConfig: Record, - newConfig: Record -): boolean => { - // Ignore changes to siteMetadata - const replacer = (_, v): string | void => { - if (typeof v === `function` || v instanceof RegExp) { - return v.toString() - } else { - return v - } - } - - const oldConfigString = JSON.stringify( - { ...lastConfig, siteMetadata: null }, - replacer - ) - const newConfigString = JSON.stringify( - { ...newConfig, siteMetadata: null }, - replacer - ) - - if (oldConfigString === newConfigString) return false - - return true -} - // Return a user-supplied port otherwise the default Node.js debugging port const getDebugPort = (port?: number): number => port ?? 9229 @@ -200,7 +159,7 @@ const REGEX_IP = module.exports = async (program: IProgram): Promise => { global.__GATSBY = { - buildId: uuid.v4(), + buildId: v4(), root: program.directory, } @@ -208,9 +167,6 @@ module.exports = async (program: IProgram): Promise => { // So we want to early just force it to a number to ensure we always act on a correct type. program.port = parseInt(program.port + ``, 10) const developProcessPath = slash(require.resolve(`./develop-process`)) - const telemetryServerPath = slash( - require.resolve(`../utils/telemetry-server`) - ) try { program.port = await detectPortInUseAndPrompt(program.port) @@ -224,27 +180,15 @@ module.exports = async (program: IProgram): Promise => { // Run the actual develop server on a random port, and the proxy on the program port // which users will access - const proxyPort = program.port const debugInfo = getDebugInfo(program) const rootFile = (file: string): string => path.join(program.directory, file) // Require gatsby-config.js before accessing process.env, to enable the user to change // environment variables from the config file. - let lastConfig = requireUncached(rootFile(`gatsby-config`)) - - // INTERNAL_STATUS_PORT allows for setting the websocket port used for monitoring - // when the browser should prompt the user to restart the develop process. - // This port is randomized by default and in most cases should never be required to configure. - // It is exposed for environments where port access needs to be explicit, such as with Docker. - // As the port is meant for internal usage only, any attempt to interface with features - // it exposes via third-party software is not supported. - const [statusServerPort, developPort, telemetryServerPort] = - await Promise.all([ - getRandomPort(process.env.INTERNAL_STATUS_PORT), - getRandomPort(), - getRandomPort(), - ]) + requireUncached(rootFile(`gatsby-config`)) + + const developPort = program.port // In order to enable custom ssl, --cert-file --key-file and -https flags must all be // used together @@ -284,21 +228,14 @@ module.exports = async (program: IProgram): Promise => { } } - // NOTE(@mxstbr): We need to start the develop proxy before the develop process to ensure - // codesandbox detects the right port to expose by default - const proxy = startDevelopProxy({ - proxyPort: proxyPort, - targetPort: developPort, - program, - }) - const developProcess = new ControllableScript( ` const cmd = require(${JSON.stringify(developProcessPath)}); const args = ${JSON.stringify({ ...program, port: developPort, - proxyPort, + // TODO(v5): remove + proxyPort: developPort, // Don't pass SSL options down to the develop process, it should always use HTTP ssl: null, debugInfo, @@ -308,106 +245,17 @@ module.exports = async (program: IProgram): Promise => { debugInfo ) - const telemetryServerProcess = new ControllableScript( - `require(${JSON.stringify(telemetryServerPath)}).default(${JSON.stringify( - telemetryServerPort - )})`, - null - ) - - let unlocks: Array = [] - if (!isCI()) { - const statusUnlock = await createServiceLock( - program.directory, - `developstatusserver`, - { - port: statusServerPort, - } - ) - const developUnlock = await createServiceLock( - program.directory, - `developproxy`, - { - port: proxyPort, - } - ) - const telemetryUnlock = await createServiceLock( - program.directory, - `telemetryserver`, - { - port: telemetryServerPort, - } - ) - await updateInternalSiteMetadata({ - name: program.sitePackageJson.name, - sitePath: program.directory, - pid: process.pid, - lastRun: Date.now(), - }) - - if (!statusUnlock || !developUnlock) { - const data = await getService(program.directory, `developproxy`) - const port = data?.port || 8000 - console.error( - `Looks like develop for this site is already running, can you visit ${ - program.ssl ? `https:` : `http:` - }//localhost:${port} ? If it is not, try again in five seconds!` - ) - process.exit(1) - } - - unlocks = unlocks.concat([statusUnlock, developUnlock, telemetryUnlock]) - } - - const statusServer = program.ssl - ? https.createServer(program.ssl) - : http.createServer() - statusServer.listen(statusServerPort) - - const io = new SocketIO(statusServer, { - // whitelist all (https://github.com/expressjs/cors#configuration-options) - cors: { - origin: true, - }, - cookie: true, - }) - const handleChildProcessIPC = (msg): void => { if (msg.type === `HEARTBEAT`) return if (process.send) { // Forward IPC process.send(msg) } - - io.emit(`structured-log`, msg) - - if ( - msg.type === `LOG_ACTION` && - msg.action.type === `SET_STATUS` && - msg.action.payload === `SUCCESS` - ) { - proxy.serveSite() - } } - io.on(`connection`, socket => { - socket.on(`develop:restart`, async respond => { - isRestarting = true - proxy.serveRestartingScreen() - // respond() responds to the client, which in our case prompts it to reload the page to show the restarting screen - if (respond) respond(`develop:is-starting`) - await developProcess.stop() - developProcess.start() - developProcess.onMessage(handleChildProcessIPC) - isRestarting = false - }) - }) - developProcess.start() developProcess.onMessage(handleChildProcessIPC) - telemetryServerProcess.start() - // Plugins can call `process.exit` which would be sent to `develop-process` (child process) // This needs to be propagated back to the parent process developProcess.onExit( @@ -440,44 +288,6 @@ module.exports = async (program: IProgram): Promise => { } ) - const files = [ - rootFile(`gatsby-config.js`), - rootFile(`gatsby-node.js`), - rootFile(`gatsby-config.ts`), - rootFile(`gatsby-node.ts`), - ] - const GATSBY_CONFIG_REGEX = /^gatsby-config\.[jt]s$/ - let watcher: chokidar.FSWatcher - - if (!isCI()) { - watcher = chokidar.watch(files).on(`change`, filePath => { - const file = path.basename(filePath) - - if (file.match(GATSBY_CONFIG_REGEX)) { - const newConfig = requireUncached(rootFile(`gatsby-config`)) - - if (!doesConfigChangeRequireRestart(lastConfig, newConfig)) { - lastConfig = newConfig - return - } - - lastConfig = newConfig - } - - console.warn( - `develop process needs to be restarted to apply the changes to ${file}` - ) - io.emit(`structured-log`, { - type: `LOG_ACTION`, - action: { - type: `DEVELOP`, - payload: `RESTART_REQUIRED`, - dirtyFile: file, - }, - }) - }) - } - // route ipc messaging to the original develop process process.on(`message`, msg => { developProcess.send(msg) @@ -487,11 +297,6 @@ module.exports = async (program: IProgram): Promise => { await shutdownServices( { developProcess, - telemetryServerProcess, - unlocks, - statusServer, - proxy, - watcher, }, `SIGINT` ) @@ -503,11 +308,6 @@ module.exports = async (program: IProgram): Promise => { await shutdownServices( { developProcess, - telemetryServerProcess, - unlocks, - statusServer, - proxy, - watcher, }, `SIGTERM` ) @@ -519,11 +319,6 @@ module.exports = async (program: IProgram): Promise => { shutdownServices( { developProcess, - telemetryServerProcess, - unlocks, - statusServer, - proxy, - watcher, }, signal as NodeJS.Signals ) @@ -531,23 +326,11 @@ module.exports = async (program: IProgram): Promise => { } interface IShutdownServicesOptions { - statusServer: https.Server | http.Server developProcess: ControllableScript - proxy: IProxyControls - unlocks: Array - watcher: chokidar.FSWatcher - telemetryServerProcess: ControllableScript } function shutdownServices( - { - statusServer, - developProcess, - proxy, - unlocks, - watcher, - telemetryServerProcess, - }: IShutdownServicesOptions, + { developProcess }: IShutdownServicesOptions, signal: NodeJS.Signals ): Promise { try { @@ -555,19 +338,7 @@ function shutdownServices( } catch (e) { // nop } - const services = [ - developProcess.stop(signal), - telemetryServerProcess.stop(), - watcher?.close(), - new Promise(resolve => statusServer.close(resolve)), - new Promise(resolve => proxy.server.close(resolve)), - ] - - unlocks.forEach(unlock => { - if (unlock) { - services.push(unlock()) - } - }) + const services = [developProcess.stop(signal)] return Promise.all(services) .catch(() => {}) diff --git a/packages/gatsby/src/commands/types.ts b/packages/gatsby/src/commands/types.ts index 1cc9c692aef7c..f495700bac099 100644 --- a/packages/gatsby/src/commands/types.ts +++ b/packages/gatsby/src/commands/types.ts @@ -19,6 +19,7 @@ export interface IProgram { open: boolean openTracingConfigFile: string port: number + // TODO(v5): remove proxyPort: number host: string report: Reporter diff --git a/packages/gatsby/src/internal-plugins/internal-data-bridge/gatsby-node.js b/packages/gatsby/src/internal-plugins/internal-data-bridge/gatsby-node.js index 50a6943b1dc3e..73b0ed335adba 100644 --- a/packages/gatsby/src/internal-plugins/internal-data-bridge/gatsby-node.js +++ b/packages/gatsby/src/internal-plugins/internal-data-bridge/gatsby-node.js @@ -80,7 +80,7 @@ exports.sourceNodes = ({ siteMetadata: { ...configCopy.siteMetadata, }, - port: program.proxyPort, + port: program.port, host: program.host, ...configCopy, } diff --git a/packages/gatsby/src/services/start-webpack-server.ts b/packages/gatsby/src/services/start-webpack-server.ts index 2f35c46626538..444256798a896 100644 --- a/packages/gatsby/src/services/start-webpack-server.ts +++ b/packages/gatsby/src/services/start-webpack-server.ts @@ -74,7 +74,7 @@ export async function startWebpackServer({ const urls = prepareUrls( program.https ? `https` : `http`, program.host, - program.proxyPort + program.port ) const isSuccessful = !stats.hasErrors() diff --git a/packages/gatsby/src/utils/develop-proxy.ts b/packages/gatsby/src/utils/develop-proxy.ts deleted file mode 100644 index dc1aaef7c1735..0000000000000 --- a/packages/gatsby/src/utils/develop-proxy.ts +++ /dev/null @@ -1,84 +0,0 @@ -import http from "http" -import https from "https" -import httpProxy from "http-proxy" -import fs from "fs-extra" -import { getServices } from "gatsby-core-utils" -import restartingScreen from "./restarting-screen" -import { IProgram } from "../commands/types" - -export interface IProxyControls { - serveRestartingScreen: () => void - serveSite: () => void - server: https.Server | http.Server -} - -const noop = (): void => {} - -export const startDevelopProxy = (input: { - proxyPort: number - targetPort: number - program: IProgram -}): IProxyControls => { - let shouldServeRestartingScreen = false - - const proxy = httpProxy.createProxyServer({ - target: `http://localhost:${input.targetPort}`, - changeOrigin: true, - preserveHeaderKeyCase: true, - autoRewrite: true, - ws: true, - }) - - // Noop on proxy errors, as this throws a bunch of "Socket hang up" - // ones whenever the page is refreshed - proxy.on(`error`, noop) - - const app: http.RequestListener = (req, res): void => { - // Add a route at localhost:8000/___services for service discovery - if (req.url === `/___services`) { - getServices(input.program.directory).then(services => { - res.setHeader(`Content-Type`, `application/json`) - res.end(JSON.stringify(services)) - }) - return - } - - if (req.url === `/socket.io/socket.io.js`) { - res.setHeader(`Content-Type`, `application/javascript`) - res.end( - fs.readFileSync(require.resolve(`socket.io-client/dist/socket.io.js`)) - ) - return - } - - if ( - shouldServeRestartingScreen || - req.url === `/___debug-restarting-screen` - ) { - res.end(restartingScreen) - return - } - - proxy.web(req, res) - } - - const server = input.program.ssl - ? https.createServer(input.program.ssl, app) - : http.createServer(app) - - server.on(`upgrade`, function (req, socket, head) { - proxy.ws(req, socket, head) - }) - - server.listen(input.proxyPort, input.program.host) - - return { - server, - serveRestartingScreen: (): void => { - shouldServeRestartingScreen = true - }, - serveSite: (): void => { - shouldServeRestartingScreen = false - }, - } -} diff --git a/packages/gatsby/src/utils/graphql-typegen/file-writes.ts b/packages/gatsby/src/utils/graphql-typegen/file-writes.ts index 459552d07b2d3..04a4b80f6d5f5 100644 --- a/packages/gatsby/src/utils/graphql-typegen/file-writes.ts +++ b/packages/gatsby/src/utils/graphql-typegen/file-writes.ts @@ -31,7 +31,7 @@ export async function writeGraphQLConfig( endpoints: { default: { url: `${program.https ? `https://` : `http://`}${program.host}:${ - program.proxyPort + program.port }/___graphql`, }, }, diff --git a/packages/gatsby/src/utils/restarting-screen.ts b/packages/gatsby/src/utils/restarting-screen.ts deleted file mode 100644 index e42095a351b34..0000000000000 --- a/packages/gatsby/src/utils/restarting-screen.ts +++ /dev/null @@ -1,128 +0,0 @@ -// noop fn to be used as a tagged template literal for code highlighting and prettier formatting -const html = (html: TemplateStringsArray): string => html.join(`\n`) - -export default html` - - - Restarting... - - - - -
- -

Gatsby is restarting the develop server...

- - -
- - -` diff --git a/packages/gatsby/src/utils/telemetry-server.ts b/packages/gatsby/src/utils/telemetry-server.ts deleted file mode 100644 index 65bdda74dcead..0000000000000 --- a/packages/gatsby/src/utils/telemetry-server.ts +++ /dev/null @@ -1,68 +0,0 @@ -/* - * This exposes gatsby-telemetry functions over HTTP. POST an array of arguments to the path. - * For example: - * curl -X POST http://localhost:2345/setVersion - * -H "Content-Type: application/json" - * -d "[\"1.2.3\"]" - */ -import express from "express" -import bodyParser from "body-parser" -import cors from "cors" -import { - setDefaultComponentId, - trackCli, - trackError, - startBackgroundUpdate, -} from "gatsby-telemetry" - -setDefaultComponentId(`gatsby-admin`) - -// These routes will exist in the API at the keys, e.g. -// http://localhost:1234/trackEvent -const ROUTES = { - trackEvent: trackCli, - trackError, -} - -const app = express() - -app.use(cors()) - -// Overview over all possible routes at / -app.get(`/`, (_, res) => { - res.set(`Content-Type`, `text/html`) - res.send( - `
    - ${Object.keys(ROUTES) - .map(route => `
  • /${route}
  • `) - .join(`\n`)} -
` - ) -}) - -Object.keys(ROUTES).map(route => { - app.post(`/${route}`, bodyParser.json(), (req, res) => { - if (!req.body || !Array.isArray(req.body)) { - res.json({ - status: `error`, - error: `Please provide a body array with the arguments for the function.`, - }) - return - } - - try { - ROUTES[route](...req.body) - } catch (err) { - console.error(err) - res.json({ status: `error`, error: err.message }) - return - } - - res.json({ status: `success` }) - }) -}) - -export default function startTelemetryServer(port: number): void { - startBackgroundUpdate() - app.listen(port) -} diff --git a/yarn.lock b/yarn.lock index 1887b60a2839f..b8d3888b322d2 100644 --- a/yarn.lock +++ b/yarn.lock @@ -6632,7 +6632,7 @@ body-parser@1.19.0: raw-body "2.4.0" type-is "~1.6.17" -body-parser@^1.19.0, body-parser@^1.20.0: +body-parser@^1.20.0: version "1.20.0" resolved "https://registry.yarnpkg.com/body-parser/-/body-parser-1.20.0.tgz#3de69bd89011c11573d7bfee6a64f11b6bd27cc5" integrity sha512-DfJ+q6EPcGKZD1QWUjSpqp+Q7bDQTsQIF4zfUAtZ6qk+H/3/QRhg9CEp39ss+/T2vw0+HaidC0ecJj/DRLIaKg== @@ -10554,7 +10554,7 @@ eventemitter3@^3.1.0: resolved "https://registry.yarnpkg.com/eventemitter3/-/eventemitter3-3.1.2.tgz#2d3d48f9c346698fce83a85d7d664e98535df6e7" integrity sha512-tvtQIeLVHjDkJYnzf2dgVMxfuSGJeM/7UCG17TT4EumTfNtF+0nebF/4zWOIkCreAbtNqhGEboB6BWrwqNaw4Q== -eventemitter3@^4.0.0, eventemitter3@^4.0.4: +eventemitter3@^4.0.4: version "4.0.7" resolved "https://registry.yarnpkg.com/eventemitter3/-/eventemitter3-4.0.7.tgz#2de9b68f6528d5644ef5c59526a1b4a07306169f" integrity sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw== @@ -11220,7 +11220,7 @@ flush-write-stream@^1.0.0, flush-write-stream@^1.0.2: inherits "^2.0.1" readable-stream "^2.0.4" -follow-redirects@^1.0.0, follow-redirects@^1.10.0: +follow-redirects@^1.10.0: version "1.13.0" resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.13.0.tgz#b42e8d93a2a7eea5ed88633676d6597bc8e384db" integrity sha512-aq6gF1BEKje4a9i9+5jimNFIpq4Q1WiwBToeRK5NvZBd/TRsmW8BsJfOEGkr76TbOyPVD3OVDN910EcUNtRYEA== @@ -12870,15 +12870,6 @@ http-proxy-agent@^4.0.1: agent-base "6" debug "4" -http-proxy@^1.18.1: - version "1.18.1" - resolved "https://registry.yarnpkg.com/http-proxy/-/http-proxy-1.18.1.tgz#401541f0534884bbf95260334e72f88ee3976549" - integrity sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ== - dependencies: - eventemitter3 "^4.0.0" - follow-redirects "^1.0.0" - requires-port "^1.0.0" - http-response-object@^1.0.0, http-response-object@^1.0.1, http-response-object@^1.1.0: version "1.1.0" resolved "https://registry.yarnpkg.com/http-response-object/-/http-response-object-1.1.0.tgz#a7c4e75aae82f3bb4904e4f43f615673b4d518c3" @@ -21512,10 +21503,6 @@ require-package-name@^2.0.1: version "2.0.1" resolved "https://registry.yarnpkg.com/require-package-name/-/require-package-name-2.0.1.tgz#c11e97276b65b8e2923f75dabf5fb2ef0c3841b9" -requires-port@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/requires-port/-/requires-port-1.0.0.tgz#925d2601d39ac485e091cf0da5c6e694dc3dcaff" - reselect@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/reselect/-/reselect-4.0.0.tgz#f2529830e5d3d0e021408b246a206ef4ea4437f7" From fda356c9553046ad65333da10ef3d7503195e429 Mon Sep 17 00:00:00 2001 From: Robin <1105080+openscript@users.noreply.github.com> Date: Tue, 12 Jul 2022 19:53:37 +0200 Subject: [PATCH 21/90] chore(docs): update jest.config.js (#36049) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit When I run `jest` with the proposed configuration I get this warning: ● Deprecation Warning: Option "testURL" was replaced by passing the URL via "testEnvironmentOptions.url". Please update your configuration. Configuration Documentation: https://jestjs.io/docs/configuration --- docs/docs/how-to/testing/unit-testing.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/docs/how-to/testing/unit-testing.md b/docs/docs/how-to/testing/unit-testing.md index 5b1f05c4ba8ba..1f7582bb464b7 100644 --- a/docs/docs/how-to/testing/unit-testing.md +++ b/docs/docs/how-to/testing/unit-testing.md @@ -54,7 +54,9 @@ module.exports = { globals: { __PATH_PREFIX__: ``, }, - testURL: `http://localhost`, + testEnvironmentOptions: { + url: `http://localhost`, + }, setupFiles: [`/loadershim.js`], } ``` From 766fa0ec65267d749fa1856ddbca96b925c4faa1 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 13 Jul 2022 06:42:00 +0200 Subject: [PATCH 22/90] fix(deps): update starters and examples - gatsby (#36111) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- starters/blog/package-lock.json | 615 +++++++--------- starters/blog/package.json | 22 +- starters/default/package-lock.json | 591 +++++++-------- starters/default/package.json | 16 +- .../package-lock.json | 639 +++++++---------- .../package.json | 2 +- .../package-lock.json | 637 +++++++---------- .../gatsby-starter-blog-theme/package.json | 2 +- .../package-lock.json | 511 ++++++------- .../gatsby-starter-minimal-ts/package.json | 2 +- .../gatsby-starter-minimal/package-lock.json | 523 ++++++-------- starters/gatsby-starter-minimal/package.json | 2 +- .../package-lock.json | 675 ++++++++---------- .../gatsby-starter-notes-theme/package.json | 2 +- .../example/package.json | 2 +- .../gatsby-starter-theme/package-lock.json | 643 ++++++++--------- starters/gatsby-starter-theme/package.json | 2 +- .../package-lock.json | 640 ++++++++--------- .../package.json | 14 +- starters/hello-world/package-lock.json | 523 ++++++-------- starters/hello-world/package.json | 2 +- 21 files changed, 2621 insertions(+), 3444 deletions(-) diff --git a/starters/blog/package-lock.json b/starters/blog/package-lock.json index d5fa0d3d05d21..dc4736aad94da 100644 --- a/starters/blog/package-lock.json +++ b/starters/blog/package-lock.json @@ -61,9 +61,9 @@ } }, "@babel/compat-data": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.18.6.tgz", - "integrity": "sha512-tzulrgDT0QD6U7BJ4TKVk2SDDg7wlP39P9yAx1RfLy7vP/7rsDRlWVfbWxElslu56+r7QOhB2NSDsabYYruoZQ==" + "version": "7.18.8", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.18.8.tgz", + "integrity": "sha512-HSmX4WZPPK3FUxYp7g2T6EyO8j96HlZJlxmKPSh6KAcqwyDrfx7hKjXpAW/0FhFfTJsR0Yt4lAjLI2coMptIHQ==" }, "@babel/core": { "version": "7.18.6", @@ -276,9 +276,9 @@ } }, "@babel/helper-module-transforms": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.18.6.tgz", - "integrity": "sha512-L//phhB4al5uucwzlimruukHB3jRd5JGClwRMD/ROrVjXfLqovYnvQrK/JK36WYyVwGGO7OD3kMyVTjx+WVPhw==", + "version": "7.18.8", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.18.8.tgz", + "integrity": "sha512-che3jvZwIcZxrwh63VfnFTUzcAM9v/lznYkkRxIBGMPt1SudOKHAEec0SIRCfiuIzTcF7VGj/CaTT6gY4eWxvA==", "requires": { "@babel/helper-environment-visitor": "^7.18.6", "@babel/helper-module-imports": "^7.18.6", @@ -286,8 +286,8 @@ "@babel/helper-split-export-declaration": "^7.18.6", "@babel/helper-validator-identifier": "^7.18.6", "@babel/template": "^7.18.6", - "@babel/traverse": "^7.18.6", - "@babel/types": "^7.18.6" + "@babel/traverse": "^7.18.8", + "@babel/types": "^7.18.8" } }, "@babel/helper-optimise-call-expression": { @@ -404,9 +404,9 @@ } }, "@babel/parser": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.18.6.tgz", - "integrity": "sha512-uQVSa9jJUe/G/304lXspfWVpKpK4euFLgGiMQFOCpM/bgcAdeoHwi/OQz23O9GK2osz26ZiXRRV9aV+Yl1O8tw==" + "version": "7.18.8", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.18.8.tgz", + "integrity": "sha512-RSKRfYX20dyH+elbJK2uqAkVyucL+xXzhqlMD5/ZXx+dAAwpyB7HsvnHe/ZUGOF+xLr5Wx9/JoXVTj6BQE2/oA==" }, "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": { "version": "7.18.6", @@ -749,9 +749,9 @@ } }, "@babel/plugin-transform-classes": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.18.6.tgz", - "integrity": "sha512-XTg8XW/mKpzAF3actL554Jl/dOYoJtv3l8fxaEczpgz84IeeVf+T1u2CSvPHuZbt0w3JkIx4rdn/MRQI7mo0HQ==", + "version": "7.18.8", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.18.8.tgz", + "integrity": "sha512-RySDoXdF6hgHSHuAW4aLGyVQdmvEX/iJtjVre52k0pxRq4hzqze+rAVP++NmNv596brBpYmaiKgTZby7ziBnVg==", "requires": { "@babel/helper-annotate-as-pure": "^7.18.6", "@babel/helper-environment-visitor": "^7.18.6", @@ -815,9 +815,9 @@ } }, "@babel/plugin-transform-for-of": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.18.6.tgz", - "integrity": "sha512-WAjoMf4wIiSsy88KmG7tgj2nFdEK7E46tArVtcgED7Bkj6Fg/tG5SbvNIOKxbFS2VFgNh6+iaPswBeQZm4ox8w==", + "version": "7.18.8", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.18.8.tgz", + "integrity": "sha512-yEfTRnjuskWYo0k1mHUqrVWaZwrdq8AYbfrpqULOJOaucGSp4mNMVps+YtA8byoevxS/urwU75vyhQIxcCgiBQ==", "requires": { "@babel/helper-plugin-utils": "^7.18.6" } @@ -917,9 +917,9 @@ } }, "@babel/plugin-transform-parameters": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.18.6.tgz", - "integrity": "sha512-FjdqgMv37yVl/gwvzkcB+wfjRI8HQmc5EgOG9iGNvUY1ok+TjsoaMP7IqCDZBhkFcM5f3OPVMs6Dmp03C5k4/A==", + "version": "7.18.8", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.18.8.tgz", + "integrity": "sha512-ivfbE3X2Ss+Fj8nnXvKJS6sjRG4gzwPMsP+taZC+ZzEGjAYlvENixmt1sZ5Ca6tWls+BlKSGKPJ6OOXvXCbkFg==", "requires": { "@babel/helper-plugin-utils": "^7.18.6" } @@ -1048,9 +1048,9 @@ } }, "@babel/plugin-transform-typescript": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.18.6.tgz", - "integrity": "sha512-ijHNhzIrLj5lQCnI6aaNVRtGVuUZhOXFLRVFs7lLrkXTHip4FKty5oAuQdk4tywG0/WjXmjTfQCWmuzrvFer1w==", + "version": "7.18.8", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.18.8.tgz", + "integrity": "sha512-p2xM8HI83UObjsZGofMV/EdYjamsDm6MoN3hXPYIT0+gxIoopE+B7rPYKAxfrz9K9PK7JafTTjqYC6qipLExYA==", "requires": { "@babel/helper-create-class-features-plugin": "^7.18.6", "@babel/helper-plugin-utils": "^7.18.6", @@ -1226,18 +1226,18 @@ } }, "@babel/traverse": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.18.6.tgz", - "integrity": "sha512-zS/OKyqmD7lslOtFqbscH6gMLFYOfG1YPqCKfAW5KrTeolKqvB8UelR49Fpr6y93kYkW2Ik00mT1LOGiAGvizw==", + "version": "7.18.8", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.18.8.tgz", + "integrity": "sha512-UNg/AcSySJYR/+mIcJQDCv00T+AqRO7j/ZEJLzpaYtgM48rMg5MnkJgyNqkzo88+p4tfRvZJCEiwwfG6h4jkRg==", "requires": { "@babel/code-frame": "^7.18.6", - "@babel/generator": "^7.18.6", + "@babel/generator": "^7.18.7", "@babel/helper-environment-visitor": "^7.18.6", "@babel/helper-function-name": "^7.18.6", "@babel/helper-hoist-variables": "^7.18.6", "@babel/helper-split-export-declaration": "^7.18.6", - "@babel/parser": "^7.18.6", - "@babel/types": "^7.18.6", + "@babel/parser": "^7.18.8", + "@babel/types": "^7.18.8", "debug": "^4.1.0", "globals": "^11.1.0" }, @@ -1253,9 +1253,9 @@ } }, "@babel/types": { - "version": "7.18.7", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.7.tgz", - "integrity": "sha512-QG3yxTcTIBoAcQmkCs+wAPYZhu7Dk9rXKacINfNbdJDNERTbLQbHGyVG8q/YGMPeCJRIhSY0+fTc5+xuh6WPSQ==", + "version": "7.18.8", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.8.tgz", + "integrity": "sha512-qwpdsmraq0aJ3osLJRApsc2ouSJCdnMeZwB0DhbtHAtRpZNZCdlbRnHIgcRKzdE1g0iOGg644fzjOBcdOz9cPw==", "requires": { "@babel/helper-validator-identifier": "^7.18.6", "to-fast-properties": "^2.0.0" @@ -1317,13 +1317,13 @@ } }, "@gatsbyjs/parcel-namer-relative-to-cwd": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/@gatsbyjs/parcel-namer-relative-to-cwd/-/parcel-namer-relative-to-cwd-1.3.0.tgz", - "integrity": "sha512-nd1lQn7ezg51ekqZm8iZjND8akB7bsGkGe7GdIPdTwbhale2dHLqd74qg+bBrEjv5f5aFZhpJeY9XpeU4emWZQ==", + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/@gatsbyjs/parcel-namer-relative-to-cwd/-/parcel-namer-relative-to-cwd-1.3.1.tgz", + "integrity": "sha512-wN4iU1CWumvhcuzMBKdDikZ5xgo81Ias09bKyjE36DgNxTzAhT2fXZIBAAEUlv/GBQqFe6Eas83gGGtXf31hiw==", "requires": { "@babel/runtime": "^7.18.0", "@parcel/plugin": "2.6.0", - "gatsby-core-utils": "^3.18.0" + "gatsby-core-utils": "^3.18.1" } }, "@gatsbyjs/potrace": { @@ -1355,108 +1355,87 @@ } }, "@graphql-codegen/add": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/@graphql-codegen/add/-/add-3.1.1.tgz", - "integrity": "sha512-XkVwcqosa0CVBlL1HaQT0gp+EUfhuQE3LzrEpzMQLwchxaj/NPVYtOJL6MUHaYDsHzLqxWrufjfbeB3y2NQgRw==", + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/@graphql-codegen/add/-/add-3.2.0.tgz", + "integrity": "sha512-8hyr5XvTDGnpiT4nH2yH8PP4SWtUEIUdkFaZbkpkFkU0Ud9dplvSviOCdxdArffZ1FHy0XYLTMa2it+UJOtszg==", "requires": { - "@graphql-codegen/plugin-helpers": "^2.3.2", - "tslib": "~2.3.0" + "@graphql-codegen/plugin-helpers": "^2.5.0", + "tslib": "~2.4.0" } }, "@graphql-codegen/core": { - "version": "2.5.1", - "resolved": "https://registry.npmjs.org/@graphql-codegen/core/-/core-2.5.1.tgz", - "integrity": "sha512-alctBVl2hMnBXDLwkgmnFPrZVIiBDsWJSmxJcM4GKg1PB23+xuov35GE47YAyAhQItE1B1fbYnbb1PtGiDZ4LA==", + "version": "2.6.0", + "resolved": "https://registry.npmjs.org/@graphql-codegen/core/-/core-2.6.0.tgz", + "integrity": "sha512-7uZGnLCMR/pnh/5CsyI4y5bBvRndNHFs+AWpMUUjDBcjMRrMaavu37VyyYDz4/ob0BnQJt8RTBN9eArS9PLYAQ==", "requires": { - "@graphql-codegen/plugin-helpers": "^2.4.1", - "@graphql-tools/schema": "^8.1.2", - "@graphql-tools/utils": "^8.1.1", - "tslib": "~2.3.0" + "@graphql-codegen/plugin-helpers": "^2.5.0", + "@graphql-tools/schema": "^8.5.0", + "@graphql-tools/utils": "^8.8.0", + "tslib": "~2.4.0" } }, "@graphql-codegen/plugin-helpers": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/@graphql-codegen/plugin-helpers/-/plugin-helpers-2.4.2.tgz", - "integrity": "sha512-LJNvwAPv/sKtI3RnRDm+nPD+JeOfOuSOS4FFIpQCMUCyMnFcchV/CPTTv7tT12fLUpEg6XjuFfDBvOwndti30Q==", + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/@graphql-codegen/plugin-helpers/-/plugin-helpers-2.5.0.tgz", + "integrity": "sha512-0jM5/14EdM4yow5v8OGOnUmRqfA1gaWkh+J5berqQUpcFYfSQXD6+Idnkiju/jjIypEN7UvbPkC7BgryWVxexA==", "requires": { - "@graphql-tools/utils": "^8.5.2", + "@graphql-tools/utils": "^8.8.0", "change-case-all": "1.0.14", "common-tags": "1.8.2", "import-from": "4.0.0", "lodash": "~4.17.0", - "tslib": "~2.3.0" + "tslib": "~2.4.0" } }, "@graphql-codegen/schema-ast": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/@graphql-codegen/schema-ast/-/schema-ast-2.4.1.tgz", - "integrity": "sha512-bIWlKk/ShoVJfghA4Rt1OWnd34/dQmZM/vAe6fu6QKyOh44aAdqPtYQ2dbTyFXoknmu504etKJGEDllYNUJRfg==", + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/@graphql-codegen/schema-ast/-/schema-ast-2.5.0.tgz", + "integrity": "sha512-nlF4Yc7h90nmogG2E11TeFJ3/hCkb4SDMSdbJX68b1mhvVEji/kq3zWYKAQ+lAzjZ7HF94Eylm3MrZAjjpCKIA==", "requires": { - "@graphql-codegen/plugin-helpers": "^2.3.2", - "@graphql-tools/utils": "^8.1.1", - "tslib": "~2.3.0" + "@graphql-codegen/plugin-helpers": "^2.5.0", + "@graphql-tools/utils": "^8.8.0", + "tslib": "~2.4.0" } }, "@graphql-codegen/typescript": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@graphql-codegen/typescript/-/typescript-2.6.0.tgz", - "integrity": "sha512-f36ilg8J+wui0OhmQglIZ+2z4Ybc08Y7r7BlBDqfJ1F5X0zau0SlC7Hp2iCoCA0ucqZYtiUU/0n+/R8m1cTrQQ==", + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/@graphql-codegen/typescript/-/typescript-2.7.1.tgz", + "integrity": "sha512-qF4SBMgBnLcegba2s9+zC3NwgRhU0Kv+eS8kl9G5ldEHx9Bpu2tft+lk6fjqqhExDzJT+MEOU3Ecog3BzL2R1g==", "requires": { - "@graphql-codegen/plugin-helpers": "^2.4.0", - "@graphql-codegen/schema-ast": "^2.4.1", - "@graphql-codegen/visitor-plugin-common": "2.10.0", + "@graphql-codegen/plugin-helpers": "^2.5.0", + "@graphql-codegen/schema-ast": "^2.5.0", + "@graphql-codegen/visitor-plugin-common": "2.11.1", "auto-bind": "~4.0.0", "tslib": "~2.4.0" - }, - "dependencies": { - "tslib": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz", - "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==" - } } }, "@graphql-codegen/typescript-operations": { - "version": "2.4.3", - "resolved": "https://registry.npmjs.org/@graphql-codegen/typescript-operations/-/typescript-operations-2.4.3.tgz", - "integrity": "sha512-MW9cU/zCAmfFAObwW23e+GrW3CoV9OX2gVm/V1565WGZXDQPUc5Y5IjdfGfunV4ApkgFDiHpF1Mz/AS55OErgw==", + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/@graphql-codegen/typescript-operations/-/typescript-operations-2.5.1.tgz", + "integrity": "sha512-lGv+sPDXGcp/vDdIh7SoQjz8BRCZhLats4Hbqnf6gB7UtIasMvGuFDQyrKb3XAkQQYWqx/xtmEo0rBN8syV+Wg==", "requires": { - "@graphql-codegen/plugin-helpers": "^2.4.0", - "@graphql-codegen/typescript": "^2.6.0", - "@graphql-codegen/visitor-plugin-common": "2.10.0", + "@graphql-codegen/plugin-helpers": "^2.5.0", + "@graphql-codegen/typescript": "^2.7.1", + "@graphql-codegen/visitor-plugin-common": "2.11.1", "auto-bind": "~4.0.0", "tslib": "~2.4.0" - }, - "dependencies": { - "tslib": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz", - "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==" - } } }, "@graphql-codegen/visitor-plugin-common": { - "version": "2.10.0", - "resolved": "https://registry.npmjs.org/@graphql-codegen/visitor-plugin-common/-/visitor-plugin-common-2.10.0.tgz", - "integrity": "sha512-nWoxHKUdwOJCWV96Ks1x4EwYCWsZDJXB+2j6EQz5j27DzdxmQInZ86degaDCd3EgbwhMQEMtiZiPGFFDrgBkHA==", - "requires": { - "@graphql-codegen/plugin-helpers": "^2.4.0", - "@graphql-tools/optimize": "^1.0.1", - "@graphql-tools/relay-operation-optimizer": "^6.4.14", - "@graphql-tools/utils": "^8.3.0", + "version": "2.11.1", + "resolved": "https://registry.npmjs.org/@graphql-codegen/visitor-plugin-common/-/visitor-plugin-common-2.11.1.tgz", + "integrity": "sha512-AlrtGWKn2o89SPna75ATEHYAu95MUMucgBqLgcRvK9n/PHhVAbkDrNCH5pL03fE0HLOup3GpjX8DcnFBMU46IA==", + "requires": { + "@graphql-codegen/plugin-helpers": "^2.5.0", + "@graphql-tools/optimize": "^1.3.0", + "@graphql-tools/relay-operation-optimizer": "^6.5.0", + "@graphql-tools/utils": "^8.8.0", "auto-bind": "~4.0.0", "change-case-all": "1.0.14", "dependency-graph": "^0.11.0", "graphql-tag": "^2.11.0", "parse-filepath": "^1.0.2", "tslib": "~2.4.0" - }, - "dependencies": { - "tslib": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz", - "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==" - } } }, "@graphql-tools/batch-execute": { @@ -1502,13 +1481,6 @@ "globby": "^11.0.3", "tslib": "^2.4.0", "unixify": "^1.0.0" - }, - "dependencies": { - "tslib": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz", - "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==" - } } }, "@graphql-tools/delegate": { @@ -1601,13 +1573,6 @@ "@babel/types": "^7.16.8", "@graphql-tools/utils": "8.8.0", "tslib": "^2.4.0" - }, - "dependencies": { - "tslib": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz", - "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==" - } } }, "@graphql-tools/import": { @@ -1618,13 +1583,6 @@ "@graphql-tools/utils": "8.8.0", "resolve-from": "5.0.0", "tslib": "^2.4.0" - }, - "dependencies": { - "tslib": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz", - "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==" - } } }, "@graphql-tools/json-file-loader": { @@ -1678,11 +1636,6 @@ "requires": { "yocto-queue": "^0.1.0" } - }, - "tslib": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz", - "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==" } } }, @@ -1693,13 +1646,6 @@ "requires": { "@graphql-tools/utils": "8.8.0", "tslib": "^2.4.0" - }, - "dependencies": { - "tslib": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz", - "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==" - } } }, "@graphql-tools/optimize": { @@ -1708,13 +1654,6 @@ "integrity": "sha512-30QOWJoMJEt1De7tAFtWJ6VPrP6SLq+tSQrA3x+WMvCW3q2exq5wPDpvAXOakVKu0y8L2E+YkipC0hcQPBQdLg==", "requires": { "tslib": "^2.4.0" - }, - "dependencies": { - "tslib": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz", - "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==" - } } }, "@graphql-tools/relay-operation-optimizer": { @@ -1725,13 +1664,6 @@ "@ardatan/relay-compiler": "12.0.0", "@graphql-tools/utils": "8.8.0", "tslib": "^2.4.0" - }, - "dependencies": { - "tslib": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz", - "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==" - } } }, "@graphql-tools/schema": { @@ -1743,13 +1675,6 @@ "@graphql-tools/utils": "8.8.0", "tslib": "^2.4.0", "value-or-promise": "1.0.11" - }, - "dependencies": { - "tslib": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz", - "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==" - } } }, "@graphql-tools/url-loader": { @@ -1814,13 +1739,6 @@ "integrity": "sha512-KJrtx05uSM/cPYFdTnGAS1doL5bftJLAiFCDMZ8Vkifztz3BFn3gpFiy/o4wDtM8s39G46mxmt2Km/RmeltfGw==", "requires": { "tslib": "^2.4.0" - }, - "dependencies": { - "tslib": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz", - "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==" - } } }, "@graphql-tools/wrap": { @@ -2284,9 +2202,9 @@ } }, "@jridgewell/resolve-uri": { - "version": "3.0.8", - "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.0.8.tgz", - "integrity": "sha512-YK5G9LaddzGbcucK4c8h5tWFmMPBvRZ/uyWmN1/SbBdIvqGUdWGkJ5BAaccgs6XbzVLsqbPJrBSFwKv3kT9i7w==" + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz", + "integrity": "sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==" }, "@jridgewell/set-array": { "version": "1.1.2", @@ -2342,39 +2260,39 @@ } }, "@lmdb/lmdb-darwin-arm64": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-arm64/-/lmdb-darwin-arm64-2.5.2.tgz", - "integrity": "sha512-+F8ioQIUN68B4UFiIBYu0QQvgb9FmlKw2ctQMSBfW2QBrZIxz9vD9jCGqTCPqZBRbPHAS/vG1zSXnKqnS2ch/A==", + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-arm64/-/lmdb-darwin-arm64-2.5.3.tgz", + "integrity": "sha512-RXwGZ/0eCqtCY8FLTM/koR60w+MXyvBUpToXiIyjOcBnC81tAlTUHrRUavCEWPI9zc9VgvpK3+cbumPyR8BSuA==", "optional": true }, "@lmdb/lmdb-darwin-x64": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-x64/-/lmdb-darwin-x64-2.5.2.tgz", - "integrity": "sha512-KvPH56KRLLx4KSfKBx0m1r7GGGUMXm0jrKmNE7plbHlesZMuPJICtn07HYgQhj1LNsK7Yqwuvnqh1QxhJnF1EA==", + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-x64/-/lmdb-darwin-x64-2.5.3.tgz", + "integrity": "sha512-337dNzh5yCdNCTk8kPfoU7jR3otibSlPDGW0vKZT97rKnQMb9tNdto3RtWoGPsQ8hKmlRZpojOJtmwjncq1MoA==", "optional": true }, "@lmdb/lmdb-linux-arm": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm/-/lmdb-linux-arm-2.5.2.tgz", - "integrity": "sha512-5kQAP21hAkfW5Bl+e0P57dV4dGYnkNIpR7f/GAh6QHlgXx+vp/teVj4PGRZaKAvt0GX6++N6hF8NnGElLDuIDw==", + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm/-/lmdb-linux-arm-2.5.3.tgz", + "integrity": "sha512-mU2HFJDGwECkoD9dHQEfeTG5mp8hNS2BCfwoiOpVPMeapjYpQz9Uw3FkUjRZ4dGHWKbin40oWHuL0bk2bCx+Sg==", "optional": true }, "@lmdb/lmdb-linux-arm64": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm64/-/lmdb-linux-arm64-2.5.2.tgz", - "integrity": "sha512-aLl89VHL/wjhievEOlPocoefUyWdvzVrcQ/MHQYZm2JfV1jUsrbr/ZfkPPUFvZBf+VSE+Q0clWs9l29PCX1hTQ==", + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm64/-/lmdb-linux-arm64-2.5.3.tgz", + "integrity": "sha512-VJw60Mdgb4n+L0fO1PqfB0C7TyEQolJAC8qpqvG3JoQwvyOv6LH7Ib/WE3wxEW9nuHmVz9jkK7lk5HfWWgoO1Q==", "optional": true }, "@lmdb/lmdb-linux-x64": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-x64/-/lmdb-linux-x64-2.5.2.tgz", - "integrity": "sha512-xUdUfwDJLGjOUPH3BuPBt0NlIrR7f/QHKgu3GZIXswMMIihAekj2i97oI0iWG5Bok/b+OBjHPfa8IU9velnP/Q==", + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-x64/-/lmdb-linux-x64-2.5.3.tgz", + "integrity": "sha512-qaReO5aV8griBDsBr8uBF/faO3ieGjY1RY4p8JvTL6Mu1ylLrTVvOONqKFlNaCwrmUjWw5jnf7VafxDAeQHTow==", "optional": true }, "@lmdb/lmdb-win32-x64": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-win32-x64/-/lmdb-win32-x64-2.5.2.tgz", - "integrity": "sha512-zrBczSbXKxEyK2ijtbRdICDygRqWSRPpZMN5dD1T8VMEW5RIhIbwFWw2phDRXuBQdVDpSjalCIUMWMV2h3JaZA==", + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-win32-x64/-/lmdb-win32-x64-2.5.3.tgz", + "integrity": "sha512-cK+Elf3RjEzrm3SerAhrFWL5oQAsZSJ/LmjL1joIpTfEP1etJJ9CTRvdaV6XLYAxaEkfdhk/9hOvHLbR9yIhCA==", "optional": true }, "@microsoft/fetch-event-source": { @@ -2976,13 +2894,6 @@ "integrity": "sha512-tb7Iu+oZ+zWJZ3HJqwx8oNwSDIU440hmVMDPhpACWQWnrZHK99Bxs70gT1L2dnr5Hg50ZRWEFkQCAnOVVV0z1Q==", "requires": { "tslib": "^2.4.0" - }, - "dependencies": { - "tslib": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz", - "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==" - } } }, "@szmarczak/http-timer": { @@ -3165,9 +3076,9 @@ } }, "@types/node": { - "version": "18.0.1", - "resolved": "https://registry.npmjs.org/@types/node/-/node-18.0.1.tgz", - "integrity": "sha512-CmR8+Tsy95hhwtZBKJBs0/FFq4XX7sDZHlGGf+0q+BRZfMbOTkzkj0AFAuTyXbObDIoanaBBW0+KEW+m3N16Wg==" + "version": "18.0.3", + "resolved": "https://registry.npmjs.org/@types/node/-/node-18.0.3.tgz", + "integrity": "sha512-HzNRZtp4eepNitP+BD6k2L6DROIDG4Q0fm4x+dwfsr6LGmROENnok75VGw40628xf+iR24WeMFcHuuBDUAzzsQ==" }, "@types/node-fetch": { "version": "2.6.2", @@ -3219,9 +3130,9 @@ } }, "@types/react": { - "version": "18.0.14", - "resolved": "https://registry.npmjs.org/@types/react/-/react-18.0.14.tgz", - "integrity": "sha512-x4gGuASSiWmo0xjDLpm5mPb52syZHJx02VKbqUKdLmKtAwIh63XClGsiTI1K6DO5q7ox4xAsQrU+Gl3+gGXF9Q==", + "version": "18.0.15", + "resolved": "https://registry.npmjs.org/@types/react/-/react-18.0.15.tgz", + "integrity": "sha512-iz3BtLuIYH1uWdsv6wXYdhozhqj20oD4/Hk2DNXIn1kFsmp9x8d9QB6FnPhfkbhd2PgEONt9Q1x/ebkwjfFLow==", "requires": { "@types/prop-types": "*", "@types/scheduler": "*", @@ -3938,12 +3849,12 @@ } }, "babel-plugin-remove-graphql-queries": { - "version": "4.18.0", - "resolved": "https://registry.npmjs.org/babel-plugin-remove-graphql-queries/-/babel-plugin-remove-graphql-queries-4.18.0.tgz", - "integrity": "sha512-6oOm/cTZdk+7yPh4R4ISLKNur3rK5w2zAUCXTOGKYcRYbvKCS22ODafQBrNcu/UdfpXwSz3XZOG5ru72Z5usUw==", + "version": "4.18.1", + "resolved": "https://registry.npmjs.org/babel-plugin-remove-graphql-queries/-/babel-plugin-remove-graphql-queries-4.18.1.tgz", + "integrity": "sha512-2I7qsm3pnyvrS6/Q9YuHK1SpfQLmrgYH/AjpnWpnLHee6SiVb5Te89iphhpBdycpBRVGWh04ram9+z/1rMaRYQ==", "requires": { "@babel/runtime": "^7.15.4", - "gatsby-core-utils": "^3.18.0" + "gatsby-core-utils": "^3.18.1" } }, "babel-plugin-syntax-object-rest-spread": { @@ -4005,9 +3916,9 @@ } }, "babel-preset-gatsby": { - "version": "2.18.0", - "resolved": "https://registry.npmjs.org/babel-preset-gatsby/-/babel-preset-gatsby-2.18.0.tgz", - "integrity": "sha512-b6BJEl0MlA/nh+IkTJRgvPEgdN09Pu34Szo5dE4QYvQa66++EqfQUK5huqr+FgZJedPPYYbRY2SgKlRXev5QIQ==", + "version": "2.18.1", + "resolved": "https://registry.npmjs.org/babel-preset-gatsby/-/babel-preset-gatsby-2.18.1.tgz", + "integrity": "sha512-oaVV6ULceMjTQKjCA06qvgfLwBNZFJxpacwNZYOJpLygmj+qYiNKDGhJ8vTw/KAIUeDPZAbPMP5P+3wMEPIWYQ==", "requires": { "@babel/plugin-proposal-class-properties": "^7.14.0", "@babel/plugin-proposal-nullish-coalescing-operator": "^7.14.5", @@ -4022,7 +3933,7 @@ "babel-plugin-dynamic-import-node": "^2.3.3", "babel-plugin-macros": "^3.1.0", "babel-plugin-transform-react-remove-prop-types": "^0.4.24", - "gatsby-core-utils": "^3.18.0", + "gatsby-core-utils": "^3.18.1", "gatsby-legacy-polyfills": "^2.18.0" } }, @@ -4392,9 +4303,9 @@ } }, "caniuse-lite": { - "version": "1.0.30001363", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001363.tgz", - "integrity": "sha512-HpQhpzTGGPVMnCjIomjt+jvyUu8vNFo3TaDiZ/RcoTrlOq/5+tC8zHdsbgFB6MxmaY+jCpsH09aD80Bb4Ow3Sg==" + "version": "1.0.30001365", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001365.tgz", + "integrity": "sha512-VDQZ8OtpuIPMBA4YYvZXECtXbddMCUFJk1qu8Mqxfm/SZJNSr1cy4IuLCOL7RJ/YASrvJcYg1Zh+UEUQ5m6z8Q==" }, "capital-case": { "version": "1.0.4", @@ -5049,16 +4960,16 @@ "integrity": "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==" }, "core-js": { - "version": "3.23.3", - "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.23.3.tgz", - "integrity": "sha512-oAKwkj9xcWNBAvGbT//WiCdOMpb9XQG92/Fe3ABFM/R16BsHgePG00mFOgKf7IsCtfj8tA1kHtf/VwErhriz5Q==" + "version": "3.23.4", + "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.23.4.tgz", + "integrity": "sha512-vjsKqRc1RyAJC3Ye2kYqgfdThb3zYnx9CrqoCcjMOENMtQPC7ZViBvlDxwYU/2z2NI/IPuiXw5mT4hWhddqjzQ==" }, "core-js-compat": { - "version": "3.23.3", - "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.23.3.tgz", - "integrity": "sha512-WSzUs2h2vvmKsacLHNTdpyOC9k43AEhcGoFlVgCY4L7aw98oSBKtPL6vD0/TqZjRWRQYdDSLkzZIni4Crbbiqw==", + "version": "3.23.4", + "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.23.4.tgz", + "integrity": "sha512-RkSRPe+JYEoflcsuxJWaiMPhnZoFS51FcIxm53k4KzhISCBTmaGlto9dTIrYuk0hnJc3G6pKufAKepHnBq6B6Q==", "requires": { - "browserslist": "^4.21.0", + "browserslist": "^4.21.1", "semver": "7.0.0" }, "dependencies": { @@ -5070,9 +4981,9 @@ } }, "core-js-pure": { - "version": "3.23.3", - "resolved": "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.23.3.tgz", - "integrity": "sha512-XpoouuqIj4P+GWtdyV8ZO3/u4KftkeDVMfvp+308eGMhCrA3lVDSmAxO0c6GGOcmgVlaKDrgWVMo49h2ab/TDA==" + "version": "3.23.4", + "resolved": "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.23.4.tgz", + "integrity": "sha512-lizxkcgj3XDmi7TUBFe+bQ1vNpD5E4t76BrBWI3HdUxdw/Mq1VF4CkiHzIKyieECKtcODK2asJttoofEeUKICQ==" }, "core-util-is": { "version": "1.0.3", @@ -5109,9 +5020,9 @@ } }, "create-gatsby": { - "version": "2.18.0", - "resolved": "https://registry.npmjs.org/create-gatsby/-/create-gatsby-2.18.0.tgz", - "integrity": "sha512-74yn3+wlFKwg3DUVdFdBnfqc6gUVpYjqr/1XtQ0Rb57i0ygvER8Xgp4rY5Mm+8rl7JwBma1NONeM20cdMQjT2w==", + "version": "2.18.1", + "resolved": "https://registry.npmjs.org/create-gatsby/-/create-gatsby-2.18.1.tgz", + "integrity": "sha512-1AZioXKi4COhESSHfsb/6tpkBvyuuXHwAmMAGrcUQpbynsQxYdqonnRqnFhp80bA2cIKxgjtHzzLhyRouDonbQ==", "requires": { "@babel/runtime": "^7.15.4" } @@ -5673,9 +5584,9 @@ "integrity": "sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==" }, "duplexer3": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/duplexer3/-/duplexer3-0.1.4.tgz", - "integrity": "sha512-CEj8FwwNA4cVH2uFCoHUrmojhYh1vmCdOaneKJXwkeY1i9jnlslVo9dx+hQ5Hl9GnH/Bwy/IjxAyOePyPKYnzA==" + "version": "0.1.5", + "resolved": "https://registry.npmjs.org/duplexer3/-/duplexer3-0.1.5.tgz", + "integrity": "sha512-1A8za6ws41LQgv9HrE/66jyC5yuSjQ3L/KOpFtoBilsAK2iA2wuS5rTt1OCzIvtS2V7nVmedsUU+DGRcjBmOYA==" }, "ee-first": { "version": "1.1.1", @@ -5683,9 +5594,9 @@ "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==" }, "electron-to-chromium": { - "version": "1.4.179", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.179.tgz", - "integrity": "sha512-1XeTb/U/8Xgh2YgPOqhakLYsvCcU4U7jUjTMbEnhIJoIWd/Qt3yC8y0cbG+fHzn4zUNF99Ey1xiPf20bwgLO3Q==" + "version": "1.4.186", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.186.tgz", + "integrity": "sha512-YoVeFrGd/7ROjz4R9uPoND1K/hSRC/xADy9639ZmIZeJSaBnKdYx3I6LMPsY7CXLpK7JFgKQVzeZ/dk2br6Eaw==" }, "emoji-regex": { "version": "8.0.0", @@ -7064,9 +6975,9 @@ "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==" }, "gatsby": { - "version": "4.18.0", - "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-4.18.0.tgz", - "integrity": "sha512-EyiwYUsbSKUKsdjm8nnLw5AGJwOJ9NAWcrFg1V/QU4CUnk/M8EiP0TxiGUmK1/K7g82XGxUjuAPYJKJk85yxHA==", + "version": "4.18.1", + "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-4.18.1.tgz", + "integrity": "sha512-frMFAWOmMl/CtqBZ3aZXlysicQQa8C+yfMdjnjx81f7E5xoL20klk1j4UYj1kUnGgBMSuVehU8M+bE0kT02zoQ==", "requires": { "@babel/code-frame": "^7.14.0", "@babel/core": "^7.15.5", @@ -7102,8 +7013,8 @@ "babel-plugin-add-module-exports": "^1.0.4", "babel-plugin-dynamic-import-node": "^2.3.3", "babel-plugin-lodash": "^3.3.4", - "babel-plugin-remove-graphql-queries": "^4.18.0", - "babel-preset-gatsby": "^2.18.0", + "babel-plugin-remove-graphql-queries": "^4.18.1", + "babel-preset-gatsby": "^2.18.1", "better-opn": "^2.1.1", "bluebird": "^3.7.2", "body-parser": "^1.19.0", @@ -7146,20 +7057,20 @@ "find-cache-dir": "^3.3.2", "fs-exists-cached": "1.0.0", "fs-extra": "^10.1.0", - "gatsby-cli": "^4.18.0", - "gatsby-core-utils": "^3.18.0", + "gatsby-cli": "^4.18.1", + "gatsby-core-utils": "^3.18.1", "gatsby-graphiql-explorer": "^2.18.0", "gatsby-legacy-polyfills": "^2.18.0", - "gatsby-link": "^4.18.0", - "gatsby-page-utils": "^2.18.0", - "gatsby-parcel-config": "0.9.0", - "gatsby-plugin-page-creator": "^4.18.0", - "gatsby-plugin-typescript": "^4.18.0", - "gatsby-plugin-utils": "^3.12.0", + "gatsby-link": "^4.18.1", + "gatsby-page-utils": "^2.18.1", + "gatsby-parcel-config": "^0.9.1", + "gatsby-plugin-page-creator": "^4.18.1", + "gatsby-plugin-typescript": "^4.18.1", + "gatsby-plugin-utils": "^3.12.1", "gatsby-react-router-scroll": "^5.18.0", "gatsby-script": "^1.3.0", "gatsby-sharp": "^0.12.0", - "gatsby-telemetry": "^3.18.0", + "gatsby-telemetry": "^3.18.1", "gatsby-worker": "^1.18.0", "glob": "^7.2.3", "globby": "^11.1.0", @@ -7175,7 +7086,7 @@ "joi": "^17.4.2", "json-loader": "^0.5.7", "latest-version": "5.1.0", - "lmdb": "2.5.2", + "lmdb": "2.5.3", "lodash": "^4.17.21", "md5-file": "^5.0.0", "meant": "^1.0.3", @@ -7233,9 +7144,9 @@ }, "dependencies": { "gatsby-cli": { - "version": "4.18.0", - "resolved": "https://registry.npmjs.org/gatsby-cli/-/gatsby-cli-4.18.0.tgz", - "integrity": "sha512-H4V1XvXP3EMwUBDbAlpu3jbjlCetUmHY6VB1YsH2kkIdlMrOgjUgNDFpqjgbk7k7z61du2tCgl1lyW+5he+SnA==", + "version": "4.18.1", + "resolved": "https://registry.npmjs.org/gatsby-cli/-/gatsby-cli-4.18.1.tgz", + "integrity": "sha512-ceYqm6i39rHY343zUCflwXnGtd25QGccvToTWL8W42/EGToDW8bubLfeBSRCfjXm946yf1gkS/1UAsAgAphYDA==", "requires": { "@babel/code-frame": "^7.14.0", "@babel/core": "^7.15.5", @@ -7254,13 +7165,13 @@ "common-tags": "^1.8.2", "configstore": "^5.0.1", "convert-hrtime": "^3.0.0", - "create-gatsby": "^2.18.0", + "create-gatsby": "^2.18.1", "envinfo": "^7.8.1", "execa": "^5.1.1", "fs-exists-cached": "^1.0.0", "fs-extra": "^10.1.0", - "gatsby-core-utils": "^3.18.0", - "gatsby-telemetry": "^3.18.0", + "gatsby-core-utils": "^3.18.1", + "gatsby-telemetry": "^3.18.1", "hosted-git-info": "^3.0.8", "is-valid-path": "^0.1.1", "joi": "^17.4.2", @@ -7286,9 +7197,9 @@ } }, "gatsby-core-utils": { - "version": "3.18.0", - "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.18.0.tgz", - "integrity": "sha512-mCoNgH4MilosLhEroklgVffwie9lyxgmvNwe/oIyzXr6NcZ2uxSp8G1KrgxdG2srt2hCNlZLlzS25ltLTeHTjA==", + "version": "3.18.1", + "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.18.1.tgz", + "integrity": "sha512-sJTxRqizLxYy/tSFk0ydfqEZ3ek1So9HDVUa39F6Oi8XuPCBTFzaAooUvowKGneI5YUbdk5y4VO4ybwVUynntw==", "requires": { "@babel/runtime": "^7.15.4", "ci-info": "2.0.0", @@ -7298,7 +7209,7 @@ "fs-extra": "^10.1.0", "got": "^11.8.5", "import-from": "^4.0.0", - "lmdb": "2.5.2", + "lmdb": "2.5.3", "lock": "^1.1.0", "node-object-hash": "^2.3.10", "proper-lockfile": "^4.1.2", @@ -7341,37 +7252,37 @@ } }, "gatsby-link": { - "version": "4.18.0", - "resolved": "https://registry.npmjs.org/gatsby-link/-/gatsby-link-4.18.0.tgz", - "integrity": "sha512-nE+Z/iE55Id84YqsQOT1bfPJ/AsupY/4s8i6NllQ8no/PRgDGMpkTG6ANqyt2CHs/bywxch2rv8Ho7Gwsuuueg==", + "version": "4.18.1", + "resolved": "https://registry.npmjs.org/gatsby-link/-/gatsby-link-4.18.1.tgz", + "integrity": "sha512-gLFH2iU4WugHU5k+SLu4F0Ar04kDT5KhkyXly99ZVtiIvHpA5DqcuGNIUjIE/lizSCsfa553wGv7dadfghGzrQ==", "requires": { "@babel/runtime": "^7.15.4", "@types/reach__router": "^1.3.10", - "gatsby-page-utils": "^2.18.0", + "gatsby-page-utils": "^2.18.1", "prop-types": "^15.8.1" } }, "gatsby-page-utils": { - "version": "2.18.0", - "resolved": "https://registry.npmjs.org/gatsby-page-utils/-/gatsby-page-utils-2.18.0.tgz", - "integrity": "sha512-qTwlqscKxkBlMd+Mn8xj6sh7L0LbfLGYOPCYozJnukXv8d/6Jyk1nfaP6I82hwj/iyhaBQtk7g8g4XyBJJaESw==", + "version": "2.18.1", + "resolved": "https://registry.npmjs.org/gatsby-page-utils/-/gatsby-page-utils-2.18.1.tgz", + "integrity": "sha512-4EM0LNOQgnCndHDQSI/ZKRFWYWG9dtTPuGbBaGlmPquhj3zwjOscws1vfj7g+u3PowKjZQ2Rf92RZd8xt8XLTQ==", "requires": { "@babel/runtime": "^7.15.4", "bluebird": "^3.7.2", "chokidar": "^3.5.3", "fs-exists-cached": "^1.0.0", - "gatsby-core-utils": "^3.18.0", + "gatsby-core-utils": "^3.18.1", "glob": "^7.2.3", "lodash": "^4.17.21", "micromatch": "^4.0.5" } }, "gatsby-parcel-config": { - "version": "0.9.0", - "resolved": "https://registry.npmjs.org/gatsby-parcel-config/-/gatsby-parcel-config-0.9.0.tgz", - "integrity": "sha512-ccGw/L8ylhDgE/4tr52B6tb2jreApOMoYPW75Z8aM2ULRz505fL5mrnkG1fdQDBZSCHx/0j0x2TZyCLrt0Bvlw==", + "version": "0.9.1", + "resolved": "https://registry.npmjs.org/gatsby-parcel-config/-/gatsby-parcel-config-0.9.1.tgz", + "integrity": "sha512-ZtVntsQYs0xhy1hvWUMeSLc4a+DvxtTf+NUrPF4rvBjOW/LPMx2eYDzPddKvqWmiUaT1+Ki9S9bwCuOp5muawg==", "requires": { - "@gatsbyjs/parcel-namer-relative-to-cwd": "1.3.0", + "@gatsbyjs/parcel-namer-relative-to-cwd": "^1.3.1", "@parcel/bundler-default": "2.6.0", "@parcel/compressor-raw": "2.6.0", "@parcel/namer-default": "2.6.0", @@ -7391,28 +7302,28 @@ } }, "gatsby-plugin-feed": { - "version": "4.18.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-feed/-/gatsby-plugin-feed-4.18.0.tgz", - "integrity": "sha512-jZ/hw7eaOikmFuRo+whL6TONzrGYYTkurgU7OCHAf7/1sPYm3VmjEo2ZcGtK1itPADffvL3jPNofbmNnri54Fg==", + "version": "4.18.1", + "resolved": "https://registry.npmjs.org/gatsby-plugin-feed/-/gatsby-plugin-feed-4.18.1.tgz", + "integrity": "sha512-akP96zP2eUu3O70LMtubq+22kAe0OEbZi4N76Bi+k0ZrD8p14AQkjX9XLCGjqfmcdYmvdtxTOIf5Z7aZKh0DkQ==", "requires": { "@babel/runtime": "^7.15.4", "@hapi/joi": "^15.1.1", "common-tags": "^1.8.2", "fs-extra": "^10.1.0", - "gatsby-plugin-utils": "^3.12.0", + "gatsby-plugin-utils": "^3.12.1", "lodash.merge": "^4.6.2", "rss": "^1.2.2" } }, "gatsby-plugin-gatsby-cloud": { - "version": "4.18.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-gatsby-cloud/-/gatsby-plugin-gatsby-cloud-4.18.0.tgz", - "integrity": "sha512-c+PAabQCfmq0qUkGJ9Cp0vaB2+7mYiic7nj/Tx0cLqkeJJHrV7rqcUX1A2l4VycWRDFWSA5K1nTvb3uSUINB2g==", + "version": "4.18.1", + "resolved": "https://registry.npmjs.org/gatsby-plugin-gatsby-cloud/-/gatsby-plugin-gatsby-cloud-4.18.1.tgz", + "integrity": "sha512-FDrLl3w3WHVJCzddTYcSCqEi4DLvS9e8/9LY312QnxOqPv+fnLoSDYDyqazyK9/mu6gMz8cUU7UoHsMqpZNbCg==", "requires": { "@babel/runtime": "^7.15.4", "fs-extra": "^10.1.0", - "gatsby-core-utils": "^3.18.0", - "gatsby-telemetry": "^3.18.0", + "gatsby-core-utils": "^3.18.1", + "gatsby-telemetry": "^3.18.1", "kebab-hash": "^0.1.2", "lodash": "^4.17.21", "webpack-assets-manifest": "^5.1.0" @@ -7439,46 +7350,46 @@ } }, "gatsby-plugin-image": { - "version": "2.18.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-image/-/gatsby-plugin-image-2.18.0.tgz", - "integrity": "sha512-/WvMDUiZvofmxHzHeEPLNL605FU1AK5pLXKKS8aekRigbNbi+Gip2ZROFPJtj4oxyKDmtD+HaVCNf1q8SdhPEg==", + "version": "2.18.1", + "resolved": "https://registry.npmjs.org/gatsby-plugin-image/-/gatsby-plugin-image-2.18.1.tgz", + "integrity": "sha512-PsNIWq5bVALRRshbKOL97tqZTT2r0iILlP+K26YHfd+54DOUPqjESGZ/x7rnv2WMBVFd+Xtkmrx6M1rW86g1Rw==", "requires": { "@babel/code-frame": "^7.14.0", "@babel/parser": "^7.15.5", "@babel/runtime": "^7.15.4", "@babel/traverse": "^7.15.4", "babel-jsx-utils": "^1.1.0", - "babel-plugin-remove-graphql-queries": "^4.18.0", + "babel-plugin-remove-graphql-queries": "^4.18.1", "camelcase": "^5.3.1", "chokidar": "^3.5.3", "common-tags": "^1.8.2", "fs-extra": "^10.1.0", - "gatsby-core-utils": "^3.18.0", - "gatsby-plugin-utils": "^3.12.0", + "gatsby-core-utils": "^3.18.1", + "gatsby-plugin-utils": "^3.12.1", "objectFitPolyfill": "^2.3.5", "prop-types": "^15.8.1" } }, "gatsby-plugin-manifest": { - "version": "4.18.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-manifest/-/gatsby-plugin-manifest-4.18.0.tgz", - "integrity": "sha512-UqyENX8vwl9toCVnfdhVX/P7NZApG4FvXoDdkxfI53tKoFv93rIisb2IUGQeZZP9jHXprGlnP3y8dgTAmz5Ubw==", + "version": "4.18.1", + "resolved": "https://registry.npmjs.org/gatsby-plugin-manifest/-/gatsby-plugin-manifest-4.18.1.tgz", + "integrity": "sha512-LR4S/MCbUP7Fk3A4xwrA9nhIx9RjDTAE5DAXfXMKvnh1f6an6d+x9XKDqNnGtixVOnlfy3jK0IxLzC1HCjNKSQ==", "requires": { "@babel/runtime": "^7.15.4", - "gatsby-core-utils": "^3.18.0", - "gatsby-plugin-utils": "^3.12.0", + "gatsby-core-utils": "^3.18.1", + "gatsby-plugin-utils": "^3.12.1", "semver": "^7.3.7", "sharp": "^0.30.3" } }, "gatsby-plugin-offline": { - "version": "5.18.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-offline/-/gatsby-plugin-offline-5.18.0.tgz", - "integrity": "sha512-PfbAwEwfozkbAxtPVxUwYkvX47IsWpOJUlutn6wl7hj7VLHfegxDg3RZtc0trbDpj39wVtcLDdM8fu4schm3EA==", + "version": "5.18.1", + "resolved": "https://registry.npmjs.org/gatsby-plugin-offline/-/gatsby-plugin-offline-5.18.1.tgz", + "integrity": "sha512-Gbk3bNPPCGWgZluXtmW2FUOBmLoxShuXeInCZlYz+p+Vz9jnNUIWk2SFZO1oeo7SFzuQpdkcy0oClOCYVZ9ClA==", "requires": { "@babel/runtime": "^7.15.4", "cheerio": "^1.0.0-rc.10", - "gatsby-core-utils": "^3.18.0", + "gatsby-core-utils": "^3.18.1", "glob": "^7.2.3", "idb-keyval": "^3.2.0", "lodash": "^4.17.21", @@ -7486,19 +7397,19 @@ } }, "gatsby-plugin-page-creator": { - "version": "4.18.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-page-creator/-/gatsby-plugin-page-creator-4.18.0.tgz", - "integrity": "sha512-6bY4vJndDw0nBcOuQdX41Wvbctw0y9+a7IavCFJKFeNs+Zo0XH2FX0IAww0slDnSJU6AukJ9qfjHqKJkADAZpQ==", + "version": "4.18.1", + "resolved": "https://registry.npmjs.org/gatsby-plugin-page-creator/-/gatsby-plugin-page-creator-4.18.1.tgz", + "integrity": "sha512-XPAglahQ1fDnSdSNJmtAGwVqB7yZDGPOQQBQX7LD74XwYP6uriRo4LyeI+gEXRqW4d63ZL3VMvgdisde9M95LQ==", "requires": { "@babel/runtime": "^7.15.4", "@babel/traverse": "^7.15.4", "@sindresorhus/slugify": "^1.1.2", "chokidar": "^3.5.3", "fs-exists-cached": "^1.0.0", - "gatsby-core-utils": "^3.18.0", - "gatsby-page-utils": "^2.18.0", - "gatsby-plugin-utils": "^3.12.0", - "gatsby-telemetry": "^3.18.0", + "gatsby-core-utils": "^3.18.1", + "gatsby-page-utils": "^2.18.1", + "gatsby-plugin-utils": "^3.12.1", + "gatsby-telemetry": "^3.18.1", "globby": "^11.1.0", "lodash": "^4.17.21" } @@ -7512,9 +7423,9 @@ } }, "gatsby-plugin-sharp": { - "version": "4.18.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-sharp/-/gatsby-plugin-sharp-4.18.0.tgz", - "integrity": "sha512-ExGzy8xAwc5+4nDHgGe1k8Id/HZpETPSizLNeJ5We3T4hjshdfgvnuRiAZf2VIY60+VPuVCezYNn4n7gPTShRw==", + "version": "4.18.1", + "resolved": "https://registry.npmjs.org/gatsby-plugin-sharp/-/gatsby-plugin-sharp-4.18.1.tgz", + "integrity": "sha512-oUAy+1Ey8/HKSYwY9W+LkO8BT7nVk6it2n9QympS8BzGgnFXY8695flmaPtQySMES+OwYGtlh0JhU+p9caVZAQ==", "requires": { "@babel/runtime": "^7.15.4", "@gatsbyjs/potrace": "^2.2.0", @@ -7523,9 +7434,9 @@ "debug": "^4.3.4", "filenamify": "^4.3.0", "fs-extra": "^10.1.0", - "gatsby-core-utils": "^3.18.0", - "gatsby-plugin-utils": "^3.12.0", - "gatsby-telemetry": "^3.18.0", + "gatsby-core-utils": "^3.18.1", + "gatsby-plugin-utils": "^3.12.1", + "gatsby-telemetry": "^3.18.1", "got": "^11.8.5", "lodash": "^4.17.21", "mini-svg-data-uri": "^1.4.4", @@ -7655,9 +7566,9 @@ } }, "gatsby-plugin-typescript": { - "version": "4.18.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-typescript/-/gatsby-plugin-typescript-4.18.0.tgz", - "integrity": "sha512-SuNBrp57SnovOyhCz0zPkz7begV4UR2XdXUrFsh4N0jWOI5yFNVgENpKlbI/O7JnvgyV5KC/pkobNh3we+0mcQ==", + "version": "4.18.1", + "resolved": "https://registry.npmjs.org/gatsby-plugin-typescript/-/gatsby-plugin-typescript-4.18.1.tgz", + "integrity": "sha512-YUZcqL2WWiL2ngKe4A5FpTjCij2pLxiim+QaujeKfMjeWfHJ13uQ74HlxQXNpGAy4vMRBiU4CJH71RXgS1aoaA==", "requires": { "@babel/core": "^7.15.5", "@babel/plugin-proposal-nullish-coalescing-operator": "^7.14.5", @@ -7665,18 +7576,18 @@ "@babel/plugin-proposal-optional-chaining": "^7.14.5", "@babel/preset-typescript": "^7.15.0", "@babel/runtime": "^7.15.4", - "babel-plugin-remove-graphql-queries": "^4.18.0" + "babel-plugin-remove-graphql-queries": "^4.18.1" } }, "gatsby-plugin-utils": { - "version": "3.12.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-utils/-/gatsby-plugin-utils-3.12.0.tgz", - "integrity": "sha512-vdz3qwaCOkvgzAxMkZlgpmpWf555jISwek5lyWYhGyJJvXYV8KQ2cZ4CoOfFKAYVeZVSucrHcdWyY3fLLpQvAA==", + "version": "3.12.1", + "resolved": "https://registry.npmjs.org/gatsby-plugin-utils/-/gatsby-plugin-utils-3.12.1.tgz", + "integrity": "sha512-Rx7/MFtiJ+pyvPLqCPj5beyMN6qOx3EYMrOqmvrWJaM32nxMfHZqUqxGruufyFNVe6edfRuNuXcKaPXlGlyexA==", "requires": { "@babel/runtime": "^7.15.4", "@gatsbyjs/potrace": "^2.2.0", "fs-extra": "^10.1.0", - "gatsby-core-utils": "^3.18.0", + "gatsby-core-utils": "^3.18.1", "gatsby-sharp": "^0.12.0", "graphql-compose": "^9.0.7", "import-from": "^4.0.0", @@ -7718,15 +7629,15 @@ } }, "gatsby-remark-images": { - "version": "6.18.0", - "resolved": "https://registry.npmjs.org/gatsby-remark-images/-/gatsby-remark-images-6.18.0.tgz", - "integrity": "sha512-xFLFbHerjdhyIl1iCa5IlMecUoz5HYkvN80rSkCDOZPDXz9AvqrWcoG5KIFP1hgiYh1nZC1CSzd9qNr5yGrXsw==", + "version": "6.18.1", + "resolved": "https://registry.npmjs.org/gatsby-remark-images/-/gatsby-remark-images-6.18.1.tgz", + "integrity": "sha512-QgXVWTcgunNOSCX7B1vbGonRjamvnzwOcTC0yDYBRfOI56PListQAntE7gQE7K3CHTvRYvI+aB/VXf3MMbPDaQ==", "requires": { "@babel/runtime": "^7.15.4", "@gatsbyjs/potrace": "^2.2.0", "chalk": "^4.1.2", "cheerio": "^1.0.0-rc.10", - "gatsby-core-utils": "^3.18.0", + "gatsby-core-utils": "^3.18.1", "is-relative-url": "^3.0.0", "lodash": "^4.17.21", "mdast-util-definitions": "^4.0.0", @@ -7783,15 +7694,15 @@ } }, "gatsby-source-filesystem": { - "version": "4.18.0", - "resolved": "https://registry.npmjs.org/gatsby-source-filesystem/-/gatsby-source-filesystem-4.18.0.tgz", - "integrity": "sha512-45ivbP9Ho6ioCqAJKdz5ejXlKCZ+8UCzQEC8cQbJI+k5CiJMdA09X65GVITUEob0bFRCcv5RQu4fOodrznaIwg==", + "version": "4.18.1", + "resolved": "https://registry.npmjs.org/gatsby-source-filesystem/-/gatsby-source-filesystem-4.18.1.tgz", + "integrity": "sha512-b1sZB0ziLJEGZOi2+ieUKWJXn3X1hK+F3nN5joaI3A+ptz75GpNuv04tFoq9oICzOHyuNuSGN5YgO8kMpmoaGQ==", "requires": { "@babel/runtime": "^7.15.4", "chokidar": "^3.5.3", "file-type": "^16.5.3", "fs-extra": "^10.1.0", - "gatsby-core-utils": "^3.18.0", + "gatsby-core-utils": "^3.18.1", "got": "^9.6.0", "md5-file": "^5.0.0", "mime": "^2.5.2", @@ -7921,9 +7832,9 @@ } }, "gatsby-telemetry": { - "version": "3.18.0", - "resolved": "https://registry.npmjs.org/gatsby-telemetry/-/gatsby-telemetry-3.18.0.tgz", - "integrity": "sha512-i1JvNqGOyLDPGEn1QN29YGpe2ripg2LZBAOhXmk6lAhRL5fTVo6WkEA2yW7XESnXIOJBFymgVbUlLjXoqeZ5Xg==", + "version": "3.18.1", + "resolved": "https://registry.npmjs.org/gatsby-telemetry/-/gatsby-telemetry-3.18.1.tgz", + "integrity": "sha512-EjjsUv15BZGsmnPrOINRT/s7d18DTKokpp2NDZLm8uOs3MwVoLtUZ/BS7h2NTmgK+WN93q3bNYRkZgKgV9QC1A==", "requires": { "@babel/code-frame": "^7.14.0", "@babel/runtime": "^7.15.4", @@ -7933,7 +7844,7 @@ "boxen": "^4.2.0", "configstore": "^5.0.1", "fs-extra": "^10.1.0", - "gatsby-core-utils": "^3.18.0", + "gatsby-core-utils": "^3.18.1", "git-up": "^4.0.5", "is-docker": "^2.2.1", "lodash": "^4.17.21", @@ -8006,12 +7917,12 @@ } }, "gatsby-transformer-remark": { - "version": "5.18.0", - "resolved": "https://registry.npmjs.org/gatsby-transformer-remark/-/gatsby-transformer-remark-5.18.0.tgz", - "integrity": "sha512-gGA50zv/hYoyatgIofdJVdbqUzE2YUi9MSCdE3dZl/DHi5rfUtC7cX09hqmCD2z9WRWTLQWupfpuZ3sfxJe1Xg==", + "version": "5.18.1", + "resolved": "https://registry.npmjs.org/gatsby-transformer-remark/-/gatsby-transformer-remark-5.18.1.tgz", + "integrity": "sha512-7sWIxdl1nnWFwkpfV4y72pssVzxrBvaHZ+pb7aXFEeSs0KdhKDrczIo2kUexjOeeO30T1QG+qVX8NKytqAb37w==", "requires": { "@babel/runtime": "^7.15.4", - "gatsby-core-utils": "^3.18.0", + "gatsby-core-utils": "^3.18.1", "gray-matter": "^4.0.3", "hast-util-raw": "^6.0.2", "hast-util-to-html": "^7.1.3", @@ -8050,16 +7961,16 @@ } }, "gatsby-transformer-sharp": { - "version": "4.18.0", - "resolved": "https://registry.npmjs.org/gatsby-transformer-sharp/-/gatsby-transformer-sharp-4.18.0.tgz", - "integrity": "sha512-uOsP5U10pWPdhpKHkPyKWoxCFEGdnreqmSrWrKUsHa0oViCfudbDrM+xWla+QQ0MhHHkqOUjdcfZRG3SwUlPcg==", + "version": "4.18.1", + "resolved": "https://registry.npmjs.org/gatsby-transformer-sharp/-/gatsby-transformer-sharp-4.18.1.tgz", + "integrity": "sha512-YqY3dWdUmRzhE2DBbOtJygL/bWKFXDQf3ARn6tSEt0WqPRFGLGbsSpT/xU5makHugdO/Wc30x3x85FhwysvH6Q==", "requires": { "@babel/runtime": "^7.15.4", "@gatsbyjs/potrace": "^2.2.0", "bluebird": "^3.7.2", "common-tags": "^1.8.2", "fs-extra": "^10.1.0", - "gatsby-plugin-utils": "^3.12.0", + "gatsby-plugin-utils": "^3.12.1", "probe-image-size": "^7.2.3", "semver": "^7.3.7", "sharp": "^0.30.3" @@ -9381,9 +9292,9 @@ } }, "jsx-ast-utils": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.3.1.tgz", - "integrity": "sha512-pxrjmNpeRw5wwVeWyEAk7QJu2GnBO3uzPFmHCKJJFPKK2Cy0cWL23krGtLdnMmbIi6/FjlrQpPyfQI19ByPOhQ==", + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.3.2.tgz", + "integrity": "sha512-4ZCADZHRkno244xlNnn4AOG6sRQ7iBZ5BbgZ4vW4y5IZw7cVUD1PPeblm1xx/nfmMxPdt/LHsXZW8z/j58+l9Q==", "requires": { "array-includes": "^3.1.5", "object.assign": "^4.1.2" @@ -9452,9 +9363,9 @@ } }, "lilconfig": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-2.0.5.tgz", - "integrity": "sha512-xaYmXZtTHPAw5m+xLN8ab9C+3a8YmV3asNSPOATITbtwrfbwaLJj8h66H1WMIpALCkqsIzK3h7oQ+PdX+LQ9Eg==" + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-2.0.6.tgz", + "integrity": "sha512-9JROoBW7pobfsx+Sq2JsASvCo6Pfo6WWoUW79HuB1BCoBXD4PLWJPqDF6fNj67pqBYTbAHkE57M1kS/+L1neOg==" }, "lines-and-columns": { "version": "1.2.4", @@ -9462,16 +9373,16 @@ "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==" }, "lmdb": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/lmdb/-/lmdb-2.5.2.tgz", - "integrity": "sha512-V5V5Xa2Hp9i2XsbDALkBTeHXnBXh/lEmk9p22zdr7jtuOIY9TGhjK6vAvTpOOx9IKU4hJkRWZxn/HsvR1ELLtA==", - "requires": { - "@lmdb/lmdb-darwin-arm64": "2.5.2", - "@lmdb/lmdb-darwin-x64": "2.5.2", - "@lmdb/lmdb-linux-arm": "2.5.2", - "@lmdb/lmdb-linux-arm64": "2.5.2", - "@lmdb/lmdb-linux-x64": "2.5.2", - "@lmdb/lmdb-win32-x64": "2.5.2", + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/lmdb/-/lmdb-2.5.3.tgz", + "integrity": "sha512-iBA0cb13CobBSoGJLfZgnrykLlfJipDAnvtf+YwIqqzBEsTeQYsXrHaSBkaHd5wCWeabwrNvhjZoFMUrlo+eLw==", + "requires": { + "@lmdb/lmdb-darwin-arm64": "2.5.3", + "@lmdb/lmdb-darwin-x64": "2.5.3", + "@lmdb/lmdb-linux-arm": "2.5.3", + "@lmdb/lmdb-linux-arm64": "2.5.3", + "@lmdb/lmdb-linux-x64": "2.5.3", + "@lmdb/lmdb-win32-x64": "2.5.3", "msgpackr": "^1.5.4", "node-addon-api": "^4.3.0", "node-gyp-build-optional-packages": "5.0.3", @@ -10223,9 +10134,9 @@ "integrity": "sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==" }, "moment": { - "version": "2.29.3", - "resolved": "https://registry.npmjs.org/moment/-/moment-2.29.3.tgz", - "integrity": "sha512-c6YRvhEo//6T2Jz/vVtYzqBzwvPT95JBQ+smCytzf7c50oMZRsR/a4w88aD34I+/QVSfnoAnSBFPJHItlOMJVw==" + "version": "2.29.4", + "resolved": "https://registry.npmjs.org/moment/-/moment-2.29.4.tgz", + "integrity": "sha512-5LC9SOxjSc2HF6vO2CyuTDNivEdoz2IvyJJGj6X8DJ0eFyfszE0QiEd+iXmBvUP3WHxSjFH/vIsA0EN00cgr8w==" }, "ms": { "version": "2.1.2", @@ -10397,9 +10308,9 @@ "integrity": "sha512-jY5dPJzw6NHd/KPSfPKJ+IHoFS81/tJ43r34ZeNMXGzCOM8jwQDCD12HYayKIB6MuznrnqIYy2e891NA2g0ibA==" }, "node-releases": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.5.tgz", - "integrity": "sha512-U9h1NLROZTq9uE1SNffn6WuPDg8icmi3ns4rEl/oTfIle4iLjTliCzgTsbaIFMq/Xn078/lfY/BL0GWZ+psK4Q==" + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.6.tgz", + "integrity": "sha512-PiVXnNuFm5+iYkLBNeq5211hvO38y63T0i2KKh2KnUs3RpzJ+JtODFjkD8yjLwnDkTYF1eKXheUwdssR+NRZdg==" }, "normalize-path": { "version": "3.0.0", @@ -13499,9 +13410,9 @@ } }, "tslib": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.1.tgz", - "integrity": "sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw==" + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz", + "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==" }, "tsutils": { "version": "3.21.0", diff --git a/starters/blog/package.json b/starters/blog/package.json index a2ed0c9da23a2..7e25897bf4c6a 100644 --- a/starters/blog/package.json +++ b/starters/blog/package.json @@ -8,23 +8,23 @@ "url": "https://github.com/gatsbyjs/gatsby/issues" }, "dependencies": { - "gatsby": "^4.18.0", - "gatsby-plugin-feed": "^4.18.0", - "gatsby-plugin-gatsby-cloud": "^4.18.0", + "gatsby": "^4.18.1", + "gatsby-plugin-feed": "^4.18.1", + "gatsby-plugin-gatsby-cloud": "^4.18.1", "gatsby-plugin-google-analytics": "^4.18.0", - "gatsby-plugin-image": "^2.18.0", - "gatsby-plugin-manifest": "^4.18.0", - "gatsby-plugin-offline": "^5.18.0", + "gatsby-plugin-image": "^2.18.1", + "gatsby-plugin-manifest": "^4.18.1", + "gatsby-plugin-offline": "^5.18.1", "gatsby-plugin-react-helmet": "^5.18.0", - "gatsby-plugin-sharp": "^4.18.0", + "gatsby-plugin-sharp": "^4.18.1", "gatsby-remark-copy-linked-files": "^5.18.0", - "gatsby-remark-images": "^6.18.0", + "gatsby-remark-images": "^6.18.1", "gatsby-remark-prismjs": "^6.18.0", "gatsby-remark-responsive-iframe": "^5.18.0", "gatsby-remark-smartypants": "^5.18.0", - "gatsby-source-filesystem": "^4.18.0", - "gatsby-transformer-remark": "^5.18.0", - "gatsby-transformer-sharp": "^4.18.0", + "gatsby-source-filesystem": "^4.18.1", + "gatsby-transformer-remark": "^5.18.1", + "gatsby-transformer-sharp": "^4.18.1", "prismjs": "^1.28.0", "react": "^18.1.0", "react-dom": "^18.1.0", diff --git a/starters/default/package-lock.json b/starters/default/package-lock.json index e8b87ed2d8f25..5d997bc809f68 100644 --- a/starters/default/package-lock.json +++ b/starters/default/package-lock.json @@ -61,9 +61,9 @@ } }, "@babel/compat-data": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.18.6.tgz", - "integrity": "sha512-tzulrgDT0QD6U7BJ4TKVk2SDDg7wlP39P9yAx1RfLy7vP/7rsDRlWVfbWxElslu56+r7QOhB2NSDsabYYruoZQ==" + "version": "7.18.8", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.18.8.tgz", + "integrity": "sha512-HSmX4WZPPK3FUxYp7g2T6EyO8j96HlZJlxmKPSh6KAcqwyDrfx7hKjXpAW/0FhFfTJsR0Yt4lAjLI2coMptIHQ==" }, "@babel/core": { "version": "7.18.6", @@ -276,9 +276,9 @@ } }, "@babel/helper-module-transforms": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.18.6.tgz", - "integrity": "sha512-L//phhB4al5uucwzlimruukHB3jRd5JGClwRMD/ROrVjXfLqovYnvQrK/JK36WYyVwGGO7OD3kMyVTjx+WVPhw==", + "version": "7.18.8", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.18.8.tgz", + "integrity": "sha512-che3jvZwIcZxrwh63VfnFTUzcAM9v/lznYkkRxIBGMPt1SudOKHAEec0SIRCfiuIzTcF7VGj/CaTT6gY4eWxvA==", "requires": { "@babel/helper-environment-visitor": "^7.18.6", "@babel/helper-module-imports": "^7.18.6", @@ -286,8 +286,8 @@ "@babel/helper-split-export-declaration": "^7.18.6", "@babel/helper-validator-identifier": "^7.18.6", "@babel/template": "^7.18.6", - "@babel/traverse": "^7.18.6", - "@babel/types": "^7.18.6" + "@babel/traverse": "^7.18.8", + "@babel/types": "^7.18.8" } }, "@babel/helper-optimise-call-expression": { @@ -404,9 +404,9 @@ } }, "@babel/parser": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.18.6.tgz", - "integrity": "sha512-uQVSa9jJUe/G/304lXspfWVpKpK4euFLgGiMQFOCpM/bgcAdeoHwi/OQz23O9GK2osz26ZiXRRV9aV+Yl1O8tw==" + "version": "7.18.8", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.18.8.tgz", + "integrity": "sha512-RSKRfYX20dyH+elbJK2uqAkVyucL+xXzhqlMD5/ZXx+dAAwpyB7HsvnHe/ZUGOF+xLr5Wx9/JoXVTj6BQE2/oA==" }, "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": { "version": "7.18.6", @@ -749,9 +749,9 @@ } }, "@babel/plugin-transform-classes": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.18.6.tgz", - "integrity": "sha512-XTg8XW/mKpzAF3actL554Jl/dOYoJtv3l8fxaEczpgz84IeeVf+T1u2CSvPHuZbt0w3JkIx4rdn/MRQI7mo0HQ==", + "version": "7.18.8", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.18.8.tgz", + "integrity": "sha512-RySDoXdF6hgHSHuAW4aLGyVQdmvEX/iJtjVre52k0pxRq4hzqze+rAVP++NmNv596brBpYmaiKgTZby7ziBnVg==", "requires": { "@babel/helper-annotate-as-pure": "^7.18.6", "@babel/helper-environment-visitor": "^7.18.6", @@ -815,9 +815,9 @@ } }, "@babel/plugin-transform-for-of": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.18.6.tgz", - "integrity": "sha512-WAjoMf4wIiSsy88KmG7tgj2nFdEK7E46tArVtcgED7Bkj6Fg/tG5SbvNIOKxbFS2VFgNh6+iaPswBeQZm4ox8w==", + "version": "7.18.8", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.18.8.tgz", + "integrity": "sha512-yEfTRnjuskWYo0k1mHUqrVWaZwrdq8AYbfrpqULOJOaucGSp4mNMVps+YtA8byoevxS/urwU75vyhQIxcCgiBQ==", "requires": { "@babel/helper-plugin-utils": "^7.18.6" } @@ -917,9 +917,9 @@ } }, "@babel/plugin-transform-parameters": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.18.6.tgz", - "integrity": "sha512-FjdqgMv37yVl/gwvzkcB+wfjRI8HQmc5EgOG9iGNvUY1ok+TjsoaMP7IqCDZBhkFcM5f3OPVMs6Dmp03C5k4/A==", + "version": "7.18.8", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.18.8.tgz", + "integrity": "sha512-ivfbE3X2Ss+Fj8nnXvKJS6sjRG4gzwPMsP+taZC+ZzEGjAYlvENixmt1sZ5Ca6tWls+BlKSGKPJ6OOXvXCbkFg==", "requires": { "@babel/helper-plugin-utils": "^7.18.6" } @@ -1048,9 +1048,9 @@ } }, "@babel/plugin-transform-typescript": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.18.6.tgz", - "integrity": "sha512-ijHNhzIrLj5lQCnI6aaNVRtGVuUZhOXFLRVFs7lLrkXTHip4FKty5oAuQdk4tywG0/WjXmjTfQCWmuzrvFer1w==", + "version": "7.18.8", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.18.8.tgz", + "integrity": "sha512-p2xM8HI83UObjsZGofMV/EdYjamsDm6MoN3hXPYIT0+gxIoopE+B7rPYKAxfrz9K9PK7JafTTjqYC6qipLExYA==", "requires": { "@babel/helper-create-class-features-plugin": "^7.18.6", "@babel/helper-plugin-utils": "^7.18.6", @@ -1226,18 +1226,18 @@ } }, "@babel/traverse": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.18.6.tgz", - "integrity": "sha512-zS/OKyqmD7lslOtFqbscH6gMLFYOfG1YPqCKfAW5KrTeolKqvB8UelR49Fpr6y93kYkW2Ik00mT1LOGiAGvizw==", + "version": "7.18.8", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.18.8.tgz", + "integrity": "sha512-UNg/AcSySJYR/+mIcJQDCv00T+AqRO7j/ZEJLzpaYtgM48rMg5MnkJgyNqkzo88+p4tfRvZJCEiwwfG6h4jkRg==", "requires": { "@babel/code-frame": "^7.18.6", - "@babel/generator": "^7.18.6", + "@babel/generator": "^7.18.7", "@babel/helper-environment-visitor": "^7.18.6", "@babel/helper-function-name": "^7.18.6", "@babel/helper-hoist-variables": "^7.18.6", "@babel/helper-split-export-declaration": "^7.18.6", - "@babel/parser": "^7.18.6", - "@babel/types": "^7.18.6", + "@babel/parser": "^7.18.8", + "@babel/types": "^7.18.8", "debug": "^4.1.0", "globals": "^11.1.0" }, @@ -1253,9 +1253,9 @@ } }, "@babel/types": { - "version": "7.18.7", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.7.tgz", - "integrity": "sha512-QG3yxTcTIBoAcQmkCs+wAPYZhu7Dk9rXKacINfNbdJDNERTbLQbHGyVG8q/YGMPeCJRIhSY0+fTc5+xuh6WPSQ==", + "version": "7.18.8", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.8.tgz", + "integrity": "sha512-qwpdsmraq0aJ3osLJRApsc2ouSJCdnMeZwB0DhbtHAtRpZNZCdlbRnHIgcRKzdE1g0iOGg644fzjOBcdOz9cPw==", "requires": { "@babel/helper-validator-identifier": "^7.18.6", "to-fast-properties": "^2.0.0" @@ -1317,13 +1317,13 @@ } }, "@gatsbyjs/parcel-namer-relative-to-cwd": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/@gatsbyjs/parcel-namer-relative-to-cwd/-/parcel-namer-relative-to-cwd-1.3.0.tgz", - "integrity": "sha512-nd1lQn7ezg51ekqZm8iZjND8akB7bsGkGe7GdIPdTwbhale2dHLqd74qg+bBrEjv5f5aFZhpJeY9XpeU4emWZQ==", + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/@gatsbyjs/parcel-namer-relative-to-cwd/-/parcel-namer-relative-to-cwd-1.3.1.tgz", + "integrity": "sha512-wN4iU1CWumvhcuzMBKdDikZ5xgo81Ias09bKyjE36DgNxTzAhT2fXZIBAAEUlv/GBQqFe6Eas83gGGtXf31hiw==", "requires": { "@babel/runtime": "^7.18.0", "@parcel/plugin": "2.6.0", - "gatsby-core-utils": "^3.18.0" + "gatsby-core-utils": "^3.18.1" } }, "@gatsbyjs/potrace": { @@ -1355,108 +1355,87 @@ } }, "@graphql-codegen/add": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/@graphql-codegen/add/-/add-3.1.1.tgz", - "integrity": "sha512-XkVwcqosa0CVBlL1HaQT0gp+EUfhuQE3LzrEpzMQLwchxaj/NPVYtOJL6MUHaYDsHzLqxWrufjfbeB3y2NQgRw==", + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/@graphql-codegen/add/-/add-3.2.0.tgz", + "integrity": "sha512-8hyr5XvTDGnpiT4nH2yH8PP4SWtUEIUdkFaZbkpkFkU0Ud9dplvSviOCdxdArffZ1FHy0XYLTMa2it+UJOtszg==", "requires": { - "@graphql-codegen/plugin-helpers": "^2.3.2", - "tslib": "~2.3.0" + "@graphql-codegen/plugin-helpers": "^2.5.0", + "tslib": "~2.4.0" } }, "@graphql-codegen/core": { - "version": "2.5.1", - "resolved": "https://registry.npmjs.org/@graphql-codegen/core/-/core-2.5.1.tgz", - "integrity": "sha512-alctBVl2hMnBXDLwkgmnFPrZVIiBDsWJSmxJcM4GKg1PB23+xuov35GE47YAyAhQItE1B1fbYnbb1PtGiDZ4LA==", + "version": "2.6.0", + "resolved": "https://registry.npmjs.org/@graphql-codegen/core/-/core-2.6.0.tgz", + "integrity": "sha512-7uZGnLCMR/pnh/5CsyI4y5bBvRndNHFs+AWpMUUjDBcjMRrMaavu37VyyYDz4/ob0BnQJt8RTBN9eArS9PLYAQ==", "requires": { - "@graphql-codegen/plugin-helpers": "^2.4.1", - "@graphql-tools/schema": "^8.1.2", - "@graphql-tools/utils": "^8.1.1", - "tslib": "~2.3.0" + "@graphql-codegen/plugin-helpers": "^2.5.0", + "@graphql-tools/schema": "^8.5.0", + "@graphql-tools/utils": "^8.8.0", + "tslib": "~2.4.0" } }, "@graphql-codegen/plugin-helpers": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/@graphql-codegen/plugin-helpers/-/plugin-helpers-2.4.2.tgz", - "integrity": "sha512-LJNvwAPv/sKtI3RnRDm+nPD+JeOfOuSOS4FFIpQCMUCyMnFcchV/CPTTv7tT12fLUpEg6XjuFfDBvOwndti30Q==", + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/@graphql-codegen/plugin-helpers/-/plugin-helpers-2.5.0.tgz", + "integrity": "sha512-0jM5/14EdM4yow5v8OGOnUmRqfA1gaWkh+J5berqQUpcFYfSQXD6+Idnkiju/jjIypEN7UvbPkC7BgryWVxexA==", "requires": { - "@graphql-tools/utils": "^8.5.2", + "@graphql-tools/utils": "^8.8.0", "change-case-all": "1.0.14", "common-tags": "1.8.2", "import-from": "4.0.0", "lodash": "~4.17.0", - "tslib": "~2.3.0" + "tslib": "~2.4.0" } }, "@graphql-codegen/schema-ast": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/@graphql-codegen/schema-ast/-/schema-ast-2.4.1.tgz", - "integrity": "sha512-bIWlKk/ShoVJfghA4Rt1OWnd34/dQmZM/vAe6fu6QKyOh44aAdqPtYQ2dbTyFXoknmu504etKJGEDllYNUJRfg==", + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/@graphql-codegen/schema-ast/-/schema-ast-2.5.0.tgz", + "integrity": "sha512-nlF4Yc7h90nmogG2E11TeFJ3/hCkb4SDMSdbJX68b1mhvVEji/kq3zWYKAQ+lAzjZ7HF94Eylm3MrZAjjpCKIA==", "requires": { - "@graphql-codegen/plugin-helpers": "^2.3.2", - "@graphql-tools/utils": "^8.1.1", - "tslib": "~2.3.0" + "@graphql-codegen/plugin-helpers": "^2.5.0", + "@graphql-tools/utils": "^8.8.0", + "tslib": "~2.4.0" } }, "@graphql-codegen/typescript": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@graphql-codegen/typescript/-/typescript-2.6.0.tgz", - "integrity": "sha512-f36ilg8J+wui0OhmQglIZ+2z4Ybc08Y7r7BlBDqfJ1F5X0zau0SlC7Hp2iCoCA0ucqZYtiUU/0n+/R8m1cTrQQ==", + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/@graphql-codegen/typescript/-/typescript-2.7.1.tgz", + "integrity": "sha512-qF4SBMgBnLcegba2s9+zC3NwgRhU0Kv+eS8kl9G5ldEHx9Bpu2tft+lk6fjqqhExDzJT+MEOU3Ecog3BzL2R1g==", "requires": { - "@graphql-codegen/plugin-helpers": "^2.4.0", - "@graphql-codegen/schema-ast": "^2.4.1", - "@graphql-codegen/visitor-plugin-common": "2.10.0", + "@graphql-codegen/plugin-helpers": "^2.5.0", + "@graphql-codegen/schema-ast": "^2.5.0", + "@graphql-codegen/visitor-plugin-common": "2.11.1", "auto-bind": "~4.0.0", "tslib": "~2.4.0" - }, - "dependencies": { - "tslib": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz", - "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==" - } } }, "@graphql-codegen/typescript-operations": { - "version": "2.4.3", - "resolved": "https://registry.npmjs.org/@graphql-codegen/typescript-operations/-/typescript-operations-2.4.3.tgz", - "integrity": "sha512-MW9cU/zCAmfFAObwW23e+GrW3CoV9OX2gVm/V1565WGZXDQPUc5Y5IjdfGfunV4ApkgFDiHpF1Mz/AS55OErgw==", + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/@graphql-codegen/typescript-operations/-/typescript-operations-2.5.1.tgz", + "integrity": "sha512-lGv+sPDXGcp/vDdIh7SoQjz8BRCZhLats4Hbqnf6gB7UtIasMvGuFDQyrKb3XAkQQYWqx/xtmEo0rBN8syV+Wg==", "requires": { - "@graphql-codegen/plugin-helpers": "^2.4.0", - "@graphql-codegen/typescript": "^2.6.0", - "@graphql-codegen/visitor-plugin-common": "2.10.0", + "@graphql-codegen/plugin-helpers": "^2.5.0", + "@graphql-codegen/typescript": "^2.7.1", + "@graphql-codegen/visitor-plugin-common": "2.11.1", "auto-bind": "~4.0.0", "tslib": "~2.4.0" - }, - "dependencies": { - "tslib": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz", - "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==" - } } }, "@graphql-codegen/visitor-plugin-common": { - "version": "2.10.0", - "resolved": "https://registry.npmjs.org/@graphql-codegen/visitor-plugin-common/-/visitor-plugin-common-2.10.0.tgz", - "integrity": "sha512-nWoxHKUdwOJCWV96Ks1x4EwYCWsZDJXB+2j6EQz5j27DzdxmQInZ86degaDCd3EgbwhMQEMtiZiPGFFDrgBkHA==", - "requires": { - "@graphql-codegen/plugin-helpers": "^2.4.0", - "@graphql-tools/optimize": "^1.0.1", - "@graphql-tools/relay-operation-optimizer": "^6.4.14", - "@graphql-tools/utils": "^8.3.0", + "version": "2.11.1", + "resolved": "https://registry.npmjs.org/@graphql-codegen/visitor-plugin-common/-/visitor-plugin-common-2.11.1.tgz", + "integrity": "sha512-AlrtGWKn2o89SPna75ATEHYAu95MUMucgBqLgcRvK9n/PHhVAbkDrNCH5pL03fE0HLOup3GpjX8DcnFBMU46IA==", + "requires": { + "@graphql-codegen/plugin-helpers": "^2.5.0", + "@graphql-tools/optimize": "^1.3.0", + "@graphql-tools/relay-operation-optimizer": "^6.5.0", + "@graphql-tools/utils": "^8.8.0", "auto-bind": "~4.0.0", "change-case-all": "1.0.14", "dependency-graph": "^0.11.0", "graphql-tag": "^2.11.0", "parse-filepath": "^1.0.2", "tslib": "~2.4.0" - }, - "dependencies": { - "tslib": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz", - "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==" - } } }, "@graphql-tools/batch-execute": { @@ -1502,13 +1481,6 @@ "globby": "^11.0.3", "tslib": "^2.4.0", "unixify": "^1.0.0" - }, - "dependencies": { - "tslib": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz", - "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==" - } } }, "@graphql-tools/delegate": { @@ -1601,13 +1573,6 @@ "@babel/types": "^7.16.8", "@graphql-tools/utils": "8.8.0", "tslib": "^2.4.0" - }, - "dependencies": { - "tslib": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz", - "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==" - } } }, "@graphql-tools/import": { @@ -1618,13 +1583,6 @@ "@graphql-tools/utils": "8.8.0", "resolve-from": "5.0.0", "tslib": "^2.4.0" - }, - "dependencies": { - "tslib": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz", - "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==" - } } }, "@graphql-tools/json-file-loader": { @@ -1678,11 +1636,6 @@ "requires": { "yocto-queue": "^0.1.0" } - }, - "tslib": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz", - "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==" } } }, @@ -1693,13 +1646,6 @@ "requires": { "@graphql-tools/utils": "8.8.0", "tslib": "^2.4.0" - }, - "dependencies": { - "tslib": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz", - "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==" - } } }, "@graphql-tools/optimize": { @@ -1708,13 +1654,6 @@ "integrity": "sha512-30QOWJoMJEt1De7tAFtWJ6VPrP6SLq+tSQrA3x+WMvCW3q2exq5wPDpvAXOakVKu0y8L2E+YkipC0hcQPBQdLg==", "requires": { "tslib": "^2.4.0" - }, - "dependencies": { - "tslib": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz", - "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==" - } } }, "@graphql-tools/relay-operation-optimizer": { @@ -1725,13 +1664,6 @@ "@ardatan/relay-compiler": "12.0.0", "@graphql-tools/utils": "8.8.0", "tslib": "^2.4.0" - }, - "dependencies": { - "tslib": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz", - "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==" - } } }, "@graphql-tools/schema": { @@ -1743,13 +1675,6 @@ "@graphql-tools/utils": "8.8.0", "tslib": "^2.4.0", "value-or-promise": "1.0.11" - }, - "dependencies": { - "tslib": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz", - "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==" - } } }, "@graphql-tools/url-loader": { @@ -1814,13 +1739,6 @@ "integrity": "sha512-KJrtx05uSM/cPYFdTnGAS1doL5bftJLAiFCDMZ8Vkifztz3BFn3gpFiy/o4wDtM8s39G46mxmt2Km/RmeltfGw==", "requires": { "tslib": "^2.4.0" - }, - "dependencies": { - "tslib": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz", - "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==" - } } }, "@graphql-tools/wrap": { @@ -2284,9 +2202,9 @@ } }, "@jridgewell/resolve-uri": { - "version": "3.0.8", - "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.0.8.tgz", - "integrity": "sha512-YK5G9LaddzGbcucK4c8h5tWFmMPBvRZ/uyWmN1/SbBdIvqGUdWGkJ5BAaccgs6XbzVLsqbPJrBSFwKv3kT9i7w==" + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz", + "integrity": "sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==" }, "@jridgewell/set-array": { "version": "1.1.2", @@ -2342,39 +2260,39 @@ } }, "@lmdb/lmdb-darwin-arm64": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-arm64/-/lmdb-darwin-arm64-2.5.2.tgz", - "integrity": "sha512-+F8ioQIUN68B4UFiIBYu0QQvgb9FmlKw2ctQMSBfW2QBrZIxz9vD9jCGqTCPqZBRbPHAS/vG1zSXnKqnS2ch/A==", + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-arm64/-/lmdb-darwin-arm64-2.5.3.tgz", + "integrity": "sha512-RXwGZ/0eCqtCY8FLTM/koR60w+MXyvBUpToXiIyjOcBnC81tAlTUHrRUavCEWPI9zc9VgvpK3+cbumPyR8BSuA==", "optional": true }, "@lmdb/lmdb-darwin-x64": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-x64/-/lmdb-darwin-x64-2.5.2.tgz", - "integrity": "sha512-KvPH56KRLLx4KSfKBx0m1r7GGGUMXm0jrKmNE7plbHlesZMuPJICtn07HYgQhj1LNsK7Yqwuvnqh1QxhJnF1EA==", + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-x64/-/lmdb-darwin-x64-2.5.3.tgz", + "integrity": "sha512-337dNzh5yCdNCTk8kPfoU7jR3otibSlPDGW0vKZT97rKnQMb9tNdto3RtWoGPsQ8hKmlRZpojOJtmwjncq1MoA==", "optional": true }, "@lmdb/lmdb-linux-arm": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm/-/lmdb-linux-arm-2.5.2.tgz", - "integrity": "sha512-5kQAP21hAkfW5Bl+e0P57dV4dGYnkNIpR7f/GAh6QHlgXx+vp/teVj4PGRZaKAvt0GX6++N6hF8NnGElLDuIDw==", + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm/-/lmdb-linux-arm-2.5.3.tgz", + "integrity": "sha512-mU2HFJDGwECkoD9dHQEfeTG5mp8hNS2BCfwoiOpVPMeapjYpQz9Uw3FkUjRZ4dGHWKbin40oWHuL0bk2bCx+Sg==", "optional": true }, "@lmdb/lmdb-linux-arm64": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm64/-/lmdb-linux-arm64-2.5.2.tgz", - "integrity": "sha512-aLl89VHL/wjhievEOlPocoefUyWdvzVrcQ/MHQYZm2JfV1jUsrbr/ZfkPPUFvZBf+VSE+Q0clWs9l29PCX1hTQ==", + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm64/-/lmdb-linux-arm64-2.5.3.tgz", + "integrity": "sha512-VJw60Mdgb4n+L0fO1PqfB0C7TyEQolJAC8qpqvG3JoQwvyOv6LH7Ib/WE3wxEW9nuHmVz9jkK7lk5HfWWgoO1Q==", "optional": true }, "@lmdb/lmdb-linux-x64": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-x64/-/lmdb-linux-x64-2.5.2.tgz", - "integrity": "sha512-xUdUfwDJLGjOUPH3BuPBt0NlIrR7f/QHKgu3GZIXswMMIihAekj2i97oI0iWG5Bok/b+OBjHPfa8IU9velnP/Q==", + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-x64/-/lmdb-linux-x64-2.5.3.tgz", + "integrity": "sha512-qaReO5aV8griBDsBr8uBF/faO3ieGjY1RY4p8JvTL6Mu1ylLrTVvOONqKFlNaCwrmUjWw5jnf7VafxDAeQHTow==", "optional": true }, "@lmdb/lmdb-win32-x64": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-win32-x64/-/lmdb-win32-x64-2.5.2.tgz", - "integrity": "sha512-zrBczSbXKxEyK2ijtbRdICDygRqWSRPpZMN5dD1T8VMEW5RIhIbwFWw2phDRXuBQdVDpSjalCIUMWMV2h3JaZA==", + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-win32-x64/-/lmdb-win32-x64-2.5.3.tgz", + "integrity": "sha512-cK+Elf3RjEzrm3SerAhrFWL5oQAsZSJ/LmjL1joIpTfEP1etJJ9CTRvdaV6XLYAxaEkfdhk/9hOvHLbR9yIhCA==", "optional": true }, "@microsoft/fetch-event-source": { @@ -2976,13 +2894,6 @@ "integrity": "sha512-tb7Iu+oZ+zWJZ3HJqwx8oNwSDIU440hmVMDPhpACWQWnrZHK99Bxs70gT1L2dnr5Hg50ZRWEFkQCAnOVVV0z1Q==", "requires": { "tslib": "^2.4.0" - }, - "dependencies": { - "tslib": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz", - "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==" - } } }, "@szmarczak/http-timer": { @@ -3149,9 +3060,9 @@ } }, "@types/node": { - "version": "18.0.1", - "resolved": "https://registry.npmjs.org/@types/node/-/node-18.0.1.tgz", - "integrity": "sha512-CmR8+Tsy95hhwtZBKJBs0/FFq4XX7sDZHlGGf+0q+BRZfMbOTkzkj0AFAuTyXbObDIoanaBBW0+KEW+m3N16Wg==" + "version": "18.0.3", + "resolved": "https://registry.npmjs.org/@types/node/-/node-18.0.3.tgz", + "integrity": "sha512-HzNRZtp4eepNitP+BD6k2L6DROIDG4Q0fm4x+dwfsr6LGmROENnok75VGw40628xf+iR24WeMFcHuuBDUAzzsQ==" }, "@types/node-fetch": { "version": "2.6.2", @@ -3198,9 +3109,9 @@ } }, "@types/react": { - "version": "18.0.14", - "resolved": "https://registry.npmjs.org/@types/react/-/react-18.0.14.tgz", - "integrity": "sha512-x4gGuASSiWmo0xjDLpm5mPb52syZHJx02VKbqUKdLmKtAwIh63XClGsiTI1K6DO5q7ox4xAsQrU+Gl3+gGXF9Q==", + "version": "18.0.15", + "resolved": "https://registry.npmjs.org/@types/react/-/react-18.0.15.tgz", + "integrity": "sha512-iz3BtLuIYH1uWdsv6wXYdhozhqj20oD4/Hk2DNXIn1kFsmp9x8d9QB6FnPhfkbhd2PgEONt9Q1x/ebkwjfFLow==", "requires": { "@types/prop-types": "*", "@types/scheduler": "*", @@ -3907,12 +3818,12 @@ } }, "babel-plugin-remove-graphql-queries": { - "version": "4.18.0", - "resolved": "https://registry.npmjs.org/babel-plugin-remove-graphql-queries/-/babel-plugin-remove-graphql-queries-4.18.0.tgz", - "integrity": "sha512-6oOm/cTZdk+7yPh4R4ISLKNur3rK5w2zAUCXTOGKYcRYbvKCS22ODafQBrNcu/UdfpXwSz3XZOG5ru72Z5usUw==", + "version": "4.18.1", + "resolved": "https://registry.npmjs.org/babel-plugin-remove-graphql-queries/-/babel-plugin-remove-graphql-queries-4.18.1.tgz", + "integrity": "sha512-2I7qsm3pnyvrS6/Q9YuHK1SpfQLmrgYH/AjpnWpnLHee6SiVb5Te89iphhpBdycpBRVGWh04ram9+z/1rMaRYQ==", "requires": { "@babel/runtime": "^7.15.4", - "gatsby-core-utils": "^3.18.0" + "gatsby-core-utils": "^3.18.1" } }, "babel-plugin-syntax-object-rest-spread": { @@ -3974,9 +3885,9 @@ } }, "babel-preset-gatsby": { - "version": "2.18.0", - "resolved": "https://registry.npmjs.org/babel-preset-gatsby/-/babel-preset-gatsby-2.18.0.tgz", - "integrity": "sha512-b6BJEl0MlA/nh+IkTJRgvPEgdN09Pu34Szo5dE4QYvQa66++EqfQUK5huqr+FgZJedPPYYbRY2SgKlRXev5QIQ==", + "version": "2.18.1", + "resolved": "https://registry.npmjs.org/babel-preset-gatsby/-/babel-preset-gatsby-2.18.1.tgz", + "integrity": "sha512-oaVV6ULceMjTQKjCA06qvgfLwBNZFJxpacwNZYOJpLygmj+qYiNKDGhJ8vTw/KAIUeDPZAbPMP5P+3wMEPIWYQ==", "requires": { "@babel/plugin-proposal-class-properties": "^7.14.0", "@babel/plugin-proposal-nullish-coalescing-operator": "^7.14.5", @@ -3991,7 +3902,7 @@ "babel-plugin-dynamic-import-node": "^2.3.3", "babel-plugin-macros": "^3.1.0", "babel-plugin-transform-react-remove-prop-types": "^0.4.24", - "gatsby-core-utils": "^3.18.0", + "gatsby-core-utils": "^3.18.1", "gatsby-legacy-polyfills": "^2.18.0" } }, @@ -4356,9 +4267,9 @@ } }, "caniuse-lite": { - "version": "1.0.30001363", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001363.tgz", - "integrity": "sha512-HpQhpzTGGPVMnCjIomjt+jvyUu8vNFo3TaDiZ/RcoTrlOq/5+tC8zHdsbgFB6MxmaY+jCpsH09aD80Bb4Ow3Sg==" + "version": "1.0.30001365", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001365.tgz", + "integrity": "sha512-VDQZ8OtpuIPMBA4YYvZXECtXbddMCUFJk1qu8Mqxfm/SZJNSr1cy4IuLCOL7RJ/YASrvJcYg1Zh+UEUQ5m6z8Q==" }, "capital-case": { "version": "1.0.4", @@ -4983,16 +4894,16 @@ "integrity": "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==" }, "core-js": { - "version": "3.23.3", - "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.23.3.tgz", - "integrity": "sha512-oAKwkj9xcWNBAvGbT//WiCdOMpb9XQG92/Fe3ABFM/R16BsHgePG00mFOgKf7IsCtfj8tA1kHtf/VwErhriz5Q==" + "version": "3.23.4", + "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.23.4.tgz", + "integrity": "sha512-vjsKqRc1RyAJC3Ye2kYqgfdThb3zYnx9CrqoCcjMOENMtQPC7ZViBvlDxwYU/2z2NI/IPuiXw5mT4hWhddqjzQ==" }, "core-js-compat": { - "version": "3.23.3", - "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.23.3.tgz", - "integrity": "sha512-WSzUs2h2vvmKsacLHNTdpyOC9k43AEhcGoFlVgCY4L7aw98oSBKtPL6vD0/TqZjRWRQYdDSLkzZIni4Crbbiqw==", + "version": "3.23.4", + "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.23.4.tgz", + "integrity": "sha512-RkSRPe+JYEoflcsuxJWaiMPhnZoFS51FcIxm53k4KzhISCBTmaGlto9dTIrYuk0hnJc3G6pKufAKepHnBq6B6Q==", "requires": { - "browserslist": "^4.21.0", + "browserslist": "^4.21.1", "semver": "7.0.0" }, "dependencies": { @@ -5004,9 +4915,9 @@ } }, "core-js-pure": { - "version": "3.23.3", - "resolved": "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.23.3.tgz", - "integrity": "sha512-XpoouuqIj4P+GWtdyV8ZO3/u4KftkeDVMfvp+308eGMhCrA3lVDSmAxO0c6GGOcmgVlaKDrgWVMo49h2ab/TDA==" + "version": "3.23.4", + "resolved": "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.23.4.tgz", + "integrity": "sha512-lizxkcgj3XDmi7TUBFe+bQ1vNpD5E4t76BrBWI3HdUxdw/Mq1VF4CkiHzIKyieECKtcODK2asJttoofEeUKICQ==" }, "core-util-is": { "version": "1.0.3", @@ -5043,9 +4954,9 @@ } }, "create-gatsby": { - "version": "2.18.0", - "resolved": "https://registry.npmjs.org/create-gatsby/-/create-gatsby-2.18.0.tgz", - "integrity": "sha512-74yn3+wlFKwg3DUVdFdBnfqc6gUVpYjqr/1XtQ0Rb57i0ygvER8Xgp4rY5Mm+8rl7JwBma1NONeM20cdMQjT2w==", + "version": "2.18.1", + "resolved": "https://registry.npmjs.org/create-gatsby/-/create-gatsby-2.18.1.tgz", + "integrity": "sha512-1AZioXKi4COhESSHfsb/6tpkBvyuuXHwAmMAGrcUQpbynsQxYdqonnRqnFhp80bA2cIKxgjtHzzLhyRouDonbQ==", "requires": { "@babel/runtime": "^7.15.4" } @@ -5602,9 +5513,9 @@ "integrity": "sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==" }, "duplexer3": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/duplexer3/-/duplexer3-0.1.4.tgz", - "integrity": "sha512-CEj8FwwNA4cVH2uFCoHUrmojhYh1vmCdOaneKJXwkeY1i9jnlslVo9dx+hQ5Hl9GnH/Bwy/IjxAyOePyPKYnzA==" + "version": "0.1.5", + "resolved": "https://registry.npmjs.org/duplexer3/-/duplexer3-0.1.5.tgz", + "integrity": "sha512-1A8za6ws41LQgv9HrE/66jyC5yuSjQ3L/KOpFtoBilsAK2iA2wuS5rTt1OCzIvtS2V7nVmedsUU+DGRcjBmOYA==" }, "ee-first": { "version": "1.1.1", @@ -5612,9 +5523,9 @@ "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==" }, "electron-to-chromium": { - "version": "1.4.179", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.179.tgz", - "integrity": "sha512-1XeTb/U/8Xgh2YgPOqhakLYsvCcU4U7jUjTMbEnhIJoIWd/Qt3yC8y0cbG+fHzn4zUNF99Ey1xiPf20bwgLO3Q==" + "version": "1.4.186", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.186.tgz", + "integrity": "sha512-YoVeFrGd/7ROjz4R9uPoND1K/hSRC/xADy9639ZmIZeJSaBnKdYx3I6LMPsY7CXLpK7JFgKQVzeZ/dk2br6Eaw==" }, "emoji-regex": { "version": "8.0.0", @@ -6980,9 +6891,9 @@ "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==" }, "gatsby": { - "version": "4.18.0", - "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-4.18.0.tgz", - "integrity": "sha512-EyiwYUsbSKUKsdjm8nnLw5AGJwOJ9NAWcrFg1V/QU4CUnk/M8EiP0TxiGUmK1/K7g82XGxUjuAPYJKJk85yxHA==", + "version": "4.18.1", + "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-4.18.1.tgz", + "integrity": "sha512-frMFAWOmMl/CtqBZ3aZXlysicQQa8C+yfMdjnjx81f7E5xoL20klk1j4UYj1kUnGgBMSuVehU8M+bE0kT02zoQ==", "requires": { "@babel/code-frame": "^7.14.0", "@babel/core": "^7.15.5", @@ -7018,8 +6929,8 @@ "babel-plugin-add-module-exports": "^1.0.4", "babel-plugin-dynamic-import-node": "^2.3.3", "babel-plugin-lodash": "^3.3.4", - "babel-plugin-remove-graphql-queries": "^4.18.0", - "babel-preset-gatsby": "^2.18.0", + "babel-plugin-remove-graphql-queries": "^4.18.1", + "babel-preset-gatsby": "^2.18.1", "better-opn": "^2.1.1", "bluebird": "^3.7.2", "body-parser": "^1.19.0", @@ -7062,20 +6973,20 @@ "find-cache-dir": "^3.3.2", "fs-exists-cached": "1.0.0", "fs-extra": "^10.1.0", - "gatsby-cli": "^4.18.0", - "gatsby-core-utils": "^3.18.0", + "gatsby-cli": "^4.18.1", + "gatsby-core-utils": "^3.18.1", "gatsby-graphiql-explorer": "^2.18.0", "gatsby-legacy-polyfills": "^2.18.0", - "gatsby-link": "^4.18.0", - "gatsby-page-utils": "^2.18.0", - "gatsby-parcel-config": "0.9.0", - "gatsby-plugin-page-creator": "^4.18.0", - "gatsby-plugin-typescript": "^4.18.0", - "gatsby-plugin-utils": "^3.12.0", + "gatsby-link": "^4.18.1", + "gatsby-page-utils": "^2.18.1", + "gatsby-parcel-config": "^0.9.1", + "gatsby-plugin-page-creator": "^4.18.1", + "gatsby-plugin-typescript": "^4.18.1", + "gatsby-plugin-utils": "^3.12.1", "gatsby-react-router-scroll": "^5.18.0", "gatsby-script": "^1.3.0", "gatsby-sharp": "^0.12.0", - "gatsby-telemetry": "^3.18.0", + "gatsby-telemetry": "^3.18.1", "gatsby-worker": "^1.18.0", "glob": "^7.2.3", "globby": "^11.1.0", @@ -7091,7 +7002,7 @@ "joi": "^17.4.2", "json-loader": "^0.5.7", "latest-version": "5.1.0", - "lmdb": "2.5.2", + "lmdb": "2.5.3", "lodash": "^4.17.21", "md5-file": "^5.0.0", "meant": "^1.0.3", @@ -7149,9 +7060,9 @@ }, "dependencies": { "gatsby-cli": { - "version": "4.18.0", - "resolved": "https://registry.npmjs.org/gatsby-cli/-/gatsby-cli-4.18.0.tgz", - "integrity": "sha512-H4V1XvXP3EMwUBDbAlpu3jbjlCetUmHY6VB1YsH2kkIdlMrOgjUgNDFpqjgbk7k7z61du2tCgl1lyW+5he+SnA==", + "version": "4.18.1", + "resolved": "https://registry.npmjs.org/gatsby-cli/-/gatsby-cli-4.18.1.tgz", + "integrity": "sha512-ceYqm6i39rHY343zUCflwXnGtd25QGccvToTWL8W42/EGToDW8bubLfeBSRCfjXm946yf1gkS/1UAsAgAphYDA==", "requires": { "@babel/code-frame": "^7.14.0", "@babel/core": "^7.15.5", @@ -7170,13 +7081,13 @@ "common-tags": "^1.8.2", "configstore": "^5.0.1", "convert-hrtime": "^3.0.0", - "create-gatsby": "^2.18.0", + "create-gatsby": "^2.18.1", "envinfo": "^7.8.1", "execa": "^5.1.1", "fs-exists-cached": "^1.0.0", "fs-extra": "^10.1.0", - "gatsby-core-utils": "^3.18.0", - "gatsby-telemetry": "^3.18.0", + "gatsby-core-utils": "^3.18.1", + "gatsby-telemetry": "^3.18.1", "hosted-git-info": "^3.0.8", "is-valid-path": "^0.1.1", "joi": "^17.4.2", @@ -7202,9 +7113,9 @@ } }, "gatsby-core-utils": { - "version": "3.18.0", - "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.18.0.tgz", - "integrity": "sha512-mCoNgH4MilosLhEroklgVffwie9lyxgmvNwe/oIyzXr6NcZ2uxSp8G1KrgxdG2srt2hCNlZLlzS25ltLTeHTjA==", + "version": "3.18.1", + "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.18.1.tgz", + "integrity": "sha512-sJTxRqizLxYy/tSFk0ydfqEZ3ek1So9HDVUa39F6Oi8XuPCBTFzaAooUvowKGneI5YUbdk5y4VO4ybwVUynntw==", "requires": { "@babel/runtime": "^7.15.4", "ci-info": "2.0.0", @@ -7214,7 +7125,7 @@ "fs-extra": "^10.1.0", "got": "^11.8.5", "import-from": "^4.0.0", - "lmdb": "2.5.2", + "lmdb": "2.5.3", "lock": "^1.1.0", "node-object-hash": "^2.3.10", "proper-lockfile": "^4.1.2", @@ -7257,37 +7168,37 @@ } }, "gatsby-link": { - "version": "4.18.0", - "resolved": "https://registry.npmjs.org/gatsby-link/-/gatsby-link-4.18.0.tgz", - "integrity": "sha512-nE+Z/iE55Id84YqsQOT1bfPJ/AsupY/4s8i6NllQ8no/PRgDGMpkTG6ANqyt2CHs/bywxch2rv8Ho7Gwsuuueg==", + "version": "4.18.1", + "resolved": "https://registry.npmjs.org/gatsby-link/-/gatsby-link-4.18.1.tgz", + "integrity": "sha512-gLFH2iU4WugHU5k+SLu4F0Ar04kDT5KhkyXly99ZVtiIvHpA5DqcuGNIUjIE/lizSCsfa553wGv7dadfghGzrQ==", "requires": { "@babel/runtime": "^7.15.4", "@types/reach__router": "^1.3.10", - "gatsby-page-utils": "^2.18.0", + "gatsby-page-utils": "^2.18.1", "prop-types": "^15.8.1" } }, "gatsby-page-utils": { - "version": "2.18.0", - "resolved": "https://registry.npmjs.org/gatsby-page-utils/-/gatsby-page-utils-2.18.0.tgz", - "integrity": "sha512-qTwlqscKxkBlMd+Mn8xj6sh7L0LbfLGYOPCYozJnukXv8d/6Jyk1nfaP6I82hwj/iyhaBQtk7g8g4XyBJJaESw==", + "version": "2.18.1", + "resolved": "https://registry.npmjs.org/gatsby-page-utils/-/gatsby-page-utils-2.18.1.tgz", + "integrity": "sha512-4EM0LNOQgnCndHDQSI/ZKRFWYWG9dtTPuGbBaGlmPquhj3zwjOscws1vfj7g+u3PowKjZQ2Rf92RZd8xt8XLTQ==", "requires": { "@babel/runtime": "^7.15.4", "bluebird": "^3.7.2", "chokidar": "^3.5.3", "fs-exists-cached": "^1.0.0", - "gatsby-core-utils": "^3.18.0", + "gatsby-core-utils": "^3.18.1", "glob": "^7.2.3", "lodash": "^4.17.21", "micromatch": "^4.0.5" } }, "gatsby-parcel-config": { - "version": "0.9.0", - "resolved": "https://registry.npmjs.org/gatsby-parcel-config/-/gatsby-parcel-config-0.9.0.tgz", - "integrity": "sha512-ccGw/L8ylhDgE/4tr52B6tb2jreApOMoYPW75Z8aM2ULRz505fL5mrnkG1fdQDBZSCHx/0j0x2TZyCLrt0Bvlw==", + "version": "0.9.1", + "resolved": "https://registry.npmjs.org/gatsby-parcel-config/-/gatsby-parcel-config-0.9.1.tgz", + "integrity": "sha512-ZtVntsQYs0xhy1hvWUMeSLc4a+DvxtTf+NUrPF4rvBjOW/LPMx2eYDzPddKvqWmiUaT1+Ki9S9bwCuOp5muawg==", "requires": { - "@gatsbyjs/parcel-namer-relative-to-cwd": "1.3.0", + "@gatsbyjs/parcel-namer-relative-to-cwd": "^1.3.1", "@parcel/bundler-default": "2.6.0", "@parcel/compressor-raw": "2.6.0", "@parcel/namer-default": "2.6.0", @@ -7307,60 +7218,60 @@ } }, "gatsby-plugin-gatsby-cloud": { - "version": "4.18.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-gatsby-cloud/-/gatsby-plugin-gatsby-cloud-4.18.0.tgz", - "integrity": "sha512-c+PAabQCfmq0qUkGJ9Cp0vaB2+7mYiic7nj/Tx0cLqkeJJHrV7rqcUX1A2l4VycWRDFWSA5K1nTvb3uSUINB2g==", + "version": "4.18.1", + "resolved": "https://registry.npmjs.org/gatsby-plugin-gatsby-cloud/-/gatsby-plugin-gatsby-cloud-4.18.1.tgz", + "integrity": "sha512-FDrLl3w3WHVJCzddTYcSCqEi4DLvS9e8/9LY312QnxOqPv+fnLoSDYDyqazyK9/mu6gMz8cUU7UoHsMqpZNbCg==", "requires": { "@babel/runtime": "^7.15.4", "fs-extra": "^10.1.0", - "gatsby-core-utils": "^3.18.0", - "gatsby-telemetry": "^3.18.0", + "gatsby-core-utils": "^3.18.1", + "gatsby-telemetry": "^3.18.1", "kebab-hash": "^0.1.2", "lodash": "^4.17.21", "webpack-assets-manifest": "^5.1.0" } }, "gatsby-plugin-image": { - "version": "2.18.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-image/-/gatsby-plugin-image-2.18.0.tgz", - "integrity": "sha512-/WvMDUiZvofmxHzHeEPLNL605FU1AK5pLXKKS8aekRigbNbi+Gip2ZROFPJtj4oxyKDmtD+HaVCNf1q8SdhPEg==", + "version": "2.18.1", + "resolved": "https://registry.npmjs.org/gatsby-plugin-image/-/gatsby-plugin-image-2.18.1.tgz", + "integrity": "sha512-PsNIWq5bVALRRshbKOL97tqZTT2r0iILlP+K26YHfd+54DOUPqjESGZ/x7rnv2WMBVFd+Xtkmrx6M1rW86g1Rw==", "requires": { "@babel/code-frame": "^7.14.0", "@babel/parser": "^7.15.5", "@babel/runtime": "^7.15.4", "@babel/traverse": "^7.15.4", "babel-jsx-utils": "^1.1.0", - "babel-plugin-remove-graphql-queries": "^4.18.0", + "babel-plugin-remove-graphql-queries": "^4.18.1", "camelcase": "^5.3.1", "chokidar": "^3.5.3", "common-tags": "^1.8.2", "fs-extra": "^10.1.0", - "gatsby-core-utils": "^3.18.0", - "gatsby-plugin-utils": "^3.12.0", + "gatsby-core-utils": "^3.18.1", + "gatsby-plugin-utils": "^3.12.1", "objectFitPolyfill": "^2.3.5", "prop-types": "^15.8.1" } }, "gatsby-plugin-manifest": { - "version": "4.18.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-manifest/-/gatsby-plugin-manifest-4.18.0.tgz", - "integrity": "sha512-UqyENX8vwl9toCVnfdhVX/P7NZApG4FvXoDdkxfI53tKoFv93rIisb2IUGQeZZP9jHXprGlnP3y8dgTAmz5Ubw==", + "version": "4.18.1", + "resolved": "https://registry.npmjs.org/gatsby-plugin-manifest/-/gatsby-plugin-manifest-4.18.1.tgz", + "integrity": "sha512-LR4S/MCbUP7Fk3A4xwrA9nhIx9RjDTAE5DAXfXMKvnh1f6an6d+x9XKDqNnGtixVOnlfy3jK0IxLzC1HCjNKSQ==", "requires": { "@babel/runtime": "^7.15.4", - "gatsby-core-utils": "^3.18.0", - "gatsby-plugin-utils": "^3.12.0", + "gatsby-core-utils": "^3.18.1", + "gatsby-plugin-utils": "^3.12.1", "semver": "^7.3.7", "sharp": "^0.30.3" } }, "gatsby-plugin-offline": { - "version": "5.18.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-offline/-/gatsby-plugin-offline-5.18.0.tgz", - "integrity": "sha512-PfbAwEwfozkbAxtPVxUwYkvX47IsWpOJUlutn6wl7hj7VLHfegxDg3RZtc0trbDpj39wVtcLDdM8fu4schm3EA==", + "version": "5.18.1", + "resolved": "https://registry.npmjs.org/gatsby-plugin-offline/-/gatsby-plugin-offline-5.18.1.tgz", + "integrity": "sha512-Gbk3bNPPCGWgZluXtmW2FUOBmLoxShuXeInCZlYz+p+Vz9jnNUIWk2SFZO1oeo7SFzuQpdkcy0oClOCYVZ9ClA==", "requires": { "@babel/runtime": "^7.15.4", "cheerio": "^1.0.0-rc.10", - "gatsby-core-utils": "^3.18.0", + "gatsby-core-utils": "^3.18.1", "glob": "^7.2.3", "idb-keyval": "^3.2.0", "lodash": "^4.17.21", @@ -7368,19 +7279,19 @@ } }, "gatsby-plugin-page-creator": { - "version": "4.18.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-page-creator/-/gatsby-plugin-page-creator-4.18.0.tgz", - "integrity": "sha512-6bY4vJndDw0nBcOuQdX41Wvbctw0y9+a7IavCFJKFeNs+Zo0XH2FX0IAww0slDnSJU6AukJ9qfjHqKJkADAZpQ==", + "version": "4.18.1", + "resolved": "https://registry.npmjs.org/gatsby-plugin-page-creator/-/gatsby-plugin-page-creator-4.18.1.tgz", + "integrity": "sha512-XPAglahQ1fDnSdSNJmtAGwVqB7yZDGPOQQBQX7LD74XwYP6uriRo4LyeI+gEXRqW4d63ZL3VMvgdisde9M95LQ==", "requires": { "@babel/runtime": "^7.15.4", "@babel/traverse": "^7.15.4", "@sindresorhus/slugify": "^1.1.2", "chokidar": "^3.5.3", "fs-exists-cached": "^1.0.0", - "gatsby-core-utils": "^3.18.0", - "gatsby-page-utils": "^2.18.0", - "gatsby-plugin-utils": "^3.12.0", - "gatsby-telemetry": "^3.18.0", + "gatsby-core-utils": "^3.18.1", + "gatsby-page-utils": "^2.18.1", + "gatsby-plugin-utils": "^3.12.1", + "gatsby-telemetry": "^3.18.1", "globby": "^11.1.0", "lodash": "^4.17.21" } @@ -7394,9 +7305,9 @@ } }, "gatsby-plugin-sharp": { - "version": "4.18.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-sharp/-/gatsby-plugin-sharp-4.18.0.tgz", - "integrity": "sha512-ExGzy8xAwc5+4nDHgGe1k8Id/HZpETPSizLNeJ5We3T4hjshdfgvnuRiAZf2VIY60+VPuVCezYNn4n7gPTShRw==", + "version": "4.18.1", + "resolved": "https://registry.npmjs.org/gatsby-plugin-sharp/-/gatsby-plugin-sharp-4.18.1.tgz", + "integrity": "sha512-oUAy+1Ey8/HKSYwY9W+LkO8BT7nVk6it2n9QympS8BzGgnFXY8695flmaPtQySMES+OwYGtlh0JhU+p9caVZAQ==", "requires": { "@babel/runtime": "^7.15.4", "@gatsbyjs/potrace": "^2.2.0", @@ -7405,9 +7316,9 @@ "debug": "^4.3.4", "filenamify": "^4.3.0", "fs-extra": "^10.1.0", - "gatsby-core-utils": "^3.18.0", - "gatsby-plugin-utils": "^3.12.0", - "gatsby-telemetry": "^3.18.0", + "gatsby-core-utils": "^3.18.1", + "gatsby-plugin-utils": "^3.12.1", + "gatsby-telemetry": "^3.18.1", "got": "^11.8.5", "lodash": "^4.17.21", "mini-svg-data-uri": "^1.4.4", @@ -7537,9 +7448,9 @@ } }, "gatsby-plugin-typescript": { - "version": "4.18.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-typescript/-/gatsby-plugin-typescript-4.18.0.tgz", - "integrity": "sha512-SuNBrp57SnovOyhCz0zPkz7begV4UR2XdXUrFsh4N0jWOI5yFNVgENpKlbI/O7JnvgyV5KC/pkobNh3we+0mcQ==", + "version": "4.18.1", + "resolved": "https://registry.npmjs.org/gatsby-plugin-typescript/-/gatsby-plugin-typescript-4.18.1.tgz", + "integrity": "sha512-YUZcqL2WWiL2ngKe4A5FpTjCij2pLxiim+QaujeKfMjeWfHJ13uQ74HlxQXNpGAy4vMRBiU4CJH71RXgS1aoaA==", "requires": { "@babel/core": "^7.15.5", "@babel/plugin-proposal-nullish-coalescing-operator": "^7.14.5", @@ -7547,18 +7458,18 @@ "@babel/plugin-proposal-optional-chaining": "^7.14.5", "@babel/preset-typescript": "^7.15.0", "@babel/runtime": "^7.15.4", - "babel-plugin-remove-graphql-queries": "^4.18.0" + "babel-plugin-remove-graphql-queries": "^4.18.1" } }, "gatsby-plugin-utils": { - "version": "3.12.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-utils/-/gatsby-plugin-utils-3.12.0.tgz", - "integrity": "sha512-vdz3qwaCOkvgzAxMkZlgpmpWf555jISwek5lyWYhGyJJvXYV8KQ2cZ4CoOfFKAYVeZVSucrHcdWyY3fLLpQvAA==", + "version": "3.12.1", + "resolved": "https://registry.npmjs.org/gatsby-plugin-utils/-/gatsby-plugin-utils-3.12.1.tgz", + "integrity": "sha512-Rx7/MFtiJ+pyvPLqCPj5beyMN6qOx3EYMrOqmvrWJaM32nxMfHZqUqxGruufyFNVe6edfRuNuXcKaPXlGlyexA==", "requires": { "@babel/runtime": "^7.15.4", "@gatsbyjs/potrace": "^2.2.0", "fs-extra": "^10.1.0", - "gatsby-core-utils": "^3.18.0", + "gatsby-core-utils": "^3.18.1", "gatsby-sharp": "^0.12.0", "graphql-compose": "^9.0.7", "import-from": "^4.0.0", @@ -7599,15 +7510,15 @@ } }, "gatsby-source-filesystem": { - "version": "4.18.0", - "resolved": "https://registry.npmjs.org/gatsby-source-filesystem/-/gatsby-source-filesystem-4.18.0.tgz", - "integrity": "sha512-45ivbP9Ho6ioCqAJKdz5ejXlKCZ+8UCzQEC8cQbJI+k5CiJMdA09X65GVITUEob0bFRCcv5RQu4fOodrznaIwg==", + "version": "4.18.1", + "resolved": "https://registry.npmjs.org/gatsby-source-filesystem/-/gatsby-source-filesystem-4.18.1.tgz", + "integrity": "sha512-b1sZB0ziLJEGZOi2+ieUKWJXn3X1hK+F3nN5joaI3A+ptz75GpNuv04tFoq9oICzOHyuNuSGN5YgO8kMpmoaGQ==", "requires": { "@babel/runtime": "^7.15.4", "chokidar": "^3.5.3", "file-type": "^16.5.3", "fs-extra": "^10.1.0", - "gatsby-core-utils": "^3.18.0", + "gatsby-core-utils": "^3.18.1", "got": "^9.6.0", "md5-file": "^5.0.0", "mime": "^2.5.2", @@ -7737,9 +7648,9 @@ } }, "gatsby-telemetry": { - "version": "3.18.0", - "resolved": "https://registry.npmjs.org/gatsby-telemetry/-/gatsby-telemetry-3.18.0.tgz", - "integrity": "sha512-i1JvNqGOyLDPGEn1QN29YGpe2ripg2LZBAOhXmk6lAhRL5fTVo6WkEA2yW7XESnXIOJBFymgVbUlLjXoqeZ5Xg==", + "version": "3.18.1", + "resolved": "https://registry.npmjs.org/gatsby-telemetry/-/gatsby-telemetry-3.18.1.tgz", + "integrity": "sha512-EjjsUv15BZGsmnPrOINRT/s7d18DTKokpp2NDZLm8uOs3MwVoLtUZ/BS7h2NTmgK+WN93q3bNYRkZgKgV9QC1A==", "requires": { "@babel/code-frame": "^7.14.0", "@babel/runtime": "^7.15.4", @@ -7749,7 +7660,7 @@ "boxen": "^4.2.0", "configstore": "^5.0.1", "fs-extra": "^10.1.0", - "gatsby-core-utils": "^3.18.0", + "gatsby-core-utils": "^3.18.1", "git-up": "^4.0.5", "is-docker": "^2.2.1", "lodash": "^4.17.21", @@ -7822,16 +7733,16 @@ } }, "gatsby-transformer-sharp": { - "version": "4.18.0", - "resolved": "https://registry.npmjs.org/gatsby-transformer-sharp/-/gatsby-transformer-sharp-4.18.0.tgz", - "integrity": "sha512-uOsP5U10pWPdhpKHkPyKWoxCFEGdnreqmSrWrKUsHa0oViCfudbDrM+xWla+QQ0MhHHkqOUjdcfZRG3SwUlPcg==", + "version": "4.18.1", + "resolved": "https://registry.npmjs.org/gatsby-transformer-sharp/-/gatsby-transformer-sharp-4.18.1.tgz", + "integrity": "sha512-YqY3dWdUmRzhE2DBbOtJygL/bWKFXDQf3ARn6tSEt0WqPRFGLGbsSpT/xU5makHugdO/Wc30x3x85FhwysvH6Q==", "requires": { "@babel/runtime": "^7.15.4", "@gatsbyjs/potrace": "^2.2.0", "bluebird": "^3.7.2", "common-tags": "^1.8.2", "fs-extra": "^10.1.0", - "gatsby-plugin-utils": "^3.12.0", + "gatsby-plugin-utils": "^3.12.1", "probe-image-size": "^7.2.3", "semver": "^7.3.7", "sharp": "^0.30.3" @@ -8980,9 +8891,9 @@ } }, "jsx-ast-utils": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.3.1.tgz", - "integrity": "sha512-pxrjmNpeRw5wwVeWyEAk7QJu2GnBO3uzPFmHCKJJFPKK2Cy0cWL23krGtLdnMmbIi6/FjlrQpPyfQI19ByPOhQ==", + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.3.2.tgz", + "integrity": "sha512-4ZCADZHRkno244xlNnn4AOG6sRQ7iBZ5BbgZ4vW4y5IZw7cVUD1PPeblm1xx/nfmMxPdt/LHsXZW8z/j58+l9Q==", "requires": { "array-includes": "^3.1.5", "object.assign": "^4.1.2" @@ -9051,9 +8962,9 @@ } }, "lilconfig": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-2.0.5.tgz", - "integrity": "sha512-xaYmXZtTHPAw5m+xLN8ab9C+3a8YmV3asNSPOATITbtwrfbwaLJj8h66H1WMIpALCkqsIzK3h7oQ+PdX+LQ9Eg==" + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-2.0.6.tgz", + "integrity": "sha512-9JROoBW7pobfsx+Sq2JsASvCo6Pfo6WWoUW79HuB1BCoBXD4PLWJPqDF6fNj67pqBYTbAHkE57M1kS/+L1neOg==" }, "lines-and-columns": { "version": "1.2.4", @@ -9061,16 +8972,16 @@ "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==" }, "lmdb": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/lmdb/-/lmdb-2.5.2.tgz", - "integrity": "sha512-V5V5Xa2Hp9i2XsbDALkBTeHXnBXh/lEmk9p22zdr7jtuOIY9TGhjK6vAvTpOOx9IKU4hJkRWZxn/HsvR1ELLtA==", - "requires": { - "@lmdb/lmdb-darwin-arm64": "2.5.2", - "@lmdb/lmdb-darwin-x64": "2.5.2", - "@lmdb/lmdb-linux-arm": "2.5.2", - "@lmdb/lmdb-linux-arm64": "2.5.2", - "@lmdb/lmdb-linux-x64": "2.5.2", - "@lmdb/lmdb-win32-x64": "2.5.2", + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/lmdb/-/lmdb-2.5.3.tgz", + "integrity": "sha512-iBA0cb13CobBSoGJLfZgnrykLlfJipDAnvtf+YwIqqzBEsTeQYsXrHaSBkaHd5wCWeabwrNvhjZoFMUrlo+eLw==", + "requires": { + "@lmdb/lmdb-darwin-arm64": "2.5.3", + "@lmdb/lmdb-darwin-x64": "2.5.3", + "@lmdb/lmdb-linux-arm": "2.5.3", + "@lmdb/lmdb-linux-arm64": "2.5.3", + "@lmdb/lmdb-linux-x64": "2.5.3", + "@lmdb/lmdb-win32-x64": "2.5.3", "msgpackr": "^1.5.4", "node-addon-api": "^4.3.0", "node-gyp-build-optional-packages": "5.0.3", @@ -9576,9 +9487,9 @@ "integrity": "sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==" }, "moment": { - "version": "2.29.3", - "resolved": "https://registry.npmjs.org/moment/-/moment-2.29.3.tgz", - "integrity": "sha512-c6YRvhEo//6T2Jz/vVtYzqBzwvPT95JBQ+smCytzf7c50oMZRsR/a4w88aD34I+/QVSfnoAnSBFPJHItlOMJVw==" + "version": "2.29.4", + "resolved": "https://registry.npmjs.org/moment/-/moment-2.29.4.tgz", + "integrity": "sha512-5LC9SOxjSc2HF6vO2CyuTDNivEdoz2IvyJJGj6X8DJ0eFyfszE0QiEd+iXmBvUP3WHxSjFH/vIsA0EN00cgr8w==" }, "ms": { "version": "2.1.2", @@ -9745,9 +9656,9 @@ "integrity": "sha512-jY5dPJzw6NHd/KPSfPKJ+IHoFS81/tJ43r34ZeNMXGzCOM8jwQDCD12HYayKIB6MuznrnqIYy2e891NA2g0ibA==" }, "node-releases": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.5.tgz", - "integrity": "sha512-U9h1NLROZTq9uE1SNffn6WuPDg8icmi3ns4rEl/oTfIle4iLjTliCzgTsbaIFMq/Xn078/lfY/BL0GWZ+psK4Q==" + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.6.tgz", + "integrity": "sha512-PiVXnNuFm5+iYkLBNeq5211hvO38y63T0i2KKh2KnUs3RpzJ+JtODFjkD8yjLwnDkTYF1eKXheUwdssR+NRZdg==" }, "normalize-path": { "version": "3.0.0", @@ -12546,9 +12457,9 @@ } }, "tslib": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.1.tgz", - "integrity": "sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw==" + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz", + "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==" }, "tsutils": { "version": "3.21.0", diff --git a/starters/default/package.json b/starters/default/package.json index 50185ed38e0df..37fc6126e3583 100644 --- a/starters/default/package.json +++ b/starters/default/package.json @@ -5,15 +5,15 @@ "version": "0.1.0", "author": "Kyle Mathews ", "dependencies": { - "gatsby": "^4.18.0", - "gatsby-plugin-gatsby-cloud": "^4.18.0", - "gatsby-plugin-image": "^2.18.0", - "gatsby-plugin-manifest": "^4.18.0", - "gatsby-plugin-offline": "^5.18.0", + "gatsby": "^4.18.1", + "gatsby-plugin-gatsby-cloud": "^4.18.1", + "gatsby-plugin-image": "^2.18.1", + "gatsby-plugin-manifest": "^4.18.1", + "gatsby-plugin-offline": "^5.18.1", "gatsby-plugin-react-helmet": "^5.18.0", - "gatsby-plugin-sharp": "^4.18.0", - "gatsby-source-filesystem": "^4.18.0", - "gatsby-transformer-sharp": "^4.18.0", + "gatsby-plugin-sharp": "^4.18.1", + "gatsby-source-filesystem": "^4.18.1", + "gatsby-transformer-sharp": "^4.18.1", "prop-types": "^15.8.1", "react": "^18.1.0", "react-dom": "^18.1.0", diff --git a/starters/gatsby-starter-blog-theme-core/package-lock.json b/starters/gatsby-starter-blog-theme-core/package-lock.json index eab94899874f5..3a23a1a138420 100644 --- a/starters/gatsby-starter-blog-theme-core/package-lock.json +++ b/starters/gatsby-starter-blog-theme-core/package-lock.json @@ -1024,9 +1024,9 @@ "integrity": "sha512-MmetCkz9ej86nJQV+sFCxoGGrUbU3q02kgLciwkrt9QqEB7cP39oKEY0PakknEO0Gu20SskMRi+AYZ3b1TpN9g==" }, "@babel/types": { - "version": "7.18.7", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.7.tgz", - "integrity": "sha512-QG3yxTcTIBoAcQmkCs+wAPYZhu7Dk9rXKacINfNbdJDNERTbLQbHGyVG8q/YGMPeCJRIhSY0+fTc5+xuh6WPSQ==", + "version": "7.18.8", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.8.tgz", + "integrity": "sha512-qwpdsmraq0aJ3osLJRApsc2ouSJCdnMeZwB0DhbtHAtRpZNZCdlbRnHIgcRKzdE1g0iOGg644fzjOBcdOz9cPw==", "requires": { "@babel/helper-validator-identifier": "^7.18.6", "to-fast-properties": "^2.0.0" @@ -1081,9 +1081,9 @@ } }, "@babel/plugin-transform-typescript": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.18.6.tgz", - "integrity": "sha512-ijHNhzIrLj5lQCnI6aaNVRtGVuUZhOXFLRVFs7lLrkXTHip4FKty5oAuQdk4tywG0/WjXmjTfQCWmuzrvFer1w==", + "version": "7.18.8", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.18.8.tgz", + "integrity": "sha512-p2xM8HI83UObjsZGofMV/EdYjamsDm6MoN3hXPYIT0+gxIoopE+B7rPYKAxfrz9K9PK7JafTTjqYC6qipLExYA==", "requires": { "@babel/helper-create-class-features-plugin": "^7.18.6", "@babel/helper-plugin-utils": "^7.18.6", @@ -1209,9 +1209,9 @@ } }, "@babel/parser": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.18.6.tgz", - "integrity": "sha512-uQVSa9jJUe/G/304lXspfWVpKpK4euFLgGiMQFOCpM/bgcAdeoHwi/OQz23O9GK2osz26ZiXRRV9aV+Yl1O8tw==" + "version": "7.18.8", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.18.8.tgz", + "integrity": "sha512-RSKRfYX20dyH+elbJK2uqAkVyucL+xXzhqlMD5/ZXx+dAAwpyB7HsvnHe/ZUGOF+xLr5Wx9/JoXVTj6BQE2/oA==" }, "@babel/template": { "version": "7.18.6", @@ -1224,26 +1224,26 @@ } }, "@babel/traverse": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.18.6.tgz", - "integrity": "sha512-zS/OKyqmD7lslOtFqbscH6gMLFYOfG1YPqCKfAW5KrTeolKqvB8UelR49Fpr6y93kYkW2Ik00mT1LOGiAGvizw==", + "version": "7.18.8", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.18.8.tgz", + "integrity": "sha512-UNg/AcSySJYR/+mIcJQDCv00T+AqRO7j/ZEJLzpaYtgM48rMg5MnkJgyNqkzo88+p4tfRvZJCEiwwfG6h4jkRg==", "requires": { "@babel/code-frame": "^7.18.6", - "@babel/generator": "^7.18.6", + "@babel/generator": "^7.18.7", "@babel/helper-environment-visitor": "^7.18.6", "@babel/helper-function-name": "^7.18.6", "@babel/helper-hoist-variables": "^7.18.6", "@babel/helper-split-export-declaration": "^7.18.6", - "@babel/parser": "^7.18.6", - "@babel/types": "^7.18.6", + "@babel/parser": "^7.18.8", + "@babel/types": "^7.18.8", "debug": "^4.1.0", "globals": "^11.1.0" } }, "@babel/types": { - "version": "7.18.7", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.7.tgz", - "integrity": "sha512-QG3yxTcTIBoAcQmkCs+wAPYZhu7Dk9rXKacINfNbdJDNERTbLQbHGyVG8q/YGMPeCJRIhSY0+fTc5+xuh6WPSQ==", + "version": "7.18.8", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.8.tgz", + "integrity": "sha512-qwpdsmraq0aJ3osLJRApsc2ouSJCdnMeZwB0DhbtHAtRpZNZCdlbRnHIgcRKzdE1g0iOGg644fzjOBcdOz9cPw==", "requires": { "@babel/helper-validator-identifier": "^7.18.6", "to-fast-properties": "^2.0.0" @@ -1545,19 +1545,19 @@ } }, "@gatsbyjs/parcel-namer-relative-to-cwd": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/@gatsbyjs/parcel-namer-relative-to-cwd/-/parcel-namer-relative-to-cwd-1.3.0.tgz", - "integrity": "sha512-nd1lQn7ezg51ekqZm8iZjND8akB7bsGkGe7GdIPdTwbhale2dHLqd74qg+bBrEjv5f5aFZhpJeY9XpeU4emWZQ==", + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/@gatsbyjs/parcel-namer-relative-to-cwd/-/parcel-namer-relative-to-cwd-1.3.1.tgz", + "integrity": "sha512-wN4iU1CWumvhcuzMBKdDikZ5xgo81Ias09bKyjE36DgNxTzAhT2fXZIBAAEUlv/GBQqFe6Eas83gGGtXf31hiw==", "requires": { "@babel/runtime": "^7.18.0", "@parcel/plugin": "2.6.0", - "gatsby-core-utils": "^3.18.0" + "gatsby-core-utils": "^3.18.1" }, "dependencies": { "gatsby-core-utils": { - "version": "3.18.0", - "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.18.0.tgz", - "integrity": "sha512-mCoNgH4MilosLhEroklgVffwie9lyxgmvNwe/oIyzXr6NcZ2uxSp8G1KrgxdG2srt2hCNlZLlzS25ltLTeHTjA==", + "version": "3.18.1", + "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.18.1.tgz", + "integrity": "sha512-sJTxRqizLxYy/tSFk0ydfqEZ3ek1So9HDVUa39F6Oi8XuPCBTFzaAooUvowKGneI5YUbdk5y4VO4ybwVUynntw==", "requires": { "@babel/runtime": "^7.15.4", "ci-info": "2.0.0", @@ -1567,7 +1567,7 @@ "fs-extra": "^10.1.0", "got": "^11.8.5", "import-from": "^4.0.0", - "lmdb": "2.5.2", + "lmdb": "2.5.3", "lock": "^1.1.0", "node-object-hash": "^2.3.10", "proper-lockfile": "^4.1.2", @@ -1595,16 +1595,16 @@ } }, "lmdb": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/lmdb/-/lmdb-2.5.2.tgz", - "integrity": "sha512-V5V5Xa2Hp9i2XsbDALkBTeHXnBXh/lEmk9p22zdr7jtuOIY9TGhjK6vAvTpOOx9IKU4hJkRWZxn/HsvR1ELLtA==", - "requires": { - "@lmdb/lmdb-darwin-arm64": "2.5.2", - "@lmdb/lmdb-darwin-x64": "2.5.2", - "@lmdb/lmdb-linux-arm": "2.5.2", - "@lmdb/lmdb-linux-arm64": "2.5.2", - "@lmdb/lmdb-linux-x64": "2.5.2", - "@lmdb/lmdb-win32-x64": "2.5.2", + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/lmdb/-/lmdb-2.5.3.tgz", + "integrity": "sha512-iBA0cb13CobBSoGJLfZgnrykLlfJipDAnvtf+YwIqqzBEsTeQYsXrHaSBkaHd5wCWeabwrNvhjZoFMUrlo+eLw==", + "requires": { + "@lmdb/lmdb-darwin-arm64": "2.5.3", + "@lmdb/lmdb-darwin-x64": "2.5.3", + "@lmdb/lmdb-linux-arm": "2.5.3", + "@lmdb/lmdb-linux-arm64": "2.5.3", + "@lmdb/lmdb-linux-x64": "2.5.3", + "@lmdb/lmdb-win32-x64": "2.5.3", "msgpackr": "^1.5.4", "node-addon-api": "^4.3.0", "node-gyp-build-optional-packages": "5.0.3", @@ -1998,108 +1998,87 @@ } }, "@graphql-codegen/add": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/@graphql-codegen/add/-/add-3.1.1.tgz", - "integrity": "sha512-XkVwcqosa0CVBlL1HaQT0gp+EUfhuQE3LzrEpzMQLwchxaj/NPVYtOJL6MUHaYDsHzLqxWrufjfbeB3y2NQgRw==", + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/@graphql-codegen/add/-/add-3.2.0.tgz", + "integrity": "sha512-8hyr5XvTDGnpiT4nH2yH8PP4SWtUEIUdkFaZbkpkFkU0Ud9dplvSviOCdxdArffZ1FHy0XYLTMa2it+UJOtszg==", "requires": { - "@graphql-codegen/plugin-helpers": "^2.3.2", - "tslib": "~2.3.0" + "@graphql-codegen/plugin-helpers": "^2.5.0", + "tslib": "~2.4.0" } }, "@graphql-codegen/core": { - "version": "2.5.1", - "resolved": "https://registry.npmjs.org/@graphql-codegen/core/-/core-2.5.1.tgz", - "integrity": "sha512-alctBVl2hMnBXDLwkgmnFPrZVIiBDsWJSmxJcM4GKg1PB23+xuov35GE47YAyAhQItE1B1fbYnbb1PtGiDZ4LA==", + "version": "2.6.0", + "resolved": "https://registry.npmjs.org/@graphql-codegen/core/-/core-2.6.0.tgz", + "integrity": "sha512-7uZGnLCMR/pnh/5CsyI4y5bBvRndNHFs+AWpMUUjDBcjMRrMaavu37VyyYDz4/ob0BnQJt8RTBN9eArS9PLYAQ==", "requires": { - "@graphql-codegen/plugin-helpers": "^2.4.1", - "@graphql-tools/schema": "^8.1.2", - "@graphql-tools/utils": "^8.1.1", - "tslib": "~2.3.0" + "@graphql-codegen/plugin-helpers": "^2.5.0", + "@graphql-tools/schema": "^8.5.0", + "@graphql-tools/utils": "^8.8.0", + "tslib": "~2.4.0" } }, "@graphql-codegen/plugin-helpers": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/@graphql-codegen/plugin-helpers/-/plugin-helpers-2.4.2.tgz", - "integrity": "sha512-LJNvwAPv/sKtI3RnRDm+nPD+JeOfOuSOS4FFIpQCMUCyMnFcchV/CPTTv7tT12fLUpEg6XjuFfDBvOwndti30Q==", + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/@graphql-codegen/plugin-helpers/-/plugin-helpers-2.5.0.tgz", + "integrity": "sha512-0jM5/14EdM4yow5v8OGOnUmRqfA1gaWkh+J5berqQUpcFYfSQXD6+Idnkiju/jjIypEN7UvbPkC7BgryWVxexA==", "requires": { - "@graphql-tools/utils": "^8.5.2", + "@graphql-tools/utils": "^8.8.0", "change-case-all": "1.0.14", "common-tags": "1.8.2", "import-from": "4.0.0", "lodash": "~4.17.0", - "tslib": "~2.3.0" + "tslib": "~2.4.0" } }, "@graphql-codegen/schema-ast": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/@graphql-codegen/schema-ast/-/schema-ast-2.4.1.tgz", - "integrity": "sha512-bIWlKk/ShoVJfghA4Rt1OWnd34/dQmZM/vAe6fu6QKyOh44aAdqPtYQ2dbTyFXoknmu504etKJGEDllYNUJRfg==", + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/@graphql-codegen/schema-ast/-/schema-ast-2.5.0.tgz", + "integrity": "sha512-nlF4Yc7h90nmogG2E11TeFJ3/hCkb4SDMSdbJX68b1mhvVEji/kq3zWYKAQ+lAzjZ7HF94Eylm3MrZAjjpCKIA==", "requires": { - "@graphql-codegen/plugin-helpers": "^2.3.2", - "@graphql-tools/utils": "^8.1.1", - "tslib": "~2.3.0" + "@graphql-codegen/plugin-helpers": "^2.5.0", + "@graphql-tools/utils": "^8.8.0", + "tslib": "~2.4.0" } }, "@graphql-codegen/typescript": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@graphql-codegen/typescript/-/typescript-2.6.0.tgz", - "integrity": "sha512-f36ilg8J+wui0OhmQglIZ+2z4Ybc08Y7r7BlBDqfJ1F5X0zau0SlC7Hp2iCoCA0ucqZYtiUU/0n+/R8m1cTrQQ==", + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/@graphql-codegen/typescript/-/typescript-2.7.1.tgz", + "integrity": "sha512-qF4SBMgBnLcegba2s9+zC3NwgRhU0Kv+eS8kl9G5ldEHx9Bpu2tft+lk6fjqqhExDzJT+MEOU3Ecog3BzL2R1g==", "requires": { - "@graphql-codegen/plugin-helpers": "^2.4.0", - "@graphql-codegen/schema-ast": "^2.4.1", - "@graphql-codegen/visitor-plugin-common": "2.10.0", + "@graphql-codegen/plugin-helpers": "^2.5.0", + "@graphql-codegen/schema-ast": "^2.5.0", + "@graphql-codegen/visitor-plugin-common": "2.11.1", "auto-bind": "~4.0.0", "tslib": "~2.4.0" - }, - "dependencies": { - "tslib": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz", - "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==" - } } }, "@graphql-codegen/typescript-operations": { - "version": "2.4.3", - "resolved": "https://registry.npmjs.org/@graphql-codegen/typescript-operations/-/typescript-operations-2.4.3.tgz", - "integrity": "sha512-MW9cU/zCAmfFAObwW23e+GrW3CoV9OX2gVm/V1565WGZXDQPUc5Y5IjdfGfunV4ApkgFDiHpF1Mz/AS55OErgw==", + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/@graphql-codegen/typescript-operations/-/typescript-operations-2.5.1.tgz", + "integrity": "sha512-lGv+sPDXGcp/vDdIh7SoQjz8BRCZhLats4Hbqnf6gB7UtIasMvGuFDQyrKb3XAkQQYWqx/xtmEo0rBN8syV+Wg==", "requires": { - "@graphql-codegen/plugin-helpers": "^2.4.0", - "@graphql-codegen/typescript": "^2.6.0", - "@graphql-codegen/visitor-plugin-common": "2.10.0", + "@graphql-codegen/plugin-helpers": "^2.5.0", + "@graphql-codegen/typescript": "^2.7.1", + "@graphql-codegen/visitor-plugin-common": "2.11.1", "auto-bind": "~4.0.0", "tslib": "~2.4.0" - }, - "dependencies": { - "tslib": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz", - "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==" - } } }, "@graphql-codegen/visitor-plugin-common": { - "version": "2.10.0", - "resolved": "https://registry.npmjs.org/@graphql-codegen/visitor-plugin-common/-/visitor-plugin-common-2.10.0.tgz", - "integrity": "sha512-nWoxHKUdwOJCWV96Ks1x4EwYCWsZDJXB+2j6EQz5j27DzdxmQInZ86degaDCd3EgbwhMQEMtiZiPGFFDrgBkHA==", - "requires": { - "@graphql-codegen/plugin-helpers": "^2.4.0", - "@graphql-tools/optimize": "^1.0.1", - "@graphql-tools/relay-operation-optimizer": "^6.4.14", - "@graphql-tools/utils": "^8.3.0", + "version": "2.11.1", + "resolved": "https://registry.npmjs.org/@graphql-codegen/visitor-plugin-common/-/visitor-plugin-common-2.11.1.tgz", + "integrity": "sha512-AlrtGWKn2o89SPna75ATEHYAu95MUMucgBqLgcRvK9n/PHhVAbkDrNCH5pL03fE0HLOup3GpjX8DcnFBMU46IA==", + "requires": { + "@graphql-codegen/plugin-helpers": "^2.5.0", + "@graphql-tools/optimize": "^1.3.0", + "@graphql-tools/relay-operation-optimizer": "^6.5.0", + "@graphql-tools/utils": "^8.8.0", "auto-bind": "~4.0.0", "change-case-all": "1.0.14", "dependency-graph": "^0.11.0", "graphql-tag": "^2.11.0", "parse-filepath": "^1.0.2", "tslib": "~2.4.0" - }, - "dependencies": { - "tslib": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz", - "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==" - } } }, "@graphql-tools/batch-execute": { @@ -2145,13 +2124,6 @@ "globby": "^11.0.3", "tslib": "^2.4.0", "unixify": "^1.0.0" - }, - "dependencies": { - "tslib": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz", - "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==" - } } }, "@graphql-tools/delegate": { @@ -2244,13 +2216,6 @@ "@babel/types": "^7.16.8", "@graphql-tools/utils": "8.8.0", "tslib": "^2.4.0" - }, - "dependencies": { - "tslib": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz", - "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==" - } } }, "@graphql-tools/import": { @@ -2261,13 +2226,6 @@ "@graphql-tools/utils": "8.8.0", "resolve-from": "5.0.0", "tslib": "^2.4.0" - }, - "dependencies": { - "tslib": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz", - "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==" - } } }, "@graphql-tools/json-file-loader": { @@ -2321,11 +2279,6 @@ "requires": { "yocto-queue": "^0.1.0" } - }, - "tslib": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz", - "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==" } } }, @@ -2336,13 +2289,6 @@ "requires": { "@graphql-tools/utils": "8.8.0", "tslib": "^2.4.0" - }, - "dependencies": { - "tslib": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz", - "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==" - } } }, "@graphql-tools/optimize": { @@ -2351,13 +2297,6 @@ "integrity": "sha512-30QOWJoMJEt1De7tAFtWJ6VPrP6SLq+tSQrA3x+WMvCW3q2exq5wPDpvAXOakVKu0y8L2E+YkipC0hcQPBQdLg==", "requires": { "tslib": "^2.4.0" - }, - "dependencies": { - "tslib": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz", - "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==" - } } }, "@graphql-tools/relay-operation-optimizer": { @@ -2368,13 +2307,6 @@ "@ardatan/relay-compiler": "12.0.0", "@graphql-tools/utils": "8.8.0", "tslib": "^2.4.0" - }, - "dependencies": { - "tslib": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz", - "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==" - } } }, "@graphql-tools/schema": { @@ -2386,13 +2318,6 @@ "@graphql-tools/utils": "8.8.0", "tslib": "^2.4.0", "value-or-promise": "1.0.11" - }, - "dependencies": { - "tslib": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz", - "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==" - } } }, "@graphql-tools/url-loader": { @@ -2457,13 +2382,6 @@ "integrity": "sha512-KJrtx05uSM/cPYFdTnGAS1doL5bftJLAiFCDMZ8Vkifztz3BFn3gpFiy/o4wDtM8s39G46mxmt2Km/RmeltfGw==", "requires": { "tslib": "^2.4.0" - }, - "dependencies": { - "tslib": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz", - "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==" - } } }, "@graphql-tools/wrap": { @@ -2960,39 +2878,39 @@ } }, "@lmdb/lmdb-darwin-arm64": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-arm64/-/lmdb-darwin-arm64-2.5.2.tgz", - "integrity": "sha512-+F8ioQIUN68B4UFiIBYu0QQvgb9FmlKw2ctQMSBfW2QBrZIxz9vD9jCGqTCPqZBRbPHAS/vG1zSXnKqnS2ch/A==", + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-arm64/-/lmdb-darwin-arm64-2.5.3.tgz", + "integrity": "sha512-RXwGZ/0eCqtCY8FLTM/koR60w+MXyvBUpToXiIyjOcBnC81tAlTUHrRUavCEWPI9zc9VgvpK3+cbumPyR8BSuA==", "optional": true }, "@lmdb/lmdb-darwin-x64": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-x64/-/lmdb-darwin-x64-2.5.2.tgz", - "integrity": "sha512-KvPH56KRLLx4KSfKBx0m1r7GGGUMXm0jrKmNE7plbHlesZMuPJICtn07HYgQhj1LNsK7Yqwuvnqh1QxhJnF1EA==", + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-x64/-/lmdb-darwin-x64-2.5.3.tgz", + "integrity": "sha512-337dNzh5yCdNCTk8kPfoU7jR3otibSlPDGW0vKZT97rKnQMb9tNdto3RtWoGPsQ8hKmlRZpojOJtmwjncq1MoA==", "optional": true }, "@lmdb/lmdb-linux-arm": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm/-/lmdb-linux-arm-2.5.2.tgz", - "integrity": "sha512-5kQAP21hAkfW5Bl+e0P57dV4dGYnkNIpR7f/GAh6QHlgXx+vp/teVj4PGRZaKAvt0GX6++N6hF8NnGElLDuIDw==", + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm/-/lmdb-linux-arm-2.5.3.tgz", + "integrity": "sha512-mU2HFJDGwECkoD9dHQEfeTG5mp8hNS2BCfwoiOpVPMeapjYpQz9Uw3FkUjRZ4dGHWKbin40oWHuL0bk2bCx+Sg==", "optional": true }, "@lmdb/lmdb-linux-arm64": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm64/-/lmdb-linux-arm64-2.5.2.tgz", - "integrity": "sha512-aLl89VHL/wjhievEOlPocoefUyWdvzVrcQ/MHQYZm2JfV1jUsrbr/ZfkPPUFvZBf+VSE+Q0clWs9l29PCX1hTQ==", + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm64/-/lmdb-linux-arm64-2.5.3.tgz", + "integrity": "sha512-VJw60Mdgb4n+L0fO1PqfB0C7TyEQolJAC8qpqvG3JoQwvyOv6LH7Ib/WE3wxEW9nuHmVz9jkK7lk5HfWWgoO1Q==", "optional": true }, "@lmdb/lmdb-linux-x64": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-x64/-/lmdb-linux-x64-2.5.2.tgz", - "integrity": "sha512-xUdUfwDJLGjOUPH3BuPBt0NlIrR7f/QHKgu3GZIXswMMIihAekj2i97oI0iWG5Bok/b+OBjHPfa8IU9velnP/Q==", + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-x64/-/lmdb-linux-x64-2.5.3.tgz", + "integrity": "sha512-qaReO5aV8griBDsBr8uBF/faO3ieGjY1RY4p8JvTL6Mu1ylLrTVvOONqKFlNaCwrmUjWw5jnf7VafxDAeQHTow==", "optional": true }, "@lmdb/lmdb-win32-x64": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-win32-x64/-/lmdb-win32-x64-2.5.2.tgz", - "integrity": "sha512-zrBczSbXKxEyK2ijtbRdICDygRqWSRPpZMN5dD1T8VMEW5RIhIbwFWw2phDRXuBQdVDpSjalCIUMWMV2h3JaZA==", + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-win32-x64/-/lmdb-win32-x64-2.5.3.tgz", + "integrity": "sha512-cK+Elf3RjEzrm3SerAhrFWL5oQAsZSJ/LmjL1joIpTfEP1etJJ9CTRvdaV6XLYAxaEkfdhk/9hOvHLbR9yIhCA==", "optional": true }, "@mdx-js/mdx": { @@ -3705,13 +3623,6 @@ "integrity": "sha512-tb7Iu+oZ+zWJZ3HJqwx8oNwSDIU440hmVMDPhpACWQWnrZHK99Bxs70gT1L2dnr5Hg50ZRWEFkQCAnOVVV0z1Q==", "requires": { "tslib": "^2.4.0" - }, - "dependencies": { - "tslib": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz", - "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==" - } } }, "@szmarczak/http-timer": { @@ -3943,9 +3854,9 @@ } }, "@types/react": { - "version": "18.0.14", - "resolved": "https://registry.npmjs.org/@types/react/-/react-18.0.14.tgz", - "integrity": "sha512-x4gGuASSiWmo0xjDLpm5mPb52syZHJx02VKbqUKdLmKtAwIh63XClGsiTI1K6DO5q7ox4xAsQrU+Gl3+gGXF9Q==", + "version": "18.0.15", + "resolved": "https://registry.npmjs.org/@types/react/-/react-18.0.15.tgz", + "integrity": "sha512-iz3BtLuIYH1uWdsv6wXYdhozhqj20oD4/Hk2DNXIn1kFsmp9x8d9QB6FnPhfkbhd2PgEONt9Q1x/ebkwjfFLow==", "requires": { "@types/prop-types": "*", "@types/scheduler": "*", @@ -4611,14 +4522,14 @@ } }, "caniuse-lite": { - "version": "1.0.30001363", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001363.tgz", - "integrity": "sha512-HpQhpzTGGPVMnCjIomjt+jvyUu8vNFo3TaDiZ/RcoTrlOq/5+tC8zHdsbgFB6MxmaY+jCpsH09aD80Bb4Ow3Sg==" + "version": "1.0.30001365", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001365.tgz", + "integrity": "sha512-VDQZ8OtpuIPMBA4YYvZXECtXbddMCUFJk1qu8Mqxfm/SZJNSr1cy4IuLCOL7RJ/YASrvJcYg1Zh+UEUQ5m6z8Q==" }, "electron-to-chromium": { - "version": "1.4.179", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.179.tgz", - "integrity": "sha512-1XeTb/U/8Xgh2YgPOqhakLYsvCcU4U7jUjTMbEnhIJoIWd/Qt3yC8y0cbG+fHzn4zUNF99Ey1xiPf20bwgLO3Q==" + "version": "1.4.186", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.186.tgz", + "integrity": "sha512-YoVeFrGd/7ROjz4R9uPoND1K/hSRC/xADy9639ZmIZeJSaBnKdYx3I6LMPsY7CXLpK7JFgKQVzeZ/dk2br6Eaw==" } } }, @@ -4827,9 +4738,9 @@ } }, "babel-preset-gatsby": { - "version": "2.18.0", - "resolved": "https://registry.npmjs.org/babel-preset-gatsby/-/babel-preset-gatsby-2.18.0.tgz", - "integrity": "sha512-b6BJEl0MlA/nh+IkTJRgvPEgdN09Pu34Szo5dE4QYvQa66++EqfQUK5huqr+FgZJedPPYYbRY2SgKlRXev5QIQ==", + "version": "2.18.1", + "resolved": "https://registry.npmjs.org/babel-preset-gatsby/-/babel-preset-gatsby-2.18.1.tgz", + "integrity": "sha512-oaVV6ULceMjTQKjCA06qvgfLwBNZFJxpacwNZYOJpLygmj+qYiNKDGhJ8vTw/KAIUeDPZAbPMP5P+3wMEPIWYQ==", "requires": { "@babel/plugin-proposal-class-properties": "^7.14.0", "@babel/plugin-proposal-nullish-coalescing-operator": "^7.14.5", @@ -4844,14 +4755,14 @@ "babel-plugin-dynamic-import-node": "^2.3.3", "babel-plugin-macros": "^3.1.0", "babel-plugin-transform-react-remove-prop-types": "^0.4.24", - "gatsby-core-utils": "^3.18.0", + "gatsby-core-utils": "^3.18.1", "gatsby-legacy-polyfills": "^2.18.0" }, "dependencies": { "gatsby-core-utils": { - "version": "3.18.0", - "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.18.0.tgz", - "integrity": "sha512-mCoNgH4MilosLhEroklgVffwie9lyxgmvNwe/oIyzXr6NcZ2uxSp8G1KrgxdG2srt2hCNlZLlzS25ltLTeHTjA==", + "version": "3.18.1", + "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.18.1.tgz", + "integrity": "sha512-sJTxRqizLxYy/tSFk0ydfqEZ3ek1So9HDVUa39F6Oi8XuPCBTFzaAooUvowKGneI5YUbdk5y4VO4ybwVUynntw==", "requires": { "@babel/runtime": "^7.15.4", "ci-info": "2.0.0", @@ -4861,7 +4772,7 @@ "fs-extra": "^10.1.0", "got": "^11.8.5", "import-from": "^4.0.0", - "lmdb": "2.5.2", + "lmdb": "2.5.3", "lock": "^1.1.0", "node-object-hash": "^2.3.10", "proper-lockfile": "^4.1.2", @@ -4889,16 +4800,16 @@ } }, "lmdb": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/lmdb/-/lmdb-2.5.2.tgz", - "integrity": "sha512-V5V5Xa2Hp9i2XsbDALkBTeHXnBXh/lEmk9p22zdr7jtuOIY9TGhjK6vAvTpOOx9IKU4hJkRWZxn/HsvR1ELLtA==", - "requires": { - "@lmdb/lmdb-darwin-arm64": "2.5.2", - "@lmdb/lmdb-darwin-x64": "2.5.2", - "@lmdb/lmdb-linux-arm": "2.5.2", - "@lmdb/lmdb-linux-arm64": "2.5.2", - "@lmdb/lmdb-linux-x64": "2.5.2", - "@lmdb/lmdb-win32-x64": "2.5.2", + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/lmdb/-/lmdb-2.5.3.tgz", + "integrity": "sha512-iBA0cb13CobBSoGJLfZgnrykLlfJipDAnvtf+YwIqqzBEsTeQYsXrHaSBkaHd5wCWeabwrNvhjZoFMUrlo+eLw==", + "requires": { + "@lmdb/lmdb-darwin-arm64": "2.5.3", + "@lmdb/lmdb-darwin-x64": "2.5.3", + "@lmdb/lmdb-linux-arm": "2.5.3", + "@lmdb/lmdb-linux-arm64": "2.5.3", + "@lmdb/lmdb-linux-x64": "2.5.3", + "@lmdb/lmdb-win32-x64": "2.5.3", "msgpackr": "^1.5.4", "node-addon-api": "^4.3.0", "node-gyp-build-optional-packages": "5.0.3", @@ -6081,9 +5992,9 @@ } }, "core-js-pure": { - "version": "3.23.3", - "resolved": "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.23.3.tgz", - "integrity": "sha512-XpoouuqIj4P+GWtdyV8ZO3/u4KftkeDVMfvp+308eGMhCrA3lVDSmAxO0c6GGOcmgVlaKDrgWVMo49h2ab/TDA==" + "version": "3.23.4", + "resolved": "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.23.4.tgz", + "integrity": "sha512-lizxkcgj3XDmi7TUBFe+bQ1vNpD5E4t76BrBWI3HdUxdw/Mq1VF4CkiHzIKyieECKtcODK2asJttoofEeUKICQ==" }, "core-util-is": { "version": "1.0.2", @@ -6120,9 +6031,9 @@ } }, "create-gatsby": { - "version": "2.18.0", - "resolved": "https://registry.npmjs.org/create-gatsby/-/create-gatsby-2.18.0.tgz", - "integrity": "sha512-74yn3+wlFKwg3DUVdFdBnfqc6gUVpYjqr/1XtQ0Rb57i0ygvER8Xgp4rY5Mm+8rl7JwBma1NONeM20cdMQjT2w==", + "version": "2.18.1", + "resolved": "https://registry.npmjs.org/create-gatsby/-/create-gatsby-2.18.1.tgz", + "integrity": "sha512-1AZioXKi4COhESSHfsb/6tpkBvyuuXHwAmMAGrcUQpbynsQxYdqonnRqnFhp80bA2cIKxgjtHzzLhyRouDonbQ==", "requires": { "@babel/runtime": "^7.15.4" } @@ -8190,9 +8101,9 @@ "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==" }, "gatsby": { - "version": "4.18.0", - "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-4.18.0.tgz", - "integrity": "sha512-EyiwYUsbSKUKsdjm8nnLw5AGJwOJ9NAWcrFg1V/QU4CUnk/M8EiP0TxiGUmK1/K7g82XGxUjuAPYJKJk85yxHA==", + "version": "4.18.1", + "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-4.18.1.tgz", + "integrity": "sha512-frMFAWOmMl/CtqBZ3aZXlysicQQa8C+yfMdjnjx81f7E5xoL20klk1j4UYj1kUnGgBMSuVehU8M+bE0kT02zoQ==", "requires": { "@babel/code-frame": "^7.14.0", "@babel/core": "^7.15.5", @@ -8228,8 +8139,8 @@ "babel-plugin-add-module-exports": "^1.0.4", "babel-plugin-dynamic-import-node": "^2.3.3", "babel-plugin-lodash": "^3.3.4", - "babel-plugin-remove-graphql-queries": "^4.18.0", - "babel-preset-gatsby": "^2.18.0", + "babel-plugin-remove-graphql-queries": "^4.18.1", + "babel-preset-gatsby": "^2.18.1", "better-opn": "^2.1.1", "bluebird": "^3.7.2", "body-parser": "^1.19.0", @@ -8272,20 +8183,20 @@ "find-cache-dir": "^3.3.2", "fs-exists-cached": "1.0.0", "fs-extra": "^10.1.0", - "gatsby-cli": "^4.18.0", - "gatsby-core-utils": "^3.18.0", + "gatsby-cli": "^4.18.1", + "gatsby-core-utils": "^3.18.1", "gatsby-graphiql-explorer": "^2.18.0", "gatsby-legacy-polyfills": "^2.18.0", - "gatsby-link": "^4.18.0", - "gatsby-page-utils": "^2.18.0", - "gatsby-parcel-config": "0.9.0", - "gatsby-plugin-page-creator": "^4.18.0", - "gatsby-plugin-typescript": "^4.18.0", - "gatsby-plugin-utils": "^3.12.0", + "gatsby-link": "^4.18.1", + "gatsby-page-utils": "^2.18.1", + "gatsby-parcel-config": "^0.9.1", + "gatsby-plugin-page-creator": "^4.18.1", + "gatsby-plugin-typescript": "^4.18.1", + "gatsby-plugin-utils": "^3.12.1", "gatsby-react-router-scroll": "^5.18.0", "gatsby-script": "^1.3.0", "gatsby-sharp": "^0.12.0", - "gatsby-telemetry": "^3.18.0", + "gatsby-telemetry": "^3.18.1", "gatsby-worker": "^1.18.0", "glob": "^7.2.3", "globby": "^11.1.0", @@ -8301,7 +8212,7 @@ "joi": "^17.4.2", "json-loader": "^0.5.7", "latest-version": "5.1.0", - "lmdb": "2.5.2", + "lmdb": "2.5.3", "lodash": "^4.17.21", "md5-file": "^5.0.0", "meant": "^1.0.3", @@ -8376,12 +8287,12 @@ } }, "babel-plugin-remove-graphql-queries": { - "version": "4.18.0", - "resolved": "https://registry.npmjs.org/babel-plugin-remove-graphql-queries/-/babel-plugin-remove-graphql-queries-4.18.0.tgz", - "integrity": "sha512-6oOm/cTZdk+7yPh4R4ISLKNur3rK5w2zAUCXTOGKYcRYbvKCS22ODafQBrNcu/UdfpXwSz3XZOG5ru72Z5usUw==", + "version": "4.18.1", + "resolved": "https://registry.npmjs.org/babel-plugin-remove-graphql-queries/-/babel-plugin-remove-graphql-queries-4.18.1.tgz", + "integrity": "sha512-2I7qsm3pnyvrS6/Q9YuHK1SpfQLmrgYH/AjpnWpnLHee6SiVb5Te89iphhpBdycpBRVGWh04ram9+z/1rMaRYQ==", "requires": { "@babel/runtime": "^7.15.4", - "gatsby-core-utils": "^3.18.0" + "gatsby-core-utils": "^3.18.1" } }, "color-convert": { @@ -8407,9 +8318,9 @@ } }, "gatsby-cli": { - "version": "4.18.0", - "resolved": "https://registry.npmjs.org/gatsby-cli/-/gatsby-cli-4.18.0.tgz", - "integrity": "sha512-H4V1XvXP3EMwUBDbAlpu3jbjlCetUmHY6VB1YsH2kkIdlMrOgjUgNDFpqjgbk7k7z61du2tCgl1lyW+5he+SnA==", + "version": "4.18.1", + "resolved": "https://registry.npmjs.org/gatsby-cli/-/gatsby-cli-4.18.1.tgz", + "integrity": "sha512-ceYqm6i39rHY343zUCflwXnGtd25QGccvToTWL8W42/EGToDW8bubLfeBSRCfjXm946yf1gkS/1UAsAgAphYDA==", "requires": { "@babel/code-frame": "^7.14.0", "@babel/core": "^7.15.5", @@ -8428,13 +8339,13 @@ "common-tags": "^1.8.2", "configstore": "^5.0.1", "convert-hrtime": "^3.0.0", - "create-gatsby": "^2.18.0", + "create-gatsby": "^2.18.1", "envinfo": "^7.8.1", "execa": "^5.1.1", "fs-exists-cached": "^1.0.0", "fs-extra": "^10.1.0", - "gatsby-core-utils": "^3.18.0", - "gatsby-telemetry": "^3.18.0", + "gatsby-core-utils": "^3.18.1", + "gatsby-telemetry": "^3.18.1", "hosted-git-info": "^3.0.8", "is-valid-path": "^0.1.1", "joi": "^17.4.2", @@ -8458,9 +8369,9 @@ } }, "gatsby-core-utils": { - "version": "3.18.0", - "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.18.0.tgz", - "integrity": "sha512-mCoNgH4MilosLhEroklgVffwie9lyxgmvNwe/oIyzXr6NcZ2uxSp8G1KrgxdG2srt2hCNlZLlzS25ltLTeHTjA==", + "version": "3.18.1", + "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.18.1.tgz", + "integrity": "sha512-sJTxRqizLxYy/tSFk0ydfqEZ3ek1So9HDVUa39F6Oi8XuPCBTFzaAooUvowKGneI5YUbdk5y4VO4ybwVUynntw==", "requires": { "@babel/runtime": "^7.15.4", "ci-info": "2.0.0", @@ -8470,7 +8381,7 @@ "fs-extra": "^10.1.0", "got": "^11.8.5", "import-from": "^4.0.0", - "lmdb": "2.5.2", + "lmdb": "2.5.3", "lock": "^1.1.0", "node-object-hash": "^2.3.10", "proper-lockfile": "^4.1.2", @@ -8500,14 +8411,14 @@ } }, "gatsby-plugin-utils": { - "version": "3.12.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-utils/-/gatsby-plugin-utils-3.12.0.tgz", - "integrity": "sha512-vdz3qwaCOkvgzAxMkZlgpmpWf555jISwek5lyWYhGyJJvXYV8KQ2cZ4CoOfFKAYVeZVSucrHcdWyY3fLLpQvAA==", + "version": "3.12.1", + "resolved": "https://registry.npmjs.org/gatsby-plugin-utils/-/gatsby-plugin-utils-3.12.1.tgz", + "integrity": "sha512-Rx7/MFtiJ+pyvPLqCPj5beyMN6qOx3EYMrOqmvrWJaM32nxMfHZqUqxGruufyFNVe6edfRuNuXcKaPXlGlyexA==", "requires": { "@babel/runtime": "^7.15.4", "@gatsbyjs/potrace": "^2.2.0", "fs-extra": "^10.1.0", - "gatsby-core-utils": "^3.18.0", + "gatsby-core-utils": "^3.18.1", "gatsby-sharp": "^0.12.0", "graphql-compose": "^9.0.7", "import-from": "^4.0.0", @@ -8534,9 +8445,9 @@ } }, "gatsby-telemetry": { - "version": "3.18.0", - "resolved": "https://registry.npmjs.org/gatsby-telemetry/-/gatsby-telemetry-3.18.0.tgz", - "integrity": "sha512-i1JvNqGOyLDPGEn1QN29YGpe2ripg2LZBAOhXmk6lAhRL5fTVo6WkEA2yW7XESnXIOJBFymgVbUlLjXoqeZ5Xg==", + "version": "3.18.1", + "resolved": "https://registry.npmjs.org/gatsby-telemetry/-/gatsby-telemetry-3.18.1.tgz", + "integrity": "sha512-EjjsUv15BZGsmnPrOINRT/s7d18DTKokpp2NDZLm8uOs3MwVoLtUZ/BS7h2NTmgK+WN93q3bNYRkZgKgV9QC1A==", "requires": { "@babel/code-frame": "^7.14.0", "@babel/runtime": "^7.15.4", @@ -8546,7 +8457,7 @@ "boxen": "^4.2.0", "configstore": "^5.0.1", "fs-extra": "^10.1.0", - "gatsby-core-utils": "^3.18.0", + "gatsby-core-utils": "^3.18.1", "git-up": "^4.0.5", "is-docker": "^2.2.1", "lodash": "^4.17.21", @@ -8585,16 +8496,16 @@ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" }, "lmdb": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/lmdb/-/lmdb-2.5.2.tgz", - "integrity": "sha512-V5V5Xa2Hp9i2XsbDALkBTeHXnBXh/lEmk9p22zdr7jtuOIY9TGhjK6vAvTpOOx9IKU4hJkRWZxn/HsvR1ELLtA==", - "requires": { - "@lmdb/lmdb-darwin-arm64": "2.5.2", - "@lmdb/lmdb-darwin-x64": "2.5.2", - "@lmdb/lmdb-linux-arm": "2.5.2", - "@lmdb/lmdb-linux-arm64": "2.5.2", - "@lmdb/lmdb-linux-x64": "2.5.2", - "@lmdb/lmdb-win32-x64": "2.5.2", + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/lmdb/-/lmdb-2.5.3.tgz", + "integrity": "sha512-iBA0cb13CobBSoGJLfZgnrykLlfJipDAnvtf+YwIqqzBEsTeQYsXrHaSBkaHd5wCWeabwrNvhjZoFMUrlo+eLw==", + "requires": { + "@lmdb/lmdb-darwin-arm64": "2.5.3", + "@lmdb/lmdb-darwin-x64": "2.5.3", + "@lmdb/lmdb-linux-arm": "2.5.3", + "@lmdb/lmdb-linux-arm64": "2.5.3", + "@lmdb/lmdb-linux-x64": "2.5.3", + "@lmdb/lmdb-win32-x64": "2.5.3", "msgpackr": "^1.5.4", "node-addon-api": "^4.3.0", "node-gyp-build-optional-packages": "5.0.3", @@ -8709,35 +8620,35 @@ } }, "gatsby-link": { - "version": "4.18.0", - "resolved": "https://registry.npmjs.org/gatsby-link/-/gatsby-link-4.18.0.tgz", - "integrity": "sha512-nE+Z/iE55Id84YqsQOT1bfPJ/AsupY/4s8i6NllQ8no/PRgDGMpkTG6ANqyt2CHs/bywxch2rv8Ho7Gwsuuueg==", + "version": "4.18.1", + "resolved": "https://registry.npmjs.org/gatsby-link/-/gatsby-link-4.18.1.tgz", + "integrity": "sha512-gLFH2iU4WugHU5k+SLu4F0Ar04kDT5KhkyXly99ZVtiIvHpA5DqcuGNIUjIE/lizSCsfa553wGv7dadfghGzrQ==", "requires": { "@babel/runtime": "^7.15.4", "@types/reach__router": "^1.3.10", - "gatsby-page-utils": "^2.18.0", + "gatsby-page-utils": "^2.18.1", "prop-types": "^15.8.1" } }, "gatsby-page-utils": { - "version": "2.18.0", - "resolved": "https://registry.npmjs.org/gatsby-page-utils/-/gatsby-page-utils-2.18.0.tgz", - "integrity": "sha512-qTwlqscKxkBlMd+Mn8xj6sh7L0LbfLGYOPCYozJnukXv8d/6Jyk1nfaP6I82hwj/iyhaBQtk7g8g4XyBJJaESw==", + "version": "2.18.1", + "resolved": "https://registry.npmjs.org/gatsby-page-utils/-/gatsby-page-utils-2.18.1.tgz", + "integrity": "sha512-4EM0LNOQgnCndHDQSI/ZKRFWYWG9dtTPuGbBaGlmPquhj3zwjOscws1vfj7g+u3PowKjZQ2Rf92RZd8xt8XLTQ==", "requires": { "@babel/runtime": "^7.15.4", "bluebird": "^3.7.2", "chokidar": "^3.5.3", "fs-exists-cached": "^1.0.0", - "gatsby-core-utils": "^3.18.0", + "gatsby-core-utils": "^3.18.1", "glob": "^7.2.3", "lodash": "^4.17.21", "micromatch": "^4.0.5" }, "dependencies": { "gatsby-core-utils": { - "version": "3.18.0", - "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.18.0.tgz", - "integrity": "sha512-mCoNgH4MilosLhEroklgVffwie9lyxgmvNwe/oIyzXr6NcZ2uxSp8G1KrgxdG2srt2hCNlZLlzS25ltLTeHTjA==", + "version": "3.18.1", + "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.18.1.tgz", + "integrity": "sha512-sJTxRqizLxYy/tSFk0ydfqEZ3ek1So9HDVUa39F6Oi8XuPCBTFzaAooUvowKGneI5YUbdk5y4VO4ybwVUynntw==", "requires": { "@babel/runtime": "^7.15.4", "ci-info": "2.0.0", @@ -8747,7 +8658,7 @@ "fs-extra": "^10.1.0", "got": "^11.8.5", "import-from": "^4.0.0", - "lmdb": "2.5.2", + "lmdb": "2.5.3", "lock": "^1.1.0", "node-object-hash": "^2.3.10", "proper-lockfile": "^4.1.2", @@ -8775,16 +8686,16 @@ } }, "lmdb": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/lmdb/-/lmdb-2.5.2.tgz", - "integrity": "sha512-V5V5Xa2Hp9i2XsbDALkBTeHXnBXh/lEmk9p22zdr7jtuOIY9TGhjK6vAvTpOOx9IKU4hJkRWZxn/HsvR1ELLtA==", - "requires": { - "@lmdb/lmdb-darwin-arm64": "2.5.2", - "@lmdb/lmdb-darwin-x64": "2.5.2", - "@lmdb/lmdb-linux-arm": "2.5.2", - "@lmdb/lmdb-linux-arm64": "2.5.2", - "@lmdb/lmdb-linux-x64": "2.5.2", - "@lmdb/lmdb-win32-x64": "2.5.2", + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/lmdb/-/lmdb-2.5.3.tgz", + "integrity": "sha512-iBA0cb13CobBSoGJLfZgnrykLlfJipDAnvtf+YwIqqzBEsTeQYsXrHaSBkaHd5wCWeabwrNvhjZoFMUrlo+eLw==", + "requires": { + "@lmdb/lmdb-darwin-arm64": "2.5.3", + "@lmdb/lmdb-darwin-x64": "2.5.3", + "@lmdb/lmdb-linux-arm": "2.5.3", + "@lmdb/lmdb-linux-arm64": "2.5.3", + "@lmdb/lmdb-linux-x64": "2.5.3", + "@lmdb/lmdb-win32-x64": "2.5.3", "msgpackr": "^1.5.4", "node-addon-api": "^4.3.0", "node-gyp-build-optional-packages": "5.0.3", @@ -8805,11 +8716,11 @@ } }, "gatsby-parcel-config": { - "version": "0.9.0", - "resolved": "https://registry.npmjs.org/gatsby-parcel-config/-/gatsby-parcel-config-0.9.0.tgz", - "integrity": "sha512-ccGw/L8ylhDgE/4tr52B6tb2jreApOMoYPW75Z8aM2ULRz505fL5mrnkG1fdQDBZSCHx/0j0x2TZyCLrt0Bvlw==", + "version": "0.9.1", + "resolved": "https://registry.npmjs.org/gatsby-parcel-config/-/gatsby-parcel-config-0.9.1.tgz", + "integrity": "sha512-ZtVntsQYs0xhy1hvWUMeSLc4a+DvxtTf+NUrPF4rvBjOW/LPMx2eYDzPddKvqWmiUaT1+Ki9S9bwCuOp5muawg==", "requires": { - "@gatsbyjs/parcel-namer-relative-to-cwd": "1.3.0", + "@gatsbyjs/parcel-namer-relative-to-cwd": "^1.3.1", "@parcel/bundler-default": "2.6.0", "@parcel/compressor-raw": "2.6.0", "@parcel/namer-default": "2.6.0", @@ -8950,19 +8861,19 @@ } }, "gatsby-plugin-page-creator": { - "version": "4.18.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-page-creator/-/gatsby-plugin-page-creator-4.18.0.tgz", - "integrity": "sha512-6bY4vJndDw0nBcOuQdX41Wvbctw0y9+a7IavCFJKFeNs+Zo0XH2FX0IAww0slDnSJU6AukJ9qfjHqKJkADAZpQ==", + "version": "4.18.1", + "resolved": "https://registry.npmjs.org/gatsby-plugin-page-creator/-/gatsby-plugin-page-creator-4.18.1.tgz", + "integrity": "sha512-XPAglahQ1fDnSdSNJmtAGwVqB7yZDGPOQQBQX7LD74XwYP6uriRo4LyeI+gEXRqW4d63ZL3VMvgdisde9M95LQ==", "requires": { "@babel/runtime": "^7.15.4", "@babel/traverse": "^7.15.4", "@sindresorhus/slugify": "^1.1.2", "chokidar": "^3.5.3", "fs-exists-cached": "^1.0.0", - "gatsby-core-utils": "^3.18.0", - "gatsby-page-utils": "^2.18.0", - "gatsby-plugin-utils": "^3.12.0", - "gatsby-telemetry": "^3.18.0", + "gatsby-core-utils": "^3.18.1", + "gatsby-page-utils": "^2.18.1", + "gatsby-plugin-utils": "^3.12.1", + "gatsby-telemetry": "^3.18.1", "globby": "^11.1.0", "lodash": "^4.17.21" }, @@ -9022,9 +8933,9 @@ } }, "gatsby-core-utils": { - "version": "3.18.0", - "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.18.0.tgz", - "integrity": "sha512-mCoNgH4MilosLhEroklgVffwie9lyxgmvNwe/oIyzXr6NcZ2uxSp8G1KrgxdG2srt2hCNlZLlzS25ltLTeHTjA==", + "version": "3.18.1", + "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.18.1.tgz", + "integrity": "sha512-sJTxRqizLxYy/tSFk0ydfqEZ3ek1So9HDVUa39F6Oi8XuPCBTFzaAooUvowKGneI5YUbdk5y4VO4ybwVUynntw==", "requires": { "@babel/runtime": "^7.15.4", "ci-info": "2.0.0", @@ -9034,7 +8945,7 @@ "fs-extra": "^10.1.0", "got": "^11.8.5", "import-from": "^4.0.0", - "lmdb": "2.5.2", + "lmdb": "2.5.3", "lock": "^1.1.0", "node-object-hash": "^2.3.10", "proper-lockfile": "^4.1.2", @@ -9044,14 +8955,14 @@ } }, "gatsby-plugin-utils": { - "version": "3.12.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-utils/-/gatsby-plugin-utils-3.12.0.tgz", - "integrity": "sha512-vdz3qwaCOkvgzAxMkZlgpmpWf555jISwek5lyWYhGyJJvXYV8KQ2cZ4CoOfFKAYVeZVSucrHcdWyY3fLLpQvAA==", + "version": "3.12.1", + "resolved": "https://registry.npmjs.org/gatsby-plugin-utils/-/gatsby-plugin-utils-3.12.1.tgz", + "integrity": "sha512-Rx7/MFtiJ+pyvPLqCPj5beyMN6qOx3EYMrOqmvrWJaM32nxMfHZqUqxGruufyFNVe6edfRuNuXcKaPXlGlyexA==", "requires": { "@babel/runtime": "^7.15.4", "@gatsbyjs/potrace": "^2.2.0", "fs-extra": "^10.1.0", - "gatsby-core-utils": "^3.18.0", + "gatsby-core-utils": "^3.18.1", "gatsby-sharp": "^0.12.0", "graphql-compose": "^9.0.7", "import-from": "^4.0.0", @@ -9071,9 +8982,9 @@ } }, "gatsby-telemetry": { - "version": "3.18.0", - "resolved": "https://registry.npmjs.org/gatsby-telemetry/-/gatsby-telemetry-3.18.0.tgz", - "integrity": "sha512-i1JvNqGOyLDPGEn1QN29YGpe2ripg2LZBAOhXmk6lAhRL5fTVo6WkEA2yW7XESnXIOJBFymgVbUlLjXoqeZ5Xg==", + "version": "3.18.1", + "resolved": "https://registry.npmjs.org/gatsby-telemetry/-/gatsby-telemetry-3.18.1.tgz", + "integrity": "sha512-EjjsUv15BZGsmnPrOINRT/s7d18DTKokpp2NDZLm8uOs3MwVoLtUZ/BS7h2NTmgK+WN93q3bNYRkZgKgV9QC1A==", "requires": { "@babel/code-frame": "^7.14.0", "@babel/runtime": "^7.15.4", @@ -9083,7 +8994,7 @@ "boxen": "^4.2.0", "configstore": "^5.0.1", "fs-extra": "^10.1.0", - "gatsby-core-utils": "^3.18.0", + "gatsby-core-utils": "^3.18.1", "git-up": "^4.0.5", "is-docker": "^2.2.1", "lodash": "^4.17.21", @@ -9114,16 +9025,16 @@ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" }, "lmdb": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/lmdb/-/lmdb-2.5.2.tgz", - "integrity": "sha512-V5V5Xa2Hp9i2XsbDALkBTeHXnBXh/lEmk9p22zdr7jtuOIY9TGhjK6vAvTpOOx9IKU4hJkRWZxn/HsvR1ELLtA==", - "requires": { - "@lmdb/lmdb-darwin-arm64": "2.5.2", - "@lmdb/lmdb-darwin-x64": "2.5.2", - "@lmdb/lmdb-linux-arm": "2.5.2", - "@lmdb/lmdb-linux-arm64": "2.5.2", - "@lmdb/lmdb-linux-x64": "2.5.2", - "@lmdb/lmdb-win32-x64": "2.5.2", + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/lmdb/-/lmdb-2.5.3.tgz", + "integrity": "sha512-iBA0cb13CobBSoGJLfZgnrykLlfJipDAnvtf+YwIqqzBEsTeQYsXrHaSBkaHd5wCWeabwrNvhjZoFMUrlo+eLw==", + "requires": { + "@lmdb/lmdb-darwin-arm64": "2.5.3", + "@lmdb/lmdb-darwin-x64": "2.5.3", + "@lmdb/lmdb-linux-arm": "2.5.3", + "@lmdb/lmdb-linux-arm64": "2.5.3", + "@lmdb/lmdb-linux-x64": "2.5.3", + "@lmdb/lmdb-win32-x64": "2.5.3", "msgpackr": "^1.5.4", "node-addon-api": "^4.3.0", "node-gyp-build-optional-packages": "5.0.3", @@ -9227,9 +9138,9 @@ } }, "gatsby-plugin-typescript": { - "version": "4.18.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-typescript/-/gatsby-plugin-typescript-4.18.0.tgz", - "integrity": "sha512-SuNBrp57SnovOyhCz0zPkz7begV4UR2XdXUrFsh4N0jWOI5yFNVgENpKlbI/O7JnvgyV5KC/pkobNh3we+0mcQ==", + "version": "4.18.1", + "resolved": "https://registry.npmjs.org/gatsby-plugin-typescript/-/gatsby-plugin-typescript-4.18.1.tgz", + "integrity": "sha512-YUZcqL2WWiL2ngKe4A5FpTjCij2pLxiim+QaujeKfMjeWfHJ13uQ74HlxQXNpGAy4vMRBiU4CJH71RXgS1aoaA==", "requires": { "@babel/core": "^7.15.5", "@babel/plugin-proposal-nullish-coalescing-operator": "^7.14.5", @@ -9237,22 +9148,22 @@ "@babel/plugin-proposal-optional-chaining": "^7.14.5", "@babel/preset-typescript": "^7.15.0", "@babel/runtime": "^7.15.4", - "babel-plugin-remove-graphql-queries": "^4.18.0" + "babel-plugin-remove-graphql-queries": "^4.18.1" }, "dependencies": { "babel-plugin-remove-graphql-queries": { - "version": "4.18.0", - "resolved": "https://registry.npmjs.org/babel-plugin-remove-graphql-queries/-/babel-plugin-remove-graphql-queries-4.18.0.tgz", - "integrity": "sha512-6oOm/cTZdk+7yPh4R4ISLKNur3rK5w2zAUCXTOGKYcRYbvKCS22ODafQBrNcu/UdfpXwSz3XZOG5ru72Z5usUw==", + "version": "4.18.1", + "resolved": "https://registry.npmjs.org/babel-plugin-remove-graphql-queries/-/babel-plugin-remove-graphql-queries-4.18.1.tgz", + "integrity": "sha512-2I7qsm3pnyvrS6/Q9YuHK1SpfQLmrgYH/AjpnWpnLHee6SiVb5Te89iphhpBdycpBRVGWh04ram9+z/1rMaRYQ==", "requires": { "@babel/runtime": "^7.15.4", - "gatsby-core-utils": "^3.18.0" + "gatsby-core-utils": "^3.18.1" } }, "gatsby-core-utils": { - "version": "3.18.0", - "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.18.0.tgz", - "integrity": "sha512-mCoNgH4MilosLhEroklgVffwie9lyxgmvNwe/oIyzXr6NcZ2uxSp8G1KrgxdG2srt2hCNlZLlzS25ltLTeHTjA==", + "version": "3.18.1", + "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.18.1.tgz", + "integrity": "sha512-sJTxRqizLxYy/tSFk0ydfqEZ3ek1So9HDVUa39F6Oi8XuPCBTFzaAooUvowKGneI5YUbdk5y4VO4ybwVUynntw==", "requires": { "@babel/runtime": "^7.15.4", "ci-info": "2.0.0", @@ -9262,7 +9173,7 @@ "fs-extra": "^10.1.0", "got": "^11.8.5", "import-from": "^4.0.0", - "lmdb": "2.5.2", + "lmdb": "2.5.3", "lock": "^1.1.0", "node-object-hash": "^2.3.10", "proper-lockfile": "^4.1.2", @@ -9290,16 +9201,16 @@ } }, "lmdb": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/lmdb/-/lmdb-2.5.2.tgz", - "integrity": "sha512-V5V5Xa2Hp9i2XsbDALkBTeHXnBXh/lEmk9p22zdr7jtuOIY9TGhjK6vAvTpOOx9IKU4hJkRWZxn/HsvR1ELLtA==", - "requires": { - "@lmdb/lmdb-darwin-arm64": "2.5.2", - "@lmdb/lmdb-darwin-x64": "2.5.2", - "@lmdb/lmdb-linux-arm": "2.5.2", - "@lmdb/lmdb-linux-arm64": "2.5.2", - "@lmdb/lmdb-linux-x64": "2.5.2", - "@lmdb/lmdb-win32-x64": "2.5.2", + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/lmdb/-/lmdb-2.5.3.tgz", + "integrity": "sha512-iBA0cb13CobBSoGJLfZgnrykLlfJipDAnvtf+YwIqqzBEsTeQYsXrHaSBkaHd5wCWeabwrNvhjZoFMUrlo+eLw==", + "requires": { + "@lmdb/lmdb-darwin-arm64": "2.5.3", + "@lmdb/lmdb-darwin-x64": "2.5.3", + "@lmdb/lmdb-linux-arm": "2.5.3", + "@lmdb/lmdb-linux-arm64": "2.5.3", + "@lmdb/lmdb-linux-x64": "2.5.3", + "@lmdb/lmdb-win32-x64": "2.5.3", "msgpackr": "^1.5.4", "node-addon-api": "^4.3.0", "node-gyp-build-optional-packages": "5.0.3", @@ -11064,9 +10975,9 @@ } }, "jsx-ast-utils": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.3.1.tgz", - "integrity": "sha512-pxrjmNpeRw5wwVeWyEAk7QJu2GnBO3uzPFmHCKJJFPKK2Cy0cWL23krGtLdnMmbIi6/FjlrQpPyfQI19ByPOhQ==", + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.3.2.tgz", + "integrity": "sha512-4ZCADZHRkno244xlNnn4AOG6sRQ7iBZ5BbgZ4vW4y5IZw7cVUD1PPeblm1xx/nfmMxPdt/LHsXZW8z/j58+l9Q==", "requires": { "array-includes": "^3.1.5", "object.assign": "^4.1.2" @@ -11126,9 +11037,9 @@ } }, "lilconfig": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-2.0.5.tgz", - "integrity": "sha512-xaYmXZtTHPAw5m+xLN8ab9C+3a8YmV3asNSPOATITbtwrfbwaLJj8h66H1WMIpALCkqsIzK3h7oQ+PdX+LQ9Eg==" + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-2.0.6.tgz", + "integrity": "sha512-9JROoBW7pobfsx+Sq2JsASvCo6Pfo6WWoUW79HuB1BCoBXD4PLWJPqDF6fNj67pqBYTbAHkE57M1kS/+L1neOg==" }, "lines-and-columns": { "version": "1.2.4", @@ -11813,9 +11724,9 @@ "integrity": "sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==" }, "moment": { - "version": "2.29.3", - "resolved": "https://registry.npmjs.org/moment/-/moment-2.29.3.tgz", - "integrity": "sha512-c6YRvhEo//6T2Jz/vVtYzqBzwvPT95JBQ+smCytzf7c50oMZRsR/a4w88aD34I+/QVSfnoAnSBFPJHItlOMJVw==" + "version": "2.29.4", + "resolved": "https://registry.npmjs.org/moment/-/moment-2.29.4.tgz", + "integrity": "sha512-5LC9SOxjSc2HF6vO2CyuTDNivEdoz2IvyJJGj6X8DJ0eFyfszE0QiEd+iXmBvUP3WHxSjFH/vIsA0EN00cgr8w==" }, "ms": { "version": "2.1.2", @@ -11974,9 +11885,9 @@ "integrity": "sha512-jY5dPJzw6NHd/KPSfPKJ+IHoFS81/tJ43r34ZeNMXGzCOM8jwQDCD12HYayKIB6MuznrnqIYy2e891NA2g0ibA==" }, "node-releases": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.5.tgz", - "integrity": "sha512-U9h1NLROZTq9uE1SNffn6WuPDg8icmi3ns4rEl/oTfIle4iLjTliCzgTsbaIFMq/Xn078/lfY/BL0GWZ+psK4Q==" + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.6.tgz", + "integrity": "sha512-PiVXnNuFm5+iYkLBNeq5211hvO38y63T0i2KKh2KnUs3RpzJ+JtODFjkD8yjLwnDkTYF1eKXheUwdssR+NRZdg==" }, "normalize-path": { "version": "3.0.0", @@ -12808,14 +12719,14 @@ } }, "caniuse-lite": { - "version": "1.0.30001363", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001363.tgz", - "integrity": "sha512-HpQhpzTGGPVMnCjIomjt+jvyUu8vNFo3TaDiZ/RcoTrlOq/5+tC8zHdsbgFB6MxmaY+jCpsH09aD80Bb4Ow3Sg==" + "version": "1.0.30001365", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001365.tgz", + "integrity": "sha512-VDQZ8OtpuIPMBA4YYvZXECtXbddMCUFJk1qu8Mqxfm/SZJNSr1cy4IuLCOL7RJ/YASrvJcYg1Zh+UEUQ5m6z8Q==" }, "electron-to-chromium": { - "version": "1.4.179", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.179.tgz", - "integrity": "sha512-1XeTb/U/8Xgh2YgPOqhakLYsvCcU4U7jUjTMbEnhIJoIWd/Qt3yC8y0cbG+fHzn4zUNF99Ey1xiPf20bwgLO3Q==" + "version": "1.4.186", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.186.tgz", + "integrity": "sha512-YoVeFrGd/7ROjz4R9uPoND1K/hSRC/xADy9639ZmIZeJSaBnKdYx3I6LMPsY7CXLpK7JFgKQVzeZ/dk2br6Eaw==" } } }, @@ -15464,9 +15375,9 @@ } }, "tslib": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.1.tgz", - "integrity": "sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw==" + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz", + "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==" }, "tsutils": { "version": "3.21.0", diff --git a/starters/gatsby-starter-blog-theme-core/package.json b/starters/gatsby-starter-blog-theme-core/package.json index 4c8a6929a2540..2021fbe7cf3b4 100644 --- a/starters/gatsby-starter-blog-theme-core/package.json +++ b/starters/gatsby-starter-blog-theme-core/package.json @@ -11,7 +11,7 @@ "license": "0BSD", "dependencies": { "@mdx-js/react": "^1.6.22", - "gatsby": "^4.18.0", + "gatsby": "^4.18.1", "gatsby-theme-blog-core": "^4.0.0", "react": "^18.1.0", "react-dom": "^18.1.0" diff --git a/starters/gatsby-starter-blog-theme/package-lock.json b/starters/gatsby-starter-blog-theme/package-lock.json index f9851605eb8f7..d1cc6e0842689 100644 --- a/starters/gatsby-starter-blog-theme/package-lock.json +++ b/starters/gatsby-starter-blog-theme/package-lock.json @@ -1024,9 +1024,9 @@ "integrity": "sha512-MmetCkz9ej86nJQV+sFCxoGGrUbU3q02kgLciwkrt9QqEB7cP39oKEY0PakknEO0Gu20SskMRi+AYZ3b1TpN9g==" }, "@babel/types": { - "version": "7.18.7", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.7.tgz", - "integrity": "sha512-QG3yxTcTIBoAcQmkCs+wAPYZhu7Dk9rXKacINfNbdJDNERTbLQbHGyVG8q/YGMPeCJRIhSY0+fTc5+xuh6WPSQ==", + "version": "7.18.8", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.8.tgz", + "integrity": "sha512-qwpdsmraq0aJ3osLJRApsc2ouSJCdnMeZwB0DhbtHAtRpZNZCdlbRnHIgcRKzdE1g0iOGg644fzjOBcdOz9cPw==", "requires": { "@babel/helper-validator-identifier": "^7.18.6", "to-fast-properties": "^2.0.0" @@ -1081,9 +1081,9 @@ } }, "@babel/plugin-transform-typescript": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.18.6.tgz", - "integrity": "sha512-ijHNhzIrLj5lQCnI6aaNVRtGVuUZhOXFLRVFs7lLrkXTHip4FKty5oAuQdk4tywG0/WjXmjTfQCWmuzrvFer1w==", + "version": "7.18.8", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.18.8.tgz", + "integrity": "sha512-p2xM8HI83UObjsZGofMV/EdYjamsDm6MoN3hXPYIT0+gxIoopE+B7rPYKAxfrz9K9PK7JafTTjqYC6qipLExYA==", "requires": { "@babel/helper-create-class-features-plugin": "^7.18.6", "@babel/helper-plugin-utils": "^7.18.6", @@ -1209,9 +1209,9 @@ } }, "@babel/parser": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.18.6.tgz", - "integrity": "sha512-uQVSa9jJUe/G/304lXspfWVpKpK4euFLgGiMQFOCpM/bgcAdeoHwi/OQz23O9GK2osz26ZiXRRV9aV+Yl1O8tw==" + "version": "7.18.8", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.18.8.tgz", + "integrity": "sha512-RSKRfYX20dyH+elbJK2uqAkVyucL+xXzhqlMD5/ZXx+dAAwpyB7HsvnHe/ZUGOF+xLr5Wx9/JoXVTj6BQE2/oA==" }, "@babel/template": { "version": "7.18.6", @@ -1224,26 +1224,26 @@ } }, "@babel/traverse": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.18.6.tgz", - "integrity": "sha512-zS/OKyqmD7lslOtFqbscH6gMLFYOfG1YPqCKfAW5KrTeolKqvB8UelR49Fpr6y93kYkW2Ik00mT1LOGiAGvizw==", + "version": "7.18.8", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.18.8.tgz", + "integrity": "sha512-UNg/AcSySJYR/+mIcJQDCv00T+AqRO7j/ZEJLzpaYtgM48rMg5MnkJgyNqkzo88+p4tfRvZJCEiwwfG6h4jkRg==", "requires": { "@babel/code-frame": "^7.18.6", - "@babel/generator": "^7.18.6", + "@babel/generator": "^7.18.7", "@babel/helper-environment-visitor": "^7.18.6", "@babel/helper-function-name": "^7.18.6", "@babel/helper-hoist-variables": "^7.18.6", "@babel/helper-split-export-declaration": "^7.18.6", - "@babel/parser": "^7.18.6", - "@babel/types": "^7.18.6", + "@babel/parser": "^7.18.8", + "@babel/types": "^7.18.8", "debug": "^4.1.0", "globals": "^11.1.0" } }, "@babel/types": { - "version": "7.18.7", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.7.tgz", - "integrity": "sha512-QG3yxTcTIBoAcQmkCs+wAPYZhu7Dk9rXKacINfNbdJDNERTbLQbHGyVG8q/YGMPeCJRIhSY0+fTc5+xuh6WPSQ==", + "version": "7.18.8", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.8.tgz", + "integrity": "sha512-qwpdsmraq0aJ3osLJRApsc2ouSJCdnMeZwB0DhbtHAtRpZNZCdlbRnHIgcRKzdE1g0iOGg644fzjOBcdOz9cPw==", "requires": { "@babel/helper-validator-identifier": "^7.18.6", "to-fast-properties": "^2.0.0" @@ -1711,19 +1711,19 @@ } }, "@gatsbyjs/parcel-namer-relative-to-cwd": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/@gatsbyjs/parcel-namer-relative-to-cwd/-/parcel-namer-relative-to-cwd-1.3.0.tgz", - "integrity": "sha512-nd1lQn7ezg51ekqZm8iZjND8akB7bsGkGe7GdIPdTwbhale2dHLqd74qg+bBrEjv5f5aFZhpJeY9XpeU4emWZQ==", + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/@gatsbyjs/parcel-namer-relative-to-cwd/-/parcel-namer-relative-to-cwd-1.3.1.tgz", + "integrity": "sha512-wN4iU1CWumvhcuzMBKdDikZ5xgo81Ias09bKyjE36DgNxTzAhT2fXZIBAAEUlv/GBQqFe6Eas83gGGtXf31hiw==", "requires": { "@babel/runtime": "^7.18.0", "@parcel/plugin": "2.6.0", - "gatsby-core-utils": "^3.18.0" + "gatsby-core-utils": "^3.18.1" }, "dependencies": { "gatsby-core-utils": { - "version": "3.18.0", - "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.18.0.tgz", - "integrity": "sha512-mCoNgH4MilosLhEroklgVffwie9lyxgmvNwe/oIyzXr6NcZ2uxSp8G1KrgxdG2srt2hCNlZLlzS25ltLTeHTjA==", + "version": "3.18.1", + "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.18.1.tgz", + "integrity": "sha512-sJTxRqizLxYy/tSFk0ydfqEZ3ek1So9HDVUa39F6Oi8XuPCBTFzaAooUvowKGneI5YUbdk5y4VO4ybwVUynntw==", "requires": { "@babel/runtime": "^7.15.4", "ci-info": "2.0.0", @@ -1733,7 +1733,7 @@ "fs-extra": "^10.1.0", "got": "^11.8.5", "import-from": "^4.0.0", - "lmdb": "2.5.2", + "lmdb": "2.5.3", "lock": "^1.1.0", "node-object-hash": "^2.3.10", "proper-lockfile": "^4.1.2", @@ -1761,16 +1761,16 @@ } }, "lmdb": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/lmdb/-/lmdb-2.5.2.tgz", - "integrity": "sha512-V5V5Xa2Hp9i2XsbDALkBTeHXnBXh/lEmk9p22zdr7jtuOIY9TGhjK6vAvTpOOx9IKU4hJkRWZxn/HsvR1ELLtA==", - "requires": { - "@lmdb/lmdb-darwin-arm64": "2.5.2", - "@lmdb/lmdb-darwin-x64": "2.5.2", - "@lmdb/lmdb-linux-arm": "2.5.2", - "@lmdb/lmdb-linux-arm64": "2.5.2", - "@lmdb/lmdb-linux-x64": "2.5.2", - "@lmdb/lmdb-win32-x64": "2.5.2", + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/lmdb/-/lmdb-2.5.3.tgz", + "integrity": "sha512-iBA0cb13CobBSoGJLfZgnrykLlfJipDAnvtf+YwIqqzBEsTeQYsXrHaSBkaHd5wCWeabwrNvhjZoFMUrlo+eLw==", + "requires": { + "@lmdb/lmdb-darwin-arm64": "2.5.3", + "@lmdb/lmdb-darwin-x64": "2.5.3", + "@lmdb/lmdb-linux-arm": "2.5.3", + "@lmdb/lmdb-linux-arm64": "2.5.3", + "@lmdb/lmdb-linux-x64": "2.5.3", + "@lmdb/lmdb-win32-x64": "2.5.3", "msgpackr": "^1.5.4", "node-addon-api": "^4.3.0", "node-gyp-build-optional-packages": "5.0.3", @@ -2169,108 +2169,87 @@ } }, "@graphql-codegen/add": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/@graphql-codegen/add/-/add-3.1.1.tgz", - "integrity": "sha512-XkVwcqosa0CVBlL1HaQT0gp+EUfhuQE3LzrEpzMQLwchxaj/NPVYtOJL6MUHaYDsHzLqxWrufjfbeB3y2NQgRw==", + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/@graphql-codegen/add/-/add-3.2.0.tgz", + "integrity": "sha512-8hyr5XvTDGnpiT4nH2yH8PP4SWtUEIUdkFaZbkpkFkU0Ud9dplvSviOCdxdArffZ1FHy0XYLTMa2it+UJOtszg==", "requires": { - "@graphql-codegen/plugin-helpers": "^2.3.2", - "tslib": "~2.3.0" + "@graphql-codegen/plugin-helpers": "^2.5.0", + "tslib": "~2.4.0" } }, "@graphql-codegen/core": { - "version": "2.5.1", - "resolved": "https://registry.npmjs.org/@graphql-codegen/core/-/core-2.5.1.tgz", - "integrity": "sha512-alctBVl2hMnBXDLwkgmnFPrZVIiBDsWJSmxJcM4GKg1PB23+xuov35GE47YAyAhQItE1B1fbYnbb1PtGiDZ4LA==", + "version": "2.6.0", + "resolved": "https://registry.npmjs.org/@graphql-codegen/core/-/core-2.6.0.tgz", + "integrity": "sha512-7uZGnLCMR/pnh/5CsyI4y5bBvRndNHFs+AWpMUUjDBcjMRrMaavu37VyyYDz4/ob0BnQJt8RTBN9eArS9PLYAQ==", "requires": { - "@graphql-codegen/plugin-helpers": "^2.4.1", - "@graphql-tools/schema": "^8.1.2", - "@graphql-tools/utils": "^8.1.1", - "tslib": "~2.3.0" + "@graphql-codegen/plugin-helpers": "^2.5.0", + "@graphql-tools/schema": "^8.5.0", + "@graphql-tools/utils": "^8.8.0", + "tslib": "~2.4.0" } }, "@graphql-codegen/plugin-helpers": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/@graphql-codegen/plugin-helpers/-/plugin-helpers-2.4.2.tgz", - "integrity": "sha512-LJNvwAPv/sKtI3RnRDm+nPD+JeOfOuSOS4FFIpQCMUCyMnFcchV/CPTTv7tT12fLUpEg6XjuFfDBvOwndti30Q==", + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/@graphql-codegen/plugin-helpers/-/plugin-helpers-2.5.0.tgz", + "integrity": "sha512-0jM5/14EdM4yow5v8OGOnUmRqfA1gaWkh+J5berqQUpcFYfSQXD6+Idnkiju/jjIypEN7UvbPkC7BgryWVxexA==", "requires": { - "@graphql-tools/utils": "^8.5.2", + "@graphql-tools/utils": "^8.8.0", "change-case-all": "1.0.14", "common-tags": "1.8.2", "import-from": "4.0.0", "lodash": "~4.17.0", - "tslib": "~2.3.0" + "tslib": "~2.4.0" } }, "@graphql-codegen/schema-ast": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/@graphql-codegen/schema-ast/-/schema-ast-2.4.1.tgz", - "integrity": "sha512-bIWlKk/ShoVJfghA4Rt1OWnd34/dQmZM/vAe6fu6QKyOh44aAdqPtYQ2dbTyFXoknmu504etKJGEDllYNUJRfg==", + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/@graphql-codegen/schema-ast/-/schema-ast-2.5.0.tgz", + "integrity": "sha512-nlF4Yc7h90nmogG2E11TeFJ3/hCkb4SDMSdbJX68b1mhvVEji/kq3zWYKAQ+lAzjZ7HF94Eylm3MrZAjjpCKIA==", "requires": { - "@graphql-codegen/plugin-helpers": "^2.3.2", - "@graphql-tools/utils": "^8.1.1", - "tslib": "~2.3.0" + "@graphql-codegen/plugin-helpers": "^2.5.0", + "@graphql-tools/utils": "^8.8.0", + "tslib": "~2.4.0" } }, "@graphql-codegen/typescript": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@graphql-codegen/typescript/-/typescript-2.6.0.tgz", - "integrity": "sha512-f36ilg8J+wui0OhmQglIZ+2z4Ybc08Y7r7BlBDqfJ1F5X0zau0SlC7Hp2iCoCA0ucqZYtiUU/0n+/R8m1cTrQQ==", + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/@graphql-codegen/typescript/-/typescript-2.7.1.tgz", + "integrity": "sha512-qF4SBMgBnLcegba2s9+zC3NwgRhU0Kv+eS8kl9G5ldEHx9Bpu2tft+lk6fjqqhExDzJT+MEOU3Ecog3BzL2R1g==", "requires": { - "@graphql-codegen/plugin-helpers": "^2.4.0", - "@graphql-codegen/schema-ast": "^2.4.1", - "@graphql-codegen/visitor-plugin-common": "2.10.0", + "@graphql-codegen/plugin-helpers": "^2.5.0", + "@graphql-codegen/schema-ast": "^2.5.0", + "@graphql-codegen/visitor-plugin-common": "2.11.1", "auto-bind": "~4.0.0", "tslib": "~2.4.0" - }, - "dependencies": { - "tslib": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz", - "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==" - } } }, "@graphql-codegen/typescript-operations": { - "version": "2.4.3", - "resolved": "https://registry.npmjs.org/@graphql-codegen/typescript-operations/-/typescript-operations-2.4.3.tgz", - "integrity": "sha512-MW9cU/zCAmfFAObwW23e+GrW3CoV9OX2gVm/V1565WGZXDQPUc5Y5IjdfGfunV4ApkgFDiHpF1Mz/AS55OErgw==", + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/@graphql-codegen/typescript-operations/-/typescript-operations-2.5.1.tgz", + "integrity": "sha512-lGv+sPDXGcp/vDdIh7SoQjz8BRCZhLats4Hbqnf6gB7UtIasMvGuFDQyrKb3XAkQQYWqx/xtmEo0rBN8syV+Wg==", "requires": { - "@graphql-codegen/plugin-helpers": "^2.4.0", - "@graphql-codegen/typescript": "^2.6.0", - "@graphql-codegen/visitor-plugin-common": "2.10.0", + "@graphql-codegen/plugin-helpers": "^2.5.0", + "@graphql-codegen/typescript": "^2.7.1", + "@graphql-codegen/visitor-plugin-common": "2.11.1", "auto-bind": "~4.0.0", "tslib": "~2.4.0" - }, - "dependencies": { - "tslib": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz", - "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==" - } } }, "@graphql-codegen/visitor-plugin-common": { - "version": "2.10.0", - "resolved": "https://registry.npmjs.org/@graphql-codegen/visitor-plugin-common/-/visitor-plugin-common-2.10.0.tgz", - "integrity": "sha512-nWoxHKUdwOJCWV96Ks1x4EwYCWsZDJXB+2j6EQz5j27DzdxmQInZ86degaDCd3EgbwhMQEMtiZiPGFFDrgBkHA==", - "requires": { - "@graphql-codegen/plugin-helpers": "^2.4.0", - "@graphql-tools/optimize": "^1.0.1", - "@graphql-tools/relay-operation-optimizer": "^6.4.14", - "@graphql-tools/utils": "^8.3.0", + "version": "2.11.1", + "resolved": "https://registry.npmjs.org/@graphql-codegen/visitor-plugin-common/-/visitor-plugin-common-2.11.1.tgz", + "integrity": "sha512-AlrtGWKn2o89SPna75ATEHYAu95MUMucgBqLgcRvK9n/PHhVAbkDrNCH5pL03fE0HLOup3GpjX8DcnFBMU46IA==", + "requires": { + "@graphql-codegen/plugin-helpers": "^2.5.0", + "@graphql-tools/optimize": "^1.3.0", + "@graphql-tools/relay-operation-optimizer": "^6.5.0", + "@graphql-tools/utils": "^8.8.0", "auto-bind": "~4.0.0", "change-case-all": "1.0.14", "dependency-graph": "^0.11.0", "graphql-tag": "^2.11.0", "parse-filepath": "^1.0.2", "tslib": "~2.4.0" - }, - "dependencies": { - "tslib": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz", - "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==" - } } }, "@graphql-tools/batch-execute": { @@ -2316,13 +2295,6 @@ "globby": "^11.0.3", "tslib": "^2.4.0", "unixify": "^1.0.0" - }, - "dependencies": { - "tslib": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz", - "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==" - } } }, "@graphql-tools/delegate": { @@ -2415,13 +2387,6 @@ "@babel/types": "^7.16.8", "@graphql-tools/utils": "8.8.0", "tslib": "^2.4.0" - }, - "dependencies": { - "tslib": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz", - "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==" - } } }, "@graphql-tools/import": { @@ -2438,11 +2403,6 @@ "version": "5.0.0", "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==" - }, - "tslib": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz", - "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==" } } }, @@ -2497,11 +2457,6 @@ "requires": { "yocto-queue": "^0.1.0" } - }, - "tslib": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz", - "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==" } } }, @@ -2512,13 +2467,6 @@ "requires": { "@graphql-tools/utils": "8.8.0", "tslib": "^2.4.0" - }, - "dependencies": { - "tslib": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz", - "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==" - } } }, "@graphql-tools/optimize": { @@ -2527,13 +2475,6 @@ "integrity": "sha512-30QOWJoMJEt1De7tAFtWJ6VPrP6SLq+tSQrA3x+WMvCW3q2exq5wPDpvAXOakVKu0y8L2E+YkipC0hcQPBQdLg==", "requires": { "tslib": "^2.4.0" - }, - "dependencies": { - "tslib": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz", - "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==" - } } }, "@graphql-tools/relay-operation-optimizer": { @@ -2544,13 +2485,6 @@ "@ardatan/relay-compiler": "12.0.0", "@graphql-tools/utils": "8.8.0", "tslib": "^2.4.0" - }, - "dependencies": { - "tslib": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz", - "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==" - } } }, "@graphql-tools/schema": { @@ -2562,13 +2496,6 @@ "@graphql-tools/utils": "8.8.0", "tslib": "^2.4.0", "value-or-promise": "1.0.11" - }, - "dependencies": { - "tslib": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz", - "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==" - } } }, "@graphql-tools/url-loader": { @@ -2633,13 +2560,6 @@ "integrity": "sha512-KJrtx05uSM/cPYFdTnGAS1doL5bftJLAiFCDMZ8Vkifztz3BFn3gpFiy/o4wDtM8s39G46mxmt2Km/RmeltfGw==", "requires": { "tslib": "^2.4.0" - }, - "dependencies": { - "tslib": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz", - "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==" - } } }, "@graphql-tools/wrap": { @@ -3157,39 +3077,39 @@ } }, "@lmdb/lmdb-darwin-arm64": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-arm64/-/lmdb-darwin-arm64-2.5.2.tgz", - "integrity": "sha512-+F8ioQIUN68B4UFiIBYu0QQvgb9FmlKw2ctQMSBfW2QBrZIxz9vD9jCGqTCPqZBRbPHAS/vG1zSXnKqnS2ch/A==", + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-arm64/-/lmdb-darwin-arm64-2.5.3.tgz", + "integrity": "sha512-RXwGZ/0eCqtCY8FLTM/koR60w+MXyvBUpToXiIyjOcBnC81tAlTUHrRUavCEWPI9zc9VgvpK3+cbumPyR8BSuA==", "optional": true }, "@lmdb/lmdb-darwin-x64": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-x64/-/lmdb-darwin-x64-2.5.2.tgz", - "integrity": "sha512-KvPH56KRLLx4KSfKBx0m1r7GGGUMXm0jrKmNE7plbHlesZMuPJICtn07HYgQhj1LNsK7Yqwuvnqh1QxhJnF1EA==", + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-x64/-/lmdb-darwin-x64-2.5.3.tgz", + "integrity": "sha512-337dNzh5yCdNCTk8kPfoU7jR3otibSlPDGW0vKZT97rKnQMb9tNdto3RtWoGPsQ8hKmlRZpojOJtmwjncq1MoA==", "optional": true }, "@lmdb/lmdb-linux-arm": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm/-/lmdb-linux-arm-2.5.2.tgz", - "integrity": "sha512-5kQAP21hAkfW5Bl+e0P57dV4dGYnkNIpR7f/GAh6QHlgXx+vp/teVj4PGRZaKAvt0GX6++N6hF8NnGElLDuIDw==", + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm/-/lmdb-linux-arm-2.5.3.tgz", + "integrity": "sha512-mU2HFJDGwECkoD9dHQEfeTG5mp8hNS2BCfwoiOpVPMeapjYpQz9Uw3FkUjRZ4dGHWKbin40oWHuL0bk2bCx+Sg==", "optional": true }, "@lmdb/lmdb-linux-arm64": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm64/-/lmdb-linux-arm64-2.5.2.tgz", - "integrity": "sha512-aLl89VHL/wjhievEOlPocoefUyWdvzVrcQ/MHQYZm2JfV1jUsrbr/ZfkPPUFvZBf+VSE+Q0clWs9l29PCX1hTQ==", + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm64/-/lmdb-linux-arm64-2.5.3.tgz", + "integrity": "sha512-VJw60Mdgb4n+L0fO1PqfB0C7TyEQolJAC8qpqvG3JoQwvyOv6LH7Ib/WE3wxEW9nuHmVz9jkK7lk5HfWWgoO1Q==", "optional": true }, "@lmdb/lmdb-linux-x64": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-x64/-/lmdb-linux-x64-2.5.2.tgz", - "integrity": "sha512-xUdUfwDJLGjOUPH3BuPBt0NlIrR7f/QHKgu3GZIXswMMIihAekj2i97oI0iWG5Bok/b+OBjHPfa8IU9velnP/Q==", + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-x64/-/lmdb-linux-x64-2.5.3.tgz", + "integrity": "sha512-qaReO5aV8griBDsBr8uBF/faO3ieGjY1RY4p8JvTL6Mu1ylLrTVvOONqKFlNaCwrmUjWw5jnf7VafxDAeQHTow==", "optional": true }, "@lmdb/lmdb-win32-x64": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-win32-x64/-/lmdb-win32-x64-2.5.2.tgz", - "integrity": "sha512-zrBczSbXKxEyK2ijtbRdICDygRqWSRPpZMN5dD1T8VMEW5RIhIbwFWw2phDRXuBQdVDpSjalCIUMWMV2h3JaZA==", + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-win32-x64/-/lmdb-win32-x64-2.5.3.tgz", + "integrity": "sha512-cK+Elf3RjEzrm3SerAhrFWL5oQAsZSJ/LmjL1joIpTfEP1etJJ9CTRvdaV6XLYAxaEkfdhk/9hOvHLbR9yIhCA==", "optional": true }, "@mdx-js/mdx": { @@ -3989,13 +3909,6 @@ "integrity": "sha512-tb7Iu+oZ+zWJZ3HJqwx8oNwSDIU440hmVMDPhpACWQWnrZHK99Bxs70gT1L2dnr5Hg50ZRWEFkQCAnOVVV0z1Q==", "requires": { "tslib": "^2.4.0" - }, - "dependencies": { - "tslib": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz", - "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==" - } } }, "@szmarczak/http-timer": { @@ -4313,9 +4226,9 @@ } }, "@types/react": { - "version": "18.0.14", - "resolved": "https://registry.npmjs.org/@types/react/-/react-18.0.14.tgz", - "integrity": "sha512-x4gGuASSiWmo0xjDLpm5mPb52syZHJx02VKbqUKdLmKtAwIh63XClGsiTI1K6DO5q7ox4xAsQrU+Gl3+gGXF9Q==", + "version": "18.0.15", + "resolved": "https://registry.npmjs.org/@types/react/-/react-18.0.15.tgz", + "integrity": "sha512-iz3BtLuIYH1uWdsv6wXYdhozhqj20oD4/Hk2DNXIn1kFsmp9x8d9QB6FnPhfkbhd2PgEONt9Q1x/ebkwjfFLow==", "requires": { "@types/prop-types": "*", "@types/scheduler": "*", @@ -4989,14 +4902,14 @@ } }, "caniuse-lite": { - "version": "1.0.30001363", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001363.tgz", - "integrity": "sha512-HpQhpzTGGPVMnCjIomjt+jvyUu8vNFo3TaDiZ/RcoTrlOq/5+tC8zHdsbgFB6MxmaY+jCpsH09aD80Bb4Ow3Sg==" + "version": "1.0.30001365", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001365.tgz", + "integrity": "sha512-VDQZ8OtpuIPMBA4YYvZXECtXbddMCUFJk1qu8Mqxfm/SZJNSr1cy4IuLCOL7RJ/YASrvJcYg1Zh+UEUQ5m6z8Q==" }, "electron-to-chromium": { - "version": "1.4.179", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.179.tgz", - "integrity": "sha512-1XeTb/U/8Xgh2YgPOqhakLYsvCcU4U7jUjTMbEnhIJoIWd/Qt3yC8y0cbG+fHzn4zUNF99Ey1xiPf20bwgLO3Q==" + "version": "1.4.186", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.186.tgz", + "integrity": "sha512-YoVeFrGd/7ROjz4R9uPoND1K/hSRC/xADy9639ZmIZeJSaBnKdYx3I6LMPsY7CXLpK7JFgKQVzeZ/dk2br6Eaw==" } } }, @@ -5200,9 +5113,9 @@ } }, "babel-preset-gatsby": { - "version": "2.18.0", - "resolved": "https://registry.npmjs.org/babel-preset-gatsby/-/babel-preset-gatsby-2.18.0.tgz", - "integrity": "sha512-b6BJEl0MlA/nh+IkTJRgvPEgdN09Pu34Szo5dE4QYvQa66++EqfQUK5huqr+FgZJedPPYYbRY2SgKlRXev5QIQ==", + "version": "2.18.1", + "resolved": "https://registry.npmjs.org/babel-preset-gatsby/-/babel-preset-gatsby-2.18.1.tgz", + "integrity": "sha512-oaVV6ULceMjTQKjCA06qvgfLwBNZFJxpacwNZYOJpLygmj+qYiNKDGhJ8vTw/KAIUeDPZAbPMP5P+3wMEPIWYQ==", "requires": { "@babel/plugin-proposal-class-properties": "^7.14.0", "@babel/plugin-proposal-nullish-coalescing-operator": "^7.14.5", @@ -5217,7 +5130,7 @@ "babel-plugin-dynamic-import-node": "^2.3.3", "babel-plugin-macros": "^3.1.0", "babel-plugin-transform-react-remove-prop-types": "^0.4.24", - "gatsby-core-utils": "^3.18.0", + "gatsby-core-utils": "^3.18.1", "gatsby-legacy-polyfills": "^2.18.0" }, "dependencies": { @@ -5244,9 +5157,9 @@ } }, "gatsby-core-utils": { - "version": "3.18.0", - "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.18.0.tgz", - "integrity": "sha512-mCoNgH4MilosLhEroklgVffwie9lyxgmvNwe/oIyzXr6NcZ2uxSp8G1KrgxdG2srt2hCNlZLlzS25ltLTeHTjA==", + "version": "3.18.1", + "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.18.1.tgz", + "integrity": "sha512-sJTxRqizLxYy/tSFk0ydfqEZ3ek1So9HDVUa39F6Oi8XuPCBTFzaAooUvowKGneI5YUbdk5y4VO4ybwVUynntw==", "requires": { "@babel/runtime": "^7.15.4", "ci-info": "2.0.0", @@ -5256,7 +5169,7 @@ "fs-extra": "^10.1.0", "got": "^11.8.5", "import-from": "^4.0.0", - "lmdb": "2.5.2", + "lmdb": "2.5.3", "lock": "^1.1.0", "node-object-hash": "^2.3.10", "proper-lockfile": "^4.1.2", @@ -5284,16 +5197,16 @@ } }, "lmdb": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/lmdb/-/lmdb-2.5.2.tgz", - "integrity": "sha512-V5V5Xa2Hp9i2XsbDALkBTeHXnBXh/lEmk9p22zdr7jtuOIY9TGhjK6vAvTpOOx9IKU4hJkRWZxn/HsvR1ELLtA==", - "requires": { - "@lmdb/lmdb-darwin-arm64": "2.5.2", - "@lmdb/lmdb-darwin-x64": "2.5.2", - "@lmdb/lmdb-linux-arm": "2.5.2", - "@lmdb/lmdb-linux-arm64": "2.5.2", - "@lmdb/lmdb-linux-x64": "2.5.2", - "@lmdb/lmdb-win32-x64": "2.5.2", + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/lmdb/-/lmdb-2.5.3.tgz", + "integrity": "sha512-iBA0cb13CobBSoGJLfZgnrykLlfJipDAnvtf+YwIqqzBEsTeQYsXrHaSBkaHd5wCWeabwrNvhjZoFMUrlo+eLw==", + "requires": { + "@lmdb/lmdb-darwin-arm64": "2.5.3", + "@lmdb/lmdb-darwin-x64": "2.5.3", + "@lmdb/lmdb-linux-arm": "2.5.3", + "@lmdb/lmdb-linux-arm64": "2.5.3", + "@lmdb/lmdb-linux-x64": "2.5.3", + "@lmdb/lmdb-win32-x64": "2.5.3", "msgpackr": "^1.5.4", "node-addon-api": "^4.3.0", "node-gyp-build-optional-packages": "5.0.3", @@ -6481,9 +6394,9 @@ } }, "core-js-pure": { - "version": "3.23.3", - "resolved": "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.23.3.tgz", - "integrity": "sha512-XpoouuqIj4P+GWtdyV8ZO3/u4KftkeDVMfvp+308eGMhCrA3lVDSmAxO0c6GGOcmgVlaKDrgWVMo49h2ab/TDA==" + "version": "3.23.4", + "resolved": "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.23.4.tgz", + "integrity": "sha512-lizxkcgj3XDmi7TUBFe+bQ1vNpD5E4t76BrBWI3HdUxdw/Mq1VF4CkiHzIKyieECKtcODK2asJttoofEeUKICQ==" }, "core-util-is": { "version": "1.0.2", @@ -6520,9 +6433,9 @@ } }, "create-gatsby": { - "version": "2.18.0", - "resolved": "https://registry.npmjs.org/create-gatsby/-/create-gatsby-2.18.0.tgz", - "integrity": "sha512-74yn3+wlFKwg3DUVdFdBnfqc6gUVpYjqr/1XtQ0Rb57i0ygvER8Xgp4rY5Mm+8rl7JwBma1NONeM20cdMQjT2w==", + "version": "2.18.1", + "resolved": "https://registry.npmjs.org/create-gatsby/-/create-gatsby-2.18.1.tgz", + "integrity": "sha512-1AZioXKi4COhESSHfsb/6tpkBvyuuXHwAmMAGrcUQpbynsQxYdqonnRqnFhp80bA2cIKxgjtHzzLhyRouDonbQ==", "requires": { "@babel/runtime": "^7.15.4" } @@ -8583,9 +8496,9 @@ "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==" }, "gatsby": { - "version": "4.18.0", - "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-4.18.0.tgz", - "integrity": "sha512-EyiwYUsbSKUKsdjm8nnLw5AGJwOJ9NAWcrFg1V/QU4CUnk/M8EiP0TxiGUmK1/K7g82XGxUjuAPYJKJk85yxHA==", + "version": "4.18.1", + "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-4.18.1.tgz", + "integrity": "sha512-frMFAWOmMl/CtqBZ3aZXlysicQQa8C+yfMdjnjx81f7E5xoL20klk1j4UYj1kUnGgBMSuVehU8M+bE0kT02zoQ==", "requires": { "@babel/code-frame": "^7.14.0", "@babel/core": "^7.15.5", @@ -8621,8 +8534,8 @@ "babel-plugin-add-module-exports": "^1.0.4", "babel-plugin-dynamic-import-node": "^2.3.3", "babel-plugin-lodash": "^3.3.4", - "babel-plugin-remove-graphql-queries": "^4.18.0", - "babel-preset-gatsby": "^2.18.0", + "babel-plugin-remove-graphql-queries": "^4.18.1", + "babel-preset-gatsby": "^2.18.1", "better-opn": "^2.1.1", "bluebird": "^3.7.2", "body-parser": "^1.19.0", @@ -8665,20 +8578,20 @@ "find-cache-dir": "^3.3.2", "fs-exists-cached": "1.0.0", "fs-extra": "^10.1.0", - "gatsby-cli": "^4.18.0", - "gatsby-core-utils": "^3.18.0", + "gatsby-cli": "^4.18.1", + "gatsby-core-utils": "^3.18.1", "gatsby-graphiql-explorer": "^2.18.0", "gatsby-legacy-polyfills": "^2.18.0", - "gatsby-link": "^4.18.0", - "gatsby-page-utils": "^2.18.0", - "gatsby-parcel-config": "0.9.0", - "gatsby-plugin-page-creator": "^4.18.0", - "gatsby-plugin-typescript": "^4.18.0", - "gatsby-plugin-utils": "^3.12.0", + "gatsby-link": "^4.18.1", + "gatsby-page-utils": "^2.18.1", + "gatsby-parcel-config": "^0.9.1", + "gatsby-plugin-page-creator": "^4.18.1", + "gatsby-plugin-typescript": "^4.18.1", + "gatsby-plugin-utils": "^3.12.1", "gatsby-react-router-scroll": "^5.18.0", "gatsby-script": "^1.3.0", "gatsby-sharp": "^0.12.0", - "gatsby-telemetry": "^3.18.0", + "gatsby-telemetry": "^3.18.1", "gatsby-worker": "^1.18.0", "glob": "^7.2.3", "globby": "^11.1.0", @@ -8694,7 +8607,7 @@ "joi": "^17.4.2", "json-loader": "^0.5.7", "latest-version": "5.1.0", - "lmdb": "2.5.2", + "lmdb": "2.5.3", "lodash": "^4.17.21", "md5-file": "^5.0.0", "meant": "^1.0.3", @@ -8769,12 +8682,12 @@ } }, "babel-plugin-remove-graphql-queries": { - "version": "4.18.0", - "resolved": "https://registry.npmjs.org/babel-plugin-remove-graphql-queries/-/babel-plugin-remove-graphql-queries-4.18.0.tgz", - "integrity": "sha512-6oOm/cTZdk+7yPh4R4ISLKNur3rK5w2zAUCXTOGKYcRYbvKCS22ODafQBrNcu/UdfpXwSz3XZOG5ru72Z5usUw==", + "version": "4.18.1", + "resolved": "https://registry.npmjs.org/babel-plugin-remove-graphql-queries/-/babel-plugin-remove-graphql-queries-4.18.1.tgz", + "integrity": "sha512-2I7qsm3pnyvrS6/Q9YuHK1SpfQLmrgYH/AjpnWpnLHee6SiVb5Te89iphhpBdycpBRVGWh04ram9+z/1rMaRYQ==", "requires": { "@babel/runtime": "^7.15.4", - "gatsby-core-utils": "^3.18.0" + "gatsby-core-utils": "^3.18.1" } }, "color-convert": { @@ -8800,9 +8713,9 @@ } }, "gatsby-cli": { - "version": "4.18.0", - "resolved": "https://registry.npmjs.org/gatsby-cli/-/gatsby-cli-4.18.0.tgz", - "integrity": "sha512-H4V1XvXP3EMwUBDbAlpu3jbjlCetUmHY6VB1YsH2kkIdlMrOgjUgNDFpqjgbk7k7z61du2tCgl1lyW+5he+SnA==", + "version": "4.18.1", + "resolved": "https://registry.npmjs.org/gatsby-cli/-/gatsby-cli-4.18.1.tgz", + "integrity": "sha512-ceYqm6i39rHY343zUCflwXnGtd25QGccvToTWL8W42/EGToDW8bubLfeBSRCfjXm946yf1gkS/1UAsAgAphYDA==", "requires": { "@babel/code-frame": "^7.14.0", "@babel/core": "^7.15.5", @@ -8821,13 +8734,13 @@ "common-tags": "^1.8.2", "configstore": "^5.0.1", "convert-hrtime": "^3.0.0", - "create-gatsby": "^2.18.0", + "create-gatsby": "^2.18.1", "envinfo": "^7.8.1", "execa": "^5.1.1", "fs-exists-cached": "^1.0.0", "fs-extra": "^10.1.0", - "gatsby-core-utils": "^3.18.0", - "gatsby-telemetry": "^3.18.0", + "gatsby-core-utils": "^3.18.1", + "gatsby-telemetry": "^3.18.1", "hosted-git-info": "^3.0.8", "is-valid-path": "^0.1.1", "joi": "^17.4.2", @@ -8851,9 +8764,9 @@ } }, "gatsby-core-utils": { - "version": "3.18.0", - "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.18.0.tgz", - "integrity": "sha512-mCoNgH4MilosLhEroklgVffwie9lyxgmvNwe/oIyzXr6NcZ2uxSp8G1KrgxdG2srt2hCNlZLlzS25ltLTeHTjA==", + "version": "3.18.1", + "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.18.1.tgz", + "integrity": "sha512-sJTxRqizLxYy/tSFk0ydfqEZ3ek1So9HDVUa39F6Oi8XuPCBTFzaAooUvowKGneI5YUbdk5y4VO4ybwVUynntw==", "requires": { "@babel/runtime": "^7.15.4", "ci-info": "2.0.0", @@ -8863,7 +8776,7 @@ "fs-extra": "^10.1.0", "got": "^11.8.5", "import-from": "^4.0.0", - "lmdb": "2.5.2", + "lmdb": "2.5.3", "lock": "^1.1.0", "node-object-hash": "^2.3.10", "proper-lockfile": "^4.1.2", @@ -8893,14 +8806,14 @@ } }, "gatsby-plugin-utils": { - "version": "3.12.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-utils/-/gatsby-plugin-utils-3.12.0.tgz", - "integrity": "sha512-vdz3qwaCOkvgzAxMkZlgpmpWf555jISwek5lyWYhGyJJvXYV8KQ2cZ4CoOfFKAYVeZVSucrHcdWyY3fLLpQvAA==", + "version": "3.12.1", + "resolved": "https://registry.npmjs.org/gatsby-plugin-utils/-/gatsby-plugin-utils-3.12.1.tgz", + "integrity": "sha512-Rx7/MFtiJ+pyvPLqCPj5beyMN6qOx3EYMrOqmvrWJaM32nxMfHZqUqxGruufyFNVe6edfRuNuXcKaPXlGlyexA==", "requires": { "@babel/runtime": "^7.15.4", "@gatsbyjs/potrace": "^2.2.0", "fs-extra": "^10.1.0", - "gatsby-core-utils": "^3.18.0", + "gatsby-core-utils": "^3.18.1", "gatsby-sharp": "^0.12.0", "graphql-compose": "^9.0.7", "import-from": "^4.0.0", @@ -8927,9 +8840,9 @@ } }, "gatsby-telemetry": { - "version": "3.18.0", - "resolved": "https://registry.npmjs.org/gatsby-telemetry/-/gatsby-telemetry-3.18.0.tgz", - "integrity": "sha512-i1JvNqGOyLDPGEn1QN29YGpe2ripg2LZBAOhXmk6lAhRL5fTVo6WkEA2yW7XESnXIOJBFymgVbUlLjXoqeZ5Xg==", + "version": "3.18.1", + "resolved": "https://registry.npmjs.org/gatsby-telemetry/-/gatsby-telemetry-3.18.1.tgz", + "integrity": "sha512-EjjsUv15BZGsmnPrOINRT/s7d18DTKokpp2NDZLm8uOs3MwVoLtUZ/BS7h2NTmgK+WN93q3bNYRkZgKgV9QC1A==", "requires": { "@babel/code-frame": "^7.14.0", "@babel/runtime": "^7.15.4", @@ -8939,7 +8852,7 @@ "boxen": "^4.2.0", "configstore": "^5.0.1", "fs-extra": "^10.1.0", - "gatsby-core-utils": "^3.18.0", + "gatsby-core-utils": "^3.18.1", "git-up": "^4.0.5", "is-docker": "^2.2.1", "lodash": "^4.17.21", @@ -8978,16 +8891,16 @@ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" }, "lmdb": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/lmdb/-/lmdb-2.5.2.tgz", - "integrity": "sha512-V5V5Xa2Hp9i2XsbDALkBTeHXnBXh/lEmk9p22zdr7jtuOIY9TGhjK6vAvTpOOx9IKU4hJkRWZxn/HsvR1ELLtA==", - "requires": { - "@lmdb/lmdb-darwin-arm64": "2.5.2", - "@lmdb/lmdb-darwin-x64": "2.5.2", - "@lmdb/lmdb-linux-arm": "2.5.2", - "@lmdb/lmdb-linux-arm64": "2.5.2", - "@lmdb/lmdb-linux-x64": "2.5.2", - "@lmdb/lmdb-win32-x64": "2.5.2", + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/lmdb/-/lmdb-2.5.3.tgz", + "integrity": "sha512-iBA0cb13CobBSoGJLfZgnrykLlfJipDAnvtf+YwIqqzBEsTeQYsXrHaSBkaHd5wCWeabwrNvhjZoFMUrlo+eLw==", + "requires": { + "@lmdb/lmdb-darwin-arm64": "2.5.3", + "@lmdb/lmdb-darwin-x64": "2.5.3", + "@lmdb/lmdb-linux-arm": "2.5.3", + "@lmdb/lmdb-linux-arm64": "2.5.3", + "@lmdb/lmdb-linux-x64": "2.5.3", + "@lmdb/lmdb-win32-x64": "2.5.3", "msgpackr": "^1.5.4", "node-addon-api": "^4.3.0", "node-gyp-build-optional-packages": "5.0.3", @@ -9112,35 +9025,35 @@ } }, "gatsby-link": { - "version": "4.18.0", - "resolved": "https://registry.npmjs.org/gatsby-link/-/gatsby-link-4.18.0.tgz", - "integrity": "sha512-nE+Z/iE55Id84YqsQOT1bfPJ/AsupY/4s8i6NllQ8no/PRgDGMpkTG6ANqyt2CHs/bywxch2rv8Ho7Gwsuuueg==", + "version": "4.18.1", + "resolved": "https://registry.npmjs.org/gatsby-link/-/gatsby-link-4.18.1.tgz", + "integrity": "sha512-gLFH2iU4WugHU5k+SLu4F0Ar04kDT5KhkyXly99ZVtiIvHpA5DqcuGNIUjIE/lizSCsfa553wGv7dadfghGzrQ==", "requires": { "@babel/runtime": "^7.15.4", "@types/reach__router": "^1.3.10", - "gatsby-page-utils": "^2.18.0", + "gatsby-page-utils": "^2.18.1", "prop-types": "^15.8.1" } }, "gatsby-page-utils": { - "version": "2.18.0", - "resolved": "https://registry.npmjs.org/gatsby-page-utils/-/gatsby-page-utils-2.18.0.tgz", - "integrity": "sha512-qTwlqscKxkBlMd+Mn8xj6sh7L0LbfLGYOPCYozJnukXv8d/6Jyk1nfaP6I82hwj/iyhaBQtk7g8g4XyBJJaESw==", + "version": "2.18.1", + "resolved": "https://registry.npmjs.org/gatsby-page-utils/-/gatsby-page-utils-2.18.1.tgz", + "integrity": "sha512-4EM0LNOQgnCndHDQSI/ZKRFWYWG9dtTPuGbBaGlmPquhj3zwjOscws1vfj7g+u3PowKjZQ2Rf92RZd8xt8XLTQ==", "requires": { "@babel/runtime": "^7.15.4", "bluebird": "^3.7.2", "chokidar": "^3.5.3", "fs-exists-cached": "^1.0.0", - "gatsby-core-utils": "^3.18.0", + "gatsby-core-utils": "^3.18.1", "glob": "^7.2.3", "lodash": "^4.17.21", "micromatch": "^4.0.5" }, "dependencies": { "gatsby-core-utils": { - "version": "3.18.0", - "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.18.0.tgz", - "integrity": "sha512-mCoNgH4MilosLhEroklgVffwie9lyxgmvNwe/oIyzXr6NcZ2uxSp8G1KrgxdG2srt2hCNlZLlzS25ltLTeHTjA==", + "version": "3.18.1", + "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.18.1.tgz", + "integrity": "sha512-sJTxRqizLxYy/tSFk0ydfqEZ3ek1So9HDVUa39F6Oi8XuPCBTFzaAooUvowKGneI5YUbdk5y4VO4ybwVUynntw==", "requires": { "@babel/runtime": "^7.15.4", "ci-info": "2.0.0", @@ -9150,7 +9063,7 @@ "fs-extra": "^10.1.0", "got": "^11.8.5", "import-from": "^4.0.0", - "lmdb": "2.5.2", + "lmdb": "2.5.3", "lock": "^1.1.0", "node-object-hash": "^2.3.10", "proper-lockfile": "^4.1.2", @@ -9178,16 +9091,16 @@ } }, "lmdb": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/lmdb/-/lmdb-2.5.2.tgz", - "integrity": "sha512-V5V5Xa2Hp9i2XsbDALkBTeHXnBXh/lEmk9p22zdr7jtuOIY9TGhjK6vAvTpOOx9IKU4hJkRWZxn/HsvR1ELLtA==", - "requires": { - "@lmdb/lmdb-darwin-arm64": "2.5.2", - "@lmdb/lmdb-darwin-x64": "2.5.2", - "@lmdb/lmdb-linux-arm": "2.5.2", - "@lmdb/lmdb-linux-arm64": "2.5.2", - "@lmdb/lmdb-linux-x64": "2.5.2", - "@lmdb/lmdb-win32-x64": "2.5.2", + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/lmdb/-/lmdb-2.5.3.tgz", + "integrity": "sha512-iBA0cb13CobBSoGJLfZgnrykLlfJipDAnvtf+YwIqqzBEsTeQYsXrHaSBkaHd5wCWeabwrNvhjZoFMUrlo+eLw==", + "requires": { + "@lmdb/lmdb-darwin-arm64": "2.5.3", + "@lmdb/lmdb-darwin-x64": "2.5.3", + "@lmdb/lmdb-linux-arm": "2.5.3", + "@lmdb/lmdb-linux-arm64": "2.5.3", + "@lmdb/lmdb-linux-x64": "2.5.3", + "@lmdb/lmdb-win32-x64": "2.5.3", "msgpackr": "^1.5.4", "node-addon-api": "^4.3.0", "node-gyp-build-optional-packages": "5.0.3", @@ -9213,11 +9126,11 @@ } }, "gatsby-parcel-config": { - "version": "0.9.0", - "resolved": "https://registry.npmjs.org/gatsby-parcel-config/-/gatsby-parcel-config-0.9.0.tgz", - "integrity": "sha512-ccGw/L8ylhDgE/4tr52B6tb2jreApOMoYPW75Z8aM2ULRz505fL5mrnkG1fdQDBZSCHx/0j0x2TZyCLrt0Bvlw==", + "version": "0.9.1", + "resolved": "https://registry.npmjs.org/gatsby-parcel-config/-/gatsby-parcel-config-0.9.1.tgz", + "integrity": "sha512-ZtVntsQYs0xhy1hvWUMeSLc4a+DvxtTf+NUrPF4rvBjOW/LPMx2eYDzPddKvqWmiUaT1+Ki9S9bwCuOp5muawg==", "requires": { - "@gatsbyjs/parcel-namer-relative-to-cwd": "1.3.0", + "@gatsbyjs/parcel-namer-relative-to-cwd": "^1.3.1", "@parcel/bundler-default": "2.6.0", "@parcel/compressor-raw": "2.6.0", "@parcel/namer-default": "2.6.0", @@ -9385,19 +9298,19 @@ } }, "gatsby-plugin-page-creator": { - "version": "4.18.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-page-creator/-/gatsby-plugin-page-creator-4.18.0.tgz", - "integrity": "sha512-6bY4vJndDw0nBcOuQdX41Wvbctw0y9+a7IavCFJKFeNs+Zo0XH2FX0IAww0slDnSJU6AukJ9qfjHqKJkADAZpQ==", + "version": "4.18.1", + "resolved": "https://registry.npmjs.org/gatsby-plugin-page-creator/-/gatsby-plugin-page-creator-4.18.1.tgz", + "integrity": "sha512-XPAglahQ1fDnSdSNJmtAGwVqB7yZDGPOQQBQX7LD74XwYP6uriRo4LyeI+gEXRqW4d63ZL3VMvgdisde9M95LQ==", "requires": { "@babel/runtime": "^7.15.4", "@babel/traverse": "^7.15.4", "@sindresorhus/slugify": "^1.1.2", "chokidar": "^3.5.3", "fs-exists-cached": "^1.0.0", - "gatsby-core-utils": "^3.18.0", - "gatsby-page-utils": "^2.18.0", - "gatsby-plugin-utils": "^3.12.0", - "gatsby-telemetry": "^3.18.0", + "gatsby-core-utils": "^3.18.1", + "gatsby-page-utils": "^2.18.1", + "gatsby-plugin-utils": "^3.12.1", + "gatsby-telemetry": "^3.18.1", "globby": "^11.1.0", "lodash": "^4.17.21" }, @@ -9457,9 +9370,9 @@ } }, "gatsby-core-utils": { - "version": "3.18.0", - "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.18.0.tgz", - "integrity": "sha512-mCoNgH4MilosLhEroklgVffwie9lyxgmvNwe/oIyzXr6NcZ2uxSp8G1KrgxdG2srt2hCNlZLlzS25ltLTeHTjA==", + "version": "3.18.1", + "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.18.1.tgz", + "integrity": "sha512-sJTxRqizLxYy/tSFk0ydfqEZ3ek1So9HDVUa39F6Oi8XuPCBTFzaAooUvowKGneI5YUbdk5y4VO4ybwVUynntw==", "requires": { "@babel/runtime": "^7.15.4", "ci-info": "2.0.0", @@ -9469,7 +9382,7 @@ "fs-extra": "^10.1.0", "got": "^11.8.5", "import-from": "^4.0.0", - "lmdb": "2.5.2", + "lmdb": "2.5.3", "lock": "^1.1.0", "node-object-hash": "^2.3.10", "proper-lockfile": "^4.1.2", @@ -9479,14 +9392,14 @@ } }, "gatsby-plugin-utils": { - "version": "3.12.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-utils/-/gatsby-plugin-utils-3.12.0.tgz", - "integrity": "sha512-vdz3qwaCOkvgzAxMkZlgpmpWf555jISwek5lyWYhGyJJvXYV8KQ2cZ4CoOfFKAYVeZVSucrHcdWyY3fLLpQvAA==", + "version": "3.12.1", + "resolved": "https://registry.npmjs.org/gatsby-plugin-utils/-/gatsby-plugin-utils-3.12.1.tgz", + "integrity": "sha512-Rx7/MFtiJ+pyvPLqCPj5beyMN6qOx3EYMrOqmvrWJaM32nxMfHZqUqxGruufyFNVe6edfRuNuXcKaPXlGlyexA==", "requires": { "@babel/runtime": "^7.15.4", "@gatsbyjs/potrace": "^2.2.0", "fs-extra": "^10.1.0", - "gatsby-core-utils": "^3.18.0", + "gatsby-core-utils": "^3.18.1", "gatsby-sharp": "^0.12.0", "graphql-compose": "^9.0.7", "import-from": "^4.0.0", @@ -9506,9 +9419,9 @@ } }, "gatsby-telemetry": { - "version": "3.18.0", - "resolved": "https://registry.npmjs.org/gatsby-telemetry/-/gatsby-telemetry-3.18.0.tgz", - "integrity": "sha512-i1JvNqGOyLDPGEn1QN29YGpe2ripg2LZBAOhXmk6lAhRL5fTVo6WkEA2yW7XESnXIOJBFymgVbUlLjXoqeZ5Xg==", + "version": "3.18.1", + "resolved": "https://registry.npmjs.org/gatsby-telemetry/-/gatsby-telemetry-3.18.1.tgz", + "integrity": "sha512-EjjsUv15BZGsmnPrOINRT/s7d18DTKokpp2NDZLm8uOs3MwVoLtUZ/BS7h2NTmgK+WN93q3bNYRkZgKgV9QC1A==", "requires": { "@babel/code-frame": "^7.14.0", "@babel/runtime": "^7.15.4", @@ -9518,7 +9431,7 @@ "boxen": "^4.2.0", "configstore": "^5.0.1", "fs-extra": "^10.1.0", - "gatsby-core-utils": "^3.18.0", + "gatsby-core-utils": "^3.18.1", "git-up": "^4.0.5", "is-docker": "^2.2.1", "lodash": "^4.17.21", @@ -9549,16 +9462,16 @@ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" }, "lmdb": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/lmdb/-/lmdb-2.5.2.tgz", - "integrity": "sha512-V5V5Xa2Hp9i2XsbDALkBTeHXnBXh/lEmk9p22zdr7jtuOIY9TGhjK6vAvTpOOx9IKU4hJkRWZxn/HsvR1ELLtA==", - "requires": { - "@lmdb/lmdb-darwin-arm64": "2.5.2", - "@lmdb/lmdb-darwin-x64": "2.5.2", - "@lmdb/lmdb-linux-arm": "2.5.2", - "@lmdb/lmdb-linux-arm64": "2.5.2", - "@lmdb/lmdb-linux-x64": "2.5.2", - "@lmdb/lmdb-win32-x64": "2.5.2", + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/lmdb/-/lmdb-2.5.3.tgz", + "integrity": "sha512-iBA0cb13CobBSoGJLfZgnrykLlfJipDAnvtf+YwIqqzBEsTeQYsXrHaSBkaHd5wCWeabwrNvhjZoFMUrlo+eLw==", + "requires": { + "@lmdb/lmdb-darwin-arm64": "2.5.3", + "@lmdb/lmdb-darwin-x64": "2.5.3", + "@lmdb/lmdb-linux-arm": "2.5.3", + "@lmdb/lmdb-linux-arm64": "2.5.3", + "@lmdb/lmdb-linux-x64": "2.5.3", + "@lmdb/lmdb-win32-x64": "2.5.3", "msgpackr": "^1.5.4", "node-addon-api": "^4.3.0", "node-gyp-build-optional-packages": "5.0.3", @@ -9688,9 +9601,9 @@ } }, "gatsby-plugin-typescript": { - "version": "4.18.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-typescript/-/gatsby-plugin-typescript-4.18.0.tgz", - "integrity": "sha512-SuNBrp57SnovOyhCz0zPkz7begV4UR2XdXUrFsh4N0jWOI5yFNVgENpKlbI/O7JnvgyV5KC/pkobNh3we+0mcQ==", + "version": "4.18.1", + "resolved": "https://registry.npmjs.org/gatsby-plugin-typescript/-/gatsby-plugin-typescript-4.18.1.tgz", + "integrity": "sha512-YUZcqL2WWiL2ngKe4A5FpTjCij2pLxiim+QaujeKfMjeWfHJ13uQ74HlxQXNpGAy4vMRBiU4CJH71RXgS1aoaA==", "requires": { "@babel/core": "^7.15.5", "@babel/plugin-proposal-nullish-coalescing-operator": "^7.14.5", @@ -9698,22 +9611,22 @@ "@babel/plugin-proposal-optional-chaining": "^7.14.5", "@babel/preset-typescript": "^7.15.0", "@babel/runtime": "^7.15.4", - "babel-plugin-remove-graphql-queries": "^4.18.0" + "babel-plugin-remove-graphql-queries": "^4.18.1" }, "dependencies": { "babel-plugin-remove-graphql-queries": { - "version": "4.18.0", - "resolved": "https://registry.npmjs.org/babel-plugin-remove-graphql-queries/-/babel-plugin-remove-graphql-queries-4.18.0.tgz", - "integrity": "sha512-6oOm/cTZdk+7yPh4R4ISLKNur3rK5w2zAUCXTOGKYcRYbvKCS22ODafQBrNcu/UdfpXwSz3XZOG5ru72Z5usUw==", + "version": "4.18.1", + "resolved": "https://registry.npmjs.org/babel-plugin-remove-graphql-queries/-/babel-plugin-remove-graphql-queries-4.18.1.tgz", + "integrity": "sha512-2I7qsm3pnyvrS6/Q9YuHK1SpfQLmrgYH/AjpnWpnLHee6SiVb5Te89iphhpBdycpBRVGWh04ram9+z/1rMaRYQ==", "requires": { "@babel/runtime": "^7.15.4", - "gatsby-core-utils": "^3.18.0" + "gatsby-core-utils": "^3.18.1" } }, "gatsby-core-utils": { - "version": "3.18.0", - "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.18.0.tgz", - "integrity": "sha512-mCoNgH4MilosLhEroklgVffwie9lyxgmvNwe/oIyzXr6NcZ2uxSp8G1KrgxdG2srt2hCNlZLlzS25ltLTeHTjA==", + "version": "3.18.1", + "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.18.1.tgz", + "integrity": "sha512-sJTxRqizLxYy/tSFk0ydfqEZ3ek1So9HDVUa39F6Oi8XuPCBTFzaAooUvowKGneI5YUbdk5y4VO4ybwVUynntw==", "requires": { "@babel/runtime": "^7.15.4", "ci-info": "2.0.0", @@ -9723,7 +9636,7 @@ "fs-extra": "^10.1.0", "got": "^11.8.5", "import-from": "^4.0.0", - "lmdb": "2.5.2", + "lmdb": "2.5.3", "lock": "^1.1.0", "node-object-hash": "^2.3.10", "proper-lockfile": "^4.1.2", @@ -9751,16 +9664,16 @@ } }, "lmdb": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/lmdb/-/lmdb-2.5.2.tgz", - "integrity": "sha512-V5V5Xa2Hp9i2XsbDALkBTeHXnBXh/lEmk9p22zdr7jtuOIY9TGhjK6vAvTpOOx9IKU4hJkRWZxn/HsvR1ELLtA==", - "requires": { - "@lmdb/lmdb-darwin-arm64": "2.5.2", - "@lmdb/lmdb-darwin-x64": "2.5.2", - "@lmdb/lmdb-linux-arm": "2.5.2", - "@lmdb/lmdb-linux-arm64": "2.5.2", - "@lmdb/lmdb-linux-x64": "2.5.2", - "@lmdb/lmdb-win32-x64": "2.5.2", + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/lmdb/-/lmdb-2.5.3.tgz", + "integrity": "sha512-iBA0cb13CobBSoGJLfZgnrykLlfJipDAnvtf+YwIqqzBEsTeQYsXrHaSBkaHd5wCWeabwrNvhjZoFMUrlo+eLw==", + "requires": { + "@lmdb/lmdb-darwin-arm64": "2.5.3", + "@lmdb/lmdb-darwin-x64": "2.5.3", + "@lmdb/lmdb-linux-arm": "2.5.3", + "@lmdb/lmdb-linux-arm64": "2.5.3", + "@lmdb/lmdb-linux-x64": "2.5.3", + "@lmdb/lmdb-win32-x64": "2.5.3", "msgpackr": "^1.5.4", "node-addon-api": "^4.3.0", "node-gyp-build-optional-packages": "5.0.3", @@ -11573,9 +11486,9 @@ } }, "jsx-ast-utils": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.3.1.tgz", - "integrity": "sha512-pxrjmNpeRw5wwVeWyEAk7QJu2GnBO3uzPFmHCKJJFPKK2Cy0cWL23krGtLdnMmbIi6/FjlrQpPyfQI19ByPOhQ==", + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.3.2.tgz", + "integrity": "sha512-4ZCADZHRkno244xlNnn4AOG6sRQ7iBZ5BbgZ4vW4y5IZw7cVUD1PPeblm1xx/nfmMxPdt/LHsXZW8z/j58+l9Q==", "requires": { "array-includes": "^3.1.5", "object.assign": "^4.1.2" @@ -11635,9 +11548,9 @@ } }, "lilconfig": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-2.0.5.tgz", - "integrity": "sha512-xaYmXZtTHPAw5m+xLN8ab9C+3a8YmV3asNSPOATITbtwrfbwaLJj8h66H1WMIpALCkqsIzK3h7oQ+PdX+LQ9Eg==" + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-2.0.6.tgz", + "integrity": "sha512-9JROoBW7pobfsx+Sq2JsASvCo6Pfo6WWoUW79HuB1BCoBXD4PLWJPqDF6fNj67pqBYTbAHkE57M1kS/+L1neOg==" }, "lines-and-columns": { "version": "1.1.6", @@ -12344,9 +12257,9 @@ "integrity": "sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==" }, "moment": { - "version": "2.29.3", - "resolved": "https://registry.npmjs.org/moment/-/moment-2.29.3.tgz", - "integrity": "sha512-c6YRvhEo//6T2Jz/vVtYzqBzwvPT95JBQ+smCytzf7c50oMZRsR/a4w88aD34I+/QVSfnoAnSBFPJHItlOMJVw==" + "version": "2.29.4", + "resolved": "https://registry.npmjs.org/moment/-/moment-2.29.4.tgz", + "integrity": "sha512-5LC9SOxjSc2HF6vO2CyuTDNivEdoz2IvyJJGj6X8DJ0eFyfszE0QiEd+iXmBvUP3WHxSjFH/vIsA0EN00cgr8w==" }, "ms": { "version": "2.1.2", @@ -12505,9 +12418,9 @@ "integrity": "sha512-jY5dPJzw6NHd/KPSfPKJ+IHoFS81/tJ43r34ZeNMXGzCOM8jwQDCD12HYayKIB6MuznrnqIYy2e891NA2g0ibA==" }, "node-releases": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.5.tgz", - "integrity": "sha512-U9h1NLROZTq9uE1SNffn6WuPDg8icmi3ns4rEl/oTfIle4iLjTliCzgTsbaIFMq/Xn078/lfY/BL0GWZ+psK4Q==" + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.6.tgz", + "integrity": "sha512-PiVXnNuFm5+iYkLBNeq5211hvO38y63T0i2KKh2KnUs3RpzJ+JtODFjkD8yjLwnDkTYF1eKXheUwdssR+NRZdg==" }, "normalize-path": { "version": "3.0.0", @@ -13339,14 +13252,14 @@ } }, "caniuse-lite": { - "version": "1.0.30001363", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001363.tgz", - "integrity": "sha512-HpQhpzTGGPVMnCjIomjt+jvyUu8vNFo3TaDiZ/RcoTrlOq/5+tC8zHdsbgFB6MxmaY+jCpsH09aD80Bb4Ow3Sg==" + "version": "1.0.30001365", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001365.tgz", + "integrity": "sha512-VDQZ8OtpuIPMBA4YYvZXECtXbddMCUFJk1qu8Mqxfm/SZJNSr1cy4IuLCOL7RJ/YASrvJcYg1Zh+UEUQ5m6z8Q==" }, "electron-to-chromium": { - "version": "1.4.179", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.179.tgz", - "integrity": "sha512-1XeTb/U/8Xgh2YgPOqhakLYsvCcU4U7jUjTMbEnhIJoIWd/Qt3yC8y0cbG+fHzn4zUNF99Ey1xiPf20bwgLO3Q==" + "version": "1.4.186", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.186.tgz", + "integrity": "sha512-YoVeFrGd/7ROjz4R9uPoND1K/hSRC/xADy9639ZmIZeJSaBnKdYx3I6LMPsY7CXLpK7JFgKQVzeZ/dk2br6Eaw==" } } }, @@ -16329,9 +16242,9 @@ } }, "tslib": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.1.tgz", - "integrity": "sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw==" + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz", + "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==" }, "tsutils": { "version": "3.21.0", diff --git a/starters/gatsby-starter-blog-theme/package.json b/starters/gatsby-starter-blog-theme/package.json index 32f7215753aed..cc6622ee46d5a 100644 --- a/starters/gatsby-starter-blog-theme/package.json +++ b/starters/gatsby-starter-blog-theme/package.json @@ -13,7 +13,7 @@ "@emotion/react": "^11.9.3", "@emotion/styled": "^11.9.3", "@mdx-js/react": "^1.6.22", - "gatsby": "^4.18.0", + "gatsby": "^4.18.1", "gatsby-theme-blog": "^4.0.0", "react": "^18.1.0", "react-dom": "^18.1.0", diff --git a/starters/gatsby-starter-minimal-ts/package-lock.json b/starters/gatsby-starter-minimal-ts/package-lock.json index c81c5f61e47c8..8a05e3b620909 100644 --- a/starters/gatsby-starter-minimal-ts/package-lock.json +++ b/starters/gatsby-starter-minimal-ts/package-lock.json @@ -61,9 +61,9 @@ } }, "@babel/compat-data": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.18.6.tgz", - "integrity": "sha512-tzulrgDT0QD6U7BJ4TKVk2SDDg7wlP39P9yAx1RfLy7vP/7rsDRlWVfbWxElslu56+r7QOhB2NSDsabYYruoZQ==" + "version": "7.18.8", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.18.8.tgz", + "integrity": "sha512-HSmX4WZPPK3FUxYp7g2T6EyO8j96HlZJlxmKPSh6KAcqwyDrfx7hKjXpAW/0FhFfTJsR0Yt4lAjLI2coMptIHQ==" }, "@babel/core": { "version": "7.18.6", @@ -276,9 +276,9 @@ } }, "@babel/helper-module-transforms": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.18.6.tgz", - "integrity": "sha512-L//phhB4al5uucwzlimruukHB3jRd5JGClwRMD/ROrVjXfLqovYnvQrK/JK36WYyVwGGO7OD3kMyVTjx+WVPhw==", + "version": "7.18.8", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.18.8.tgz", + "integrity": "sha512-che3jvZwIcZxrwh63VfnFTUzcAM9v/lznYkkRxIBGMPt1SudOKHAEec0SIRCfiuIzTcF7VGj/CaTT6gY4eWxvA==", "requires": { "@babel/helper-environment-visitor": "^7.18.6", "@babel/helper-module-imports": "^7.18.6", @@ -286,8 +286,8 @@ "@babel/helper-split-export-declaration": "^7.18.6", "@babel/helper-validator-identifier": "^7.18.6", "@babel/template": "^7.18.6", - "@babel/traverse": "^7.18.6", - "@babel/types": "^7.18.6" + "@babel/traverse": "^7.18.8", + "@babel/types": "^7.18.8" } }, "@babel/helper-optimise-call-expression": { @@ -404,9 +404,9 @@ } }, "@babel/parser": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.18.6.tgz", - "integrity": "sha512-uQVSa9jJUe/G/304lXspfWVpKpK4euFLgGiMQFOCpM/bgcAdeoHwi/OQz23O9GK2osz26ZiXRRV9aV+Yl1O8tw==" + "version": "7.18.8", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.18.8.tgz", + "integrity": "sha512-RSKRfYX20dyH+elbJK2uqAkVyucL+xXzhqlMD5/ZXx+dAAwpyB7HsvnHe/ZUGOF+xLr5Wx9/JoXVTj6BQE2/oA==" }, "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": { "version": "7.18.6", @@ -749,9 +749,9 @@ } }, "@babel/plugin-transform-classes": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.18.6.tgz", - "integrity": "sha512-XTg8XW/mKpzAF3actL554Jl/dOYoJtv3l8fxaEczpgz84IeeVf+T1u2CSvPHuZbt0w3JkIx4rdn/MRQI7mo0HQ==", + "version": "7.18.8", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.18.8.tgz", + "integrity": "sha512-RySDoXdF6hgHSHuAW4aLGyVQdmvEX/iJtjVre52k0pxRq4hzqze+rAVP++NmNv596brBpYmaiKgTZby7ziBnVg==", "requires": { "@babel/helper-annotate-as-pure": "^7.18.6", "@babel/helper-environment-visitor": "^7.18.6", @@ -815,9 +815,9 @@ } }, "@babel/plugin-transform-for-of": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.18.6.tgz", - "integrity": "sha512-WAjoMf4wIiSsy88KmG7tgj2nFdEK7E46tArVtcgED7Bkj6Fg/tG5SbvNIOKxbFS2VFgNh6+iaPswBeQZm4ox8w==", + "version": "7.18.8", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.18.8.tgz", + "integrity": "sha512-yEfTRnjuskWYo0k1mHUqrVWaZwrdq8AYbfrpqULOJOaucGSp4mNMVps+YtA8byoevxS/urwU75vyhQIxcCgiBQ==", "requires": { "@babel/helper-plugin-utils": "^7.18.6" } @@ -917,9 +917,9 @@ } }, "@babel/plugin-transform-parameters": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.18.6.tgz", - "integrity": "sha512-FjdqgMv37yVl/gwvzkcB+wfjRI8HQmc5EgOG9iGNvUY1ok+TjsoaMP7IqCDZBhkFcM5f3OPVMs6Dmp03C5k4/A==", + "version": "7.18.8", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.18.8.tgz", + "integrity": "sha512-ivfbE3X2Ss+Fj8nnXvKJS6sjRG4gzwPMsP+taZC+ZzEGjAYlvENixmt1sZ5Ca6tWls+BlKSGKPJ6OOXvXCbkFg==", "requires": { "@babel/helper-plugin-utils": "^7.18.6" } @@ -1048,9 +1048,9 @@ } }, "@babel/plugin-transform-typescript": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.18.6.tgz", - "integrity": "sha512-ijHNhzIrLj5lQCnI6aaNVRtGVuUZhOXFLRVFs7lLrkXTHip4FKty5oAuQdk4tywG0/WjXmjTfQCWmuzrvFer1w==", + "version": "7.18.8", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.18.8.tgz", + "integrity": "sha512-p2xM8HI83UObjsZGofMV/EdYjamsDm6MoN3hXPYIT0+gxIoopE+B7rPYKAxfrz9K9PK7JafTTjqYC6qipLExYA==", "requires": { "@babel/helper-create-class-features-plugin": "^7.18.6", "@babel/helper-plugin-utils": "^7.18.6", @@ -1226,18 +1226,18 @@ } }, "@babel/traverse": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.18.6.tgz", - "integrity": "sha512-zS/OKyqmD7lslOtFqbscH6gMLFYOfG1YPqCKfAW5KrTeolKqvB8UelR49Fpr6y93kYkW2Ik00mT1LOGiAGvizw==", + "version": "7.18.8", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.18.8.tgz", + "integrity": "sha512-UNg/AcSySJYR/+mIcJQDCv00T+AqRO7j/ZEJLzpaYtgM48rMg5MnkJgyNqkzo88+p4tfRvZJCEiwwfG6h4jkRg==", "requires": { "@babel/code-frame": "^7.18.6", - "@babel/generator": "^7.18.6", + "@babel/generator": "^7.18.7", "@babel/helper-environment-visitor": "^7.18.6", "@babel/helper-function-name": "^7.18.6", "@babel/helper-hoist-variables": "^7.18.6", "@babel/helper-split-export-declaration": "^7.18.6", - "@babel/parser": "^7.18.6", - "@babel/types": "^7.18.6", + "@babel/parser": "^7.18.8", + "@babel/types": "^7.18.8", "debug": "^4.1.0", "globals": "^11.1.0" }, @@ -1253,9 +1253,9 @@ } }, "@babel/types": { - "version": "7.18.7", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.7.tgz", - "integrity": "sha512-QG3yxTcTIBoAcQmkCs+wAPYZhu7Dk9rXKacINfNbdJDNERTbLQbHGyVG8q/YGMPeCJRIhSY0+fTc5+xuh6WPSQ==", + "version": "7.18.8", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.8.tgz", + "integrity": "sha512-qwpdsmraq0aJ3osLJRApsc2ouSJCdnMeZwB0DhbtHAtRpZNZCdlbRnHIgcRKzdE1g0iOGg644fzjOBcdOz9cPw==", "requires": { "@babel/helper-validator-identifier": "^7.18.6", "to-fast-properties": "^2.0.0" @@ -1317,13 +1317,13 @@ } }, "@gatsbyjs/parcel-namer-relative-to-cwd": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/@gatsbyjs/parcel-namer-relative-to-cwd/-/parcel-namer-relative-to-cwd-1.3.0.tgz", - "integrity": "sha512-nd1lQn7ezg51ekqZm8iZjND8akB7bsGkGe7GdIPdTwbhale2dHLqd74qg+bBrEjv5f5aFZhpJeY9XpeU4emWZQ==", + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/@gatsbyjs/parcel-namer-relative-to-cwd/-/parcel-namer-relative-to-cwd-1.3.1.tgz", + "integrity": "sha512-wN4iU1CWumvhcuzMBKdDikZ5xgo81Ias09bKyjE36DgNxTzAhT2fXZIBAAEUlv/GBQqFe6Eas83gGGtXf31hiw==", "requires": { "@babel/runtime": "^7.18.0", "@parcel/plugin": "2.6.0", - "gatsby-core-utils": "^3.18.0" + "gatsby-core-utils": "^3.18.1" } }, "@gatsbyjs/potrace": { @@ -1355,108 +1355,87 @@ } }, "@graphql-codegen/add": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/@graphql-codegen/add/-/add-3.1.1.tgz", - "integrity": "sha512-XkVwcqosa0CVBlL1HaQT0gp+EUfhuQE3LzrEpzMQLwchxaj/NPVYtOJL6MUHaYDsHzLqxWrufjfbeB3y2NQgRw==", + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/@graphql-codegen/add/-/add-3.2.0.tgz", + "integrity": "sha512-8hyr5XvTDGnpiT4nH2yH8PP4SWtUEIUdkFaZbkpkFkU0Ud9dplvSviOCdxdArffZ1FHy0XYLTMa2it+UJOtszg==", "requires": { - "@graphql-codegen/plugin-helpers": "^2.3.2", - "tslib": "~2.3.0" + "@graphql-codegen/plugin-helpers": "^2.5.0", + "tslib": "~2.4.0" } }, "@graphql-codegen/core": { - "version": "2.5.1", - "resolved": "https://registry.npmjs.org/@graphql-codegen/core/-/core-2.5.1.tgz", - "integrity": "sha512-alctBVl2hMnBXDLwkgmnFPrZVIiBDsWJSmxJcM4GKg1PB23+xuov35GE47YAyAhQItE1B1fbYnbb1PtGiDZ4LA==", + "version": "2.6.0", + "resolved": "https://registry.npmjs.org/@graphql-codegen/core/-/core-2.6.0.tgz", + "integrity": "sha512-7uZGnLCMR/pnh/5CsyI4y5bBvRndNHFs+AWpMUUjDBcjMRrMaavu37VyyYDz4/ob0BnQJt8RTBN9eArS9PLYAQ==", "requires": { - "@graphql-codegen/plugin-helpers": "^2.4.1", - "@graphql-tools/schema": "^8.1.2", - "@graphql-tools/utils": "^8.1.1", - "tslib": "~2.3.0" + "@graphql-codegen/plugin-helpers": "^2.5.0", + "@graphql-tools/schema": "^8.5.0", + "@graphql-tools/utils": "^8.8.0", + "tslib": "~2.4.0" } }, "@graphql-codegen/plugin-helpers": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/@graphql-codegen/plugin-helpers/-/plugin-helpers-2.4.2.tgz", - "integrity": "sha512-LJNvwAPv/sKtI3RnRDm+nPD+JeOfOuSOS4FFIpQCMUCyMnFcchV/CPTTv7tT12fLUpEg6XjuFfDBvOwndti30Q==", + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/@graphql-codegen/plugin-helpers/-/plugin-helpers-2.5.0.tgz", + "integrity": "sha512-0jM5/14EdM4yow5v8OGOnUmRqfA1gaWkh+J5berqQUpcFYfSQXD6+Idnkiju/jjIypEN7UvbPkC7BgryWVxexA==", "requires": { - "@graphql-tools/utils": "^8.5.2", + "@graphql-tools/utils": "^8.8.0", "change-case-all": "1.0.14", "common-tags": "1.8.2", "import-from": "4.0.0", "lodash": "~4.17.0", - "tslib": "~2.3.0" + "tslib": "~2.4.0" } }, "@graphql-codegen/schema-ast": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/@graphql-codegen/schema-ast/-/schema-ast-2.4.1.tgz", - "integrity": "sha512-bIWlKk/ShoVJfghA4Rt1OWnd34/dQmZM/vAe6fu6QKyOh44aAdqPtYQ2dbTyFXoknmu504etKJGEDllYNUJRfg==", + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/@graphql-codegen/schema-ast/-/schema-ast-2.5.0.tgz", + "integrity": "sha512-nlF4Yc7h90nmogG2E11TeFJ3/hCkb4SDMSdbJX68b1mhvVEji/kq3zWYKAQ+lAzjZ7HF94Eylm3MrZAjjpCKIA==", "requires": { - "@graphql-codegen/plugin-helpers": "^2.3.2", - "@graphql-tools/utils": "^8.1.1", - "tslib": "~2.3.0" + "@graphql-codegen/plugin-helpers": "^2.5.0", + "@graphql-tools/utils": "^8.8.0", + "tslib": "~2.4.0" } }, "@graphql-codegen/typescript": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@graphql-codegen/typescript/-/typescript-2.6.0.tgz", - "integrity": "sha512-f36ilg8J+wui0OhmQglIZ+2z4Ybc08Y7r7BlBDqfJ1F5X0zau0SlC7Hp2iCoCA0ucqZYtiUU/0n+/R8m1cTrQQ==", + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/@graphql-codegen/typescript/-/typescript-2.7.1.tgz", + "integrity": "sha512-qF4SBMgBnLcegba2s9+zC3NwgRhU0Kv+eS8kl9G5ldEHx9Bpu2tft+lk6fjqqhExDzJT+MEOU3Ecog3BzL2R1g==", "requires": { - "@graphql-codegen/plugin-helpers": "^2.4.0", - "@graphql-codegen/schema-ast": "^2.4.1", - "@graphql-codegen/visitor-plugin-common": "2.10.0", + "@graphql-codegen/plugin-helpers": "^2.5.0", + "@graphql-codegen/schema-ast": "^2.5.0", + "@graphql-codegen/visitor-plugin-common": "2.11.1", "auto-bind": "~4.0.0", "tslib": "~2.4.0" - }, - "dependencies": { - "tslib": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz", - "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==" - } } }, "@graphql-codegen/typescript-operations": { - "version": "2.4.3", - "resolved": "https://registry.npmjs.org/@graphql-codegen/typescript-operations/-/typescript-operations-2.4.3.tgz", - "integrity": "sha512-MW9cU/zCAmfFAObwW23e+GrW3CoV9OX2gVm/V1565WGZXDQPUc5Y5IjdfGfunV4ApkgFDiHpF1Mz/AS55OErgw==", + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/@graphql-codegen/typescript-operations/-/typescript-operations-2.5.1.tgz", + "integrity": "sha512-lGv+sPDXGcp/vDdIh7SoQjz8BRCZhLats4Hbqnf6gB7UtIasMvGuFDQyrKb3XAkQQYWqx/xtmEo0rBN8syV+Wg==", "requires": { - "@graphql-codegen/plugin-helpers": "^2.4.0", - "@graphql-codegen/typescript": "^2.6.0", - "@graphql-codegen/visitor-plugin-common": "2.10.0", + "@graphql-codegen/plugin-helpers": "^2.5.0", + "@graphql-codegen/typescript": "^2.7.1", + "@graphql-codegen/visitor-plugin-common": "2.11.1", "auto-bind": "~4.0.0", "tslib": "~2.4.0" - }, - "dependencies": { - "tslib": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz", - "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==" - } } }, "@graphql-codegen/visitor-plugin-common": { - "version": "2.10.0", - "resolved": "https://registry.npmjs.org/@graphql-codegen/visitor-plugin-common/-/visitor-plugin-common-2.10.0.tgz", - "integrity": "sha512-nWoxHKUdwOJCWV96Ks1x4EwYCWsZDJXB+2j6EQz5j27DzdxmQInZ86degaDCd3EgbwhMQEMtiZiPGFFDrgBkHA==", - "requires": { - "@graphql-codegen/plugin-helpers": "^2.4.0", - "@graphql-tools/optimize": "^1.0.1", - "@graphql-tools/relay-operation-optimizer": "^6.4.14", - "@graphql-tools/utils": "^8.3.0", + "version": "2.11.1", + "resolved": "https://registry.npmjs.org/@graphql-codegen/visitor-plugin-common/-/visitor-plugin-common-2.11.1.tgz", + "integrity": "sha512-AlrtGWKn2o89SPna75ATEHYAu95MUMucgBqLgcRvK9n/PHhVAbkDrNCH5pL03fE0HLOup3GpjX8DcnFBMU46IA==", + "requires": { + "@graphql-codegen/plugin-helpers": "^2.5.0", + "@graphql-tools/optimize": "^1.3.0", + "@graphql-tools/relay-operation-optimizer": "^6.5.0", + "@graphql-tools/utils": "^8.8.0", "auto-bind": "~4.0.0", "change-case-all": "1.0.14", "dependency-graph": "^0.11.0", "graphql-tag": "^2.11.0", "parse-filepath": "^1.0.2", "tslib": "~2.4.0" - }, - "dependencies": { - "tslib": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz", - "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==" - } } }, "@graphql-tools/batch-execute": { @@ -1502,13 +1481,6 @@ "globby": "^11.0.3", "tslib": "^2.4.0", "unixify": "^1.0.0" - }, - "dependencies": { - "tslib": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz", - "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==" - } } }, "@graphql-tools/delegate": { @@ -1601,13 +1573,6 @@ "@babel/types": "^7.16.8", "@graphql-tools/utils": "8.8.0", "tslib": "^2.4.0" - }, - "dependencies": { - "tslib": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz", - "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==" - } } }, "@graphql-tools/import": { @@ -1618,13 +1583,6 @@ "@graphql-tools/utils": "8.8.0", "resolve-from": "5.0.0", "tslib": "^2.4.0" - }, - "dependencies": { - "tslib": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz", - "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==" - } } }, "@graphql-tools/json-file-loader": { @@ -1678,11 +1636,6 @@ "requires": { "yocto-queue": "^0.1.0" } - }, - "tslib": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz", - "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==" } } }, @@ -1693,13 +1646,6 @@ "requires": { "@graphql-tools/utils": "8.8.0", "tslib": "^2.4.0" - }, - "dependencies": { - "tslib": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz", - "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==" - } } }, "@graphql-tools/optimize": { @@ -1708,13 +1654,6 @@ "integrity": "sha512-30QOWJoMJEt1De7tAFtWJ6VPrP6SLq+tSQrA3x+WMvCW3q2exq5wPDpvAXOakVKu0y8L2E+YkipC0hcQPBQdLg==", "requires": { "tslib": "^2.4.0" - }, - "dependencies": { - "tslib": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz", - "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==" - } } }, "@graphql-tools/relay-operation-optimizer": { @@ -1725,13 +1664,6 @@ "@ardatan/relay-compiler": "12.0.0", "@graphql-tools/utils": "8.8.0", "tslib": "^2.4.0" - }, - "dependencies": { - "tslib": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz", - "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==" - } } }, "@graphql-tools/schema": { @@ -1743,13 +1675,6 @@ "@graphql-tools/utils": "8.8.0", "tslib": "^2.4.0", "value-or-promise": "1.0.11" - }, - "dependencies": { - "tslib": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz", - "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==" - } } }, "@graphql-tools/url-loader": { @@ -1814,13 +1739,6 @@ "integrity": "sha512-KJrtx05uSM/cPYFdTnGAS1doL5bftJLAiFCDMZ8Vkifztz3BFn3gpFiy/o4wDtM8s39G46mxmt2Km/RmeltfGw==", "requires": { "tslib": "^2.4.0" - }, - "dependencies": { - "tslib": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz", - "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==" - } } }, "@graphql-tools/wrap": { @@ -2248,9 +2166,9 @@ } }, "@jridgewell/resolve-uri": { - "version": "3.0.8", - "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.0.8.tgz", - "integrity": "sha512-YK5G9LaddzGbcucK4c8h5tWFmMPBvRZ/uyWmN1/SbBdIvqGUdWGkJ5BAaccgs6XbzVLsqbPJrBSFwKv3kT9i7w==" + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz", + "integrity": "sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==" }, "@jridgewell/set-array": { "version": "1.1.2", @@ -2306,39 +2224,39 @@ } }, "@lmdb/lmdb-darwin-arm64": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-arm64/-/lmdb-darwin-arm64-2.5.2.tgz", - "integrity": "sha512-+F8ioQIUN68B4UFiIBYu0QQvgb9FmlKw2ctQMSBfW2QBrZIxz9vD9jCGqTCPqZBRbPHAS/vG1zSXnKqnS2ch/A==", + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-arm64/-/lmdb-darwin-arm64-2.5.3.tgz", + "integrity": "sha512-RXwGZ/0eCqtCY8FLTM/koR60w+MXyvBUpToXiIyjOcBnC81tAlTUHrRUavCEWPI9zc9VgvpK3+cbumPyR8BSuA==", "optional": true }, "@lmdb/lmdb-darwin-x64": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-x64/-/lmdb-darwin-x64-2.5.2.tgz", - "integrity": "sha512-KvPH56KRLLx4KSfKBx0m1r7GGGUMXm0jrKmNE7plbHlesZMuPJICtn07HYgQhj1LNsK7Yqwuvnqh1QxhJnF1EA==", + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-x64/-/lmdb-darwin-x64-2.5.3.tgz", + "integrity": "sha512-337dNzh5yCdNCTk8kPfoU7jR3otibSlPDGW0vKZT97rKnQMb9tNdto3RtWoGPsQ8hKmlRZpojOJtmwjncq1MoA==", "optional": true }, "@lmdb/lmdb-linux-arm": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm/-/lmdb-linux-arm-2.5.2.tgz", - "integrity": "sha512-5kQAP21hAkfW5Bl+e0P57dV4dGYnkNIpR7f/GAh6QHlgXx+vp/teVj4PGRZaKAvt0GX6++N6hF8NnGElLDuIDw==", + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm/-/lmdb-linux-arm-2.5.3.tgz", + "integrity": "sha512-mU2HFJDGwECkoD9dHQEfeTG5mp8hNS2BCfwoiOpVPMeapjYpQz9Uw3FkUjRZ4dGHWKbin40oWHuL0bk2bCx+Sg==", "optional": true }, "@lmdb/lmdb-linux-arm64": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm64/-/lmdb-linux-arm64-2.5.2.tgz", - "integrity": "sha512-aLl89VHL/wjhievEOlPocoefUyWdvzVrcQ/MHQYZm2JfV1jUsrbr/ZfkPPUFvZBf+VSE+Q0clWs9l29PCX1hTQ==", + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm64/-/lmdb-linux-arm64-2.5.3.tgz", + "integrity": "sha512-VJw60Mdgb4n+L0fO1PqfB0C7TyEQolJAC8qpqvG3JoQwvyOv6LH7Ib/WE3wxEW9nuHmVz9jkK7lk5HfWWgoO1Q==", "optional": true }, "@lmdb/lmdb-linux-x64": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-x64/-/lmdb-linux-x64-2.5.2.tgz", - "integrity": "sha512-xUdUfwDJLGjOUPH3BuPBt0NlIrR7f/QHKgu3GZIXswMMIihAekj2i97oI0iWG5Bok/b+OBjHPfa8IU9velnP/Q==", + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-x64/-/lmdb-linux-x64-2.5.3.tgz", + "integrity": "sha512-qaReO5aV8griBDsBr8uBF/faO3ieGjY1RY4p8JvTL6Mu1ylLrTVvOONqKFlNaCwrmUjWw5jnf7VafxDAeQHTow==", "optional": true }, "@lmdb/lmdb-win32-x64": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-win32-x64/-/lmdb-win32-x64-2.5.2.tgz", - "integrity": "sha512-zrBczSbXKxEyK2ijtbRdICDygRqWSRPpZMN5dD1T8VMEW5RIhIbwFWw2phDRXuBQdVDpSjalCIUMWMV2h3JaZA==", + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-win32-x64/-/lmdb-win32-x64-2.5.3.tgz", + "integrity": "sha512-cK+Elf3RjEzrm3SerAhrFWL5oQAsZSJ/LmjL1joIpTfEP1etJJ9CTRvdaV6XLYAxaEkfdhk/9hOvHLbR9yIhCA==", "optional": true }, "@microsoft/fetch-event-source": { @@ -2940,13 +2858,6 @@ "integrity": "sha512-tb7Iu+oZ+zWJZ3HJqwx8oNwSDIU440hmVMDPhpACWQWnrZHK99Bxs70gT1L2dnr5Hg50ZRWEFkQCAnOVVV0z1Q==", "requires": { "tslib": "^2.4.0" - }, - "dependencies": { - "tslib": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz", - "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==" - } } }, "@szmarczak/http-timer": { @@ -3850,12 +3761,12 @@ } }, "babel-plugin-remove-graphql-queries": { - "version": "4.18.0", - "resolved": "https://registry.npmjs.org/babel-plugin-remove-graphql-queries/-/babel-plugin-remove-graphql-queries-4.18.0.tgz", - "integrity": "sha512-6oOm/cTZdk+7yPh4R4ISLKNur3rK5w2zAUCXTOGKYcRYbvKCS22ODafQBrNcu/UdfpXwSz3XZOG5ru72Z5usUw==", + "version": "4.18.1", + "resolved": "https://registry.npmjs.org/babel-plugin-remove-graphql-queries/-/babel-plugin-remove-graphql-queries-4.18.1.tgz", + "integrity": "sha512-2I7qsm3pnyvrS6/Q9YuHK1SpfQLmrgYH/AjpnWpnLHee6SiVb5Te89iphhpBdycpBRVGWh04ram9+z/1rMaRYQ==", "requires": { "@babel/runtime": "^7.15.4", - "gatsby-core-utils": "^3.18.0" + "gatsby-core-utils": "^3.18.1" } }, "babel-plugin-syntax-trailing-function-commas": { @@ -3903,9 +3814,9 @@ } }, "babel-preset-gatsby": { - "version": "2.18.0", - "resolved": "https://registry.npmjs.org/babel-preset-gatsby/-/babel-preset-gatsby-2.18.0.tgz", - "integrity": "sha512-b6BJEl0MlA/nh+IkTJRgvPEgdN09Pu34Szo5dE4QYvQa66++EqfQUK5huqr+FgZJedPPYYbRY2SgKlRXev5QIQ==", + "version": "2.18.1", + "resolved": "https://registry.npmjs.org/babel-preset-gatsby/-/babel-preset-gatsby-2.18.1.tgz", + "integrity": "sha512-oaVV6ULceMjTQKjCA06qvgfLwBNZFJxpacwNZYOJpLygmj+qYiNKDGhJ8vTw/KAIUeDPZAbPMP5P+3wMEPIWYQ==", "requires": { "@babel/plugin-proposal-class-properties": "^7.14.0", "@babel/plugin-proposal-nullish-coalescing-operator": "^7.14.5", @@ -3920,7 +3831,7 @@ "babel-plugin-dynamic-import-node": "^2.3.3", "babel-plugin-macros": "^3.1.0", "babel-plugin-transform-react-remove-prop-types": "^0.4.24", - "gatsby-core-utils": "^3.18.0", + "gatsby-core-utils": "^3.18.1", "gatsby-legacy-polyfills": "^2.18.0" } }, @@ -4259,9 +4170,9 @@ } }, "caniuse-lite": { - "version": "1.0.30001363", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001363.tgz", - "integrity": "sha512-HpQhpzTGGPVMnCjIomjt+jvyUu8vNFo3TaDiZ/RcoTrlOq/5+tC8zHdsbgFB6MxmaY+jCpsH09aD80Bb4Ow3Sg==" + "version": "1.0.30001365", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001365.tgz", + "integrity": "sha512-VDQZ8OtpuIPMBA4YYvZXECtXbddMCUFJk1qu8Mqxfm/SZJNSr1cy4IuLCOL7RJ/YASrvJcYg1Zh+UEUQ5m6z8Q==" }, "capital-case": { "version": "1.0.4", @@ -4744,16 +4655,16 @@ "integrity": "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==" }, "core-js": { - "version": "3.23.3", - "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.23.3.tgz", - "integrity": "sha512-oAKwkj9xcWNBAvGbT//WiCdOMpb9XQG92/Fe3ABFM/R16BsHgePG00mFOgKf7IsCtfj8tA1kHtf/VwErhriz5Q==" + "version": "3.23.4", + "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.23.4.tgz", + "integrity": "sha512-vjsKqRc1RyAJC3Ye2kYqgfdThb3zYnx9CrqoCcjMOENMtQPC7ZViBvlDxwYU/2z2NI/IPuiXw5mT4hWhddqjzQ==" }, "core-js-compat": { - "version": "3.23.3", - "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.23.3.tgz", - "integrity": "sha512-WSzUs2h2vvmKsacLHNTdpyOC9k43AEhcGoFlVgCY4L7aw98oSBKtPL6vD0/TqZjRWRQYdDSLkzZIni4Crbbiqw==", + "version": "3.23.4", + "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.23.4.tgz", + "integrity": "sha512-RkSRPe+JYEoflcsuxJWaiMPhnZoFS51FcIxm53k4KzhISCBTmaGlto9dTIrYuk0hnJc3G6pKufAKepHnBq6B6Q==", "requires": { - "browserslist": "^4.21.0", + "browserslist": "^4.21.1", "semver": "7.0.0" }, "dependencies": { @@ -4765,9 +4676,9 @@ } }, "core-js-pure": { - "version": "3.23.3", - "resolved": "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.23.3.tgz", - "integrity": "sha512-XpoouuqIj4P+GWtdyV8ZO3/u4KftkeDVMfvp+308eGMhCrA3lVDSmAxO0c6GGOcmgVlaKDrgWVMo49h2ab/TDA==" + "version": "3.23.4", + "resolved": "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.23.4.tgz", + "integrity": "sha512-lizxkcgj3XDmi7TUBFe+bQ1vNpD5E4t76BrBWI3HdUxdw/Mq1VF4CkiHzIKyieECKtcODK2asJttoofEeUKICQ==" }, "core-util-is": { "version": "1.0.3", @@ -4804,9 +4715,9 @@ } }, "create-gatsby": { - "version": "2.18.0", - "resolved": "https://registry.npmjs.org/create-gatsby/-/create-gatsby-2.18.0.tgz", - "integrity": "sha512-74yn3+wlFKwg3DUVdFdBnfqc6gUVpYjqr/1XtQ0Rb57i0ygvER8Xgp4rY5Mm+8rl7JwBma1NONeM20cdMQjT2w==", + "version": "2.18.1", + "resolved": "https://registry.npmjs.org/create-gatsby/-/create-gatsby-2.18.1.tgz", + "integrity": "sha512-1AZioXKi4COhESSHfsb/6tpkBvyuuXHwAmMAGrcUQpbynsQxYdqonnRqnFhp80bA2cIKxgjtHzzLhyRouDonbQ==", "requires": { "@babel/runtime": "^7.15.4" } @@ -5358,9 +5269,9 @@ "integrity": "sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==" }, "duplexer3": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/duplexer3/-/duplexer3-0.1.4.tgz", - "integrity": "sha512-CEj8FwwNA4cVH2uFCoHUrmojhYh1vmCdOaneKJXwkeY1i9jnlslVo9dx+hQ5Hl9GnH/Bwy/IjxAyOePyPKYnzA==" + "version": "0.1.5", + "resolved": "https://registry.npmjs.org/duplexer3/-/duplexer3-0.1.5.tgz", + "integrity": "sha512-1A8za6ws41LQgv9HrE/66jyC5yuSjQ3L/KOpFtoBilsAK2iA2wuS5rTt1OCzIvtS2V7nVmedsUU+DGRcjBmOYA==" }, "ee-first": { "version": "1.1.1", @@ -5368,9 +5279,9 @@ "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==" }, "electron-to-chromium": { - "version": "1.4.179", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.179.tgz", - "integrity": "sha512-1XeTb/U/8Xgh2YgPOqhakLYsvCcU4U7jUjTMbEnhIJoIWd/Qt3yC8y0cbG+fHzn4zUNF99Ey1xiPf20bwgLO3Q==" + "version": "1.4.186", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.186.tgz", + "integrity": "sha512-YoVeFrGd/7ROjz4R9uPoND1K/hSRC/xADy9639ZmIZeJSaBnKdYx3I6LMPsY7CXLpK7JFgKQVzeZ/dk2br6Eaw==" }, "emoji-regex": { "version": "8.0.0", @@ -6716,9 +6627,9 @@ "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==" }, "gatsby": { - "version": "4.18.0", - "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-4.18.0.tgz", - "integrity": "sha512-EyiwYUsbSKUKsdjm8nnLw5AGJwOJ9NAWcrFg1V/QU4CUnk/M8EiP0TxiGUmK1/K7g82XGxUjuAPYJKJk85yxHA==", + "version": "4.18.1", + "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-4.18.1.tgz", + "integrity": "sha512-frMFAWOmMl/CtqBZ3aZXlysicQQa8C+yfMdjnjx81f7E5xoL20klk1j4UYj1kUnGgBMSuVehU8M+bE0kT02zoQ==", "requires": { "@babel/code-frame": "^7.14.0", "@babel/core": "^7.15.5", @@ -6754,8 +6665,8 @@ "babel-plugin-add-module-exports": "^1.0.4", "babel-plugin-dynamic-import-node": "^2.3.3", "babel-plugin-lodash": "^3.3.4", - "babel-plugin-remove-graphql-queries": "^4.18.0", - "babel-preset-gatsby": "^2.18.0", + "babel-plugin-remove-graphql-queries": "^4.18.1", + "babel-preset-gatsby": "^2.18.1", "better-opn": "^2.1.1", "bluebird": "^3.7.2", "body-parser": "^1.19.0", @@ -6798,20 +6709,20 @@ "find-cache-dir": "^3.3.2", "fs-exists-cached": "1.0.0", "fs-extra": "^10.1.0", - "gatsby-cli": "^4.18.0", - "gatsby-core-utils": "^3.18.0", + "gatsby-cli": "^4.18.1", + "gatsby-core-utils": "^3.18.1", "gatsby-graphiql-explorer": "^2.18.0", "gatsby-legacy-polyfills": "^2.18.0", - "gatsby-link": "^4.18.0", - "gatsby-page-utils": "^2.18.0", - "gatsby-parcel-config": "0.9.0", - "gatsby-plugin-page-creator": "^4.18.0", - "gatsby-plugin-typescript": "^4.18.0", - "gatsby-plugin-utils": "^3.12.0", + "gatsby-link": "^4.18.1", + "gatsby-page-utils": "^2.18.1", + "gatsby-parcel-config": "^0.9.1", + "gatsby-plugin-page-creator": "^4.18.1", + "gatsby-plugin-typescript": "^4.18.1", + "gatsby-plugin-utils": "^3.12.1", "gatsby-react-router-scroll": "^5.18.0", "gatsby-script": "^1.3.0", "gatsby-sharp": "^0.12.0", - "gatsby-telemetry": "^3.18.0", + "gatsby-telemetry": "^3.18.1", "gatsby-worker": "^1.18.0", "glob": "^7.2.3", "globby": "^11.1.0", @@ -6827,7 +6738,7 @@ "joi": "^17.4.2", "json-loader": "^0.5.7", "latest-version": "5.1.0", - "lmdb": "2.5.2", + "lmdb": "2.5.3", "lodash": "^4.17.21", "md5-file": "^5.0.0", "meant": "^1.0.3", @@ -6885,9 +6796,9 @@ }, "dependencies": { "gatsby-cli": { - "version": "4.18.0", - "resolved": "https://registry.npmjs.org/gatsby-cli/-/gatsby-cli-4.18.0.tgz", - "integrity": "sha512-H4V1XvXP3EMwUBDbAlpu3jbjlCetUmHY6VB1YsH2kkIdlMrOgjUgNDFpqjgbk7k7z61du2tCgl1lyW+5he+SnA==", + "version": "4.18.1", + "resolved": "https://registry.npmjs.org/gatsby-cli/-/gatsby-cli-4.18.1.tgz", + "integrity": "sha512-ceYqm6i39rHY343zUCflwXnGtd25QGccvToTWL8W42/EGToDW8bubLfeBSRCfjXm946yf1gkS/1UAsAgAphYDA==", "requires": { "@babel/code-frame": "^7.14.0", "@babel/core": "^7.15.5", @@ -6906,13 +6817,13 @@ "common-tags": "^1.8.2", "configstore": "^5.0.1", "convert-hrtime": "^3.0.0", - "create-gatsby": "^2.18.0", + "create-gatsby": "^2.18.1", "envinfo": "^7.8.1", "execa": "^5.1.1", "fs-exists-cached": "^1.0.0", "fs-extra": "^10.1.0", - "gatsby-core-utils": "^3.18.0", - "gatsby-telemetry": "^3.18.0", + "gatsby-core-utils": "^3.18.1", + "gatsby-telemetry": "^3.18.1", "hosted-git-info": "^3.0.8", "is-valid-path": "^0.1.1", "joi": "^17.4.2", @@ -6938,9 +6849,9 @@ } }, "gatsby-core-utils": { - "version": "3.18.0", - "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.18.0.tgz", - "integrity": "sha512-mCoNgH4MilosLhEroklgVffwie9lyxgmvNwe/oIyzXr6NcZ2uxSp8G1KrgxdG2srt2hCNlZLlzS25ltLTeHTjA==", + "version": "3.18.1", + "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.18.1.tgz", + "integrity": "sha512-sJTxRqizLxYy/tSFk0ydfqEZ3ek1So9HDVUa39F6Oi8XuPCBTFzaAooUvowKGneI5YUbdk5y4VO4ybwVUynntw==", "requires": { "@babel/runtime": "^7.15.4", "ci-info": "2.0.0", @@ -6950,7 +6861,7 @@ "fs-extra": "^10.1.0", "got": "^11.8.5", "import-from": "^4.0.0", - "lmdb": "2.5.2", + "lmdb": "2.5.3", "lock": "^1.1.0", "node-object-hash": "^2.3.10", "proper-lockfile": "^4.1.2", @@ -6993,37 +6904,37 @@ } }, "gatsby-link": { - "version": "4.18.0", - "resolved": "https://registry.npmjs.org/gatsby-link/-/gatsby-link-4.18.0.tgz", - "integrity": "sha512-nE+Z/iE55Id84YqsQOT1bfPJ/AsupY/4s8i6NllQ8no/PRgDGMpkTG6ANqyt2CHs/bywxch2rv8Ho7Gwsuuueg==", + "version": "4.18.1", + "resolved": "https://registry.npmjs.org/gatsby-link/-/gatsby-link-4.18.1.tgz", + "integrity": "sha512-gLFH2iU4WugHU5k+SLu4F0Ar04kDT5KhkyXly99ZVtiIvHpA5DqcuGNIUjIE/lizSCsfa553wGv7dadfghGzrQ==", "requires": { "@babel/runtime": "^7.15.4", "@types/reach__router": "^1.3.10", - "gatsby-page-utils": "^2.18.0", + "gatsby-page-utils": "^2.18.1", "prop-types": "^15.8.1" } }, "gatsby-page-utils": { - "version": "2.18.0", - "resolved": "https://registry.npmjs.org/gatsby-page-utils/-/gatsby-page-utils-2.18.0.tgz", - "integrity": "sha512-qTwlqscKxkBlMd+Mn8xj6sh7L0LbfLGYOPCYozJnukXv8d/6Jyk1nfaP6I82hwj/iyhaBQtk7g8g4XyBJJaESw==", + "version": "2.18.1", + "resolved": "https://registry.npmjs.org/gatsby-page-utils/-/gatsby-page-utils-2.18.1.tgz", + "integrity": "sha512-4EM0LNOQgnCndHDQSI/ZKRFWYWG9dtTPuGbBaGlmPquhj3zwjOscws1vfj7g+u3PowKjZQ2Rf92RZd8xt8XLTQ==", "requires": { "@babel/runtime": "^7.15.4", "bluebird": "^3.7.2", "chokidar": "^3.5.3", "fs-exists-cached": "^1.0.0", - "gatsby-core-utils": "^3.18.0", + "gatsby-core-utils": "^3.18.1", "glob": "^7.2.3", "lodash": "^4.17.21", "micromatch": "^4.0.5" } }, "gatsby-parcel-config": { - "version": "0.9.0", - "resolved": "https://registry.npmjs.org/gatsby-parcel-config/-/gatsby-parcel-config-0.9.0.tgz", - "integrity": "sha512-ccGw/L8ylhDgE/4tr52B6tb2jreApOMoYPW75Z8aM2ULRz505fL5mrnkG1fdQDBZSCHx/0j0x2TZyCLrt0Bvlw==", + "version": "0.9.1", + "resolved": "https://registry.npmjs.org/gatsby-parcel-config/-/gatsby-parcel-config-0.9.1.tgz", + "integrity": "sha512-ZtVntsQYs0xhy1hvWUMeSLc4a+DvxtTf+NUrPF4rvBjOW/LPMx2eYDzPddKvqWmiUaT1+Ki9S9bwCuOp5muawg==", "requires": { - "@gatsbyjs/parcel-namer-relative-to-cwd": "1.3.0", + "@gatsbyjs/parcel-namer-relative-to-cwd": "^1.3.1", "@parcel/bundler-default": "2.6.0", "@parcel/compressor-raw": "2.6.0", "@parcel/namer-default": "2.6.0", @@ -7043,27 +6954,27 @@ } }, "gatsby-plugin-page-creator": { - "version": "4.18.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-page-creator/-/gatsby-plugin-page-creator-4.18.0.tgz", - "integrity": "sha512-6bY4vJndDw0nBcOuQdX41Wvbctw0y9+a7IavCFJKFeNs+Zo0XH2FX0IAww0slDnSJU6AukJ9qfjHqKJkADAZpQ==", + "version": "4.18.1", + "resolved": "https://registry.npmjs.org/gatsby-plugin-page-creator/-/gatsby-plugin-page-creator-4.18.1.tgz", + "integrity": "sha512-XPAglahQ1fDnSdSNJmtAGwVqB7yZDGPOQQBQX7LD74XwYP6uriRo4LyeI+gEXRqW4d63ZL3VMvgdisde9M95LQ==", "requires": { "@babel/runtime": "^7.15.4", "@babel/traverse": "^7.15.4", "@sindresorhus/slugify": "^1.1.2", "chokidar": "^3.5.3", "fs-exists-cached": "^1.0.0", - "gatsby-core-utils": "^3.18.0", - "gatsby-page-utils": "^2.18.0", - "gatsby-plugin-utils": "^3.12.0", - "gatsby-telemetry": "^3.18.0", + "gatsby-core-utils": "^3.18.1", + "gatsby-page-utils": "^2.18.1", + "gatsby-plugin-utils": "^3.12.1", + "gatsby-telemetry": "^3.18.1", "globby": "^11.1.0", "lodash": "^4.17.21" } }, "gatsby-plugin-typescript": { - "version": "4.18.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-typescript/-/gatsby-plugin-typescript-4.18.0.tgz", - "integrity": "sha512-SuNBrp57SnovOyhCz0zPkz7begV4UR2XdXUrFsh4N0jWOI5yFNVgENpKlbI/O7JnvgyV5KC/pkobNh3we+0mcQ==", + "version": "4.18.1", + "resolved": "https://registry.npmjs.org/gatsby-plugin-typescript/-/gatsby-plugin-typescript-4.18.1.tgz", + "integrity": "sha512-YUZcqL2WWiL2ngKe4A5FpTjCij2pLxiim+QaujeKfMjeWfHJ13uQ74HlxQXNpGAy4vMRBiU4CJH71RXgS1aoaA==", "requires": { "@babel/core": "^7.15.5", "@babel/plugin-proposal-nullish-coalescing-operator": "^7.14.5", @@ -7071,18 +6982,18 @@ "@babel/plugin-proposal-optional-chaining": "^7.14.5", "@babel/preset-typescript": "^7.15.0", "@babel/runtime": "^7.15.4", - "babel-plugin-remove-graphql-queries": "^4.18.0" + "babel-plugin-remove-graphql-queries": "^4.18.1" } }, "gatsby-plugin-utils": { - "version": "3.12.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-utils/-/gatsby-plugin-utils-3.12.0.tgz", - "integrity": "sha512-vdz3qwaCOkvgzAxMkZlgpmpWf555jISwek5lyWYhGyJJvXYV8KQ2cZ4CoOfFKAYVeZVSucrHcdWyY3fLLpQvAA==", + "version": "3.12.1", + "resolved": "https://registry.npmjs.org/gatsby-plugin-utils/-/gatsby-plugin-utils-3.12.1.tgz", + "integrity": "sha512-Rx7/MFtiJ+pyvPLqCPj5beyMN6qOx3EYMrOqmvrWJaM32nxMfHZqUqxGruufyFNVe6edfRuNuXcKaPXlGlyexA==", "requires": { "@babel/runtime": "^7.15.4", "@gatsbyjs/potrace": "^2.2.0", "fs-extra": "^10.1.0", - "gatsby-core-utils": "^3.18.0", + "gatsby-core-utils": "^3.18.1", "gatsby-sharp": "^0.12.0", "graphql-compose": "^9.0.7", "import-from": "^4.0.0", @@ -7123,9 +7034,9 @@ } }, "gatsby-telemetry": { - "version": "3.18.0", - "resolved": "https://registry.npmjs.org/gatsby-telemetry/-/gatsby-telemetry-3.18.0.tgz", - "integrity": "sha512-i1JvNqGOyLDPGEn1QN29YGpe2ripg2LZBAOhXmk6lAhRL5fTVo6WkEA2yW7XESnXIOJBFymgVbUlLjXoqeZ5Xg==", + "version": "3.18.1", + "resolved": "https://registry.npmjs.org/gatsby-telemetry/-/gatsby-telemetry-3.18.1.tgz", + "integrity": "sha512-EjjsUv15BZGsmnPrOINRT/s7d18DTKokpp2NDZLm8uOs3MwVoLtUZ/BS7h2NTmgK+WN93q3bNYRkZgKgV9QC1A==", "requires": { "@babel/code-frame": "^7.14.0", "@babel/runtime": "^7.15.4", @@ -7135,7 +7046,7 @@ "boxen": "^4.2.0", "configstore": "^5.0.1", "fs-extra": "^10.1.0", - "gatsby-core-utils": "^3.18.0", + "gatsby-core-utils": "^3.18.1", "git-up": "^4.0.5", "is-docker": "^2.2.1", "lodash": "^4.17.21", @@ -8335,9 +8246,9 @@ } }, "jsx-ast-utils": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.3.1.tgz", - "integrity": "sha512-pxrjmNpeRw5wwVeWyEAk7QJu2GnBO3uzPFmHCKJJFPKK2Cy0cWL23krGtLdnMmbIi6/FjlrQpPyfQI19ByPOhQ==", + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.3.2.tgz", + "integrity": "sha512-4ZCADZHRkno244xlNnn4AOG6sRQ7iBZ5BbgZ4vW4y5IZw7cVUD1PPeblm1xx/nfmMxPdt/LHsXZW8z/j58+l9Q==", "requires": { "array-includes": "^3.1.5", "object.assign": "^4.1.2" @@ -8398,9 +8309,9 @@ } }, "lilconfig": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-2.0.5.tgz", - "integrity": "sha512-xaYmXZtTHPAw5m+xLN8ab9C+3a8YmV3asNSPOATITbtwrfbwaLJj8h66H1WMIpALCkqsIzK3h7oQ+PdX+LQ9Eg==" + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-2.0.6.tgz", + "integrity": "sha512-9JROoBW7pobfsx+Sq2JsASvCo6Pfo6WWoUW79HuB1BCoBXD4PLWJPqDF6fNj67pqBYTbAHkE57M1kS/+L1neOg==" }, "lines-and-columns": { "version": "1.2.4", @@ -8408,16 +8319,16 @@ "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==" }, "lmdb": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/lmdb/-/lmdb-2.5.2.tgz", - "integrity": "sha512-V5V5Xa2Hp9i2XsbDALkBTeHXnBXh/lEmk9p22zdr7jtuOIY9TGhjK6vAvTpOOx9IKU4hJkRWZxn/HsvR1ELLtA==", - "requires": { - "@lmdb/lmdb-darwin-arm64": "2.5.2", - "@lmdb/lmdb-darwin-x64": "2.5.2", - "@lmdb/lmdb-linux-arm": "2.5.2", - "@lmdb/lmdb-linux-arm64": "2.5.2", - "@lmdb/lmdb-linux-x64": "2.5.2", - "@lmdb/lmdb-win32-x64": "2.5.2", + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/lmdb/-/lmdb-2.5.3.tgz", + "integrity": "sha512-iBA0cb13CobBSoGJLfZgnrykLlfJipDAnvtf+YwIqqzBEsTeQYsXrHaSBkaHd5wCWeabwrNvhjZoFMUrlo+eLw==", + "requires": { + "@lmdb/lmdb-darwin-arm64": "2.5.3", + "@lmdb/lmdb-darwin-x64": "2.5.3", + "@lmdb/lmdb-linux-arm": "2.5.3", + "@lmdb/lmdb-linux-arm64": "2.5.3", + "@lmdb/lmdb-linux-x64": "2.5.3", + "@lmdb/lmdb-win32-x64": "2.5.3", "msgpackr": "^1.5.4", "node-addon-api": "^4.3.0", "node-gyp-build-optional-packages": "5.0.3", @@ -8883,9 +8794,9 @@ "integrity": "sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==" }, "moment": { - "version": "2.29.3", - "resolved": "https://registry.npmjs.org/moment/-/moment-2.29.3.tgz", - "integrity": "sha512-c6YRvhEo//6T2Jz/vVtYzqBzwvPT95JBQ+smCytzf7c50oMZRsR/a4w88aD34I+/QVSfnoAnSBFPJHItlOMJVw==" + "version": "2.29.4", + "resolved": "https://registry.npmjs.org/moment/-/moment-2.29.4.tgz", + "integrity": "sha512-5LC9SOxjSc2HF6vO2CyuTDNivEdoz2IvyJJGj6X8DJ0eFyfszE0QiEd+iXmBvUP3WHxSjFH/vIsA0EN00cgr8w==" }, "ms": { "version": "2.1.2", @@ -9042,9 +8953,9 @@ "integrity": "sha512-jY5dPJzw6NHd/KPSfPKJ+IHoFS81/tJ43r34ZeNMXGzCOM8jwQDCD12HYayKIB6MuznrnqIYy2e891NA2g0ibA==" }, "node-releases": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.5.tgz", - "integrity": "sha512-U9h1NLROZTq9uE1SNffn6WuPDg8icmi3ns4rEl/oTfIle4iLjTliCzgTsbaIFMq/Xn078/lfY/BL0GWZ+psK4Q==" + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.6.tgz", + "integrity": "sha512-PiVXnNuFm5+iYkLBNeq5211hvO38y63T0i2KKh2KnUs3RpzJ+JtODFjkD8yjLwnDkTYF1eKXheUwdssR+NRZdg==" }, "normalize-path": { "version": "3.0.0", @@ -11681,9 +11592,9 @@ } }, "tslib": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.1.tgz", - "integrity": "sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw==" + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz", + "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==" }, "tsutils": { "version": "3.21.0", diff --git a/starters/gatsby-starter-minimal-ts/package.json b/starters/gatsby-starter-minimal-ts/package.json index 542174fdb1738..5122f3f2cc224 100644 --- a/starters/gatsby-starter-minimal-ts/package.json +++ b/starters/gatsby-starter-minimal-ts/package.json @@ -17,7 +17,7 @@ }, "license": "0BSD", "dependencies": { - "gatsby": "^4.18.0", + "gatsby": "^4.18.1", "react": "^18.1.0", "react-dom": "^18.1.0" }, diff --git a/starters/gatsby-starter-minimal/package-lock.json b/starters/gatsby-starter-minimal/package-lock.json index 5b2330aeac71a..244499ddf8300 100644 --- a/starters/gatsby-starter-minimal/package-lock.json +++ b/starters/gatsby-starter-minimal/package-lock.json @@ -61,9 +61,9 @@ } }, "@babel/compat-data": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.18.6.tgz", - "integrity": "sha512-tzulrgDT0QD6U7BJ4TKVk2SDDg7wlP39P9yAx1RfLy7vP/7rsDRlWVfbWxElslu56+r7QOhB2NSDsabYYruoZQ==" + "version": "7.18.8", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.18.8.tgz", + "integrity": "sha512-HSmX4WZPPK3FUxYp7g2T6EyO8j96HlZJlxmKPSh6KAcqwyDrfx7hKjXpAW/0FhFfTJsR0Yt4lAjLI2coMptIHQ==" }, "@babel/core": { "version": "7.18.6", @@ -276,9 +276,9 @@ } }, "@babel/helper-module-transforms": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.18.6.tgz", - "integrity": "sha512-L//phhB4al5uucwzlimruukHB3jRd5JGClwRMD/ROrVjXfLqovYnvQrK/JK36WYyVwGGO7OD3kMyVTjx+WVPhw==", + "version": "7.18.8", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.18.8.tgz", + "integrity": "sha512-che3jvZwIcZxrwh63VfnFTUzcAM9v/lznYkkRxIBGMPt1SudOKHAEec0SIRCfiuIzTcF7VGj/CaTT6gY4eWxvA==", "requires": { "@babel/helper-environment-visitor": "^7.18.6", "@babel/helper-module-imports": "^7.18.6", @@ -286,8 +286,8 @@ "@babel/helper-split-export-declaration": "^7.18.6", "@babel/helper-validator-identifier": "^7.18.6", "@babel/template": "^7.18.6", - "@babel/traverse": "^7.18.6", - "@babel/types": "^7.18.6" + "@babel/traverse": "^7.18.8", + "@babel/types": "^7.18.8" } }, "@babel/helper-optimise-call-expression": { @@ -404,9 +404,9 @@ } }, "@babel/parser": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.18.6.tgz", - "integrity": "sha512-uQVSa9jJUe/G/304lXspfWVpKpK4euFLgGiMQFOCpM/bgcAdeoHwi/OQz23O9GK2osz26ZiXRRV9aV+Yl1O8tw==" + "version": "7.18.8", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.18.8.tgz", + "integrity": "sha512-RSKRfYX20dyH+elbJK2uqAkVyucL+xXzhqlMD5/ZXx+dAAwpyB7HsvnHe/ZUGOF+xLr5Wx9/JoXVTj6BQE2/oA==" }, "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": { "version": "7.18.6", @@ -749,9 +749,9 @@ } }, "@babel/plugin-transform-classes": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.18.6.tgz", - "integrity": "sha512-XTg8XW/mKpzAF3actL554Jl/dOYoJtv3l8fxaEczpgz84IeeVf+T1u2CSvPHuZbt0w3JkIx4rdn/MRQI7mo0HQ==", + "version": "7.18.8", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.18.8.tgz", + "integrity": "sha512-RySDoXdF6hgHSHuAW4aLGyVQdmvEX/iJtjVre52k0pxRq4hzqze+rAVP++NmNv596brBpYmaiKgTZby7ziBnVg==", "requires": { "@babel/helper-annotate-as-pure": "^7.18.6", "@babel/helper-environment-visitor": "^7.18.6", @@ -815,9 +815,9 @@ } }, "@babel/plugin-transform-for-of": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.18.6.tgz", - "integrity": "sha512-WAjoMf4wIiSsy88KmG7tgj2nFdEK7E46tArVtcgED7Bkj6Fg/tG5SbvNIOKxbFS2VFgNh6+iaPswBeQZm4ox8w==", + "version": "7.18.8", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.18.8.tgz", + "integrity": "sha512-yEfTRnjuskWYo0k1mHUqrVWaZwrdq8AYbfrpqULOJOaucGSp4mNMVps+YtA8byoevxS/urwU75vyhQIxcCgiBQ==", "requires": { "@babel/helper-plugin-utils": "^7.18.6" } @@ -917,9 +917,9 @@ } }, "@babel/plugin-transform-parameters": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.18.6.tgz", - "integrity": "sha512-FjdqgMv37yVl/gwvzkcB+wfjRI8HQmc5EgOG9iGNvUY1ok+TjsoaMP7IqCDZBhkFcM5f3OPVMs6Dmp03C5k4/A==", + "version": "7.18.8", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.18.8.tgz", + "integrity": "sha512-ivfbE3X2Ss+Fj8nnXvKJS6sjRG4gzwPMsP+taZC+ZzEGjAYlvENixmt1sZ5Ca6tWls+BlKSGKPJ6OOXvXCbkFg==", "requires": { "@babel/helper-plugin-utils": "^7.18.6" } @@ -1048,9 +1048,9 @@ } }, "@babel/plugin-transform-typescript": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.18.6.tgz", - "integrity": "sha512-ijHNhzIrLj5lQCnI6aaNVRtGVuUZhOXFLRVFs7lLrkXTHip4FKty5oAuQdk4tywG0/WjXmjTfQCWmuzrvFer1w==", + "version": "7.18.8", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.18.8.tgz", + "integrity": "sha512-p2xM8HI83UObjsZGofMV/EdYjamsDm6MoN3hXPYIT0+gxIoopE+B7rPYKAxfrz9K9PK7JafTTjqYC6qipLExYA==", "requires": { "@babel/helper-create-class-features-plugin": "^7.18.6", "@babel/helper-plugin-utils": "^7.18.6", @@ -1226,18 +1226,18 @@ } }, "@babel/traverse": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.18.6.tgz", - "integrity": "sha512-zS/OKyqmD7lslOtFqbscH6gMLFYOfG1YPqCKfAW5KrTeolKqvB8UelR49Fpr6y93kYkW2Ik00mT1LOGiAGvizw==", + "version": "7.18.8", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.18.8.tgz", + "integrity": "sha512-UNg/AcSySJYR/+mIcJQDCv00T+AqRO7j/ZEJLzpaYtgM48rMg5MnkJgyNqkzo88+p4tfRvZJCEiwwfG6h4jkRg==", "requires": { "@babel/code-frame": "^7.18.6", - "@babel/generator": "^7.18.6", + "@babel/generator": "^7.18.7", "@babel/helper-environment-visitor": "^7.18.6", "@babel/helper-function-name": "^7.18.6", "@babel/helper-hoist-variables": "^7.18.6", "@babel/helper-split-export-declaration": "^7.18.6", - "@babel/parser": "^7.18.6", - "@babel/types": "^7.18.6", + "@babel/parser": "^7.18.8", + "@babel/types": "^7.18.8", "debug": "^4.1.0", "globals": "^11.1.0" }, @@ -1253,9 +1253,9 @@ } }, "@babel/types": { - "version": "7.18.7", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.7.tgz", - "integrity": "sha512-QG3yxTcTIBoAcQmkCs+wAPYZhu7Dk9rXKacINfNbdJDNERTbLQbHGyVG8q/YGMPeCJRIhSY0+fTc5+xuh6WPSQ==", + "version": "7.18.8", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.8.tgz", + "integrity": "sha512-qwpdsmraq0aJ3osLJRApsc2ouSJCdnMeZwB0DhbtHAtRpZNZCdlbRnHIgcRKzdE1g0iOGg644fzjOBcdOz9cPw==", "requires": { "@babel/helper-validator-identifier": "^7.18.6", "to-fast-properties": "^2.0.0" @@ -1317,13 +1317,13 @@ } }, "@gatsbyjs/parcel-namer-relative-to-cwd": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/@gatsbyjs/parcel-namer-relative-to-cwd/-/parcel-namer-relative-to-cwd-1.3.0.tgz", - "integrity": "sha512-nd1lQn7ezg51ekqZm8iZjND8akB7bsGkGe7GdIPdTwbhale2dHLqd74qg+bBrEjv5f5aFZhpJeY9XpeU4emWZQ==", + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/@gatsbyjs/parcel-namer-relative-to-cwd/-/parcel-namer-relative-to-cwd-1.3.1.tgz", + "integrity": "sha512-wN4iU1CWumvhcuzMBKdDikZ5xgo81Ias09bKyjE36DgNxTzAhT2fXZIBAAEUlv/GBQqFe6Eas83gGGtXf31hiw==", "requires": { "@babel/runtime": "^7.18.0", "@parcel/plugin": "2.6.0", - "gatsby-core-utils": "^3.18.0" + "gatsby-core-utils": "^3.18.1" } }, "@gatsbyjs/potrace": { @@ -1355,108 +1355,87 @@ } }, "@graphql-codegen/add": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/@graphql-codegen/add/-/add-3.1.1.tgz", - "integrity": "sha512-XkVwcqosa0CVBlL1HaQT0gp+EUfhuQE3LzrEpzMQLwchxaj/NPVYtOJL6MUHaYDsHzLqxWrufjfbeB3y2NQgRw==", + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/@graphql-codegen/add/-/add-3.2.0.tgz", + "integrity": "sha512-8hyr5XvTDGnpiT4nH2yH8PP4SWtUEIUdkFaZbkpkFkU0Ud9dplvSviOCdxdArffZ1FHy0XYLTMa2it+UJOtszg==", "requires": { - "@graphql-codegen/plugin-helpers": "^2.3.2", - "tslib": "~2.3.0" + "@graphql-codegen/plugin-helpers": "^2.5.0", + "tslib": "~2.4.0" } }, "@graphql-codegen/core": { - "version": "2.5.1", - "resolved": "https://registry.npmjs.org/@graphql-codegen/core/-/core-2.5.1.tgz", - "integrity": "sha512-alctBVl2hMnBXDLwkgmnFPrZVIiBDsWJSmxJcM4GKg1PB23+xuov35GE47YAyAhQItE1B1fbYnbb1PtGiDZ4LA==", + "version": "2.6.0", + "resolved": "https://registry.npmjs.org/@graphql-codegen/core/-/core-2.6.0.tgz", + "integrity": "sha512-7uZGnLCMR/pnh/5CsyI4y5bBvRndNHFs+AWpMUUjDBcjMRrMaavu37VyyYDz4/ob0BnQJt8RTBN9eArS9PLYAQ==", "requires": { - "@graphql-codegen/plugin-helpers": "^2.4.1", - "@graphql-tools/schema": "^8.1.2", - "@graphql-tools/utils": "^8.1.1", - "tslib": "~2.3.0" + "@graphql-codegen/plugin-helpers": "^2.5.0", + "@graphql-tools/schema": "^8.5.0", + "@graphql-tools/utils": "^8.8.0", + "tslib": "~2.4.0" } }, "@graphql-codegen/plugin-helpers": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/@graphql-codegen/plugin-helpers/-/plugin-helpers-2.4.2.tgz", - "integrity": "sha512-LJNvwAPv/sKtI3RnRDm+nPD+JeOfOuSOS4FFIpQCMUCyMnFcchV/CPTTv7tT12fLUpEg6XjuFfDBvOwndti30Q==", + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/@graphql-codegen/plugin-helpers/-/plugin-helpers-2.5.0.tgz", + "integrity": "sha512-0jM5/14EdM4yow5v8OGOnUmRqfA1gaWkh+J5berqQUpcFYfSQXD6+Idnkiju/jjIypEN7UvbPkC7BgryWVxexA==", "requires": { - "@graphql-tools/utils": "^8.5.2", + "@graphql-tools/utils": "^8.8.0", "change-case-all": "1.0.14", "common-tags": "1.8.2", "import-from": "4.0.0", "lodash": "~4.17.0", - "tslib": "~2.3.0" + "tslib": "~2.4.0" } }, "@graphql-codegen/schema-ast": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/@graphql-codegen/schema-ast/-/schema-ast-2.4.1.tgz", - "integrity": "sha512-bIWlKk/ShoVJfghA4Rt1OWnd34/dQmZM/vAe6fu6QKyOh44aAdqPtYQ2dbTyFXoknmu504etKJGEDllYNUJRfg==", + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/@graphql-codegen/schema-ast/-/schema-ast-2.5.0.tgz", + "integrity": "sha512-nlF4Yc7h90nmogG2E11TeFJ3/hCkb4SDMSdbJX68b1mhvVEji/kq3zWYKAQ+lAzjZ7HF94Eylm3MrZAjjpCKIA==", "requires": { - "@graphql-codegen/plugin-helpers": "^2.3.2", - "@graphql-tools/utils": "^8.1.1", - "tslib": "~2.3.0" + "@graphql-codegen/plugin-helpers": "^2.5.0", + "@graphql-tools/utils": "^8.8.0", + "tslib": "~2.4.0" } }, "@graphql-codegen/typescript": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@graphql-codegen/typescript/-/typescript-2.6.0.tgz", - "integrity": "sha512-f36ilg8J+wui0OhmQglIZ+2z4Ybc08Y7r7BlBDqfJ1F5X0zau0SlC7Hp2iCoCA0ucqZYtiUU/0n+/R8m1cTrQQ==", + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/@graphql-codegen/typescript/-/typescript-2.7.1.tgz", + "integrity": "sha512-qF4SBMgBnLcegba2s9+zC3NwgRhU0Kv+eS8kl9G5ldEHx9Bpu2tft+lk6fjqqhExDzJT+MEOU3Ecog3BzL2R1g==", "requires": { - "@graphql-codegen/plugin-helpers": "^2.4.0", - "@graphql-codegen/schema-ast": "^2.4.1", - "@graphql-codegen/visitor-plugin-common": "2.10.0", + "@graphql-codegen/plugin-helpers": "^2.5.0", + "@graphql-codegen/schema-ast": "^2.5.0", + "@graphql-codegen/visitor-plugin-common": "2.11.1", "auto-bind": "~4.0.0", "tslib": "~2.4.0" - }, - "dependencies": { - "tslib": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz", - "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==" - } } }, "@graphql-codegen/typescript-operations": { - "version": "2.4.3", - "resolved": "https://registry.npmjs.org/@graphql-codegen/typescript-operations/-/typescript-operations-2.4.3.tgz", - "integrity": "sha512-MW9cU/zCAmfFAObwW23e+GrW3CoV9OX2gVm/V1565WGZXDQPUc5Y5IjdfGfunV4ApkgFDiHpF1Mz/AS55OErgw==", + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/@graphql-codegen/typescript-operations/-/typescript-operations-2.5.1.tgz", + "integrity": "sha512-lGv+sPDXGcp/vDdIh7SoQjz8BRCZhLats4Hbqnf6gB7UtIasMvGuFDQyrKb3XAkQQYWqx/xtmEo0rBN8syV+Wg==", "requires": { - "@graphql-codegen/plugin-helpers": "^2.4.0", - "@graphql-codegen/typescript": "^2.6.0", - "@graphql-codegen/visitor-plugin-common": "2.10.0", + "@graphql-codegen/plugin-helpers": "^2.5.0", + "@graphql-codegen/typescript": "^2.7.1", + "@graphql-codegen/visitor-plugin-common": "2.11.1", "auto-bind": "~4.0.0", "tslib": "~2.4.0" - }, - "dependencies": { - "tslib": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz", - "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==" - } } }, "@graphql-codegen/visitor-plugin-common": { - "version": "2.10.0", - "resolved": "https://registry.npmjs.org/@graphql-codegen/visitor-plugin-common/-/visitor-plugin-common-2.10.0.tgz", - "integrity": "sha512-nWoxHKUdwOJCWV96Ks1x4EwYCWsZDJXB+2j6EQz5j27DzdxmQInZ86degaDCd3EgbwhMQEMtiZiPGFFDrgBkHA==", - "requires": { - "@graphql-codegen/plugin-helpers": "^2.4.0", - "@graphql-tools/optimize": "^1.0.1", - "@graphql-tools/relay-operation-optimizer": "^6.4.14", - "@graphql-tools/utils": "^8.3.0", + "version": "2.11.1", + "resolved": "https://registry.npmjs.org/@graphql-codegen/visitor-plugin-common/-/visitor-plugin-common-2.11.1.tgz", + "integrity": "sha512-AlrtGWKn2o89SPna75ATEHYAu95MUMucgBqLgcRvK9n/PHhVAbkDrNCH5pL03fE0HLOup3GpjX8DcnFBMU46IA==", + "requires": { + "@graphql-codegen/plugin-helpers": "^2.5.0", + "@graphql-tools/optimize": "^1.3.0", + "@graphql-tools/relay-operation-optimizer": "^6.5.0", + "@graphql-tools/utils": "^8.8.0", "auto-bind": "~4.0.0", "change-case-all": "1.0.14", "dependency-graph": "^0.11.0", "graphql-tag": "^2.11.0", "parse-filepath": "^1.0.2", "tslib": "~2.4.0" - }, - "dependencies": { - "tslib": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz", - "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==" - } } }, "@graphql-tools/batch-execute": { @@ -1502,13 +1481,6 @@ "globby": "^11.0.3", "tslib": "^2.4.0", "unixify": "^1.0.0" - }, - "dependencies": { - "tslib": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz", - "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==" - } } }, "@graphql-tools/delegate": { @@ -1601,13 +1573,6 @@ "@babel/types": "^7.16.8", "@graphql-tools/utils": "8.8.0", "tslib": "^2.4.0" - }, - "dependencies": { - "tslib": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz", - "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==" - } } }, "@graphql-tools/import": { @@ -1618,13 +1583,6 @@ "@graphql-tools/utils": "8.8.0", "resolve-from": "5.0.0", "tslib": "^2.4.0" - }, - "dependencies": { - "tslib": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz", - "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==" - } } }, "@graphql-tools/json-file-loader": { @@ -1678,11 +1636,6 @@ "requires": { "yocto-queue": "^0.1.0" } - }, - "tslib": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz", - "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==" } } }, @@ -1693,13 +1646,6 @@ "requires": { "@graphql-tools/utils": "8.8.0", "tslib": "^2.4.0" - }, - "dependencies": { - "tslib": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz", - "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==" - } } }, "@graphql-tools/optimize": { @@ -1708,13 +1654,6 @@ "integrity": "sha512-30QOWJoMJEt1De7tAFtWJ6VPrP6SLq+tSQrA3x+WMvCW3q2exq5wPDpvAXOakVKu0y8L2E+YkipC0hcQPBQdLg==", "requires": { "tslib": "^2.4.0" - }, - "dependencies": { - "tslib": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz", - "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==" - } } }, "@graphql-tools/relay-operation-optimizer": { @@ -1725,13 +1664,6 @@ "@ardatan/relay-compiler": "12.0.0", "@graphql-tools/utils": "8.8.0", "tslib": "^2.4.0" - }, - "dependencies": { - "tslib": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz", - "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==" - } } }, "@graphql-tools/schema": { @@ -1743,13 +1675,6 @@ "@graphql-tools/utils": "8.8.0", "tslib": "^2.4.0", "value-or-promise": "1.0.11" - }, - "dependencies": { - "tslib": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz", - "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==" - } } }, "@graphql-tools/url-loader": { @@ -1814,13 +1739,6 @@ "integrity": "sha512-KJrtx05uSM/cPYFdTnGAS1doL5bftJLAiFCDMZ8Vkifztz3BFn3gpFiy/o4wDtM8s39G46mxmt2Km/RmeltfGw==", "requires": { "tslib": "^2.4.0" - }, - "dependencies": { - "tslib": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz", - "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==" - } } }, "@graphql-tools/wrap": { @@ -2248,9 +2166,9 @@ } }, "@jridgewell/resolve-uri": { - "version": "3.0.8", - "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.0.8.tgz", - "integrity": "sha512-YK5G9LaddzGbcucK4c8h5tWFmMPBvRZ/uyWmN1/SbBdIvqGUdWGkJ5BAaccgs6XbzVLsqbPJrBSFwKv3kT9i7w==" + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz", + "integrity": "sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==" }, "@jridgewell/set-array": { "version": "1.1.2", @@ -2306,39 +2224,39 @@ } }, "@lmdb/lmdb-darwin-arm64": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-arm64/-/lmdb-darwin-arm64-2.5.2.tgz", - "integrity": "sha512-+F8ioQIUN68B4UFiIBYu0QQvgb9FmlKw2ctQMSBfW2QBrZIxz9vD9jCGqTCPqZBRbPHAS/vG1zSXnKqnS2ch/A==", + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-arm64/-/lmdb-darwin-arm64-2.5.3.tgz", + "integrity": "sha512-RXwGZ/0eCqtCY8FLTM/koR60w+MXyvBUpToXiIyjOcBnC81tAlTUHrRUavCEWPI9zc9VgvpK3+cbumPyR8BSuA==", "optional": true }, "@lmdb/lmdb-darwin-x64": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-x64/-/lmdb-darwin-x64-2.5.2.tgz", - "integrity": "sha512-KvPH56KRLLx4KSfKBx0m1r7GGGUMXm0jrKmNE7plbHlesZMuPJICtn07HYgQhj1LNsK7Yqwuvnqh1QxhJnF1EA==", + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-x64/-/lmdb-darwin-x64-2.5.3.tgz", + "integrity": "sha512-337dNzh5yCdNCTk8kPfoU7jR3otibSlPDGW0vKZT97rKnQMb9tNdto3RtWoGPsQ8hKmlRZpojOJtmwjncq1MoA==", "optional": true }, "@lmdb/lmdb-linux-arm": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm/-/lmdb-linux-arm-2.5.2.tgz", - "integrity": "sha512-5kQAP21hAkfW5Bl+e0P57dV4dGYnkNIpR7f/GAh6QHlgXx+vp/teVj4PGRZaKAvt0GX6++N6hF8NnGElLDuIDw==", + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm/-/lmdb-linux-arm-2.5.3.tgz", + "integrity": "sha512-mU2HFJDGwECkoD9dHQEfeTG5mp8hNS2BCfwoiOpVPMeapjYpQz9Uw3FkUjRZ4dGHWKbin40oWHuL0bk2bCx+Sg==", "optional": true }, "@lmdb/lmdb-linux-arm64": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm64/-/lmdb-linux-arm64-2.5.2.tgz", - "integrity": "sha512-aLl89VHL/wjhievEOlPocoefUyWdvzVrcQ/MHQYZm2JfV1jUsrbr/ZfkPPUFvZBf+VSE+Q0clWs9l29PCX1hTQ==", + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm64/-/lmdb-linux-arm64-2.5.3.tgz", + "integrity": "sha512-VJw60Mdgb4n+L0fO1PqfB0C7TyEQolJAC8qpqvG3JoQwvyOv6LH7Ib/WE3wxEW9nuHmVz9jkK7lk5HfWWgoO1Q==", "optional": true }, "@lmdb/lmdb-linux-x64": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-x64/-/lmdb-linux-x64-2.5.2.tgz", - "integrity": "sha512-xUdUfwDJLGjOUPH3BuPBt0NlIrR7f/QHKgu3GZIXswMMIihAekj2i97oI0iWG5Bok/b+OBjHPfa8IU9velnP/Q==", + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-x64/-/lmdb-linux-x64-2.5.3.tgz", + "integrity": "sha512-qaReO5aV8griBDsBr8uBF/faO3ieGjY1RY4p8JvTL6Mu1ylLrTVvOONqKFlNaCwrmUjWw5jnf7VafxDAeQHTow==", "optional": true }, "@lmdb/lmdb-win32-x64": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-win32-x64/-/lmdb-win32-x64-2.5.2.tgz", - "integrity": "sha512-zrBczSbXKxEyK2ijtbRdICDygRqWSRPpZMN5dD1T8VMEW5RIhIbwFWw2phDRXuBQdVDpSjalCIUMWMV2h3JaZA==", + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-win32-x64/-/lmdb-win32-x64-2.5.3.tgz", + "integrity": "sha512-cK+Elf3RjEzrm3SerAhrFWL5oQAsZSJ/LmjL1joIpTfEP1etJJ9CTRvdaV6XLYAxaEkfdhk/9hOvHLbR9yIhCA==", "optional": true }, "@microsoft/fetch-event-source": { @@ -2940,13 +2858,6 @@ "integrity": "sha512-tb7Iu+oZ+zWJZ3HJqwx8oNwSDIU440hmVMDPhpACWQWnrZHK99Bxs70gT1L2dnr5Hg50ZRWEFkQCAnOVVV0z1Q==", "requires": { "tslib": "^2.4.0" - }, - "dependencies": { - "tslib": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz", - "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==" - } } }, "@szmarczak/http-timer": { @@ -3113,9 +3024,9 @@ } }, "@types/node": { - "version": "18.0.1", - "resolved": "https://registry.npmjs.org/@types/node/-/node-18.0.1.tgz", - "integrity": "sha512-CmR8+Tsy95hhwtZBKJBs0/FFq4XX7sDZHlGGf+0q+BRZfMbOTkzkj0AFAuTyXbObDIoanaBBW0+KEW+m3N16Wg==" + "version": "18.0.3", + "resolved": "https://registry.npmjs.org/@types/node/-/node-18.0.3.tgz", + "integrity": "sha512-HzNRZtp4eepNitP+BD6k2L6DROIDG4Q0fm4x+dwfsr6LGmROENnok75VGw40628xf+iR24WeMFcHuuBDUAzzsQ==" }, "@types/node-fetch": { "version": "2.6.2", @@ -3157,9 +3068,9 @@ } }, "@types/react": { - "version": "18.0.14", - "resolved": "https://registry.npmjs.org/@types/react/-/react-18.0.14.tgz", - "integrity": "sha512-x4gGuASSiWmo0xjDLpm5mPb52syZHJx02VKbqUKdLmKtAwIh63XClGsiTI1K6DO5q7ox4xAsQrU+Gl3+gGXF9Q==", + "version": "18.0.15", + "resolved": "https://registry.npmjs.org/@types/react/-/react-18.0.15.tgz", + "integrity": "sha512-iz3BtLuIYH1uWdsv6wXYdhozhqj20oD4/Hk2DNXIn1kFsmp9x8d9QB6FnPhfkbhd2PgEONt9Q1x/ebkwjfFLow==", "requires": { "@types/prop-types": "*", "@types/scheduler": "*", @@ -3841,12 +3752,12 @@ } }, "babel-plugin-remove-graphql-queries": { - "version": "4.18.0", - "resolved": "https://registry.npmjs.org/babel-plugin-remove-graphql-queries/-/babel-plugin-remove-graphql-queries-4.18.0.tgz", - "integrity": "sha512-6oOm/cTZdk+7yPh4R4ISLKNur3rK5w2zAUCXTOGKYcRYbvKCS22ODafQBrNcu/UdfpXwSz3XZOG5ru72Z5usUw==", + "version": "4.18.1", + "resolved": "https://registry.npmjs.org/babel-plugin-remove-graphql-queries/-/babel-plugin-remove-graphql-queries-4.18.1.tgz", + "integrity": "sha512-2I7qsm3pnyvrS6/Q9YuHK1SpfQLmrgYH/AjpnWpnLHee6SiVb5Te89iphhpBdycpBRVGWh04ram9+z/1rMaRYQ==", "requires": { "@babel/runtime": "^7.15.4", - "gatsby-core-utils": "^3.18.0" + "gatsby-core-utils": "^3.18.1" } }, "babel-plugin-syntax-trailing-function-commas": { @@ -3894,9 +3805,9 @@ } }, "babel-preset-gatsby": { - "version": "2.18.0", - "resolved": "https://registry.npmjs.org/babel-preset-gatsby/-/babel-preset-gatsby-2.18.0.tgz", - "integrity": "sha512-b6BJEl0MlA/nh+IkTJRgvPEgdN09Pu34Szo5dE4QYvQa66++EqfQUK5huqr+FgZJedPPYYbRY2SgKlRXev5QIQ==", + "version": "2.18.1", + "resolved": "https://registry.npmjs.org/babel-preset-gatsby/-/babel-preset-gatsby-2.18.1.tgz", + "integrity": "sha512-oaVV6ULceMjTQKjCA06qvgfLwBNZFJxpacwNZYOJpLygmj+qYiNKDGhJ8vTw/KAIUeDPZAbPMP5P+3wMEPIWYQ==", "requires": { "@babel/plugin-proposal-class-properties": "^7.14.0", "@babel/plugin-proposal-nullish-coalescing-operator": "^7.14.5", @@ -3911,7 +3822,7 @@ "babel-plugin-dynamic-import-node": "^2.3.3", "babel-plugin-macros": "^3.1.0", "babel-plugin-transform-react-remove-prop-types": "^0.4.24", - "gatsby-core-utils": "^3.18.0", + "gatsby-core-utils": "^3.18.1", "gatsby-legacy-polyfills": "^2.18.0" } }, @@ -4250,9 +4161,9 @@ } }, "caniuse-lite": { - "version": "1.0.30001363", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001363.tgz", - "integrity": "sha512-HpQhpzTGGPVMnCjIomjt+jvyUu8vNFo3TaDiZ/RcoTrlOq/5+tC8zHdsbgFB6MxmaY+jCpsH09aD80Bb4Ow3Sg==" + "version": "1.0.30001365", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001365.tgz", + "integrity": "sha512-VDQZ8OtpuIPMBA4YYvZXECtXbddMCUFJk1qu8Mqxfm/SZJNSr1cy4IuLCOL7RJ/YASrvJcYg1Zh+UEUQ5m6z8Q==" }, "capital-case": { "version": "1.0.4", @@ -4735,16 +4646,16 @@ "integrity": "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==" }, "core-js": { - "version": "3.23.3", - "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.23.3.tgz", - "integrity": "sha512-oAKwkj9xcWNBAvGbT//WiCdOMpb9XQG92/Fe3ABFM/R16BsHgePG00mFOgKf7IsCtfj8tA1kHtf/VwErhriz5Q==" + "version": "3.23.4", + "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.23.4.tgz", + "integrity": "sha512-vjsKqRc1RyAJC3Ye2kYqgfdThb3zYnx9CrqoCcjMOENMtQPC7ZViBvlDxwYU/2z2NI/IPuiXw5mT4hWhddqjzQ==" }, "core-js-compat": { - "version": "3.23.3", - "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.23.3.tgz", - "integrity": "sha512-WSzUs2h2vvmKsacLHNTdpyOC9k43AEhcGoFlVgCY4L7aw98oSBKtPL6vD0/TqZjRWRQYdDSLkzZIni4Crbbiqw==", + "version": "3.23.4", + "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.23.4.tgz", + "integrity": "sha512-RkSRPe+JYEoflcsuxJWaiMPhnZoFS51FcIxm53k4KzhISCBTmaGlto9dTIrYuk0hnJc3G6pKufAKepHnBq6B6Q==", "requires": { - "browserslist": "^4.21.0", + "browserslist": "^4.21.1", "semver": "7.0.0" }, "dependencies": { @@ -4756,9 +4667,9 @@ } }, "core-js-pure": { - "version": "3.23.3", - "resolved": "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.23.3.tgz", - "integrity": "sha512-XpoouuqIj4P+GWtdyV8ZO3/u4KftkeDVMfvp+308eGMhCrA3lVDSmAxO0c6GGOcmgVlaKDrgWVMo49h2ab/TDA==" + "version": "3.23.4", + "resolved": "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.23.4.tgz", + "integrity": "sha512-lizxkcgj3XDmi7TUBFe+bQ1vNpD5E4t76BrBWI3HdUxdw/Mq1VF4CkiHzIKyieECKtcODK2asJttoofEeUKICQ==" }, "core-util-is": { "version": "1.0.3", @@ -4795,9 +4706,9 @@ } }, "create-gatsby": { - "version": "2.18.0", - "resolved": "https://registry.npmjs.org/create-gatsby/-/create-gatsby-2.18.0.tgz", - "integrity": "sha512-74yn3+wlFKwg3DUVdFdBnfqc6gUVpYjqr/1XtQ0Rb57i0ygvER8Xgp4rY5Mm+8rl7JwBma1NONeM20cdMQjT2w==", + "version": "2.18.1", + "resolved": "https://registry.npmjs.org/create-gatsby/-/create-gatsby-2.18.1.tgz", + "integrity": "sha512-1AZioXKi4COhESSHfsb/6tpkBvyuuXHwAmMAGrcUQpbynsQxYdqonnRqnFhp80bA2cIKxgjtHzzLhyRouDonbQ==", "requires": { "@babel/runtime": "^7.15.4" } @@ -5349,9 +5260,9 @@ "integrity": "sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==" }, "duplexer3": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/duplexer3/-/duplexer3-0.1.4.tgz", - "integrity": "sha512-CEj8FwwNA4cVH2uFCoHUrmojhYh1vmCdOaneKJXwkeY1i9jnlslVo9dx+hQ5Hl9GnH/Bwy/IjxAyOePyPKYnzA==" + "version": "0.1.5", + "resolved": "https://registry.npmjs.org/duplexer3/-/duplexer3-0.1.5.tgz", + "integrity": "sha512-1A8za6ws41LQgv9HrE/66jyC5yuSjQ3L/KOpFtoBilsAK2iA2wuS5rTt1OCzIvtS2V7nVmedsUU+DGRcjBmOYA==" }, "ee-first": { "version": "1.1.1", @@ -5359,9 +5270,9 @@ "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==" }, "electron-to-chromium": { - "version": "1.4.179", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.179.tgz", - "integrity": "sha512-1XeTb/U/8Xgh2YgPOqhakLYsvCcU4U7jUjTMbEnhIJoIWd/Qt3yC8y0cbG+fHzn4zUNF99Ey1xiPf20bwgLO3Q==" + "version": "1.4.186", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.186.tgz", + "integrity": "sha512-YoVeFrGd/7ROjz4R9uPoND1K/hSRC/xADy9639ZmIZeJSaBnKdYx3I6LMPsY7CXLpK7JFgKQVzeZ/dk2br6Eaw==" }, "emoji-regex": { "version": "8.0.0", @@ -6707,9 +6618,9 @@ "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==" }, "gatsby": { - "version": "4.18.0", - "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-4.18.0.tgz", - "integrity": "sha512-EyiwYUsbSKUKsdjm8nnLw5AGJwOJ9NAWcrFg1V/QU4CUnk/M8EiP0TxiGUmK1/K7g82XGxUjuAPYJKJk85yxHA==", + "version": "4.18.1", + "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-4.18.1.tgz", + "integrity": "sha512-frMFAWOmMl/CtqBZ3aZXlysicQQa8C+yfMdjnjx81f7E5xoL20klk1j4UYj1kUnGgBMSuVehU8M+bE0kT02zoQ==", "requires": { "@babel/code-frame": "^7.14.0", "@babel/core": "^7.15.5", @@ -6745,8 +6656,8 @@ "babel-plugin-add-module-exports": "^1.0.4", "babel-plugin-dynamic-import-node": "^2.3.3", "babel-plugin-lodash": "^3.3.4", - "babel-plugin-remove-graphql-queries": "^4.18.0", - "babel-preset-gatsby": "^2.18.0", + "babel-plugin-remove-graphql-queries": "^4.18.1", + "babel-preset-gatsby": "^2.18.1", "better-opn": "^2.1.1", "bluebird": "^3.7.2", "body-parser": "^1.19.0", @@ -6789,20 +6700,20 @@ "find-cache-dir": "^3.3.2", "fs-exists-cached": "1.0.0", "fs-extra": "^10.1.0", - "gatsby-cli": "^4.18.0", - "gatsby-core-utils": "^3.18.0", + "gatsby-cli": "^4.18.1", + "gatsby-core-utils": "^3.18.1", "gatsby-graphiql-explorer": "^2.18.0", "gatsby-legacy-polyfills": "^2.18.0", - "gatsby-link": "^4.18.0", - "gatsby-page-utils": "^2.18.0", - "gatsby-parcel-config": "0.9.0", - "gatsby-plugin-page-creator": "^4.18.0", - "gatsby-plugin-typescript": "^4.18.0", - "gatsby-plugin-utils": "^3.12.0", + "gatsby-link": "^4.18.1", + "gatsby-page-utils": "^2.18.1", + "gatsby-parcel-config": "^0.9.1", + "gatsby-plugin-page-creator": "^4.18.1", + "gatsby-plugin-typescript": "^4.18.1", + "gatsby-plugin-utils": "^3.12.1", "gatsby-react-router-scroll": "^5.18.0", "gatsby-script": "^1.3.0", "gatsby-sharp": "^0.12.0", - "gatsby-telemetry": "^3.18.0", + "gatsby-telemetry": "^3.18.1", "gatsby-worker": "^1.18.0", "glob": "^7.2.3", "globby": "^11.1.0", @@ -6818,7 +6729,7 @@ "joi": "^17.4.2", "json-loader": "^0.5.7", "latest-version": "5.1.0", - "lmdb": "2.5.2", + "lmdb": "2.5.3", "lodash": "^4.17.21", "md5-file": "^5.0.0", "meant": "^1.0.3", @@ -6876,9 +6787,9 @@ }, "dependencies": { "gatsby-cli": { - "version": "4.18.0", - "resolved": "https://registry.npmjs.org/gatsby-cli/-/gatsby-cli-4.18.0.tgz", - "integrity": "sha512-H4V1XvXP3EMwUBDbAlpu3jbjlCetUmHY6VB1YsH2kkIdlMrOgjUgNDFpqjgbk7k7z61du2tCgl1lyW+5he+SnA==", + "version": "4.18.1", + "resolved": "https://registry.npmjs.org/gatsby-cli/-/gatsby-cli-4.18.1.tgz", + "integrity": "sha512-ceYqm6i39rHY343zUCflwXnGtd25QGccvToTWL8W42/EGToDW8bubLfeBSRCfjXm946yf1gkS/1UAsAgAphYDA==", "requires": { "@babel/code-frame": "^7.14.0", "@babel/core": "^7.15.5", @@ -6897,13 +6808,13 @@ "common-tags": "^1.8.2", "configstore": "^5.0.1", "convert-hrtime": "^3.0.0", - "create-gatsby": "^2.18.0", + "create-gatsby": "^2.18.1", "envinfo": "^7.8.1", "execa": "^5.1.1", "fs-exists-cached": "^1.0.0", "fs-extra": "^10.1.0", - "gatsby-core-utils": "^3.18.0", - "gatsby-telemetry": "^3.18.0", + "gatsby-core-utils": "^3.18.1", + "gatsby-telemetry": "^3.18.1", "hosted-git-info": "^3.0.8", "is-valid-path": "^0.1.1", "joi": "^17.4.2", @@ -6929,9 +6840,9 @@ } }, "gatsby-core-utils": { - "version": "3.18.0", - "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.18.0.tgz", - "integrity": "sha512-mCoNgH4MilosLhEroklgVffwie9lyxgmvNwe/oIyzXr6NcZ2uxSp8G1KrgxdG2srt2hCNlZLlzS25ltLTeHTjA==", + "version": "3.18.1", + "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.18.1.tgz", + "integrity": "sha512-sJTxRqizLxYy/tSFk0ydfqEZ3ek1So9HDVUa39F6Oi8XuPCBTFzaAooUvowKGneI5YUbdk5y4VO4ybwVUynntw==", "requires": { "@babel/runtime": "^7.15.4", "ci-info": "2.0.0", @@ -6941,7 +6852,7 @@ "fs-extra": "^10.1.0", "got": "^11.8.5", "import-from": "^4.0.0", - "lmdb": "2.5.2", + "lmdb": "2.5.3", "lock": "^1.1.0", "node-object-hash": "^2.3.10", "proper-lockfile": "^4.1.2", @@ -6984,37 +6895,37 @@ } }, "gatsby-link": { - "version": "4.18.0", - "resolved": "https://registry.npmjs.org/gatsby-link/-/gatsby-link-4.18.0.tgz", - "integrity": "sha512-nE+Z/iE55Id84YqsQOT1bfPJ/AsupY/4s8i6NllQ8no/PRgDGMpkTG6ANqyt2CHs/bywxch2rv8Ho7Gwsuuueg==", + "version": "4.18.1", + "resolved": "https://registry.npmjs.org/gatsby-link/-/gatsby-link-4.18.1.tgz", + "integrity": "sha512-gLFH2iU4WugHU5k+SLu4F0Ar04kDT5KhkyXly99ZVtiIvHpA5DqcuGNIUjIE/lizSCsfa553wGv7dadfghGzrQ==", "requires": { "@babel/runtime": "^7.15.4", "@types/reach__router": "^1.3.10", - "gatsby-page-utils": "^2.18.0", + "gatsby-page-utils": "^2.18.1", "prop-types": "^15.8.1" } }, "gatsby-page-utils": { - "version": "2.18.0", - "resolved": "https://registry.npmjs.org/gatsby-page-utils/-/gatsby-page-utils-2.18.0.tgz", - "integrity": "sha512-qTwlqscKxkBlMd+Mn8xj6sh7L0LbfLGYOPCYozJnukXv8d/6Jyk1nfaP6I82hwj/iyhaBQtk7g8g4XyBJJaESw==", + "version": "2.18.1", + "resolved": "https://registry.npmjs.org/gatsby-page-utils/-/gatsby-page-utils-2.18.1.tgz", + "integrity": "sha512-4EM0LNOQgnCndHDQSI/ZKRFWYWG9dtTPuGbBaGlmPquhj3zwjOscws1vfj7g+u3PowKjZQ2Rf92RZd8xt8XLTQ==", "requires": { "@babel/runtime": "^7.15.4", "bluebird": "^3.7.2", "chokidar": "^3.5.3", "fs-exists-cached": "^1.0.0", - "gatsby-core-utils": "^3.18.0", + "gatsby-core-utils": "^3.18.1", "glob": "^7.2.3", "lodash": "^4.17.21", "micromatch": "^4.0.5" } }, "gatsby-parcel-config": { - "version": "0.9.0", - "resolved": "https://registry.npmjs.org/gatsby-parcel-config/-/gatsby-parcel-config-0.9.0.tgz", - "integrity": "sha512-ccGw/L8ylhDgE/4tr52B6tb2jreApOMoYPW75Z8aM2ULRz505fL5mrnkG1fdQDBZSCHx/0j0x2TZyCLrt0Bvlw==", + "version": "0.9.1", + "resolved": "https://registry.npmjs.org/gatsby-parcel-config/-/gatsby-parcel-config-0.9.1.tgz", + "integrity": "sha512-ZtVntsQYs0xhy1hvWUMeSLc4a+DvxtTf+NUrPF4rvBjOW/LPMx2eYDzPddKvqWmiUaT1+Ki9S9bwCuOp5muawg==", "requires": { - "@gatsbyjs/parcel-namer-relative-to-cwd": "1.3.0", + "@gatsbyjs/parcel-namer-relative-to-cwd": "^1.3.1", "@parcel/bundler-default": "2.6.0", "@parcel/compressor-raw": "2.6.0", "@parcel/namer-default": "2.6.0", @@ -7034,27 +6945,27 @@ } }, "gatsby-plugin-page-creator": { - "version": "4.18.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-page-creator/-/gatsby-plugin-page-creator-4.18.0.tgz", - "integrity": "sha512-6bY4vJndDw0nBcOuQdX41Wvbctw0y9+a7IavCFJKFeNs+Zo0XH2FX0IAww0slDnSJU6AukJ9qfjHqKJkADAZpQ==", + "version": "4.18.1", + "resolved": "https://registry.npmjs.org/gatsby-plugin-page-creator/-/gatsby-plugin-page-creator-4.18.1.tgz", + "integrity": "sha512-XPAglahQ1fDnSdSNJmtAGwVqB7yZDGPOQQBQX7LD74XwYP6uriRo4LyeI+gEXRqW4d63ZL3VMvgdisde9M95LQ==", "requires": { "@babel/runtime": "^7.15.4", "@babel/traverse": "^7.15.4", "@sindresorhus/slugify": "^1.1.2", "chokidar": "^3.5.3", "fs-exists-cached": "^1.0.0", - "gatsby-core-utils": "^3.18.0", - "gatsby-page-utils": "^2.18.0", - "gatsby-plugin-utils": "^3.12.0", - "gatsby-telemetry": "^3.18.0", + "gatsby-core-utils": "^3.18.1", + "gatsby-page-utils": "^2.18.1", + "gatsby-plugin-utils": "^3.12.1", + "gatsby-telemetry": "^3.18.1", "globby": "^11.1.0", "lodash": "^4.17.21" } }, "gatsby-plugin-typescript": { - "version": "4.18.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-typescript/-/gatsby-plugin-typescript-4.18.0.tgz", - "integrity": "sha512-SuNBrp57SnovOyhCz0zPkz7begV4UR2XdXUrFsh4N0jWOI5yFNVgENpKlbI/O7JnvgyV5KC/pkobNh3we+0mcQ==", + "version": "4.18.1", + "resolved": "https://registry.npmjs.org/gatsby-plugin-typescript/-/gatsby-plugin-typescript-4.18.1.tgz", + "integrity": "sha512-YUZcqL2WWiL2ngKe4A5FpTjCij2pLxiim+QaujeKfMjeWfHJ13uQ74HlxQXNpGAy4vMRBiU4CJH71RXgS1aoaA==", "requires": { "@babel/core": "^7.15.5", "@babel/plugin-proposal-nullish-coalescing-operator": "^7.14.5", @@ -7062,18 +6973,18 @@ "@babel/plugin-proposal-optional-chaining": "^7.14.5", "@babel/preset-typescript": "^7.15.0", "@babel/runtime": "^7.15.4", - "babel-plugin-remove-graphql-queries": "^4.18.0" + "babel-plugin-remove-graphql-queries": "^4.18.1" } }, "gatsby-plugin-utils": { - "version": "3.12.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-utils/-/gatsby-plugin-utils-3.12.0.tgz", - "integrity": "sha512-vdz3qwaCOkvgzAxMkZlgpmpWf555jISwek5lyWYhGyJJvXYV8KQ2cZ4CoOfFKAYVeZVSucrHcdWyY3fLLpQvAA==", + "version": "3.12.1", + "resolved": "https://registry.npmjs.org/gatsby-plugin-utils/-/gatsby-plugin-utils-3.12.1.tgz", + "integrity": "sha512-Rx7/MFtiJ+pyvPLqCPj5beyMN6qOx3EYMrOqmvrWJaM32nxMfHZqUqxGruufyFNVe6edfRuNuXcKaPXlGlyexA==", "requires": { "@babel/runtime": "^7.15.4", "@gatsbyjs/potrace": "^2.2.0", "fs-extra": "^10.1.0", - "gatsby-core-utils": "^3.18.0", + "gatsby-core-utils": "^3.18.1", "gatsby-sharp": "^0.12.0", "graphql-compose": "^9.0.7", "import-from": "^4.0.0", @@ -7114,9 +7025,9 @@ } }, "gatsby-telemetry": { - "version": "3.18.0", - "resolved": "https://registry.npmjs.org/gatsby-telemetry/-/gatsby-telemetry-3.18.0.tgz", - "integrity": "sha512-i1JvNqGOyLDPGEn1QN29YGpe2ripg2LZBAOhXmk6lAhRL5fTVo6WkEA2yW7XESnXIOJBFymgVbUlLjXoqeZ5Xg==", + "version": "3.18.1", + "resolved": "https://registry.npmjs.org/gatsby-telemetry/-/gatsby-telemetry-3.18.1.tgz", + "integrity": "sha512-EjjsUv15BZGsmnPrOINRT/s7d18DTKokpp2NDZLm8uOs3MwVoLtUZ/BS7h2NTmgK+WN93q3bNYRkZgKgV9QC1A==", "requires": { "@babel/code-frame": "^7.14.0", "@babel/runtime": "^7.15.4", @@ -7126,7 +7037,7 @@ "boxen": "^4.2.0", "configstore": "^5.0.1", "fs-extra": "^10.1.0", - "gatsby-core-utils": "^3.18.0", + "gatsby-core-utils": "^3.18.1", "git-up": "^4.0.5", "is-docker": "^2.2.1", "lodash": "^4.17.21", @@ -8326,9 +8237,9 @@ } }, "jsx-ast-utils": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.3.1.tgz", - "integrity": "sha512-pxrjmNpeRw5wwVeWyEAk7QJu2GnBO3uzPFmHCKJJFPKK2Cy0cWL23krGtLdnMmbIi6/FjlrQpPyfQI19ByPOhQ==", + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.3.2.tgz", + "integrity": "sha512-4ZCADZHRkno244xlNnn4AOG6sRQ7iBZ5BbgZ4vW4y5IZw7cVUD1PPeblm1xx/nfmMxPdt/LHsXZW8z/j58+l9Q==", "requires": { "array-includes": "^3.1.5", "object.assign": "^4.1.2" @@ -8389,9 +8300,9 @@ } }, "lilconfig": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-2.0.5.tgz", - "integrity": "sha512-xaYmXZtTHPAw5m+xLN8ab9C+3a8YmV3asNSPOATITbtwrfbwaLJj8h66H1WMIpALCkqsIzK3h7oQ+PdX+LQ9Eg==" + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-2.0.6.tgz", + "integrity": "sha512-9JROoBW7pobfsx+Sq2JsASvCo6Pfo6WWoUW79HuB1BCoBXD4PLWJPqDF6fNj67pqBYTbAHkE57M1kS/+L1neOg==" }, "lines-and-columns": { "version": "1.2.4", @@ -8399,16 +8310,16 @@ "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==" }, "lmdb": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/lmdb/-/lmdb-2.5.2.tgz", - "integrity": "sha512-V5V5Xa2Hp9i2XsbDALkBTeHXnBXh/lEmk9p22zdr7jtuOIY9TGhjK6vAvTpOOx9IKU4hJkRWZxn/HsvR1ELLtA==", - "requires": { - "@lmdb/lmdb-darwin-arm64": "2.5.2", - "@lmdb/lmdb-darwin-x64": "2.5.2", - "@lmdb/lmdb-linux-arm": "2.5.2", - "@lmdb/lmdb-linux-arm64": "2.5.2", - "@lmdb/lmdb-linux-x64": "2.5.2", - "@lmdb/lmdb-win32-x64": "2.5.2", + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/lmdb/-/lmdb-2.5.3.tgz", + "integrity": "sha512-iBA0cb13CobBSoGJLfZgnrykLlfJipDAnvtf+YwIqqzBEsTeQYsXrHaSBkaHd5wCWeabwrNvhjZoFMUrlo+eLw==", + "requires": { + "@lmdb/lmdb-darwin-arm64": "2.5.3", + "@lmdb/lmdb-darwin-x64": "2.5.3", + "@lmdb/lmdb-linux-arm": "2.5.3", + "@lmdb/lmdb-linux-arm64": "2.5.3", + "@lmdb/lmdb-linux-x64": "2.5.3", + "@lmdb/lmdb-win32-x64": "2.5.3", "msgpackr": "^1.5.4", "node-addon-api": "^4.3.0", "node-gyp-build-optional-packages": "5.0.3", @@ -8874,9 +8785,9 @@ "integrity": "sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==" }, "moment": { - "version": "2.29.3", - "resolved": "https://registry.npmjs.org/moment/-/moment-2.29.3.tgz", - "integrity": "sha512-c6YRvhEo//6T2Jz/vVtYzqBzwvPT95JBQ+smCytzf7c50oMZRsR/a4w88aD34I+/QVSfnoAnSBFPJHItlOMJVw==" + "version": "2.29.4", + "resolved": "https://registry.npmjs.org/moment/-/moment-2.29.4.tgz", + "integrity": "sha512-5LC9SOxjSc2HF6vO2CyuTDNivEdoz2IvyJJGj6X8DJ0eFyfszE0QiEd+iXmBvUP3WHxSjFH/vIsA0EN00cgr8w==" }, "ms": { "version": "2.1.2", @@ -9033,9 +8944,9 @@ "integrity": "sha512-jY5dPJzw6NHd/KPSfPKJ+IHoFS81/tJ43r34ZeNMXGzCOM8jwQDCD12HYayKIB6MuznrnqIYy2e891NA2g0ibA==" }, "node-releases": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.5.tgz", - "integrity": "sha512-U9h1NLROZTq9uE1SNffn6WuPDg8icmi3ns4rEl/oTfIle4iLjTliCzgTsbaIFMq/Xn078/lfY/BL0GWZ+psK4Q==" + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.6.tgz", + "integrity": "sha512-PiVXnNuFm5+iYkLBNeq5211hvO38y63T0i2KKh2KnUs3RpzJ+JtODFjkD8yjLwnDkTYF1eKXheUwdssR+NRZdg==" }, "normalize-path": { "version": "3.0.0", @@ -11672,9 +11583,9 @@ } }, "tslib": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.1.tgz", - "integrity": "sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw==" + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz", + "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==" }, "tsutils": { "version": "3.21.0", diff --git a/starters/gatsby-starter-minimal/package.json b/starters/gatsby-starter-minimal/package.json index a9cb1aa06a75b..8e0e98f0382d9 100644 --- a/starters/gatsby-starter-minimal/package.json +++ b/starters/gatsby-starter-minimal/package.json @@ -16,7 +16,7 @@ }, "license": "0BSD", "dependencies": { - "gatsby": "^4.18.0", + "gatsby": "^4.18.1", "react": "^18.1.0", "react-dom": "^18.1.0" } diff --git a/starters/gatsby-starter-notes-theme/package-lock.json b/starters/gatsby-starter-notes-theme/package-lock.json index f596414281d85..459941552b8e3 100644 --- a/starters/gatsby-starter-notes-theme/package-lock.json +++ b/starters/gatsby-starter-notes-theme/package-lock.json @@ -1033,9 +1033,9 @@ "integrity": "sha512-MmetCkz9ej86nJQV+sFCxoGGrUbU3q02kgLciwkrt9QqEB7cP39oKEY0PakknEO0Gu20SskMRi+AYZ3b1TpN9g==" }, "@babel/types": { - "version": "7.18.7", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.7.tgz", - "integrity": "sha512-QG3yxTcTIBoAcQmkCs+wAPYZhu7Dk9rXKacINfNbdJDNERTbLQbHGyVG8q/YGMPeCJRIhSY0+fTc5+xuh6WPSQ==", + "version": "7.18.8", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.8.tgz", + "integrity": "sha512-qwpdsmraq0aJ3osLJRApsc2ouSJCdnMeZwB0DhbtHAtRpZNZCdlbRnHIgcRKzdE1g0iOGg644fzjOBcdOz9cPw==", "requires": { "@babel/helper-validator-identifier": "^7.18.6", "to-fast-properties": "^2.0.0" @@ -1090,9 +1090,9 @@ } }, "@babel/plugin-transform-typescript": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.18.6.tgz", - "integrity": "sha512-ijHNhzIrLj5lQCnI6aaNVRtGVuUZhOXFLRVFs7lLrkXTHip4FKty5oAuQdk4tywG0/WjXmjTfQCWmuzrvFer1w==", + "version": "7.18.8", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.18.8.tgz", + "integrity": "sha512-p2xM8HI83UObjsZGofMV/EdYjamsDm6MoN3hXPYIT0+gxIoopE+B7rPYKAxfrz9K9PK7JafTTjqYC6qipLExYA==", "requires": { "@babel/helper-create-class-features-plugin": "^7.18.6", "@babel/helper-plugin-utils": "^7.18.6", @@ -1218,9 +1218,9 @@ } }, "@babel/parser": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.18.6.tgz", - "integrity": "sha512-uQVSa9jJUe/G/304lXspfWVpKpK4euFLgGiMQFOCpM/bgcAdeoHwi/OQz23O9GK2osz26ZiXRRV9aV+Yl1O8tw==" + "version": "7.18.8", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.18.8.tgz", + "integrity": "sha512-RSKRfYX20dyH+elbJK2uqAkVyucL+xXzhqlMD5/ZXx+dAAwpyB7HsvnHe/ZUGOF+xLr5Wx9/JoXVTj6BQE2/oA==" }, "@babel/template": { "version": "7.18.6", @@ -1233,26 +1233,26 @@ } }, "@babel/traverse": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.18.6.tgz", - "integrity": "sha512-zS/OKyqmD7lslOtFqbscH6gMLFYOfG1YPqCKfAW5KrTeolKqvB8UelR49Fpr6y93kYkW2Ik00mT1LOGiAGvizw==", + "version": "7.18.8", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.18.8.tgz", + "integrity": "sha512-UNg/AcSySJYR/+mIcJQDCv00T+AqRO7j/ZEJLzpaYtgM48rMg5MnkJgyNqkzo88+p4tfRvZJCEiwwfG6h4jkRg==", "requires": { "@babel/code-frame": "^7.18.6", - "@babel/generator": "^7.18.6", + "@babel/generator": "^7.18.7", "@babel/helper-environment-visitor": "^7.18.6", "@babel/helper-function-name": "^7.18.6", "@babel/helper-hoist-variables": "^7.18.6", "@babel/helper-split-export-declaration": "^7.18.6", - "@babel/parser": "^7.18.6", - "@babel/types": "^7.18.6", + "@babel/parser": "^7.18.8", + "@babel/types": "^7.18.8", "debug": "^4.1.0", "globals": "^11.1.0" } }, "@babel/types": { - "version": "7.18.7", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.7.tgz", - "integrity": "sha512-QG3yxTcTIBoAcQmkCs+wAPYZhu7Dk9rXKacINfNbdJDNERTbLQbHGyVG8q/YGMPeCJRIhSY0+fTc5+xuh6WPSQ==", + "version": "7.18.8", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.8.tgz", + "integrity": "sha512-qwpdsmraq0aJ3osLJRApsc2ouSJCdnMeZwB0DhbtHAtRpZNZCdlbRnHIgcRKzdE1g0iOGg644fzjOBcdOz9cPw==", "requires": { "@babel/helper-validator-identifier": "^7.18.6", "to-fast-properties": "^2.0.0" @@ -1687,13 +1687,13 @@ } }, "@gatsbyjs/parcel-namer-relative-to-cwd": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/@gatsbyjs/parcel-namer-relative-to-cwd/-/parcel-namer-relative-to-cwd-1.3.0.tgz", - "integrity": "sha512-nd1lQn7ezg51ekqZm8iZjND8akB7bsGkGe7GdIPdTwbhale2dHLqd74qg+bBrEjv5f5aFZhpJeY9XpeU4emWZQ==", + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/@gatsbyjs/parcel-namer-relative-to-cwd/-/parcel-namer-relative-to-cwd-1.3.1.tgz", + "integrity": "sha512-wN4iU1CWumvhcuzMBKdDikZ5xgo81Ias09bKyjE36DgNxTzAhT2fXZIBAAEUlv/GBQqFe6Eas83gGGtXf31hiw==", "requires": { "@babel/runtime": "^7.18.0", "@parcel/plugin": "2.6.0", - "gatsby-core-utils": "^3.18.0" + "gatsby-core-utils": "^3.18.1" }, "dependencies": { "@babel/runtime": { @@ -1715,9 +1715,9 @@ } }, "gatsby-core-utils": { - "version": "3.18.0", - "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.18.0.tgz", - "integrity": "sha512-mCoNgH4MilosLhEroklgVffwie9lyxgmvNwe/oIyzXr6NcZ2uxSp8G1KrgxdG2srt2hCNlZLlzS25ltLTeHTjA==", + "version": "3.18.1", + "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.18.1.tgz", + "integrity": "sha512-sJTxRqizLxYy/tSFk0ydfqEZ3ek1So9HDVUa39F6Oi8XuPCBTFzaAooUvowKGneI5YUbdk5y4VO4ybwVUynntw==", "requires": { "@babel/runtime": "^7.15.4", "ci-info": "2.0.0", @@ -1727,7 +1727,7 @@ "fs-extra": "^10.1.0", "got": "^11.8.5", "import-from": "^4.0.0", - "lmdb": "2.5.2", + "lmdb": "2.5.3", "lock": "^1.1.0", "node-object-hash": "^2.3.10", "proper-lockfile": "^4.1.2", @@ -1764,16 +1764,16 @@ } }, "lmdb": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/lmdb/-/lmdb-2.5.2.tgz", - "integrity": "sha512-V5V5Xa2Hp9i2XsbDALkBTeHXnBXh/lEmk9p22zdr7jtuOIY9TGhjK6vAvTpOOx9IKU4hJkRWZxn/HsvR1ELLtA==", - "requires": { - "@lmdb/lmdb-darwin-arm64": "2.5.2", - "@lmdb/lmdb-darwin-x64": "2.5.2", - "@lmdb/lmdb-linux-arm": "2.5.2", - "@lmdb/lmdb-linux-arm64": "2.5.2", - "@lmdb/lmdb-linux-x64": "2.5.2", - "@lmdb/lmdb-win32-x64": "2.5.2", + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/lmdb/-/lmdb-2.5.3.tgz", + "integrity": "sha512-iBA0cb13CobBSoGJLfZgnrykLlfJipDAnvtf+YwIqqzBEsTeQYsXrHaSBkaHd5wCWeabwrNvhjZoFMUrlo+eLw==", + "requires": { + "@lmdb/lmdb-darwin-arm64": "2.5.3", + "@lmdb/lmdb-darwin-x64": "2.5.3", + "@lmdb/lmdb-linux-arm": "2.5.3", + "@lmdb/lmdb-linux-arm64": "2.5.3", + "@lmdb/lmdb-linux-x64": "2.5.3", + "@lmdb/lmdb-win32-x64": "2.5.3", "msgpackr": "^1.5.4", "node-addon-api": "^4.3.0", "node-gyp-build-optional-packages": "5.0.3", @@ -1832,108 +1832,87 @@ } }, "@graphql-codegen/add": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/@graphql-codegen/add/-/add-3.1.1.tgz", - "integrity": "sha512-XkVwcqosa0CVBlL1HaQT0gp+EUfhuQE3LzrEpzMQLwchxaj/NPVYtOJL6MUHaYDsHzLqxWrufjfbeB3y2NQgRw==", + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/@graphql-codegen/add/-/add-3.2.0.tgz", + "integrity": "sha512-8hyr5XvTDGnpiT4nH2yH8PP4SWtUEIUdkFaZbkpkFkU0Ud9dplvSviOCdxdArffZ1FHy0XYLTMa2it+UJOtszg==", "requires": { - "@graphql-codegen/plugin-helpers": "^2.3.2", - "tslib": "~2.3.0" + "@graphql-codegen/plugin-helpers": "^2.5.0", + "tslib": "~2.4.0" } }, "@graphql-codegen/core": { - "version": "2.5.1", - "resolved": "https://registry.npmjs.org/@graphql-codegen/core/-/core-2.5.1.tgz", - "integrity": "sha512-alctBVl2hMnBXDLwkgmnFPrZVIiBDsWJSmxJcM4GKg1PB23+xuov35GE47YAyAhQItE1B1fbYnbb1PtGiDZ4LA==", + "version": "2.6.0", + "resolved": "https://registry.npmjs.org/@graphql-codegen/core/-/core-2.6.0.tgz", + "integrity": "sha512-7uZGnLCMR/pnh/5CsyI4y5bBvRndNHFs+AWpMUUjDBcjMRrMaavu37VyyYDz4/ob0BnQJt8RTBN9eArS9PLYAQ==", "requires": { - "@graphql-codegen/plugin-helpers": "^2.4.1", - "@graphql-tools/schema": "^8.1.2", - "@graphql-tools/utils": "^8.1.1", - "tslib": "~2.3.0" + "@graphql-codegen/plugin-helpers": "^2.5.0", + "@graphql-tools/schema": "^8.5.0", + "@graphql-tools/utils": "^8.8.0", + "tslib": "~2.4.0" } }, "@graphql-codegen/plugin-helpers": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/@graphql-codegen/plugin-helpers/-/plugin-helpers-2.4.2.tgz", - "integrity": "sha512-LJNvwAPv/sKtI3RnRDm+nPD+JeOfOuSOS4FFIpQCMUCyMnFcchV/CPTTv7tT12fLUpEg6XjuFfDBvOwndti30Q==", + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/@graphql-codegen/plugin-helpers/-/plugin-helpers-2.5.0.tgz", + "integrity": "sha512-0jM5/14EdM4yow5v8OGOnUmRqfA1gaWkh+J5berqQUpcFYfSQXD6+Idnkiju/jjIypEN7UvbPkC7BgryWVxexA==", "requires": { - "@graphql-tools/utils": "^8.5.2", + "@graphql-tools/utils": "^8.8.0", "change-case-all": "1.0.14", "common-tags": "1.8.2", "import-from": "4.0.0", "lodash": "~4.17.0", - "tslib": "~2.3.0" + "tslib": "~2.4.0" } }, "@graphql-codegen/schema-ast": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/@graphql-codegen/schema-ast/-/schema-ast-2.4.1.tgz", - "integrity": "sha512-bIWlKk/ShoVJfghA4Rt1OWnd34/dQmZM/vAe6fu6QKyOh44aAdqPtYQ2dbTyFXoknmu504etKJGEDllYNUJRfg==", + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/@graphql-codegen/schema-ast/-/schema-ast-2.5.0.tgz", + "integrity": "sha512-nlF4Yc7h90nmogG2E11TeFJ3/hCkb4SDMSdbJX68b1mhvVEji/kq3zWYKAQ+lAzjZ7HF94Eylm3MrZAjjpCKIA==", "requires": { - "@graphql-codegen/plugin-helpers": "^2.3.2", - "@graphql-tools/utils": "^8.1.1", - "tslib": "~2.3.0" + "@graphql-codegen/plugin-helpers": "^2.5.0", + "@graphql-tools/utils": "^8.8.0", + "tslib": "~2.4.0" } }, "@graphql-codegen/typescript": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@graphql-codegen/typescript/-/typescript-2.6.0.tgz", - "integrity": "sha512-f36ilg8J+wui0OhmQglIZ+2z4Ybc08Y7r7BlBDqfJ1F5X0zau0SlC7Hp2iCoCA0ucqZYtiUU/0n+/R8m1cTrQQ==", + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/@graphql-codegen/typescript/-/typescript-2.7.1.tgz", + "integrity": "sha512-qF4SBMgBnLcegba2s9+zC3NwgRhU0Kv+eS8kl9G5ldEHx9Bpu2tft+lk6fjqqhExDzJT+MEOU3Ecog3BzL2R1g==", "requires": { - "@graphql-codegen/plugin-helpers": "^2.4.0", - "@graphql-codegen/schema-ast": "^2.4.1", - "@graphql-codegen/visitor-plugin-common": "2.10.0", + "@graphql-codegen/plugin-helpers": "^2.5.0", + "@graphql-codegen/schema-ast": "^2.5.0", + "@graphql-codegen/visitor-plugin-common": "2.11.1", "auto-bind": "~4.0.0", "tslib": "~2.4.0" - }, - "dependencies": { - "tslib": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz", - "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==" - } } }, "@graphql-codegen/typescript-operations": { - "version": "2.4.3", - "resolved": "https://registry.npmjs.org/@graphql-codegen/typescript-operations/-/typescript-operations-2.4.3.tgz", - "integrity": "sha512-MW9cU/zCAmfFAObwW23e+GrW3CoV9OX2gVm/V1565WGZXDQPUc5Y5IjdfGfunV4ApkgFDiHpF1Mz/AS55OErgw==", + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/@graphql-codegen/typescript-operations/-/typescript-operations-2.5.1.tgz", + "integrity": "sha512-lGv+sPDXGcp/vDdIh7SoQjz8BRCZhLats4Hbqnf6gB7UtIasMvGuFDQyrKb3XAkQQYWqx/xtmEo0rBN8syV+Wg==", "requires": { - "@graphql-codegen/plugin-helpers": "^2.4.0", - "@graphql-codegen/typescript": "^2.6.0", - "@graphql-codegen/visitor-plugin-common": "2.10.0", + "@graphql-codegen/plugin-helpers": "^2.5.0", + "@graphql-codegen/typescript": "^2.7.1", + "@graphql-codegen/visitor-plugin-common": "2.11.1", "auto-bind": "~4.0.0", "tslib": "~2.4.0" - }, - "dependencies": { - "tslib": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz", - "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==" - } } }, "@graphql-codegen/visitor-plugin-common": { - "version": "2.10.0", - "resolved": "https://registry.npmjs.org/@graphql-codegen/visitor-plugin-common/-/visitor-plugin-common-2.10.0.tgz", - "integrity": "sha512-nWoxHKUdwOJCWV96Ks1x4EwYCWsZDJXB+2j6EQz5j27DzdxmQInZ86degaDCd3EgbwhMQEMtiZiPGFFDrgBkHA==", - "requires": { - "@graphql-codegen/plugin-helpers": "^2.4.0", - "@graphql-tools/optimize": "^1.0.1", - "@graphql-tools/relay-operation-optimizer": "^6.4.14", - "@graphql-tools/utils": "^8.3.0", + "version": "2.11.1", + "resolved": "https://registry.npmjs.org/@graphql-codegen/visitor-plugin-common/-/visitor-plugin-common-2.11.1.tgz", + "integrity": "sha512-AlrtGWKn2o89SPna75ATEHYAu95MUMucgBqLgcRvK9n/PHhVAbkDrNCH5pL03fE0HLOup3GpjX8DcnFBMU46IA==", + "requires": { + "@graphql-codegen/plugin-helpers": "^2.5.0", + "@graphql-tools/optimize": "^1.3.0", + "@graphql-tools/relay-operation-optimizer": "^6.5.0", + "@graphql-tools/utils": "^8.8.0", "auto-bind": "~4.0.0", "change-case-all": "1.0.14", "dependency-graph": "^0.11.0", "graphql-tag": "^2.11.0", "parse-filepath": "^1.0.2", "tslib": "~2.4.0" - }, - "dependencies": { - "tslib": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz", - "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==" - } } }, "@graphql-tools/batch-execute": { @@ -1979,13 +1958,6 @@ "globby": "^11.0.3", "tslib": "^2.4.0", "unixify": "^1.0.0" - }, - "dependencies": { - "tslib": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz", - "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==" - } } }, "@graphql-tools/delegate": { @@ -2078,13 +2050,6 @@ "@babel/types": "^7.16.8", "@graphql-tools/utils": "8.8.0", "tslib": "^2.4.0" - }, - "dependencies": { - "tslib": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz", - "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==" - } } }, "@graphql-tools/import": { @@ -2101,11 +2066,6 @@ "version": "5.0.0", "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==" - }, - "tslib": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz", - "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==" } } }, @@ -2160,11 +2120,6 @@ "requires": { "yocto-queue": "^0.1.0" } - }, - "tslib": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz", - "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==" } } }, @@ -2175,13 +2130,6 @@ "requires": { "@graphql-tools/utils": "8.8.0", "tslib": "^2.4.0" - }, - "dependencies": { - "tslib": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz", - "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==" - } } }, "@graphql-tools/optimize": { @@ -2190,13 +2138,6 @@ "integrity": "sha512-30QOWJoMJEt1De7tAFtWJ6VPrP6SLq+tSQrA3x+WMvCW3q2exq5wPDpvAXOakVKu0y8L2E+YkipC0hcQPBQdLg==", "requires": { "tslib": "^2.4.0" - }, - "dependencies": { - "tslib": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz", - "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==" - } } }, "@graphql-tools/relay-operation-optimizer": { @@ -2207,13 +2148,6 @@ "@ardatan/relay-compiler": "12.0.0", "@graphql-tools/utils": "8.8.0", "tslib": "^2.4.0" - }, - "dependencies": { - "tslib": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz", - "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==" - } } }, "@graphql-tools/schema": { @@ -2225,13 +2159,6 @@ "@graphql-tools/utils": "8.8.0", "tslib": "^2.4.0", "value-or-promise": "1.0.11" - }, - "dependencies": { - "tslib": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz", - "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==" - } } }, "@graphql-tools/url-loader": { @@ -2296,13 +2223,6 @@ "integrity": "sha512-KJrtx05uSM/cPYFdTnGAS1doL5bftJLAiFCDMZ8Vkifztz3BFn3gpFiy/o4wDtM8s39G46mxmt2Km/RmeltfGw==", "requires": { "tslib": "^2.4.0" - }, - "dependencies": { - "tslib": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz", - "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==" - } } }, "@graphql-tools/wrap": { @@ -2799,39 +2719,39 @@ } }, "@lmdb/lmdb-darwin-arm64": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-arm64/-/lmdb-darwin-arm64-2.5.2.tgz", - "integrity": "sha512-+F8ioQIUN68B4UFiIBYu0QQvgb9FmlKw2ctQMSBfW2QBrZIxz9vD9jCGqTCPqZBRbPHAS/vG1zSXnKqnS2ch/A==", + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-arm64/-/lmdb-darwin-arm64-2.5.3.tgz", + "integrity": "sha512-RXwGZ/0eCqtCY8FLTM/koR60w+MXyvBUpToXiIyjOcBnC81tAlTUHrRUavCEWPI9zc9VgvpK3+cbumPyR8BSuA==", "optional": true }, "@lmdb/lmdb-darwin-x64": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-x64/-/lmdb-darwin-x64-2.5.2.tgz", - "integrity": "sha512-KvPH56KRLLx4KSfKBx0m1r7GGGUMXm0jrKmNE7plbHlesZMuPJICtn07HYgQhj1LNsK7Yqwuvnqh1QxhJnF1EA==", + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-x64/-/lmdb-darwin-x64-2.5.3.tgz", + "integrity": "sha512-337dNzh5yCdNCTk8kPfoU7jR3otibSlPDGW0vKZT97rKnQMb9tNdto3RtWoGPsQ8hKmlRZpojOJtmwjncq1MoA==", "optional": true }, "@lmdb/lmdb-linux-arm": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm/-/lmdb-linux-arm-2.5.2.tgz", - "integrity": "sha512-5kQAP21hAkfW5Bl+e0P57dV4dGYnkNIpR7f/GAh6QHlgXx+vp/teVj4PGRZaKAvt0GX6++N6hF8NnGElLDuIDw==", + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm/-/lmdb-linux-arm-2.5.3.tgz", + "integrity": "sha512-mU2HFJDGwECkoD9dHQEfeTG5mp8hNS2BCfwoiOpVPMeapjYpQz9Uw3FkUjRZ4dGHWKbin40oWHuL0bk2bCx+Sg==", "optional": true }, "@lmdb/lmdb-linux-arm64": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm64/-/lmdb-linux-arm64-2.5.2.tgz", - "integrity": "sha512-aLl89VHL/wjhievEOlPocoefUyWdvzVrcQ/MHQYZm2JfV1jUsrbr/ZfkPPUFvZBf+VSE+Q0clWs9l29PCX1hTQ==", + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm64/-/lmdb-linux-arm64-2.5.3.tgz", + "integrity": "sha512-VJw60Mdgb4n+L0fO1PqfB0C7TyEQolJAC8qpqvG3JoQwvyOv6LH7Ib/WE3wxEW9nuHmVz9jkK7lk5HfWWgoO1Q==", "optional": true }, "@lmdb/lmdb-linux-x64": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-x64/-/lmdb-linux-x64-2.5.2.tgz", - "integrity": "sha512-xUdUfwDJLGjOUPH3BuPBt0NlIrR7f/QHKgu3GZIXswMMIihAekj2i97oI0iWG5Bok/b+OBjHPfa8IU9velnP/Q==", + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-x64/-/lmdb-linux-x64-2.5.3.tgz", + "integrity": "sha512-qaReO5aV8griBDsBr8uBF/faO3ieGjY1RY4p8JvTL6Mu1ylLrTVvOONqKFlNaCwrmUjWw5jnf7VafxDAeQHTow==", "optional": true }, "@lmdb/lmdb-win32-x64": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-win32-x64/-/lmdb-win32-x64-2.5.2.tgz", - "integrity": "sha512-zrBczSbXKxEyK2ijtbRdICDygRqWSRPpZMN5dD1T8VMEW5RIhIbwFWw2phDRXuBQdVDpSjalCIUMWMV2h3JaZA==", + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-win32-x64/-/lmdb-win32-x64-2.5.3.tgz", + "integrity": "sha512-cK+Elf3RjEzrm3SerAhrFWL5oQAsZSJ/LmjL1joIpTfEP1etJJ9CTRvdaV6XLYAxaEkfdhk/9hOvHLbR9yIhCA==", "optional": true }, "@mdx-js/mdx": { @@ -3701,13 +3621,6 @@ "integrity": "sha512-tb7Iu+oZ+zWJZ3HJqwx8oNwSDIU440hmVMDPhpACWQWnrZHK99Bxs70gT1L2dnr5Hg50ZRWEFkQCAnOVVV0z1Q==", "requires": { "tslib": "^2.4.0" - }, - "dependencies": { - "tslib": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz", - "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==" - } } }, "@szmarczak/http-timer": { @@ -4012,9 +3925,9 @@ } }, "@types/react": { - "version": "18.0.14", - "resolved": "https://registry.npmjs.org/@types/react/-/react-18.0.14.tgz", - "integrity": "sha512-x4gGuASSiWmo0xjDLpm5mPb52syZHJx02VKbqUKdLmKtAwIh63XClGsiTI1K6DO5q7ox4xAsQrU+Gl3+gGXF9Q==", + "version": "18.0.15", + "resolved": "https://registry.npmjs.org/@types/react/-/react-18.0.15.tgz", + "integrity": "sha512-iz3BtLuIYH1uWdsv6wXYdhozhqj20oD4/Hk2DNXIn1kFsmp9x8d9QB6FnPhfkbhd2PgEONt9Q1x/ebkwjfFLow==", "requires": { "@types/prop-types": "*", "@types/scheduler": "*", @@ -4656,14 +4569,14 @@ } }, "caniuse-lite": { - "version": "1.0.30001363", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001363.tgz", - "integrity": "sha512-HpQhpzTGGPVMnCjIomjt+jvyUu8vNFo3TaDiZ/RcoTrlOq/5+tC8zHdsbgFB6MxmaY+jCpsH09aD80Bb4Ow3Sg==" + "version": "1.0.30001365", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001365.tgz", + "integrity": "sha512-VDQZ8OtpuIPMBA4YYvZXECtXbddMCUFJk1qu8Mqxfm/SZJNSr1cy4IuLCOL7RJ/YASrvJcYg1Zh+UEUQ5m6z8Q==" }, "electron-to-chromium": { - "version": "1.4.179", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.179.tgz", - "integrity": "sha512-1XeTb/U/8Xgh2YgPOqhakLYsvCcU4U7jUjTMbEnhIJoIWd/Qt3yC8y0cbG+fHzn4zUNF99Ey1xiPf20bwgLO3Q==" + "version": "1.4.186", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.186.tgz", + "integrity": "sha512-YoVeFrGd/7ROjz4R9uPoND1K/hSRC/xADy9639ZmIZeJSaBnKdYx3I6LMPsY7CXLpK7JFgKQVzeZ/dk2br6Eaw==" } } }, @@ -4814,12 +4727,12 @@ } }, "babel-plugin-remove-graphql-queries": { - "version": "4.18.0", - "resolved": "https://registry.npmjs.org/babel-plugin-remove-graphql-queries/-/babel-plugin-remove-graphql-queries-4.18.0.tgz", - "integrity": "sha512-6oOm/cTZdk+7yPh4R4ISLKNur3rK5w2zAUCXTOGKYcRYbvKCS22ODafQBrNcu/UdfpXwSz3XZOG5ru72Z5usUw==", + "version": "4.18.1", + "resolved": "https://registry.npmjs.org/babel-plugin-remove-graphql-queries/-/babel-plugin-remove-graphql-queries-4.18.1.tgz", + "integrity": "sha512-2I7qsm3pnyvrS6/Q9YuHK1SpfQLmrgYH/AjpnWpnLHee6SiVb5Te89iphhpBdycpBRVGWh04ram9+z/1rMaRYQ==", "requires": { "@babel/runtime": "^7.15.4", - "gatsby-core-utils": "^3.18.0" + "gatsby-core-utils": "^3.18.1" }, "dependencies": { "fs-extra": { @@ -4833,9 +4746,9 @@ } }, "gatsby-core-utils": { - "version": "3.18.0", - "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.18.0.tgz", - "integrity": "sha512-mCoNgH4MilosLhEroklgVffwie9lyxgmvNwe/oIyzXr6NcZ2uxSp8G1KrgxdG2srt2hCNlZLlzS25ltLTeHTjA==", + "version": "3.18.1", + "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.18.1.tgz", + "integrity": "sha512-sJTxRqizLxYy/tSFk0ydfqEZ3ek1So9HDVUa39F6Oi8XuPCBTFzaAooUvowKGneI5YUbdk5y4VO4ybwVUynntw==", "requires": { "@babel/runtime": "^7.15.4", "ci-info": "2.0.0", @@ -4845,7 +4758,7 @@ "fs-extra": "^10.1.0", "got": "^11.8.5", "import-from": "^4.0.0", - "lmdb": "2.5.2", + "lmdb": "2.5.3", "lock": "^1.1.0", "node-object-hash": "^2.3.10", "proper-lockfile": "^4.1.2", @@ -4882,16 +4795,16 @@ } }, "lmdb": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/lmdb/-/lmdb-2.5.2.tgz", - "integrity": "sha512-V5V5Xa2Hp9i2XsbDALkBTeHXnBXh/lEmk9p22zdr7jtuOIY9TGhjK6vAvTpOOx9IKU4hJkRWZxn/HsvR1ELLtA==", - "requires": { - "@lmdb/lmdb-darwin-arm64": "2.5.2", - "@lmdb/lmdb-darwin-x64": "2.5.2", - "@lmdb/lmdb-linux-arm": "2.5.2", - "@lmdb/lmdb-linux-arm64": "2.5.2", - "@lmdb/lmdb-linux-x64": "2.5.2", - "@lmdb/lmdb-win32-x64": "2.5.2", + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/lmdb/-/lmdb-2.5.3.tgz", + "integrity": "sha512-iBA0cb13CobBSoGJLfZgnrykLlfJipDAnvtf+YwIqqzBEsTeQYsXrHaSBkaHd5wCWeabwrNvhjZoFMUrlo+eLw==", + "requires": { + "@lmdb/lmdb-darwin-arm64": "2.5.3", + "@lmdb/lmdb-darwin-x64": "2.5.3", + "@lmdb/lmdb-linux-arm": "2.5.3", + "@lmdb/lmdb-linux-arm64": "2.5.3", + "@lmdb/lmdb-linux-x64": "2.5.3", + "@lmdb/lmdb-win32-x64": "2.5.3", "msgpackr": "^1.5.4", "node-addon-api": "^4.3.0", "node-gyp-build-optional-packages": "5.0.3", @@ -4966,9 +4879,9 @@ } }, "babel-preset-gatsby": { - "version": "2.18.0", - "resolved": "https://registry.npmjs.org/babel-preset-gatsby/-/babel-preset-gatsby-2.18.0.tgz", - "integrity": "sha512-b6BJEl0MlA/nh+IkTJRgvPEgdN09Pu34Szo5dE4QYvQa66++EqfQUK5huqr+FgZJedPPYYbRY2SgKlRXev5QIQ==", + "version": "2.18.1", + "resolved": "https://registry.npmjs.org/babel-preset-gatsby/-/babel-preset-gatsby-2.18.1.tgz", + "integrity": "sha512-oaVV6ULceMjTQKjCA06qvgfLwBNZFJxpacwNZYOJpLygmj+qYiNKDGhJ8vTw/KAIUeDPZAbPMP5P+3wMEPIWYQ==", "requires": { "@babel/plugin-proposal-class-properties": "^7.14.0", "@babel/plugin-proposal-nullish-coalescing-operator": "^7.14.5", @@ -4983,7 +4896,7 @@ "babel-plugin-dynamic-import-node": "^2.3.3", "babel-plugin-macros": "^3.1.0", "babel-plugin-transform-react-remove-prop-types": "^0.4.24", - "gatsby-core-utils": "^3.18.0", + "gatsby-core-utils": "^3.18.1", "gatsby-legacy-polyfills": "^2.18.0" }, "dependencies": { @@ -5020,9 +4933,9 @@ } }, "gatsby-core-utils": { - "version": "3.18.0", - "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.18.0.tgz", - "integrity": "sha512-mCoNgH4MilosLhEroklgVffwie9lyxgmvNwe/oIyzXr6NcZ2uxSp8G1KrgxdG2srt2hCNlZLlzS25ltLTeHTjA==", + "version": "3.18.1", + "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.18.1.tgz", + "integrity": "sha512-sJTxRqizLxYy/tSFk0ydfqEZ3ek1So9HDVUa39F6Oi8XuPCBTFzaAooUvowKGneI5YUbdk5y4VO4ybwVUynntw==", "requires": { "@babel/runtime": "^7.15.4", "ci-info": "2.0.0", @@ -5032,7 +4945,7 @@ "fs-extra": "^10.1.0", "got": "^11.8.5", "import-from": "^4.0.0", - "lmdb": "2.5.2", + "lmdb": "2.5.3", "lock": "^1.1.0", "node-object-hash": "^2.3.10", "proper-lockfile": "^4.1.2", @@ -5069,16 +4982,16 @@ } }, "lmdb": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/lmdb/-/lmdb-2.5.2.tgz", - "integrity": "sha512-V5V5Xa2Hp9i2XsbDALkBTeHXnBXh/lEmk9p22zdr7jtuOIY9TGhjK6vAvTpOOx9IKU4hJkRWZxn/HsvR1ELLtA==", - "requires": { - "@lmdb/lmdb-darwin-arm64": "2.5.2", - "@lmdb/lmdb-darwin-x64": "2.5.2", - "@lmdb/lmdb-linux-arm": "2.5.2", - "@lmdb/lmdb-linux-arm64": "2.5.2", - "@lmdb/lmdb-linux-x64": "2.5.2", - "@lmdb/lmdb-win32-x64": "2.5.2", + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/lmdb/-/lmdb-2.5.3.tgz", + "integrity": "sha512-iBA0cb13CobBSoGJLfZgnrykLlfJipDAnvtf+YwIqqzBEsTeQYsXrHaSBkaHd5wCWeabwrNvhjZoFMUrlo+eLw==", + "requires": { + "@lmdb/lmdb-darwin-arm64": "2.5.3", + "@lmdb/lmdb-darwin-x64": "2.5.3", + "@lmdb/lmdb-linux-arm": "2.5.3", + "@lmdb/lmdb-linux-arm64": "2.5.3", + "@lmdb/lmdb-linux-x64": "2.5.3", + "@lmdb/lmdb-win32-x64": "2.5.3", "msgpackr": "^1.5.4", "node-addon-api": "^4.3.0", "node-gyp-build-optional-packages": "5.0.3", @@ -6283,9 +6196,9 @@ } }, "core-js-pure": { - "version": "3.23.3", - "resolved": "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.23.3.tgz", - "integrity": "sha512-XpoouuqIj4P+GWtdyV8ZO3/u4KftkeDVMfvp+308eGMhCrA3lVDSmAxO0c6GGOcmgVlaKDrgWVMo49h2ab/TDA==" + "version": "3.23.4", + "resolved": "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.23.4.tgz", + "integrity": "sha512-lizxkcgj3XDmi7TUBFe+bQ1vNpD5E4t76BrBWI3HdUxdw/Mq1VF4CkiHzIKyieECKtcODK2asJttoofEeUKICQ==" }, "core-util-is": { "version": "1.0.3", @@ -6322,9 +6235,9 @@ } }, "create-gatsby": { - "version": "2.18.0", - "resolved": "https://registry.npmjs.org/create-gatsby/-/create-gatsby-2.18.0.tgz", - "integrity": "sha512-74yn3+wlFKwg3DUVdFdBnfqc6gUVpYjqr/1XtQ0Rb57i0ygvER8Xgp4rY5Mm+8rl7JwBma1NONeM20cdMQjT2w==", + "version": "2.18.1", + "resolved": "https://registry.npmjs.org/create-gatsby/-/create-gatsby-2.18.1.tgz", + "integrity": "sha512-1AZioXKi4COhESSHfsb/6tpkBvyuuXHwAmMAGrcUQpbynsQxYdqonnRqnFhp80bA2cIKxgjtHzzLhyRouDonbQ==", "requires": { "@babel/runtime": "^7.15.4" } @@ -8401,9 +8314,9 @@ "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==" }, "gatsby": { - "version": "4.18.0", - "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-4.18.0.tgz", - "integrity": "sha512-EyiwYUsbSKUKsdjm8nnLw5AGJwOJ9NAWcrFg1V/QU4CUnk/M8EiP0TxiGUmK1/K7g82XGxUjuAPYJKJk85yxHA==", + "version": "4.18.1", + "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-4.18.1.tgz", + "integrity": "sha512-frMFAWOmMl/CtqBZ3aZXlysicQQa8C+yfMdjnjx81f7E5xoL20klk1j4UYj1kUnGgBMSuVehU8M+bE0kT02zoQ==", "requires": { "@babel/code-frame": "^7.14.0", "@babel/core": "^7.15.5", @@ -8439,8 +8352,8 @@ "babel-plugin-add-module-exports": "^1.0.4", "babel-plugin-dynamic-import-node": "^2.3.3", "babel-plugin-lodash": "^3.3.4", - "babel-plugin-remove-graphql-queries": "^4.18.0", - "babel-preset-gatsby": "^2.18.0", + "babel-plugin-remove-graphql-queries": "^4.18.1", + "babel-preset-gatsby": "^2.18.1", "better-opn": "^2.1.1", "bluebird": "^3.7.2", "body-parser": "^1.19.0", @@ -8483,20 +8396,20 @@ "find-cache-dir": "^3.3.2", "fs-exists-cached": "1.0.0", "fs-extra": "^10.1.0", - "gatsby-cli": "^4.18.0", - "gatsby-core-utils": "^3.18.0", + "gatsby-cli": "^4.18.1", + "gatsby-core-utils": "^3.18.1", "gatsby-graphiql-explorer": "^2.18.0", "gatsby-legacy-polyfills": "^2.18.0", - "gatsby-link": "^4.18.0", - "gatsby-page-utils": "^2.18.0", - "gatsby-parcel-config": "0.9.0", - "gatsby-plugin-page-creator": "^4.18.0", - "gatsby-plugin-typescript": "^4.18.0", - "gatsby-plugin-utils": "^3.12.0", + "gatsby-link": "^4.18.1", + "gatsby-page-utils": "^2.18.1", + "gatsby-parcel-config": "^0.9.1", + "gatsby-plugin-page-creator": "^4.18.1", + "gatsby-plugin-typescript": "^4.18.1", + "gatsby-plugin-utils": "^3.12.1", "gatsby-react-router-scroll": "^5.18.0", "gatsby-script": "^1.3.0", "gatsby-sharp": "^0.12.0", - "gatsby-telemetry": "^3.18.0", + "gatsby-telemetry": "^3.18.1", "gatsby-worker": "^1.18.0", "glob": "^7.2.3", "globby": "^11.1.0", @@ -8512,7 +8425,7 @@ "joi": "^17.4.2", "json-loader": "^0.5.7", "latest-version": "5.1.0", - "lmdb": "2.5.2", + "lmdb": "2.5.3", "lodash": "^4.17.21", "md5-file": "^5.0.0", "meant": "^1.0.3", @@ -8579,9 +8492,9 @@ } }, "core-js": { - "version": "3.23.3", - "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.23.3.tgz", - "integrity": "sha512-oAKwkj9xcWNBAvGbT//WiCdOMpb9XQG92/Fe3ABFM/R16BsHgePG00mFOgKf7IsCtfj8tA1kHtf/VwErhriz5Q==" + "version": "3.23.4", + "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.23.4.tgz", + "integrity": "sha512-vjsKqRc1RyAJC3Ye2kYqgfdThb3zYnx9CrqoCcjMOENMtQPC7ZViBvlDxwYU/2z2NI/IPuiXw5mT4hWhddqjzQ==" }, "fs-extra": { "version": "10.1.0", @@ -8594,9 +8507,9 @@ } }, "gatsby-cli": { - "version": "4.18.0", - "resolved": "https://registry.npmjs.org/gatsby-cli/-/gatsby-cli-4.18.0.tgz", - "integrity": "sha512-H4V1XvXP3EMwUBDbAlpu3jbjlCetUmHY6VB1YsH2kkIdlMrOgjUgNDFpqjgbk7k7z61du2tCgl1lyW+5he+SnA==", + "version": "4.18.1", + "resolved": "https://registry.npmjs.org/gatsby-cli/-/gatsby-cli-4.18.1.tgz", + "integrity": "sha512-ceYqm6i39rHY343zUCflwXnGtd25QGccvToTWL8W42/EGToDW8bubLfeBSRCfjXm946yf1gkS/1UAsAgAphYDA==", "requires": { "@babel/code-frame": "^7.14.0", "@babel/core": "^7.15.5", @@ -8615,13 +8528,13 @@ "common-tags": "^1.8.2", "configstore": "^5.0.1", "convert-hrtime": "^3.0.0", - "create-gatsby": "^2.18.0", + "create-gatsby": "^2.18.1", "envinfo": "^7.8.1", "execa": "^5.1.1", "fs-exists-cached": "^1.0.0", "fs-extra": "^10.1.0", - "gatsby-core-utils": "^3.18.0", - "gatsby-telemetry": "^3.18.0", + "gatsby-core-utils": "^3.18.1", + "gatsby-telemetry": "^3.18.1", "hosted-git-info": "^3.0.8", "is-valid-path": "^0.1.1", "joi": "^17.4.2", @@ -8645,9 +8558,9 @@ } }, "gatsby-core-utils": { - "version": "3.18.0", - "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.18.0.tgz", - "integrity": "sha512-mCoNgH4MilosLhEroklgVffwie9lyxgmvNwe/oIyzXr6NcZ2uxSp8G1KrgxdG2srt2hCNlZLlzS25ltLTeHTjA==", + "version": "3.18.1", + "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.18.1.tgz", + "integrity": "sha512-sJTxRqizLxYy/tSFk0ydfqEZ3ek1So9HDVUa39F6Oi8XuPCBTFzaAooUvowKGneI5YUbdk5y4VO4ybwVUynntw==", "requires": { "@babel/runtime": "^7.15.4", "ci-info": "2.0.0", @@ -8657,7 +8570,7 @@ "fs-extra": "^10.1.0", "got": "^11.8.5", "import-from": "^4.0.0", - "lmdb": "2.5.2", + "lmdb": "2.5.3", "lock": "^1.1.0", "node-object-hash": "^2.3.10", "proper-lockfile": "^4.1.2", @@ -8709,16 +8622,16 @@ } }, "lmdb": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/lmdb/-/lmdb-2.5.2.tgz", - "integrity": "sha512-V5V5Xa2Hp9i2XsbDALkBTeHXnBXh/lEmk9p22zdr7jtuOIY9TGhjK6vAvTpOOx9IKU4hJkRWZxn/HsvR1ELLtA==", - "requires": { - "@lmdb/lmdb-darwin-arm64": "2.5.2", - "@lmdb/lmdb-darwin-x64": "2.5.2", - "@lmdb/lmdb-linux-arm": "2.5.2", - "@lmdb/lmdb-linux-arm64": "2.5.2", - "@lmdb/lmdb-linux-x64": "2.5.2", - "@lmdb/lmdb-win32-x64": "2.5.2", + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/lmdb/-/lmdb-2.5.3.tgz", + "integrity": "sha512-iBA0cb13CobBSoGJLfZgnrykLlfJipDAnvtf+YwIqqzBEsTeQYsXrHaSBkaHd5wCWeabwrNvhjZoFMUrlo+eLw==", + "requires": { + "@lmdb/lmdb-darwin-arm64": "2.5.3", + "@lmdb/lmdb-darwin-x64": "2.5.3", + "@lmdb/lmdb-linux-arm": "2.5.3", + "@lmdb/lmdb-linux-arm64": "2.5.3", + "@lmdb/lmdb-linux-x64": "2.5.3", + "@lmdb/lmdb-win32-x64": "2.5.3", "msgpackr": "^1.5.4", "node-addon-api": "^4.3.0", "node-gyp-build-optional-packages": "5.0.3", @@ -8824,26 +8737,26 @@ } }, "gatsby-link": { - "version": "4.18.0", - "resolved": "https://registry.npmjs.org/gatsby-link/-/gatsby-link-4.18.0.tgz", - "integrity": "sha512-nE+Z/iE55Id84YqsQOT1bfPJ/AsupY/4s8i6NllQ8no/PRgDGMpkTG6ANqyt2CHs/bywxch2rv8Ho7Gwsuuueg==", + "version": "4.18.1", + "resolved": "https://registry.npmjs.org/gatsby-link/-/gatsby-link-4.18.1.tgz", + "integrity": "sha512-gLFH2iU4WugHU5k+SLu4F0Ar04kDT5KhkyXly99ZVtiIvHpA5DqcuGNIUjIE/lizSCsfa553wGv7dadfghGzrQ==", "requires": { "@babel/runtime": "^7.15.4", "@types/reach__router": "^1.3.10", - "gatsby-page-utils": "^2.18.0", + "gatsby-page-utils": "^2.18.1", "prop-types": "^15.8.1" } }, "gatsby-page-utils": { - "version": "2.18.0", - "resolved": "https://registry.npmjs.org/gatsby-page-utils/-/gatsby-page-utils-2.18.0.tgz", - "integrity": "sha512-qTwlqscKxkBlMd+Mn8xj6sh7L0LbfLGYOPCYozJnukXv8d/6Jyk1nfaP6I82hwj/iyhaBQtk7g8g4XyBJJaESw==", + "version": "2.18.1", + "resolved": "https://registry.npmjs.org/gatsby-page-utils/-/gatsby-page-utils-2.18.1.tgz", + "integrity": "sha512-4EM0LNOQgnCndHDQSI/ZKRFWYWG9dtTPuGbBaGlmPquhj3zwjOscws1vfj7g+u3PowKjZQ2Rf92RZd8xt8XLTQ==", "requires": { "@babel/runtime": "^7.15.4", "bluebird": "^3.7.2", "chokidar": "^3.5.3", "fs-exists-cached": "^1.0.0", - "gatsby-core-utils": "^3.18.0", + "gatsby-core-utils": "^3.18.1", "glob": "^7.2.3", "lodash": "^4.17.21", "micromatch": "^4.0.5" @@ -8860,9 +8773,9 @@ } }, "gatsby-core-utils": { - "version": "3.18.0", - "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.18.0.tgz", - "integrity": "sha512-mCoNgH4MilosLhEroklgVffwie9lyxgmvNwe/oIyzXr6NcZ2uxSp8G1KrgxdG2srt2hCNlZLlzS25ltLTeHTjA==", + "version": "3.18.1", + "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.18.1.tgz", + "integrity": "sha512-sJTxRqizLxYy/tSFk0ydfqEZ3ek1So9HDVUa39F6Oi8XuPCBTFzaAooUvowKGneI5YUbdk5y4VO4ybwVUynntw==", "requires": { "@babel/runtime": "^7.15.4", "ci-info": "2.0.0", @@ -8872,7 +8785,7 @@ "fs-extra": "^10.1.0", "got": "^11.8.5", "import-from": "^4.0.0", - "lmdb": "2.5.2", + "lmdb": "2.5.3", "lock": "^1.1.0", "node-object-hash": "^2.3.10", "proper-lockfile": "^4.1.2", @@ -8922,16 +8835,16 @@ } }, "lmdb": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/lmdb/-/lmdb-2.5.2.tgz", - "integrity": "sha512-V5V5Xa2Hp9i2XsbDALkBTeHXnBXh/lEmk9p22zdr7jtuOIY9TGhjK6vAvTpOOx9IKU4hJkRWZxn/HsvR1ELLtA==", - "requires": { - "@lmdb/lmdb-darwin-arm64": "2.5.2", - "@lmdb/lmdb-darwin-x64": "2.5.2", - "@lmdb/lmdb-linux-arm": "2.5.2", - "@lmdb/lmdb-linux-arm64": "2.5.2", - "@lmdb/lmdb-linux-x64": "2.5.2", - "@lmdb/lmdb-win32-x64": "2.5.2", + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/lmdb/-/lmdb-2.5.3.tgz", + "integrity": "sha512-iBA0cb13CobBSoGJLfZgnrykLlfJipDAnvtf+YwIqqzBEsTeQYsXrHaSBkaHd5wCWeabwrNvhjZoFMUrlo+eLw==", + "requires": { + "@lmdb/lmdb-darwin-arm64": "2.5.3", + "@lmdb/lmdb-darwin-x64": "2.5.3", + "@lmdb/lmdb-linux-arm": "2.5.3", + "@lmdb/lmdb-linux-arm64": "2.5.3", + "@lmdb/lmdb-linux-x64": "2.5.3", + "@lmdb/lmdb-win32-x64": "2.5.3", "msgpackr": "^1.5.4", "node-addon-api": "^4.3.0", "node-gyp-build-optional-packages": "5.0.3", @@ -8970,11 +8883,11 @@ } }, "gatsby-parcel-config": { - "version": "0.9.0", - "resolved": "https://registry.npmjs.org/gatsby-parcel-config/-/gatsby-parcel-config-0.9.0.tgz", - "integrity": "sha512-ccGw/L8ylhDgE/4tr52B6tb2jreApOMoYPW75Z8aM2ULRz505fL5mrnkG1fdQDBZSCHx/0j0x2TZyCLrt0Bvlw==", + "version": "0.9.1", + "resolved": "https://registry.npmjs.org/gatsby-parcel-config/-/gatsby-parcel-config-0.9.1.tgz", + "integrity": "sha512-ZtVntsQYs0xhy1hvWUMeSLc4a+DvxtTf+NUrPF4rvBjOW/LPMx2eYDzPddKvqWmiUaT1+Ki9S9bwCuOp5muawg==", "requires": { - "@gatsbyjs/parcel-namer-relative-to-cwd": "1.3.0", + "@gatsbyjs/parcel-namer-relative-to-cwd": "^1.3.1", "@parcel/bundler-default": "2.6.0", "@parcel/compressor-raw": "2.6.0", "@parcel/namer-default": "2.6.0", @@ -9117,19 +9030,19 @@ } }, "gatsby-plugin-page-creator": { - "version": "4.18.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-page-creator/-/gatsby-plugin-page-creator-4.18.0.tgz", - "integrity": "sha512-6bY4vJndDw0nBcOuQdX41Wvbctw0y9+a7IavCFJKFeNs+Zo0XH2FX0IAww0slDnSJU6AukJ9qfjHqKJkADAZpQ==", + "version": "4.18.1", + "resolved": "https://registry.npmjs.org/gatsby-plugin-page-creator/-/gatsby-plugin-page-creator-4.18.1.tgz", + "integrity": "sha512-XPAglahQ1fDnSdSNJmtAGwVqB7yZDGPOQQBQX7LD74XwYP6uriRo4LyeI+gEXRqW4d63ZL3VMvgdisde9M95LQ==", "requires": { "@babel/runtime": "^7.15.4", "@babel/traverse": "^7.15.4", "@sindresorhus/slugify": "^1.1.2", "chokidar": "^3.5.3", "fs-exists-cached": "^1.0.0", - "gatsby-core-utils": "^3.18.0", - "gatsby-page-utils": "^2.18.0", - "gatsby-plugin-utils": "^3.12.0", - "gatsby-telemetry": "^3.18.0", + "gatsby-core-utils": "^3.18.1", + "gatsby-page-utils": "^2.18.1", + "gatsby-plugin-utils": "^3.12.1", + "gatsby-telemetry": "^3.18.1", "globby": "^11.1.0", "lodash": "^4.17.21" }, @@ -9145,9 +9058,9 @@ } }, "gatsby-core-utils": { - "version": "3.18.0", - "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.18.0.tgz", - "integrity": "sha512-mCoNgH4MilosLhEroklgVffwie9lyxgmvNwe/oIyzXr6NcZ2uxSp8G1KrgxdG2srt2hCNlZLlzS25ltLTeHTjA==", + "version": "3.18.1", + "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.18.1.tgz", + "integrity": "sha512-sJTxRqizLxYy/tSFk0ydfqEZ3ek1So9HDVUa39F6Oi8XuPCBTFzaAooUvowKGneI5YUbdk5y4VO4ybwVUynntw==", "requires": { "@babel/runtime": "^7.15.4", "ci-info": "2.0.0", @@ -9157,7 +9070,7 @@ "fs-extra": "^10.1.0", "got": "^11.8.5", "import-from": "^4.0.0", - "lmdb": "2.5.2", + "lmdb": "2.5.3", "lock": "^1.1.0", "node-object-hash": "^2.3.10", "proper-lockfile": "^4.1.2", @@ -9194,16 +9107,16 @@ } }, "lmdb": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/lmdb/-/lmdb-2.5.2.tgz", - "integrity": "sha512-V5V5Xa2Hp9i2XsbDALkBTeHXnBXh/lEmk9p22zdr7jtuOIY9TGhjK6vAvTpOOx9IKU4hJkRWZxn/HsvR1ELLtA==", - "requires": { - "@lmdb/lmdb-darwin-arm64": "2.5.2", - "@lmdb/lmdb-darwin-x64": "2.5.2", - "@lmdb/lmdb-linux-arm": "2.5.2", - "@lmdb/lmdb-linux-arm64": "2.5.2", - "@lmdb/lmdb-linux-x64": "2.5.2", - "@lmdb/lmdb-win32-x64": "2.5.2", + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/lmdb/-/lmdb-2.5.3.tgz", + "integrity": "sha512-iBA0cb13CobBSoGJLfZgnrykLlfJipDAnvtf+YwIqqzBEsTeQYsXrHaSBkaHd5wCWeabwrNvhjZoFMUrlo+eLw==", + "requires": { + "@lmdb/lmdb-darwin-arm64": "2.5.3", + "@lmdb/lmdb-darwin-x64": "2.5.3", + "@lmdb/lmdb-linux-arm": "2.5.3", + "@lmdb/lmdb-linux-arm64": "2.5.3", + "@lmdb/lmdb-linux-x64": "2.5.3", + "@lmdb/lmdb-win32-x64": "2.5.3", "msgpackr": "^1.5.4", "node-addon-api": "^4.3.0", "node-gyp-build-optional-packages": "5.0.3", @@ -9247,9 +9160,9 @@ "integrity": "sha512-G92tnNZyViyP/wMd6ps1KhXuG48qlInZ3aUqCrgMNpsX9Hb6rSet0mWmpgj8T8dSRw7Ll7byI0DfKXL5gScgjA==" }, "gatsby-plugin-typescript": { - "version": "4.18.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-typescript/-/gatsby-plugin-typescript-4.18.0.tgz", - "integrity": "sha512-SuNBrp57SnovOyhCz0zPkz7begV4UR2XdXUrFsh4N0jWOI5yFNVgENpKlbI/O7JnvgyV5KC/pkobNh3we+0mcQ==", + "version": "4.18.1", + "resolved": "https://registry.npmjs.org/gatsby-plugin-typescript/-/gatsby-plugin-typescript-4.18.1.tgz", + "integrity": "sha512-YUZcqL2WWiL2ngKe4A5FpTjCij2pLxiim+QaujeKfMjeWfHJ13uQ74HlxQXNpGAy4vMRBiU4CJH71RXgS1aoaA==", "requires": { "@babel/core": "^7.15.5", "@babel/plugin-proposal-nullish-coalescing-operator": "^7.14.5", @@ -9257,18 +9170,18 @@ "@babel/plugin-proposal-optional-chaining": "^7.14.5", "@babel/preset-typescript": "^7.15.0", "@babel/runtime": "^7.15.4", - "babel-plugin-remove-graphql-queries": "^4.18.0" + "babel-plugin-remove-graphql-queries": "^4.18.1" } }, "gatsby-plugin-utils": { - "version": "3.12.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-utils/-/gatsby-plugin-utils-3.12.0.tgz", - "integrity": "sha512-vdz3qwaCOkvgzAxMkZlgpmpWf555jISwek5lyWYhGyJJvXYV8KQ2cZ4CoOfFKAYVeZVSucrHcdWyY3fLLpQvAA==", + "version": "3.12.1", + "resolved": "https://registry.npmjs.org/gatsby-plugin-utils/-/gatsby-plugin-utils-3.12.1.tgz", + "integrity": "sha512-Rx7/MFtiJ+pyvPLqCPj5beyMN6qOx3EYMrOqmvrWJaM32nxMfHZqUqxGruufyFNVe6edfRuNuXcKaPXlGlyexA==", "requires": { "@babel/runtime": "^7.15.4", "@gatsbyjs/potrace": "^2.2.0", "fs-extra": "^10.1.0", - "gatsby-core-utils": "^3.18.0", + "gatsby-core-utils": "^3.18.1", "gatsby-sharp": "^0.12.0", "graphql-compose": "^9.0.7", "import-from": "^4.0.0", @@ -9289,9 +9202,9 @@ } }, "gatsby-core-utils": { - "version": "3.18.0", - "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.18.0.tgz", - "integrity": "sha512-mCoNgH4MilosLhEroklgVffwie9lyxgmvNwe/oIyzXr6NcZ2uxSp8G1KrgxdG2srt2hCNlZLlzS25ltLTeHTjA==", + "version": "3.18.1", + "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.18.1.tgz", + "integrity": "sha512-sJTxRqizLxYy/tSFk0ydfqEZ3ek1So9HDVUa39F6Oi8XuPCBTFzaAooUvowKGneI5YUbdk5y4VO4ybwVUynntw==", "requires": { "@babel/runtime": "^7.15.4", "ci-info": "2.0.0", @@ -9301,7 +9214,7 @@ "fs-extra": "^10.1.0", "got": "^11.8.5", "import-from": "^4.0.0", - "lmdb": "2.5.2", + "lmdb": "2.5.3", "lock": "^1.1.0", "node-object-hash": "^2.3.10", "proper-lockfile": "^4.1.2", @@ -9338,16 +9251,16 @@ } }, "lmdb": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/lmdb/-/lmdb-2.5.2.tgz", - "integrity": "sha512-V5V5Xa2Hp9i2XsbDALkBTeHXnBXh/lEmk9p22zdr7jtuOIY9TGhjK6vAvTpOOx9IKU4hJkRWZxn/HsvR1ELLtA==", - "requires": { - "@lmdb/lmdb-darwin-arm64": "2.5.2", - "@lmdb/lmdb-darwin-x64": "2.5.2", - "@lmdb/lmdb-linux-arm": "2.5.2", - "@lmdb/lmdb-linux-arm64": "2.5.2", - "@lmdb/lmdb-linux-x64": "2.5.2", - "@lmdb/lmdb-win32-x64": "2.5.2", + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/lmdb/-/lmdb-2.5.3.tgz", + "integrity": "sha512-iBA0cb13CobBSoGJLfZgnrykLlfJipDAnvtf+YwIqqzBEsTeQYsXrHaSBkaHd5wCWeabwrNvhjZoFMUrlo+eLw==", + "requires": { + "@lmdb/lmdb-darwin-arm64": "2.5.3", + "@lmdb/lmdb-darwin-x64": "2.5.3", + "@lmdb/lmdb-linux-arm": "2.5.3", + "@lmdb/lmdb-linux-arm64": "2.5.3", + "@lmdb/lmdb-linux-x64": "2.5.3", + "@lmdb/lmdb-win32-x64": "2.5.3", "msgpackr": "^1.5.4", "node-addon-api": "^4.3.0", "node-gyp-build-optional-packages": "5.0.3", @@ -9548,9 +9461,9 @@ } }, "gatsby-telemetry": { - "version": "3.18.0", - "resolved": "https://registry.npmjs.org/gatsby-telemetry/-/gatsby-telemetry-3.18.0.tgz", - "integrity": "sha512-i1JvNqGOyLDPGEn1QN29YGpe2ripg2LZBAOhXmk6lAhRL5fTVo6WkEA2yW7XESnXIOJBFymgVbUlLjXoqeZ5Xg==", + "version": "3.18.1", + "resolved": "https://registry.npmjs.org/gatsby-telemetry/-/gatsby-telemetry-3.18.1.tgz", + "integrity": "sha512-EjjsUv15BZGsmnPrOINRT/s7d18DTKokpp2NDZLm8uOs3MwVoLtUZ/BS7h2NTmgK+WN93q3bNYRkZgKgV9QC1A==", "requires": { "@babel/code-frame": "^7.14.0", "@babel/runtime": "^7.15.4", @@ -9560,7 +9473,7 @@ "boxen": "^4.2.0", "configstore": "^5.0.1", "fs-extra": "^10.1.0", - "gatsby-core-utils": "^3.18.0", + "gatsby-core-utils": "^3.18.1", "git-up": "^4.0.5", "is-docker": "^2.2.1", "lodash": "^4.17.21", @@ -9623,9 +9536,9 @@ } }, "gatsby-core-utils": { - "version": "3.18.0", - "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.18.0.tgz", - "integrity": "sha512-mCoNgH4MilosLhEroklgVffwie9lyxgmvNwe/oIyzXr6NcZ2uxSp8G1KrgxdG2srt2hCNlZLlzS25ltLTeHTjA==", + "version": "3.18.1", + "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.18.1.tgz", + "integrity": "sha512-sJTxRqizLxYy/tSFk0ydfqEZ3ek1So9HDVUa39F6Oi8XuPCBTFzaAooUvowKGneI5YUbdk5y4VO4ybwVUynntw==", "requires": { "@babel/runtime": "^7.15.4", "ci-info": "2.0.0", @@ -9635,7 +9548,7 @@ "fs-extra": "^10.1.0", "got": "^11.8.5", "import-from": "^4.0.0", - "lmdb": "2.5.2", + "lmdb": "2.5.3", "lock": "^1.1.0", "node-object-hash": "^2.3.10", "proper-lockfile": "^4.1.2", @@ -9677,16 +9590,16 @@ } }, "lmdb": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/lmdb/-/lmdb-2.5.2.tgz", - "integrity": "sha512-V5V5Xa2Hp9i2XsbDALkBTeHXnBXh/lEmk9p22zdr7jtuOIY9TGhjK6vAvTpOOx9IKU4hJkRWZxn/HsvR1ELLtA==", - "requires": { - "@lmdb/lmdb-darwin-arm64": "2.5.2", - "@lmdb/lmdb-darwin-x64": "2.5.2", - "@lmdb/lmdb-linux-arm": "2.5.2", - "@lmdb/lmdb-linux-arm64": "2.5.2", - "@lmdb/lmdb-linux-x64": "2.5.2", - "@lmdb/lmdb-win32-x64": "2.5.2", + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/lmdb/-/lmdb-2.5.3.tgz", + "integrity": "sha512-iBA0cb13CobBSoGJLfZgnrykLlfJipDAnvtf+YwIqqzBEsTeQYsXrHaSBkaHd5wCWeabwrNvhjZoFMUrlo+eLw==", + "requires": { + "@lmdb/lmdb-darwin-arm64": "2.5.3", + "@lmdb/lmdb-darwin-x64": "2.5.3", + "@lmdb/lmdb-linux-arm": "2.5.3", + "@lmdb/lmdb-linux-arm64": "2.5.3", + "@lmdb/lmdb-linux-x64": "2.5.3", + "@lmdb/lmdb-win32-x64": "2.5.3", "msgpackr": "^1.5.4", "node-addon-api": "^4.3.0", "node-gyp-build-optional-packages": "5.0.3", @@ -11072,9 +10985,9 @@ } }, "jsx-ast-utils": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.3.1.tgz", - "integrity": "sha512-pxrjmNpeRw5wwVeWyEAk7QJu2GnBO3uzPFmHCKJJFPKK2Cy0cWL23krGtLdnMmbIi6/FjlrQpPyfQI19ByPOhQ==", + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.3.2.tgz", + "integrity": "sha512-4ZCADZHRkno244xlNnn4AOG6sRQ7iBZ5BbgZ4vW4y5IZw7cVUD1PPeblm1xx/nfmMxPdt/LHsXZW8z/j58+l9Q==", "requires": { "array-includes": "^3.1.5", "object.assign": "^4.1.2" @@ -11134,9 +11047,9 @@ } }, "lilconfig": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-2.0.5.tgz", - "integrity": "sha512-xaYmXZtTHPAw5m+xLN8ab9C+3a8YmV3asNSPOATITbtwrfbwaLJj8h66H1WMIpALCkqsIzK3h7oQ+PdX+LQ9Eg==" + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-2.0.6.tgz", + "integrity": "sha512-9JROoBW7pobfsx+Sq2JsASvCo6Pfo6WWoUW79HuB1BCoBXD4PLWJPqDF6fNj67pqBYTbAHkE57M1kS/+L1neOg==" }, "lines-and-columns": { "version": "1.1.6", @@ -11821,9 +11734,9 @@ "integrity": "sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==" }, "moment": { - "version": "2.29.3", - "resolved": "https://registry.npmjs.org/moment/-/moment-2.29.3.tgz", - "integrity": "sha512-c6YRvhEo//6T2Jz/vVtYzqBzwvPT95JBQ+smCytzf7c50oMZRsR/a4w88aD34I+/QVSfnoAnSBFPJHItlOMJVw==" + "version": "2.29.4", + "resolved": "https://registry.npmjs.org/moment/-/moment-2.29.4.tgz", + "integrity": "sha512-5LC9SOxjSc2HF6vO2CyuTDNivEdoz2IvyJJGj6X8DJ0eFyfszE0QiEd+iXmBvUP3WHxSjFH/vIsA0EN00cgr8w==" }, "ms": { "version": "2.1.2", @@ -11972,9 +11885,9 @@ "integrity": "sha512-jY5dPJzw6NHd/KPSfPKJ+IHoFS81/tJ43r34ZeNMXGzCOM8jwQDCD12HYayKIB6MuznrnqIYy2e891NA2g0ibA==" }, "node-releases": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.5.tgz", - "integrity": "sha512-U9h1NLROZTq9uE1SNffn6WuPDg8icmi3ns4rEl/oTfIle4iLjTliCzgTsbaIFMq/Xn078/lfY/BL0GWZ+psK4Q==" + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.6.tgz", + "integrity": "sha512-PiVXnNuFm5+iYkLBNeq5211hvO38y63T0i2KKh2KnUs3RpzJ+JtODFjkD8yjLwnDkTYF1eKXheUwdssR+NRZdg==" }, "normalize-path": { "version": "3.0.0", @@ -12782,14 +12695,14 @@ } }, "caniuse-lite": { - "version": "1.0.30001363", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001363.tgz", - "integrity": "sha512-HpQhpzTGGPVMnCjIomjt+jvyUu8vNFo3TaDiZ/RcoTrlOq/5+tC8zHdsbgFB6MxmaY+jCpsH09aD80Bb4Ow3Sg==" + "version": "1.0.30001365", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001365.tgz", + "integrity": "sha512-VDQZ8OtpuIPMBA4YYvZXECtXbddMCUFJk1qu8Mqxfm/SZJNSr1cy4IuLCOL7RJ/YASrvJcYg1Zh+UEUQ5m6z8Q==" }, "electron-to-chromium": { - "version": "1.4.179", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.179.tgz", - "integrity": "sha512-1XeTb/U/8Xgh2YgPOqhakLYsvCcU4U7jUjTMbEnhIJoIWd/Qt3yC8y0cbG+fHzn4zUNF99Ey1xiPf20bwgLO3Q==" + "version": "1.4.186", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.186.tgz", + "integrity": "sha512-YoVeFrGd/7ROjz4R9uPoND1K/hSRC/xADy9639ZmIZeJSaBnKdYx3I6LMPsY7CXLpK7JFgKQVzeZ/dk2br6Eaw==" } } }, @@ -15208,9 +15121,9 @@ } }, "tslib": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.1.tgz", - "integrity": "sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw==" + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz", + "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==" }, "tsutils": { "version": "3.21.0", diff --git a/starters/gatsby-starter-notes-theme/package.json b/starters/gatsby-starter-notes-theme/package.json index 6e7c684b3c869..3dfecf066200f 100644 --- a/starters/gatsby-starter-notes-theme/package.json +++ b/starters/gatsby-starter-notes-theme/package.json @@ -10,7 +10,7 @@ }, "license": "0BSD", "dependencies": { - "gatsby": "^4.18.0", + "gatsby": "^4.18.1", "gatsby-theme-notes": "^4.0.0", "react": "^17.0.2", "react-dom": "^17.0.2" diff --git a/starters/gatsby-starter-theme-workspace/example/package.json b/starters/gatsby-starter-theme-workspace/example/package.json index 25fc3380f01b5..347b6f18f9bb4 100644 --- a/starters/gatsby-starter-theme-workspace/example/package.json +++ b/starters/gatsby-starter-theme-workspace/example/package.json @@ -8,7 +8,7 @@ "build": "gatsby build" }, "dependencies": { - "gatsby": "^4.18.0", + "gatsby": "^4.18.1", "gatsby-theme-minimal": "^1.0.0", "react": "^18.1.0", "react-dom": "^18.1.0" diff --git a/starters/gatsby-starter-theme/package-lock.json b/starters/gatsby-starter-theme/package-lock.json index 5462cca604a10..1669c0557f610 100644 --- a/starters/gatsby-starter-theme/package-lock.json +++ b/starters/gatsby-starter-theme/package-lock.json @@ -1033,9 +1033,9 @@ "integrity": "sha512-MmetCkz9ej86nJQV+sFCxoGGrUbU3q02kgLciwkrt9QqEB7cP39oKEY0PakknEO0Gu20SskMRi+AYZ3b1TpN9g==" }, "@babel/types": { - "version": "7.18.7", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.7.tgz", - "integrity": "sha512-QG3yxTcTIBoAcQmkCs+wAPYZhu7Dk9rXKacINfNbdJDNERTbLQbHGyVG8q/YGMPeCJRIhSY0+fTc5+xuh6WPSQ==", + "version": "7.18.8", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.8.tgz", + "integrity": "sha512-qwpdsmraq0aJ3osLJRApsc2ouSJCdnMeZwB0DhbtHAtRpZNZCdlbRnHIgcRKzdE1g0iOGg644fzjOBcdOz9cPw==", "requires": { "@babel/helper-validator-identifier": "^7.18.6", "to-fast-properties": "^2.0.0" @@ -1090,9 +1090,9 @@ } }, "@babel/plugin-transform-typescript": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.18.6.tgz", - "integrity": "sha512-ijHNhzIrLj5lQCnI6aaNVRtGVuUZhOXFLRVFs7lLrkXTHip4FKty5oAuQdk4tywG0/WjXmjTfQCWmuzrvFer1w==", + "version": "7.18.8", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.18.8.tgz", + "integrity": "sha512-p2xM8HI83UObjsZGofMV/EdYjamsDm6MoN3hXPYIT0+gxIoopE+B7rPYKAxfrz9K9PK7JafTTjqYC6qipLExYA==", "requires": { "@babel/helper-create-class-features-plugin": "^7.18.6", "@babel/helper-plugin-utils": "^7.18.6", @@ -1218,9 +1218,9 @@ } }, "@babel/parser": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.18.6.tgz", - "integrity": "sha512-uQVSa9jJUe/G/304lXspfWVpKpK4euFLgGiMQFOCpM/bgcAdeoHwi/OQz23O9GK2osz26ZiXRRV9aV+Yl1O8tw==" + "version": "7.18.8", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.18.8.tgz", + "integrity": "sha512-RSKRfYX20dyH+elbJK2uqAkVyucL+xXzhqlMD5/ZXx+dAAwpyB7HsvnHe/ZUGOF+xLr5Wx9/JoXVTj6BQE2/oA==" }, "@babel/template": { "version": "7.18.6", @@ -1233,26 +1233,26 @@ } }, "@babel/traverse": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.18.6.tgz", - "integrity": "sha512-zS/OKyqmD7lslOtFqbscH6gMLFYOfG1YPqCKfAW5KrTeolKqvB8UelR49Fpr6y93kYkW2Ik00mT1LOGiAGvizw==", + "version": "7.18.8", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.18.8.tgz", + "integrity": "sha512-UNg/AcSySJYR/+mIcJQDCv00T+AqRO7j/ZEJLzpaYtgM48rMg5MnkJgyNqkzo88+p4tfRvZJCEiwwfG6h4jkRg==", "requires": { "@babel/code-frame": "^7.18.6", - "@babel/generator": "^7.18.6", + "@babel/generator": "^7.18.7", "@babel/helper-environment-visitor": "^7.18.6", "@babel/helper-function-name": "^7.18.6", "@babel/helper-hoist-variables": "^7.18.6", "@babel/helper-split-export-declaration": "^7.18.6", - "@babel/parser": "^7.18.6", - "@babel/types": "^7.18.6", + "@babel/parser": "^7.18.8", + "@babel/types": "^7.18.8", "debug": "^4.1.0", "globals": "^11.1.0" } }, "@babel/types": { - "version": "7.18.7", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.7.tgz", - "integrity": "sha512-QG3yxTcTIBoAcQmkCs+wAPYZhu7Dk9rXKacINfNbdJDNERTbLQbHGyVG8q/YGMPeCJRIhSY0+fTc5+xuh6WPSQ==", + "version": "7.18.8", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.8.tgz", + "integrity": "sha512-qwpdsmraq0aJ3osLJRApsc2ouSJCdnMeZwB0DhbtHAtRpZNZCdlbRnHIgcRKzdE1g0iOGg644fzjOBcdOz9cPw==", "requires": { "@babel/helper-validator-identifier": "^7.18.6", "to-fast-properties": "^2.0.0" @@ -1692,13 +1692,13 @@ } }, "@gatsbyjs/parcel-namer-relative-to-cwd": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/@gatsbyjs/parcel-namer-relative-to-cwd/-/parcel-namer-relative-to-cwd-1.3.0.tgz", - "integrity": "sha512-nd1lQn7ezg51ekqZm8iZjND8akB7bsGkGe7GdIPdTwbhale2dHLqd74qg+bBrEjv5f5aFZhpJeY9XpeU4emWZQ==", + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/@gatsbyjs/parcel-namer-relative-to-cwd/-/parcel-namer-relative-to-cwd-1.3.1.tgz", + "integrity": "sha512-wN4iU1CWumvhcuzMBKdDikZ5xgo81Ias09bKyjE36DgNxTzAhT2fXZIBAAEUlv/GBQqFe6Eas83gGGtXf31hiw==", "requires": { "@babel/runtime": "^7.18.0", "@parcel/plugin": "2.6.0", - "gatsby-core-utils": "^3.18.0" + "gatsby-core-utils": "^3.18.1" }, "dependencies": { "@babel/runtime": { @@ -1720,9 +1720,9 @@ } }, "gatsby-core-utils": { - "version": "3.18.0", - "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.18.0.tgz", - "integrity": "sha512-mCoNgH4MilosLhEroklgVffwie9lyxgmvNwe/oIyzXr6NcZ2uxSp8G1KrgxdG2srt2hCNlZLlzS25ltLTeHTjA==", + "version": "3.18.1", + "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.18.1.tgz", + "integrity": "sha512-sJTxRqizLxYy/tSFk0ydfqEZ3ek1So9HDVUa39F6Oi8XuPCBTFzaAooUvowKGneI5YUbdk5y4VO4ybwVUynntw==", "requires": { "@babel/runtime": "^7.15.4", "ci-info": "2.0.0", @@ -1732,7 +1732,7 @@ "fs-extra": "^10.1.0", "got": "^11.8.5", "import-from": "^4.0.0", - "lmdb": "2.5.2", + "lmdb": "2.5.3", "lock": "^1.1.0", "node-object-hash": "^2.3.10", "proper-lockfile": "^4.1.2", @@ -1769,16 +1769,16 @@ } }, "lmdb": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/lmdb/-/lmdb-2.5.2.tgz", - "integrity": "sha512-V5V5Xa2Hp9i2XsbDALkBTeHXnBXh/lEmk9p22zdr7jtuOIY9TGhjK6vAvTpOOx9IKU4hJkRWZxn/HsvR1ELLtA==", - "requires": { - "@lmdb/lmdb-darwin-arm64": "2.5.2", - "@lmdb/lmdb-darwin-x64": "2.5.2", - "@lmdb/lmdb-linux-arm": "2.5.2", - "@lmdb/lmdb-linux-arm64": "2.5.2", - "@lmdb/lmdb-linux-x64": "2.5.2", - "@lmdb/lmdb-win32-x64": "2.5.2", + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/lmdb/-/lmdb-2.5.3.tgz", + "integrity": "sha512-iBA0cb13CobBSoGJLfZgnrykLlfJipDAnvtf+YwIqqzBEsTeQYsXrHaSBkaHd5wCWeabwrNvhjZoFMUrlo+eLw==", + "requires": { + "@lmdb/lmdb-darwin-arm64": "2.5.3", + "@lmdb/lmdb-darwin-x64": "2.5.3", + "@lmdb/lmdb-linux-arm": "2.5.3", + "@lmdb/lmdb-linux-arm64": "2.5.3", + "@lmdb/lmdb-linux-x64": "2.5.3", + "@lmdb/lmdb-win32-x64": "2.5.3", "msgpackr": "^1.5.4", "node-addon-api": "^4.3.0", "node-gyp-build-optional-packages": "5.0.3", @@ -2182,108 +2182,87 @@ } }, "@graphql-codegen/add": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/@graphql-codegen/add/-/add-3.1.1.tgz", - "integrity": "sha512-XkVwcqosa0CVBlL1HaQT0gp+EUfhuQE3LzrEpzMQLwchxaj/NPVYtOJL6MUHaYDsHzLqxWrufjfbeB3y2NQgRw==", + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/@graphql-codegen/add/-/add-3.2.0.tgz", + "integrity": "sha512-8hyr5XvTDGnpiT4nH2yH8PP4SWtUEIUdkFaZbkpkFkU0Ud9dplvSviOCdxdArffZ1FHy0XYLTMa2it+UJOtszg==", "requires": { - "@graphql-codegen/plugin-helpers": "^2.3.2", - "tslib": "~2.3.0" + "@graphql-codegen/plugin-helpers": "^2.5.0", + "tslib": "~2.4.0" } }, "@graphql-codegen/core": { - "version": "2.5.1", - "resolved": "https://registry.npmjs.org/@graphql-codegen/core/-/core-2.5.1.tgz", - "integrity": "sha512-alctBVl2hMnBXDLwkgmnFPrZVIiBDsWJSmxJcM4GKg1PB23+xuov35GE47YAyAhQItE1B1fbYnbb1PtGiDZ4LA==", + "version": "2.6.0", + "resolved": "https://registry.npmjs.org/@graphql-codegen/core/-/core-2.6.0.tgz", + "integrity": "sha512-7uZGnLCMR/pnh/5CsyI4y5bBvRndNHFs+AWpMUUjDBcjMRrMaavu37VyyYDz4/ob0BnQJt8RTBN9eArS9PLYAQ==", "requires": { - "@graphql-codegen/plugin-helpers": "^2.4.1", - "@graphql-tools/schema": "^8.1.2", - "@graphql-tools/utils": "^8.1.1", - "tslib": "~2.3.0" + "@graphql-codegen/plugin-helpers": "^2.5.0", + "@graphql-tools/schema": "^8.5.0", + "@graphql-tools/utils": "^8.8.0", + "tslib": "~2.4.0" } }, "@graphql-codegen/plugin-helpers": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/@graphql-codegen/plugin-helpers/-/plugin-helpers-2.4.2.tgz", - "integrity": "sha512-LJNvwAPv/sKtI3RnRDm+nPD+JeOfOuSOS4FFIpQCMUCyMnFcchV/CPTTv7tT12fLUpEg6XjuFfDBvOwndti30Q==", + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/@graphql-codegen/plugin-helpers/-/plugin-helpers-2.5.0.tgz", + "integrity": "sha512-0jM5/14EdM4yow5v8OGOnUmRqfA1gaWkh+J5berqQUpcFYfSQXD6+Idnkiju/jjIypEN7UvbPkC7BgryWVxexA==", "requires": { - "@graphql-tools/utils": "^8.5.2", + "@graphql-tools/utils": "^8.8.0", "change-case-all": "1.0.14", "common-tags": "1.8.2", "import-from": "4.0.0", "lodash": "~4.17.0", - "tslib": "~2.3.0" + "tslib": "~2.4.0" } }, "@graphql-codegen/schema-ast": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/@graphql-codegen/schema-ast/-/schema-ast-2.4.1.tgz", - "integrity": "sha512-bIWlKk/ShoVJfghA4Rt1OWnd34/dQmZM/vAe6fu6QKyOh44aAdqPtYQ2dbTyFXoknmu504etKJGEDllYNUJRfg==", + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/@graphql-codegen/schema-ast/-/schema-ast-2.5.0.tgz", + "integrity": "sha512-nlF4Yc7h90nmogG2E11TeFJ3/hCkb4SDMSdbJX68b1mhvVEji/kq3zWYKAQ+lAzjZ7HF94Eylm3MrZAjjpCKIA==", "requires": { - "@graphql-codegen/plugin-helpers": "^2.3.2", - "@graphql-tools/utils": "^8.1.1", - "tslib": "~2.3.0" + "@graphql-codegen/plugin-helpers": "^2.5.0", + "@graphql-tools/utils": "^8.8.0", + "tslib": "~2.4.0" } }, "@graphql-codegen/typescript": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@graphql-codegen/typescript/-/typescript-2.6.0.tgz", - "integrity": "sha512-f36ilg8J+wui0OhmQglIZ+2z4Ybc08Y7r7BlBDqfJ1F5X0zau0SlC7Hp2iCoCA0ucqZYtiUU/0n+/R8m1cTrQQ==", + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/@graphql-codegen/typescript/-/typescript-2.7.1.tgz", + "integrity": "sha512-qF4SBMgBnLcegba2s9+zC3NwgRhU0Kv+eS8kl9G5ldEHx9Bpu2tft+lk6fjqqhExDzJT+MEOU3Ecog3BzL2R1g==", "requires": { - "@graphql-codegen/plugin-helpers": "^2.4.0", - "@graphql-codegen/schema-ast": "^2.4.1", - "@graphql-codegen/visitor-plugin-common": "2.10.0", + "@graphql-codegen/plugin-helpers": "^2.5.0", + "@graphql-codegen/schema-ast": "^2.5.0", + "@graphql-codegen/visitor-plugin-common": "2.11.1", "auto-bind": "~4.0.0", "tslib": "~2.4.0" - }, - "dependencies": { - "tslib": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz", - "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==" - } } }, "@graphql-codegen/typescript-operations": { - "version": "2.4.3", - "resolved": "https://registry.npmjs.org/@graphql-codegen/typescript-operations/-/typescript-operations-2.4.3.tgz", - "integrity": "sha512-MW9cU/zCAmfFAObwW23e+GrW3CoV9OX2gVm/V1565WGZXDQPUc5Y5IjdfGfunV4ApkgFDiHpF1Mz/AS55OErgw==", + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/@graphql-codegen/typescript-operations/-/typescript-operations-2.5.1.tgz", + "integrity": "sha512-lGv+sPDXGcp/vDdIh7SoQjz8BRCZhLats4Hbqnf6gB7UtIasMvGuFDQyrKb3XAkQQYWqx/xtmEo0rBN8syV+Wg==", "requires": { - "@graphql-codegen/plugin-helpers": "^2.4.0", - "@graphql-codegen/typescript": "^2.6.0", - "@graphql-codegen/visitor-plugin-common": "2.10.0", + "@graphql-codegen/plugin-helpers": "^2.5.0", + "@graphql-codegen/typescript": "^2.7.1", + "@graphql-codegen/visitor-plugin-common": "2.11.1", "auto-bind": "~4.0.0", "tslib": "~2.4.0" - }, - "dependencies": { - "tslib": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz", - "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==" - } } }, "@graphql-codegen/visitor-plugin-common": { - "version": "2.10.0", - "resolved": "https://registry.npmjs.org/@graphql-codegen/visitor-plugin-common/-/visitor-plugin-common-2.10.0.tgz", - "integrity": "sha512-nWoxHKUdwOJCWV96Ks1x4EwYCWsZDJXB+2j6EQz5j27DzdxmQInZ86degaDCd3EgbwhMQEMtiZiPGFFDrgBkHA==", - "requires": { - "@graphql-codegen/plugin-helpers": "^2.4.0", - "@graphql-tools/optimize": "^1.0.1", - "@graphql-tools/relay-operation-optimizer": "^6.4.14", - "@graphql-tools/utils": "^8.3.0", + "version": "2.11.1", + "resolved": "https://registry.npmjs.org/@graphql-codegen/visitor-plugin-common/-/visitor-plugin-common-2.11.1.tgz", + "integrity": "sha512-AlrtGWKn2o89SPna75ATEHYAu95MUMucgBqLgcRvK9n/PHhVAbkDrNCH5pL03fE0HLOup3GpjX8DcnFBMU46IA==", + "requires": { + "@graphql-codegen/plugin-helpers": "^2.5.0", + "@graphql-tools/optimize": "^1.3.0", + "@graphql-tools/relay-operation-optimizer": "^6.5.0", + "@graphql-tools/utils": "^8.8.0", "auto-bind": "~4.0.0", "change-case-all": "1.0.14", "dependency-graph": "^0.11.0", "graphql-tag": "^2.11.0", "parse-filepath": "^1.0.2", "tslib": "~2.4.0" - }, - "dependencies": { - "tslib": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz", - "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==" - } } }, "@graphql-tools/batch-execute": { @@ -2329,13 +2308,6 @@ "globby": "^11.0.3", "tslib": "^2.4.0", "unixify": "^1.0.0" - }, - "dependencies": { - "tslib": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz", - "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==" - } } }, "@graphql-tools/delegate": { @@ -2428,13 +2400,6 @@ "@babel/types": "^7.16.8", "@graphql-tools/utils": "8.8.0", "tslib": "^2.4.0" - }, - "dependencies": { - "tslib": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz", - "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==" - } } }, "@graphql-tools/import": { @@ -2451,11 +2416,6 @@ "version": "5.0.0", "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==" - }, - "tslib": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz", - "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==" } } }, @@ -2510,11 +2470,6 @@ "requires": { "yocto-queue": "^0.1.0" } - }, - "tslib": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz", - "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==" } } }, @@ -2525,13 +2480,6 @@ "requires": { "@graphql-tools/utils": "8.8.0", "tslib": "^2.4.0" - }, - "dependencies": { - "tslib": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz", - "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==" - } } }, "@graphql-tools/optimize": { @@ -2540,13 +2488,6 @@ "integrity": "sha512-30QOWJoMJEt1De7tAFtWJ6VPrP6SLq+tSQrA3x+WMvCW3q2exq5wPDpvAXOakVKu0y8L2E+YkipC0hcQPBQdLg==", "requires": { "tslib": "^2.4.0" - }, - "dependencies": { - "tslib": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz", - "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==" - } } }, "@graphql-tools/relay-operation-optimizer": { @@ -2557,13 +2498,6 @@ "@ardatan/relay-compiler": "12.0.0", "@graphql-tools/utils": "8.8.0", "tslib": "^2.4.0" - }, - "dependencies": { - "tslib": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz", - "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==" - } } }, "@graphql-tools/schema": { @@ -2575,13 +2509,6 @@ "@graphql-tools/utils": "8.8.0", "tslib": "^2.4.0", "value-or-promise": "1.0.11" - }, - "dependencies": { - "tslib": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz", - "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==" - } } }, "@graphql-tools/url-loader": { @@ -2646,13 +2573,6 @@ "integrity": "sha512-KJrtx05uSM/cPYFdTnGAS1doL5bftJLAiFCDMZ8Vkifztz3BFn3gpFiy/o4wDtM8s39G46mxmt2Km/RmeltfGw==", "requires": { "tslib": "^2.4.0" - }, - "dependencies": { - "tslib": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz", - "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==" - } } }, "@graphql-tools/wrap": { @@ -3170,39 +3090,39 @@ } }, "@lmdb/lmdb-darwin-arm64": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-arm64/-/lmdb-darwin-arm64-2.5.2.tgz", - "integrity": "sha512-+F8ioQIUN68B4UFiIBYu0QQvgb9FmlKw2ctQMSBfW2QBrZIxz9vD9jCGqTCPqZBRbPHAS/vG1zSXnKqnS2ch/A==", + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-arm64/-/lmdb-darwin-arm64-2.5.3.tgz", + "integrity": "sha512-RXwGZ/0eCqtCY8FLTM/koR60w+MXyvBUpToXiIyjOcBnC81tAlTUHrRUavCEWPI9zc9VgvpK3+cbumPyR8BSuA==", "optional": true }, "@lmdb/lmdb-darwin-x64": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-x64/-/lmdb-darwin-x64-2.5.2.tgz", - "integrity": "sha512-KvPH56KRLLx4KSfKBx0m1r7GGGUMXm0jrKmNE7plbHlesZMuPJICtn07HYgQhj1LNsK7Yqwuvnqh1QxhJnF1EA==", + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-x64/-/lmdb-darwin-x64-2.5.3.tgz", + "integrity": "sha512-337dNzh5yCdNCTk8kPfoU7jR3otibSlPDGW0vKZT97rKnQMb9tNdto3RtWoGPsQ8hKmlRZpojOJtmwjncq1MoA==", "optional": true }, "@lmdb/lmdb-linux-arm": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm/-/lmdb-linux-arm-2.5.2.tgz", - "integrity": "sha512-5kQAP21hAkfW5Bl+e0P57dV4dGYnkNIpR7f/GAh6QHlgXx+vp/teVj4PGRZaKAvt0GX6++N6hF8NnGElLDuIDw==", + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm/-/lmdb-linux-arm-2.5.3.tgz", + "integrity": "sha512-mU2HFJDGwECkoD9dHQEfeTG5mp8hNS2BCfwoiOpVPMeapjYpQz9Uw3FkUjRZ4dGHWKbin40oWHuL0bk2bCx+Sg==", "optional": true }, "@lmdb/lmdb-linux-arm64": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm64/-/lmdb-linux-arm64-2.5.2.tgz", - "integrity": "sha512-aLl89VHL/wjhievEOlPocoefUyWdvzVrcQ/MHQYZm2JfV1jUsrbr/ZfkPPUFvZBf+VSE+Q0clWs9l29PCX1hTQ==", + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm64/-/lmdb-linux-arm64-2.5.3.tgz", + "integrity": "sha512-VJw60Mdgb4n+L0fO1PqfB0C7TyEQolJAC8qpqvG3JoQwvyOv6LH7Ib/WE3wxEW9nuHmVz9jkK7lk5HfWWgoO1Q==", "optional": true }, "@lmdb/lmdb-linux-x64": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-x64/-/lmdb-linux-x64-2.5.2.tgz", - "integrity": "sha512-xUdUfwDJLGjOUPH3BuPBt0NlIrR7f/QHKgu3GZIXswMMIihAekj2i97oI0iWG5Bok/b+OBjHPfa8IU9velnP/Q==", + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-x64/-/lmdb-linux-x64-2.5.3.tgz", + "integrity": "sha512-qaReO5aV8griBDsBr8uBF/faO3ieGjY1RY4p8JvTL6Mu1ylLrTVvOONqKFlNaCwrmUjWw5jnf7VafxDAeQHTow==", "optional": true }, "@lmdb/lmdb-win32-x64": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-win32-x64/-/lmdb-win32-x64-2.5.2.tgz", - "integrity": "sha512-zrBczSbXKxEyK2ijtbRdICDygRqWSRPpZMN5dD1T8VMEW5RIhIbwFWw2phDRXuBQdVDpSjalCIUMWMV2h3JaZA==", + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-win32-x64/-/lmdb-win32-x64-2.5.3.tgz", + "integrity": "sha512-cK+Elf3RjEzrm3SerAhrFWL5oQAsZSJ/LmjL1joIpTfEP1etJJ9CTRvdaV6XLYAxaEkfdhk/9hOvHLbR9yIhCA==", "optional": true }, "@mdx-js/mdx": { @@ -4116,13 +4036,6 @@ "integrity": "sha512-tb7Iu+oZ+zWJZ3HJqwx8oNwSDIU440hmVMDPhpACWQWnrZHK99Bxs70gT1L2dnr5Hg50ZRWEFkQCAnOVVV0z1Q==", "requires": { "tslib": "^2.4.0" - }, - "dependencies": { - "tslib": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz", - "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==" - } } }, "@szmarczak/http-timer": { @@ -4440,9 +4353,9 @@ } }, "@types/react": { - "version": "18.0.14", - "resolved": "https://registry.npmjs.org/@types/react/-/react-18.0.14.tgz", - "integrity": "sha512-x4gGuASSiWmo0xjDLpm5mPb52syZHJx02VKbqUKdLmKtAwIh63XClGsiTI1K6DO5q7ox4xAsQrU+Gl3+gGXF9Q==", + "version": "18.0.15", + "resolved": "https://registry.npmjs.org/@types/react/-/react-18.0.15.tgz", + "integrity": "sha512-iz3BtLuIYH1uWdsv6wXYdhozhqj20oD4/Hk2DNXIn1kFsmp9x8d9QB6FnPhfkbhd2PgEONt9Q1x/ebkwjfFLow==", "requires": { "@types/prop-types": "*", "@types/scheduler": "*", @@ -5451,14 +5364,14 @@ } }, "caniuse-lite": { - "version": "1.0.30001363", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001363.tgz", - "integrity": "sha512-HpQhpzTGGPVMnCjIomjt+jvyUu8vNFo3TaDiZ/RcoTrlOq/5+tC8zHdsbgFB6MxmaY+jCpsH09aD80Bb4Ow3Sg==" + "version": "1.0.30001365", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001365.tgz", + "integrity": "sha512-VDQZ8OtpuIPMBA4YYvZXECtXbddMCUFJk1qu8Mqxfm/SZJNSr1cy4IuLCOL7RJ/YASrvJcYg1Zh+UEUQ5m6z8Q==" }, "electron-to-chromium": { - "version": "1.4.179", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.179.tgz", - "integrity": "sha512-1XeTb/U/8Xgh2YgPOqhakLYsvCcU4U7jUjTMbEnhIJoIWd/Qt3yC8y0cbG+fHzn4zUNF99Ey1xiPf20bwgLO3Q==" + "version": "1.4.186", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.186.tgz", + "integrity": "sha512-YoVeFrGd/7ROjz4R9uPoND1K/hSRC/xADy9639ZmIZeJSaBnKdYx3I6LMPsY7CXLpK7JFgKQVzeZ/dk2br6Eaw==" } } }, @@ -5667,9 +5580,9 @@ } }, "babel-preset-gatsby": { - "version": "2.18.0", - "resolved": "https://registry.npmjs.org/babel-preset-gatsby/-/babel-preset-gatsby-2.18.0.tgz", - "integrity": "sha512-b6BJEl0MlA/nh+IkTJRgvPEgdN09Pu34Szo5dE4QYvQa66++EqfQUK5huqr+FgZJedPPYYbRY2SgKlRXev5QIQ==", + "version": "2.18.1", + "resolved": "https://registry.npmjs.org/babel-preset-gatsby/-/babel-preset-gatsby-2.18.1.tgz", + "integrity": "sha512-oaVV6ULceMjTQKjCA06qvgfLwBNZFJxpacwNZYOJpLygmj+qYiNKDGhJ8vTw/KAIUeDPZAbPMP5P+3wMEPIWYQ==", "requires": { "@babel/plugin-proposal-class-properties": "^7.14.0", "@babel/plugin-proposal-nullish-coalescing-operator": "^7.14.5", @@ -5684,7 +5597,7 @@ "babel-plugin-dynamic-import-node": "^2.3.3", "babel-plugin-macros": "^3.1.0", "babel-plugin-transform-react-remove-prop-types": "^0.4.24", - "gatsby-core-utils": "^3.18.0", + "gatsby-core-utils": "^3.18.1", "gatsby-legacy-polyfills": "^2.18.0" }, "dependencies": { @@ -5721,9 +5634,9 @@ } }, "gatsby-core-utils": { - "version": "3.18.0", - "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.18.0.tgz", - "integrity": "sha512-mCoNgH4MilosLhEroklgVffwie9lyxgmvNwe/oIyzXr6NcZ2uxSp8G1KrgxdG2srt2hCNlZLlzS25ltLTeHTjA==", + "version": "3.18.1", + "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.18.1.tgz", + "integrity": "sha512-sJTxRqizLxYy/tSFk0ydfqEZ3ek1So9HDVUa39F6Oi8XuPCBTFzaAooUvowKGneI5YUbdk5y4VO4ybwVUynntw==", "requires": { "@babel/runtime": "^7.15.4", "ci-info": "2.0.0", @@ -5733,7 +5646,7 @@ "fs-extra": "^10.1.0", "got": "^11.8.5", "import-from": "^4.0.0", - "lmdb": "2.5.2", + "lmdb": "2.5.3", "lock": "^1.1.0", "node-object-hash": "^2.3.10", "proper-lockfile": "^4.1.2", @@ -5770,16 +5683,16 @@ } }, "lmdb": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/lmdb/-/lmdb-2.5.2.tgz", - "integrity": "sha512-V5V5Xa2Hp9i2XsbDALkBTeHXnBXh/lEmk9p22zdr7jtuOIY9TGhjK6vAvTpOOx9IKU4hJkRWZxn/HsvR1ELLtA==", - "requires": { - "@lmdb/lmdb-darwin-arm64": "2.5.2", - "@lmdb/lmdb-darwin-x64": "2.5.2", - "@lmdb/lmdb-linux-arm": "2.5.2", - "@lmdb/lmdb-linux-arm64": "2.5.2", - "@lmdb/lmdb-linux-x64": "2.5.2", - "@lmdb/lmdb-win32-x64": "2.5.2", + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/lmdb/-/lmdb-2.5.3.tgz", + "integrity": "sha512-iBA0cb13CobBSoGJLfZgnrykLlfJipDAnvtf+YwIqqzBEsTeQYsXrHaSBkaHd5wCWeabwrNvhjZoFMUrlo+eLw==", + "requires": { + "@lmdb/lmdb-darwin-arm64": "2.5.3", + "@lmdb/lmdb-darwin-x64": "2.5.3", + "@lmdb/lmdb-linux-arm": "2.5.3", + "@lmdb/lmdb-linux-arm64": "2.5.3", + "@lmdb/lmdb-linux-x64": "2.5.3", + "@lmdb/lmdb-win32-x64": "2.5.3", "msgpackr": "^1.5.4", "node-addon-api": "^4.3.0", "node-gyp-build-optional-packages": "5.0.3", @@ -6972,9 +6885,9 @@ } }, "core-js-pure": { - "version": "3.23.3", - "resolved": "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.23.3.tgz", - "integrity": "sha512-XpoouuqIj4P+GWtdyV8ZO3/u4KftkeDVMfvp+308eGMhCrA3lVDSmAxO0c6GGOcmgVlaKDrgWVMo49h2ab/TDA==" + "version": "3.23.4", + "resolved": "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.23.4.tgz", + "integrity": "sha512-lizxkcgj3XDmi7TUBFe+bQ1vNpD5E4t76BrBWI3HdUxdw/Mq1VF4CkiHzIKyieECKtcODK2asJttoofEeUKICQ==" }, "core-util-is": { "version": "1.0.2", @@ -7011,9 +6924,9 @@ } }, "create-gatsby": { - "version": "2.18.0", - "resolved": "https://registry.npmjs.org/create-gatsby/-/create-gatsby-2.18.0.tgz", - "integrity": "sha512-74yn3+wlFKwg3DUVdFdBnfqc6gUVpYjqr/1XtQ0Rb57i0ygvER8Xgp4rY5Mm+8rl7JwBma1NONeM20cdMQjT2w==", + "version": "2.18.1", + "resolved": "https://registry.npmjs.org/create-gatsby/-/create-gatsby-2.18.1.tgz", + "integrity": "sha512-1AZioXKi4COhESSHfsb/6tpkBvyuuXHwAmMAGrcUQpbynsQxYdqonnRqnFhp80bA2cIKxgjtHzzLhyRouDonbQ==", "requires": { "@babel/runtime": "^7.15.4" } @@ -9134,9 +9047,9 @@ "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==" }, "gatsby": { - "version": "4.18.0", - "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-4.18.0.tgz", - "integrity": "sha512-EyiwYUsbSKUKsdjm8nnLw5AGJwOJ9NAWcrFg1V/QU4CUnk/M8EiP0TxiGUmK1/K7g82XGxUjuAPYJKJk85yxHA==", + "version": "4.18.1", + "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-4.18.1.tgz", + "integrity": "sha512-frMFAWOmMl/CtqBZ3aZXlysicQQa8C+yfMdjnjx81f7E5xoL20klk1j4UYj1kUnGgBMSuVehU8M+bE0kT02zoQ==", "requires": { "@babel/code-frame": "^7.14.0", "@babel/core": "^7.15.5", @@ -9172,8 +9085,8 @@ "babel-plugin-add-module-exports": "^1.0.4", "babel-plugin-dynamic-import-node": "^2.3.3", "babel-plugin-lodash": "^3.3.4", - "babel-plugin-remove-graphql-queries": "^4.18.0", - "babel-preset-gatsby": "^2.18.0", + "babel-plugin-remove-graphql-queries": "^4.18.1", + "babel-preset-gatsby": "^2.18.1", "better-opn": "^2.1.1", "bluebird": "^3.7.2", "body-parser": "^1.19.0", @@ -9216,20 +9129,20 @@ "find-cache-dir": "^3.3.2", "fs-exists-cached": "1.0.0", "fs-extra": "^10.1.0", - "gatsby-cli": "^4.18.0", - "gatsby-core-utils": "^3.18.0", + "gatsby-cli": "^4.18.1", + "gatsby-core-utils": "^3.18.1", "gatsby-graphiql-explorer": "^2.18.0", "gatsby-legacy-polyfills": "^2.18.0", - "gatsby-link": "^4.18.0", - "gatsby-page-utils": "^2.18.0", - "gatsby-parcel-config": "0.9.0", - "gatsby-plugin-page-creator": "^4.18.0", - "gatsby-plugin-typescript": "^4.18.0", - "gatsby-plugin-utils": "^3.12.0", + "gatsby-link": "^4.18.1", + "gatsby-page-utils": "^2.18.1", + "gatsby-parcel-config": "^0.9.1", + "gatsby-plugin-page-creator": "^4.18.1", + "gatsby-plugin-typescript": "^4.18.1", + "gatsby-plugin-utils": "^3.12.1", "gatsby-react-router-scroll": "^5.18.0", "gatsby-script": "^1.3.0", "gatsby-sharp": "^0.12.0", - "gatsby-telemetry": "^3.18.0", + "gatsby-telemetry": "^3.18.1", "gatsby-worker": "^1.18.0", "glob": "^7.2.3", "globby": "^11.1.0", @@ -9245,7 +9158,7 @@ "joi": "^17.4.2", "json-loader": "^0.5.7", "latest-version": "5.1.0", - "lmdb": "2.5.2", + "lmdb": "2.5.3", "lodash": "^4.17.21", "md5-file": "^5.0.0", "meant": "^1.0.3", @@ -9320,12 +9233,12 @@ } }, "babel-plugin-remove-graphql-queries": { - "version": "4.18.0", - "resolved": "https://registry.npmjs.org/babel-plugin-remove-graphql-queries/-/babel-plugin-remove-graphql-queries-4.18.0.tgz", - "integrity": "sha512-6oOm/cTZdk+7yPh4R4ISLKNur3rK5w2zAUCXTOGKYcRYbvKCS22ODafQBrNcu/UdfpXwSz3XZOG5ru72Z5usUw==", + "version": "4.18.1", + "resolved": "https://registry.npmjs.org/babel-plugin-remove-graphql-queries/-/babel-plugin-remove-graphql-queries-4.18.1.tgz", + "integrity": "sha512-2I7qsm3pnyvrS6/Q9YuHK1SpfQLmrgYH/AjpnWpnLHee6SiVb5Te89iphhpBdycpBRVGWh04ram9+z/1rMaRYQ==", "requires": { "@babel/runtime": "^7.15.4", - "gatsby-core-utils": "^3.18.0" + "gatsby-core-utils": "^3.18.1" } }, "color-convert": { @@ -9342,9 +9255,9 @@ "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" }, "core-js": { - "version": "3.23.3", - "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.23.3.tgz", - "integrity": "sha512-oAKwkj9xcWNBAvGbT//WiCdOMpb9XQG92/Fe3ABFM/R16BsHgePG00mFOgKf7IsCtfj8tA1kHtf/VwErhriz5Q==" + "version": "3.23.4", + "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.23.4.tgz", + "integrity": "sha512-vjsKqRc1RyAJC3Ye2kYqgfdThb3zYnx9CrqoCcjMOENMtQPC7ZViBvlDxwYU/2z2NI/IPuiXw5mT4hWhddqjzQ==" }, "css-tree": { "version": "1.1.3", @@ -9366,9 +9279,9 @@ } }, "gatsby-cli": { - "version": "4.18.0", - "resolved": "https://registry.npmjs.org/gatsby-cli/-/gatsby-cli-4.18.0.tgz", - "integrity": "sha512-H4V1XvXP3EMwUBDbAlpu3jbjlCetUmHY6VB1YsH2kkIdlMrOgjUgNDFpqjgbk7k7z61du2tCgl1lyW+5he+SnA==", + "version": "4.18.1", + "resolved": "https://registry.npmjs.org/gatsby-cli/-/gatsby-cli-4.18.1.tgz", + "integrity": "sha512-ceYqm6i39rHY343zUCflwXnGtd25QGccvToTWL8W42/EGToDW8bubLfeBSRCfjXm946yf1gkS/1UAsAgAphYDA==", "requires": { "@babel/code-frame": "^7.14.0", "@babel/core": "^7.15.5", @@ -9387,13 +9300,13 @@ "common-tags": "^1.8.2", "configstore": "^5.0.1", "convert-hrtime": "^3.0.0", - "create-gatsby": "^2.18.0", + "create-gatsby": "^2.18.1", "envinfo": "^7.8.1", "execa": "^5.1.1", "fs-exists-cached": "^1.0.0", "fs-extra": "^10.1.0", - "gatsby-core-utils": "^3.18.0", - "gatsby-telemetry": "^3.18.0", + "gatsby-core-utils": "^3.18.1", + "gatsby-telemetry": "^3.18.1", "hosted-git-info": "^3.0.8", "is-valid-path": "^0.1.1", "joi": "^17.4.2", @@ -9417,9 +9330,9 @@ } }, "gatsby-core-utils": { - "version": "3.18.0", - "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.18.0.tgz", - "integrity": "sha512-mCoNgH4MilosLhEroklgVffwie9lyxgmvNwe/oIyzXr6NcZ2uxSp8G1KrgxdG2srt2hCNlZLlzS25ltLTeHTjA==", + "version": "3.18.1", + "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.18.1.tgz", + "integrity": "sha512-sJTxRqizLxYy/tSFk0ydfqEZ3ek1So9HDVUa39F6Oi8XuPCBTFzaAooUvowKGneI5YUbdk5y4VO4ybwVUynntw==", "requires": { "@babel/runtime": "^7.15.4", "ci-info": "2.0.0", @@ -9429,7 +9342,7 @@ "fs-extra": "^10.1.0", "got": "^11.8.5", "import-from": "^4.0.0", - "lmdb": "2.5.2", + "lmdb": "2.5.3", "lock": "^1.1.0", "node-object-hash": "^2.3.10", "proper-lockfile": "^4.1.2", @@ -9459,14 +9372,14 @@ } }, "gatsby-plugin-utils": { - "version": "3.12.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-utils/-/gatsby-plugin-utils-3.12.0.tgz", - "integrity": "sha512-vdz3qwaCOkvgzAxMkZlgpmpWf555jISwek5lyWYhGyJJvXYV8KQ2cZ4CoOfFKAYVeZVSucrHcdWyY3fLLpQvAA==", + "version": "3.12.1", + "resolved": "https://registry.npmjs.org/gatsby-plugin-utils/-/gatsby-plugin-utils-3.12.1.tgz", + "integrity": "sha512-Rx7/MFtiJ+pyvPLqCPj5beyMN6qOx3EYMrOqmvrWJaM32nxMfHZqUqxGruufyFNVe6edfRuNuXcKaPXlGlyexA==", "requires": { "@babel/runtime": "^7.15.4", "@gatsbyjs/potrace": "^2.2.0", "fs-extra": "^10.1.0", - "gatsby-core-utils": "^3.18.0", + "gatsby-core-utils": "^3.18.1", "gatsby-sharp": "^0.12.0", "graphql-compose": "^9.0.7", "import-from": "^4.0.0", @@ -9484,9 +9397,9 @@ } }, "gatsby-telemetry": { - "version": "3.18.0", - "resolved": "https://registry.npmjs.org/gatsby-telemetry/-/gatsby-telemetry-3.18.0.tgz", - "integrity": "sha512-i1JvNqGOyLDPGEn1QN29YGpe2ripg2LZBAOhXmk6lAhRL5fTVo6WkEA2yW7XESnXIOJBFymgVbUlLjXoqeZ5Xg==", + "version": "3.18.1", + "resolved": "https://registry.npmjs.org/gatsby-telemetry/-/gatsby-telemetry-3.18.1.tgz", + "integrity": "sha512-EjjsUv15BZGsmnPrOINRT/s7d18DTKokpp2NDZLm8uOs3MwVoLtUZ/BS7h2NTmgK+WN93q3bNYRkZgKgV9QC1A==", "requires": { "@babel/code-frame": "^7.14.0", "@babel/runtime": "^7.15.4", @@ -9496,7 +9409,7 @@ "boxen": "^4.2.0", "configstore": "^5.0.1", "fs-extra": "^10.1.0", - "gatsby-core-utils": "^3.18.0", + "gatsby-core-utils": "^3.18.1", "git-up": "^4.0.5", "is-docker": "^2.2.1", "lodash": "^4.17.21", @@ -9557,16 +9470,16 @@ } }, "lmdb": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/lmdb/-/lmdb-2.5.2.tgz", - "integrity": "sha512-V5V5Xa2Hp9i2XsbDALkBTeHXnBXh/lEmk9p22zdr7jtuOIY9TGhjK6vAvTpOOx9IKU4hJkRWZxn/HsvR1ELLtA==", - "requires": { - "@lmdb/lmdb-darwin-arm64": "2.5.2", - "@lmdb/lmdb-darwin-x64": "2.5.2", - "@lmdb/lmdb-linux-arm": "2.5.2", - "@lmdb/lmdb-linux-arm64": "2.5.2", - "@lmdb/lmdb-linux-x64": "2.5.2", - "@lmdb/lmdb-win32-x64": "2.5.2", + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/lmdb/-/lmdb-2.5.3.tgz", + "integrity": "sha512-iBA0cb13CobBSoGJLfZgnrykLlfJipDAnvtf+YwIqqzBEsTeQYsXrHaSBkaHd5wCWeabwrNvhjZoFMUrlo+eLw==", + "requires": { + "@lmdb/lmdb-darwin-arm64": "2.5.3", + "@lmdb/lmdb-darwin-x64": "2.5.3", + "@lmdb/lmdb-linux-arm": "2.5.3", + "@lmdb/lmdb-linux-arm64": "2.5.3", + "@lmdb/lmdb-linux-x64": "2.5.3", + "@lmdb/lmdb-win32-x64": "2.5.3", "msgpackr": "^1.5.4", "node-addon-api": "^4.3.0", "node-gyp-build-optional-packages": "5.0.3", @@ -9717,26 +9630,26 @@ } }, "gatsby-link": { - "version": "4.18.0", - "resolved": "https://registry.npmjs.org/gatsby-link/-/gatsby-link-4.18.0.tgz", - "integrity": "sha512-nE+Z/iE55Id84YqsQOT1bfPJ/AsupY/4s8i6NllQ8no/PRgDGMpkTG6ANqyt2CHs/bywxch2rv8Ho7Gwsuuueg==", + "version": "4.18.1", + "resolved": "https://registry.npmjs.org/gatsby-link/-/gatsby-link-4.18.1.tgz", + "integrity": "sha512-gLFH2iU4WugHU5k+SLu4F0Ar04kDT5KhkyXly99ZVtiIvHpA5DqcuGNIUjIE/lizSCsfa553wGv7dadfghGzrQ==", "requires": { "@babel/runtime": "^7.15.4", "@types/reach__router": "^1.3.10", - "gatsby-page-utils": "^2.18.0", + "gatsby-page-utils": "^2.18.1", "prop-types": "^15.8.1" } }, "gatsby-page-utils": { - "version": "2.18.0", - "resolved": "https://registry.npmjs.org/gatsby-page-utils/-/gatsby-page-utils-2.18.0.tgz", - "integrity": "sha512-qTwlqscKxkBlMd+Mn8xj6sh7L0LbfLGYOPCYozJnukXv8d/6Jyk1nfaP6I82hwj/iyhaBQtk7g8g4XyBJJaESw==", + "version": "2.18.1", + "resolved": "https://registry.npmjs.org/gatsby-page-utils/-/gatsby-page-utils-2.18.1.tgz", + "integrity": "sha512-4EM0LNOQgnCndHDQSI/ZKRFWYWG9dtTPuGbBaGlmPquhj3zwjOscws1vfj7g+u3PowKjZQ2Rf92RZd8xt8XLTQ==", "requires": { "@babel/runtime": "^7.15.4", "bluebird": "^3.7.2", "chokidar": "^3.5.3", "fs-exists-cached": "^1.0.0", - "gatsby-core-utils": "^3.18.0", + "gatsby-core-utils": "^3.18.1", "glob": "^7.2.3", "lodash": "^4.17.21", "micromatch": "^4.0.5" @@ -9753,9 +9666,9 @@ } }, "gatsby-core-utils": { - "version": "3.18.0", - "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.18.0.tgz", - "integrity": "sha512-mCoNgH4MilosLhEroklgVffwie9lyxgmvNwe/oIyzXr6NcZ2uxSp8G1KrgxdG2srt2hCNlZLlzS25ltLTeHTjA==", + "version": "3.18.1", + "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.18.1.tgz", + "integrity": "sha512-sJTxRqizLxYy/tSFk0ydfqEZ3ek1So9HDVUa39F6Oi8XuPCBTFzaAooUvowKGneI5YUbdk5y4VO4ybwVUynntw==", "requires": { "@babel/runtime": "^7.15.4", "ci-info": "2.0.0", @@ -9765,7 +9678,7 @@ "fs-extra": "^10.1.0", "got": "^11.8.5", "import-from": "^4.0.0", - "lmdb": "2.5.2", + "lmdb": "2.5.3", "lock": "^1.1.0", "node-object-hash": "^2.3.10", "proper-lockfile": "^4.1.2", @@ -9815,16 +9728,16 @@ } }, "lmdb": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/lmdb/-/lmdb-2.5.2.tgz", - "integrity": "sha512-V5V5Xa2Hp9i2XsbDALkBTeHXnBXh/lEmk9p22zdr7jtuOIY9TGhjK6vAvTpOOx9IKU4hJkRWZxn/HsvR1ELLtA==", - "requires": { - "@lmdb/lmdb-darwin-arm64": "2.5.2", - "@lmdb/lmdb-darwin-x64": "2.5.2", - "@lmdb/lmdb-linux-arm": "2.5.2", - "@lmdb/lmdb-linux-arm64": "2.5.2", - "@lmdb/lmdb-linux-x64": "2.5.2", - "@lmdb/lmdb-win32-x64": "2.5.2", + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/lmdb/-/lmdb-2.5.3.tgz", + "integrity": "sha512-iBA0cb13CobBSoGJLfZgnrykLlfJipDAnvtf+YwIqqzBEsTeQYsXrHaSBkaHd5wCWeabwrNvhjZoFMUrlo+eLw==", + "requires": { + "@lmdb/lmdb-darwin-arm64": "2.5.3", + "@lmdb/lmdb-darwin-x64": "2.5.3", + "@lmdb/lmdb-linux-arm": "2.5.3", + "@lmdb/lmdb-linux-arm64": "2.5.3", + "@lmdb/lmdb-linux-x64": "2.5.3", + "@lmdb/lmdb-win32-x64": "2.5.3", "msgpackr": "^1.5.4", "node-addon-api": "^4.3.0", "node-gyp-build-optional-packages": "5.0.3", @@ -9863,11 +9776,11 @@ } }, "gatsby-parcel-config": { - "version": "0.9.0", - "resolved": "https://registry.npmjs.org/gatsby-parcel-config/-/gatsby-parcel-config-0.9.0.tgz", - "integrity": "sha512-ccGw/L8ylhDgE/4tr52B6tb2jreApOMoYPW75Z8aM2ULRz505fL5mrnkG1fdQDBZSCHx/0j0x2TZyCLrt0Bvlw==", + "version": "0.9.1", + "resolved": "https://registry.npmjs.org/gatsby-parcel-config/-/gatsby-parcel-config-0.9.1.tgz", + "integrity": "sha512-ZtVntsQYs0xhy1hvWUMeSLc4a+DvxtTf+NUrPF4rvBjOW/LPMx2eYDzPddKvqWmiUaT1+Ki9S9bwCuOp5muawg==", "requires": { - "@gatsbyjs/parcel-namer-relative-to-cwd": "1.3.0", + "@gatsbyjs/parcel-namer-relative-to-cwd": "^1.3.1", "@parcel/bundler-default": "2.6.0", "@parcel/compressor-raw": "2.6.0", "@parcel/namer-default": "2.6.0", @@ -10051,19 +9964,19 @@ } }, "gatsby-plugin-page-creator": { - "version": "4.18.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-page-creator/-/gatsby-plugin-page-creator-4.18.0.tgz", - "integrity": "sha512-6bY4vJndDw0nBcOuQdX41Wvbctw0y9+a7IavCFJKFeNs+Zo0XH2FX0IAww0slDnSJU6AukJ9qfjHqKJkADAZpQ==", + "version": "4.18.1", + "resolved": "https://registry.npmjs.org/gatsby-plugin-page-creator/-/gatsby-plugin-page-creator-4.18.1.tgz", + "integrity": "sha512-XPAglahQ1fDnSdSNJmtAGwVqB7yZDGPOQQBQX7LD74XwYP6uriRo4LyeI+gEXRqW4d63ZL3VMvgdisde9M95LQ==", "requires": { "@babel/runtime": "^7.15.4", "@babel/traverse": "^7.15.4", "@sindresorhus/slugify": "^1.1.2", "chokidar": "^3.5.3", "fs-exists-cached": "^1.0.0", - "gatsby-core-utils": "^3.18.0", - "gatsby-page-utils": "^2.18.0", - "gatsby-plugin-utils": "^3.12.0", - "gatsby-telemetry": "^3.18.0", + "gatsby-core-utils": "^3.18.1", + "gatsby-page-utils": "^2.18.1", + "gatsby-plugin-utils": "^3.12.1", + "gatsby-telemetry": "^3.18.1", "globby": "^11.1.0", "lodash": "^4.17.21" }, @@ -10133,9 +10046,9 @@ } }, "gatsby-core-utils": { - "version": "3.18.0", - "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.18.0.tgz", - "integrity": "sha512-mCoNgH4MilosLhEroklgVffwie9lyxgmvNwe/oIyzXr6NcZ2uxSp8G1KrgxdG2srt2hCNlZLlzS25ltLTeHTjA==", + "version": "3.18.1", + "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.18.1.tgz", + "integrity": "sha512-sJTxRqizLxYy/tSFk0ydfqEZ3ek1So9HDVUa39F6Oi8XuPCBTFzaAooUvowKGneI5YUbdk5y4VO4ybwVUynntw==", "requires": { "@babel/runtime": "^7.15.4", "ci-info": "2.0.0", @@ -10145,7 +10058,7 @@ "fs-extra": "^10.1.0", "got": "^11.8.5", "import-from": "^4.0.0", - "lmdb": "2.5.2", + "lmdb": "2.5.3", "lock": "^1.1.0", "node-object-hash": "^2.3.10", "proper-lockfile": "^4.1.2", @@ -10155,14 +10068,14 @@ } }, "gatsby-plugin-utils": { - "version": "3.12.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-utils/-/gatsby-plugin-utils-3.12.0.tgz", - "integrity": "sha512-vdz3qwaCOkvgzAxMkZlgpmpWf555jISwek5lyWYhGyJJvXYV8KQ2cZ4CoOfFKAYVeZVSucrHcdWyY3fLLpQvAA==", + "version": "3.12.1", + "resolved": "https://registry.npmjs.org/gatsby-plugin-utils/-/gatsby-plugin-utils-3.12.1.tgz", + "integrity": "sha512-Rx7/MFtiJ+pyvPLqCPj5beyMN6qOx3EYMrOqmvrWJaM32nxMfHZqUqxGruufyFNVe6edfRuNuXcKaPXlGlyexA==", "requires": { "@babel/runtime": "^7.15.4", "@gatsbyjs/potrace": "^2.2.0", "fs-extra": "^10.1.0", - "gatsby-core-utils": "^3.18.0", + "gatsby-core-utils": "^3.18.1", "gatsby-sharp": "^0.12.0", "graphql-compose": "^9.0.7", "import-from": "^4.0.0", @@ -10173,9 +10086,9 @@ } }, "gatsby-telemetry": { - "version": "3.18.0", - "resolved": "https://registry.npmjs.org/gatsby-telemetry/-/gatsby-telemetry-3.18.0.tgz", - "integrity": "sha512-i1JvNqGOyLDPGEn1QN29YGpe2ripg2LZBAOhXmk6lAhRL5fTVo6WkEA2yW7XESnXIOJBFymgVbUlLjXoqeZ5Xg==", + "version": "3.18.1", + "resolved": "https://registry.npmjs.org/gatsby-telemetry/-/gatsby-telemetry-3.18.1.tgz", + "integrity": "sha512-EjjsUv15BZGsmnPrOINRT/s7d18DTKokpp2NDZLm8uOs3MwVoLtUZ/BS7h2NTmgK+WN93q3bNYRkZgKgV9QC1A==", "requires": { "@babel/code-frame": "^7.14.0", "@babel/runtime": "^7.15.4", @@ -10185,7 +10098,7 @@ "boxen": "^4.2.0", "configstore": "^5.0.1", "fs-extra": "^10.1.0", - "gatsby-core-utils": "^3.18.0", + "gatsby-core-utils": "^3.18.1", "git-up": "^4.0.5", "is-docker": "^2.2.1", "lodash": "^4.17.21", @@ -10225,16 +10138,16 @@ } }, "lmdb": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/lmdb/-/lmdb-2.5.2.tgz", - "integrity": "sha512-V5V5Xa2Hp9i2XsbDALkBTeHXnBXh/lEmk9p22zdr7jtuOIY9TGhjK6vAvTpOOx9IKU4hJkRWZxn/HsvR1ELLtA==", - "requires": { - "@lmdb/lmdb-darwin-arm64": "2.5.2", - "@lmdb/lmdb-darwin-x64": "2.5.2", - "@lmdb/lmdb-linux-arm": "2.5.2", - "@lmdb/lmdb-linux-arm64": "2.5.2", - "@lmdb/lmdb-linux-x64": "2.5.2", - "@lmdb/lmdb-win32-x64": "2.5.2", + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/lmdb/-/lmdb-2.5.3.tgz", + "integrity": "sha512-iBA0cb13CobBSoGJLfZgnrykLlfJipDAnvtf+YwIqqzBEsTeQYsXrHaSBkaHd5wCWeabwrNvhjZoFMUrlo+eLw==", + "requires": { + "@lmdb/lmdb-darwin-arm64": "2.5.3", + "@lmdb/lmdb-darwin-x64": "2.5.3", + "@lmdb/lmdb-linux-arm": "2.5.3", + "@lmdb/lmdb-linux-arm64": "2.5.3", + "@lmdb/lmdb-linux-x64": "2.5.3", + "@lmdb/lmdb-win32-x64": "2.5.3", "msgpackr": "^1.5.4", "node-addon-api": "^4.3.0", "node-gyp-build-optional-packages": "5.0.3", @@ -10382,9 +10295,9 @@ } }, "gatsby-plugin-typescript": { - "version": "4.18.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-typescript/-/gatsby-plugin-typescript-4.18.0.tgz", - "integrity": "sha512-SuNBrp57SnovOyhCz0zPkz7begV4UR2XdXUrFsh4N0jWOI5yFNVgENpKlbI/O7JnvgyV5KC/pkobNh3we+0mcQ==", + "version": "4.18.1", + "resolved": "https://registry.npmjs.org/gatsby-plugin-typescript/-/gatsby-plugin-typescript-4.18.1.tgz", + "integrity": "sha512-YUZcqL2WWiL2ngKe4A5FpTjCij2pLxiim+QaujeKfMjeWfHJ13uQ74HlxQXNpGAy4vMRBiU4CJH71RXgS1aoaA==", "requires": { "@babel/core": "^7.15.5", "@babel/plugin-proposal-nullish-coalescing-operator": "^7.14.5", @@ -10392,16 +10305,16 @@ "@babel/plugin-proposal-optional-chaining": "^7.14.5", "@babel/preset-typescript": "^7.15.0", "@babel/runtime": "^7.15.4", - "babel-plugin-remove-graphql-queries": "^4.18.0" + "babel-plugin-remove-graphql-queries": "^4.18.1" }, "dependencies": { "babel-plugin-remove-graphql-queries": { - "version": "4.18.0", - "resolved": "https://registry.npmjs.org/babel-plugin-remove-graphql-queries/-/babel-plugin-remove-graphql-queries-4.18.0.tgz", - "integrity": "sha512-6oOm/cTZdk+7yPh4R4ISLKNur3rK5w2zAUCXTOGKYcRYbvKCS22ODafQBrNcu/UdfpXwSz3XZOG5ru72Z5usUw==", + "version": "4.18.1", + "resolved": "https://registry.npmjs.org/babel-plugin-remove-graphql-queries/-/babel-plugin-remove-graphql-queries-4.18.1.tgz", + "integrity": "sha512-2I7qsm3pnyvrS6/Q9YuHK1SpfQLmrgYH/AjpnWpnLHee6SiVb5Te89iphhpBdycpBRVGWh04ram9+z/1rMaRYQ==", "requires": { "@babel/runtime": "^7.15.4", - "gatsby-core-utils": "^3.18.0" + "gatsby-core-utils": "^3.18.1" } }, "fs-extra": { @@ -10415,9 +10328,9 @@ } }, "gatsby-core-utils": { - "version": "3.18.0", - "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.18.0.tgz", - "integrity": "sha512-mCoNgH4MilosLhEroklgVffwie9lyxgmvNwe/oIyzXr6NcZ2uxSp8G1KrgxdG2srt2hCNlZLlzS25ltLTeHTjA==", + "version": "3.18.1", + "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.18.1.tgz", + "integrity": "sha512-sJTxRqizLxYy/tSFk0ydfqEZ3ek1So9HDVUa39F6Oi8XuPCBTFzaAooUvowKGneI5YUbdk5y4VO4ybwVUynntw==", "requires": { "@babel/runtime": "^7.15.4", "ci-info": "2.0.0", @@ -10427,7 +10340,7 @@ "fs-extra": "^10.1.0", "got": "^11.8.5", "import-from": "^4.0.0", - "lmdb": "2.5.2", + "lmdb": "2.5.3", "lock": "^1.1.0", "node-object-hash": "^2.3.10", "proper-lockfile": "^4.1.2", @@ -10464,16 +10377,16 @@ } }, "lmdb": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/lmdb/-/lmdb-2.5.2.tgz", - "integrity": "sha512-V5V5Xa2Hp9i2XsbDALkBTeHXnBXh/lEmk9p22zdr7jtuOIY9TGhjK6vAvTpOOx9IKU4hJkRWZxn/HsvR1ELLtA==", - "requires": { - "@lmdb/lmdb-darwin-arm64": "2.5.2", - "@lmdb/lmdb-darwin-x64": "2.5.2", - "@lmdb/lmdb-linux-arm": "2.5.2", - "@lmdb/lmdb-linux-arm64": "2.5.2", - "@lmdb/lmdb-linux-x64": "2.5.2", - "@lmdb/lmdb-win32-x64": "2.5.2", + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/lmdb/-/lmdb-2.5.3.tgz", + "integrity": "sha512-iBA0cb13CobBSoGJLfZgnrykLlfJipDAnvtf+YwIqqzBEsTeQYsXrHaSBkaHd5wCWeabwrNvhjZoFMUrlo+eLw==", + "requires": { + "@lmdb/lmdb-darwin-arm64": "2.5.3", + "@lmdb/lmdb-darwin-x64": "2.5.3", + "@lmdb/lmdb-linux-arm": "2.5.3", + "@lmdb/lmdb-linux-arm64": "2.5.3", + "@lmdb/lmdb-linux-x64": "2.5.3", + "@lmdb/lmdb-win32-x64": "2.5.3", "msgpackr": "^1.5.4", "node-addon-api": "^4.3.0", "node-gyp-build-optional-packages": "5.0.3", @@ -12325,9 +12238,9 @@ } }, "jsx-ast-utils": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.3.1.tgz", - "integrity": "sha512-pxrjmNpeRw5wwVeWyEAk7QJu2GnBO3uzPFmHCKJJFPKK2Cy0cWL23krGtLdnMmbIi6/FjlrQpPyfQI19ByPOhQ==", + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.3.2.tgz", + "integrity": "sha512-4ZCADZHRkno244xlNnn4AOG6sRQ7iBZ5BbgZ4vW4y5IZw7cVUD1PPeblm1xx/nfmMxPdt/LHsXZW8z/j58+l9Q==", "requires": { "array-includes": "^3.1.5", "object.assign": "^4.1.2" @@ -12387,9 +12300,9 @@ } }, "lilconfig": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-2.0.5.tgz", - "integrity": "sha512-xaYmXZtTHPAw5m+xLN8ab9C+3a8YmV3asNSPOATITbtwrfbwaLJj8h66H1WMIpALCkqsIzK3h7oQ+PdX+LQ9Eg==" + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-2.0.6.tgz", + "integrity": "sha512-9JROoBW7pobfsx+Sq2JsASvCo6Pfo6WWoUW79HuB1BCoBXD4PLWJPqDF6fNj67pqBYTbAHkE57M1kS/+L1neOg==" }, "lines-and-columns": { "version": "1.1.6", @@ -13072,9 +12985,9 @@ "integrity": "sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==" }, "moment": { - "version": "2.29.3", - "resolved": "https://registry.npmjs.org/moment/-/moment-2.29.3.tgz", - "integrity": "sha512-c6YRvhEo//6T2Jz/vVtYzqBzwvPT95JBQ+smCytzf7c50oMZRsR/a4w88aD34I+/QVSfnoAnSBFPJHItlOMJVw==" + "version": "2.29.4", + "resolved": "https://registry.npmjs.org/moment/-/moment-2.29.4.tgz", + "integrity": "sha512-5LC9SOxjSc2HF6vO2CyuTDNivEdoz2IvyJJGj6X8DJ0eFyfszE0QiEd+iXmBvUP3WHxSjFH/vIsA0EN00cgr8w==" }, "ms": { "version": "2.1.2", @@ -13233,9 +13146,9 @@ "integrity": "sha512-jY5dPJzw6NHd/KPSfPKJ+IHoFS81/tJ43r34ZeNMXGzCOM8jwQDCD12HYayKIB6MuznrnqIYy2e891NA2g0ibA==" }, "node-releases": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.5.tgz", - "integrity": "sha512-U9h1NLROZTq9uE1SNffn6WuPDg8icmi3ns4rEl/oTfIle4iLjTliCzgTsbaIFMq/Xn078/lfY/BL0GWZ+psK4Q==" + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.6.tgz", + "integrity": "sha512-PiVXnNuFm5+iYkLBNeq5211hvO38y63T0i2KKh2KnUs3RpzJ+JtODFjkD8yjLwnDkTYF1eKXheUwdssR+NRZdg==" }, "normalize-path": { "version": "3.0.0", @@ -14170,14 +14083,14 @@ } }, "caniuse-lite": { - "version": "1.0.30001363", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001363.tgz", - "integrity": "sha512-HpQhpzTGGPVMnCjIomjt+jvyUu8vNFo3TaDiZ/RcoTrlOq/5+tC8zHdsbgFB6MxmaY+jCpsH09aD80Bb4Ow3Sg==" + "version": "1.0.30001365", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001365.tgz", + "integrity": "sha512-VDQZ8OtpuIPMBA4YYvZXECtXbddMCUFJk1qu8Mqxfm/SZJNSr1cy4IuLCOL7RJ/YASrvJcYg1Zh+UEUQ5m6z8Q==" }, "electron-to-chromium": { - "version": "1.4.179", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.179.tgz", - "integrity": "sha512-1XeTb/U/8Xgh2YgPOqhakLYsvCcU4U7jUjTMbEnhIJoIWd/Qt3yC8y0cbG+fHzn4zUNF99Ey1xiPf20bwgLO3Q==" + "version": "1.4.186", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.186.tgz", + "integrity": "sha512-YoVeFrGd/7ROjz4R9uPoND1K/hSRC/xADy9639ZmIZeJSaBnKdYx3I6LMPsY7CXLpK7JFgKQVzeZ/dk2br6Eaw==" } } }, @@ -16951,9 +16864,9 @@ } }, "tslib": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.1.tgz", - "integrity": "sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw==" + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz", + "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==" }, "tsutils": { "version": "3.21.0", diff --git a/starters/gatsby-starter-theme/package.json b/starters/gatsby-starter-theme/package.json index 16157f56152f0..3d119ad99ecb8 100644 --- a/starters/gatsby-starter-theme/package.json +++ b/starters/gatsby-starter-theme/package.json @@ -10,7 +10,7 @@ }, "license": "0BSD", "dependencies": { - "gatsby": "^4.18.0", + "gatsby": "^4.18.1", "gatsby-theme-blog": "^4.0.0", "gatsby-theme-notes": "^4.0.0", "react": "^17.0.2", diff --git a/starters/gatsby-starter-wordpress-blog/package-lock.json b/starters/gatsby-starter-wordpress-blog/package-lock.json index 720407f5518cd..8908919f6da2f 100644 --- a/starters/gatsby-starter-wordpress-blog/package-lock.json +++ b/starters/gatsby-starter-wordpress-blog/package-lock.json @@ -61,9 +61,9 @@ } }, "@babel/compat-data": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.18.6.tgz", - "integrity": "sha512-tzulrgDT0QD6U7BJ4TKVk2SDDg7wlP39P9yAx1RfLy7vP/7rsDRlWVfbWxElslu56+r7QOhB2NSDsabYYruoZQ==" + "version": "7.18.8", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.18.8.tgz", + "integrity": "sha512-HSmX4WZPPK3FUxYp7g2T6EyO8j96HlZJlxmKPSh6KAcqwyDrfx7hKjXpAW/0FhFfTJsR0Yt4lAjLI2coMptIHQ==" }, "@babel/core": { "version": "7.18.6", @@ -111,9 +111,9 @@ } }, "@babel/types": { - "version": "7.18.7", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.7.tgz", - "integrity": "sha512-QG3yxTcTIBoAcQmkCs+wAPYZhu7Dk9rXKacINfNbdJDNERTbLQbHGyVG8q/YGMPeCJRIhSY0+fTc5+xuh6WPSQ==", + "version": "7.18.8", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.8.tgz", + "integrity": "sha512-qwpdsmraq0aJ3osLJRApsc2ouSJCdnMeZwB0DhbtHAtRpZNZCdlbRnHIgcRKzdE1g0iOGg644fzjOBcdOz9cPw==", "requires": { "@babel/helper-validator-identifier": "^7.18.6", "to-fast-properties": "^2.0.0" @@ -177,9 +177,9 @@ "integrity": "sha512-MmetCkz9ej86nJQV+sFCxoGGrUbU3q02kgLciwkrt9QqEB7cP39oKEY0PakknEO0Gu20SskMRi+AYZ3b1TpN9g==" }, "@babel/types": { - "version": "7.18.7", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.7.tgz", - "integrity": "sha512-QG3yxTcTIBoAcQmkCs+wAPYZhu7Dk9rXKacINfNbdJDNERTbLQbHGyVG8q/YGMPeCJRIhSY0+fTc5+xuh6WPSQ==", + "version": "7.18.8", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.8.tgz", + "integrity": "sha512-qwpdsmraq0aJ3osLJRApsc2ouSJCdnMeZwB0DhbtHAtRpZNZCdlbRnHIgcRKzdE1g0iOGg644fzjOBcdOz9cPw==", "requires": { "@babel/helper-validator-identifier": "^7.18.6", "to-fast-properties": "^2.0.0" @@ -211,9 +211,9 @@ "integrity": "sha512-MmetCkz9ej86nJQV+sFCxoGGrUbU3q02kgLciwkrt9QqEB7cP39oKEY0PakknEO0Gu20SskMRi+AYZ3b1TpN9g==" }, "@babel/types": { - "version": "7.18.7", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.7.tgz", - "integrity": "sha512-QG3yxTcTIBoAcQmkCs+wAPYZhu7Dk9rXKacINfNbdJDNERTbLQbHGyVG8q/YGMPeCJRIhSY0+fTc5+xuh6WPSQ==", + "version": "7.18.8", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.8.tgz", + "integrity": "sha512-qwpdsmraq0aJ3osLJRApsc2ouSJCdnMeZwB0DhbtHAtRpZNZCdlbRnHIgcRKzdE1g0iOGg644fzjOBcdOz9cPw==", "requires": { "@babel/helper-validator-identifier": "^7.18.6", "to-fast-properties": "^2.0.0" @@ -236,9 +236,9 @@ "integrity": "sha512-MmetCkz9ej86nJQV+sFCxoGGrUbU3q02kgLciwkrt9QqEB7cP39oKEY0PakknEO0Gu20SskMRi+AYZ3b1TpN9g==" }, "@babel/types": { - "version": "7.18.7", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.7.tgz", - "integrity": "sha512-QG3yxTcTIBoAcQmkCs+wAPYZhu7Dk9rXKacINfNbdJDNERTbLQbHGyVG8q/YGMPeCJRIhSY0+fTc5+xuh6WPSQ==", + "version": "7.18.8", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.8.tgz", + "integrity": "sha512-qwpdsmraq0aJ3osLJRApsc2ouSJCdnMeZwB0DhbtHAtRpZNZCdlbRnHIgcRKzdE1g0iOGg644fzjOBcdOz9cPw==", "requires": { "@babel/helper-validator-identifier": "^7.18.6", "to-fast-properties": "^2.0.0" @@ -336,9 +336,9 @@ "integrity": "sha512-MmetCkz9ej86nJQV+sFCxoGGrUbU3q02kgLciwkrt9QqEB7cP39oKEY0PakknEO0Gu20SskMRi+AYZ3b1TpN9g==" }, "@babel/types": { - "version": "7.18.7", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.7.tgz", - "integrity": "sha512-QG3yxTcTIBoAcQmkCs+wAPYZhu7Dk9rXKacINfNbdJDNERTbLQbHGyVG8q/YGMPeCJRIhSY0+fTc5+xuh6WPSQ==", + "version": "7.18.8", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.8.tgz", + "integrity": "sha512-qwpdsmraq0aJ3osLJRApsc2ouSJCdnMeZwB0DhbtHAtRpZNZCdlbRnHIgcRKzdE1g0iOGg644fzjOBcdOz9cPw==", "requires": { "@babel/helper-validator-identifier": "^7.18.6", "to-fast-properties": "^2.0.0" @@ -361,9 +361,9 @@ "integrity": "sha512-MmetCkz9ej86nJQV+sFCxoGGrUbU3q02kgLciwkrt9QqEB7cP39oKEY0PakknEO0Gu20SskMRi+AYZ3b1TpN9g==" }, "@babel/types": { - "version": "7.18.7", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.7.tgz", - "integrity": "sha512-QG3yxTcTIBoAcQmkCs+wAPYZhu7Dk9rXKacINfNbdJDNERTbLQbHGyVG8q/YGMPeCJRIhSY0+fTc5+xuh6WPSQ==", + "version": "7.18.8", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.8.tgz", + "integrity": "sha512-qwpdsmraq0aJ3osLJRApsc2ouSJCdnMeZwB0DhbtHAtRpZNZCdlbRnHIgcRKzdE1g0iOGg644fzjOBcdOz9cPw==", "requires": { "@babel/helper-validator-identifier": "^7.18.6", "to-fast-properties": "^2.0.0" @@ -385,9 +385,9 @@ "integrity": "sha512-MmetCkz9ej86nJQV+sFCxoGGrUbU3q02kgLciwkrt9QqEB7cP39oKEY0PakknEO0Gu20SskMRi+AYZ3b1TpN9g==" }, "@babel/types": { - "version": "7.18.7", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.7.tgz", - "integrity": "sha512-QG3yxTcTIBoAcQmkCs+wAPYZhu7Dk9rXKacINfNbdJDNERTbLQbHGyVG8q/YGMPeCJRIhSY0+fTc5+xuh6WPSQ==", + "version": "7.18.8", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.8.tgz", + "integrity": "sha512-qwpdsmraq0aJ3osLJRApsc2ouSJCdnMeZwB0DhbtHAtRpZNZCdlbRnHIgcRKzdE1g0iOGg644fzjOBcdOz9cPw==", "requires": { "@babel/helper-validator-identifier": "^7.18.6", "to-fast-properties": "^2.0.0" @@ -409,9 +409,9 @@ "integrity": "sha512-MmetCkz9ej86nJQV+sFCxoGGrUbU3q02kgLciwkrt9QqEB7cP39oKEY0PakknEO0Gu20SskMRi+AYZ3b1TpN9g==" }, "@babel/types": { - "version": "7.18.7", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.7.tgz", - "integrity": "sha512-QG3yxTcTIBoAcQmkCs+wAPYZhu7Dk9rXKacINfNbdJDNERTbLQbHGyVG8q/YGMPeCJRIhSY0+fTc5+xuh6WPSQ==", + "version": "7.18.8", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.8.tgz", + "integrity": "sha512-qwpdsmraq0aJ3osLJRApsc2ouSJCdnMeZwB0DhbtHAtRpZNZCdlbRnHIgcRKzdE1g0iOGg644fzjOBcdOz9cPw==", "requires": { "@babel/helper-validator-identifier": "^7.18.6", "to-fast-properties": "^2.0.0" @@ -428,9 +428,9 @@ } }, "@babel/helper-module-transforms": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.18.6.tgz", - "integrity": "sha512-L//phhB4al5uucwzlimruukHB3jRd5JGClwRMD/ROrVjXfLqovYnvQrK/JK36WYyVwGGO7OD3kMyVTjx+WVPhw==", + "version": "7.18.8", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.18.8.tgz", + "integrity": "sha512-che3jvZwIcZxrwh63VfnFTUzcAM9v/lznYkkRxIBGMPt1SudOKHAEec0SIRCfiuIzTcF7VGj/CaTT6gY4eWxvA==", "requires": { "@babel/helper-environment-visitor": "^7.18.6", "@babel/helper-module-imports": "^7.18.6", @@ -438,8 +438,8 @@ "@babel/helper-split-export-declaration": "^7.18.6", "@babel/helper-validator-identifier": "^7.18.6", "@babel/template": "^7.18.6", - "@babel/traverse": "^7.18.6", - "@babel/types": "^7.18.6" + "@babel/traverse": "^7.18.8", + "@babel/types": "^7.18.8" }, "dependencies": { "@babel/helper-module-imports": { @@ -456,9 +456,9 @@ "integrity": "sha512-MmetCkz9ej86nJQV+sFCxoGGrUbU3q02kgLciwkrt9QqEB7cP39oKEY0PakknEO0Gu20SskMRi+AYZ3b1TpN9g==" }, "@babel/types": { - "version": "7.18.7", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.7.tgz", - "integrity": "sha512-QG3yxTcTIBoAcQmkCs+wAPYZhu7Dk9rXKacINfNbdJDNERTbLQbHGyVG8q/YGMPeCJRIhSY0+fTc5+xuh6WPSQ==", + "version": "7.18.8", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.8.tgz", + "integrity": "sha512-qwpdsmraq0aJ3osLJRApsc2ouSJCdnMeZwB0DhbtHAtRpZNZCdlbRnHIgcRKzdE1g0iOGg644fzjOBcdOz9cPw==", "requires": { "@babel/helper-validator-identifier": "^7.18.6", "to-fast-properties": "^2.0.0" @@ -480,9 +480,9 @@ "integrity": "sha512-MmetCkz9ej86nJQV+sFCxoGGrUbU3q02kgLciwkrt9QqEB7cP39oKEY0PakknEO0Gu20SskMRi+AYZ3b1TpN9g==" }, "@babel/types": { - "version": "7.18.7", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.7.tgz", - "integrity": "sha512-QG3yxTcTIBoAcQmkCs+wAPYZhu7Dk9rXKacINfNbdJDNERTbLQbHGyVG8q/YGMPeCJRIhSY0+fTc5+xuh6WPSQ==", + "version": "7.18.8", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.8.tgz", + "integrity": "sha512-qwpdsmraq0aJ3osLJRApsc2ouSJCdnMeZwB0DhbtHAtRpZNZCdlbRnHIgcRKzdE1g0iOGg644fzjOBcdOz9cPw==", "requires": { "@babel/helper-validator-identifier": "^7.18.6", "to-fast-properties": "^2.0.0" @@ -512,9 +512,9 @@ "integrity": "sha512-MmetCkz9ej86nJQV+sFCxoGGrUbU3q02kgLciwkrt9QqEB7cP39oKEY0PakknEO0Gu20SskMRi+AYZ3b1TpN9g==" }, "@babel/types": { - "version": "7.18.7", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.7.tgz", - "integrity": "sha512-QG3yxTcTIBoAcQmkCs+wAPYZhu7Dk9rXKacINfNbdJDNERTbLQbHGyVG8q/YGMPeCJRIhSY0+fTc5+xuh6WPSQ==", + "version": "7.18.8", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.8.tgz", + "integrity": "sha512-qwpdsmraq0aJ3osLJRApsc2ouSJCdnMeZwB0DhbtHAtRpZNZCdlbRnHIgcRKzdE1g0iOGg644fzjOBcdOz9cPw==", "requires": { "@babel/helper-validator-identifier": "^7.18.6", "to-fast-properties": "^2.0.0" @@ -540,9 +540,9 @@ "integrity": "sha512-MmetCkz9ej86nJQV+sFCxoGGrUbU3q02kgLciwkrt9QqEB7cP39oKEY0PakknEO0Gu20SskMRi+AYZ3b1TpN9g==" }, "@babel/types": { - "version": "7.18.7", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.7.tgz", - "integrity": "sha512-QG3yxTcTIBoAcQmkCs+wAPYZhu7Dk9rXKacINfNbdJDNERTbLQbHGyVG8q/YGMPeCJRIhSY0+fTc5+xuh6WPSQ==", + "version": "7.18.8", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.8.tgz", + "integrity": "sha512-qwpdsmraq0aJ3osLJRApsc2ouSJCdnMeZwB0DhbtHAtRpZNZCdlbRnHIgcRKzdE1g0iOGg644fzjOBcdOz9cPw==", "requires": { "@babel/helper-validator-identifier": "^7.18.6", "to-fast-properties": "^2.0.0" @@ -564,9 +564,9 @@ "integrity": "sha512-MmetCkz9ej86nJQV+sFCxoGGrUbU3q02kgLciwkrt9QqEB7cP39oKEY0PakknEO0Gu20SskMRi+AYZ3b1TpN9g==" }, "@babel/types": { - "version": "7.18.7", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.7.tgz", - "integrity": "sha512-QG3yxTcTIBoAcQmkCs+wAPYZhu7Dk9rXKacINfNbdJDNERTbLQbHGyVG8q/YGMPeCJRIhSY0+fTc5+xuh6WPSQ==", + "version": "7.18.8", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.8.tgz", + "integrity": "sha512-qwpdsmraq0aJ3osLJRApsc2ouSJCdnMeZwB0DhbtHAtRpZNZCdlbRnHIgcRKzdE1g0iOGg644fzjOBcdOz9cPw==", "requires": { "@babel/helper-validator-identifier": "^7.18.6", "to-fast-properties": "^2.0.0" @@ -588,9 +588,9 @@ "integrity": "sha512-MmetCkz9ej86nJQV+sFCxoGGrUbU3q02kgLciwkrt9QqEB7cP39oKEY0PakknEO0Gu20SskMRi+AYZ3b1TpN9g==" }, "@babel/types": { - "version": "7.18.7", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.7.tgz", - "integrity": "sha512-QG3yxTcTIBoAcQmkCs+wAPYZhu7Dk9rXKacINfNbdJDNERTbLQbHGyVG8q/YGMPeCJRIhSY0+fTc5+xuh6WPSQ==", + "version": "7.18.8", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.8.tgz", + "integrity": "sha512-qwpdsmraq0aJ3osLJRApsc2ouSJCdnMeZwB0DhbtHAtRpZNZCdlbRnHIgcRKzdE1g0iOGg644fzjOBcdOz9cPw==", "requires": { "@babel/helper-validator-identifier": "^7.18.6", "to-fast-properties": "^2.0.0" @@ -612,9 +612,9 @@ "integrity": "sha512-MmetCkz9ej86nJQV+sFCxoGGrUbU3q02kgLciwkrt9QqEB7cP39oKEY0PakknEO0Gu20SskMRi+AYZ3b1TpN9g==" }, "@babel/types": { - "version": "7.18.7", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.7.tgz", - "integrity": "sha512-QG3yxTcTIBoAcQmkCs+wAPYZhu7Dk9rXKacINfNbdJDNERTbLQbHGyVG8q/YGMPeCJRIhSY0+fTc5+xuh6WPSQ==", + "version": "7.18.8", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.8.tgz", + "integrity": "sha512-qwpdsmraq0aJ3osLJRApsc2ouSJCdnMeZwB0DhbtHAtRpZNZCdlbRnHIgcRKzdE1g0iOGg644fzjOBcdOz9cPw==", "requires": { "@babel/helper-validator-identifier": "^7.18.6", "to-fast-properties": "^2.0.0" @@ -649,9 +649,9 @@ "integrity": "sha512-MmetCkz9ej86nJQV+sFCxoGGrUbU3q02kgLciwkrt9QqEB7cP39oKEY0PakknEO0Gu20SskMRi+AYZ3b1TpN9g==" }, "@babel/types": { - "version": "7.18.7", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.7.tgz", - "integrity": "sha512-QG3yxTcTIBoAcQmkCs+wAPYZhu7Dk9rXKacINfNbdJDNERTbLQbHGyVG8q/YGMPeCJRIhSY0+fTc5+xuh6WPSQ==", + "version": "7.18.8", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.8.tgz", + "integrity": "sha512-qwpdsmraq0aJ3osLJRApsc2ouSJCdnMeZwB0DhbtHAtRpZNZCdlbRnHIgcRKzdE1g0iOGg644fzjOBcdOz9cPw==", "requires": { "@babel/helper-validator-identifier": "^7.18.6", "to-fast-properties": "^2.0.0" @@ -675,9 +675,9 @@ "integrity": "sha512-MmetCkz9ej86nJQV+sFCxoGGrUbU3q02kgLciwkrt9QqEB7cP39oKEY0PakknEO0Gu20SskMRi+AYZ3b1TpN9g==" }, "@babel/types": { - "version": "7.18.7", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.7.tgz", - "integrity": "sha512-QG3yxTcTIBoAcQmkCs+wAPYZhu7Dk9rXKacINfNbdJDNERTbLQbHGyVG8q/YGMPeCJRIhSY0+fTc5+xuh6WPSQ==", + "version": "7.18.8", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.8.tgz", + "integrity": "sha512-qwpdsmraq0aJ3osLJRApsc2ouSJCdnMeZwB0DhbtHAtRpZNZCdlbRnHIgcRKzdE1g0iOGg644fzjOBcdOz9cPw==", "requires": { "@babel/helper-validator-identifier": "^7.18.6", "to-fast-properties": "^2.0.0" @@ -742,9 +742,9 @@ } }, "@babel/parser": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.18.6.tgz", - "integrity": "sha512-uQVSa9jJUe/G/304lXspfWVpKpK4euFLgGiMQFOCpM/bgcAdeoHwi/OQz23O9GK2osz26ZiXRRV9aV+Yl1O8tw==" + "version": "7.18.8", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.18.8.tgz", + "integrity": "sha512-RSKRfYX20dyH+elbJK2uqAkVyucL+xXzhqlMD5/ZXx+dAAwpyB7HsvnHe/ZUGOF+xLr5Wx9/JoXVTj6BQE2/oA==" }, "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": { "version": "7.18.6", @@ -1084,9 +1084,9 @@ "integrity": "sha512-MmetCkz9ej86nJQV+sFCxoGGrUbU3q02kgLciwkrt9QqEB7cP39oKEY0PakknEO0Gu20SskMRi+AYZ3b1TpN9g==" }, "@babel/types": { - "version": "7.18.7", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.7.tgz", - "integrity": "sha512-QG3yxTcTIBoAcQmkCs+wAPYZhu7Dk9rXKacINfNbdJDNERTbLQbHGyVG8q/YGMPeCJRIhSY0+fTc5+xuh6WPSQ==", + "version": "7.18.8", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.8.tgz", + "integrity": "sha512-qwpdsmraq0aJ3osLJRApsc2ouSJCdnMeZwB0DhbtHAtRpZNZCdlbRnHIgcRKzdE1g0iOGg644fzjOBcdOz9cPw==", "requires": { "@babel/helper-validator-identifier": "^7.18.6", "to-fast-properties": "^2.0.0" @@ -1111,9 +1111,9 @@ } }, "@babel/plugin-transform-classes": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.18.6.tgz", - "integrity": "sha512-XTg8XW/mKpzAF3actL554Jl/dOYoJtv3l8fxaEczpgz84IeeVf+T1u2CSvPHuZbt0w3JkIx4rdn/MRQI7mo0HQ==", + "version": "7.18.8", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.18.8.tgz", + "integrity": "sha512-RySDoXdF6hgHSHuAW4aLGyVQdmvEX/iJtjVre52k0pxRq4hzqze+rAVP++NmNv596brBpYmaiKgTZby7ziBnVg==", "requires": { "@babel/helper-annotate-as-pure": "^7.18.6", "@babel/helper-environment-visitor": "^7.18.6", @@ -1177,9 +1177,9 @@ } }, "@babel/plugin-transform-for-of": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.18.6.tgz", - "integrity": "sha512-WAjoMf4wIiSsy88KmG7tgj2nFdEK7E46tArVtcgED7Bkj6Fg/tG5SbvNIOKxbFS2VFgNh6+iaPswBeQZm4ox8w==", + "version": "7.18.8", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.18.8.tgz", + "integrity": "sha512-yEfTRnjuskWYo0k1mHUqrVWaZwrdq8AYbfrpqULOJOaucGSp4mNMVps+YtA8byoevxS/urwU75vyhQIxcCgiBQ==", "requires": { "@babel/helper-plugin-utils": "^7.18.6" } @@ -1286,9 +1286,9 @@ } }, "@babel/plugin-transform-parameters": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.18.6.tgz", - "integrity": "sha512-FjdqgMv37yVl/gwvzkcB+wfjRI8HQmc5EgOG9iGNvUY1ok+TjsoaMP7IqCDZBhkFcM5f3OPVMs6Dmp03C5k4/A==", + "version": "7.18.8", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.18.8.tgz", + "integrity": "sha512-ivfbE3X2Ss+Fj8nnXvKJS6sjRG4gzwPMsP+taZC+ZzEGjAYlvENixmt1sZ5Ca6tWls+BlKSGKPJ6OOXvXCbkFg==", "requires": { "@babel/helper-plugin-utils": "^7.18.6" } @@ -1335,9 +1335,9 @@ "integrity": "sha512-MmetCkz9ej86nJQV+sFCxoGGrUbU3q02kgLciwkrt9QqEB7cP39oKEY0PakknEO0Gu20SskMRi+AYZ3b1TpN9g==" }, "@babel/types": { - "version": "7.18.7", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.7.tgz", - "integrity": "sha512-QG3yxTcTIBoAcQmkCs+wAPYZhu7Dk9rXKacINfNbdJDNERTbLQbHGyVG8q/YGMPeCJRIhSY0+fTc5+xuh6WPSQ==", + "version": "7.18.8", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.8.tgz", + "integrity": "sha512-qwpdsmraq0aJ3osLJRApsc2ouSJCdnMeZwB0DhbtHAtRpZNZCdlbRnHIgcRKzdE1g0iOGg644fzjOBcdOz9cPw==", "requires": { "@babel/helper-validator-identifier": "^7.18.6", "to-fast-properties": "^2.0.0" @@ -1406,9 +1406,9 @@ "integrity": "sha512-MmetCkz9ej86nJQV+sFCxoGGrUbU3q02kgLciwkrt9QqEB7cP39oKEY0PakknEO0Gu20SskMRi+AYZ3b1TpN9g==" }, "@babel/types": { - "version": "7.18.7", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.7.tgz", - "integrity": "sha512-QG3yxTcTIBoAcQmkCs+wAPYZhu7Dk9rXKacINfNbdJDNERTbLQbHGyVG8q/YGMPeCJRIhSY0+fTc5+xuh6WPSQ==", + "version": "7.18.8", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.8.tgz", + "integrity": "sha512-qwpdsmraq0aJ3osLJRApsc2ouSJCdnMeZwB0DhbtHAtRpZNZCdlbRnHIgcRKzdE1g0iOGg644fzjOBcdOz9cPw==", "requires": { "@babel/helper-validator-identifier": "^7.18.6", "to-fast-properties": "^2.0.0" @@ -1463,9 +1463,9 @@ } }, "@babel/plugin-transform-typescript": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.18.6.tgz", - "integrity": "sha512-ijHNhzIrLj5lQCnI6aaNVRtGVuUZhOXFLRVFs7lLrkXTHip4FKty5oAuQdk4tywG0/WjXmjTfQCWmuzrvFer1w==", + "version": "7.18.8", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.18.8.tgz", + "integrity": "sha512-p2xM8HI83UObjsZGofMV/EdYjamsDm6MoN3hXPYIT0+gxIoopE+B7rPYKAxfrz9K9PK7JafTTjqYC6qipLExYA==", "requires": { "@babel/helper-create-class-features-plugin": "^7.18.6", "@babel/helper-plugin-utils": "^7.18.6", @@ -1577,9 +1577,9 @@ "integrity": "sha512-MmetCkz9ej86nJQV+sFCxoGGrUbU3q02kgLciwkrt9QqEB7cP39oKEY0PakknEO0Gu20SskMRi+AYZ3b1TpN9g==" }, "@babel/types": { - "version": "7.18.7", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.7.tgz", - "integrity": "sha512-QG3yxTcTIBoAcQmkCs+wAPYZhu7Dk9rXKacINfNbdJDNERTbLQbHGyVG8q/YGMPeCJRIhSY0+fTc5+xuh6WPSQ==", + "version": "7.18.8", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.8.tgz", + "integrity": "sha512-qwpdsmraq0aJ3osLJRApsc2ouSJCdnMeZwB0DhbtHAtRpZNZCdlbRnHIgcRKzdE1g0iOGg644fzjOBcdOz9cPw==", "requires": { "@babel/helper-validator-identifier": "^7.18.6", "to-fast-properties": "^2.0.0" @@ -1678,9 +1678,9 @@ } }, "@babel/types": { - "version": "7.18.7", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.7.tgz", - "integrity": "sha512-QG3yxTcTIBoAcQmkCs+wAPYZhu7Dk9rXKacINfNbdJDNERTbLQbHGyVG8q/YGMPeCJRIhSY0+fTc5+xuh6WPSQ==", + "version": "7.18.8", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.8.tgz", + "integrity": "sha512-qwpdsmraq0aJ3osLJRApsc2ouSJCdnMeZwB0DhbtHAtRpZNZCdlbRnHIgcRKzdE1g0iOGg644fzjOBcdOz9cPw==", "requires": { "@babel/helper-validator-identifier": "^7.18.6", "to-fast-properties": "^2.0.0" @@ -1699,18 +1699,18 @@ } }, "@babel/traverse": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.18.6.tgz", - "integrity": "sha512-zS/OKyqmD7lslOtFqbscH6gMLFYOfG1YPqCKfAW5KrTeolKqvB8UelR49Fpr6y93kYkW2Ik00mT1LOGiAGvizw==", + "version": "7.18.8", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.18.8.tgz", + "integrity": "sha512-UNg/AcSySJYR/+mIcJQDCv00T+AqRO7j/ZEJLzpaYtgM48rMg5MnkJgyNqkzo88+p4tfRvZJCEiwwfG6h4jkRg==", "requires": { "@babel/code-frame": "^7.18.6", - "@babel/generator": "^7.18.6", + "@babel/generator": "^7.18.7", "@babel/helper-environment-visitor": "^7.18.6", "@babel/helper-function-name": "^7.18.6", "@babel/helper-hoist-variables": "^7.18.6", "@babel/helper-split-export-declaration": "^7.18.6", - "@babel/parser": "^7.18.6", - "@babel/types": "^7.18.6", + "@babel/parser": "^7.18.8", + "@babel/types": "^7.18.8", "debug": "^4.1.0", "globals": "^11.1.0" }, @@ -1739,9 +1739,9 @@ } }, "@babel/types": { - "version": "7.18.7", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.7.tgz", - "integrity": "sha512-QG3yxTcTIBoAcQmkCs+wAPYZhu7Dk9rXKacINfNbdJDNERTbLQbHGyVG8q/YGMPeCJRIhSY0+fTc5+xuh6WPSQ==", + "version": "7.18.8", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.8.tgz", + "integrity": "sha512-qwpdsmraq0aJ3osLJRApsc2ouSJCdnMeZwB0DhbtHAtRpZNZCdlbRnHIgcRKzdE1g0iOGg644fzjOBcdOz9cPw==", "requires": { "@babel/helper-validator-identifier": "^7.18.6", "to-fast-properties": "^2.0.0" @@ -1957,13 +1957,13 @@ } }, "@gatsbyjs/parcel-namer-relative-to-cwd": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/@gatsbyjs/parcel-namer-relative-to-cwd/-/parcel-namer-relative-to-cwd-1.3.0.tgz", - "integrity": "sha512-nd1lQn7ezg51ekqZm8iZjND8akB7bsGkGe7GdIPdTwbhale2dHLqd74qg+bBrEjv5f5aFZhpJeY9XpeU4emWZQ==", + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/@gatsbyjs/parcel-namer-relative-to-cwd/-/parcel-namer-relative-to-cwd-1.3.1.tgz", + "integrity": "sha512-wN4iU1CWumvhcuzMBKdDikZ5xgo81Ias09bKyjE36DgNxTzAhT2fXZIBAAEUlv/GBQqFe6Eas83gGGtXf31hiw==", "requires": { "@babel/runtime": "^7.18.0", "@parcel/plugin": "2.6.0", - "gatsby-core-utils": "^3.18.0" + "gatsby-core-utils": "^3.18.1" } }, "@gatsbyjs/potrace": { @@ -1995,109 +1995,81 @@ } }, "@graphql-codegen/add": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/@graphql-codegen/add/-/add-3.1.1.tgz", - "integrity": "sha512-XkVwcqosa0CVBlL1HaQT0gp+EUfhuQE3LzrEpzMQLwchxaj/NPVYtOJL6MUHaYDsHzLqxWrufjfbeB3y2NQgRw==", + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/@graphql-codegen/add/-/add-3.2.0.tgz", + "integrity": "sha512-8hyr5XvTDGnpiT4nH2yH8PP4SWtUEIUdkFaZbkpkFkU0Ud9dplvSviOCdxdArffZ1FHy0XYLTMa2it+UJOtszg==", "requires": { - "@graphql-codegen/plugin-helpers": "^2.3.2", - "tslib": "~2.3.0" - }, - "dependencies": { - "tslib": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.1.tgz", - "integrity": "sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw==" - } + "@graphql-codegen/plugin-helpers": "^2.5.0", + "tslib": "~2.4.0" } }, "@graphql-codegen/core": { - "version": "2.5.1", - "resolved": "https://registry.npmjs.org/@graphql-codegen/core/-/core-2.5.1.tgz", - "integrity": "sha512-alctBVl2hMnBXDLwkgmnFPrZVIiBDsWJSmxJcM4GKg1PB23+xuov35GE47YAyAhQItE1B1fbYnbb1PtGiDZ4LA==", + "version": "2.6.0", + "resolved": "https://registry.npmjs.org/@graphql-codegen/core/-/core-2.6.0.tgz", + "integrity": "sha512-7uZGnLCMR/pnh/5CsyI4y5bBvRndNHFs+AWpMUUjDBcjMRrMaavu37VyyYDz4/ob0BnQJt8RTBN9eArS9PLYAQ==", "requires": { - "@graphql-codegen/plugin-helpers": "^2.4.1", - "@graphql-tools/schema": "^8.1.2", - "@graphql-tools/utils": "^8.1.1", - "tslib": "~2.3.0" - }, - "dependencies": { - "tslib": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.1.tgz", - "integrity": "sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw==" - } + "@graphql-codegen/plugin-helpers": "^2.5.0", + "@graphql-tools/schema": "^8.5.0", + "@graphql-tools/utils": "^8.8.0", + "tslib": "~2.4.0" } }, "@graphql-codegen/plugin-helpers": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/@graphql-codegen/plugin-helpers/-/plugin-helpers-2.4.2.tgz", - "integrity": "sha512-LJNvwAPv/sKtI3RnRDm+nPD+JeOfOuSOS4FFIpQCMUCyMnFcchV/CPTTv7tT12fLUpEg6XjuFfDBvOwndti30Q==", + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/@graphql-codegen/plugin-helpers/-/plugin-helpers-2.5.0.tgz", + "integrity": "sha512-0jM5/14EdM4yow5v8OGOnUmRqfA1gaWkh+J5berqQUpcFYfSQXD6+Idnkiju/jjIypEN7UvbPkC7BgryWVxexA==", "requires": { - "@graphql-tools/utils": "^8.5.2", + "@graphql-tools/utils": "^8.8.0", "change-case-all": "1.0.14", "common-tags": "1.8.2", "import-from": "4.0.0", "lodash": "~4.17.0", - "tslib": "~2.3.0" - }, - "dependencies": { - "tslib": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.1.tgz", - "integrity": "sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw==" - } + "tslib": "~2.4.0" } }, "@graphql-codegen/schema-ast": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/@graphql-codegen/schema-ast/-/schema-ast-2.4.1.tgz", - "integrity": "sha512-bIWlKk/ShoVJfghA4Rt1OWnd34/dQmZM/vAe6fu6QKyOh44aAdqPtYQ2dbTyFXoknmu504etKJGEDllYNUJRfg==", + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/@graphql-codegen/schema-ast/-/schema-ast-2.5.0.tgz", + "integrity": "sha512-nlF4Yc7h90nmogG2E11TeFJ3/hCkb4SDMSdbJX68b1mhvVEji/kq3zWYKAQ+lAzjZ7HF94Eylm3MrZAjjpCKIA==", "requires": { - "@graphql-codegen/plugin-helpers": "^2.3.2", - "@graphql-tools/utils": "^8.1.1", - "tslib": "~2.3.0" - }, - "dependencies": { - "tslib": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.1.tgz", - "integrity": "sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw==" - } + "@graphql-codegen/plugin-helpers": "^2.5.0", + "@graphql-tools/utils": "^8.8.0", + "tslib": "~2.4.0" } }, "@graphql-codegen/typescript": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@graphql-codegen/typescript/-/typescript-2.6.0.tgz", - "integrity": "sha512-f36ilg8J+wui0OhmQglIZ+2z4Ybc08Y7r7BlBDqfJ1F5X0zau0SlC7Hp2iCoCA0ucqZYtiUU/0n+/R8m1cTrQQ==", + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/@graphql-codegen/typescript/-/typescript-2.7.1.tgz", + "integrity": "sha512-qF4SBMgBnLcegba2s9+zC3NwgRhU0Kv+eS8kl9G5ldEHx9Bpu2tft+lk6fjqqhExDzJT+MEOU3Ecog3BzL2R1g==", "requires": { - "@graphql-codegen/plugin-helpers": "^2.4.0", - "@graphql-codegen/schema-ast": "^2.4.1", - "@graphql-codegen/visitor-plugin-common": "2.10.0", + "@graphql-codegen/plugin-helpers": "^2.5.0", + "@graphql-codegen/schema-ast": "^2.5.0", + "@graphql-codegen/visitor-plugin-common": "2.11.1", "auto-bind": "~4.0.0", "tslib": "~2.4.0" } }, "@graphql-codegen/typescript-operations": { - "version": "2.4.3", - "resolved": "https://registry.npmjs.org/@graphql-codegen/typescript-operations/-/typescript-operations-2.4.3.tgz", - "integrity": "sha512-MW9cU/zCAmfFAObwW23e+GrW3CoV9OX2gVm/V1565WGZXDQPUc5Y5IjdfGfunV4ApkgFDiHpF1Mz/AS55OErgw==", + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/@graphql-codegen/typescript-operations/-/typescript-operations-2.5.1.tgz", + "integrity": "sha512-lGv+sPDXGcp/vDdIh7SoQjz8BRCZhLats4Hbqnf6gB7UtIasMvGuFDQyrKb3XAkQQYWqx/xtmEo0rBN8syV+Wg==", "requires": { - "@graphql-codegen/plugin-helpers": "^2.4.0", - "@graphql-codegen/typescript": "^2.6.0", - "@graphql-codegen/visitor-plugin-common": "2.10.0", + "@graphql-codegen/plugin-helpers": "^2.5.0", + "@graphql-codegen/typescript": "^2.7.1", + "@graphql-codegen/visitor-plugin-common": "2.11.1", "auto-bind": "~4.0.0", "tslib": "~2.4.0" } }, "@graphql-codegen/visitor-plugin-common": { - "version": "2.10.0", - "resolved": "https://registry.npmjs.org/@graphql-codegen/visitor-plugin-common/-/visitor-plugin-common-2.10.0.tgz", - "integrity": "sha512-nWoxHKUdwOJCWV96Ks1x4EwYCWsZDJXB+2j6EQz5j27DzdxmQInZ86degaDCd3EgbwhMQEMtiZiPGFFDrgBkHA==", - "requires": { - "@graphql-codegen/plugin-helpers": "^2.4.0", - "@graphql-tools/optimize": "^1.0.1", - "@graphql-tools/relay-operation-optimizer": "^6.4.14", - "@graphql-tools/utils": "^8.3.0", + "version": "2.11.1", + "resolved": "https://registry.npmjs.org/@graphql-codegen/visitor-plugin-common/-/visitor-plugin-common-2.11.1.tgz", + "integrity": "sha512-AlrtGWKn2o89SPna75ATEHYAu95MUMucgBqLgcRvK9n/PHhVAbkDrNCH5pL03fE0HLOup3GpjX8DcnFBMU46IA==", + "requires": { + "@graphql-codegen/plugin-helpers": "^2.5.0", + "@graphql-tools/optimize": "^1.3.0", + "@graphql-tools/relay-operation-optimizer": "^6.5.0", + "@graphql-tools/utils": "^8.8.0", "auto-bind": "~4.0.0", "change-case-all": "1.0.14", "dependency-graph": "^0.11.0", @@ -2875,9 +2847,9 @@ } }, "@jridgewell/resolve-uri": { - "version": "3.0.8", - "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.0.8.tgz", - "integrity": "sha512-YK5G9LaddzGbcucK4c8h5tWFmMPBvRZ/uyWmN1/SbBdIvqGUdWGkJ5BAaccgs6XbzVLsqbPJrBSFwKv3kT9i7w==" + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz", + "integrity": "sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==" }, "@jridgewell/set-array": { "version": "1.1.2", @@ -2933,39 +2905,39 @@ } }, "@lmdb/lmdb-darwin-arm64": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-arm64/-/lmdb-darwin-arm64-2.5.2.tgz", - "integrity": "sha512-+F8ioQIUN68B4UFiIBYu0QQvgb9FmlKw2ctQMSBfW2QBrZIxz9vD9jCGqTCPqZBRbPHAS/vG1zSXnKqnS2ch/A==", + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-arm64/-/lmdb-darwin-arm64-2.5.3.tgz", + "integrity": "sha512-RXwGZ/0eCqtCY8FLTM/koR60w+MXyvBUpToXiIyjOcBnC81tAlTUHrRUavCEWPI9zc9VgvpK3+cbumPyR8BSuA==", "optional": true }, "@lmdb/lmdb-darwin-x64": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-x64/-/lmdb-darwin-x64-2.5.2.tgz", - "integrity": "sha512-KvPH56KRLLx4KSfKBx0m1r7GGGUMXm0jrKmNE7plbHlesZMuPJICtn07HYgQhj1LNsK7Yqwuvnqh1QxhJnF1EA==", + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-x64/-/lmdb-darwin-x64-2.5.3.tgz", + "integrity": "sha512-337dNzh5yCdNCTk8kPfoU7jR3otibSlPDGW0vKZT97rKnQMb9tNdto3RtWoGPsQ8hKmlRZpojOJtmwjncq1MoA==", "optional": true }, "@lmdb/lmdb-linux-arm": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm/-/lmdb-linux-arm-2.5.2.tgz", - "integrity": "sha512-5kQAP21hAkfW5Bl+e0P57dV4dGYnkNIpR7f/GAh6QHlgXx+vp/teVj4PGRZaKAvt0GX6++N6hF8NnGElLDuIDw==", + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm/-/lmdb-linux-arm-2.5.3.tgz", + "integrity": "sha512-mU2HFJDGwECkoD9dHQEfeTG5mp8hNS2BCfwoiOpVPMeapjYpQz9Uw3FkUjRZ4dGHWKbin40oWHuL0bk2bCx+Sg==", "optional": true }, "@lmdb/lmdb-linux-arm64": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm64/-/lmdb-linux-arm64-2.5.2.tgz", - "integrity": "sha512-aLl89VHL/wjhievEOlPocoefUyWdvzVrcQ/MHQYZm2JfV1jUsrbr/ZfkPPUFvZBf+VSE+Q0clWs9l29PCX1hTQ==", + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm64/-/lmdb-linux-arm64-2.5.3.tgz", + "integrity": "sha512-VJw60Mdgb4n+L0fO1PqfB0C7TyEQolJAC8qpqvG3JoQwvyOv6LH7Ib/WE3wxEW9nuHmVz9jkK7lk5HfWWgoO1Q==", "optional": true }, "@lmdb/lmdb-linux-x64": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-x64/-/lmdb-linux-x64-2.5.2.tgz", - "integrity": "sha512-xUdUfwDJLGjOUPH3BuPBt0NlIrR7f/QHKgu3GZIXswMMIihAekj2i97oI0iWG5Bok/b+OBjHPfa8IU9velnP/Q==", + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-x64/-/lmdb-linux-x64-2.5.3.tgz", + "integrity": "sha512-qaReO5aV8griBDsBr8uBF/faO3ieGjY1RY4p8JvTL6Mu1ylLrTVvOONqKFlNaCwrmUjWw5jnf7VafxDAeQHTow==", "optional": true }, "@lmdb/lmdb-win32-x64": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-win32-x64/-/lmdb-win32-x64-2.5.2.tgz", - "integrity": "sha512-zrBczSbXKxEyK2ijtbRdICDygRqWSRPpZMN5dD1T8VMEW5RIhIbwFWw2phDRXuBQdVDpSjalCIUMWMV2h3JaZA==", + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-win32-x64/-/lmdb-win32-x64-2.5.3.tgz", + "integrity": "sha512-cK+Elf3RjEzrm3SerAhrFWL5oQAsZSJ/LmjL1joIpTfEP1etJJ9CTRvdaV6XLYAxaEkfdhk/9hOvHLbR9yIhCA==", "optional": true }, "@microsoft/fetch-event-source": { @@ -6385,12 +6357,12 @@ } }, "babel-plugin-remove-graphql-queries": { - "version": "4.18.0", - "resolved": "https://registry.npmjs.org/babel-plugin-remove-graphql-queries/-/babel-plugin-remove-graphql-queries-4.18.0.tgz", - "integrity": "sha512-6oOm/cTZdk+7yPh4R4ISLKNur3rK5w2zAUCXTOGKYcRYbvKCS22ODafQBrNcu/UdfpXwSz3XZOG5ru72Z5usUw==", + "version": "4.18.1", + "resolved": "https://registry.npmjs.org/babel-plugin-remove-graphql-queries/-/babel-plugin-remove-graphql-queries-4.18.1.tgz", + "integrity": "sha512-2I7qsm3pnyvrS6/Q9YuHK1SpfQLmrgYH/AjpnWpnLHee6SiVb5Te89iphhpBdycpBRVGWh04ram9+z/1rMaRYQ==", "requires": { "@babel/runtime": "^7.15.4", - "gatsby-core-utils": "^3.18.0" + "gatsby-core-utils": "^3.18.1" } }, "babel-plugin-syntax-jsx": { @@ -6457,9 +6429,9 @@ } }, "babel-preset-gatsby": { - "version": "2.18.0", - "resolved": "https://registry.npmjs.org/babel-preset-gatsby/-/babel-preset-gatsby-2.18.0.tgz", - "integrity": "sha512-b6BJEl0MlA/nh+IkTJRgvPEgdN09Pu34Szo5dE4QYvQa66++EqfQUK5huqr+FgZJedPPYYbRY2SgKlRXev5QIQ==", + "version": "2.18.1", + "resolved": "https://registry.npmjs.org/babel-preset-gatsby/-/babel-preset-gatsby-2.18.1.tgz", + "integrity": "sha512-oaVV6ULceMjTQKjCA06qvgfLwBNZFJxpacwNZYOJpLygmj+qYiNKDGhJ8vTw/KAIUeDPZAbPMP5P+3wMEPIWYQ==", "requires": { "@babel/plugin-proposal-class-properties": "^7.14.0", "@babel/plugin-proposal-nullish-coalescing-operator": "^7.14.5", @@ -6474,7 +6446,7 @@ "babel-plugin-dynamic-import-node": "^2.3.3", "babel-plugin-macros": "^3.1.0", "babel-plugin-transform-react-remove-prop-types": "^0.4.24", - "gatsby-core-utils": "^3.18.0", + "gatsby-core-utils": "^3.18.1", "gatsby-legacy-polyfills": "^2.18.0" }, "dependencies": { @@ -6916,9 +6888,9 @@ } }, "caniuse-lite": { - "version": "1.0.30001363", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001363.tgz", - "integrity": "sha512-HpQhpzTGGPVMnCjIomjt+jvyUu8vNFo3TaDiZ/RcoTrlOq/5+tC8zHdsbgFB6MxmaY+jCpsH09aD80Bb4Ow3Sg==" + "version": "1.0.30001365", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001365.tgz", + "integrity": "sha512-VDQZ8OtpuIPMBA4YYvZXECtXbddMCUFJk1qu8Mqxfm/SZJNSr1cy4IuLCOL7RJ/YASrvJcYg1Zh+UEUQ5m6z8Q==" }, "capital-case": { "version": "1.0.4", @@ -7596,16 +7568,16 @@ } }, "core-js": { - "version": "3.23.3", - "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.23.3.tgz", - "integrity": "sha512-oAKwkj9xcWNBAvGbT//WiCdOMpb9XQG92/Fe3ABFM/R16BsHgePG00mFOgKf7IsCtfj8tA1kHtf/VwErhriz5Q==" + "version": "3.23.4", + "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.23.4.tgz", + "integrity": "sha512-vjsKqRc1RyAJC3Ye2kYqgfdThb3zYnx9CrqoCcjMOENMtQPC7ZViBvlDxwYU/2z2NI/IPuiXw5mT4hWhddqjzQ==" }, "core-js-compat": { - "version": "3.23.3", - "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.23.3.tgz", - "integrity": "sha512-WSzUs2h2vvmKsacLHNTdpyOC9k43AEhcGoFlVgCY4L7aw98oSBKtPL6vD0/TqZjRWRQYdDSLkzZIni4Crbbiqw==", + "version": "3.23.4", + "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.23.4.tgz", + "integrity": "sha512-RkSRPe+JYEoflcsuxJWaiMPhnZoFS51FcIxm53k4KzhISCBTmaGlto9dTIrYuk0hnJc3G6pKufAKepHnBq6B6Q==", "requires": { - "browserslist": "^4.21.0", + "browserslist": "^4.21.1", "semver": "7.0.0" }, "dependencies": { @@ -7617,9 +7589,9 @@ } }, "core-js-pure": { - "version": "3.23.3", - "resolved": "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.23.3.tgz", - "integrity": "sha512-XpoouuqIj4P+GWtdyV8ZO3/u4KftkeDVMfvp+308eGMhCrA3lVDSmAxO0c6GGOcmgVlaKDrgWVMo49h2ab/TDA==" + "version": "3.23.4", + "resolved": "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.23.4.tgz", + "integrity": "sha512-lizxkcgj3XDmi7TUBFe+bQ1vNpD5E4t76BrBWI3HdUxdw/Mq1VF4CkiHzIKyieECKtcODK2asJttoofEeUKICQ==" }, "core-util-is": { "version": "1.0.3", @@ -7667,9 +7639,9 @@ } }, "create-gatsby": { - "version": "2.18.0", - "resolved": "https://registry.npmjs.org/create-gatsby/-/create-gatsby-2.18.0.tgz", - "integrity": "sha512-74yn3+wlFKwg3DUVdFdBnfqc6gUVpYjqr/1XtQ0Rb57i0ygvER8Xgp4rY5Mm+8rl7JwBma1NONeM20cdMQjT2w==", + "version": "2.18.1", + "resolved": "https://registry.npmjs.org/create-gatsby/-/create-gatsby-2.18.1.tgz", + "integrity": "sha512-1AZioXKi4COhESSHfsb/6tpkBvyuuXHwAmMAGrcUQpbynsQxYdqonnRqnFhp80bA2cIKxgjtHzzLhyRouDonbQ==", "requires": { "@babel/runtime": "^7.15.4" } @@ -8304,9 +8276,9 @@ "integrity": "sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==" }, "duplexer3": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/duplexer3/-/duplexer3-0.1.4.tgz", - "integrity": "sha512-CEj8FwwNA4cVH2uFCoHUrmojhYh1vmCdOaneKJXwkeY1i9jnlslVo9dx+hQ5Hl9GnH/Bwy/IjxAyOePyPKYnzA==" + "version": "0.1.5", + "resolved": "https://registry.npmjs.org/duplexer3/-/duplexer3-0.1.5.tgz", + "integrity": "sha512-1A8za6ws41LQgv9HrE/66jyC5yuSjQ3L/KOpFtoBilsAK2iA2wuS5rTt1OCzIvtS2V7nVmedsUU+DGRcjBmOYA==" }, "ee-first": { "version": "1.1.1", @@ -8314,9 +8286,9 @@ "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==" }, "electron-to-chromium": { - "version": "1.4.179", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.179.tgz", - "integrity": "sha512-1XeTb/U/8Xgh2YgPOqhakLYsvCcU4U7jUjTMbEnhIJoIWd/Qt3yC8y0cbG+fHzn4zUNF99Ey1xiPf20bwgLO3Q==" + "version": "1.4.186", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.186.tgz", + "integrity": "sha512-YoVeFrGd/7ROjz4R9uPoND1K/hSRC/xADy9639ZmIZeJSaBnKdYx3I6LMPsY7CXLpK7JFgKQVzeZ/dk2br6Eaw==" }, "emoji-regex": { "version": "8.0.0", @@ -9740,9 +9712,9 @@ "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==" }, "gatsby": { - "version": "4.18.0", - "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-4.18.0.tgz", - "integrity": "sha512-EyiwYUsbSKUKsdjm8nnLw5AGJwOJ9NAWcrFg1V/QU4CUnk/M8EiP0TxiGUmK1/K7g82XGxUjuAPYJKJk85yxHA==", + "version": "4.18.1", + "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-4.18.1.tgz", + "integrity": "sha512-frMFAWOmMl/CtqBZ3aZXlysicQQa8C+yfMdjnjx81f7E5xoL20klk1j4UYj1kUnGgBMSuVehU8M+bE0kT02zoQ==", "requires": { "@babel/code-frame": "^7.14.0", "@babel/core": "^7.15.5", @@ -9778,8 +9750,8 @@ "babel-plugin-add-module-exports": "^1.0.4", "babel-plugin-dynamic-import-node": "^2.3.3", "babel-plugin-lodash": "^3.3.4", - "babel-plugin-remove-graphql-queries": "^4.18.0", - "babel-preset-gatsby": "^2.18.0", + "babel-plugin-remove-graphql-queries": "^4.18.1", + "babel-preset-gatsby": "^2.18.1", "better-opn": "^2.1.1", "bluebird": "^3.7.2", "body-parser": "^1.19.0", @@ -9822,20 +9794,20 @@ "find-cache-dir": "^3.3.2", "fs-exists-cached": "1.0.0", "fs-extra": "^10.1.0", - "gatsby-cli": "^4.18.0", - "gatsby-core-utils": "^3.18.0", + "gatsby-cli": "^4.18.1", + "gatsby-core-utils": "^3.18.1", "gatsby-graphiql-explorer": "^2.18.0", "gatsby-legacy-polyfills": "^2.18.0", - "gatsby-link": "^4.18.0", - "gatsby-page-utils": "^2.18.0", - "gatsby-parcel-config": "0.9.0", - "gatsby-plugin-page-creator": "^4.18.0", - "gatsby-plugin-typescript": "^4.18.0", - "gatsby-plugin-utils": "^3.12.0", + "gatsby-link": "^4.18.1", + "gatsby-page-utils": "^2.18.1", + "gatsby-parcel-config": "^0.9.1", + "gatsby-plugin-page-creator": "^4.18.1", + "gatsby-plugin-typescript": "^4.18.1", + "gatsby-plugin-utils": "^3.12.1", "gatsby-react-router-scroll": "^5.18.0", "gatsby-script": "^1.3.0", "gatsby-sharp": "^0.12.0", - "gatsby-telemetry": "^3.18.0", + "gatsby-telemetry": "^3.18.1", "gatsby-worker": "^1.18.0", "glob": "^7.2.3", "globby": "^11.1.0", @@ -9851,7 +9823,7 @@ "joi": "^17.4.2", "json-loader": "^0.5.7", "latest-version": "5.1.0", - "lmdb": "2.5.2", + "lmdb": "2.5.3", "lodash": "^4.17.21", "md5-file": "^5.0.0", "meant": "^1.0.3", @@ -9909,9 +9881,9 @@ }, "dependencies": { "gatsby-cli": { - "version": "4.18.0", - "resolved": "https://registry.npmjs.org/gatsby-cli/-/gatsby-cli-4.18.0.tgz", - "integrity": "sha512-H4V1XvXP3EMwUBDbAlpu3jbjlCetUmHY6VB1YsH2kkIdlMrOgjUgNDFpqjgbk7k7z61du2tCgl1lyW+5he+SnA==", + "version": "4.18.1", + "resolved": "https://registry.npmjs.org/gatsby-cli/-/gatsby-cli-4.18.1.tgz", + "integrity": "sha512-ceYqm6i39rHY343zUCflwXnGtd25QGccvToTWL8W42/EGToDW8bubLfeBSRCfjXm946yf1gkS/1UAsAgAphYDA==", "requires": { "@babel/code-frame": "^7.14.0", "@babel/core": "^7.15.5", @@ -9930,13 +9902,13 @@ "common-tags": "^1.8.2", "configstore": "^5.0.1", "convert-hrtime": "^3.0.0", - "create-gatsby": "^2.18.0", + "create-gatsby": "^2.18.1", "envinfo": "^7.8.1", "execa": "^5.1.1", "fs-exists-cached": "^1.0.0", "fs-extra": "^10.1.0", - "gatsby-core-utils": "^3.18.0", - "gatsby-telemetry": "^3.18.0", + "gatsby-core-utils": "^3.18.1", + "gatsby-telemetry": "^3.18.1", "hosted-git-info": "^3.0.8", "is-valid-path": "^0.1.1", "joi": "^17.4.2", @@ -9975,9 +9947,9 @@ } }, "gatsby-core-utils": { - "version": "3.18.0", - "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.18.0.tgz", - "integrity": "sha512-mCoNgH4MilosLhEroklgVffwie9lyxgmvNwe/oIyzXr6NcZ2uxSp8G1KrgxdG2srt2hCNlZLlzS25ltLTeHTjA==", + "version": "3.18.1", + "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.18.1.tgz", + "integrity": "sha512-sJTxRqizLxYy/tSFk0ydfqEZ3ek1So9HDVUa39F6Oi8XuPCBTFzaAooUvowKGneI5YUbdk5y4VO4ybwVUynntw==", "requires": { "@babel/runtime": "^7.15.4", "ci-info": "2.0.0", @@ -9987,7 +9959,7 @@ "fs-extra": "^10.1.0", "got": "^11.8.5", "import-from": "^4.0.0", - "lmdb": "2.5.2", + "lmdb": "2.5.3", "lock": "^1.1.0", "node-object-hash": "^2.3.10", "proper-lockfile": "^4.1.2", @@ -10040,37 +10012,37 @@ } }, "gatsby-link": { - "version": "4.18.0", - "resolved": "https://registry.npmjs.org/gatsby-link/-/gatsby-link-4.18.0.tgz", - "integrity": "sha512-nE+Z/iE55Id84YqsQOT1bfPJ/AsupY/4s8i6NllQ8no/PRgDGMpkTG6ANqyt2CHs/bywxch2rv8Ho7Gwsuuueg==", + "version": "4.18.1", + "resolved": "https://registry.npmjs.org/gatsby-link/-/gatsby-link-4.18.1.tgz", + "integrity": "sha512-gLFH2iU4WugHU5k+SLu4F0Ar04kDT5KhkyXly99ZVtiIvHpA5DqcuGNIUjIE/lizSCsfa553wGv7dadfghGzrQ==", "requires": { "@babel/runtime": "^7.15.4", "@types/reach__router": "^1.3.10", - "gatsby-page-utils": "^2.18.0", + "gatsby-page-utils": "^2.18.1", "prop-types": "^15.8.1" } }, "gatsby-page-utils": { - "version": "2.18.0", - "resolved": "https://registry.npmjs.org/gatsby-page-utils/-/gatsby-page-utils-2.18.0.tgz", - "integrity": "sha512-qTwlqscKxkBlMd+Mn8xj6sh7L0LbfLGYOPCYozJnukXv8d/6Jyk1nfaP6I82hwj/iyhaBQtk7g8g4XyBJJaESw==", + "version": "2.18.1", + "resolved": "https://registry.npmjs.org/gatsby-page-utils/-/gatsby-page-utils-2.18.1.tgz", + "integrity": "sha512-4EM0LNOQgnCndHDQSI/ZKRFWYWG9dtTPuGbBaGlmPquhj3zwjOscws1vfj7g+u3PowKjZQ2Rf92RZd8xt8XLTQ==", "requires": { "@babel/runtime": "^7.15.4", "bluebird": "^3.7.2", "chokidar": "^3.5.3", "fs-exists-cached": "^1.0.0", - "gatsby-core-utils": "^3.18.0", + "gatsby-core-utils": "^3.18.1", "glob": "^7.2.3", "lodash": "^4.17.21", "micromatch": "^4.0.5" } }, "gatsby-parcel-config": { - "version": "0.9.0", - "resolved": "https://registry.npmjs.org/gatsby-parcel-config/-/gatsby-parcel-config-0.9.0.tgz", - "integrity": "sha512-ccGw/L8ylhDgE/4tr52B6tb2jreApOMoYPW75Z8aM2ULRz505fL5mrnkG1fdQDBZSCHx/0j0x2TZyCLrt0Bvlw==", + "version": "0.9.1", + "resolved": "https://registry.npmjs.org/gatsby-parcel-config/-/gatsby-parcel-config-0.9.1.tgz", + "integrity": "sha512-ZtVntsQYs0xhy1hvWUMeSLc4a+DvxtTf+NUrPF4rvBjOW/LPMx2eYDzPddKvqWmiUaT1+Ki9S9bwCuOp5muawg==", "requires": { - "@gatsbyjs/parcel-namer-relative-to-cwd": "1.3.0", + "@gatsbyjs/parcel-namer-relative-to-cwd": "^1.3.1", "@parcel/bundler-default": "2.6.0", "@parcel/compressor-raw": "2.6.0", "@parcel/namer-default": "2.6.0", @@ -10099,46 +10071,46 @@ } }, "gatsby-plugin-image": { - "version": "2.18.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-image/-/gatsby-plugin-image-2.18.0.tgz", - "integrity": "sha512-/WvMDUiZvofmxHzHeEPLNL605FU1AK5pLXKKS8aekRigbNbi+Gip2ZROFPJtj4oxyKDmtD+HaVCNf1q8SdhPEg==", + "version": "2.18.1", + "resolved": "https://registry.npmjs.org/gatsby-plugin-image/-/gatsby-plugin-image-2.18.1.tgz", + "integrity": "sha512-PsNIWq5bVALRRshbKOL97tqZTT2r0iILlP+K26YHfd+54DOUPqjESGZ/x7rnv2WMBVFd+Xtkmrx6M1rW86g1Rw==", "requires": { "@babel/code-frame": "^7.14.0", "@babel/parser": "^7.15.5", "@babel/runtime": "^7.15.4", "@babel/traverse": "^7.15.4", "babel-jsx-utils": "^1.1.0", - "babel-plugin-remove-graphql-queries": "^4.18.0", + "babel-plugin-remove-graphql-queries": "^4.18.1", "camelcase": "^5.3.1", "chokidar": "^3.5.3", "common-tags": "^1.8.2", "fs-extra": "^10.1.0", - "gatsby-core-utils": "^3.18.0", - "gatsby-plugin-utils": "^3.12.0", + "gatsby-core-utils": "^3.18.1", + "gatsby-plugin-utils": "^3.12.1", "objectFitPolyfill": "^2.3.5", "prop-types": "^15.8.1" } }, "gatsby-plugin-manifest": { - "version": "4.18.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-manifest/-/gatsby-plugin-manifest-4.18.0.tgz", - "integrity": "sha512-UqyENX8vwl9toCVnfdhVX/P7NZApG4FvXoDdkxfI53tKoFv93rIisb2IUGQeZZP9jHXprGlnP3y8dgTAmz5Ubw==", + "version": "4.18.1", + "resolved": "https://registry.npmjs.org/gatsby-plugin-manifest/-/gatsby-plugin-manifest-4.18.1.tgz", + "integrity": "sha512-LR4S/MCbUP7Fk3A4xwrA9nhIx9RjDTAE5DAXfXMKvnh1f6an6d+x9XKDqNnGtixVOnlfy3jK0IxLzC1HCjNKSQ==", "requires": { "@babel/runtime": "^7.15.4", - "gatsby-core-utils": "^3.18.0", - "gatsby-plugin-utils": "^3.12.0", + "gatsby-core-utils": "^3.18.1", + "gatsby-plugin-utils": "^3.12.1", "semver": "^7.3.7", "sharp": "^0.30.3" } }, "gatsby-plugin-offline": { - "version": "5.18.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-offline/-/gatsby-plugin-offline-5.18.0.tgz", - "integrity": "sha512-PfbAwEwfozkbAxtPVxUwYkvX47IsWpOJUlutn6wl7hj7VLHfegxDg3RZtc0trbDpj39wVtcLDdM8fu4schm3EA==", + "version": "5.18.1", + "resolved": "https://registry.npmjs.org/gatsby-plugin-offline/-/gatsby-plugin-offline-5.18.1.tgz", + "integrity": "sha512-Gbk3bNPPCGWgZluXtmW2FUOBmLoxShuXeInCZlYz+p+Vz9jnNUIWk2SFZO1oeo7SFzuQpdkcy0oClOCYVZ9ClA==", "requires": { "@babel/runtime": "^7.15.4", "cheerio": "^1.0.0-rc.10", - "gatsby-core-utils": "^3.18.0", + "gatsby-core-utils": "^3.18.1", "glob": "^7.2.3", "idb-keyval": "^3.2.0", "lodash": "^4.17.21", @@ -10146,19 +10118,19 @@ } }, "gatsby-plugin-page-creator": { - "version": "4.18.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-page-creator/-/gatsby-plugin-page-creator-4.18.0.tgz", - "integrity": "sha512-6bY4vJndDw0nBcOuQdX41Wvbctw0y9+a7IavCFJKFeNs+Zo0XH2FX0IAww0slDnSJU6AukJ9qfjHqKJkADAZpQ==", + "version": "4.18.1", + "resolved": "https://registry.npmjs.org/gatsby-plugin-page-creator/-/gatsby-plugin-page-creator-4.18.1.tgz", + "integrity": "sha512-XPAglahQ1fDnSdSNJmtAGwVqB7yZDGPOQQBQX7LD74XwYP6uriRo4LyeI+gEXRqW4d63ZL3VMvgdisde9M95LQ==", "requires": { "@babel/runtime": "^7.15.4", "@babel/traverse": "^7.15.4", "@sindresorhus/slugify": "^1.1.2", "chokidar": "^3.5.3", "fs-exists-cached": "^1.0.0", - "gatsby-core-utils": "^3.18.0", - "gatsby-page-utils": "^2.18.0", - "gatsby-plugin-utils": "^3.12.0", - "gatsby-telemetry": "^3.18.0", + "gatsby-core-utils": "^3.18.1", + "gatsby-page-utils": "^2.18.1", + "gatsby-plugin-utils": "^3.12.1", + "gatsby-telemetry": "^3.18.1", "globby": "^11.1.0", "lodash": "^4.17.21" } @@ -10172,9 +10144,9 @@ } }, "gatsby-plugin-sharp": { - "version": "4.18.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-sharp/-/gatsby-plugin-sharp-4.18.0.tgz", - "integrity": "sha512-ExGzy8xAwc5+4nDHgGe1k8Id/HZpETPSizLNeJ5We3T4hjshdfgvnuRiAZf2VIY60+VPuVCezYNn4n7gPTShRw==", + "version": "4.18.1", + "resolved": "https://registry.npmjs.org/gatsby-plugin-sharp/-/gatsby-plugin-sharp-4.18.1.tgz", + "integrity": "sha512-oUAy+1Ey8/HKSYwY9W+LkO8BT7nVk6it2n9QympS8BzGgnFXY8695flmaPtQySMES+OwYGtlh0JhU+p9caVZAQ==", "requires": { "@babel/runtime": "^7.15.4", "@gatsbyjs/potrace": "^2.2.0", @@ -10183,9 +10155,9 @@ "debug": "^4.3.4", "filenamify": "^4.3.0", "fs-extra": "^10.1.0", - "gatsby-core-utils": "^3.18.0", - "gatsby-plugin-utils": "^3.12.0", - "gatsby-telemetry": "^3.18.0", + "gatsby-core-utils": "^3.18.1", + "gatsby-plugin-utils": "^3.12.1", + "gatsby-telemetry": "^3.18.1", "got": "^11.8.5", "lodash": "^4.17.21", "mini-svg-data-uri": "^1.4.4", @@ -10315,9 +10287,9 @@ } }, "gatsby-plugin-typescript": { - "version": "4.18.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-typescript/-/gatsby-plugin-typescript-4.18.0.tgz", - "integrity": "sha512-SuNBrp57SnovOyhCz0zPkz7begV4UR2XdXUrFsh4N0jWOI5yFNVgENpKlbI/O7JnvgyV5KC/pkobNh3we+0mcQ==", + "version": "4.18.1", + "resolved": "https://registry.npmjs.org/gatsby-plugin-typescript/-/gatsby-plugin-typescript-4.18.1.tgz", + "integrity": "sha512-YUZcqL2WWiL2ngKe4A5FpTjCij2pLxiim+QaujeKfMjeWfHJ13uQ74HlxQXNpGAy4vMRBiU4CJH71RXgS1aoaA==", "requires": { "@babel/core": "^7.15.5", "@babel/plugin-proposal-nullish-coalescing-operator": "^7.14.5", @@ -10325,18 +10297,18 @@ "@babel/plugin-proposal-optional-chaining": "^7.14.5", "@babel/preset-typescript": "^7.15.0", "@babel/runtime": "^7.15.4", - "babel-plugin-remove-graphql-queries": "^4.18.0" + "babel-plugin-remove-graphql-queries": "^4.18.1" } }, "gatsby-plugin-utils": { - "version": "3.12.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-utils/-/gatsby-plugin-utils-3.12.0.tgz", - "integrity": "sha512-vdz3qwaCOkvgzAxMkZlgpmpWf555jISwek5lyWYhGyJJvXYV8KQ2cZ4CoOfFKAYVeZVSucrHcdWyY3fLLpQvAA==", + "version": "3.12.1", + "resolved": "https://registry.npmjs.org/gatsby-plugin-utils/-/gatsby-plugin-utils-3.12.1.tgz", + "integrity": "sha512-Rx7/MFtiJ+pyvPLqCPj5beyMN6qOx3EYMrOqmvrWJaM32nxMfHZqUqxGruufyFNVe6edfRuNuXcKaPXlGlyexA==", "requires": { "@babel/runtime": "^7.15.4", "@gatsbyjs/potrace": "^2.2.0", "fs-extra": "^10.1.0", - "gatsby-core-utils": "^3.18.0", + "gatsby-core-utils": "^3.18.1", "gatsby-sharp": "^0.12.0", "graphql-compose": "^9.0.7", "import-from": "^4.0.0", @@ -10377,15 +10349,15 @@ } }, "gatsby-source-filesystem": { - "version": "4.18.0", - "resolved": "https://registry.npmjs.org/gatsby-source-filesystem/-/gatsby-source-filesystem-4.18.0.tgz", - "integrity": "sha512-45ivbP9Ho6ioCqAJKdz5ejXlKCZ+8UCzQEC8cQbJI+k5CiJMdA09X65GVITUEob0bFRCcv5RQu4fOodrznaIwg==", + "version": "4.18.1", + "resolved": "https://registry.npmjs.org/gatsby-source-filesystem/-/gatsby-source-filesystem-4.18.1.tgz", + "integrity": "sha512-b1sZB0ziLJEGZOi2+ieUKWJXn3X1hK+F3nN5joaI3A+ptz75GpNuv04tFoq9oICzOHyuNuSGN5YgO8kMpmoaGQ==", "requires": { "@babel/runtime": "^7.15.4", "chokidar": "^3.5.3", "file-type": "^16.5.3", "fs-extra": "^10.1.0", - "gatsby-core-utils": "^3.18.0", + "gatsby-core-utils": "^3.18.1", "got": "^9.6.0", "md5-file": "^5.0.0", "mime": "^2.5.2", @@ -10515,9 +10487,9 @@ } }, "gatsby-source-wordpress": { - "version": "6.18.0", - "resolved": "https://registry.npmjs.org/gatsby-source-wordpress/-/gatsby-source-wordpress-6.18.0.tgz", - "integrity": "sha512-Sdb9BotvzGpvB3D4FYzPoxJESGcsH2qjP2Mw7jjAXwCr1cJE+4yA08+jmd4kuUj/VuH04kXw/NV4h2YOaXZ/Tg==", + "version": "6.18.1", + "resolved": "https://registry.npmjs.org/gatsby-source-wordpress/-/gatsby-source-wordpress-6.18.1.tgz", + "integrity": "sha512-yWVKCnIsZ6vburzkv3SiXKJn8NaA7zzEp5VK0W7/VWj852BWO+VsozK5sOpIt7hBeWCLwsgR+Z/G+0S5Hvbl8Q==", "requires": { "@babel/runtime": "^7.15.4", "@rematch/core": "^1.4.0", @@ -10539,10 +10511,10 @@ "file-type": "^15.0.1", "filesize": "^6.4.0", "fs-extra": "^10.1.0", - "gatsby-core-utils": "^3.18.0", + "gatsby-core-utils": "^3.18.1", "gatsby-plugin-catch-links": "^4.18.0", - "gatsby-plugin-utils": "^3.12.0", - "gatsby-source-filesystem": "^4.18.0", + "gatsby-plugin-utils": "^3.12.1", + "gatsby-source-filesystem": "^4.18.1", "glob": "^7.2.3", "got": "^11.8.5", "lodash": "^4.17.21", @@ -10614,9 +10586,9 @@ } }, "gatsby-telemetry": { - "version": "3.18.0", - "resolved": "https://registry.npmjs.org/gatsby-telemetry/-/gatsby-telemetry-3.18.0.tgz", - "integrity": "sha512-i1JvNqGOyLDPGEn1QN29YGpe2ripg2LZBAOhXmk6lAhRL5fTVo6WkEA2yW7XESnXIOJBFymgVbUlLjXoqeZ5Xg==", + "version": "3.18.1", + "resolved": "https://registry.npmjs.org/gatsby-telemetry/-/gatsby-telemetry-3.18.1.tgz", + "integrity": "sha512-EjjsUv15BZGsmnPrOINRT/s7d18DTKokpp2NDZLm8uOs3MwVoLtUZ/BS7h2NTmgK+WN93q3bNYRkZgKgV9QC1A==", "requires": { "@babel/code-frame": "^7.14.0", "@babel/runtime": "^7.15.4", @@ -10626,7 +10598,7 @@ "boxen": "^4.2.0", "configstore": "^5.0.1", "fs-extra": "^10.1.0", - "gatsby-core-utils": "^3.18.0", + "gatsby-core-utils": "^3.18.1", "git-up": "^4.0.5", "is-docker": "^2.2.1", "lodash": "^4.17.21", @@ -10699,16 +10671,16 @@ } }, "gatsby-transformer-sharp": { - "version": "4.18.0", - "resolved": "https://registry.npmjs.org/gatsby-transformer-sharp/-/gatsby-transformer-sharp-4.18.0.tgz", - "integrity": "sha512-uOsP5U10pWPdhpKHkPyKWoxCFEGdnreqmSrWrKUsHa0oViCfudbDrM+xWla+QQ0MhHHkqOUjdcfZRG3SwUlPcg==", + "version": "4.18.1", + "resolved": "https://registry.npmjs.org/gatsby-transformer-sharp/-/gatsby-transformer-sharp-4.18.1.tgz", + "integrity": "sha512-YqY3dWdUmRzhE2DBbOtJygL/bWKFXDQf3ARn6tSEt0WqPRFGLGbsSpT/xU5makHugdO/Wc30x3x85FhwysvH6Q==", "requires": { "@babel/runtime": "^7.15.4", "@gatsbyjs/potrace": "^2.2.0", "bluebird": "^3.7.2", "common-tags": "^1.8.2", "fs-extra": "^10.1.0", - "gatsby-plugin-utils": "^3.12.0", + "gatsby-plugin-utils": "^3.12.1", "probe-image-size": "^7.2.3", "semver": "^7.3.7", "sharp": "^0.30.3" @@ -12056,9 +12028,9 @@ } }, "jsx-ast-utils": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.3.1.tgz", - "integrity": "sha512-pxrjmNpeRw5wwVeWyEAk7QJu2GnBO3uzPFmHCKJJFPKK2Cy0cWL23krGtLdnMmbIi6/FjlrQpPyfQI19ByPOhQ==", + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.3.2.tgz", + "integrity": "sha512-4ZCADZHRkno244xlNnn4AOG6sRQ7iBZ5BbgZ4vW4y5IZw7cVUD1PPeblm1xx/nfmMxPdt/LHsXZW8z/j58+l9Q==", "requires": { "array-includes": "^3.1.5", "object.assign": "^4.1.2" @@ -12119,9 +12091,9 @@ } }, "lilconfig": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-2.0.5.tgz", - "integrity": "sha512-xaYmXZtTHPAw5m+xLN8ab9C+3a8YmV3asNSPOATITbtwrfbwaLJj8h66H1WMIpALCkqsIzK3h7oQ+PdX+LQ9Eg==" + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-2.0.6.tgz", + "integrity": "sha512-9JROoBW7pobfsx+Sq2JsASvCo6Pfo6WWoUW79HuB1BCoBXD4PLWJPqDF6fNj67pqBYTbAHkE57M1kS/+L1neOg==" }, "line-height": { "version": "0.3.1", @@ -12137,16 +12109,16 @@ "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==" }, "lmdb": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/lmdb/-/lmdb-2.5.2.tgz", - "integrity": "sha512-V5V5Xa2Hp9i2XsbDALkBTeHXnBXh/lEmk9p22zdr7jtuOIY9TGhjK6vAvTpOOx9IKU4hJkRWZxn/HsvR1ELLtA==", - "requires": { - "@lmdb/lmdb-darwin-arm64": "2.5.2", - "@lmdb/lmdb-darwin-x64": "2.5.2", - "@lmdb/lmdb-linux-arm": "2.5.2", - "@lmdb/lmdb-linux-arm64": "2.5.2", - "@lmdb/lmdb-linux-x64": "2.5.2", - "@lmdb/lmdb-win32-x64": "2.5.2", + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/lmdb/-/lmdb-2.5.3.tgz", + "integrity": "sha512-iBA0cb13CobBSoGJLfZgnrykLlfJipDAnvtf+YwIqqzBEsTeQYsXrHaSBkaHd5wCWeabwrNvhjZoFMUrlo+eLw==", + "requires": { + "@lmdb/lmdb-darwin-arm64": "2.5.3", + "@lmdb/lmdb-darwin-x64": "2.5.3", + "@lmdb/lmdb-linux-arm": "2.5.3", + "@lmdb/lmdb-linux-arm64": "2.5.3", + "@lmdb/lmdb-linux-x64": "2.5.3", + "@lmdb/lmdb-win32-x64": "2.5.3", "msgpackr": "^1.5.4", "node-addon-api": "^4.3.0", "node-gyp-build-optional-packages": "5.0.3", @@ -12834,9 +12806,9 @@ "integrity": "sha512-jY5dPJzw6NHd/KPSfPKJ+IHoFS81/tJ43r34ZeNMXGzCOM8jwQDCD12HYayKIB6MuznrnqIYy2e891NA2g0ibA==" }, "node-releases": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.5.tgz", - "integrity": "sha512-U9h1NLROZTq9uE1SNffn6WuPDg8icmi3ns4rEl/oTfIle4iLjTliCzgTsbaIFMq/Xn078/lfY/BL0GWZ+psK4Q==" + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.6.tgz", + "integrity": "sha512-PiVXnNuFm5+iYkLBNeq5211hvO38y63T0i2KKh2KnUs3RpzJ+JtODFjkD8yjLwnDkTYF1eKXheUwdssR+NRZdg==" }, "normalize-path": { "version": "3.0.0", diff --git a/starters/gatsby-starter-wordpress-blog/package.json b/starters/gatsby-starter-wordpress-blog/package.json index 49bece55a16e6..44863a22da591 100644 --- a/starters/gatsby-starter-wordpress-blog/package.json +++ b/starters/gatsby-starter-wordpress-blog/package.json @@ -9,15 +9,15 @@ }, "dependencies": { "@wordpress/block-library": "^2.29.3", - "gatsby": "^4.18.0", + "gatsby": "^4.18.1", "gatsby-image": "^3.11.0", - "gatsby-plugin-image": "^2.18.0", - "gatsby-plugin-manifest": "^4.18.0", - "gatsby-plugin-offline": "^5.18.0", + "gatsby-plugin-image": "^2.18.1", + "gatsby-plugin-manifest": "^4.18.1", + "gatsby-plugin-offline": "^5.18.1", "gatsby-plugin-react-helmet": "^5.18.0", - "gatsby-plugin-sharp": "^4.18.0", - "gatsby-source-wordpress": "^6.18.0", - "gatsby-transformer-sharp": "^4.18.0", + "gatsby-plugin-sharp": "^4.18.1", + "gatsby-source-wordpress": "^6.18.1", + "gatsby-transformer-sharp": "^4.18.1", "html-react-parser": "^0.14.3", "lodash": "^4.17.21", "react": "^16.12.0", diff --git a/starters/hello-world/package-lock.json b/starters/hello-world/package-lock.json index a3b0d7c7a78e0..9a19bf1576469 100644 --- a/starters/hello-world/package-lock.json +++ b/starters/hello-world/package-lock.json @@ -61,9 +61,9 @@ } }, "@babel/compat-data": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.18.6.tgz", - "integrity": "sha512-tzulrgDT0QD6U7BJ4TKVk2SDDg7wlP39P9yAx1RfLy7vP/7rsDRlWVfbWxElslu56+r7QOhB2NSDsabYYruoZQ==" + "version": "7.18.8", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.18.8.tgz", + "integrity": "sha512-HSmX4WZPPK3FUxYp7g2T6EyO8j96HlZJlxmKPSh6KAcqwyDrfx7hKjXpAW/0FhFfTJsR0Yt4lAjLI2coMptIHQ==" }, "@babel/core": { "version": "7.18.6", @@ -276,9 +276,9 @@ } }, "@babel/helper-module-transforms": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.18.6.tgz", - "integrity": "sha512-L//phhB4al5uucwzlimruukHB3jRd5JGClwRMD/ROrVjXfLqovYnvQrK/JK36WYyVwGGO7OD3kMyVTjx+WVPhw==", + "version": "7.18.8", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.18.8.tgz", + "integrity": "sha512-che3jvZwIcZxrwh63VfnFTUzcAM9v/lznYkkRxIBGMPt1SudOKHAEec0SIRCfiuIzTcF7VGj/CaTT6gY4eWxvA==", "requires": { "@babel/helper-environment-visitor": "^7.18.6", "@babel/helper-module-imports": "^7.18.6", @@ -286,8 +286,8 @@ "@babel/helper-split-export-declaration": "^7.18.6", "@babel/helper-validator-identifier": "^7.18.6", "@babel/template": "^7.18.6", - "@babel/traverse": "^7.18.6", - "@babel/types": "^7.18.6" + "@babel/traverse": "^7.18.8", + "@babel/types": "^7.18.8" } }, "@babel/helper-optimise-call-expression": { @@ -404,9 +404,9 @@ } }, "@babel/parser": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.18.6.tgz", - "integrity": "sha512-uQVSa9jJUe/G/304lXspfWVpKpK4euFLgGiMQFOCpM/bgcAdeoHwi/OQz23O9GK2osz26ZiXRRV9aV+Yl1O8tw==" + "version": "7.18.8", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.18.8.tgz", + "integrity": "sha512-RSKRfYX20dyH+elbJK2uqAkVyucL+xXzhqlMD5/ZXx+dAAwpyB7HsvnHe/ZUGOF+xLr5Wx9/JoXVTj6BQE2/oA==" }, "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": { "version": "7.18.6", @@ -749,9 +749,9 @@ } }, "@babel/plugin-transform-classes": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.18.6.tgz", - "integrity": "sha512-XTg8XW/mKpzAF3actL554Jl/dOYoJtv3l8fxaEczpgz84IeeVf+T1u2CSvPHuZbt0w3JkIx4rdn/MRQI7mo0HQ==", + "version": "7.18.8", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.18.8.tgz", + "integrity": "sha512-RySDoXdF6hgHSHuAW4aLGyVQdmvEX/iJtjVre52k0pxRq4hzqze+rAVP++NmNv596brBpYmaiKgTZby7ziBnVg==", "requires": { "@babel/helper-annotate-as-pure": "^7.18.6", "@babel/helper-environment-visitor": "^7.18.6", @@ -815,9 +815,9 @@ } }, "@babel/plugin-transform-for-of": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.18.6.tgz", - "integrity": "sha512-WAjoMf4wIiSsy88KmG7tgj2nFdEK7E46tArVtcgED7Bkj6Fg/tG5SbvNIOKxbFS2VFgNh6+iaPswBeQZm4ox8w==", + "version": "7.18.8", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.18.8.tgz", + "integrity": "sha512-yEfTRnjuskWYo0k1mHUqrVWaZwrdq8AYbfrpqULOJOaucGSp4mNMVps+YtA8byoevxS/urwU75vyhQIxcCgiBQ==", "requires": { "@babel/helper-plugin-utils": "^7.18.6" } @@ -917,9 +917,9 @@ } }, "@babel/plugin-transform-parameters": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.18.6.tgz", - "integrity": "sha512-FjdqgMv37yVl/gwvzkcB+wfjRI8HQmc5EgOG9iGNvUY1ok+TjsoaMP7IqCDZBhkFcM5f3OPVMs6Dmp03C5k4/A==", + "version": "7.18.8", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.18.8.tgz", + "integrity": "sha512-ivfbE3X2Ss+Fj8nnXvKJS6sjRG4gzwPMsP+taZC+ZzEGjAYlvENixmt1sZ5Ca6tWls+BlKSGKPJ6OOXvXCbkFg==", "requires": { "@babel/helper-plugin-utils": "^7.18.6" } @@ -1048,9 +1048,9 @@ } }, "@babel/plugin-transform-typescript": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.18.6.tgz", - "integrity": "sha512-ijHNhzIrLj5lQCnI6aaNVRtGVuUZhOXFLRVFs7lLrkXTHip4FKty5oAuQdk4tywG0/WjXmjTfQCWmuzrvFer1w==", + "version": "7.18.8", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.18.8.tgz", + "integrity": "sha512-p2xM8HI83UObjsZGofMV/EdYjamsDm6MoN3hXPYIT0+gxIoopE+B7rPYKAxfrz9K9PK7JafTTjqYC6qipLExYA==", "requires": { "@babel/helper-create-class-features-plugin": "^7.18.6", "@babel/helper-plugin-utils": "^7.18.6", @@ -1226,18 +1226,18 @@ } }, "@babel/traverse": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.18.6.tgz", - "integrity": "sha512-zS/OKyqmD7lslOtFqbscH6gMLFYOfG1YPqCKfAW5KrTeolKqvB8UelR49Fpr6y93kYkW2Ik00mT1LOGiAGvizw==", + "version": "7.18.8", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.18.8.tgz", + "integrity": "sha512-UNg/AcSySJYR/+mIcJQDCv00T+AqRO7j/ZEJLzpaYtgM48rMg5MnkJgyNqkzo88+p4tfRvZJCEiwwfG6h4jkRg==", "requires": { "@babel/code-frame": "^7.18.6", - "@babel/generator": "^7.18.6", + "@babel/generator": "^7.18.7", "@babel/helper-environment-visitor": "^7.18.6", "@babel/helper-function-name": "^7.18.6", "@babel/helper-hoist-variables": "^7.18.6", "@babel/helper-split-export-declaration": "^7.18.6", - "@babel/parser": "^7.18.6", - "@babel/types": "^7.18.6", + "@babel/parser": "^7.18.8", + "@babel/types": "^7.18.8", "debug": "^4.1.0", "globals": "^11.1.0" }, @@ -1253,9 +1253,9 @@ } }, "@babel/types": { - "version": "7.18.7", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.7.tgz", - "integrity": "sha512-QG3yxTcTIBoAcQmkCs+wAPYZhu7Dk9rXKacINfNbdJDNERTbLQbHGyVG8q/YGMPeCJRIhSY0+fTc5+xuh6WPSQ==", + "version": "7.18.8", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.8.tgz", + "integrity": "sha512-qwpdsmraq0aJ3osLJRApsc2ouSJCdnMeZwB0DhbtHAtRpZNZCdlbRnHIgcRKzdE1g0iOGg644fzjOBcdOz9cPw==", "requires": { "@babel/helper-validator-identifier": "^7.18.6", "to-fast-properties": "^2.0.0" @@ -1317,13 +1317,13 @@ } }, "@gatsbyjs/parcel-namer-relative-to-cwd": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/@gatsbyjs/parcel-namer-relative-to-cwd/-/parcel-namer-relative-to-cwd-1.3.0.tgz", - "integrity": "sha512-nd1lQn7ezg51ekqZm8iZjND8akB7bsGkGe7GdIPdTwbhale2dHLqd74qg+bBrEjv5f5aFZhpJeY9XpeU4emWZQ==", + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/@gatsbyjs/parcel-namer-relative-to-cwd/-/parcel-namer-relative-to-cwd-1.3.1.tgz", + "integrity": "sha512-wN4iU1CWumvhcuzMBKdDikZ5xgo81Ias09bKyjE36DgNxTzAhT2fXZIBAAEUlv/GBQqFe6Eas83gGGtXf31hiw==", "requires": { "@babel/runtime": "^7.18.0", "@parcel/plugin": "2.6.0", - "gatsby-core-utils": "^3.18.0" + "gatsby-core-utils": "^3.18.1" } }, "@gatsbyjs/potrace": { @@ -1355,108 +1355,87 @@ } }, "@graphql-codegen/add": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/@graphql-codegen/add/-/add-3.1.1.tgz", - "integrity": "sha512-XkVwcqosa0CVBlL1HaQT0gp+EUfhuQE3LzrEpzMQLwchxaj/NPVYtOJL6MUHaYDsHzLqxWrufjfbeB3y2NQgRw==", + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/@graphql-codegen/add/-/add-3.2.0.tgz", + "integrity": "sha512-8hyr5XvTDGnpiT4nH2yH8PP4SWtUEIUdkFaZbkpkFkU0Ud9dplvSviOCdxdArffZ1FHy0XYLTMa2it+UJOtszg==", "requires": { - "@graphql-codegen/plugin-helpers": "^2.3.2", - "tslib": "~2.3.0" + "@graphql-codegen/plugin-helpers": "^2.5.0", + "tslib": "~2.4.0" } }, "@graphql-codegen/core": { - "version": "2.5.1", - "resolved": "https://registry.npmjs.org/@graphql-codegen/core/-/core-2.5.1.tgz", - "integrity": "sha512-alctBVl2hMnBXDLwkgmnFPrZVIiBDsWJSmxJcM4GKg1PB23+xuov35GE47YAyAhQItE1B1fbYnbb1PtGiDZ4LA==", + "version": "2.6.0", + "resolved": "https://registry.npmjs.org/@graphql-codegen/core/-/core-2.6.0.tgz", + "integrity": "sha512-7uZGnLCMR/pnh/5CsyI4y5bBvRndNHFs+AWpMUUjDBcjMRrMaavu37VyyYDz4/ob0BnQJt8RTBN9eArS9PLYAQ==", "requires": { - "@graphql-codegen/plugin-helpers": "^2.4.1", - "@graphql-tools/schema": "^8.1.2", - "@graphql-tools/utils": "^8.1.1", - "tslib": "~2.3.0" + "@graphql-codegen/plugin-helpers": "^2.5.0", + "@graphql-tools/schema": "^8.5.0", + "@graphql-tools/utils": "^8.8.0", + "tslib": "~2.4.0" } }, "@graphql-codegen/plugin-helpers": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/@graphql-codegen/plugin-helpers/-/plugin-helpers-2.4.2.tgz", - "integrity": "sha512-LJNvwAPv/sKtI3RnRDm+nPD+JeOfOuSOS4FFIpQCMUCyMnFcchV/CPTTv7tT12fLUpEg6XjuFfDBvOwndti30Q==", + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/@graphql-codegen/plugin-helpers/-/plugin-helpers-2.5.0.tgz", + "integrity": "sha512-0jM5/14EdM4yow5v8OGOnUmRqfA1gaWkh+J5berqQUpcFYfSQXD6+Idnkiju/jjIypEN7UvbPkC7BgryWVxexA==", "requires": { - "@graphql-tools/utils": "^8.5.2", + "@graphql-tools/utils": "^8.8.0", "change-case-all": "1.0.14", "common-tags": "1.8.2", "import-from": "4.0.0", "lodash": "~4.17.0", - "tslib": "~2.3.0" + "tslib": "~2.4.0" } }, "@graphql-codegen/schema-ast": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/@graphql-codegen/schema-ast/-/schema-ast-2.4.1.tgz", - "integrity": "sha512-bIWlKk/ShoVJfghA4Rt1OWnd34/dQmZM/vAe6fu6QKyOh44aAdqPtYQ2dbTyFXoknmu504etKJGEDllYNUJRfg==", + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/@graphql-codegen/schema-ast/-/schema-ast-2.5.0.tgz", + "integrity": "sha512-nlF4Yc7h90nmogG2E11TeFJ3/hCkb4SDMSdbJX68b1mhvVEji/kq3zWYKAQ+lAzjZ7HF94Eylm3MrZAjjpCKIA==", "requires": { - "@graphql-codegen/plugin-helpers": "^2.3.2", - "@graphql-tools/utils": "^8.1.1", - "tslib": "~2.3.0" + "@graphql-codegen/plugin-helpers": "^2.5.0", + "@graphql-tools/utils": "^8.8.0", + "tslib": "~2.4.0" } }, "@graphql-codegen/typescript": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@graphql-codegen/typescript/-/typescript-2.6.0.tgz", - "integrity": "sha512-f36ilg8J+wui0OhmQglIZ+2z4Ybc08Y7r7BlBDqfJ1F5X0zau0SlC7Hp2iCoCA0ucqZYtiUU/0n+/R8m1cTrQQ==", + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/@graphql-codegen/typescript/-/typescript-2.7.1.tgz", + "integrity": "sha512-qF4SBMgBnLcegba2s9+zC3NwgRhU0Kv+eS8kl9G5ldEHx9Bpu2tft+lk6fjqqhExDzJT+MEOU3Ecog3BzL2R1g==", "requires": { - "@graphql-codegen/plugin-helpers": "^2.4.0", - "@graphql-codegen/schema-ast": "^2.4.1", - "@graphql-codegen/visitor-plugin-common": "2.10.0", + "@graphql-codegen/plugin-helpers": "^2.5.0", + "@graphql-codegen/schema-ast": "^2.5.0", + "@graphql-codegen/visitor-plugin-common": "2.11.1", "auto-bind": "~4.0.0", "tslib": "~2.4.0" - }, - "dependencies": { - "tslib": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz", - "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==" - } } }, "@graphql-codegen/typescript-operations": { - "version": "2.4.3", - "resolved": "https://registry.npmjs.org/@graphql-codegen/typescript-operations/-/typescript-operations-2.4.3.tgz", - "integrity": "sha512-MW9cU/zCAmfFAObwW23e+GrW3CoV9OX2gVm/V1565WGZXDQPUc5Y5IjdfGfunV4ApkgFDiHpF1Mz/AS55OErgw==", + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/@graphql-codegen/typescript-operations/-/typescript-operations-2.5.1.tgz", + "integrity": "sha512-lGv+sPDXGcp/vDdIh7SoQjz8BRCZhLats4Hbqnf6gB7UtIasMvGuFDQyrKb3XAkQQYWqx/xtmEo0rBN8syV+Wg==", "requires": { - "@graphql-codegen/plugin-helpers": "^2.4.0", - "@graphql-codegen/typescript": "^2.6.0", - "@graphql-codegen/visitor-plugin-common": "2.10.0", + "@graphql-codegen/plugin-helpers": "^2.5.0", + "@graphql-codegen/typescript": "^2.7.1", + "@graphql-codegen/visitor-plugin-common": "2.11.1", "auto-bind": "~4.0.0", "tslib": "~2.4.0" - }, - "dependencies": { - "tslib": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz", - "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==" - } } }, "@graphql-codegen/visitor-plugin-common": { - "version": "2.10.0", - "resolved": "https://registry.npmjs.org/@graphql-codegen/visitor-plugin-common/-/visitor-plugin-common-2.10.0.tgz", - "integrity": "sha512-nWoxHKUdwOJCWV96Ks1x4EwYCWsZDJXB+2j6EQz5j27DzdxmQInZ86degaDCd3EgbwhMQEMtiZiPGFFDrgBkHA==", - "requires": { - "@graphql-codegen/plugin-helpers": "^2.4.0", - "@graphql-tools/optimize": "^1.0.1", - "@graphql-tools/relay-operation-optimizer": "^6.4.14", - "@graphql-tools/utils": "^8.3.0", + "version": "2.11.1", + "resolved": "https://registry.npmjs.org/@graphql-codegen/visitor-plugin-common/-/visitor-plugin-common-2.11.1.tgz", + "integrity": "sha512-AlrtGWKn2o89SPna75ATEHYAu95MUMucgBqLgcRvK9n/PHhVAbkDrNCH5pL03fE0HLOup3GpjX8DcnFBMU46IA==", + "requires": { + "@graphql-codegen/plugin-helpers": "^2.5.0", + "@graphql-tools/optimize": "^1.3.0", + "@graphql-tools/relay-operation-optimizer": "^6.5.0", + "@graphql-tools/utils": "^8.8.0", "auto-bind": "~4.0.0", "change-case-all": "1.0.14", "dependency-graph": "^0.11.0", "graphql-tag": "^2.11.0", "parse-filepath": "^1.0.2", "tslib": "~2.4.0" - }, - "dependencies": { - "tslib": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz", - "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==" - } } }, "@graphql-tools/batch-execute": { @@ -1502,13 +1481,6 @@ "globby": "^11.0.3", "tslib": "^2.4.0", "unixify": "^1.0.0" - }, - "dependencies": { - "tslib": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz", - "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==" - } } }, "@graphql-tools/delegate": { @@ -1601,13 +1573,6 @@ "@babel/types": "^7.16.8", "@graphql-tools/utils": "8.8.0", "tslib": "^2.4.0" - }, - "dependencies": { - "tslib": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz", - "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==" - } } }, "@graphql-tools/import": { @@ -1618,13 +1583,6 @@ "@graphql-tools/utils": "8.8.0", "resolve-from": "5.0.0", "tslib": "^2.4.0" - }, - "dependencies": { - "tslib": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz", - "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==" - } } }, "@graphql-tools/json-file-loader": { @@ -1678,11 +1636,6 @@ "requires": { "yocto-queue": "^0.1.0" } - }, - "tslib": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz", - "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==" } } }, @@ -1693,13 +1646,6 @@ "requires": { "@graphql-tools/utils": "8.8.0", "tslib": "^2.4.0" - }, - "dependencies": { - "tslib": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz", - "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==" - } } }, "@graphql-tools/optimize": { @@ -1708,13 +1654,6 @@ "integrity": "sha512-30QOWJoMJEt1De7tAFtWJ6VPrP6SLq+tSQrA3x+WMvCW3q2exq5wPDpvAXOakVKu0y8L2E+YkipC0hcQPBQdLg==", "requires": { "tslib": "^2.4.0" - }, - "dependencies": { - "tslib": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz", - "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==" - } } }, "@graphql-tools/relay-operation-optimizer": { @@ -1725,13 +1664,6 @@ "@ardatan/relay-compiler": "12.0.0", "@graphql-tools/utils": "8.8.0", "tslib": "^2.4.0" - }, - "dependencies": { - "tslib": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz", - "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==" - } } }, "@graphql-tools/schema": { @@ -1743,13 +1675,6 @@ "@graphql-tools/utils": "8.8.0", "tslib": "^2.4.0", "value-or-promise": "1.0.11" - }, - "dependencies": { - "tslib": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz", - "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==" - } } }, "@graphql-tools/url-loader": { @@ -1814,13 +1739,6 @@ "integrity": "sha512-KJrtx05uSM/cPYFdTnGAS1doL5bftJLAiFCDMZ8Vkifztz3BFn3gpFiy/o4wDtM8s39G46mxmt2Km/RmeltfGw==", "requires": { "tslib": "^2.4.0" - }, - "dependencies": { - "tslib": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz", - "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==" - } } }, "@graphql-tools/wrap": { @@ -2248,9 +2166,9 @@ } }, "@jridgewell/resolve-uri": { - "version": "3.0.8", - "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.0.8.tgz", - "integrity": "sha512-YK5G9LaddzGbcucK4c8h5tWFmMPBvRZ/uyWmN1/SbBdIvqGUdWGkJ5BAaccgs6XbzVLsqbPJrBSFwKv3kT9i7w==" + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz", + "integrity": "sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==" }, "@jridgewell/set-array": { "version": "1.1.2", @@ -2306,39 +2224,39 @@ } }, "@lmdb/lmdb-darwin-arm64": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-arm64/-/lmdb-darwin-arm64-2.5.2.tgz", - "integrity": "sha512-+F8ioQIUN68B4UFiIBYu0QQvgb9FmlKw2ctQMSBfW2QBrZIxz9vD9jCGqTCPqZBRbPHAS/vG1zSXnKqnS2ch/A==", + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-arm64/-/lmdb-darwin-arm64-2.5.3.tgz", + "integrity": "sha512-RXwGZ/0eCqtCY8FLTM/koR60w+MXyvBUpToXiIyjOcBnC81tAlTUHrRUavCEWPI9zc9VgvpK3+cbumPyR8BSuA==", "optional": true }, "@lmdb/lmdb-darwin-x64": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-x64/-/lmdb-darwin-x64-2.5.2.tgz", - "integrity": "sha512-KvPH56KRLLx4KSfKBx0m1r7GGGUMXm0jrKmNE7plbHlesZMuPJICtn07HYgQhj1LNsK7Yqwuvnqh1QxhJnF1EA==", + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-x64/-/lmdb-darwin-x64-2.5.3.tgz", + "integrity": "sha512-337dNzh5yCdNCTk8kPfoU7jR3otibSlPDGW0vKZT97rKnQMb9tNdto3RtWoGPsQ8hKmlRZpojOJtmwjncq1MoA==", "optional": true }, "@lmdb/lmdb-linux-arm": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm/-/lmdb-linux-arm-2.5.2.tgz", - "integrity": "sha512-5kQAP21hAkfW5Bl+e0P57dV4dGYnkNIpR7f/GAh6QHlgXx+vp/teVj4PGRZaKAvt0GX6++N6hF8NnGElLDuIDw==", + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm/-/lmdb-linux-arm-2.5.3.tgz", + "integrity": "sha512-mU2HFJDGwECkoD9dHQEfeTG5mp8hNS2BCfwoiOpVPMeapjYpQz9Uw3FkUjRZ4dGHWKbin40oWHuL0bk2bCx+Sg==", "optional": true }, "@lmdb/lmdb-linux-arm64": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm64/-/lmdb-linux-arm64-2.5.2.tgz", - "integrity": "sha512-aLl89VHL/wjhievEOlPocoefUyWdvzVrcQ/MHQYZm2JfV1jUsrbr/ZfkPPUFvZBf+VSE+Q0clWs9l29PCX1hTQ==", + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm64/-/lmdb-linux-arm64-2.5.3.tgz", + "integrity": "sha512-VJw60Mdgb4n+L0fO1PqfB0C7TyEQolJAC8qpqvG3JoQwvyOv6LH7Ib/WE3wxEW9nuHmVz9jkK7lk5HfWWgoO1Q==", "optional": true }, "@lmdb/lmdb-linux-x64": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-x64/-/lmdb-linux-x64-2.5.2.tgz", - "integrity": "sha512-xUdUfwDJLGjOUPH3BuPBt0NlIrR7f/QHKgu3GZIXswMMIihAekj2i97oI0iWG5Bok/b+OBjHPfa8IU9velnP/Q==", + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-x64/-/lmdb-linux-x64-2.5.3.tgz", + "integrity": "sha512-qaReO5aV8griBDsBr8uBF/faO3ieGjY1RY4p8JvTL6Mu1ylLrTVvOONqKFlNaCwrmUjWw5jnf7VafxDAeQHTow==", "optional": true }, "@lmdb/lmdb-win32-x64": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-win32-x64/-/lmdb-win32-x64-2.5.2.tgz", - "integrity": "sha512-zrBczSbXKxEyK2ijtbRdICDygRqWSRPpZMN5dD1T8VMEW5RIhIbwFWw2phDRXuBQdVDpSjalCIUMWMV2h3JaZA==", + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-win32-x64/-/lmdb-win32-x64-2.5.3.tgz", + "integrity": "sha512-cK+Elf3RjEzrm3SerAhrFWL5oQAsZSJ/LmjL1joIpTfEP1etJJ9CTRvdaV6XLYAxaEkfdhk/9hOvHLbR9yIhCA==", "optional": true }, "@microsoft/fetch-event-source": { @@ -2940,13 +2858,6 @@ "integrity": "sha512-tb7Iu+oZ+zWJZ3HJqwx8oNwSDIU440hmVMDPhpACWQWnrZHK99Bxs70gT1L2dnr5Hg50ZRWEFkQCAnOVVV0z1Q==", "requires": { "tslib": "^2.4.0" - }, - "dependencies": { - "tslib": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz", - "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==" - } } }, "@szmarczak/http-timer": { @@ -3113,9 +3024,9 @@ } }, "@types/node": { - "version": "18.0.1", - "resolved": "https://registry.npmjs.org/@types/node/-/node-18.0.1.tgz", - "integrity": "sha512-CmR8+Tsy95hhwtZBKJBs0/FFq4XX7sDZHlGGf+0q+BRZfMbOTkzkj0AFAuTyXbObDIoanaBBW0+KEW+m3N16Wg==" + "version": "18.0.3", + "resolved": "https://registry.npmjs.org/@types/node/-/node-18.0.3.tgz", + "integrity": "sha512-HzNRZtp4eepNitP+BD6k2L6DROIDG4Q0fm4x+dwfsr6LGmROENnok75VGw40628xf+iR24WeMFcHuuBDUAzzsQ==" }, "@types/node-fetch": { "version": "2.6.2", @@ -3157,9 +3068,9 @@ } }, "@types/react": { - "version": "18.0.14", - "resolved": "https://registry.npmjs.org/@types/react/-/react-18.0.14.tgz", - "integrity": "sha512-x4gGuASSiWmo0xjDLpm5mPb52syZHJx02VKbqUKdLmKtAwIh63XClGsiTI1K6DO5q7ox4xAsQrU+Gl3+gGXF9Q==", + "version": "18.0.15", + "resolved": "https://registry.npmjs.org/@types/react/-/react-18.0.15.tgz", + "integrity": "sha512-iz3BtLuIYH1uWdsv6wXYdhozhqj20oD4/Hk2DNXIn1kFsmp9x8d9QB6FnPhfkbhd2PgEONt9Q1x/ebkwjfFLow==", "requires": { "@types/prop-types": "*", "@types/scheduler": "*", @@ -3841,12 +3752,12 @@ } }, "babel-plugin-remove-graphql-queries": { - "version": "4.18.0", - "resolved": "https://registry.npmjs.org/babel-plugin-remove-graphql-queries/-/babel-plugin-remove-graphql-queries-4.18.0.tgz", - "integrity": "sha512-6oOm/cTZdk+7yPh4R4ISLKNur3rK5w2zAUCXTOGKYcRYbvKCS22ODafQBrNcu/UdfpXwSz3XZOG5ru72Z5usUw==", + "version": "4.18.1", + "resolved": "https://registry.npmjs.org/babel-plugin-remove-graphql-queries/-/babel-plugin-remove-graphql-queries-4.18.1.tgz", + "integrity": "sha512-2I7qsm3pnyvrS6/Q9YuHK1SpfQLmrgYH/AjpnWpnLHee6SiVb5Te89iphhpBdycpBRVGWh04ram9+z/1rMaRYQ==", "requires": { "@babel/runtime": "^7.15.4", - "gatsby-core-utils": "^3.18.0" + "gatsby-core-utils": "^3.18.1" } }, "babel-plugin-syntax-trailing-function-commas": { @@ -3894,9 +3805,9 @@ } }, "babel-preset-gatsby": { - "version": "2.18.0", - "resolved": "https://registry.npmjs.org/babel-preset-gatsby/-/babel-preset-gatsby-2.18.0.tgz", - "integrity": "sha512-b6BJEl0MlA/nh+IkTJRgvPEgdN09Pu34Szo5dE4QYvQa66++EqfQUK5huqr+FgZJedPPYYbRY2SgKlRXev5QIQ==", + "version": "2.18.1", + "resolved": "https://registry.npmjs.org/babel-preset-gatsby/-/babel-preset-gatsby-2.18.1.tgz", + "integrity": "sha512-oaVV6ULceMjTQKjCA06qvgfLwBNZFJxpacwNZYOJpLygmj+qYiNKDGhJ8vTw/KAIUeDPZAbPMP5P+3wMEPIWYQ==", "requires": { "@babel/plugin-proposal-class-properties": "^7.14.0", "@babel/plugin-proposal-nullish-coalescing-operator": "^7.14.5", @@ -3911,7 +3822,7 @@ "babel-plugin-dynamic-import-node": "^2.3.3", "babel-plugin-macros": "^3.1.0", "babel-plugin-transform-react-remove-prop-types": "^0.4.24", - "gatsby-core-utils": "^3.18.0", + "gatsby-core-utils": "^3.18.1", "gatsby-legacy-polyfills": "^2.18.0" } }, @@ -4250,9 +4161,9 @@ } }, "caniuse-lite": { - "version": "1.0.30001363", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001363.tgz", - "integrity": "sha512-HpQhpzTGGPVMnCjIomjt+jvyUu8vNFo3TaDiZ/RcoTrlOq/5+tC8zHdsbgFB6MxmaY+jCpsH09aD80Bb4Ow3Sg==" + "version": "1.0.30001365", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001365.tgz", + "integrity": "sha512-VDQZ8OtpuIPMBA4YYvZXECtXbddMCUFJk1qu8Mqxfm/SZJNSr1cy4IuLCOL7RJ/YASrvJcYg1Zh+UEUQ5m6z8Q==" }, "capital-case": { "version": "1.0.4", @@ -4735,16 +4646,16 @@ "integrity": "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==" }, "core-js": { - "version": "3.23.3", - "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.23.3.tgz", - "integrity": "sha512-oAKwkj9xcWNBAvGbT//WiCdOMpb9XQG92/Fe3ABFM/R16BsHgePG00mFOgKf7IsCtfj8tA1kHtf/VwErhriz5Q==" + "version": "3.23.4", + "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.23.4.tgz", + "integrity": "sha512-vjsKqRc1RyAJC3Ye2kYqgfdThb3zYnx9CrqoCcjMOENMtQPC7ZViBvlDxwYU/2z2NI/IPuiXw5mT4hWhddqjzQ==" }, "core-js-compat": { - "version": "3.23.3", - "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.23.3.tgz", - "integrity": "sha512-WSzUs2h2vvmKsacLHNTdpyOC9k43AEhcGoFlVgCY4L7aw98oSBKtPL6vD0/TqZjRWRQYdDSLkzZIni4Crbbiqw==", + "version": "3.23.4", + "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.23.4.tgz", + "integrity": "sha512-RkSRPe+JYEoflcsuxJWaiMPhnZoFS51FcIxm53k4KzhISCBTmaGlto9dTIrYuk0hnJc3G6pKufAKepHnBq6B6Q==", "requires": { - "browserslist": "^4.21.0", + "browserslist": "^4.21.1", "semver": "7.0.0" }, "dependencies": { @@ -4756,9 +4667,9 @@ } }, "core-js-pure": { - "version": "3.23.3", - "resolved": "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.23.3.tgz", - "integrity": "sha512-XpoouuqIj4P+GWtdyV8ZO3/u4KftkeDVMfvp+308eGMhCrA3lVDSmAxO0c6GGOcmgVlaKDrgWVMo49h2ab/TDA==" + "version": "3.23.4", + "resolved": "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.23.4.tgz", + "integrity": "sha512-lizxkcgj3XDmi7TUBFe+bQ1vNpD5E4t76BrBWI3HdUxdw/Mq1VF4CkiHzIKyieECKtcODK2asJttoofEeUKICQ==" }, "core-util-is": { "version": "1.0.3", @@ -4795,9 +4706,9 @@ } }, "create-gatsby": { - "version": "2.18.0", - "resolved": "https://registry.npmjs.org/create-gatsby/-/create-gatsby-2.18.0.tgz", - "integrity": "sha512-74yn3+wlFKwg3DUVdFdBnfqc6gUVpYjqr/1XtQ0Rb57i0ygvER8Xgp4rY5Mm+8rl7JwBma1NONeM20cdMQjT2w==", + "version": "2.18.1", + "resolved": "https://registry.npmjs.org/create-gatsby/-/create-gatsby-2.18.1.tgz", + "integrity": "sha512-1AZioXKi4COhESSHfsb/6tpkBvyuuXHwAmMAGrcUQpbynsQxYdqonnRqnFhp80bA2cIKxgjtHzzLhyRouDonbQ==", "requires": { "@babel/runtime": "^7.15.4" } @@ -5349,9 +5260,9 @@ "integrity": "sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==" }, "duplexer3": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/duplexer3/-/duplexer3-0.1.4.tgz", - "integrity": "sha512-CEj8FwwNA4cVH2uFCoHUrmojhYh1vmCdOaneKJXwkeY1i9jnlslVo9dx+hQ5Hl9GnH/Bwy/IjxAyOePyPKYnzA==" + "version": "0.1.5", + "resolved": "https://registry.npmjs.org/duplexer3/-/duplexer3-0.1.5.tgz", + "integrity": "sha512-1A8za6ws41LQgv9HrE/66jyC5yuSjQ3L/KOpFtoBilsAK2iA2wuS5rTt1OCzIvtS2V7nVmedsUU+DGRcjBmOYA==" }, "ee-first": { "version": "1.1.1", @@ -5359,9 +5270,9 @@ "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==" }, "electron-to-chromium": { - "version": "1.4.179", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.179.tgz", - "integrity": "sha512-1XeTb/U/8Xgh2YgPOqhakLYsvCcU4U7jUjTMbEnhIJoIWd/Qt3yC8y0cbG+fHzn4zUNF99Ey1xiPf20bwgLO3Q==" + "version": "1.4.186", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.186.tgz", + "integrity": "sha512-YoVeFrGd/7ROjz4R9uPoND1K/hSRC/xADy9639ZmIZeJSaBnKdYx3I6LMPsY7CXLpK7JFgKQVzeZ/dk2br6Eaw==" }, "emoji-regex": { "version": "8.0.0", @@ -6707,9 +6618,9 @@ "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==" }, "gatsby": { - "version": "4.18.0", - "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-4.18.0.tgz", - "integrity": "sha512-EyiwYUsbSKUKsdjm8nnLw5AGJwOJ9NAWcrFg1V/QU4CUnk/M8EiP0TxiGUmK1/K7g82XGxUjuAPYJKJk85yxHA==", + "version": "4.18.1", + "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-4.18.1.tgz", + "integrity": "sha512-frMFAWOmMl/CtqBZ3aZXlysicQQa8C+yfMdjnjx81f7E5xoL20klk1j4UYj1kUnGgBMSuVehU8M+bE0kT02zoQ==", "requires": { "@babel/code-frame": "^7.14.0", "@babel/core": "^7.15.5", @@ -6745,8 +6656,8 @@ "babel-plugin-add-module-exports": "^1.0.4", "babel-plugin-dynamic-import-node": "^2.3.3", "babel-plugin-lodash": "^3.3.4", - "babel-plugin-remove-graphql-queries": "^4.18.0", - "babel-preset-gatsby": "^2.18.0", + "babel-plugin-remove-graphql-queries": "^4.18.1", + "babel-preset-gatsby": "^2.18.1", "better-opn": "^2.1.1", "bluebird": "^3.7.2", "body-parser": "^1.19.0", @@ -6789,20 +6700,20 @@ "find-cache-dir": "^3.3.2", "fs-exists-cached": "1.0.0", "fs-extra": "^10.1.0", - "gatsby-cli": "^4.18.0", - "gatsby-core-utils": "^3.18.0", + "gatsby-cli": "^4.18.1", + "gatsby-core-utils": "^3.18.1", "gatsby-graphiql-explorer": "^2.18.0", "gatsby-legacy-polyfills": "^2.18.0", - "gatsby-link": "^4.18.0", - "gatsby-page-utils": "^2.18.0", - "gatsby-parcel-config": "0.9.0", - "gatsby-plugin-page-creator": "^4.18.0", - "gatsby-plugin-typescript": "^4.18.0", - "gatsby-plugin-utils": "^3.12.0", + "gatsby-link": "^4.18.1", + "gatsby-page-utils": "^2.18.1", + "gatsby-parcel-config": "^0.9.1", + "gatsby-plugin-page-creator": "^4.18.1", + "gatsby-plugin-typescript": "^4.18.1", + "gatsby-plugin-utils": "^3.12.1", "gatsby-react-router-scroll": "^5.18.0", "gatsby-script": "^1.3.0", "gatsby-sharp": "^0.12.0", - "gatsby-telemetry": "^3.18.0", + "gatsby-telemetry": "^3.18.1", "gatsby-worker": "^1.18.0", "glob": "^7.2.3", "globby": "^11.1.0", @@ -6818,7 +6729,7 @@ "joi": "^17.4.2", "json-loader": "^0.5.7", "latest-version": "5.1.0", - "lmdb": "2.5.2", + "lmdb": "2.5.3", "lodash": "^4.17.21", "md5-file": "^5.0.0", "meant": "^1.0.3", @@ -6876,9 +6787,9 @@ }, "dependencies": { "gatsby-cli": { - "version": "4.18.0", - "resolved": "https://registry.npmjs.org/gatsby-cli/-/gatsby-cli-4.18.0.tgz", - "integrity": "sha512-H4V1XvXP3EMwUBDbAlpu3jbjlCetUmHY6VB1YsH2kkIdlMrOgjUgNDFpqjgbk7k7z61du2tCgl1lyW+5he+SnA==", + "version": "4.18.1", + "resolved": "https://registry.npmjs.org/gatsby-cli/-/gatsby-cli-4.18.1.tgz", + "integrity": "sha512-ceYqm6i39rHY343zUCflwXnGtd25QGccvToTWL8W42/EGToDW8bubLfeBSRCfjXm946yf1gkS/1UAsAgAphYDA==", "requires": { "@babel/code-frame": "^7.14.0", "@babel/core": "^7.15.5", @@ -6897,13 +6808,13 @@ "common-tags": "^1.8.2", "configstore": "^5.0.1", "convert-hrtime": "^3.0.0", - "create-gatsby": "^2.18.0", + "create-gatsby": "^2.18.1", "envinfo": "^7.8.1", "execa": "^5.1.1", "fs-exists-cached": "^1.0.0", "fs-extra": "^10.1.0", - "gatsby-core-utils": "^3.18.0", - "gatsby-telemetry": "^3.18.0", + "gatsby-core-utils": "^3.18.1", + "gatsby-telemetry": "^3.18.1", "hosted-git-info": "^3.0.8", "is-valid-path": "^0.1.1", "joi": "^17.4.2", @@ -6929,9 +6840,9 @@ } }, "gatsby-core-utils": { - "version": "3.18.0", - "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.18.0.tgz", - "integrity": "sha512-mCoNgH4MilosLhEroklgVffwie9lyxgmvNwe/oIyzXr6NcZ2uxSp8G1KrgxdG2srt2hCNlZLlzS25ltLTeHTjA==", + "version": "3.18.1", + "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.18.1.tgz", + "integrity": "sha512-sJTxRqizLxYy/tSFk0ydfqEZ3ek1So9HDVUa39F6Oi8XuPCBTFzaAooUvowKGneI5YUbdk5y4VO4ybwVUynntw==", "requires": { "@babel/runtime": "^7.15.4", "ci-info": "2.0.0", @@ -6941,7 +6852,7 @@ "fs-extra": "^10.1.0", "got": "^11.8.5", "import-from": "^4.0.0", - "lmdb": "2.5.2", + "lmdb": "2.5.3", "lock": "^1.1.0", "node-object-hash": "^2.3.10", "proper-lockfile": "^4.1.2", @@ -6984,37 +6895,37 @@ } }, "gatsby-link": { - "version": "4.18.0", - "resolved": "https://registry.npmjs.org/gatsby-link/-/gatsby-link-4.18.0.tgz", - "integrity": "sha512-nE+Z/iE55Id84YqsQOT1bfPJ/AsupY/4s8i6NllQ8no/PRgDGMpkTG6ANqyt2CHs/bywxch2rv8Ho7Gwsuuueg==", + "version": "4.18.1", + "resolved": "https://registry.npmjs.org/gatsby-link/-/gatsby-link-4.18.1.tgz", + "integrity": "sha512-gLFH2iU4WugHU5k+SLu4F0Ar04kDT5KhkyXly99ZVtiIvHpA5DqcuGNIUjIE/lizSCsfa553wGv7dadfghGzrQ==", "requires": { "@babel/runtime": "^7.15.4", "@types/reach__router": "^1.3.10", - "gatsby-page-utils": "^2.18.0", + "gatsby-page-utils": "^2.18.1", "prop-types": "^15.8.1" } }, "gatsby-page-utils": { - "version": "2.18.0", - "resolved": "https://registry.npmjs.org/gatsby-page-utils/-/gatsby-page-utils-2.18.0.tgz", - "integrity": "sha512-qTwlqscKxkBlMd+Mn8xj6sh7L0LbfLGYOPCYozJnukXv8d/6Jyk1nfaP6I82hwj/iyhaBQtk7g8g4XyBJJaESw==", + "version": "2.18.1", + "resolved": "https://registry.npmjs.org/gatsby-page-utils/-/gatsby-page-utils-2.18.1.tgz", + "integrity": "sha512-4EM0LNOQgnCndHDQSI/ZKRFWYWG9dtTPuGbBaGlmPquhj3zwjOscws1vfj7g+u3PowKjZQ2Rf92RZd8xt8XLTQ==", "requires": { "@babel/runtime": "^7.15.4", "bluebird": "^3.7.2", "chokidar": "^3.5.3", "fs-exists-cached": "^1.0.0", - "gatsby-core-utils": "^3.18.0", + "gatsby-core-utils": "^3.18.1", "glob": "^7.2.3", "lodash": "^4.17.21", "micromatch": "^4.0.5" } }, "gatsby-parcel-config": { - "version": "0.9.0", - "resolved": "https://registry.npmjs.org/gatsby-parcel-config/-/gatsby-parcel-config-0.9.0.tgz", - "integrity": "sha512-ccGw/L8ylhDgE/4tr52B6tb2jreApOMoYPW75Z8aM2ULRz505fL5mrnkG1fdQDBZSCHx/0j0x2TZyCLrt0Bvlw==", + "version": "0.9.1", + "resolved": "https://registry.npmjs.org/gatsby-parcel-config/-/gatsby-parcel-config-0.9.1.tgz", + "integrity": "sha512-ZtVntsQYs0xhy1hvWUMeSLc4a+DvxtTf+NUrPF4rvBjOW/LPMx2eYDzPddKvqWmiUaT1+Ki9S9bwCuOp5muawg==", "requires": { - "@gatsbyjs/parcel-namer-relative-to-cwd": "1.3.0", + "@gatsbyjs/parcel-namer-relative-to-cwd": "^1.3.1", "@parcel/bundler-default": "2.6.0", "@parcel/compressor-raw": "2.6.0", "@parcel/namer-default": "2.6.0", @@ -7034,27 +6945,27 @@ } }, "gatsby-plugin-page-creator": { - "version": "4.18.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-page-creator/-/gatsby-plugin-page-creator-4.18.0.tgz", - "integrity": "sha512-6bY4vJndDw0nBcOuQdX41Wvbctw0y9+a7IavCFJKFeNs+Zo0XH2FX0IAww0slDnSJU6AukJ9qfjHqKJkADAZpQ==", + "version": "4.18.1", + "resolved": "https://registry.npmjs.org/gatsby-plugin-page-creator/-/gatsby-plugin-page-creator-4.18.1.tgz", + "integrity": "sha512-XPAglahQ1fDnSdSNJmtAGwVqB7yZDGPOQQBQX7LD74XwYP6uriRo4LyeI+gEXRqW4d63ZL3VMvgdisde9M95LQ==", "requires": { "@babel/runtime": "^7.15.4", "@babel/traverse": "^7.15.4", "@sindresorhus/slugify": "^1.1.2", "chokidar": "^3.5.3", "fs-exists-cached": "^1.0.0", - "gatsby-core-utils": "^3.18.0", - "gatsby-page-utils": "^2.18.0", - "gatsby-plugin-utils": "^3.12.0", - "gatsby-telemetry": "^3.18.0", + "gatsby-core-utils": "^3.18.1", + "gatsby-page-utils": "^2.18.1", + "gatsby-plugin-utils": "^3.12.1", + "gatsby-telemetry": "^3.18.1", "globby": "^11.1.0", "lodash": "^4.17.21" } }, "gatsby-plugin-typescript": { - "version": "4.18.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-typescript/-/gatsby-plugin-typescript-4.18.0.tgz", - "integrity": "sha512-SuNBrp57SnovOyhCz0zPkz7begV4UR2XdXUrFsh4N0jWOI5yFNVgENpKlbI/O7JnvgyV5KC/pkobNh3we+0mcQ==", + "version": "4.18.1", + "resolved": "https://registry.npmjs.org/gatsby-plugin-typescript/-/gatsby-plugin-typescript-4.18.1.tgz", + "integrity": "sha512-YUZcqL2WWiL2ngKe4A5FpTjCij2pLxiim+QaujeKfMjeWfHJ13uQ74HlxQXNpGAy4vMRBiU4CJH71RXgS1aoaA==", "requires": { "@babel/core": "^7.15.5", "@babel/plugin-proposal-nullish-coalescing-operator": "^7.14.5", @@ -7062,18 +6973,18 @@ "@babel/plugin-proposal-optional-chaining": "^7.14.5", "@babel/preset-typescript": "^7.15.0", "@babel/runtime": "^7.15.4", - "babel-plugin-remove-graphql-queries": "^4.18.0" + "babel-plugin-remove-graphql-queries": "^4.18.1" } }, "gatsby-plugin-utils": { - "version": "3.12.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-utils/-/gatsby-plugin-utils-3.12.0.tgz", - "integrity": "sha512-vdz3qwaCOkvgzAxMkZlgpmpWf555jISwek5lyWYhGyJJvXYV8KQ2cZ4CoOfFKAYVeZVSucrHcdWyY3fLLpQvAA==", + "version": "3.12.1", + "resolved": "https://registry.npmjs.org/gatsby-plugin-utils/-/gatsby-plugin-utils-3.12.1.tgz", + "integrity": "sha512-Rx7/MFtiJ+pyvPLqCPj5beyMN6qOx3EYMrOqmvrWJaM32nxMfHZqUqxGruufyFNVe6edfRuNuXcKaPXlGlyexA==", "requires": { "@babel/runtime": "^7.15.4", "@gatsbyjs/potrace": "^2.2.0", "fs-extra": "^10.1.0", - "gatsby-core-utils": "^3.18.0", + "gatsby-core-utils": "^3.18.1", "gatsby-sharp": "^0.12.0", "graphql-compose": "^9.0.7", "import-from": "^4.0.0", @@ -7114,9 +7025,9 @@ } }, "gatsby-telemetry": { - "version": "3.18.0", - "resolved": "https://registry.npmjs.org/gatsby-telemetry/-/gatsby-telemetry-3.18.0.tgz", - "integrity": "sha512-i1JvNqGOyLDPGEn1QN29YGpe2ripg2LZBAOhXmk6lAhRL5fTVo6WkEA2yW7XESnXIOJBFymgVbUlLjXoqeZ5Xg==", + "version": "3.18.1", + "resolved": "https://registry.npmjs.org/gatsby-telemetry/-/gatsby-telemetry-3.18.1.tgz", + "integrity": "sha512-EjjsUv15BZGsmnPrOINRT/s7d18DTKokpp2NDZLm8uOs3MwVoLtUZ/BS7h2NTmgK+WN93q3bNYRkZgKgV9QC1A==", "requires": { "@babel/code-frame": "^7.14.0", "@babel/runtime": "^7.15.4", @@ -7126,7 +7037,7 @@ "boxen": "^4.2.0", "configstore": "^5.0.1", "fs-extra": "^10.1.0", - "gatsby-core-utils": "^3.18.0", + "gatsby-core-utils": "^3.18.1", "git-up": "^4.0.5", "is-docker": "^2.2.1", "lodash": "^4.17.21", @@ -8326,9 +8237,9 @@ } }, "jsx-ast-utils": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.3.1.tgz", - "integrity": "sha512-pxrjmNpeRw5wwVeWyEAk7QJu2GnBO3uzPFmHCKJJFPKK2Cy0cWL23krGtLdnMmbIi6/FjlrQpPyfQI19ByPOhQ==", + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.3.2.tgz", + "integrity": "sha512-4ZCADZHRkno244xlNnn4AOG6sRQ7iBZ5BbgZ4vW4y5IZw7cVUD1PPeblm1xx/nfmMxPdt/LHsXZW8z/j58+l9Q==", "requires": { "array-includes": "^3.1.5", "object.assign": "^4.1.2" @@ -8389,9 +8300,9 @@ } }, "lilconfig": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-2.0.5.tgz", - "integrity": "sha512-xaYmXZtTHPAw5m+xLN8ab9C+3a8YmV3asNSPOATITbtwrfbwaLJj8h66H1WMIpALCkqsIzK3h7oQ+PdX+LQ9Eg==" + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-2.0.6.tgz", + "integrity": "sha512-9JROoBW7pobfsx+Sq2JsASvCo6Pfo6WWoUW79HuB1BCoBXD4PLWJPqDF6fNj67pqBYTbAHkE57M1kS/+L1neOg==" }, "lines-and-columns": { "version": "1.2.4", @@ -8399,16 +8310,16 @@ "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==" }, "lmdb": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/lmdb/-/lmdb-2.5.2.tgz", - "integrity": "sha512-V5V5Xa2Hp9i2XsbDALkBTeHXnBXh/lEmk9p22zdr7jtuOIY9TGhjK6vAvTpOOx9IKU4hJkRWZxn/HsvR1ELLtA==", - "requires": { - "@lmdb/lmdb-darwin-arm64": "2.5.2", - "@lmdb/lmdb-darwin-x64": "2.5.2", - "@lmdb/lmdb-linux-arm": "2.5.2", - "@lmdb/lmdb-linux-arm64": "2.5.2", - "@lmdb/lmdb-linux-x64": "2.5.2", - "@lmdb/lmdb-win32-x64": "2.5.2", + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/lmdb/-/lmdb-2.5.3.tgz", + "integrity": "sha512-iBA0cb13CobBSoGJLfZgnrykLlfJipDAnvtf+YwIqqzBEsTeQYsXrHaSBkaHd5wCWeabwrNvhjZoFMUrlo+eLw==", + "requires": { + "@lmdb/lmdb-darwin-arm64": "2.5.3", + "@lmdb/lmdb-darwin-x64": "2.5.3", + "@lmdb/lmdb-linux-arm": "2.5.3", + "@lmdb/lmdb-linux-arm64": "2.5.3", + "@lmdb/lmdb-linux-x64": "2.5.3", + "@lmdb/lmdb-win32-x64": "2.5.3", "msgpackr": "^1.5.4", "node-addon-api": "^4.3.0", "node-gyp-build-optional-packages": "5.0.3", @@ -8874,9 +8785,9 @@ "integrity": "sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==" }, "moment": { - "version": "2.29.3", - "resolved": "https://registry.npmjs.org/moment/-/moment-2.29.3.tgz", - "integrity": "sha512-c6YRvhEo//6T2Jz/vVtYzqBzwvPT95JBQ+smCytzf7c50oMZRsR/a4w88aD34I+/QVSfnoAnSBFPJHItlOMJVw==" + "version": "2.29.4", + "resolved": "https://registry.npmjs.org/moment/-/moment-2.29.4.tgz", + "integrity": "sha512-5LC9SOxjSc2HF6vO2CyuTDNivEdoz2IvyJJGj6X8DJ0eFyfszE0QiEd+iXmBvUP3WHxSjFH/vIsA0EN00cgr8w==" }, "ms": { "version": "2.1.2", @@ -9033,9 +8944,9 @@ "integrity": "sha512-jY5dPJzw6NHd/KPSfPKJ+IHoFS81/tJ43r34ZeNMXGzCOM8jwQDCD12HYayKIB6MuznrnqIYy2e891NA2g0ibA==" }, "node-releases": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.5.tgz", - "integrity": "sha512-U9h1NLROZTq9uE1SNffn6WuPDg8icmi3ns4rEl/oTfIle4iLjTliCzgTsbaIFMq/Xn078/lfY/BL0GWZ+psK4Q==" + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.6.tgz", + "integrity": "sha512-PiVXnNuFm5+iYkLBNeq5211hvO38y63T0i2KKh2KnUs3RpzJ+JtODFjkD8yjLwnDkTYF1eKXheUwdssR+NRZdg==" }, "normalize-path": { "version": "3.0.0", @@ -11678,9 +11589,9 @@ } }, "tslib": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.1.tgz", - "integrity": "sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw==" + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz", + "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==" }, "tsutils": { "version": "3.21.0", diff --git a/starters/hello-world/package.json b/starters/hello-world/package.json index 378314016860d..4a624bbd8bede 100644 --- a/starters/hello-world/package.json +++ b/starters/hello-world/package.json @@ -14,7 +14,7 @@ "test": "echo \"Write tests! -> https://gatsby.dev/unit-testing\" && exit 1" }, "dependencies": { - "gatsby": "^4.18.0", + "gatsby": "^4.18.1", "react": "^18.1.0", "react-dom": "^18.1.0" }, From 9c0359d8770c18e11ca4551158cb7cdd9c12f01a Mon Sep 17 00:00:00 2001 From: Michal Piechowiak Date: Wed, 13 Jul 2022 11:20:43 +0200 Subject: [PATCH 23/90] fix(parcel-namer-relative-to-cwd): move @parcel/namer-default from peerDeps to deps (#36116) fix(parcel-namer-relative-to-cwd): move @parcel/namer-default from peerDep to dep --- packages/gatsby-parcel-namer-relative-to-cwd/package.json | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/packages/gatsby-parcel-namer-relative-to-cwd/package.json b/packages/gatsby-parcel-namer-relative-to-cwd/package.json index 551ce0f921b34..09f9f16cf3580 100644 --- a/packages/gatsby-parcel-namer-relative-to-cwd/package.json +++ b/packages/gatsby-parcel-namer-relative-to-cwd/package.json @@ -18,7 +18,8 @@ "dependencies": { "@babel/runtime": "^7.18.0", "@parcel/plugin": "2.6.2", - "gatsby-core-utils": "^3.19.0-next.1" + "gatsby-core-utils": "^3.19.0-next.1", + "@parcel/namer-default": "2.6.2" }, "devDependencies": { "@babel/cli": "^7.17.10", @@ -26,9 +27,6 @@ "babel-preset-gatsby-package": "^2.19.0-next.1", "cross-env": "^7.0.3" }, - "peerDependencies": { - "@parcel/namer-default": "2.5.0" - }, "scripts": { "build": "babel src --out-dir lib/ --ignore \"**/__tests__\" --extensions \".ts\"", "prepare": "cross-env NODE_ENV=production npm run build", From 428355cc88396ad7c7d2728416bd9f79c4c9f2f9 Mon Sep 17 00:00:00 2001 From: Kyle Mathews Date: Wed, 13 Jul 2022 08:18:04 -0700 Subject: [PATCH 24/90] fix(gatsby-source-drupal): Ensure node updates are handled sequentially to avoid race conditions when saving nodes (#36026) * Properly await creating relationships to prevent racde condition where sometimes old versions of nodes overwrite new versions * make mocked cache async & fix another async problem --- .../src/__tests__/fixtures/paragraph-v1.json | 395 ++++++++++++++++++ .../src/__tests__/fixtures/paragraph-v2.json | 329 +++++++++++++++ .../src/__tests__/index.js | 60 ++- .../gatsby-source-drupal/src/gatsby-node.js | 54 ++- packages/gatsby-source-drupal/src/utils.js | 156 ++++--- 5 files changed, 879 insertions(+), 115 deletions(-) create mode 100644 packages/gatsby-source-drupal/src/__tests__/fixtures/paragraph-v1.json create mode 100644 packages/gatsby-source-drupal/src/__tests__/fixtures/paragraph-v2.json diff --git a/packages/gatsby-source-drupal/src/__tests__/fixtures/paragraph-v1.json b/packages/gatsby-source-drupal/src/__tests__/fixtures/paragraph-v1.json new file mode 100644 index 0000000000000..b8c4051907eff --- /dev/null +++ b/packages/gatsby-source-drupal/src/__tests__/fixtures/paragraph-v1.json @@ -0,0 +1,395 @@ +[ + { + "jsonapi": { + "version": "1.0", + "meta": { + "links": { + "self": { + "href": "http://jsonapi.org/format/1.0/" + } + } + } + }, + "data": { + "type": "node--page", + "id": "6a5db0d4-4a0f-4a4b-9048-7d26e29fdacb", + "links": { + "self": { + "href": +"https://dev-drupal-bug-reproduction.pantheonsite.io/jsonapi/node/page/6a5db0d4-4a0f-4a4b-9048-7d26e29fdacb?resourceVersion=id%3A13" + } + }, + "attributes": { + "drupal_internal__nid": 2, + "drupal_internal__vid": 13, + "langcode": "en", + "revision_timestamp": "2022-06-30T13:14:32+00:00", + "revision_log": null, + "status": true, + "title": "Testing paragraph fields", + "created": "2022-06-30T13:13:49+00:00", + "changed": "2022-06-30T13:14:32+00:00", + "promote": false, + "sticky": false, + "default_langcode": true, + "revision_translation_affected": true, + "path": { + "alias": null, + "pid": null, + "langcode": "en" + }, + "body": { + "value": "

Hi

\r\n", + "format": "basic_html", + "processed": "

Hi

", + "summary": "" + } + }, + "relationships": { + "node_type": { + "data": { + "type": "node_type--node_type", + "id": "18674fce-64c0-4659-9ef3-daa1515ebbed", + "meta": { + "drupal_internal__target_id": "page" + } + }, + "links": { + "related": { + "href": +"https://dev-drupal-bug-reproduction.pantheonsite.io/jsonapi/node/page/6a5db0d4-4a0f-4a4b-9048-7d26e29fdacb/node_type?resourceVersion=id%3A13" + }, + "self": { + "href": +"https://dev-drupal-bug-reproduction.pantheonsite.io/jsonapi/node/page/6a5db0d4-4a0f-4a4b-9048-7d26e29fdacb/relationships/node_type?resourceVersion=id%3A13" + } + } + }, + "revision_uid": { + "data": { + "type": "user--user", + "id": "9e347e85-8840-44a7-994e-89a5a3e7c2b5", + "meta": { + "drupal_internal__target_id": 1 + } + }, + "links": { + "related": { + "href": +"https://dev-drupal-bug-reproduction.pantheonsite.io/jsonapi/node/page/6a5db0d4-4a0f-4a4b-9048-7d26e29fdacb/revision_uid?resourceVersion=id%3A13" + }, + "self": { + "href": "https://dev-drupal-bug-reproduction.pantheonsite.io/jsonapi/node/page/6a5db0d4-4a0f-4a4b-9048-7d26e29fdacb/relationships/revision_uid?resourceVersion=id%3A13" + } + } + }, + "uid": { + "data": { + "type": "user--user", + "id": "9e347e85-8840-44a7-994e-89a5a3e7c2b5", + "meta": { + "drupal_internal__target_id": 1 + } + }, + "links": { + "related": { + "href": +"https://dev-drupal-bug-reproduction.pantheonsite.io/jsonapi/node/page/6a5db0d4-4a0f-4a4b-9048-7d26e29fdacb/uid?resourceVersion=id%3A13" + }, + "self": { + "href": +"https://dev-drupal-bug-reproduction.pantheonsite.io/jsonapi/node/page/6a5db0d4-4a0f-4a4b-9048-7d26e29fdacb/relationships/uid?resourceVersion=id%3A13" + } + } + }, + "field_content": { + "data": [ + { + "type": "paragraph--image", + "id": "e7861064-0009-4458-bf6e-0284d34bb00d", + "meta": { + "target_revision_id": 37, + "drupal_internal__target_id": 6 + } + }, + { + "type": "paragraph--something", + "id": "b28b4fcd-cea7-4e27-b2c7-ed09a3dad976", + "meta": { + "target_revision_id": 38, + "drupal_internal__target_id": 7 + } + } + ], + "links": { + "related": { + "href": +"https://dev-drupal-bug-reproduction.pantheonsite.io/jsonapi/node/page/6a5db0d4-4a0f-4a4b-9048-7d26e29fdacb/field_content?resourceVersion=id%3A13" + }, + "self": { + "href": "https://dev-drupal-bug-reproduction.pantheonsite.io/jsonapi/node/page/6a5db0d4-4a0f-4a4b-9048-7d26e29fdacb/relationships/field_content?resourceVersion=id%3A13" + } + } + }, + "field_tag": { + "data": [], + "links": { + "related": { + "href": +"https://dev-drupal-bug-reproduction.pantheonsite.io/jsonapi/node/page/6a5db0d4-4a0f-4a4b-9048-7d26e29fdacb/field_tag?resourceVersion=id%3A13" + }, + "self": { + "href": +"https://dev-drupal-bug-reproduction.pantheonsite.io/jsonapi/node/page/6a5db0d4-4a0f-4a4b-9048-7d26e29fdacb/relationships/field_tag?resourceVersion=id%3A13" + } + } + } + } + }, + "links": { + "self": { + "href": "https://dev-drupal-bug-reproduction.pantheonsite.io/jsonapi/node/page/6a5db0d4-4a0f-4a4b-9048-7d26e29fdacb?resourceVersion=id%3A13" + } + }, + "id": "6a5db0d4-4a0f-4a4b-9048-7d26e29fdacb", + "action": "insert", + "langcode": "en", + "attributes": { + "langcode": "en", + "drupal_internal__revision_id": "13" + } + }, + { + "jsonapi": { + "version": "1.0", + "meta": { + "links": { + "self": { + "href": "http://jsonapi.org/format/1.0/" + } + } + } + }, + "data": { + "type": "paragraph--something", + "id": "b28b4fcd-cea7-4e27-b2c7-ed09a3dad976", + "links": { + "self": { + "href": +"https://dev-drupal-bug-reproduction.pantheonsite.io/jsonapi/paragraph/something/b28b4fcd-cea7-4e27-b2c7-ed09a3dad976?resourceVersion=id%3A38" + } + }, + "attributes": { + "drupal_internal__id": 7, + "drupal_internal__revision_id": 38, + "langcode": "en", + "status": true, + "created": "2022-06-30T13:14:20+00:00", + "parent_id": "2", + "parent_type": "node", + "parent_field_name": "field_content", + "behavior_settings": [], + "default_langcode": true, + "revision_translation_affected": true, + "field_text_me": [ + { + "value": "

Text

\r\n", + "format": "basic_html", + "processed": "

Text

", + "summary": "" + } + ] + }, + "relationships": { + "paragraph_type": { + "data": { + "type": "paragraphs_type--paragraphs_type", + "id": "b6341f8e-72af-4e13-bd7b-bc54b9ff9b3b", + "meta": { + "drupal_internal__target_id": "something" + } + }, + "links": { + "related": { + "href": +"https://dev-drupal-bug-reproduction.pantheonsite.io/jsonapi/paragraph/something/b28b4fcd-cea7-4e27-b2c7-ed09a3dad976/paragraph_type?resourceVersion=id%3A38" + }, + "self": { + "href": "https://dev-drupal-bug-reproduction.pantheonsite.io/jsonapi/paragraph/something/b28b4fcd-cea7-4e27-b2c7-ed09a3dad976/relationships/paragraph_type?resourceVersion=id%3A38" + } + } + } + } + }, + "links": { + "self": { + "href": +"https://dev-drupal-bug-reproduction.pantheonsite.io/jsonapi/paragraph/something/b28b4fcd-cea7-4e27-b2c7-ed09a3dad976?resourceVersion=id%3A38" + } + }, + "id": "b28b4fcd-cea7-4e27-b2c7-ed09a3dad976", + "action": "update", + "langcode": "en", + "attributes": { + "langcode": "en", + "drupal_internal__revision_id": "38" + } + }, + { + "jsonapi": { + "version": "1.0", + "meta": { + "links": { + "self": { + "href": "http://jsonapi.org/format/1.0/" + } + } + } + }, + "data": { + "type": "file--file", + "id": "68e88bbe-4c59-4abd-bca2-7cda4ca1f2cd", + "links": { + "self": { + "href": "https://dev-drupal-bug-reproduction.pantheonsite.io/jsonapi/file/file/68e88bbe-4c59-4abd-bca2-7cda4ca1f2cd" + } + }, + "attributes": { + "drupal_internal__fid": 6, + "langcode": "en", + "filename": "DSCF2841_1.jpg", + "uri": { + "value": "public://2022-06/DSCF2841_1.jpg", + "url": "/sites/default/files/2022-06/DSCF2841_1.jpg" + }, + "filemime": "image/jpeg", + "filesize": 979596, + "status": true, + "created": "2022-06-30T13:14:17+00:00", + "changed": "2022-06-30T13:14:32+00:00" + }, + "relationships": { + "uid": { + "data": { + "type": "user--user", + "id": "9e347e85-8840-44a7-994e-89a5a3e7c2b5", + "meta": { + "drupal_internal__target_id": 1 + } + }, + "links": { + "related": { + "href": "https://dev-drupal-bug-reproduction.pantheonsite.io/jsonapi/file/file/68e88bbe-4c59-4abd-bca2-7cda4ca1f2cd/uid" + }, + "self": { + "href": +"https://dev-drupal-bug-reproduction.pantheonsite.io/jsonapi/file/file/68e88bbe-4c59-4abd-bca2-7cda4ca1f2cd/relationships/uid" + } + } + } + } + }, + "links": { + "self": { + "href": "https://dev-drupal-bug-reproduction.pantheonsite.io/jsonapi/file/file/68e88bbe-4c59-4abd-bca2-7cda4ca1f2cd" + } + }, + "id": "68e88bbe-4c59-4abd-bca2-7cda4ca1f2cd", + "action": "update", + "langcode": "en", + "attributes": { + "langcode": "en", + "drupal_internal__revision_id": null + } + }, + { + "jsonapi": { + "version": "1.0", + "meta": { + "links": { + "self": { + "href": "http://jsonapi.org/format/1.0/" + } + } + } + }, + "data": { + "type": "paragraph--image", + "id": "e7861064-0009-4458-bf6e-0284d34bb00d", + "links": { + "self": { + "href": +"https://dev-drupal-bug-reproduction.pantheonsite.io/jsonapi/paragraph/image/e7861064-0009-4458-bf6e-0284d34bb00d?resourceVersion=id%3A37" + } + }, + "attributes": { + "drupal_internal__id": 6, + "drupal_internal__revision_id": 37, + "langcode": "en", + "status": true, + "created": "2022-06-30T13:14:07+00:00", + "parent_id": "2", + "parent_type": "node", + "parent_field_name": "field_content", + "behavior_settings": [], + "default_langcode": true, + "revision_translation_affected": true + }, + "relationships": { + "paragraph_type": { + "data": { + "type": "paragraphs_type--paragraphs_type", + "id": "27255954-ae1c-43ce-b27b-ff594b718b26", + "meta": { + "drupal_internal__target_id": "image" + } + }, + "links": { + "related": { + "href": +"https://dev-drupal-bug-reproduction.pantheonsite.io/jsonapi/paragraph/image/e7861064-0009-4458-bf6e-0284d34bb00d/paragraph_type?resourceVersion=id%3A37" + }, + "self": { + "href": "https://dev-drupal-bug-reproduction.pantheonsite.io/jsonapi/paragraph/image/e7861064-0009-4458-bf6e-0284d34bb00d/relationships/paragraph_type?resourceVersion=id%3A37" + } + } + }, + "field_image": { + "data": { + "type": "file--file", + "id": "68e88bbe-4c59-4abd-bca2-7cda4ca1f2cd", + "meta": { + "alt": "alt text", + "title": "", + "width": 1500, + "height": 1000, + "drupal_internal__target_id": 6 + } + }, + "links": { + "related": { + "href": +"https://dev-drupal-bug-reproduction.pantheonsite.io/jsonapi/paragraph/image/e7861064-0009-4458-bf6e-0284d34bb00d/field_image?resourceVersion=id%3A37" + }, + "self": { + "href": "https://dev-drupal-bug-reproduction.pantheonsite.io/jsonapi/paragraph/image/e7861064-0009-4458-bf6e-0284d34bb00d/relationships/field_image?resourceVersion=id%3A37" + } + } + } + } + }, + "links": { + "self": { + "href": +"https://dev-drupal-bug-reproduction.pantheonsite.io/jsonapi/paragraph/image/e7861064-0009-4458-bf6e-0284d34bb00d?resourceVersion=id%3A37" + } + }, + "id": "e7861064-0009-4458-bf6e-0284d34bb00d", + "action": "update", + "langcode": "en", + "attributes": { + "langcode": "en", + "drupal_internal__revision_id": "37" + } + } +] diff --git a/packages/gatsby-source-drupal/src/__tests__/fixtures/paragraph-v2.json b/packages/gatsby-source-drupal/src/__tests__/fixtures/paragraph-v2.json new file mode 100644 index 0000000000000..2e2f619ed5b35 --- /dev/null +++ b/packages/gatsby-source-drupal/src/__tests__/fixtures/paragraph-v2.json @@ -0,0 +1,329 @@ +[ + { + "jsonapi": { + "version": "1.0", + "meta": { + "links": { + "self": { + "href": "http://jsonapi.org/format/1.0/" + } + } + } + }, + "data": { + "type": "node--page", + "id": "6a5db0d4-4a0f-4a4b-9048-7d26e29fdacb", + "links": { + "self": { + "href": +"https://dev-drupal-bug-reproduction.pantheonsite.io/jsonapi/node/page/6a5db0d4-4a0f-4a4b-9048-7d26e29fdacb?resourceVersion=id%3A14" + } + }, + "attributes": { + "drupal_internal__nid": 2, + "drupal_internal__vid": 14, + "langcode": "en", + "revision_timestamp": "2022-06-30T13:15:32+00:00", + "revision_log": null, + "status": true, + "title": "Testing paragraph fields", + "created": "2022-06-30T13:13:49+00:00", + "changed": "2022-06-30T13:15:32+00:00", + "promote": false, + "sticky": false, + "default_langcode": true, + "revision_translation_affected": true, + "path": { + "alias": null, + "pid": null, + "langcode": "en" + }, + "body": { + "value": "

Hi

\r\n", + "format": "basic_html", + "processed": "

Hi

", + "summary": "" + } + }, + "relationships": { + "node_type": { + "data": { + "type": "node_type--node_type", + "id": "18674fce-64c0-4659-9ef3-daa1515ebbed", + "meta": { + "drupal_internal__target_id": "page" + } + }, + "links": { + "related": { + "href": +"https://dev-drupal-bug-reproduction.pantheonsite.io/jsonapi/node/page/6a5db0d4-4a0f-4a4b-9048-7d26e29fdacb/node_type?resourceVersion=id%3A14" + }, + "self": { + "href": +"https://dev-drupal-bug-reproduction.pantheonsite.io/jsonapi/node/page/6a5db0d4-4a0f-4a4b-9048-7d26e29fdacb/relationships/node_type?resourceVersion=id%3A14" + + } + } + }, + "revision_uid": { + "data": { + "type": "user--user", + "id": "9e347e85-8840-44a7-994e-89a5a3e7c2b5", + "meta": { + "drupal_internal__target_id": 1 + } + }, + "links": { + "related": { + "href": +"https://dev-drupal-bug-reproduction.pantheonsite.io/jsonapi/node/page/6a5db0d4-4a0f-4a4b-9048-7d26e29fdacb/revision_uid?resourceVersion=id%3A14" + }, + "self": { + "href": "https://dev-drupal-bug-reproduction.pantheonsite.io/jsonapi/node/page/6a5db0d4-4a0f-4a4b-9048-7d26e29fdacb/relationships/revision_uid?resourceVersion=id%3A14" + } + } + }, + "uid": { + "data": { + "type": "user--user", + "id": "9e347e85-8840-44a7-994e-89a5a3e7c2b5", + "meta": { + "drupal_internal__target_id": 1 + } + }, + "links": { + "related": { + "href": +"https://dev-drupal-bug-reproduction.pantheonsite.io/jsonapi/node/page/6a5db0d4-4a0f-4a4b-9048-7d26e29fdacb/uid?resourceVersion=id%3A14" + }, + "self": { + "href": +"https://dev-drupal-bug-reproduction.pantheonsite.io/jsonapi/node/page/6a5db0d4-4a0f-4a4b-9048-7d26e29fdacb/relationships/uid?resourceVersion=id%3A14" + } + } + }, + "field_content": { + "data": [ + { + "type": "paragraph--image", + "id": "e7861064-0009-4458-bf6e-0284d34bb00d", + "meta": { + "target_revision_id": 39, + "drupal_internal__target_id": 6 + } + }, + { + "type": "paragraph--something", + "id": "b28b4fcd-cea7-4e27-b2c7-ed09a3dad976", + "meta": { + "target_revision_id": 40, + "drupal_internal__target_id": 7 + } + } + ], + "links": { + "related": { + "href": +"https://dev-drupal-bug-reproduction.pantheonsite.io/jsonapi/node/page/6a5db0d4-4a0f-4a4b-9048-7d26e29fdacb/field_content?resourceVersion=id%3A14" + }, + "self": { + "href": "https://dev-drupal-bug-reproduction.pantheonsite.io/jsonapi/node/page/6a5db0d4-4a0f-4a4b-9048-7d26e29fdacb/relationships/field_content?resourceVersion=id%3A14" + } + } + }, + "field_tag": { + "data": [], + "links": { + "related": { + "href": +"https://dev-drupal-bug-reproduction.pantheonsite.io/jsonapi/node/page/6a5db0d4-4a0f-4a4b-9048-7d26e29fdacb/field_tag?resourceVersion=id%3A14" + }, + "self": { + "href": +"https://dev-drupal-bug-reproduction.pantheonsite.io/jsonapi/node/page/6a5db0d4-4a0f-4a4b-9048-7d26e29fdacb/relationships/field_tag?resourceVersion=id%3A14" + } + } + } + } + }, + "links": { + "self": { + "href": "https://dev-drupal-bug-reproduction.pantheonsite.io/jsonapi/node/page/6a5db0d4-4a0f-4a4b-9048-7d26e29fdacb?resourceVersion=id%3A14" + } + }, + "id": "6a5db0d4-4a0f-4a4b-9048-7d26e29fdacb", + "action": "update", + "langcode": "en", + "attributes": { + "langcode": "en", + "drupal_internal__revision_id": "14" + } + }, + { + "jsonapi": { + "version": "1.0", + "meta": { + "links": { + "self": { + "href": "http://jsonapi.org/format/1.0/" + } + } + } + }, + "data": { + "type": "paragraph--image", + "id": "e7861064-0009-4458-bf6e-0284d34bb00d", + "links": { + "self": { + "href": +"https://dev-drupal-bug-reproduction.pantheonsite.io/jsonapi/paragraph/image/e7861064-0009-4458-bf6e-0284d34bb00d?resourceVersion=id%3A39" + } + }, + "attributes": { + "drupal_internal__id": 6, + "drupal_internal__revision_id": 39, + "langcode": "en", + "status": true, + "created": "2022-06-30T13:14:07+00:00", + "parent_id": "2", + "parent_type": "node", + "parent_field_name": "field_content", + "behavior_settings": [], + "default_langcode": true, + "revision_translation_affected": true + }, + "relationships": { + "paragraph_type": { + "data": { + "type": "paragraphs_type--paragraphs_type", + "id": "27255954-ae1c-43ce-b27b-ff594b718b26", + "meta": { + "drupal_internal__target_id": "image" + } + }, + "links": { + "related": { + "href": +"https://dev-drupal-bug-reproduction.pantheonsite.io/jsonapi/paragraph/image/e7861064-0009-4458-bf6e-0284d34bb00d/paragraph_type?resourceVersion=id%3A39" + }, + "self": { + "href": "https://dev-drupal-bug-reproduction.pantheonsite.io/jsonapi/paragraph/image/e7861064-0009-4458-bf6e-0284d34bb00d/relationships/paragraph_type?resourceVersion=id%3A39" + } + } + }, + "field_image": { + "data": { + "type": "file--file", + "id": "68e88bbe-4c59-4abd-bca2-7cda4ca1f2cd", + "meta": { + "alt": "alt text v2", + "title": "", + "width": 1500, + "height": 1000, + "drupal_internal__target_id": 6 + } + }, + "links": { + "related": { + "href": +"https://dev-drupal-bug-reproduction.pantheonsite.io/jsonapi/paragraph/image/e7861064-0009-4458-bf6e-0284d34bb00d/field_image?resourceVersion=id%3A39" + }, + "self": { + "href": "https://dev-drupal-bug-reproduction.pantheonsite.io/jsonapi/paragraph/image/e7861064-0009-4458-bf6e-0284d34bb00d/relationships/field_image?resourceVersion=id%3A39" + } + } + } + } + }, + "links": { + "self": { + "href": +"https://dev-drupal-bug-reproduction.pantheonsite.io/jsonapi/paragraph/image/e7861064-0009-4458-bf6e-0284d34bb00d?resourceVersion=id%3A39" + } + }, + "id": "e7861064-0009-4458-bf6e-0284d34bb00d", + "action": "update", + "langcode": "en", + "attributes": { + "langcode": "en", + "drupal_internal__revision_id": "39" + } + }, + { + "jsonapi": { + "version": "1.0", + "meta": { + "links": { + "self": { + "href": "http://jsonapi.org/format/1.0/" + } + } + } + }, + "data": { + "type": "paragraph--something", + "id": "b28b4fcd-cea7-4e27-b2c7-ed09a3dad976", + "links": { + "self": { + "href": +"https://dev-drupal-bug-reproduction.pantheonsite.io/jsonapi/paragraph/something/b28b4fcd-cea7-4e27-b2c7-ed09a3dad976?resourceVersion=id%3A40" + } + }, + "attributes": { + "drupal_internal__id": 7, + "drupal_internal__revision_id": 40, + "langcode": "en", + "status": true, + "created": "2022-06-30T13:14:20+00:00", + "parent_id": "2", + "parent_type": "node", + "parent_field_name": "field_content", + "behavior_settings": [], + "default_langcode": true, + "revision_translation_affected": true, + "field_text_me": [ + { + "value": "

Text2

\r\n", + "format": "basic_html", + "processed": "

Text2

", + "summary": "" + } + ] + }, + "relationships": { + "paragraph_type": { + "data": { + "type": "paragraphs_type--paragraphs_type", + "id": "b6341f8e-72af-4e13-bd7b-bc54b9ff9b3b", + "meta": { + "drupal_internal__target_id": "something" + } + }, + "links": { + "related": { + "href": +"https://dev-drupal-bug-reproduction.pantheonsite.io/jsonapi/paragraph/something/b28b4fcd-cea7-4e27-b2c7-ed09a3dad976/paragraph_type?resourceVersion=id%3A40" + }, + "self": { + "href": "https://dev-drupal-bug-reproduction.pantheonsite.io/jsonapi/paragraph/something/b28b4fcd-cea7-4e27-b2c7-ed09a3dad976/relationships/paragraph_type?resourceVersion=id%3A40" + } + } + } + } + }, + "links": { + "self": { + "href": +"https://dev-drupal-bug-reproduction.pantheonsite.io/jsonapi/paragraph/something/b28b4fcd-cea7-4e27-b2c7-ed09a3dad976?resourceVersion=id%3A40" + } + }, + "id": "b28b4fcd-cea7-4e27-b2c7-ed09a3dad976", + "action": "update", + "langcode": "en", + "attributes": { + "langcode": "en", + "drupal_internal__revision_id": "40" + } + } +] diff --git a/packages/gatsby-source-drupal/src/__tests__/index.js b/packages/gatsby-source-drupal/src/__tests__/index.js index 4b88409e8225b..59ff60f390c68 100644 --- a/packages/gatsby-source-drupal/src/__tests__/index.js +++ b/packages/gatsby-source-drupal/src/__tests__/index.js @@ -31,13 +31,20 @@ jest.mock(`gatsby-source-filesystem`, () => { } }) +let cacheStore function makeCache() { - const store = new Map() + cacheStore = new Map() return { - get: async id => store.get(id), - set: async (key, value) => store.set(key, value), - del: async key => store.delete(key), - store, + get: async id => + new Promise(resolve => + process.nextTick(() => resolve(cacheStore.get(id))) + ), + set: async (key, value) => + new Promise(resolve => + process.nextTick(() => resolve(cacheStore.set(key, value))) + ), + del: async key => cacheStore.delete(key), + cacheStore, } } @@ -338,17 +345,20 @@ describe(`gatsby-source-drupal`, () => { ...args, }) }) + it(`Attributes`, () => { expect(nodes[createNodeId(`und.article-3`)].title).toBe( `Article #3 - Updated` ) }) + it(`Relationships`, () => { // removed `field_main_image`, changed `field_tags` expect(nodes[createNodeId(`und.article-3`)].relationships).toEqual({ field_tags___NODE: [createNodeId(`und.tag-2`)], }) }) + it(`Back references`, () => { // removed `field_main_image`, `file-1` no longer has back reference to `article-3` expect( @@ -516,6 +526,46 @@ describe(`gatsby-source-drupal`, () => { }) }) + describe(`Paragraph fields`, () => { + it(`creates the initial paragraph entity correctly`, async () => { + // Reset nodes. + Object.keys(nodes).forEach(key => delete nodes[key]) + const nodesToUpdate = require(`./fixtures/paragraph-v1.json`) + for (const nodeToUpdate of nodesToUpdate) { + await handleWebhookUpdate( + { + nodeToUpdate: nodeToUpdate.data, + ...args, + }, + { baseUrl: `https://example.com` } + ) + } + expect( + nodes[`generated-id-en_US.e7861064-0009-4458-bf6e-0284d34bb00d`] + .field_image.alt + ).toEqual(`alt text`) + }) + it(`updates the referenced entities correctly`, async () => { + // Reset nodes. + Object.keys(nodes).forEach(key => delete nodes[key]) + const nodesToUpdate = require(`./fixtures/paragraph-v2.json`) + for (const nodeToUpdate of nodesToUpdate) { + await handleWebhookUpdate( + { + nodeToUpdate: nodeToUpdate.data, + ...args, + }, + { baseUrl: `https://example.com` } + ) + } + + expect( + nodes[`generated-id-en_US.e7861064-0009-4458-bf6e-0284d34bb00d`] + .field_image.alt + ).toEqual(`alt text v2`) + }) + }) + describe(`Image CDN`, () => { afterEach(() => { probeImageSize.mockClear() diff --git a/packages/gatsby-source-drupal/src/gatsby-node.js b/packages/gatsby-source-drupal/src/gatsby-node.js index 0f2e04f3a6f0e..cfe34cb110ba5 100644 --- a/packages/gatsby-source-drupal/src/gatsby-node.js +++ b/packages/gatsby-source-drupal/src/gatsby-node.js @@ -421,25 +421,23 @@ ${JSON.stringify(webhookBody, null, 4)}` nodesToUpdate = [nodeSyncData.data] } - await Promise.all( - nodesToUpdate.map(nodeToUpdate => - handleWebhookUpdate( - { - nodeToUpdate, - actions, - cache, - createNodeId, - createContentDigest, - getCache, - getNode, - reporter, - store, - languageConfig, - }, - pluginOptions - ) + for (const nodeToUpdate of nodesToUpdate) { + await handleWebhookUpdate( + { + nodeToUpdate, + actions, + cache, + createNodeId, + createContentDigest, + getCache, + getNode, + reporter, + store, + languageConfig, + }, + pluginOptions ) - ) + } } } @@ -711,17 +709,15 @@ ${JSON.stringify(webhookBody, null, 4)}` createNodesSpan.setTag(`sourceNodes.createNodes.count`, nodes.size) // second pass - handle relationships and back references - await Promise.all( - Array.from(nodes.values()).map(node => - handleReferences(node, { - getNode: nodes.get.bind(nodes), - mutateNode: true, - createNodeId, - cache, - entityReferenceRevisions, - }) - ) - ) + for (const node of Array.from(nodes.values())) { + await handleReferences(node, { + getNode: nodes.get.bind(nodes), + mutateNode: true, + createNodeId, + cache, + entityReferenceRevisions, + }) + } if (skipFileDownloads) { reporter.info(`Skipping remote file download from Drupal`) diff --git a/packages/gatsby-source-drupal/src/utils.js b/packages/gatsby-source-drupal/src/utils.js index ff3290ccdb365..5f8cd0c9f0f17 100644 --- a/packages/gatsby-source-drupal/src/utils.js +++ b/packages/gatsby-source-drupal/src/utils.js @@ -20,7 +20,7 @@ function makeRefNodesKey(id) { return `refnodes-${id}` } -const handleReferences = async ( +async function handleReferences( node, { getNode, @@ -29,7 +29,7 @@ const handleReferences = async ( entityReferenceRevisions = [], cache, } -) => { +) { const relationships = node.relationships const rootNodeLanguage = getOptions().languageConfig ? node.langcode : `und` @@ -98,37 +98,33 @@ const handleReferences = async ( await cache.set(makeRefNodesKey(node.id), referencedNodes) if (referencedNodes.length) { const nodeFieldName = `${node.internal.type}___NODE` - await Promise.all( - referencedNodes.map(async nodeID => { - let referencedNode - if (mutateNode) { - referencedNode = getNode(nodeID) - } else { - referencedNode = _.cloneDeep(getNode(nodeID)) - } - if (!referencedNode.relationships[nodeFieldName]) { - referencedNode.relationships[nodeFieldName] = [] - } - - if (!referencedNode.relationships[nodeFieldName].includes(node.id)) { - referencedNode.relationships[nodeFieldName].push(node.id) - } - - let backRefsNames = await cache.get( - makeBackRefsKey(referencedNode.id) - ) - if (!backRefsNames) { - backRefsNames = [] - await cache.set(makeBackRefsKey(referencedNode.id), backRefsNames) - } - - if (!backRefsNames.includes(nodeFieldName)) { - backRefsNames.push(nodeFieldName) - await cache.set(makeBackRefsKey(referencedNode.id), backRefsNames) - } - backReferencedNodes.push(referencedNode) - }) - ) + for (const nodeId of referencedNodes) { + let referencedNode + if (mutateNode) { + referencedNode = getNode(nodeId) + } else { + referencedNode = _.cloneDeep(getNode(nodeId)) + } + if (!referencedNode.relationships[nodeFieldName]) { + referencedNode.relationships[nodeFieldName] = [] + } + + if (!referencedNode.relationships[nodeFieldName].includes(node.id)) { + referencedNode.relationships[nodeFieldName].push(node.id) + } + + let backRefsNames = await cache.get(makeBackRefsKey(referencedNode.id)) + if (!backRefsNames) { + backRefsNames = [] + await cache.set(makeBackRefsKey(referencedNode.id), backRefsNames) + } + + if (!backRefsNames.includes(nodeFieldName)) { + backRefsNames.push(nodeFieldName) + await cache.set(makeBackRefsKey(referencedNode.id), backRefsNames) + } + backReferencedNodes.push(referencedNode) + } } } @@ -169,63 +165,61 @@ const handleDeletedNode = async ({ // Clone node so we're not mutating the original node. deletedNode = _.cloneDeep(deletedNode) - cache.del(makeBackRefsKey(deletedNode.id)) - cache.del(makeRefNodesKey(deletedNode.id)) + await cache.del(makeBackRefsKey(deletedNode.id)) + await cache.del(makeRefNodesKey(deletedNode.id)) // Remove relationships from other nodes and re-create them. Object.keys(deletedNode.relationships).forEach(async key => { let ids = deletedNode.relationships[key] ids = [].concat(ids) - await Promise.all( - ids.map(async id => { - let node = getNode(id) - - // The referenced node might have already been deleted. - if (node) { - // Clone node so we're not mutating the original node. - node = _.cloneDeep(node) - let referencedNodes = await cache.get(makeRefNodesKey(node.id)) - - if (referencedNodes?.includes(deletedNode.id)) { - // Loop over relationships and cleanup references. - Object.entries(node.relationships).forEach(([key, value]) => { - // If a string ref matches, delete it. - if (_.isString(value) && value === deletedNode.id) { - delete node.relationships[key] - } + for (const id of ids) { + let node = getNode(id) - // If it's an array, filter, then check if the array is empty and then delete - // if so - if (_.isArray(value)) { - value = value.filter(v => v !== deletedNode.id) + // The referenced node might have already been deleted. + if (node) { + // Clone node so we're not mutating the original node. + node = _.cloneDeep(node) + let referencedNodes = await cache.get(makeRefNodesKey(node.id)) + + if (referencedNodes?.includes(deletedNode.id)) { + // Loop over relationships and cleanup references. + Object.entries(node.relationships).forEach(([key, value]) => { + // If a string ref matches, delete it. + if (_.isString(value) && value === deletedNode.id) { + delete node.relationships[key] + } - if (value.length === 0) { - delete node.relationships[key] - } else { - node.relationships[key] = value - } + // If it's an array, filter, then check if the array is empty and then delete + // if so + if (_.isArray(value)) { + value = value.filter(v => v !== deletedNode.id) + + if (value.length === 0) { + delete node.relationships[key] + } else { + node.relationships[key] = value } - }) + } + }) - // Remove deleted node from array of referencedNodes - referencedNodes = referencedNodes.filter( - nId => nId !== deletedNode.id - ) - await cache.set(makeRefNodesKey(node.id), referencedNodes) - } - - // Recreate the referenced node with its now cleaned-up relationships. - if (node.internal.owner) { - delete node.internal.owner - } - if (node.fields) { - delete node.fields - } - node.internal.contentDigest = createContentDigest(node) - actions.createNode(node) + // Remove deleted node from array of referencedNodes + referencedNodes = referencedNodes.filter( + nId => nId !== deletedNode.id + ) + await cache.set(makeRefNodesKey(node.id), referencedNodes) } - }) - ) + + // Recreate the referenced node with its now cleaned-up relationships. + if (node.internal.owner) { + delete node.internal.owner + } + if (node.fields) { + delete node.fields + } + node.internal.contentDigest = createContentDigest(node) + actions.createNode(node) + } + } }) actions.deleteNode(deletedNode) @@ -350,7 +344,7 @@ ${JSON.stringify(nodeToUpdate, null, 4)} // copy over back references from old node const backRefsNames = await cache.get(makeBackRefsKey(oldNode.id)) if (backRefsNames) { - cache.set(makeBackRefsKey(newNode.id), backRefsNames) + await cache.set(makeBackRefsKey(newNode.id), backRefsNames) backRefsNames.forEach(backRefFieldName => { newNode.relationships[backRefFieldName] = oldNode.relationships[backRefFieldName] From b7b3f31a1587d9702f85eadca2f3a30f93c804d0 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 14 Jul 2022 07:37:26 +0200 Subject: [PATCH 25/90] fix(deps): update starters and examples gatsby packages to ^4.18.2 (#36122) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- starters/blog/package-lock.json | 299 ++++++++++++-- starters/blog/package.json | 2 +- starters/default/package-lock.json | 299 ++++++++++++-- starters/default/package.json | 2 +- .../package-lock.json | 369 +++++++++++++++--- .../package.json | 2 +- .../package-lock.json | 369 +++++++++++++++--- .../gatsby-starter-blog-theme/package.json | 2 +- .../package-lock.json | 299 ++++++++++++-- .../gatsby-starter-minimal-ts/package.json | 2 +- .../gatsby-starter-minimal/package-lock.json | 299 ++++++++++++-- starters/gatsby-starter-minimal/package.json | 2 +- .../package-lock.json | 369 +++++++++++++++--- .../gatsby-starter-notes-theme/package.json | 2 +- .../example/package.json | 2 +- .../gatsby-starter-theme/package-lock.json | 369 +++++++++++++++--- starters/gatsby-starter-theme/package.json | 2 +- .../package-lock.json | 299 ++++++++++++-- .../package.json | 2 +- starters/hello-world/package-lock.json | 299 ++++++++++++-- starters/hello-world/package.json | 2 +- 21 files changed, 2843 insertions(+), 449 deletions(-) diff --git a/starters/blog/package-lock.json b/starters/blog/package-lock.json index dc4736aad94da..55774ffa6b47e 100644 --- a/starters/blog/package-lock.json +++ b/starters/blog/package-lock.json @@ -1317,13 +1317,239 @@ } }, "@gatsbyjs/parcel-namer-relative-to-cwd": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/@gatsbyjs/parcel-namer-relative-to-cwd/-/parcel-namer-relative-to-cwd-1.3.1.tgz", - "integrity": "sha512-wN4iU1CWumvhcuzMBKdDikZ5xgo81Ias09bKyjE36DgNxTzAhT2fXZIBAAEUlv/GBQqFe6Eas83gGGtXf31hiw==", + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/@gatsbyjs/parcel-namer-relative-to-cwd/-/parcel-namer-relative-to-cwd-1.3.2.tgz", + "integrity": "sha512-jiYGiq8Zk21x2IIWbsLQ0GqgGJyKjj+/4jYwr5msD5ORB/JAZLk4IDrMKZ9rFXkNPq/bRV57ub0k/NvRMELfLQ==", "requires": { "@babel/runtime": "^7.18.0", + "@parcel/namer-default": "2.6.2", "@parcel/plugin": "2.6.0", "gatsby-core-utils": "^3.18.1" + }, + "dependencies": { + "@lmdb/lmdb-darwin-arm64": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-arm64/-/lmdb-darwin-arm64-2.5.2.tgz", + "integrity": "sha512-+F8ioQIUN68B4UFiIBYu0QQvgb9FmlKw2ctQMSBfW2QBrZIxz9vD9jCGqTCPqZBRbPHAS/vG1zSXnKqnS2ch/A==", + "optional": true + }, + "@lmdb/lmdb-darwin-x64": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-x64/-/lmdb-darwin-x64-2.5.2.tgz", + "integrity": "sha512-KvPH56KRLLx4KSfKBx0m1r7GGGUMXm0jrKmNE7plbHlesZMuPJICtn07HYgQhj1LNsK7Yqwuvnqh1QxhJnF1EA==", + "optional": true + }, + "@lmdb/lmdb-linux-arm": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm/-/lmdb-linux-arm-2.5.2.tgz", + "integrity": "sha512-5kQAP21hAkfW5Bl+e0P57dV4dGYnkNIpR7f/GAh6QHlgXx+vp/teVj4PGRZaKAvt0GX6++N6hF8NnGElLDuIDw==", + "optional": true + }, + "@lmdb/lmdb-linux-arm64": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm64/-/lmdb-linux-arm64-2.5.2.tgz", + "integrity": "sha512-aLl89VHL/wjhievEOlPocoefUyWdvzVrcQ/MHQYZm2JfV1jUsrbr/ZfkPPUFvZBf+VSE+Q0clWs9l29PCX1hTQ==", + "optional": true + }, + "@lmdb/lmdb-linux-x64": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-x64/-/lmdb-linux-x64-2.5.2.tgz", + "integrity": "sha512-xUdUfwDJLGjOUPH3BuPBt0NlIrR7f/QHKgu3GZIXswMMIihAekj2i97oI0iWG5Bok/b+OBjHPfa8IU9velnP/Q==", + "optional": true + }, + "@lmdb/lmdb-win32-x64": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-win32-x64/-/lmdb-win32-x64-2.5.2.tgz", + "integrity": "sha512-zrBczSbXKxEyK2ijtbRdICDygRqWSRPpZMN5dD1T8VMEW5RIhIbwFWw2phDRXuBQdVDpSjalCIUMWMV2h3JaZA==", + "optional": true + }, + "@parcel/cache": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/cache/-/cache-2.6.2.tgz", + "integrity": "sha512-hhJ6AsEGybeQZd9c/GYqfcKTgZKQXu3Xih6TlnP3gdR3KZoJOnb40ovHD1yYg4COvfcXThKP1cVJ18J6rcv3IA==", + "requires": { + "@parcel/fs": "2.6.2", + "@parcel/logger": "2.6.2", + "@parcel/utils": "2.6.2", + "lmdb": "2.5.2" + } + }, + "@parcel/codeframe": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/codeframe/-/codeframe-2.6.2.tgz", + "integrity": "sha512-oFlHr6HCaYYsB4SHkU+gn9DKtbzvv3/4NdwMX0/6NAKyYVI7inEsXyPGw2Bbd2ZCFatW9QJZUETF0etvh5AEfQ==", + "requires": { + "chalk": "^4.1.0" + } + }, + "@parcel/diagnostic": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/diagnostic/-/diagnostic-2.6.2.tgz", + "integrity": "sha512-3ODSBkKVihENU763z1/1DhGAWFhYWRxOCOShC72KXp+GFnSgGiBsxclu8NBa/N948Rzp8lqQI8U1nLcKkh0O/w==", + "requires": { + "@mischnic/json-sourcemap": "^0.1.0", + "nullthrows": "^1.1.1" + } + }, + "@parcel/events": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/events/-/events-2.6.2.tgz", + "integrity": "sha512-IaCjOeA5ercdFVi1EZOmUHhGfIysmCUgc2Th9hMugSFO0I3GzRsBcAdP6XPfWm+TV6sQ/qZRfdk/drUxoAupnw==" + }, + "@parcel/fs": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/fs/-/fs-2.6.2.tgz", + "integrity": "sha512-mIhqdF3tjgeoIGqW7Nc/xfM2ClID7o8livwUe5lpQEP+ZaIBiMigXs6ckv3WToCACK+3uylrSD2A/HmlhrxMqQ==", + "requires": { + "@parcel/fs-search": "2.6.2", + "@parcel/types": "2.6.2", + "@parcel/utils": "2.6.2", + "@parcel/watcher": "^2.0.0", + "@parcel/workers": "2.6.2" + } + }, + "@parcel/fs-search": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/fs-search/-/fs-search-2.6.2.tgz", + "integrity": "sha512-4STid1zqtGnmGjHD/2TG2g/zPDiCTtE3IAS24QYH3eiUAz2uoKGgEqd2tZbZ2yI96jtCuIhC1bzVu8Hbykls7w==", + "requires": { + "detect-libc": "^1.0.3" + } + }, + "@parcel/hash": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/hash/-/hash-2.6.2.tgz", + "integrity": "sha512-tFB+cJU1Wqag6WyJgsmx3nx+xhmjcNZqtWh/MtK1lHNnZdDRk6bjr7SapnygBwruz+SmSt5bbdVThcpk2dRCcA==", + "requires": { + "detect-libc": "^1.0.3", + "xxhash-wasm": "^0.4.2" + } + }, + "@parcel/logger": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/logger/-/logger-2.6.2.tgz", + "integrity": "sha512-Sz5YGCj1DbEiX0/G8Uw97LLZ0uEK+qtWcRAkHNpJpeMiSqDiRNevxXltz42EcLo+oCh4d4wyiVzwi9mNwzhS/Q==", + "requires": { + "@parcel/diagnostic": "2.6.2", + "@parcel/events": "2.6.2" + } + }, + "@parcel/markdown-ansi": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/markdown-ansi/-/markdown-ansi-2.6.2.tgz", + "integrity": "sha512-N/h9J4eibhc+B+krzvPMzFUWL37GudBIZBa7XSLkcuH6MnYYfh6rrMvhIyyESwk6VkcZNVzAeZrGQqxEs0dHDQ==", + "requires": { + "chalk": "^4.1.0" + } + }, + "@parcel/namer-default": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/namer-default/-/namer-default-2.6.2.tgz", + "integrity": "sha512-mp7bx/BQaIuohmZP0uE+gAmDBzzH0Yu8F4yCtE611lc6i0mou+nWRhzyKLNC/ieuI8DB3BFh2QQKeTxJn4W0qg==", + "requires": { + "@parcel/diagnostic": "2.6.2", + "@parcel/plugin": "2.6.2", + "nullthrows": "^1.1.1" + }, + "dependencies": { + "@parcel/plugin": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/plugin/-/plugin-2.6.2.tgz", + "integrity": "sha512-wbbWsM23Pr+8xtLSvf+UopXdVYlpKCCx6PuuZaZcKo+9IcDCWoGXD4M8Kkz14qBmkFn5uM00mULUqmVdSibB2w==", + "requires": { + "@parcel/types": "2.6.2" + } + } + } + }, + "@parcel/package-manager": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/package-manager/-/package-manager-2.6.2.tgz", + "integrity": "sha512-xGMqTgnwTE3rgzYwUZMKxR8fzmP5iSYz/gj2H8FR3pEmwh/8xCMtNjTSth+hPVGuqgRZ6JxwpfdY/fXdZ61ViQ==", + "requires": { + "@parcel/diagnostic": "2.6.2", + "@parcel/fs": "2.6.2", + "@parcel/logger": "2.6.2", + "@parcel/types": "2.6.2", + "@parcel/utils": "2.6.2", + "@parcel/workers": "2.6.2", + "semver": "^5.7.1" + } + }, + "@parcel/types": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/types/-/types-2.6.2.tgz", + "integrity": "sha512-MV8BFpCIs2jMUvK2RHqzkoiuOQ//JIbrD1zocA2YRW3zuPL/iABvbAABJoXpoPCKikVWOoCWASgBfWQo26VvJQ==", + "requires": { + "@parcel/cache": "2.6.2", + "@parcel/diagnostic": "2.6.2", + "@parcel/fs": "2.6.2", + "@parcel/package-manager": "2.6.2", + "@parcel/source-map": "^2.0.0", + "@parcel/workers": "2.6.2", + "utility-types": "^3.10.0" + } + }, + "@parcel/utils": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/utils/-/utils-2.6.2.tgz", + "integrity": "sha512-Ug7hpRxjgbY5AopW55nY7MmGMVmwmN+ihfCmxJkBUoESTG/3iq8uME7GjyOgW5DkQc2K7q62i8y8N0wCJT1u4Q==", + "requires": { + "@parcel/codeframe": "2.6.2", + "@parcel/diagnostic": "2.6.2", + "@parcel/hash": "2.6.2", + "@parcel/logger": "2.6.2", + "@parcel/markdown-ansi": "2.6.2", + "@parcel/source-map": "^2.0.0", + "chalk": "^4.1.0" + } + }, + "@parcel/workers": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/workers/-/workers-2.6.2.tgz", + "integrity": "sha512-wBgUjJQm+lDd12fPRUmk09+ujTA9DgwPdqylSFK0OtI/yT6A+2kArUqjp8IwWo2tCJXoMzXBne2XQIWKqMiN4Q==", + "requires": { + "@parcel/diagnostic": "2.6.2", + "@parcel/logger": "2.6.2", + "@parcel/types": "2.6.2", + "@parcel/utils": "2.6.2", + "chrome-trace-event": "^1.0.2", + "nullthrows": "^1.1.1" + } + }, + "lmdb": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/lmdb/-/lmdb-2.5.2.tgz", + "integrity": "sha512-V5V5Xa2Hp9i2XsbDALkBTeHXnBXh/lEmk9p22zdr7jtuOIY9TGhjK6vAvTpOOx9IKU4hJkRWZxn/HsvR1ELLtA==", + "requires": { + "@lmdb/lmdb-darwin-arm64": "2.5.2", + "@lmdb/lmdb-darwin-x64": "2.5.2", + "@lmdb/lmdb-linux-arm": "2.5.2", + "@lmdb/lmdb-linux-arm64": "2.5.2", + "@lmdb/lmdb-linux-x64": "2.5.2", + "@lmdb/lmdb-win32-x64": "2.5.2", + "msgpackr": "^1.5.4", + "node-addon-api": "^4.3.0", + "node-gyp-build-optional-packages": "5.0.3", + "ordered-binary": "^1.2.4", + "weak-lru-cache": "^1.2.2" + } + }, + "node-addon-api": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-4.3.0.tgz", + "integrity": "sha512-73sE9+3UaLYYFmDsFZnqCInzPyh3MqIwZO9cw58yIqAZhONrrabrYyYe3TuIqtIiOuTXVhsGau8hcrhhwSsDIQ==" + }, + "node-gyp-build-optional-packages": { + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/node-gyp-build-optional-packages/-/node-gyp-build-optional-packages-5.0.3.tgz", + "integrity": "sha512-k75jcVzk5wnnc/FMxsf4udAoTEUv2jY3ycfdSd3yWu6Cnd1oee6/CfZJApyscA4FJOmdoixWwiwOyf16RzD5JA==" + }, + "semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==" + } } }, "@gatsbyjs/potrace": { @@ -2987,9 +3213,9 @@ } }, "@types/estree": { - "version": "0.0.52", - "resolved": "https://registry.npmjs.org/@types/estree/-/estree-0.0.52.tgz", - "integrity": "sha512-BZWrtCU0bMVAIliIV+HJO1f1PR41M7NKjfxrFJwwhKI1KwhwOxYw1SXg9ao+CIMt774nFuGiG6eU+udtbEI9oQ==" + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.0.tgz", + "integrity": "sha512-WulqXMDUTYAXCjZnk6JtIHPigp55cVtDgDrO2gHRwhyJto21+1zbVCtOYB2L1F9w4qCQ0rOGWBnBe0FNTiEJIQ==" }, "@types/get-port": { "version": "3.2.0", @@ -3299,9 +3525,12 @@ } }, "@vercel/webpack-asset-relocator-loader": { - "version": "1.7.2", - "resolved": "https://registry.npmjs.org/@vercel/webpack-asset-relocator-loader/-/webpack-asset-relocator-loader-1.7.2.tgz", - "integrity": "sha512-pdMwUawmAtH/LScbjKJq/y2+gZFggFMc2tlJrlPSrgKajvYPEis3L9QKcMyC9RN1Xos4ezAP5AJfRCNN6RMKCQ==" + "version": "1.7.3", + "resolved": "https://registry.npmjs.org/@vercel/webpack-asset-relocator-loader/-/webpack-asset-relocator-loader-1.7.3.tgz", + "integrity": "sha512-vizrI18v8Lcb1PmNNUBz7yxPxxXoOeuaVEjTG9MjvDrphjiSxFZrRJ5tIghk+qdLFRCXI5HBCshgobftbmrC5g==", + "requires": { + "resolve": "^1.10.0" + } }, "@webassemblyjs/ast": { "version": "1.11.1", @@ -3738,9 +3967,9 @@ } }, "axe-core": { - "version": "4.4.2", - "resolved": "https://registry.npmjs.org/axe-core/-/axe-core-4.4.2.tgz", - "integrity": "sha512-LVAaGp/wkkgYJcjmHsoKx4juT1aQvJyPcW09MLCjVTh3V2cc6PnyempiLMNH5iMdfIX/zdbjUx2KDjMLCTdPeA==" + "version": "4.4.3", + "resolved": "https://registry.npmjs.org/axe-core/-/axe-core-4.4.3.tgz", + "integrity": "sha512-32+ub6kkdhhWick/UjvEwRchgoetXqTK14INLqbGm5U2TzBkBNF3nQtLYm8ovxSkQWArjEQvftCKryjZaATu3w==" }, "axios": { "version": "0.21.4", @@ -4149,13 +4378,13 @@ } }, "browserslist": { - "version": "4.21.1", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.1.tgz", - "integrity": "sha512-Nq8MFCSrnJXSc88yliwlzQe3qNe3VntIjhsArW9IJOEPSHNx23FalwApUVbzAWABLhYJJ7y8AynWI/XM8OdfjQ==", + "version": "4.21.2", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.2.tgz", + "integrity": "sha512-MonuOgAtUB46uP5CezYbRaYKBNt2LxP0yX+Pmj4LkcDFGkn9Cbpi83d9sCjwQDErXsIJSzY5oKGDbgOlF/LPAA==", "requires": { - "caniuse-lite": "^1.0.30001359", - "electron-to-chromium": "^1.4.172", - "node-releases": "^2.0.5", + "caniuse-lite": "^1.0.30001366", + "electron-to-chromium": "^1.4.188", + "node-releases": "^2.0.6", "update-browserslist-db": "^1.0.4" } }, @@ -4303,9 +4532,9 @@ } }, "caniuse-lite": { - "version": "1.0.30001365", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001365.tgz", - "integrity": "sha512-VDQZ8OtpuIPMBA4YYvZXECtXbddMCUFJk1qu8Mqxfm/SZJNSr1cy4IuLCOL7RJ/YASrvJcYg1Zh+UEUQ5m6z8Q==" + "version": "1.0.30001366", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001366.tgz", + "integrity": "sha512-yy7XLWCubDobokgzudpkKux8e0UOOnLHE6mlNJBzT3lZJz6s5atSEzjoL+fsCPkI0G8MP5uVdDx1ur/fXEWkZA==" }, "capital-case": { "version": "1.0.4", @@ -5594,9 +5823,9 @@ "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==" }, "electron-to-chromium": { - "version": "1.4.186", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.186.tgz", - "integrity": "sha512-YoVeFrGd/7ROjz4R9uPoND1K/hSRC/xADy9639ZmIZeJSaBnKdYx3I6LMPsY7CXLpK7JFgKQVzeZ/dk2br6Eaw==" + "version": "1.4.188", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.188.tgz", + "integrity": "sha512-Zpa1+E+BVmD/orkyz1Z2dAT1XNUuVAHB3GrogfyY66dXN0ZWSsygI8+u6QTDai1ZayLcATDJpcv2Z2AZjEcr1A==" }, "emoji-regex": { "version": "8.0.0", @@ -6975,9 +7204,9 @@ "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==" }, "gatsby": { - "version": "4.18.1", - "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-4.18.1.tgz", - "integrity": "sha512-frMFAWOmMl/CtqBZ3aZXlysicQQa8C+yfMdjnjx81f7E5xoL20klk1j4UYj1kUnGgBMSuVehU8M+bE0kT02zoQ==", + "version": "4.18.2", + "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-4.18.2.tgz", + "integrity": "sha512-ZWdo0TXsSRmwlmOeeuoWwXKQNteHm9VxJWF9Ud+c33r7ZXQgTA5WtRYjiBpjZuNAUwsiONNAe+wKK5jVY8B4LQ==", "requires": { "@babel/code-frame": "^7.14.0", "@babel/core": "^7.15.5", @@ -7063,7 +7292,7 @@ "gatsby-legacy-polyfills": "^2.18.0", "gatsby-link": "^4.18.1", "gatsby-page-utils": "^2.18.1", - "gatsby-parcel-config": "^0.9.1", + "gatsby-parcel-config": "^0.9.2", "gatsby-plugin-page-creator": "^4.18.1", "gatsby-plugin-typescript": "^4.18.1", "gatsby-plugin-utils": "^3.12.1", @@ -7278,11 +7507,11 @@ } }, "gatsby-parcel-config": { - "version": "0.9.1", - "resolved": "https://registry.npmjs.org/gatsby-parcel-config/-/gatsby-parcel-config-0.9.1.tgz", - "integrity": "sha512-ZtVntsQYs0xhy1hvWUMeSLc4a+DvxtTf+NUrPF4rvBjOW/LPMx2eYDzPddKvqWmiUaT1+Ki9S9bwCuOp5muawg==", + "version": "0.9.2", + "resolved": "https://registry.npmjs.org/gatsby-parcel-config/-/gatsby-parcel-config-0.9.2.tgz", + "integrity": "sha512-ONykPoYCoFs89M8Hio0TSrUQEpwXwbSiV8aCcPH9L6w3eros9RlWrwAwnWb+lPDNJT5BsereBjefoS9cC6mpVA==", "requires": { - "@gatsbyjs/parcel-namer-relative-to-cwd": "^1.3.1", + "@gatsbyjs/parcel-namer-relative-to-cwd": "^1.3.2", "@parcel/bundler-default": "2.6.0", "@parcel/compressor-raw": "2.6.0", "@parcel/namer-default": "2.6.0", @@ -13198,9 +13427,9 @@ "integrity": "sha512-wK0Ri4fOGjv/XPy8SBHZChl8CM7uMc5VML7SqiQ0zG7+J5Vr+RMQDoHa2CNT6KHUnTGIXH34UDMkPzAUyapBZg==" }, "terser": { - "version": "5.14.1", - "resolved": "https://registry.npmjs.org/terser/-/terser-5.14.1.tgz", - "integrity": "sha512-+ahUAE+iheqBTDxXhTisdA8hgvbEG1hHOQ9xmNjeUJSoi6DU/gMrKNcfZjHkyY6Alnuyc+ikYJaxxfHkT3+WuQ==", + "version": "5.14.2", + "resolved": "https://registry.npmjs.org/terser/-/terser-5.14.2.tgz", + "integrity": "sha512-oL0rGeM/WFQCUd0y2QrWxYnq7tfSuKBiqTjRPWrRgB46WD/kiwHwF8T23z78H6Q6kGCuuHcPB+KULHRdxvVGQA==", "requires": { "@jridgewell/source-map": "^0.3.2", "acorn": "^8.5.0", diff --git a/starters/blog/package.json b/starters/blog/package.json index 7e25897bf4c6a..ae844a2114990 100644 --- a/starters/blog/package.json +++ b/starters/blog/package.json @@ -8,7 +8,7 @@ "url": "https://github.com/gatsbyjs/gatsby/issues" }, "dependencies": { - "gatsby": "^4.18.1", + "gatsby": "^4.18.2", "gatsby-plugin-feed": "^4.18.1", "gatsby-plugin-gatsby-cloud": "^4.18.1", "gatsby-plugin-google-analytics": "^4.18.0", diff --git a/starters/default/package-lock.json b/starters/default/package-lock.json index 5d997bc809f68..0b525d0e1b7ba 100644 --- a/starters/default/package-lock.json +++ b/starters/default/package-lock.json @@ -1317,13 +1317,239 @@ } }, "@gatsbyjs/parcel-namer-relative-to-cwd": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/@gatsbyjs/parcel-namer-relative-to-cwd/-/parcel-namer-relative-to-cwd-1.3.1.tgz", - "integrity": "sha512-wN4iU1CWumvhcuzMBKdDikZ5xgo81Ias09bKyjE36DgNxTzAhT2fXZIBAAEUlv/GBQqFe6Eas83gGGtXf31hiw==", + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/@gatsbyjs/parcel-namer-relative-to-cwd/-/parcel-namer-relative-to-cwd-1.3.2.tgz", + "integrity": "sha512-jiYGiq8Zk21x2IIWbsLQ0GqgGJyKjj+/4jYwr5msD5ORB/JAZLk4IDrMKZ9rFXkNPq/bRV57ub0k/NvRMELfLQ==", "requires": { "@babel/runtime": "^7.18.0", + "@parcel/namer-default": "2.6.2", "@parcel/plugin": "2.6.0", "gatsby-core-utils": "^3.18.1" + }, + "dependencies": { + "@lmdb/lmdb-darwin-arm64": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-arm64/-/lmdb-darwin-arm64-2.5.2.tgz", + "integrity": "sha512-+F8ioQIUN68B4UFiIBYu0QQvgb9FmlKw2ctQMSBfW2QBrZIxz9vD9jCGqTCPqZBRbPHAS/vG1zSXnKqnS2ch/A==", + "optional": true + }, + "@lmdb/lmdb-darwin-x64": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-x64/-/lmdb-darwin-x64-2.5.2.tgz", + "integrity": "sha512-KvPH56KRLLx4KSfKBx0m1r7GGGUMXm0jrKmNE7plbHlesZMuPJICtn07HYgQhj1LNsK7Yqwuvnqh1QxhJnF1EA==", + "optional": true + }, + "@lmdb/lmdb-linux-arm": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm/-/lmdb-linux-arm-2.5.2.tgz", + "integrity": "sha512-5kQAP21hAkfW5Bl+e0P57dV4dGYnkNIpR7f/GAh6QHlgXx+vp/teVj4PGRZaKAvt0GX6++N6hF8NnGElLDuIDw==", + "optional": true + }, + "@lmdb/lmdb-linux-arm64": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm64/-/lmdb-linux-arm64-2.5.2.tgz", + "integrity": "sha512-aLl89VHL/wjhievEOlPocoefUyWdvzVrcQ/MHQYZm2JfV1jUsrbr/ZfkPPUFvZBf+VSE+Q0clWs9l29PCX1hTQ==", + "optional": true + }, + "@lmdb/lmdb-linux-x64": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-x64/-/lmdb-linux-x64-2.5.2.tgz", + "integrity": "sha512-xUdUfwDJLGjOUPH3BuPBt0NlIrR7f/QHKgu3GZIXswMMIihAekj2i97oI0iWG5Bok/b+OBjHPfa8IU9velnP/Q==", + "optional": true + }, + "@lmdb/lmdb-win32-x64": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-win32-x64/-/lmdb-win32-x64-2.5.2.tgz", + "integrity": "sha512-zrBczSbXKxEyK2ijtbRdICDygRqWSRPpZMN5dD1T8VMEW5RIhIbwFWw2phDRXuBQdVDpSjalCIUMWMV2h3JaZA==", + "optional": true + }, + "@parcel/cache": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/cache/-/cache-2.6.2.tgz", + "integrity": "sha512-hhJ6AsEGybeQZd9c/GYqfcKTgZKQXu3Xih6TlnP3gdR3KZoJOnb40ovHD1yYg4COvfcXThKP1cVJ18J6rcv3IA==", + "requires": { + "@parcel/fs": "2.6.2", + "@parcel/logger": "2.6.2", + "@parcel/utils": "2.6.2", + "lmdb": "2.5.2" + } + }, + "@parcel/codeframe": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/codeframe/-/codeframe-2.6.2.tgz", + "integrity": "sha512-oFlHr6HCaYYsB4SHkU+gn9DKtbzvv3/4NdwMX0/6NAKyYVI7inEsXyPGw2Bbd2ZCFatW9QJZUETF0etvh5AEfQ==", + "requires": { + "chalk": "^4.1.0" + } + }, + "@parcel/diagnostic": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/diagnostic/-/diagnostic-2.6.2.tgz", + "integrity": "sha512-3ODSBkKVihENU763z1/1DhGAWFhYWRxOCOShC72KXp+GFnSgGiBsxclu8NBa/N948Rzp8lqQI8U1nLcKkh0O/w==", + "requires": { + "@mischnic/json-sourcemap": "^0.1.0", + "nullthrows": "^1.1.1" + } + }, + "@parcel/events": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/events/-/events-2.6.2.tgz", + "integrity": "sha512-IaCjOeA5ercdFVi1EZOmUHhGfIysmCUgc2Th9hMugSFO0I3GzRsBcAdP6XPfWm+TV6sQ/qZRfdk/drUxoAupnw==" + }, + "@parcel/fs": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/fs/-/fs-2.6.2.tgz", + "integrity": "sha512-mIhqdF3tjgeoIGqW7Nc/xfM2ClID7o8livwUe5lpQEP+ZaIBiMigXs6ckv3WToCACK+3uylrSD2A/HmlhrxMqQ==", + "requires": { + "@parcel/fs-search": "2.6.2", + "@parcel/types": "2.6.2", + "@parcel/utils": "2.6.2", + "@parcel/watcher": "^2.0.0", + "@parcel/workers": "2.6.2" + } + }, + "@parcel/fs-search": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/fs-search/-/fs-search-2.6.2.tgz", + "integrity": "sha512-4STid1zqtGnmGjHD/2TG2g/zPDiCTtE3IAS24QYH3eiUAz2uoKGgEqd2tZbZ2yI96jtCuIhC1bzVu8Hbykls7w==", + "requires": { + "detect-libc": "^1.0.3" + } + }, + "@parcel/hash": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/hash/-/hash-2.6.2.tgz", + "integrity": "sha512-tFB+cJU1Wqag6WyJgsmx3nx+xhmjcNZqtWh/MtK1lHNnZdDRk6bjr7SapnygBwruz+SmSt5bbdVThcpk2dRCcA==", + "requires": { + "detect-libc": "^1.0.3", + "xxhash-wasm": "^0.4.2" + } + }, + "@parcel/logger": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/logger/-/logger-2.6.2.tgz", + "integrity": "sha512-Sz5YGCj1DbEiX0/G8Uw97LLZ0uEK+qtWcRAkHNpJpeMiSqDiRNevxXltz42EcLo+oCh4d4wyiVzwi9mNwzhS/Q==", + "requires": { + "@parcel/diagnostic": "2.6.2", + "@parcel/events": "2.6.2" + } + }, + "@parcel/markdown-ansi": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/markdown-ansi/-/markdown-ansi-2.6.2.tgz", + "integrity": "sha512-N/h9J4eibhc+B+krzvPMzFUWL37GudBIZBa7XSLkcuH6MnYYfh6rrMvhIyyESwk6VkcZNVzAeZrGQqxEs0dHDQ==", + "requires": { + "chalk": "^4.1.0" + } + }, + "@parcel/namer-default": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/namer-default/-/namer-default-2.6.2.tgz", + "integrity": "sha512-mp7bx/BQaIuohmZP0uE+gAmDBzzH0Yu8F4yCtE611lc6i0mou+nWRhzyKLNC/ieuI8DB3BFh2QQKeTxJn4W0qg==", + "requires": { + "@parcel/diagnostic": "2.6.2", + "@parcel/plugin": "2.6.2", + "nullthrows": "^1.1.1" + }, + "dependencies": { + "@parcel/plugin": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/plugin/-/plugin-2.6.2.tgz", + "integrity": "sha512-wbbWsM23Pr+8xtLSvf+UopXdVYlpKCCx6PuuZaZcKo+9IcDCWoGXD4M8Kkz14qBmkFn5uM00mULUqmVdSibB2w==", + "requires": { + "@parcel/types": "2.6.2" + } + } + } + }, + "@parcel/package-manager": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/package-manager/-/package-manager-2.6.2.tgz", + "integrity": "sha512-xGMqTgnwTE3rgzYwUZMKxR8fzmP5iSYz/gj2H8FR3pEmwh/8xCMtNjTSth+hPVGuqgRZ6JxwpfdY/fXdZ61ViQ==", + "requires": { + "@parcel/diagnostic": "2.6.2", + "@parcel/fs": "2.6.2", + "@parcel/logger": "2.6.2", + "@parcel/types": "2.6.2", + "@parcel/utils": "2.6.2", + "@parcel/workers": "2.6.2", + "semver": "^5.7.1" + } + }, + "@parcel/types": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/types/-/types-2.6.2.tgz", + "integrity": "sha512-MV8BFpCIs2jMUvK2RHqzkoiuOQ//JIbrD1zocA2YRW3zuPL/iABvbAABJoXpoPCKikVWOoCWASgBfWQo26VvJQ==", + "requires": { + "@parcel/cache": "2.6.2", + "@parcel/diagnostic": "2.6.2", + "@parcel/fs": "2.6.2", + "@parcel/package-manager": "2.6.2", + "@parcel/source-map": "^2.0.0", + "@parcel/workers": "2.6.2", + "utility-types": "^3.10.0" + } + }, + "@parcel/utils": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/utils/-/utils-2.6.2.tgz", + "integrity": "sha512-Ug7hpRxjgbY5AopW55nY7MmGMVmwmN+ihfCmxJkBUoESTG/3iq8uME7GjyOgW5DkQc2K7q62i8y8N0wCJT1u4Q==", + "requires": { + "@parcel/codeframe": "2.6.2", + "@parcel/diagnostic": "2.6.2", + "@parcel/hash": "2.6.2", + "@parcel/logger": "2.6.2", + "@parcel/markdown-ansi": "2.6.2", + "@parcel/source-map": "^2.0.0", + "chalk": "^4.1.0" + } + }, + "@parcel/workers": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/workers/-/workers-2.6.2.tgz", + "integrity": "sha512-wBgUjJQm+lDd12fPRUmk09+ujTA9DgwPdqylSFK0OtI/yT6A+2kArUqjp8IwWo2tCJXoMzXBne2XQIWKqMiN4Q==", + "requires": { + "@parcel/diagnostic": "2.6.2", + "@parcel/logger": "2.6.2", + "@parcel/types": "2.6.2", + "@parcel/utils": "2.6.2", + "chrome-trace-event": "^1.0.2", + "nullthrows": "^1.1.1" + } + }, + "lmdb": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/lmdb/-/lmdb-2.5.2.tgz", + "integrity": "sha512-V5V5Xa2Hp9i2XsbDALkBTeHXnBXh/lEmk9p22zdr7jtuOIY9TGhjK6vAvTpOOx9IKU4hJkRWZxn/HsvR1ELLtA==", + "requires": { + "@lmdb/lmdb-darwin-arm64": "2.5.2", + "@lmdb/lmdb-darwin-x64": "2.5.2", + "@lmdb/lmdb-linux-arm": "2.5.2", + "@lmdb/lmdb-linux-arm64": "2.5.2", + "@lmdb/lmdb-linux-x64": "2.5.2", + "@lmdb/lmdb-win32-x64": "2.5.2", + "msgpackr": "^1.5.4", + "node-addon-api": "^4.3.0", + "node-gyp-build-optional-packages": "5.0.3", + "ordered-binary": "^1.2.4", + "weak-lru-cache": "^1.2.2" + } + }, + "node-addon-api": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-4.3.0.tgz", + "integrity": "sha512-73sE9+3UaLYYFmDsFZnqCInzPyh3MqIwZO9cw58yIqAZhONrrabrYyYe3TuIqtIiOuTXVhsGau8hcrhhwSsDIQ==" + }, + "node-gyp-build-optional-packages": { + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/node-gyp-build-optional-packages/-/node-gyp-build-optional-packages-5.0.3.tgz", + "integrity": "sha512-k75jcVzk5wnnc/FMxsf4udAoTEUv2jY3ycfdSd3yWu6Cnd1oee6/CfZJApyscA4FJOmdoixWwiwOyf16RzD5JA==" + }, + "semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==" + } } }, "@gatsbyjs/potrace": { @@ -2987,9 +3213,9 @@ } }, "@types/estree": { - "version": "0.0.52", - "resolved": "https://registry.npmjs.org/@types/estree/-/estree-0.0.52.tgz", - "integrity": "sha512-BZWrtCU0bMVAIliIV+HJO1f1PR41M7NKjfxrFJwwhKI1KwhwOxYw1SXg9ao+CIMt774nFuGiG6eU+udtbEI9oQ==" + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.0.tgz", + "integrity": "sha512-WulqXMDUTYAXCjZnk6JtIHPigp55cVtDgDrO2gHRwhyJto21+1zbVCtOYB2L1F9w4qCQ0rOGWBnBe0FNTiEJIQ==" }, "@types/get-port": { "version": "3.2.0", @@ -3273,9 +3499,12 @@ } }, "@vercel/webpack-asset-relocator-loader": { - "version": "1.7.2", - "resolved": "https://registry.npmjs.org/@vercel/webpack-asset-relocator-loader/-/webpack-asset-relocator-loader-1.7.2.tgz", - "integrity": "sha512-pdMwUawmAtH/LScbjKJq/y2+gZFggFMc2tlJrlPSrgKajvYPEis3L9QKcMyC9RN1Xos4ezAP5AJfRCNN6RMKCQ==" + "version": "1.7.3", + "resolved": "https://registry.npmjs.org/@vercel/webpack-asset-relocator-loader/-/webpack-asset-relocator-loader-1.7.3.tgz", + "integrity": "sha512-vizrI18v8Lcb1PmNNUBz7yxPxxXoOeuaVEjTG9MjvDrphjiSxFZrRJ5tIghk+qdLFRCXI5HBCshgobftbmrC5g==", + "requires": { + "resolve": "^1.10.0" + } }, "@webassemblyjs/ast": { "version": "1.11.1", @@ -3707,9 +3936,9 @@ } }, "axe-core": { - "version": "4.4.2", - "resolved": "https://registry.npmjs.org/axe-core/-/axe-core-4.4.2.tgz", - "integrity": "sha512-LVAaGp/wkkgYJcjmHsoKx4juT1aQvJyPcW09MLCjVTh3V2cc6PnyempiLMNH5iMdfIX/zdbjUx2KDjMLCTdPeA==" + "version": "4.4.3", + "resolved": "https://registry.npmjs.org/axe-core/-/axe-core-4.4.3.tgz", + "integrity": "sha512-32+ub6kkdhhWick/UjvEwRchgoetXqTK14INLqbGm5U2TzBkBNF3nQtLYm8ovxSkQWArjEQvftCKryjZaATu3w==" }, "axios": { "version": "0.21.4", @@ -4113,13 +4342,13 @@ } }, "browserslist": { - "version": "4.21.1", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.1.tgz", - "integrity": "sha512-Nq8MFCSrnJXSc88yliwlzQe3qNe3VntIjhsArW9IJOEPSHNx23FalwApUVbzAWABLhYJJ7y8AynWI/XM8OdfjQ==", + "version": "4.21.2", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.2.tgz", + "integrity": "sha512-MonuOgAtUB46uP5CezYbRaYKBNt2LxP0yX+Pmj4LkcDFGkn9Cbpi83d9sCjwQDErXsIJSzY5oKGDbgOlF/LPAA==", "requires": { - "caniuse-lite": "^1.0.30001359", - "electron-to-chromium": "^1.4.172", - "node-releases": "^2.0.5", + "caniuse-lite": "^1.0.30001366", + "electron-to-chromium": "^1.4.188", + "node-releases": "^2.0.6", "update-browserslist-db": "^1.0.4" } }, @@ -4267,9 +4496,9 @@ } }, "caniuse-lite": { - "version": "1.0.30001365", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001365.tgz", - "integrity": "sha512-VDQZ8OtpuIPMBA4YYvZXECtXbddMCUFJk1qu8Mqxfm/SZJNSr1cy4IuLCOL7RJ/YASrvJcYg1Zh+UEUQ5m6z8Q==" + "version": "1.0.30001366", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001366.tgz", + "integrity": "sha512-yy7XLWCubDobokgzudpkKux8e0UOOnLHE6mlNJBzT3lZJz6s5atSEzjoL+fsCPkI0G8MP5uVdDx1ur/fXEWkZA==" }, "capital-case": { "version": "1.0.4", @@ -5523,9 +5752,9 @@ "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==" }, "electron-to-chromium": { - "version": "1.4.186", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.186.tgz", - "integrity": "sha512-YoVeFrGd/7ROjz4R9uPoND1K/hSRC/xADy9639ZmIZeJSaBnKdYx3I6LMPsY7CXLpK7JFgKQVzeZ/dk2br6Eaw==" + "version": "1.4.188", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.188.tgz", + "integrity": "sha512-Zpa1+E+BVmD/orkyz1Z2dAT1XNUuVAHB3GrogfyY66dXN0ZWSsygI8+u6QTDai1ZayLcATDJpcv2Z2AZjEcr1A==" }, "emoji-regex": { "version": "8.0.0", @@ -6891,9 +7120,9 @@ "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==" }, "gatsby": { - "version": "4.18.1", - "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-4.18.1.tgz", - "integrity": "sha512-frMFAWOmMl/CtqBZ3aZXlysicQQa8C+yfMdjnjx81f7E5xoL20klk1j4UYj1kUnGgBMSuVehU8M+bE0kT02zoQ==", + "version": "4.18.2", + "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-4.18.2.tgz", + "integrity": "sha512-ZWdo0TXsSRmwlmOeeuoWwXKQNteHm9VxJWF9Ud+c33r7ZXQgTA5WtRYjiBpjZuNAUwsiONNAe+wKK5jVY8B4LQ==", "requires": { "@babel/code-frame": "^7.14.0", "@babel/core": "^7.15.5", @@ -6979,7 +7208,7 @@ "gatsby-legacy-polyfills": "^2.18.0", "gatsby-link": "^4.18.1", "gatsby-page-utils": "^2.18.1", - "gatsby-parcel-config": "^0.9.1", + "gatsby-parcel-config": "^0.9.2", "gatsby-plugin-page-creator": "^4.18.1", "gatsby-plugin-typescript": "^4.18.1", "gatsby-plugin-utils": "^3.12.1", @@ -7194,11 +7423,11 @@ } }, "gatsby-parcel-config": { - "version": "0.9.1", - "resolved": "https://registry.npmjs.org/gatsby-parcel-config/-/gatsby-parcel-config-0.9.1.tgz", - "integrity": "sha512-ZtVntsQYs0xhy1hvWUMeSLc4a+DvxtTf+NUrPF4rvBjOW/LPMx2eYDzPddKvqWmiUaT1+Ki9S9bwCuOp5muawg==", + "version": "0.9.2", + "resolved": "https://registry.npmjs.org/gatsby-parcel-config/-/gatsby-parcel-config-0.9.2.tgz", + "integrity": "sha512-ONykPoYCoFs89M8Hio0TSrUQEpwXwbSiV8aCcPH9L6w3eros9RlWrwAwnWb+lPDNJT5BsereBjefoS9cC6mpVA==", "requires": { - "@gatsbyjs/parcel-namer-relative-to-cwd": "^1.3.1", + "@gatsbyjs/parcel-namer-relative-to-cwd": "^1.3.2", "@parcel/bundler-default": "2.6.0", "@parcel/compressor-raw": "2.6.0", "@parcel/namer-default": "2.6.0", @@ -12250,9 +12479,9 @@ "integrity": "sha512-wK0Ri4fOGjv/XPy8SBHZChl8CM7uMc5VML7SqiQ0zG7+J5Vr+RMQDoHa2CNT6KHUnTGIXH34UDMkPzAUyapBZg==" }, "terser": { - "version": "5.14.1", - "resolved": "https://registry.npmjs.org/terser/-/terser-5.14.1.tgz", - "integrity": "sha512-+ahUAE+iheqBTDxXhTisdA8hgvbEG1hHOQ9xmNjeUJSoi6DU/gMrKNcfZjHkyY6Alnuyc+ikYJaxxfHkT3+WuQ==", + "version": "5.14.2", + "resolved": "https://registry.npmjs.org/terser/-/terser-5.14.2.tgz", + "integrity": "sha512-oL0rGeM/WFQCUd0y2QrWxYnq7tfSuKBiqTjRPWrRgB46WD/kiwHwF8T23z78H6Q6kGCuuHcPB+KULHRdxvVGQA==", "requires": { "@jridgewell/source-map": "^0.3.2", "acorn": "^8.5.0", diff --git a/starters/default/package.json b/starters/default/package.json index 37fc6126e3583..9b8ce7babcd5d 100644 --- a/starters/default/package.json +++ b/starters/default/package.json @@ -5,7 +5,7 @@ "version": "0.1.0", "author": "Kyle Mathews ", "dependencies": { - "gatsby": "^4.18.1", + "gatsby": "^4.18.2", "gatsby-plugin-gatsby-cloud": "^4.18.1", "gatsby-plugin-image": "^2.18.1", "gatsby-plugin-manifest": "^4.18.1", diff --git a/starters/gatsby-starter-blog-theme-core/package-lock.json b/starters/gatsby-starter-blog-theme-core/package-lock.json index 3a23a1a138420..3bc77f2a18bdc 100644 --- a/starters/gatsby-starter-blog-theme-core/package-lock.json +++ b/starters/gatsby-starter-blog-theme-core/package-lock.json @@ -1545,15 +1545,206 @@ } }, "@gatsbyjs/parcel-namer-relative-to-cwd": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/@gatsbyjs/parcel-namer-relative-to-cwd/-/parcel-namer-relative-to-cwd-1.3.1.tgz", - "integrity": "sha512-wN4iU1CWumvhcuzMBKdDikZ5xgo81Ias09bKyjE36DgNxTzAhT2fXZIBAAEUlv/GBQqFe6Eas83gGGtXf31hiw==", + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/@gatsbyjs/parcel-namer-relative-to-cwd/-/parcel-namer-relative-to-cwd-1.3.2.tgz", + "integrity": "sha512-jiYGiq8Zk21x2IIWbsLQ0GqgGJyKjj+/4jYwr5msD5ORB/JAZLk4IDrMKZ9rFXkNPq/bRV57ub0k/NvRMELfLQ==", "requires": { "@babel/runtime": "^7.18.0", + "@parcel/namer-default": "2.6.2", "@parcel/plugin": "2.6.0", "gatsby-core-utils": "^3.18.1" }, "dependencies": { + "@lmdb/lmdb-darwin-arm64": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-arm64/-/lmdb-darwin-arm64-2.5.2.tgz", + "integrity": "sha512-+F8ioQIUN68B4UFiIBYu0QQvgb9FmlKw2ctQMSBfW2QBrZIxz9vD9jCGqTCPqZBRbPHAS/vG1zSXnKqnS2ch/A==", + "optional": true + }, + "@lmdb/lmdb-darwin-x64": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-x64/-/lmdb-darwin-x64-2.5.2.tgz", + "integrity": "sha512-KvPH56KRLLx4KSfKBx0m1r7GGGUMXm0jrKmNE7plbHlesZMuPJICtn07HYgQhj1LNsK7Yqwuvnqh1QxhJnF1EA==", + "optional": true + }, + "@lmdb/lmdb-linux-arm": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm/-/lmdb-linux-arm-2.5.2.tgz", + "integrity": "sha512-5kQAP21hAkfW5Bl+e0P57dV4dGYnkNIpR7f/GAh6QHlgXx+vp/teVj4PGRZaKAvt0GX6++N6hF8NnGElLDuIDw==", + "optional": true + }, + "@lmdb/lmdb-linux-arm64": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm64/-/lmdb-linux-arm64-2.5.2.tgz", + "integrity": "sha512-aLl89VHL/wjhievEOlPocoefUyWdvzVrcQ/MHQYZm2JfV1jUsrbr/ZfkPPUFvZBf+VSE+Q0clWs9l29PCX1hTQ==", + "optional": true + }, + "@lmdb/lmdb-linux-x64": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-x64/-/lmdb-linux-x64-2.5.2.tgz", + "integrity": "sha512-xUdUfwDJLGjOUPH3BuPBt0NlIrR7f/QHKgu3GZIXswMMIihAekj2i97oI0iWG5Bok/b+OBjHPfa8IU9velnP/Q==", + "optional": true + }, + "@lmdb/lmdb-win32-x64": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-win32-x64/-/lmdb-win32-x64-2.5.2.tgz", + "integrity": "sha512-zrBczSbXKxEyK2ijtbRdICDygRqWSRPpZMN5dD1T8VMEW5RIhIbwFWw2phDRXuBQdVDpSjalCIUMWMV2h3JaZA==", + "optional": true + }, + "@parcel/cache": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/cache/-/cache-2.6.2.tgz", + "integrity": "sha512-hhJ6AsEGybeQZd9c/GYqfcKTgZKQXu3Xih6TlnP3gdR3KZoJOnb40ovHD1yYg4COvfcXThKP1cVJ18J6rcv3IA==", + "requires": { + "@parcel/fs": "2.6.2", + "@parcel/logger": "2.6.2", + "@parcel/utils": "2.6.2", + "lmdb": "2.5.2" + } + }, + "@parcel/codeframe": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/codeframe/-/codeframe-2.6.2.tgz", + "integrity": "sha512-oFlHr6HCaYYsB4SHkU+gn9DKtbzvv3/4NdwMX0/6NAKyYVI7inEsXyPGw2Bbd2ZCFatW9QJZUETF0etvh5AEfQ==", + "requires": { + "chalk": "^4.1.0" + } + }, + "@parcel/diagnostic": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/diagnostic/-/diagnostic-2.6.2.tgz", + "integrity": "sha512-3ODSBkKVihENU763z1/1DhGAWFhYWRxOCOShC72KXp+GFnSgGiBsxclu8NBa/N948Rzp8lqQI8U1nLcKkh0O/w==", + "requires": { + "@mischnic/json-sourcemap": "^0.1.0", + "nullthrows": "^1.1.1" + } + }, + "@parcel/events": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/events/-/events-2.6.2.tgz", + "integrity": "sha512-IaCjOeA5ercdFVi1EZOmUHhGfIysmCUgc2Th9hMugSFO0I3GzRsBcAdP6XPfWm+TV6sQ/qZRfdk/drUxoAupnw==" + }, + "@parcel/fs": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/fs/-/fs-2.6.2.tgz", + "integrity": "sha512-mIhqdF3tjgeoIGqW7Nc/xfM2ClID7o8livwUe5lpQEP+ZaIBiMigXs6ckv3WToCACK+3uylrSD2A/HmlhrxMqQ==", + "requires": { + "@parcel/fs-search": "2.6.2", + "@parcel/types": "2.6.2", + "@parcel/utils": "2.6.2", + "@parcel/watcher": "^2.0.0", + "@parcel/workers": "2.6.2" + } + }, + "@parcel/fs-search": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/fs-search/-/fs-search-2.6.2.tgz", + "integrity": "sha512-4STid1zqtGnmGjHD/2TG2g/zPDiCTtE3IAS24QYH3eiUAz2uoKGgEqd2tZbZ2yI96jtCuIhC1bzVu8Hbykls7w==", + "requires": { + "detect-libc": "^1.0.3" + } + }, + "@parcel/hash": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/hash/-/hash-2.6.2.tgz", + "integrity": "sha512-tFB+cJU1Wqag6WyJgsmx3nx+xhmjcNZqtWh/MtK1lHNnZdDRk6bjr7SapnygBwruz+SmSt5bbdVThcpk2dRCcA==", + "requires": { + "detect-libc": "^1.0.3", + "xxhash-wasm": "^0.4.2" + } + }, + "@parcel/logger": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/logger/-/logger-2.6.2.tgz", + "integrity": "sha512-Sz5YGCj1DbEiX0/G8Uw97LLZ0uEK+qtWcRAkHNpJpeMiSqDiRNevxXltz42EcLo+oCh4d4wyiVzwi9mNwzhS/Q==", + "requires": { + "@parcel/diagnostic": "2.6.2", + "@parcel/events": "2.6.2" + } + }, + "@parcel/markdown-ansi": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/markdown-ansi/-/markdown-ansi-2.6.2.tgz", + "integrity": "sha512-N/h9J4eibhc+B+krzvPMzFUWL37GudBIZBa7XSLkcuH6MnYYfh6rrMvhIyyESwk6VkcZNVzAeZrGQqxEs0dHDQ==", + "requires": { + "chalk": "^4.1.0" + } + }, + "@parcel/namer-default": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/namer-default/-/namer-default-2.6.2.tgz", + "integrity": "sha512-mp7bx/BQaIuohmZP0uE+gAmDBzzH0Yu8F4yCtE611lc6i0mou+nWRhzyKLNC/ieuI8DB3BFh2QQKeTxJn4W0qg==", + "requires": { + "@parcel/diagnostic": "2.6.2", + "@parcel/plugin": "2.6.2", + "nullthrows": "^1.1.1" + }, + "dependencies": { + "@parcel/plugin": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/plugin/-/plugin-2.6.2.tgz", + "integrity": "sha512-wbbWsM23Pr+8xtLSvf+UopXdVYlpKCCx6PuuZaZcKo+9IcDCWoGXD4M8Kkz14qBmkFn5uM00mULUqmVdSibB2w==", + "requires": { + "@parcel/types": "2.6.2" + } + } + } + }, + "@parcel/package-manager": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/package-manager/-/package-manager-2.6.2.tgz", + "integrity": "sha512-xGMqTgnwTE3rgzYwUZMKxR8fzmP5iSYz/gj2H8FR3pEmwh/8xCMtNjTSth+hPVGuqgRZ6JxwpfdY/fXdZ61ViQ==", + "requires": { + "@parcel/diagnostic": "2.6.2", + "@parcel/fs": "2.6.2", + "@parcel/logger": "2.6.2", + "@parcel/types": "2.6.2", + "@parcel/utils": "2.6.2", + "@parcel/workers": "2.6.2", + "semver": "^5.7.1" + } + }, + "@parcel/types": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/types/-/types-2.6.2.tgz", + "integrity": "sha512-MV8BFpCIs2jMUvK2RHqzkoiuOQ//JIbrD1zocA2YRW3zuPL/iABvbAABJoXpoPCKikVWOoCWASgBfWQo26VvJQ==", + "requires": { + "@parcel/cache": "2.6.2", + "@parcel/diagnostic": "2.6.2", + "@parcel/fs": "2.6.2", + "@parcel/package-manager": "2.6.2", + "@parcel/source-map": "^2.0.0", + "@parcel/workers": "2.6.2", + "utility-types": "^3.10.0" + } + }, + "@parcel/utils": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/utils/-/utils-2.6.2.tgz", + "integrity": "sha512-Ug7hpRxjgbY5AopW55nY7MmGMVmwmN+ihfCmxJkBUoESTG/3iq8uME7GjyOgW5DkQc2K7q62i8y8N0wCJT1u4Q==", + "requires": { + "@parcel/codeframe": "2.6.2", + "@parcel/diagnostic": "2.6.2", + "@parcel/hash": "2.6.2", + "@parcel/logger": "2.6.2", + "@parcel/markdown-ansi": "2.6.2", + "@parcel/source-map": "^2.0.0", + "chalk": "^4.1.0" + } + }, + "@parcel/workers": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/workers/-/workers-2.6.2.tgz", + "integrity": "sha512-wBgUjJQm+lDd12fPRUmk09+ujTA9DgwPdqylSFK0OtI/yT6A+2kArUqjp8IwWo2tCJXoMzXBne2XQIWKqMiN4Q==", + "requires": { + "@parcel/diagnostic": "2.6.2", + "@parcel/logger": "2.6.2", + "@parcel/types": "2.6.2", + "@parcel/utils": "2.6.2", + "chrome-trace-event": "^1.0.2", + "nullthrows": "^1.1.1" + } + }, "gatsby-core-utils": { "version": "3.18.1", "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.18.1.tgz", @@ -1574,6 +1765,62 @@ "resolve-from": "^5.0.0", "tmp": "^0.2.1", "xdg-basedir": "^4.0.0" + }, + "dependencies": { + "@lmdb/lmdb-darwin-arm64": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-arm64/-/lmdb-darwin-arm64-2.5.3.tgz", + "integrity": "sha512-RXwGZ/0eCqtCY8FLTM/koR60w+MXyvBUpToXiIyjOcBnC81tAlTUHrRUavCEWPI9zc9VgvpK3+cbumPyR8BSuA==", + "optional": true + }, + "@lmdb/lmdb-darwin-x64": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-x64/-/lmdb-darwin-x64-2.5.3.tgz", + "integrity": "sha512-337dNzh5yCdNCTk8kPfoU7jR3otibSlPDGW0vKZT97rKnQMb9tNdto3RtWoGPsQ8hKmlRZpojOJtmwjncq1MoA==", + "optional": true + }, + "@lmdb/lmdb-linux-arm": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm/-/lmdb-linux-arm-2.5.3.tgz", + "integrity": "sha512-mU2HFJDGwECkoD9dHQEfeTG5mp8hNS2BCfwoiOpVPMeapjYpQz9Uw3FkUjRZ4dGHWKbin40oWHuL0bk2bCx+Sg==", + "optional": true + }, + "@lmdb/lmdb-linux-arm64": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm64/-/lmdb-linux-arm64-2.5.3.tgz", + "integrity": "sha512-VJw60Mdgb4n+L0fO1PqfB0C7TyEQolJAC8qpqvG3JoQwvyOv6LH7Ib/WE3wxEW9nuHmVz9jkK7lk5HfWWgoO1Q==", + "optional": true + }, + "@lmdb/lmdb-linux-x64": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-x64/-/lmdb-linux-x64-2.5.3.tgz", + "integrity": "sha512-qaReO5aV8griBDsBr8uBF/faO3ieGjY1RY4p8JvTL6Mu1ylLrTVvOONqKFlNaCwrmUjWw5jnf7VafxDAeQHTow==", + "optional": true + }, + "@lmdb/lmdb-win32-x64": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-win32-x64/-/lmdb-win32-x64-2.5.3.tgz", + "integrity": "sha512-cK+Elf3RjEzrm3SerAhrFWL5oQAsZSJ/LmjL1joIpTfEP1etJJ9CTRvdaV6XLYAxaEkfdhk/9hOvHLbR9yIhCA==", + "optional": true + }, + "lmdb": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/lmdb/-/lmdb-2.5.3.tgz", + "integrity": "sha512-iBA0cb13CobBSoGJLfZgnrykLlfJipDAnvtf+YwIqqzBEsTeQYsXrHaSBkaHd5wCWeabwrNvhjZoFMUrlo+eLw==", + "requires": { + "@lmdb/lmdb-darwin-arm64": "2.5.3", + "@lmdb/lmdb-darwin-x64": "2.5.3", + "@lmdb/lmdb-linux-arm": "2.5.3", + "@lmdb/lmdb-linux-arm64": "2.5.3", + "@lmdb/lmdb-linux-x64": "2.5.3", + "@lmdb/lmdb-win32-x64": "2.5.3", + "msgpackr": "^1.5.4", + "node-addon-api": "^4.3.0", + "node-gyp-build-optional-packages": "5.0.3", + "ordered-binary": "^1.2.4", + "weak-lru-cache": "^1.2.2" + } + } } }, "got": { @@ -1595,16 +1842,16 @@ } }, "lmdb": { - "version": "2.5.3", - "resolved": "https://registry.npmjs.org/lmdb/-/lmdb-2.5.3.tgz", - "integrity": "sha512-iBA0cb13CobBSoGJLfZgnrykLlfJipDAnvtf+YwIqqzBEsTeQYsXrHaSBkaHd5wCWeabwrNvhjZoFMUrlo+eLw==", - "requires": { - "@lmdb/lmdb-darwin-arm64": "2.5.3", - "@lmdb/lmdb-darwin-x64": "2.5.3", - "@lmdb/lmdb-linux-arm": "2.5.3", - "@lmdb/lmdb-linux-arm64": "2.5.3", - "@lmdb/lmdb-linux-x64": "2.5.3", - "@lmdb/lmdb-win32-x64": "2.5.3", + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/lmdb/-/lmdb-2.5.2.tgz", + "integrity": "sha512-V5V5Xa2Hp9i2XsbDALkBTeHXnBXh/lEmk9p22zdr7jtuOIY9TGhjK6vAvTpOOx9IKU4hJkRWZxn/HsvR1ELLtA==", + "requires": { + "@lmdb/lmdb-darwin-arm64": "2.5.2", + "@lmdb/lmdb-darwin-x64": "2.5.2", + "@lmdb/lmdb-linux-arm": "2.5.2", + "@lmdb/lmdb-linux-arm64": "2.5.2", + "@lmdb/lmdb-linux-x64": "2.5.2", + "@lmdb/lmdb-win32-x64": "2.5.2", "msgpackr": "^1.5.4", "node-addon-api": "^4.3.0", "node-gyp-build-optional-packages": "5.0.3", @@ -1621,6 +1868,11 @@ "version": "5.0.3", "resolved": "https://registry.npmjs.org/node-gyp-build-optional-packages/-/node-gyp-build-optional-packages-5.0.3.tgz", "integrity": "sha512-k75jcVzk5wnnc/FMxsf4udAoTEUv2jY3ycfdSd3yWu6Cnd1oee6/CfZJApyscA4FJOmdoixWwiwOyf16RzD5JA==" + }, + "semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==" } } }, @@ -3716,9 +3968,9 @@ } }, "@types/estree": { - "version": "0.0.52", - "resolved": "https://registry.npmjs.org/@types/estree/-/estree-0.0.52.tgz", - "integrity": "sha512-BZWrtCU0bMVAIliIV+HJO1f1PR41M7NKjfxrFJwwhKI1KwhwOxYw1SXg9ao+CIMt774nFuGiG6eU+udtbEI9oQ==" + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.0.tgz", + "integrity": "sha512-WulqXMDUTYAXCjZnk6JtIHPigp55cVtDgDrO2gHRwhyJto21+1zbVCtOYB2L1F9w4qCQ0rOGWBnBe0FNTiEJIQ==" }, "@types/get-port": { "version": "3.2.0", @@ -4041,9 +4293,12 @@ } }, "@vercel/webpack-asset-relocator-loader": { - "version": "1.7.2", - "resolved": "https://registry.npmjs.org/@vercel/webpack-asset-relocator-loader/-/webpack-asset-relocator-loader-1.7.2.tgz", - "integrity": "sha512-pdMwUawmAtH/LScbjKJq/y2+gZFggFMc2tlJrlPSrgKajvYPEis3L9QKcMyC9RN1Xos4ezAP5AJfRCNN6RMKCQ==" + "version": "1.7.3", + "resolved": "https://registry.npmjs.org/@vercel/webpack-asset-relocator-loader/-/webpack-asset-relocator-loader-1.7.3.tgz", + "integrity": "sha512-vizrI18v8Lcb1PmNNUBz7yxPxxXoOeuaVEjTG9MjvDrphjiSxFZrRJ5tIghk+qdLFRCXI5HBCshgobftbmrC5g==", + "requires": { + "resolve": "^1.10.0" + } }, "@webassemblyjs/ast": { "version": "1.11.1", @@ -4511,32 +4766,32 @@ }, "dependencies": { "browserslist": { - "version": "4.21.1", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.1.tgz", - "integrity": "sha512-Nq8MFCSrnJXSc88yliwlzQe3qNe3VntIjhsArW9IJOEPSHNx23FalwApUVbzAWABLhYJJ7y8AynWI/XM8OdfjQ==", + "version": "4.21.2", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.2.tgz", + "integrity": "sha512-MonuOgAtUB46uP5CezYbRaYKBNt2LxP0yX+Pmj4LkcDFGkn9Cbpi83d9sCjwQDErXsIJSzY5oKGDbgOlF/LPAA==", "requires": { - "caniuse-lite": "^1.0.30001359", - "electron-to-chromium": "^1.4.172", - "node-releases": "^2.0.5", + "caniuse-lite": "^1.0.30001366", + "electron-to-chromium": "^1.4.188", + "node-releases": "^2.0.6", "update-browserslist-db": "^1.0.4" } }, "caniuse-lite": { - "version": "1.0.30001365", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001365.tgz", - "integrity": "sha512-VDQZ8OtpuIPMBA4YYvZXECtXbddMCUFJk1qu8Mqxfm/SZJNSr1cy4IuLCOL7RJ/YASrvJcYg1Zh+UEUQ5m6z8Q==" + "version": "1.0.30001366", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001366.tgz", + "integrity": "sha512-yy7XLWCubDobokgzudpkKux8e0UOOnLHE6mlNJBzT3lZJz6s5atSEzjoL+fsCPkI0G8MP5uVdDx1ur/fXEWkZA==" }, "electron-to-chromium": { - "version": "1.4.186", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.186.tgz", - "integrity": "sha512-YoVeFrGd/7ROjz4R9uPoND1K/hSRC/xADy9639ZmIZeJSaBnKdYx3I6LMPsY7CXLpK7JFgKQVzeZ/dk2br6Eaw==" + "version": "1.4.188", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.188.tgz", + "integrity": "sha512-Zpa1+E+BVmD/orkyz1Z2dAT1XNUuVAHB3GrogfyY66dXN0ZWSsygI8+u6QTDai1ZayLcATDJpcv2Z2AZjEcr1A==" } } }, "axe-core": { - "version": "4.4.2", - "resolved": "https://registry.npmjs.org/axe-core/-/axe-core-4.4.2.tgz", - "integrity": "sha512-LVAaGp/wkkgYJcjmHsoKx4juT1aQvJyPcW09MLCjVTh3V2cc6PnyempiLMNH5iMdfIX/zdbjUx2KDjMLCTdPeA==" + "version": "4.4.3", + "resolved": "https://registry.npmjs.org/axe-core/-/axe-core-4.4.3.tgz", + "integrity": "sha512-32+ub6kkdhhWick/UjvEwRchgoetXqTK14INLqbGm5U2TzBkBNF3nQtLYm8ovxSkQWArjEQvftCKryjZaATu3w==" }, "axios": { "version": "0.21.4", @@ -8101,9 +8356,9 @@ "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==" }, "gatsby": { - "version": "4.18.1", - "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-4.18.1.tgz", - "integrity": "sha512-frMFAWOmMl/CtqBZ3aZXlysicQQa8C+yfMdjnjx81f7E5xoL20klk1j4UYj1kUnGgBMSuVehU8M+bE0kT02zoQ==", + "version": "4.18.2", + "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-4.18.2.tgz", + "integrity": "sha512-ZWdo0TXsSRmwlmOeeuoWwXKQNteHm9VxJWF9Ud+c33r7ZXQgTA5WtRYjiBpjZuNAUwsiONNAe+wKK5jVY8B4LQ==", "requires": { "@babel/code-frame": "^7.14.0", "@babel/core": "^7.15.5", @@ -8189,7 +8444,7 @@ "gatsby-legacy-polyfills": "^2.18.0", "gatsby-link": "^4.18.1", "gatsby-page-utils": "^2.18.1", - "gatsby-parcel-config": "^0.9.1", + "gatsby-parcel-config": "^0.9.2", "gatsby-plugin-page-creator": "^4.18.1", "gatsby-plugin-typescript": "^4.18.1", "gatsby-plugin-utils": "^3.12.1", @@ -8716,11 +8971,11 @@ } }, "gatsby-parcel-config": { - "version": "0.9.1", - "resolved": "https://registry.npmjs.org/gatsby-parcel-config/-/gatsby-parcel-config-0.9.1.tgz", - "integrity": "sha512-ZtVntsQYs0xhy1hvWUMeSLc4a+DvxtTf+NUrPF4rvBjOW/LPMx2eYDzPddKvqWmiUaT1+Ki9S9bwCuOp5muawg==", + "version": "0.9.2", + "resolved": "https://registry.npmjs.org/gatsby-parcel-config/-/gatsby-parcel-config-0.9.2.tgz", + "integrity": "sha512-ONykPoYCoFs89M8Hio0TSrUQEpwXwbSiV8aCcPH9L6w3eros9RlWrwAwnWb+lPDNJT5BsereBjefoS9cC6mpVA==", "requires": { - "@gatsbyjs/parcel-namer-relative-to-cwd": "^1.3.1", + "@gatsbyjs/parcel-namer-relative-to-cwd": "^1.3.2", "@parcel/bundler-default": "2.6.0", "@parcel/compressor-raw": "2.6.0", "@parcel/namer-default": "2.6.0", @@ -12708,25 +12963,25 @@ }, "dependencies": { "browserslist": { - "version": "4.21.1", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.1.tgz", - "integrity": "sha512-Nq8MFCSrnJXSc88yliwlzQe3qNe3VntIjhsArW9IJOEPSHNx23FalwApUVbzAWABLhYJJ7y8AynWI/XM8OdfjQ==", + "version": "4.21.2", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.2.tgz", + "integrity": "sha512-MonuOgAtUB46uP5CezYbRaYKBNt2LxP0yX+Pmj4LkcDFGkn9Cbpi83d9sCjwQDErXsIJSzY5oKGDbgOlF/LPAA==", "requires": { - "caniuse-lite": "^1.0.30001359", - "electron-to-chromium": "^1.4.172", - "node-releases": "^2.0.5", + "caniuse-lite": "^1.0.30001366", + "electron-to-chromium": "^1.4.188", + "node-releases": "^2.0.6", "update-browserslist-db": "^1.0.4" } }, "caniuse-lite": { - "version": "1.0.30001365", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001365.tgz", - "integrity": "sha512-VDQZ8OtpuIPMBA4YYvZXECtXbddMCUFJk1qu8Mqxfm/SZJNSr1cy4IuLCOL7RJ/YASrvJcYg1Zh+UEUQ5m6z8Q==" + "version": "1.0.30001366", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001366.tgz", + "integrity": "sha512-yy7XLWCubDobokgzudpkKux8e0UOOnLHE6mlNJBzT3lZJz6s5atSEzjoL+fsCPkI0G8MP5uVdDx1ur/fXEWkZA==" }, "electron-to-chromium": { - "version": "1.4.186", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.186.tgz", - "integrity": "sha512-YoVeFrGd/7ROjz4R9uPoND1K/hSRC/xADy9639ZmIZeJSaBnKdYx3I6LMPsY7CXLpK7JFgKQVzeZ/dk2br6Eaw==" + "version": "1.4.188", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.188.tgz", + "integrity": "sha512-Zpa1+E+BVmD/orkyz1Z2dAT1XNUuVAHB3GrogfyY66dXN0ZWSsygI8+u6QTDai1ZayLcATDJpcv2Z2AZjEcr1A==" } } }, @@ -15128,9 +15383,9 @@ "integrity": "sha512-wK0Ri4fOGjv/XPy8SBHZChl8CM7uMc5VML7SqiQ0zG7+J5Vr+RMQDoHa2CNT6KHUnTGIXH34UDMkPzAUyapBZg==" }, "terser": { - "version": "5.14.1", - "resolved": "https://registry.npmjs.org/terser/-/terser-5.14.1.tgz", - "integrity": "sha512-+ahUAE+iheqBTDxXhTisdA8hgvbEG1hHOQ9xmNjeUJSoi6DU/gMrKNcfZjHkyY6Alnuyc+ikYJaxxfHkT3+WuQ==", + "version": "5.14.2", + "resolved": "https://registry.npmjs.org/terser/-/terser-5.14.2.tgz", + "integrity": "sha512-oL0rGeM/WFQCUd0y2QrWxYnq7tfSuKBiqTjRPWrRgB46WD/kiwHwF8T23z78H6Q6kGCuuHcPB+KULHRdxvVGQA==", "requires": { "@jridgewell/source-map": "^0.3.2", "acorn": "^8.5.0", diff --git a/starters/gatsby-starter-blog-theme-core/package.json b/starters/gatsby-starter-blog-theme-core/package.json index 2021fbe7cf3b4..9f0a623046ff4 100644 --- a/starters/gatsby-starter-blog-theme-core/package.json +++ b/starters/gatsby-starter-blog-theme-core/package.json @@ -11,7 +11,7 @@ "license": "0BSD", "dependencies": { "@mdx-js/react": "^1.6.22", - "gatsby": "^4.18.1", + "gatsby": "^4.18.2", "gatsby-theme-blog-core": "^4.0.0", "react": "^18.1.0", "react-dom": "^18.1.0" diff --git a/starters/gatsby-starter-blog-theme/package-lock.json b/starters/gatsby-starter-blog-theme/package-lock.json index d1cc6e0842689..c92f5408b13fc 100644 --- a/starters/gatsby-starter-blog-theme/package-lock.json +++ b/starters/gatsby-starter-blog-theme/package-lock.json @@ -1711,15 +1711,206 @@ } }, "@gatsbyjs/parcel-namer-relative-to-cwd": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/@gatsbyjs/parcel-namer-relative-to-cwd/-/parcel-namer-relative-to-cwd-1.3.1.tgz", - "integrity": "sha512-wN4iU1CWumvhcuzMBKdDikZ5xgo81Ias09bKyjE36DgNxTzAhT2fXZIBAAEUlv/GBQqFe6Eas83gGGtXf31hiw==", + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/@gatsbyjs/parcel-namer-relative-to-cwd/-/parcel-namer-relative-to-cwd-1.3.2.tgz", + "integrity": "sha512-jiYGiq8Zk21x2IIWbsLQ0GqgGJyKjj+/4jYwr5msD5ORB/JAZLk4IDrMKZ9rFXkNPq/bRV57ub0k/NvRMELfLQ==", "requires": { "@babel/runtime": "^7.18.0", + "@parcel/namer-default": "2.6.2", "@parcel/plugin": "2.6.0", "gatsby-core-utils": "^3.18.1" }, "dependencies": { + "@lmdb/lmdb-darwin-arm64": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-arm64/-/lmdb-darwin-arm64-2.5.2.tgz", + "integrity": "sha512-+F8ioQIUN68B4UFiIBYu0QQvgb9FmlKw2ctQMSBfW2QBrZIxz9vD9jCGqTCPqZBRbPHAS/vG1zSXnKqnS2ch/A==", + "optional": true + }, + "@lmdb/lmdb-darwin-x64": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-x64/-/lmdb-darwin-x64-2.5.2.tgz", + "integrity": "sha512-KvPH56KRLLx4KSfKBx0m1r7GGGUMXm0jrKmNE7plbHlesZMuPJICtn07HYgQhj1LNsK7Yqwuvnqh1QxhJnF1EA==", + "optional": true + }, + "@lmdb/lmdb-linux-arm": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm/-/lmdb-linux-arm-2.5.2.tgz", + "integrity": "sha512-5kQAP21hAkfW5Bl+e0P57dV4dGYnkNIpR7f/GAh6QHlgXx+vp/teVj4PGRZaKAvt0GX6++N6hF8NnGElLDuIDw==", + "optional": true + }, + "@lmdb/lmdb-linux-arm64": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm64/-/lmdb-linux-arm64-2.5.2.tgz", + "integrity": "sha512-aLl89VHL/wjhievEOlPocoefUyWdvzVrcQ/MHQYZm2JfV1jUsrbr/ZfkPPUFvZBf+VSE+Q0clWs9l29PCX1hTQ==", + "optional": true + }, + "@lmdb/lmdb-linux-x64": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-x64/-/lmdb-linux-x64-2.5.2.tgz", + "integrity": "sha512-xUdUfwDJLGjOUPH3BuPBt0NlIrR7f/QHKgu3GZIXswMMIihAekj2i97oI0iWG5Bok/b+OBjHPfa8IU9velnP/Q==", + "optional": true + }, + "@lmdb/lmdb-win32-x64": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-win32-x64/-/lmdb-win32-x64-2.5.2.tgz", + "integrity": "sha512-zrBczSbXKxEyK2ijtbRdICDygRqWSRPpZMN5dD1T8VMEW5RIhIbwFWw2phDRXuBQdVDpSjalCIUMWMV2h3JaZA==", + "optional": true + }, + "@parcel/cache": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/cache/-/cache-2.6.2.tgz", + "integrity": "sha512-hhJ6AsEGybeQZd9c/GYqfcKTgZKQXu3Xih6TlnP3gdR3KZoJOnb40ovHD1yYg4COvfcXThKP1cVJ18J6rcv3IA==", + "requires": { + "@parcel/fs": "2.6.2", + "@parcel/logger": "2.6.2", + "@parcel/utils": "2.6.2", + "lmdb": "2.5.2" + } + }, + "@parcel/codeframe": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/codeframe/-/codeframe-2.6.2.tgz", + "integrity": "sha512-oFlHr6HCaYYsB4SHkU+gn9DKtbzvv3/4NdwMX0/6NAKyYVI7inEsXyPGw2Bbd2ZCFatW9QJZUETF0etvh5AEfQ==", + "requires": { + "chalk": "^4.1.0" + } + }, + "@parcel/diagnostic": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/diagnostic/-/diagnostic-2.6.2.tgz", + "integrity": "sha512-3ODSBkKVihENU763z1/1DhGAWFhYWRxOCOShC72KXp+GFnSgGiBsxclu8NBa/N948Rzp8lqQI8U1nLcKkh0O/w==", + "requires": { + "@mischnic/json-sourcemap": "^0.1.0", + "nullthrows": "^1.1.1" + } + }, + "@parcel/events": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/events/-/events-2.6.2.tgz", + "integrity": "sha512-IaCjOeA5ercdFVi1EZOmUHhGfIysmCUgc2Th9hMugSFO0I3GzRsBcAdP6XPfWm+TV6sQ/qZRfdk/drUxoAupnw==" + }, + "@parcel/fs": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/fs/-/fs-2.6.2.tgz", + "integrity": "sha512-mIhqdF3tjgeoIGqW7Nc/xfM2ClID7o8livwUe5lpQEP+ZaIBiMigXs6ckv3WToCACK+3uylrSD2A/HmlhrxMqQ==", + "requires": { + "@parcel/fs-search": "2.6.2", + "@parcel/types": "2.6.2", + "@parcel/utils": "2.6.2", + "@parcel/watcher": "^2.0.0", + "@parcel/workers": "2.6.2" + } + }, + "@parcel/fs-search": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/fs-search/-/fs-search-2.6.2.tgz", + "integrity": "sha512-4STid1zqtGnmGjHD/2TG2g/zPDiCTtE3IAS24QYH3eiUAz2uoKGgEqd2tZbZ2yI96jtCuIhC1bzVu8Hbykls7w==", + "requires": { + "detect-libc": "^1.0.3" + } + }, + "@parcel/hash": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/hash/-/hash-2.6.2.tgz", + "integrity": "sha512-tFB+cJU1Wqag6WyJgsmx3nx+xhmjcNZqtWh/MtK1lHNnZdDRk6bjr7SapnygBwruz+SmSt5bbdVThcpk2dRCcA==", + "requires": { + "detect-libc": "^1.0.3", + "xxhash-wasm": "^0.4.2" + } + }, + "@parcel/logger": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/logger/-/logger-2.6.2.tgz", + "integrity": "sha512-Sz5YGCj1DbEiX0/G8Uw97LLZ0uEK+qtWcRAkHNpJpeMiSqDiRNevxXltz42EcLo+oCh4d4wyiVzwi9mNwzhS/Q==", + "requires": { + "@parcel/diagnostic": "2.6.2", + "@parcel/events": "2.6.2" + } + }, + "@parcel/markdown-ansi": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/markdown-ansi/-/markdown-ansi-2.6.2.tgz", + "integrity": "sha512-N/h9J4eibhc+B+krzvPMzFUWL37GudBIZBa7XSLkcuH6MnYYfh6rrMvhIyyESwk6VkcZNVzAeZrGQqxEs0dHDQ==", + "requires": { + "chalk": "^4.1.0" + } + }, + "@parcel/namer-default": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/namer-default/-/namer-default-2.6.2.tgz", + "integrity": "sha512-mp7bx/BQaIuohmZP0uE+gAmDBzzH0Yu8F4yCtE611lc6i0mou+nWRhzyKLNC/ieuI8DB3BFh2QQKeTxJn4W0qg==", + "requires": { + "@parcel/diagnostic": "2.6.2", + "@parcel/plugin": "2.6.2", + "nullthrows": "^1.1.1" + }, + "dependencies": { + "@parcel/plugin": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/plugin/-/plugin-2.6.2.tgz", + "integrity": "sha512-wbbWsM23Pr+8xtLSvf+UopXdVYlpKCCx6PuuZaZcKo+9IcDCWoGXD4M8Kkz14qBmkFn5uM00mULUqmVdSibB2w==", + "requires": { + "@parcel/types": "2.6.2" + } + } + } + }, + "@parcel/package-manager": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/package-manager/-/package-manager-2.6.2.tgz", + "integrity": "sha512-xGMqTgnwTE3rgzYwUZMKxR8fzmP5iSYz/gj2H8FR3pEmwh/8xCMtNjTSth+hPVGuqgRZ6JxwpfdY/fXdZ61ViQ==", + "requires": { + "@parcel/diagnostic": "2.6.2", + "@parcel/fs": "2.6.2", + "@parcel/logger": "2.6.2", + "@parcel/types": "2.6.2", + "@parcel/utils": "2.6.2", + "@parcel/workers": "2.6.2", + "semver": "^5.7.1" + } + }, + "@parcel/types": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/types/-/types-2.6.2.tgz", + "integrity": "sha512-MV8BFpCIs2jMUvK2RHqzkoiuOQ//JIbrD1zocA2YRW3zuPL/iABvbAABJoXpoPCKikVWOoCWASgBfWQo26VvJQ==", + "requires": { + "@parcel/cache": "2.6.2", + "@parcel/diagnostic": "2.6.2", + "@parcel/fs": "2.6.2", + "@parcel/package-manager": "2.6.2", + "@parcel/source-map": "^2.0.0", + "@parcel/workers": "2.6.2", + "utility-types": "^3.10.0" + } + }, + "@parcel/utils": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/utils/-/utils-2.6.2.tgz", + "integrity": "sha512-Ug7hpRxjgbY5AopW55nY7MmGMVmwmN+ihfCmxJkBUoESTG/3iq8uME7GjyOgW5DkQc2K7q62i8y8N0wCJT1u4Q==", + "requires": { + "@parcel/codeframe": "2.6.2", + "@parcel/diagnostic": "2.6.2", + "@parcel/hash": "2.6.2", + "@parcel/logger": "2.6.2", + "@parcel/markdown-ansi": "2.6.2", + "@parcel/source-map": "^2.0.0", + "chalk": "^4.1.0" + } + }, + "@parcel/workers": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/workers/-/workers-2.6.2.tgz", + "integrity": "sha512-wBgUjJQm+lDd12fPRUmk09+ujTA9DgwPdqylSFK0OtI/yT6A+2kArUqjp8IwWo2tCJXoMzXBne2XQIWKqMiN4Q==", + "requires": { + "@parcel/diagnostic": "2.6.2", + "@parcel/logger": "2.6.2", + "@parcel/types": "2.6.2", + "@parcel/utils": "2.6.2", + "chrome-trace-event": "^1.0.2", + "nullthrows": "^1.1.1" + } + }, "gatsby-core-utils": { "version": "3.18.1", "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.18.1.tgz", @@ -1740,6 +1931,62 @@ "resolve-from": "^5.0.0", "tmp": "^0.2.1", "xdg-basedir": "^4.0.0" + }, + "dependencies": { + "@lmdb/lmdb-darwin-arm64": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-arm64/-/lmdb-darwin-arm64-2.5.3.tgz", + "integrity": "sha512-RXwGZ/0eCqtCY8FLTM/koR60w+MXyvBUpToXiIyjOcBnC81tAlTUHrRUavCEWPI9zc9VgvpK3+cbumPyR8BSuA==", + "optional": true + }, + "@lmdb/lmdb-darwin-x64": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-x64/-/lmdb-darwin-x64-2.5.3.tgz", + "integrity": "sha512-337dNzh5yCdNCTk8kPfoU7jR3otibSlPDGW0vKZT97rKnQMb9tNdto3RtWoGPsQ8hKmlRZpojOJtmwjncq1MoA==", + "optional": true + }, + "@lmdb/lmdb-linux-arm": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm/-/lmdb-linux-arm-2.5.3.tgz", + "integrity": "sha512-mU2HFJDGwECkoD9dHQEfeTG5mp8hNS2BCfwoiOpVPMeapjYpQz9Uw3FkUjRZ4dGHWKbin40oWHuL0bk2bCx+Sg==", + "optional": true + }, + "@lmdb/lmdb-linux-arm64": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm64/-/lmdb-linux-arm64-2.5.3.tgz", + "integrity": "sha512-VJw60Mdgb4n+L0fO1PqfB0C7TyEQolJAC8qpqvG3JoQwvyOv6LH7Ib/WE3wxEW9nuHmVz9jkK7lk5HfWWgoO1Q==", + "optional": true + }, + "@lmdb/lmdb-linux-x64": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-x64/-/lmdb-linux-x64-2.5.3.tgz", + "integrity": "sha512-qaReO5aV8griBDsBr8uBF/faO3ieGjY1RY4p8JvTL6Mu1ylLrTVvOONqKFlNaCwrmUjWw5jnf7VafxDAeQHTow==", + "optional": true + }, + "@lmdb/lmdb-win32-x64": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-win32-x64/-/lmdb-win32-x64-2.5.3.tgz", + "integrity": "sha512-cK+Elf3RjEzrm3SerAhrFWL5oQAsZSJ/LmjL1joIpTfEP1etJJ9CTRvdaV6XLYAxaEkfdhk/9hOvHLbR9yIhCA==", + "optional": true + }, + "lmdb": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/lmdb/-/lmdb-2.5.3.tgz", + "integrity": "sha512-iBA0cb13CobBSoGJLfZgnrykLlfJipDAnvtf+YwIqqzBEsTeQYsXrHaSBkaHd5wCWeabwrNvhjZoFMUrlo+eLw==", + "requires": { + "@lmdb/lmdb-darwin-arm64": "2.5.3", + "@lmdb/lmdb-darwin-x64": "2.5.3", + "@lmdb/lmdb-linux-arm": "2.5.3", + "@lmdb/lmdb-linux-arm64": "2.5.3", + "@lmdb/lmdb-linux-x64": "2.5.3", + "@lmdb/lmdb-win32-x64": "2.5.3", + "msgpackr": "^1.5.4", + "node-addon-api": "^4.3.0", + "node-gyp-build-optional-packages": "5.0.3", + "ordered-binary": "^1.2.4", + "weak-lru-cache": "^1.2.2" + } + } } }, "got": { @@ -1761,16 +2008,16 @@ } }, "lmdb": { - "version": "2.5.3", - "resolved": "https://registry.npmjs.org/lmdb/-/lmdb-2.5.3.tgz", - "integrity": "sha512-iBA0cb13CobBSoGJLfZgnrykLlfJipDAnvtf+YwIqqzBEsTeQYsXrHaSBkaHd5wCWeabwrNvhjZoFMUrlo+eLw==", - "requires": { - "@lmdb/lmdb-darwin-arm64": "2.5.3", - "@lmdb/lmdb-darwin-x64": "2.5.3", - "@lmdb/lmdb-linux-arm": "2.5.3", - "@lmdb/lmdb-linux-arm64": "2.5.3", - "@lmdb/lmdb-linux-x64": "2.5.3", - "@lmdb/lmdb-win32-x64": "2.5.3", + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/lmdb/-/lmdb-2.5.2.tgz", + "integrity": "sha512-V5V5Xa2Hp9i2XsbDALkBTeHXnBXh/lEmk9p22zdr7jtuOIY9TGhjK6vAvTpOOx9IKU4hJkRWZxn/HsvR1ELLtA==", + "requires": { + "@lmdb/lmdb-darwin-arm64": "2.5.2", + "@lmdb/lmdb-darwin-x64": "2.5.2", + "@lmdb/lmdb-linux-arm": "2.5.2", + "@lmdb/lmdb-linux-arm64": "2.5.2", + "@lmdb/lmdb-linux-x64": "2.5.2", + "@lmdb/lmdb-win32-x64": "2.5.2", "msgpackr": "^1.5.4", "node-addon-api": "^4.3.0", "node-gyp-build-optional-packages": "5.0.3", @@ -1792,6 +2039,11 @@ "version": "5.0.0", "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==" + }, + "semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==" } } }, @@ -4088,9 +4340,9 @@ } }, "@types/estree": { - "version": "0.0.52", - "resolved": "https://registry.npmjs.org/@types/estree/-/estree-0.0.52.tgz", - "integrity": "sha512-BZWrtCU0bMVAIliIV+HJO1f1PR41M7NKjfxrFJwwhKI1KwhwOxYw1SXg9ao+CIMt774nFuGiG6eU+udtbEI9oQ==" + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.0.tgz", + "integrity": "sha512-WulqXMDUTYAXCjZnk6JtIHPigp55cVtDgDrO2gHRwhyJto21+1zbVCtOYB2L1F9w4qCQ0rOGWBnBe0FNTiEJIQ==" }, "@types/get-port": { "version": "3.2.0", @@ -4421,9 +4673,12 @@ } }, "@vercel/webpack-asset-relocator-loader": { - "version": "1.7.2", - "resolved": "https://registry.npmjs.org/@vercel/webpack-asset-relocator-loader/-/webpack-asset-relocator-loader-1.7.2.tgz", - "integrity": "sha512-pdMwUawmAtH/LScbjKJq/y2+gZFggFMc2tlJrlPSrgKajvYPEis3L9QKcMyC9RN1Xos4ezAP5AJfRCNN6RMKCQ==" + "version": "1.7.3", + "resolved": "https://registry.npmjs.org/@vercel/webpack-asset-relocator-loader/-/webpack-asset-relocator-loader-1.7.3.tgz", + "integrity": "sha512-vizrI18v8Lcb1PmNNUBz7yxPxxXoOeuaVEjTG9MjvDrphjiSxFZrRJ5tIghk+qdLFRCXI5HBCshgobftbmrC5g==", + "requires": { + "resolve": "^1.10.0" + } }, "@webassemblyjs/ast": { "version": "1.11.1", @@ -4891,32 +5146,32 @@ }, "dependencies": { "browserslist": { - "version": "4.21.1", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.1.tgz", - "integrity": "sha512-Nq8MFCSrnJXSc88yliwlzQe3qNe3VntIjhsArW9IJOEPSHNx23FalwApUVbzAWABLhYJJ7y8AynWI/XM8OdfjQ==", + "version": "4.21.2", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.2.tgz", + "integrity": "sha512-MonuOgAtUB46uP5CezYbRaYKBNt2LxP0yX+Pmj4LkcDFGkn9Cbpi83d9sCjwQDErXsIJSzY5oKGDbgOlF/LPAA==", "requires": { - "caniuse-lite": "^1.0.30001359", - "electron-to-chromium": "^1.4.172", - "node-releases": "^2.0.5", + "caniuse-lite": "^1.0.30001366", + "electron-to-chromium": "^1.4.188", + "node-releases": "^2.0.6", "update-browserslist-db": "^1.0.4" } }, "caniuse-lite": { - "version": "1.0.30001365", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001365.tgz", - "integrity": "sha512-VDQZ8OtpuIPMBA4YYvZXECtXbddMCUFJk1qu8Mqxfm/SZJNSr1cy4IuLCOL7RJ/YASrvJcYg1Zh+UEUQ5m6z8Q==" + "version": "1.0.30001366", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001366.tgz", + "integrity": "sha512-yy7XLWCubDobokgzudpkKux8e0UOOnLHE6mlNJBzT3lZJz6s5atSEzjoL+fsCPkI0G8MP5uVdDx1ur/fXEWkZA==" }, "electron-to-chromium": { - "version": "1.4.186", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.186.tgz", - "integrity": "sha512-YoVeFrGd/7ROjz4R9uPoND1K/hSRC/xADy9639ZmIZeJSaBnKdYx3I6LMPsY7CXLpK7JFgKQVzeZ/dk2br6Eaw==" + "version": "1.4.188", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.188.tgz", + "integrity": "sha512-Zpa1+E+BVmD/orkyz1Z2dAT1XNUuVAHB3GrogfyY66dXN0ZWSsygI8+u6QTDai1ZayLcATDJpcv2Z2AZjEcr1A==" } } }, "axe-core": { - "version": "4.4.2", - "resolved": "https://registry.npmjs.org/axe-core/-/axe-core-4.4.2.tgz", - "integrity": "sha512-LVAaGp/wkkgYJcjmHsoKx4juT1aQvJyPcW09MLCjVTh3V2cc6PnyempiLMNH5iMdfIX/zdbjUx2KDjMLCTdPeA==" + "version": "4.4.3", + "resolved": "https://registry.npmjs.org/axe-core/-/axe-core-4.4.3.tgz", + "integrity": "sha512-32+ub6kkdhhWick/UjvEwRchgoetXqTK14INLqbGm5U2TzBkBNF3nQtLYm8ovxSkQWArjEQvftCKryjZaATu3w==" }, "axios": { "version": "0.21.4", @@ -8496,9 +8751,9 @@ "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==" }, "gatsby": { - "version": "4.18.1", - "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-4.18.1.tgz", - "integrity": "sha512-frMFAWOmMl/CtqBZ3aZXlysicQQa8C+yfMdjnjx81f7E5xoL20klk1j4UYj1kUnGgBMSuVehU8M+bE0kT02zoQ==", + "version": "4.18.2", + "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-4.18.2.tgz", + "integrity": "sha512-ZWdo0TXsSRmwlmOeeuoWwXKQNteHm9VxJWF9Ud+c33r7ZXQgTA5WtRYjiBpjZuNAUwsiONNAe+wKK5jVY8B4LQ==", "requires": { "@babel/code-frame": "^7.14.0", "@babel/core": "^7.15.5", @@ -8584,7 +8839,7 @@ "gatsby-legacy-polyfills": "^2.18.0", "gatsby-link": "^4.18.1", "gatsby-page-utils": "^2.18.1", - "gatsby-parcel-config": "^0.9.1", + "gatsby-parcel-config": "^0.9.2", "gatsby-plugin-page-creator": "^4.18.1", "gatsby-plugin-typescript": "^4.18.1", "gatsby-plugin-utils": "^3.12.1", @@ -9126,11 +9381,11 @@ } }, "gatsby-parcel-config": { - "version": "0.9.1", - "resolved": "https://registry.npmjs.org/gatsby-parcel-config/-/gatsby-parcel-config-0.9.1.tgz", - "integrity": "sha512-ZtVntsQYs0xhy1hvWUMeSLc4a+DvxtTf+NUrPF4rvBjOW/LPMx2eYDzPddKvqWmiUaT1+Ki9S9bwCuOp5muawg==", + "version": "0.9.2", + "resolved": "https://registry.npmjs.org/gatsby-parcel-config/-/gatsby-parcel-config-0.9.2.tgz", + "integrity": "sha512-ONykPoYCoFs89M8Hio0TSrUQEpwXwbSiV8aCcPH9L6w3eros9RlWrwAwnWb+lPDNJT5BsereBjefoS9cC6mpVA==", "requires": { - "@gatsbyjs/parcel-namer-relative-to-cwd": "^1.3.1", + "@gatsbyjs/parcel-namer-relative-to-cwd": "^1.3.2", "@parcel/bundler-default": "2.6.0", "@parcel/compressor-raw": "2.6.0", "@parcel/namer-default": "2.6.0", @@ -13241,25 +13496,25 @@ }, "dependencies": { "browserslist": { - "version": "4.21.1", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.1.tgz", - "integrity": "sha512-Nq8MFCSrnJXSc88yliwlzQe3qNe3VntIjhsArW9IJOEPSHNx23FalwApUVbzAWABLhYJJ7y8AynWI/XM8OdfjQ==", + "version": "4.21.2", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.2.tgz", + "integrity": "sha512-MonuOgAtUB46uP5CezYbRaYKBNt2LxP0yX+Pmj4LkcDFGkn9Cbpi83d9sCjwQDErXsIJSzY5oKGDbgOlF/LPAA==", "requires": { - "caniuse-lite": "^1.0.30001359", - "electron-to-chromium": "^1.4.172", - "node-releases": "^2.0.5", + "caniuse-lite": "^1.0.30001366", + "electron-to-chromium": "^1.4.188", + "node-releases": "^2.0.6", "update-browserslist-db": "^1.0.4" } }, "caniuse-lite": { - "version": "1.0.30001365", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001365.tgz", - "integrity": "sha512-VDQZ8OtpuIPMBA4YYvZXECtXbddMCUFJk1qu8Mqxfm/SZJNSr1cy4IuLCOL7RJ/YASrvJcYg1Zh+UEUQ5m6z8Q==" + "version": "1.0.30001366", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001366.tgz", + "integrity": "sha512-yy7XLWCubDobokgzudpkKux8e0UOOnLHE6mlNJBzT3lZJz6s5atSEzjoL+fsCPkI0G8MP5uVdDx1ur/fXEWkZA==" }, "electron-to-chromium": { - "version": "1.4.186", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.186.tgz", - "integrity": "sha512-YoVeFrGd/7ROjz4R9uPoND1K/hSRC/xADy9639ZmIZeJSaBnKdYx3I6LMPsY7CXLpK7JFgKQVzeZ/dk2br6Eaw==" + "version": "1.4.188", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.188.tgz", + "integrity": "sha512-Zpa1+E+BVmD/orkyz1Z2dAT1XNUuVAHB3GrogfyY66dXN0ZWSsygI8+u6QTDai1ZayLcATDJpcv2Z2AZjEcr1A==" } } }, @@ -15907,9 +16162,9 @@ "integrity": "sha512-wK0Ri4fOGjv/XPy8SBHZChl8CM7uMc5VML7SqiQ0zG7+J5Vr+RMQDoHa2CNT6KHUnTGIXH34UDMkPzAUyapBZg==" }, "terser": { - "version": "5.14.1", - "resolved": "https://registry.npmjs.org/terser/-/terser-5.14.1.tgz", - "integrity": "sha512-+ahUAE+iheqBTDxXhTisdA8hgvbEG1hHOQ9xmNjeUJSoi6DU/gMrKNcfZjHkyY6Alnuyc+ikYJaxxfHkT3+WuQ==", + "version": "5.14.2", + "resolved": "https://registry.npmjs.org/terser/-/terser-5.14.2.tgz", + "integrity": "sha512-oL0rGeM/WFQCUd0y2QrWxYnq7tfSuKBiqTjRPWrRgB46WD/kiwHwF8T23z78H6Q6kGCuuHcPB+KULHRdxvVGQA==", "requires": { "@jridgewell/source-map": "^0.3.2", "acorn": "^8.5.0", diff --git a/starters/gatsby-starter-blog-theme/package.json b/starters/gatsby-starter-blog-theme/package.json index cc6622ee46d5a..7107e4b33ace5 100644 --- a/starters/gatsby-starter-blog-theme/package.json +++ b/starters/gatsby-starter-blog-theme/package.json @@ -13,7 +13,7 @@ "@emotion/react": "^11.9.3", "@emotion/styled": "^11.9.3", "@mdx-js/react": "^1.6.22", - "gatsby": "^4.18.1", + "gatsby": "^4.18.2", "gatsby-theme-blog": "^4.0.0", "react": "^18.1.0", "react-dom": "^18.1.0", diff --git a/starters/gatsby-starter-minimal-ts/package-lock.json b/starters/gatsby-starter-minimal-ts/package-lock.json index 8a05e3b620909..f7520b4f9b205 100644 --- a/starters/gatsby-starter-minimal-ts/package-lock.json +++ b/starters/gatsby-starter-minimal-ts/package-lock.json @@ -1317,13 +1317,239 @@ } }, "@gatsbyjs/parcel-namer-relative-to-cwd": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/@gatsbyjs/parcel-namer-relative-to-cwd/-/parcel-namer-relative-to-cwd-1.3.1.tgz", - "integrity": "sha512-wN4iU1CWumvhcuzMBKdDikZ5xgo81Ias09bKyjE36DgNxTzAhT2fXZIBAAEUlv/GBQqFe6Eas83gGGtXf31hiw==", + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/@gatsbyjs/parcel-namer-relative-to-cwd/-/parcel-namer-relative-to-cwd-1.3.2.tgz", + "integrity": "sha512-jiYGiq8Zk21x2IIWbsLQ0GqgGJyKjj+/4jYwr5msD5ORB/JAZLk4IDrMKZ9rFXkNPq/bRV57ub0k/NvRMELfLQ==", "requires": { "@babel/runtime": "^7.18.0", + "@parcel/namer-default": "2.6.2", "@parcel/plugin": "2.6.0", "gatsby-core-utils": "^3.18.1" + }, + "dependencies": { + "@lmdb/lmdb-darwin-arm64": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-arm64/-/lmdb-darwin-arm64-2.5.2.tgz", + "integrity": "sha512-+F8ioQIUN68B4UFiIBYu0QQvgb9FmlKw2ctQMSBfW2QBrZIxz9vD9jCGqTCPqZBRbPHAS/vG1zSXnKqnS2ch/A==", + "optional": true + }, + "@lmdb/lmdb-darwin-x64": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-x64/-/lmdb-darwin-x64-2.5.2.tgz", + "integrity": "sha512-KvPH56KRLLx4KSfKBx0m1r7GGGUMXm0jrKmNE7plbHlesZMuPJICtn07HYgQhj1LNsK7Yqwuvnqh1QxhJnF1EA==", + "optional": true + }, + "@lmdb/lmdb-linux-arm": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm/-/lmdb-linux-arm-2.5.2.tgz", + "integrity": "sha512-5kQAP21hAkfW5Bl+e0P57dV4dGYnkNIpR7f/GAh6QHlgXx+vp/teVj4PGRZaKAvt0GX6++N6hF8NnGElLDuIDw==", + "optional": true + }, + "@lmdb/lmdb-linux-arm64": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm64/-/lmdb-linux-arm64-2.5.2.tgz", + "integrity": "sha512-aLl89VHL/wjhievEOlPocoefUyWdvzVrcQ/MHQYZm2JfV1jUsrbr/ZfkPPUFvZBf+VSE+Q0clWs9l29PCX1hTQ==", + "optional": true + }, + "@lmdb/lmdb-linux-x64": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-x64/-/lmdb-linux-x64-2.5.2.tgz", + "integrity": "sha512-xUdUfwDJLGjOUPH3BuPBt0NlIrR7f/QHKgu3GZIXswMMIihAekj2i97oI0iWG5Bok/b+OBjHPfa8IU9velnP/Q==", + "optional": true + }, + "@lmdb/lmdb-win32-x64": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-win32-x64/-/lmdb-win32-x64-2.5.2.tgz", + "integrity": "sha512-zrBczSbXKxEyK2ijtbRdICDygRqWSRPpZMN5dD1T8VMEW5RIhIbwFWw2phDRXuBQdVDpSjalCIUMWMV2h3JaZA==", + "optional": true + }, + "@parcel/cache": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/cache/-/cache-2.6.2.tgz", + "integrity": "sha512-hhJ6AsEGybeQZd9c/GYqfcKTgZKQXu3Xih6TlnP3gdR3KZoJOnb40ovHD1yYg4COvfcXThKP1cVJ18J6rcv3IA==", + "requires": { + "@parcel/fs": "2.6.2", + "@parcel/logger": "2.6.2", + "@parcel/utils": "2.6.2", + "lmdb": "2.5.2" + } + }, + "@parcel/codeframe": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/codeframe/-/codeframe-2.6.2.tgz", + "integrity": "sha512-oFlHr6HCaYYsB4SHkU+gn9DKtbzvv3/4NdwMX0/6NAKyYVI7inEsXyPGw2Bbd2ZCFatW9QJZUETF0etvh5AEfQ==", + "requires": { + "chalk": "^4.1.0" + } + }, + "@parcel/diagnostic": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/diagnostic/-/diagnostic-2.6.2.tgz", + "integrity": "sha512-3ODSBkKVihENU763z1/1DhGAWFhYWRxOCOShC72KXp+GFnSgGiBsxclu8NBa/N948Rzp8lqQI8U1nLcKkh0O/w==", + "requires": { + "@mischnic/json-sourcemap": "^0.1.0", + "nullthrows": "^1.1.1" + } + }, + "@parcel/events": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/events/-/events-2.6.2.tgz", + "integrity": "sha512-IaCjOeA5ercdFVi1EZOmUHhGfIysmCUgc2Th9hMugSFO0I3GzRsBcAdP6XPfWm+TV6sQ/qZRfdk/drUxoAupnw==" + }, + "@parcel/fs": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/fs/-/fs-2.6.2.tgz", + "integrity": "sha512-mIhqdF3tjgeoIGqW7Nc/xfM2ClID7o8livwUe5lpQEP+ZaIBiMigXs6ckv3WToCACK+3uylrSD2A/HmlhrxMqQ==", + "requires": { + "@parcel/fs-search": "2.6.2", + "@parcel/types": "2.6.2", + "@parcel/utils": "2.6.2", + "@parcel/watcher": "^2.0.0", + "@parcel/workers": "2.6.2" + } + }, + "@parcel/fs-search": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/fs-search/-/fs-search-2.6.2.tgz", + "integrity": "sha512-4STid1zqtGnmGjHD/2TG2g/zPDiCTtE3IAS24QYH3eiUAz2uoKGgEqd2tZbZ2yI96jtCuIhC1bzVu8Hbykls7w==", + "requires": { + "detect-libc": "^1.0.3" + } + }, + "@parcel/hash": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/hash/-/hash-2.6.2.tgz", + "integrity": "sha512-tFB+cJU1Wqag6WyJgsmx3nx+xhmjcNZqtWh/MtK1lHNnZdDRk6bjr7SapnygBwruz+SmSt5bbdVThcpk2dRCcA==", + "requires": { + "detect-libc": "^1.0.3", + "xxhash-wasm": "^0.4.2" + } + }, + "@parcel/logger": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/logger/-/logger-2.6.2.tgz", + "integrity": "sha512-Sz5YGCj1DbEiX0/G8Uw97LLZ0uEK+qtWcRAkHNpJpeMiSqDiRNevxXltz42EcLo+oCh4d4wyiVzwi9mNwzhS/Q==", + "requires": { + "@parcel/diagnostic": "2.6.2", + "@parcel/events": "2.6.2" + } + }, + "@parcel/markdown-ansi": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/markdown-ansi/-/markdown-ansi-2.6.2.tgz", + "integrity": "sha512-N/h9J4eibhc+B+krzvPMzFUWL37GudBIZBa7XSLkcuH6MnYYfh6rrMvhIyyESwk6VkcZNVzAeZrGQqxEs0dHDQ==", + "requires": { + "chalk": "^4.1.0" + } + }, + "@parcel/namer-default": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/namer-default/-/namer-default-2.6.2.tgz", + "integrity": "sha512-mp7bx/BQaIuohmZP0uE+gAmDBzzH0Yu8F4yCtE611lc6i0mou+nWRhzyKLNC/ieuI8DB3BFh2QQKeTxJn4W0qg==", + "requires": { + "@parcel/diagnostic": "2.6.2", + "@parcel/plugin": "2.6.2", + "nullthrows": "^1.1.1" + }, + "dependencies": { + "@parcel/plugin": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/plugin/-/plugin-2.6.2.tgz", + "integrity": "sha512-wbbWsM23Pr+8xtLSvf+UopXdVYlpKCCx6PuuZaZcKo+9IcDCWoGXD4M8Kkz14qBmkFn5uM00mULUqmVdSibB2w==", + "requires": { + "@parcel/types": "2.6.2" + } + } + } + }, + "@parcel/package-manager": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/package-manager/-/package-manager-2.6.2.tgz", + "integrity": "sha512-xGMqTgnwTE3rgzYwUZMKxR8fzmP5iSYz/gj2H8FR3pEmwh/8xCMtNjTSth+hPVGuqgRZ6JxwpfdY/fXdZ61ViQ==", + "requires": { + "@parcel/diagnostic": "2.6.2", + "@parcel/fs": "2.6.2", + "@parcel/logger": "2.6.2", + "@parcel/types": "2.6.2", + "@parcel/utils": "2.6.2", + "@parcel/workers": "2.6.2", + "semver": "^5.7.1" + } + }, + "@parcel/types": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/types/-/types-2.6.2.tgz", + "integrity": "sha512-MV8BFpCIs2jMUvK2RHqzkoiuOQ//JIbrD1zocA2YRW3zuPL/iABvbAABJoXpoPCKikVWOoCWASgBfWQo26VvJQ==", + "requires": { + "@parcel/cache": "2.6.2", + "@parcel/diagnostic": "2.6.2", + "@parcel/fs": "2.6.2", + "@parcel/package-manager": "2.6.2", + "@parcel/source-map": "^2.0.0", + "@parcel/workers": "2.6.2", + "utility-types": "^3.10.0" + } + }, + "@parcel/utils": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/utils/-/utils-2.6.2.tgz", + "integrity": "sha512-Ug7hpRxjgbY5AopW55nY7MmGMVmwmN+ihfCmxJkBUoESTG/3iq8uME7GjyOgW5DkQc2K7q62i8y8N0wCJT1u4Q==", + "requires": { + "@parcel/codeframe": "2.6.2", + "@parcel/diagnostic": "2.6.2", + "@parcel/hash": "2.6.2", + "@parcel/logger": "2.6.2", + "@parcel/markdown-ansi": "2.6.2", + "@parcel/source-map": "^2.0.0", + "chalk": "^4.1.0" + } + }, + "@parcel/workers": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/workers/-/workers-2.6.2.tgz", + "integrity": "sha512-wBgUjJQm+lDd12fPRUmk09+ujTA9DgwPdqylSFK0OtI/yT6A+2kArUqjp8IwWo2tCJXoMzXBne2XQIWKqMiN4Q==", + "requires": { + "@parcel/diagnostic": "2.6.2", + "@parcel/logger": "2.6.2", + "@parcel/types": "2.6.2", + "@parcel/utils": "2.6.2", + "chrome-trace-event": "^1.0.2", + "nullthrows": "^1.1.1" + } + }, + "lmdb": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/lmdb/-/lmdb-2.5.2.tgz", + "integrity": "sha512-V5V5Xa2Hp9i2XsbDALkBTeHXnBXh/lEmk9p22zdr7jtuOIY9TGhjK6vAvTpOOx9IKU4hJkRWZxn/HsvR1ELLtA==", + "requires": { + "@lmdb/lmdb-darwin-arm64": "2.5.2", + "@lmdb/lmdb-darwin-x64": "2.5.2", + "@lmdb/lmdb-linux-arm": "2.5.2", + "@lmdb/lmdb-linux-arm64": "2.5.2", + "@lmdb/lmdb-linux-x64": "2.5.2", + "@lmdb/lmdb-win32-x64": "2.5.2", + "msgpackr": "^1.5.4", + "node-addon-api": "^4.3.0", + "node-gyp-build-optional-packages": "5.0.3", + "ordered-binary": "^1.2.4", + "weak-lru-cache": "^1.2.2" + } + }, + "node-addon-api": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-4.3.0.tgz", + "integrity": "sha512-73sE9+3UaLYYFmDsFZnqCInzPyh3MqIwZO9cw58yIqAZhONrrabrYyYe3TuIqtIiOuTXVhsGau8hcrhhwSsDIQ==" + }, + "node-gyp-build-optional-packages": { + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/node-gyp-build-optional-packages/-/node-gyp-build-optional-packages-5.0.3.tgz", + "integrity": "sha512-k75jcVzk5wnnc/FMxsf4udAoTEUv2jY3ycfdSd3yWu6Cnd1oee6/CfZJApyscA4FJOmdoixWwiwOyf16RzD5JA==" + }, + "semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==" + } } }, "@gatsbyjs/potrace": { @@ -2951,9 +3177,9 @@ } }, "@types/estree": { - "version": "0.0.52", - "resolved": "https://registry.npmjs.org/@types/estree/-/estree-0.0.52.tgz", - "integrity": "sha512-BZWrtCU0bMVAIliIV+HJO1f1PR41M7NKjfxrFJwwhKI1KwhwOxYw1SXg9ao+CIMt774nFuGiG6eU+udtbEI9oQ==" + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.0.tgz", + "integrity": "sha512-WulqXMDUTYAXCjZnk6JtIHPigp55cVtDgDrO2gHRwhyJto21+1zbVCtOYB2L1F9w4qCQ0rOGWBnBe0FNTiEJIQ==" }, "@types/get-port": { "version": "3.2.0", @@ -3241,9 +3467,12 @@ } }, "@vercel/webpack-asset-relocator-loader": { - "version": "1.7.2", - "resolved": "https://registry.npmjs.org/@vercel/webpack-asset-relocator-loader/-/webpack-asset-relocator-loader-1.7.2.tgz", - "integrity": "sha512-pdMwUawmAtH/LScbjKJq/y2+gZFggFMc2tlJrlPSrgKajvYPEis3L9QKcMyC9RN1Xos4ezAP5AJfRCNN6RMKCQ==" + "version": "1.7.3", + "resolved": "https://registry.npmjs.org/@vercel/webpack-asset-relocator-loader/-/webpack-asset-relocator-loader-1.7.3.tgz", + "integrity": "sha512-vizrI18v8Lcb1PmNNUBz7yxPxxXoOeuaVEjTG9MjvDrphjiSxFZrRJ5tIghk+qdLFRCXI5HBCshgobftbmrC5g==", + "requires": { + "resolve": "^1.10.0" + } }, "@webassemblyjs/ast": { "version": "1.11.1", @@ -3663,9 +3892,9 @@ } }, "axe-core": { - "version": "4.4.2", - "resolved": "https://registry.npmjs.org/axe-core/-/axe-core-4.4.2.tgz", - "integrity": "sha512-LVAaGp/wkkgYJcjmHsoKx4juT1aQvJyPcW09MLCjVTh3V2cc6PnyempiLMNH5iMdfIX/zdbjUx2KDjMLCTdPeA==" + "version": "4.4.3", + "resolved": "https://registry.npmjs.org/axe-core/-/axe-core-4.4.3.tgz", + "integrity": "sha512-32+ub6kkdhhWick/UjvEwRchgoetXqTK14INLqbGm5U2TzBkBNF3nQtLYm8ovxSkQWArjEQvftCKryjZaATu3w==" }, "axios": { "version": "0.21.4", @@ -4016,13 +4245,13 @@ } }, "browserslist": { - "version": "4.21.1", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.1.tgz", - "integrity": "sha512-Nq8MFCSrnJXSc88yliwlzQe3qNe3VntIjhsArW9IJOEPSHNx23FalwApUVbzAWABLhYJJ7y8AynWI/XM8OdfjQ==", + "version": "4.21.2", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.2.tgz", + "integrity": "sha512-MonuOgAtUB46uP5CezYbRaYKBNt2LxP0yX+Pmj4LkcDFGkn9Cbpi83d9sCjwQDErXsIJSzY5oKGDbgOlF/LPAA==", "requires": { - "caniuse-lite": "^1.0.30001359", - "electron-to-chromium": "^1.4.172", - "node-releases": "^2.0.5", + "caniuse-lite": "^1.0.30001366", + "electron-to-chromium": "^1.4.188", + "node-releases": "^2.0.6", "update-browserslist-db": "^1.0.4" } }, @@ -4170,9 +4399,9 @@ } }, "caniuse-lite": { - "version": "1.0.30001365", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001365.tgz", - "integrity": "sha512-VDQZ8OtpuIPMBA4YYvZXECtXbddMCUFJk1qu8Mqxfm/SZJNSr1cy4IuLCOL7RJ/YASrvJcYg1Zh+UEUQ5m6z8Q==" + "version": "1.0.30001366", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001366.tgz", + "integrity": "sha512-yy7XLWCubDobokgzudpkKux8e0UOOnLHE6mlNJBzT3lZJz6s5atSEzjoL+fsCPkI0G8MP5uVdDx1ur/fXEWkZA==" }, "capital-case": { "version": "1.0.4", @@ -5279,9 +5508,9 @@ "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==" }, "electron-to-chromium": { - "version": "1.4.186", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.186.tgz", - "integrity": "sha512-YoVeFrGd/7ROjz4R9uPoND1K/hSRC/xADy9639ZmIZeJSaBnKdYx3I6LMPsY7CXLpK7JFgKQVzeZ/dk2br6Eaw==" + "version": "1.4.188", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.188.tgz", + "integrity": "sha512-Zpa1+E+BVmD/orkyz1Z2dAT1XNUuVAHB3GrogfyY66dXN0ZWSsygI8+u6QTDai1ZayLcATDJpcv2Z2AZjEcr1A==" }, "emoji-regex": { "version": "8.0.0", @@ -6627,9 +6856,9 @@ "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==" }, "gatsby": { - "version": "4.18.1", - "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-4.18.1.tgz", - "integrity": "sha512-frMFAWOmMl/CtqBZ3aZXlysicQQa8C+yfMdjnjx81f7E5xoL20klk1j4UYj1kUnGgBMSuVehU8M+bE0kT02zoQ==", + "version": "4.18.2", + "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-4.18.2.tgz", + "integrity": "sha512-ZWdo0TXsSRmwlmOeeuoWwXKQNteHm9VxJWF9Ud+c33r7ZXQgTA5WtRYjiBpjZuNAUwsiONNAe+wKK5jVY8B4LQ==", "requires": { "@babel/code-frame": "^7.14.0", "@babel/core": "^7.15.5", @@ -6715,7 +6944,7 @@ "gatsby-legacy-polyfills": "^2.18.0", "gatsby-link": "^4.18.1", "gatsby-page-utils": "^2.18.1", - "gatsby-parcel-config": "^0.9.1", + "gatsby-parcel-config": "^0.9.2", "gatsby-plugin-page-creator": "^4.18.1", "gatsby-plugin-typescript": "^4.18.1", "gatsby-plugin-utils": "^3.12.1", @@ -6930,11 +7159,11 @@ } }, "gatsby-parcel-config": { - "version": "0.9.1", - "resolved": "https://registry.npmjs.org/gatsby-parcel-config/-/gatsby-parcel-config-0.9.1.tgz", - "integrity": "sha512-ZtVntsQYs0xhy1hvWUMeSLc4a+DvxtTf+NUrPF4rvBjOW/LPMx2eYDzPddKvqWmiUaT1+Ki9S9bwCuOp5muawg==", + "version": "0.9.2", + "resolved": "https://registry.npmjs.org/gatsby-parcel-config/-/gatsby-parcel-config-0.9.2.tgz", + "integrity": "sha512-ONykPoYCoFs89M8Hio0TSrUQEpwXwbSiV8aCcPH9L6w3eros9RlWrwAwnWb+lPDNJT5BsereBjefoS9cC6mpVA==", "requires": { - "@gatsbyjs/parcel-namer-relative-to-cwd": "^1.3.1", + "@gatsbyjs/parcel-namer-relative-to-cwd": "^1.3.2", "@parcel/bundler-default": "2.6.0", "@parcel/compressor-raw": "2.6.0", "@parcel/namer-default": "2.6.0", @@ -11393,9 +11622,9 @@ "integrity": "sha512-wK0Ri4fOGjv/XPy8SBHZChl8CM7uMc5VML7SqiQ0zG7+J5Vr+RMQDoHa2CNT6KHUnTGIXH34UDMkPzAUyapBZg==" }, "terser": { - "version": "5.14.1", - "resolved": "https://registry.npmjs.org/terser/-/terser-5.14.1.tgz", - "integrity": "sha512-+ahUAE+iheqBTDxXhTisdA8hgvbEG1hHOQ9xmNjeUJSoi6DU/gMrKNcfZjHkyY6Alnuyc+ikYJaxxfHkT3+WuQ==", + "version": "5.14.2", + "resolved": "https://registry.npmjs.org/terser/-/terser-5.14.2.tgz", + "integrity": "sha512-oL0rGeM/WFQCUd0y2QrWxYnq7tfSuKBiqTjRPWrRgB46WD/kiwHwF8T23z78H6Q6kGCuuHcPB+KULHRdxvVGQA==", "requires": { "@jridgewell/source-map": "^0.3.2", "acorn": "^8.5.0", diff --git a/starters/gatsby-starter-minimal-ts/package.json b/starters/gatsby-starter-minimal-ts/package.json index 5122f3f2cc224..b22a7c972d46d 100644 --- a/starters/gatsby-starter-minimal-ts/package.json +++ b/starters/gatsby-starter-minimal-ts/package.json @@ -17,7 +17,7 @@ }, "license": "0BSD", "dependencies": { - "gatsby": "^4.18.1", + "gatsby": "^4.18.2", "react": "^18.1.0", "react-dom": "^18.1.0" }, diff --git a/starters/gatsby-starter-minimal/package-lock.json b/starters/gatsby-starter-minimal/package-lock.json index 244499ddf8300..5f5d9376ae4d4 100644 --- a/starters/gatsby-starter-minimal/package-lock.json +++ b/starters/gatsby-starter-minimal/package-lock.json @@ -1317,13 +1317,239 @@ } }, "@gatsbyjs/parcel-namer-relative-to-cwd": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/@gatsbyjs/parcel-namer-relative-to-cwd/-/parcel-namer-relative-to-cwd-1.3.1.tgz", - "integrity": "sha512-wN4iU1CWumvhcuzMBKdDikZ5xgo81Ias09bKyjE36DgNxTzAhT2fXZIBAAEUlv/GBQqFe6Eas83gGGtXf31hiw==", + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/@gatsbyjs/parcel-namer-relative-to-cwd/-/parcel-namer-relative-to-cwd-1.3.2.tgz", + "integrity": "sha512-jiYGiq8Zk21x2IIWbsLQ0GqgGJyKjj+/4jYwr5msD5ORB/JAZLk4IDrMKZ9rFXkNPq/bRV57ub0k/NvRMELfLQ==", "requires": { "@babel/runtime": "^7.18.0", + "@parcel/namer-default": "2.6.2", "@parcel/plugin": "2.6.0", "gatsby-core-utils": "^3.18.1" + }, + "dependencies": { + "@lmdb/lmdb-darwin-arm64": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-arm64/-/lmdb-darwin-arm64-2.5.2.tgz", + "integrity": "sha512-+F8ioQIUN68B4UFiIBYu0QQvgb9FmlKw2ctQMSBfW2QBrZIxz9vD9jCGqTCPqZBRbPHAS/vG1zSXnKqnS2ch/A==", + "optional": true + }, + "@lmdb/lmdb-darwin-x64": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-x64/-/lmdb-darwin-x64-2.5.2.tgz", + "integrity": "sha512-KvPH56KRLLx4KSfKBx0m1r7GGGUMXm0jrKmNE7plbHlesZMuPJICtn07HYgQhj1LNsK7Yqwuvnqh1QxhJnF1EA==", + "optional": true + }, + "@lmdb/lmdb-linux-arm": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm/-/lmdb-linux-arm-2.5.2.tgz", + "integrity": "sha512-5kQAP21hAkfW5Bl+e0P57dV4dGYnkNIpR7f/GAh6QHlgXx+vp/teVj4PGRZaKAvt0GX6++N6hF8NnGElLDuIDw==", + "optional": true + }, + "@lmdb/lmdb-linux-arm64": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm64/-/lmdb-linux-arm64-2.5.2.tgz", + "integrity": "sha512-aLl89VHL/wjhievEOlPocoefUyWdvzVrcQ/MHQYZm2JfV1jUsrbr/ZfkPPUFvZBf+VSE+Q0clWs9l29PCX1hTQ==", + "optional": true + }, + "@lmdb/lmdb-linux-x64": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-x64/-/lmdb-linux-x64-2.5.2.tgz", + "integrity": "sha512-xUdUfwDJLGjOUPH3BuPBt0NlIrR7f/QHKgu3GZIXswMMIihAekj2i97oI0iWG5Bok/b+OBjHPfa8IU9velnP/Q==", + "optional": true + }, + "@lmdb/lmdb-win32-x64": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-win32-x64/-/lmdb-win32-x64-2.5.2.tgz", + "integrity": "sha512-zrBczSbXKxEyK2ijtbRdICDygRqWSRPpZMN5dD1T8VMEW5RIhIbwFWw2phDRXuBQdVDpSjalCIUMWMV2h3JaZA==", + "optional": true + }, + "@parcel/cache": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/cache/-/cache-2.6.2.tgz", + "integrity": "sha512-hhJ6AsEGybeQZd9c/GYqfcKTgZKQXu3Xih6TlnP3gdR3KZoJOnb40ovHD1yYg4COvfcXThKP1cVJ18J6rcv3IA==", + "requires": { + "@parcel/fs": "2.6.2", + "@parcel/logger": "2.6.2", + "@parcel/utils": "2.6.2", + "lmdb": "2.5.2" + } + }, + "@parcel/codeframe": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/codeframe/-/codeframe-2.6.2.tgz", + "integrity": "sha512-oFlHr6HCaYYsB4SHkU+gn9DKtbzvv3/4NdwMX0/6NAKyYVI7inEsXyPGw2Bbd2ZCFatW9QJZUETF0etvh5AEfQ==", + "requires": { + "chalk": "^4.1.0" + } + }, + "@parcel/diagnostic": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/diagnostic/-/diagnostic-2.6.2.tgz", + "integrity": "sha512-3ODSBkKVihENU763z1/1DhGAWFhYWRxOCOShC72KXp+GFnSgGiBsxclu8NBa/N948Rzp8lqQI8U1nLcKkh0O/w==", + "requires": { + "@mischnic/json-sourcemap": "^0.1.0", + "nullthrows": "^1.1.1" + } + }, + "@parcel/events": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/events/-/events-2.6.2.tgz", + "integrity": "sha512-IaCjOeA5ercdFVi1EZOmUHhGfIysmCUgc2Th9hMugSFO0I3GzRsBcAdP6XPfWm+TV6sQ/qZRfdk/drUxoAupnw==" + }, + "@parcel/fs": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/fs/-/fs-2.6.2.tgz", + "integrity": "sha512-mIhqdF3tjgeoIGqW7Nc/xfM2ClID7o8livwUe5lpQEP+ZaIBiMigXs6ckv3WToCACK+3uylrSD2A/HmlhrxMqQ==", + "requires": { + "@parcel/fs-search": "2.6.2", + "@parcel/types": "2.6.2", + "@parcel/utils": "2.6.2", + "@parcel/watcher": "^2.0.0", + "@parcel/workers": "2.6.2" + } + }, + "@parcel/fs-search": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/fs-search/-/fs-search-2.6.2.tgz", + "integrity": "sha512-4STid1zqtGnmGjHD/2TG2g/zPDiCTtE3IAS24QYH3eiUAz2uoKGgEqd2tZbZ2yI96jtCuIhC1bzVu8Hbykls7w==", + "requires": { + "detect-libc": "^1.0.3" + } + }, + "@parcel/hash": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/hash/-/hash-2.6.2.tgz", + "integrity": "sha512-tFB+cJU1Wqag6WyJgsmx3nx+xhmjcNZqtWh/MtK1lHNnZdDRk6bjr7SapnygBwruz+SmSt5bbdVThcpk2dRCcA==", + "requires": { + "detect-libc": "^1.0.3", + "xxhash-wasm": "^0.4.2" + } + }, + "@parcel/logger": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/logger/-/logger-2.6.2.tgz", + "integrity": "sha512-Sz5YGCj1DbEiX0/G8Uw97LLZ0uEK+qtWcRAkHNpJpeMiSqDiRNevxXltz42EcLo+oCh4d4wyiVzwi9mNwzhS/Q==", + "requires": { + "@parcel/diagnostic": "2.6.2", + "@parcel/events": "2.6.2" + } + }, + "@parcel/markdown-ansi": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/markdown-ansi/-/markdown-ansi-2.6.2.tgz", + "integrity": "sha512-N/h9J4eibhc+B+krzvPMzFUWL37GudBIZBa7XSLkcuH6MnYYfh6rrMvhIyyESwk6VkcZNVzAeZrGQqxEs0dHDQ==", + "requires": { + "chalk": "^4.1.0" + } + }, + "@parcel/namer-default": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/namer-default/-/namer-default-2.6.2.tgz", + "integrity": "sha512-mp7bx/BQaIuohmZP0uE+gAmDBzzH0Yu8F4yCtE611lc6i0mou+nWRhzyKLNC/ieuI8DB3BFh2QQKeTxJn4W0qg==", + "requires": { + "@parcel/diagnostic": "2.6.2", + "@parcel/plugin": "2.6.2", + "nullthrows": "^1.1.1" + }, + "dependencies": { + "@parcel/plugin": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/plugin/-/plugin-2.6.2.tgz", + "integrity": "sha512-wbbWsM23Pr+8xtLSvf+UopXdVYlpKCCx6PuuZaZcKo+9IcDCWoGXD4M8Kkz14qBmkFn5uM00mULUqmVdSibB2w==", + "requires": { + "@parcel/types": "2.6.2" + } + } + } + }, + "@parcel/package-manager": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/package-manager/-/package-manager-2.6.2.tgz", + "integrity": "sha512-xGMqTgnwTE3rgzYwUZMKxR8fzmP5iSYz/gj2H8FR3pEmwh/8xCMtNjTSth+hPVGuqgRZ6JxwpfdY/fXdZ61ViQ==", + "requires": { + "@parcel/diagnostic": "2.6.2", + "@parcel/fs": "2.6.2", + "@parcel/logger": "2.6.2", + "@parcel/types": "2.6.2", + "@parcel/utils": "2.6.2", + "@parcel/workers": "2.6.2", + "semver": "^5.7.1" + } + }, + "@parcel/types": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/types/-/types-2.6.2.tgz", + "integrity": "sha512-MV8BFpCIs2jMUvK2RHqzkoiuOQ//JIbrD1zocA2YRW3zuPL/iABvbAABJoXpoPCKikVWOoCWASgBfWQo26VvJQ==", + "requires": { + "@parcel/cache": "2.6.2", + "@parcel/diagnostic": "2.6.2", + "@parcel/fs": "2.6.2", + "@parcel/package-manager": "2.6.2", + "@parcel/source-map": "^2.0.0", + "@parcel/workers": "2.6.2", + "utility-types": "^3.10.0" + } + }, + "@parcel/utils": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/utils/-/utils-2.6.2.tgz", + "integrity": "sha512-Ug7hpRxjgbY5AopW55nY7MmGMVmwmN+ihfCmxJkBUoESTG/3iq8uME7GjyOgW5DkQc2K7q62i8y8N0wCJT1u4Q==", + "requires": { + "@parcel/codeframe": "2.6.2", + "@parcel/diagnostic": "2.6.2", + "@parcel/hash": "2.6.2", + "@parcel/logger": "2.6.2", + "@parcel/markdown-ansi": "2.6.2", + "@parcel/source-map": "^2.0.0", + "chalk": "^4.1.0" + } + }, + "@parcel/workers": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/workers/-/workers-2.6.2.tgz", + "integrity": "sha512-wBgUjJQm+lDd12fPRUmk09+ujTA9DgwPdqylSFK0OtI/yT6A+2kArUqjp8IwWo2tCJXoMzXBne2XQIWKqMiN4Q==", + "requires": { + "@parcel/diagnostic": "2.6.2", + "@parcel/logger": "2.6.2", + "@parcel/types": "2.6.2", + "@parcel/utils": "2.6.2", + "chrome-trace-event": "^1.0.2", + "nullthrows": "^1.1.1" + } + }, + "lmdb": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/lmdb/-/lmdb-2.5.2.tgz", + "integrity": "sha512-V5V5Xa2Hp9i2XsbDALkBTeHXnBXh/lEmk9p22zdr7jtuOIY9TGhjK6vAvTpOOx9IKU4hJkRWZxn/HsvR1ELLtA==", + "requires": { + "@lmdb/lmdb-darwin-arm64": "2.5.2", + "@lmdb/lmdb-darwin-x64": "2.5.2", + "@lmdb/lmdb-linux-arm": "2.5.2", + "@lmdb/lmdb-linux-arm64": "2.5.2", + "@lmdb/lmdb-linux-x64": "2.5.2", + "@lmdb/lmdb-win32-x64": "2.5.2", + "msgpackr": "^1.5.4", + "node-addon-api": "^4.3.0", + "node-gyp-build-optional-packages": "5.0.3", + "ordered-binary": "^1.2.4", + "weak-lru-cache": "^1.2.2" + } + }, + "node-addon-api": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-4.3.0.tgz", + "integrity": "sha512-73sE9+3UaLYYFmDsFZnqCInzPyh3MqIwZO9cw58yIqAZhONrrabrYyYe3TuIqtIiOuTXVhsGau8hcrhhwSsDIQ==" + }, + "node-gyp-build-optional-packages": { + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/node-gyp-build-optional-packages/-/node-gyp-build-optional-packages-5.0.3.tgz", + "integrity": "sha512-k75jcVzk5wnnc/FMxsf4udAoTEUv2jY3ycfdSd3yWu6Cnd1oee6/CfZJApyscA4FJOmdoixWwiwOyf16RzD5JA==" + }, + "semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==" + } } }, "@gatsbyjs/potrace": { @@ -2951,9 +3177,9 @@ } }, "@types/estree": { - "version": "0.0.52", - "resolved": "https://registry.npmjs.org/@types/estree/-/estree-0.0.52.tgz", - "integrity": "sha512-BZWrtCU0bMVAIliIV+HJO1f1PR41M7NKjfxrFJwwhKI1KwhwOxYw1SXg9ao+CIMt774nFuGiG6eU+udtbEI9oQ==" + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.0.tgz", + "integrity": "sha512-WulqXMDUTYAXCjZnk6JtIHPigp55cVtDgDrO2gHRwhyJto21+1zbVCtOYB2L1F9w4qCQ0rOGWBnBe0FNTiEJIQ==" }, "@types/get-port": { "version": "3.2.0", @@ -3232,9 +3458,12 @@ } }, "@vercel/webpack-asset-relocator-loader": { - "version": "1.7.2", - "resolved": "https://registry.npmjs.org/@vercel/webpack-asset-relocator-loader/-/webpack-asset-relocator-loader-1.7.2.tgz", - "integrity": "sha512-pdMwUawmAtH/LScbjKJq/y2+gZFggFMc2tlJrlPSrgKajvYPEis3L9QKcMyC9RN1Xos4ezAP5AJfRCNN6RMKCQ==" + "version": "1.7.3", + "resolved": "https://registry.npmjs.org/@vercel/webpack-asset-relocator-loader/-/webpack-asset-relocator-loader-1.7.3.tgz", + "integrity": "sha512-vizrI18v8Lcb1PmNNUBz7yxPxxXoOeuaVEjTG9MjvDrphjiSxFZrRJ5tIghk+qdLFRCXI5HBCshgobftbmrC5g==", + "requires": { + "resolve": "^1.10.0" + } }, "@webassemblyjs/ast": { "version": "1.11.1", @@ -3654,9 +3883,9 @@ } }, "axe-core": { - "version": "4.4.2", - "resolved": "https://registry.npmjs.org/axe-core/-/axe-core-4.4.2.tgz", - "integrity": "sha512-LVAaGp/wkkgYJcjmHsoKx4juT1aQvJyPcW09MLCjVTh3V2cc6PnyempiLMNH5iMdfIX/zdbjUx2KDjMLCTdPeA==" + "version": "4.4.3", + "resolved": "https://registry.npmjs.org/axe-core/-/axe-core-4.4.3.tgz", + "integrity": "sha512-32+ub6kkdhhWick/UjvEwRchgoetXqTK14INLqbGm5U2TzBkBNF3nQtLYm8ovxSkQWArjEQvftCKryjZaATu3w==" }, "axios": { "version": "0.21.4", @@ -4007,13 +4236,13 @@ } }, "browserslist": { - "version": "4.21.1", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.1.tgz", - "integrity": "sha512-Nq8MFCSrnJXSc88yliwlzQe3qNe3VntIjhsArW9IJOEPSHNx23FalwApUVbzAWABLhYJJ7y8AynWI/XM8OdfjQ==", + "version": "4.21.2", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.2.tgz", + "integrity": "sha512-MonuOgAtUB46uP5CezYbRaYKBNt2LxP0yX+Pmj4LkcDFGkn9Cbpi83d9sCjwQDErXsIJSzY5oKGDbgOlF/LPAA==", "requires": { - "caniuse-lite": "^1.0.30001359", - "electron-to-chromium": "^1.4.172", - "node-releases": "^2.0.5", + "caniuse-lite": "^1.0.30001366", + "electron-to-chromium": "^1.4.188", + "node-releases": "^2.0.6", "update-browserslist-db": "^1.0.4" } }, @@ -4161,9 +4390,9 @@ } }, "caniuse-lite": { - "version": "1.0.30001365", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001365.tgz", - "integrity": "sha512-VDQZ8OtpuIPMBA4YYvZXECtXbddMCUFJk1qu8Mqxfm/SZJNSr1cy4IuLCOL7RJ/YASrvJcYg1Zh+UEUQ5m6z8Q==" + "version": "1.0.30001366", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001366.tgz", + "integrity": "sha512-yy7XLWCubDobokgzudpkKux8e0UOOnLHE6mlNJBzT3lZJz6s5atSEzjoL+fsCPkI0G8MP5uVdDx1ur/fXEWkZA==" }, "capital-case": { "version": "1.0.4", @@ -5270,9 +5499,9 @@ "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==" }, "electron-to-chromium": { - "version": "1.4.186", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.186.tgz", - "integrity": "sha512-YoVeFrGd/7ROjz4R9uPoND1K/hSRC/xADy9639ZmIZeJSaBnKdYx3I6LMPsY7CXLpK7JFgKQVzeZ/dk2br6Eaw==" + "version": "1.4.188", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.188.tgz", + "integrity": "sha512-Zpa1+E+BVmD/orkyz1Z2dAT1XNUuVAHB3GrogfyY66dXN0ZWSsygI8+u6QTDai1ZayLcATDJpcv2Z2AZjEcr1A==" }, "emoji-regex": { "version": "8.0.0", @@ -6618,9 +6847,9 @@ "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==" }, "gatsby": { - "version": "4.18.1", - "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-4.18.1.tgz", - "integrity": "sha512-frMFAWOmMl/CtqBZ3aZXlysicQQa8C+yfMdjnjx81f7E5xoL20klk1j4UYj1kUnGgBMSuVehU8M+bE0kT02zoQ==", + "version": "4.18.2", + "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-4.18.2.tgz", + "integrity": "sha512-ZWdo0TXsSRmwlmOeeuoWwXKQNteHm9VxJWF9Ud+c33r7ZXQgTA5WtRYjiBpjZuNAUwsiONNAe+wKK5jVY8B4LQ==", "requires": { "@babel/code-frame": "^7.14.0", "@babel/core": "^7.15.5", @@ -6706,7 +6935,7 @@ "gatsby-legacy-polyfills": "^2.18.0", "gatsby-link": "^4.18.1", "gatsby-page-utils": "^2.18.1", - "gatsby-parcel-config": "^0.9.1", + "gatsby-parcel-config": "^0.9.2", "gatsby-plugin-page-creator": "^4.18.1", "gatsby-plugin-typescript": "^4.18.1", "gatsby-plugin-utils": "^3.12.1", @@ -6921,11 +7150,11 @@ } }, "gatsby-parcel-config": { - "version": "0.9.1", - "resolved": "https://registry.npmjs.org/gatsby-parcel-config/-/gatsby-parcel-config-0.9.1.tgz", - "integrity": "sha512-ZtVntsQYs0xhy1hvWUMeSLc4a+DvxtTf+NUrPF4rvBjOW/LPMx2eYDzPddKvqWmiUaT1+Ki9S9bwCuOp5muawg==", + "version": "0.9.2", + "resolved": "https://registry.npmjs.org/gatsby-parcel-config/-/gatsby-parcel-config-0.9.2.tgz", + "integrity": "sha512-ONykPoYCoFs89M8Hio0TSrUQEpwXwbSiV8aCcPH9L6w3eros9RlWrwAwnWb+lPDNJT5BsereBjefoS9cC6mpVA==", "requires": { - "@gatsbyjs/parcel-namer-relative-to-cwd": "^1.3.1", + "@gatsbyjs/parcel-namer-relative-to-cwd": "^1.3.2", "@parcel/bundler-default": "2.6.0", "@parcel/compressor-raw": "2.6.0", "@parcel/namer-default": "2.6.0", @@ -11384,9 +11613,9 @@ "integrity": "sha512-wK0Ri4fOGjv/XPy8SBHZChl8CM7uMc5VML7SqiQ0zG7+J5Vr+RMQDoHa2CNT6KHUnTGIXH34UDMkPzAUyapBZg==" }, "terser": { - "version": "5.14.1", - "resolved": "https://registry.npmjs.org/terser/-/terser-5.14.1.tgz", - "integrity": "sha512-+ahUAE+iheqBTDxXhTisdA8hgvbEG1hHOQ9xmNjeUJSoi6DU/gMrKNcfZjHkyY6Alnuyc+ikYJaxxfHkT3+WuQ==", + "version": "5.14.2", + "resolved": "https://registry.npmjs.org/terser/-/terser-5.14.2.tgz", + "integrity": "sha512-oL0rGeM/WFQCUd0y2QrWxYnq7tfSuKBiqTjRPWrRgB46WD/kiwHwF8T23z78H6Q6kGCuuHcPB+KULHRdxvVGQA==", "requires": { "@jridgewell/source-map": "^0.3.2", "acorn": "^8.5.0", diff --git a/starters/gatsby-starter-minimal/package.json b/starters/gatsby-starter-minimal/package.json index 8e0e98f0382d9..ebd2175dcce81 100644 --- a/starters/gatsby-starter-minimal/package.json +++ b/starters/gatsby-starter-minimal/package.json @@ -16,7 +16,7 @@ }, "license": "0BSD", "dependencies": { - "gatsby": "^4.18.1", + "gatsby": "^4.18.2", "react": "^18.1.0", "react-dom": "^18.1.0" } diff --git a/starters/gatsby-starter-notes-theme/package-lock.json b/starters/gatsby-starter-notes-theme/package-lock.json index 459941552b8e3..dac2d5cdc410d 100644 --- a/starters/gatsby-starter-notes-theme/package-lock.json +++ b/starters/gatsby-starter-notes-theme/package-lock.json @@ -1687,11 +1687,12 @@ } }, "@gatsbyjs/parcel-namer-relative-to-cwd": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/@gatsbyjs/parcel-namer-relative-to-cwd/-/parcel-namer-relative-to-cwd-1.3.1.tgz", - "integrity": "sha512-wN4iU1CWumvhcuzMBKdDikZ5xgo81Ias09bKyjE36DgNxTzAhT2fXZIBAAEUlv/GBQqFe6Eas83gGGtXf31hiw==", + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/@gatsbyjs/parcel-namer-relative-to-cwd/-/parcel-namer-relative-to-cwd-1.3.2.tgz", + "integrity": "sha512-jiYGiq8Zk21x2IIWbsLQ0GqgGJyKjj+/4jYwr5msD5ORB/JAZLk4IDrMKZ9rFXkNPq/bRV57ub0k/NvRMELfLQ==", "requires": { "@babel/runtime": "^7.18.0", + "@parcel/namer-default": "2.6.2", "@parcel/plugin": "2.6.0", "gatsby-core-utils": "^3.18.1" }, @@ -1704,6 +1705,196 @@ "regenerator-runtime": "^0.13.4" } }, + "@lmdb/lmdb-darwin-arm64": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-arm64/-/lmdb-darwin-arm64-2.5.2.tgz", + "integrity": "sha512-+F8ioQIUN68B4UFiIBYu0QQvgb9FmlKw2ctQMSBfW2QBrZIxz9vD9jCGqTCPqZBRbPHAS/vG1zSXnKqnS2ch/A==", + "optional": true + }, + "@lmdb/lmdb-darwin-x64": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-x64/-/lmdb-darwin-x64-2.5.2.tgz", + "integrity": "sha512-KvPH56KRLLx4KSfKBx0m1r7GGGUMXm0jrKmNE7plbHlesZMuPJICtn07HYgQhj1LNsK7Yqwuvnqh1QxhJnF1EA==", + "optional": true + }, + "@lmdb/lmdb-linux-arm": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm/-/lmdb-linux-arm-2.5.2.tgz", + "integrity": "sha512-5kQAP21hAkfW5Bl+e0P57dV4dGYnkNIpR7f/GAh6QHlgXx+vp/teVj4PGRZaKAvt0GX6++N6hF8NnGElLDuIDw==", + "optional": true + }, + "@lmdb/lmdb-linux-arm64": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm64/-/lmdb-linux-arm64-2.5.2.tgz", + "integrity": "sha512-aLl89VHL/wjhievEOlPocoefUyWdvzVrcQ/MHQYZm2JfV1jUsrbr/ZfkPPUFvZBf+VSE+Q0clWs9l29PCX1hTQ==", + "optional": true + }, + "@lmdb/lmdb-linux-x64": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-x64/-/lmdb-linux-x64-2.5.2.tgz", + "integrity": "sha512-xUdUfwDJLGjOUPH3BuPBt0NlIrR7f/QHKgu3GZIXswMMIihAekj2i97oI0iWG5Bok/b+OBjHPfa8IU9velnP/Q==", + "optional": true + }, + "@lmdb/lmdb-win32-x64": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-win32-x64/-/lmdb-win32-x64-2.5.2.tgz", + "integrity": "sha512-zrBczSbXKxEyK2ijtbRdICDygRqWSRPpZMN5dD1T8VMEW5RIhIbwFWw2phDRXuBQdVDpSjalCIUMWMV2h3JaZA==", + "optional": true + }, + "@parcel/cache": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/cache/-/cache-2.6.2.tgz", + "integrity": "sha512-hhJ6AsEGybeQZd9c/GYqfcKTgZKQXu3Xih6TlnP3gdR3KZoJOnb40ovHD1yYg4COvfcXThKP1cVJ18J6rcv3IA==", + "requires": { + "@parcel/fs": "2.6.2", + "@parcel/logger": "2.6.2", + "@parcel/utils": "2.6.2", + "lmdb": "2.5.2" + } + }, + "@parcel/codeframe": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/codeframe/-/codeframe-2.6.2.tgz", + "integrity": "sha512-oFlHr6HCaYYsB4SHkU+gn9DKtbzvv3/4NdwMX0/6NAKyYVI7inEsXyPGw2Bbd2ZCFatW9QJZUETF0etvh5AEfQ==", + "requires": { + "chalk": "^4.1.0" + } + }, + "@parcel/diagnostic": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/diagnostic/-/diagnostic-2.6.2.tgz", + "integrity": "sha512-3ODSBkKVihENU763z1/1DhGAWFhYWRxOCOShC72KXp+GFnSgGiBsxclu8NBa/N948Rzp8lqQI8U1nLcKkh0O/w==", + "requires": { + "@mischnic/json-sourcemap": "^0.1.0", + "nullthrows": "^1.1.1" + } + }, + "@parcel/events": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/events/-/events-2.6.2.tgz", + "integrity": "sha512-IaCjOeA5ercdFVi1EZOmUHhGfIysmCUgc2Th9hMugSFO0I3GzRsBcAdP6XPfWm+TV6sQ/qZRfdk/drUxoAupnw==" + }, + "@parcel/fs": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/fs/-/fs-2.6.2.tgz", + "integrity": "sha512-mIhqdF3tjgeoIGqW7Nc/xfM2ClID7o8livwUe5lpQEP+ZaIBiMigXs6ckv3WToCACK+3uylrSD2A/HmlhrxMqQ==", + "requires": { + "@parcel/fs-search": "2.6.2", + "@parcel/types": "2.6.2", + "@parcel/utils": "2.6.2", + "@parcel/watcher": "^2.0.0", + "@parcel/workers": "2.6.2" + } + }, + "@parcel/fs-search": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/fs-search/-/fs-search-2.6.2.tgz", + "integrity": "sha512-4STid1zqtGnmGjHD/2TG2g/zPDiCTtE3IAS24QYH3eiUAz2uoKGgEqd2tZbZ2yI96jtCuIhC1bzVu8Hbykls7w==", + "requires": { + "detect-libc": "^1.0.3" + } + }, + "@parcel/hash": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/hash/-/hash-2.6.2.tgz", + "integrity": "sha512-tFB+cJU1Wqag6WyJgsmx3nx+xhmjcNZqtWh/MtK1lHNnZdDRk6bjr7SapnygBwruz+SmSt5bbdVThcpk2dRCcA==", + "requires": { + "detect-libc": "^1.0.3", + "xxhash-wasm": "^0.4.2" + } + }, + "@parcel/logger": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/logger/-/logger-2.6.2.tgz", + "integrity": "sha512-Sz5YGCj1DbEiX0/G8Uw97LLZ0uEK+qtWcRAkHNpJpeMiSqDiRNevxXltz42EcLo+oCh4d4wyiVzwi9mNwzhS/Q==", + "requires": { + "@parcel/diagnostic": "2.6.2", + "@parcel/events": "2.6.2" + } + }, + "@parcel/markdown-ansi": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/markdown-ansi/-/markdown-ansi-2.6.2.tgz", + "integrity": "sha512-N/h9J4eibhc+B+krzvPMzFUWL37GudBIZBa7XSLkcuH6MnYYfh6rrMvhIyyESwk6VkcZNVzAeZrGQqxEs0dHDQ==", + "requires": { + "chalk": "^4.1.0" + } + }, + "@parcel/namer-default": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/namer-default/-/namer-default-2.6.2.tgz", + "integrity": "sha512-mp7bx/BQaIuohmZP0uE+gAmDBzzH0Yu8F4yCtE611lc6i0mou+nWRhzyKLNC/ieuI8DB3BFh2QQKeTxJn4W0qg==", + "requires": { + "@parcel/diagnostic": "2.6.2", + "@parcel/plugin": "2.6.2", + "nullthrows": "^1.1.1" + }, + "dependencies": { + "@parcel/plugin": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/plugin/-/plugin-2.6.2.tgz", + "integrity": "sha512-wbbWsM23Pr+8xtLSvf+UopXdVYlpKCCx6PuuZaZcKo+9IcDCWoGXD4M8Kkz14qBmkFn5uM00mULUqmVdSibB2w==", + "requires": { + "@parcel/types": "2.6.2" + } + } + } + }, + "@parcel/package-manager": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/package-manager/-/package-manager-2.6.2.tgz", + "integrity": "sha512-xGMqTgnwTE3rgzYwUZMKxR8fzmP5iSYz/gj2H8FR3pEmwh/8xCMtNjTSth+hPVGuqgRZ6JxwpfdY/fXdZ61ViQ==", + "requires": { + "@parcel/diagnostic": "2.6.2", + "@parcel/fs": "2.6.2", + "@parcel/logger": "2.6.2", + "@parcel/types": "2.6.2", + "@parcel/utils": "2.6.2", + "@parcel/workers": "2.6.2", + "semver": "^5.7.1" + } + }, + "@parcel/types": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/types/-/types-2.6.2.tgz", + "integrity": "sha512-MV8BFpCIs2jMUvK2RHqzkoiuOQ//JIbrD1zocA2YRW3zuPL/iABvbAABJoXpoPCKikVWOoCWASgBfWQo26VvJQ==", + "requires": { + "@parcel/cache": "2.6.2", + "@parcel/diagnostic": "2.6.2", + "@parcel/fs": "2.6.2", + "@parcel/package-manager": "2.6.2", + "@parcel/source-map": "^2.0.0", + "@parcel/workers": "2.6.2", + "utility-types": "^3.10.0" + } + }, + "@parcel/utils": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/utils/-/utils-2.6.2.tgz", + "integrity": "sha512-Ug7hpRxjgbY5AopW55nY7MmGMVmwmN+ihfCmxJkBUoESTG/3iq8uME7GjyOgW5DkQc2K7q62i8y8N0wCJT1u4Q==", + "requires": { + "@parcel/codeframe": "2.6.2", + "@parcel/diagnostic": "2.6.2", + "@parcel/hash": "2.6.2", + "@parcel/logger": "2.6.2", + "@parcel/markdown-ansi": "2.6.2", + "@parcel/source-map": "^2.0.0", + "chalk": "^4.1.0" + } + }, + "@parcel/workers": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/workers/-/workers-2.6.2.tgz", + "integrity": "sha512-wBgUjJQm+lDd12fPRUmk09+ujTA9DgwPdqylSFK0OtI/yT6A+2kArUqjp8IwWo2tCJXoMzXBne2XQIWKqMiN4Q==", + "requires": { + "@parcel/diagnostic": "2.6.2", + "@parcel/logger": "2.6.2", + "@parcel/types": "2.6.2", + "@parcel/utils": "2.6.2", + "chrome-trace-event": "^1.0.2", + "nullthrows": "^1.1.1" + } + }, "fs-extra": { "version": "10.1.0", "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz", @@ -1734,6 +1925,62 @@ "resolve-from": "^5.0.0", "tmp": "^0.2.1", "xdg-basedir": "^4.0.0" + }, + "dependencies": { + "@lmdb/lmdb-darwin-arm64": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-arm64/-/lmdb-darwin-arm64-2.5.3.tgz", + "integrity": "sha512-RXwGZ/0eCqtCY8FLTM/koR60w+MXyvBUpToXiIyjOcBnC81tAlTUHrRUavCEWPI9zc9VgvpK3+cbumPyR8BSuA==", + "optional": true + }, + "@lmdb/lmdb-darwin-x64": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-x64/-/lmdb-darwin-x64-2.5.3.tgz", + "integrity": "sha512-337dNzh5yCdNCTk8kPfoU7jR3otibSlPDGW0vKZT97rKnQMb9tNdto3RtWoGPsQ8hKmlRZpojOJtmwjncq1MoA==", + "optional": true + }, + "@lmdb/lmdb-linux-arm": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm/-/lmdb-linux-arm-2.5.3.tgz", + "integrity": "sha512-mU2HFJDGwECkoD9dHQEfeTG5mp8hNS2BCfwoiOpVPMeapjYpQz9Uw3FkUjRZ4dGHWKbin40oWHuL0bk2bCx+Sg==", + "optional": true + }, + "@lmdb/lmdb-linux-arm64": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm64/-/lmdb-linux-arm64-2.5.3.tgz", + "integrity": "sha512-VJw60Mdgb4n+L0fO1PqfB0C7TyEQolJAC8qpqvG3JoQwvyOv6LH7Ib/WE3wxEW9nuHmVz9jkK7lk5HfWWgoO1Q==", + "optional": true + }, + "@lmdb/lmdb-linux-x64": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-x64/-/lmdb-linux-x64-2.5.3.tgz", + "integrity": "sha512-qaReO5aV8griBDsBr8uBF/faO3ieGjY1RY4p8JvTL6Mu1ylLrTVvOONqKFlNaCwrmUjWw5jnf7VafxDAeQHTow==", + "optional": true + }, + "@lmdb/lmdb-win32-x64": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-win32-x64/-/lmdb-win32-x64-2.5.3.tgz", + "integrity": "sha512-cK+Elf3RjEzrm3SerAhrFWL5oQAsZSJ/LmjL1joIpTfEP1etJJ9CTRvdaV6XLYAxaEkfdhk/9hOvHLbR9yIhCA==", + "optional": true + }, + "lmdb": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/lmdb/-/lmdb-2.5.3.tgz", + "integrity": "sha512-iBA0cb13CobBSoGJLfZgnrykLlfJipDAnvtf+YwIqqzBEsTeQYsXrHaSBkaHd5wCWeabwrNvhjZoFMUrlo+eLw==", + "requires": { + "@lmdb/lmdb-darwin-arm64": "2.5.3", + "@lmdb/lmdb-darwin-x64": "2.5.3", + "@lmdb/lmdb-linux-arm": "2.5.3", + "@lmdb/lmdb-linux-arm64": "2.5.3", + "@lmdb/lmdb-linux-x64": "2.5.3", + "@lmdb/lmdb-win32-x64": "2.5.3", + "msgpackr": "^1.5.4", + "node-addon-api": "^4.3.0", + "node-gyp-build-optional-packages": "5.0.3", + "ordered-binary": "^1.2.4", + "weak-lru-cache": "^1.2.2" + } + } } }, "got": { @@ -1764,16 +2011,16 @@ } }, "lmdb": { - "version": "2.5.3", - "resolved": "https://registry.npmjs.org/lmdb/-/lmdb-2.5.3.tgz", - "integrity": "sha512-iBA0cb13CobBSoGJLfZgnrykLlfJipDAnvtf+YwIqqzBEsTeQYsXrHaSBkaHd5wCWeabwrNvhjZoFMUrlo+eLw==", - "requires": { - "@lmdb/lmdb-darwin-arm64": "2.5.3", - "@lmdb/lmdb-darwin-x64": "2.5.3", - "@lmdb/lmdb-linux-arm": "2.5.3", - "@lmdb/lmdb-linux-arm64": "2.5.3", - "@lmdb/lmdb-linux-x64": "2.5.3", - "@lmdb/lmdb-win32-x64": "2.5.3", + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/lmdb/-/lmdb-2.5.2.tgz", + "integrity": "sha512-V5V5Xa2Hp9i2XsbDALkBTeHXnBXh/lEmk9p22zdr7jtuOIY9TGhjK6vAvTpOOx9IKU4hJkRWZxn/HsvR1ELLtA==", + "requires": { + "@lmdb/lmdb-darwin-arm64": "2.5.2", + "@lmdb/lmdb-darwin-x64": "2.5.2", + "@lmdb/lmdb-linux-arm": "2.5.2", + "@lmdb/lmdb-linux-arm64": "2.5.2", + "@lmdb/lmdb-linux-x64": "2.5.2", + "@lmdb/lmdb-win32-x64": "2.5.2", "msgpackr": "^1.5.4", "node-addon-api": "^4.3.0", "node-gyp-build-optional-packages": "5.0.3", @@ -1796,6 +2043,11 @@ "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==" }, + "semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==" + }, "universalify": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz", @@ -3792,9 +4044,9 @@ } }, "@types/estree": { - "version": "0.0.52", - "resolved": "https://registry.npmjs.org/@types/estree/-/estree-0.0.52.tgz", - "integrity": "sha512-BZWrtCU0bMVAIliIV+HJO1f1PR41M7NKjfxrFJwwhKI1KwhwOxYw1SXg9ao+CIMt774nFuGiG6eU+udtbEI9oQ==" + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.0.tgz", + "integrity": "sha512-WulqXMDUTYAXCjZnk6JtIHPigp55cVtDgDrO2gHRwhyJto21+1zbVCtOYB2L1F9w4qCQ0rOGWBnBe0FNTiEJIQ==" }, "@types/get-port": { "version": "3.2.0", @@ -4120,9 +4372,12 @@ } }, "@vercel/webpack-asset-relocator-loader": { - "version": "1.7.2", - "resolved": "https://registry.npmjs.org/@vercel/webpack-asset-relocator-loader/-/webpack-asset-relocator-loader-1.7.2.tgz", - "integrity": "sha512-pdMwUawmAtH/LScbjKJq/y2+gZFggFMc2tlJrlPSrgKajvYPEis3L9QKcMyC9RN1Xos4ezAP5AJfRCNN6RMKCQ==" + "version": "1.7.3", + "resolved": "https://registry.npmjs.org/@vercel/webpack-asset-relocator-loader/-/webpack-asset-relocator-loader-1.7.3.tgz", + "integrity": "sha512-vizrI18v8Lcb1PmNNUBz7yxPxxXoOeuaVEjTG9MjvDrphjiSxFZrRJ5tIghk+qdLFRCXI5HBCshgobftbmrC5g==", + "requires": { + "resolve": "^1.10.0" + } }, "@webassemblyjs/ast": { "version": "1.11.1", @@ -4558,32 +4813,32 @@ }, "dependencies": { "browserslist": { - "version": "4.21.1", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.1.tgz", - "integrity": "sha512-Nq8MFCSrnJXSc88yliwlzQe3qNe3VntIjhsArW9IJOEPSHNx23FalwApUVbzAWABLhYJJ7y8AynWI/XM8OdfjQ==", + "version": "4.21.2", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.2.tgz", + "integrity": "sha512-MonuOgAtUB46uP5CezYbRaYKBNt2LxP0yX+Pmj4LkcDFGkn9Cbpi83d9sCjwQDErXsIJSzY5oKGDbgOlF/LPAA==", "requires": { - "caniuse-lite": "^1.0.30001359", - "electron-to-chromium": "^1.4.172", - "node-releases": "^2.0.5", + "caniuse-lite": "^1.0.30001366", + "electron-to-chromium": "^1.4.188", + "node-releases": "^2.0.6", "update-browserslist-db": "^1.0.4" } }, "caniuse-lite": { - "version": "1.0.30001365", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001365.tgz", - "integrity": "sha512-VDQZ8OtpuIPMBA4YYvZXECtXbddMCUFJk1qu8Mqxfm/SZJNSr1cy4IuLCOL7RJ/YASrvJcYg1Zh+UEUQ5m6z8Q==" + "version": "1.0.30001366", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001366.tgz", + "integrity": "sha512-yy7XLWCubDobokgzudpkKux8e0UOOnLHE6mlNJBzT3lZJz6s5atSEzjoL+fsCPkI0G8MP5uVdDx1ur/fXEWkZA==" }, "electron-to-chromium": { - "version": "1.4.186", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.186.tgz", - "integrity": "sha512-YoVeFrGd/7ROjz4R9uPoND1K/hSRC/xADy9639ZmIZeJSaBnKdYx3I6LMPsY7CXLpK7JFgKQVzeZ/dk2br6Eaw==" + "version": "1.4.188", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.188.tgz", + "integrity": "sha512-Zpa1+E+BVmD/orkyz1Z2dAT1XNUuVAHB3GrogfyY66dXN0ZWSsygI8+u6QTDai1ZayLcATDJpcv2Z2AZjEcr1A==" } } }, "axe-core": { - "version": "4.4.2", - "resolved": "https://registry.npmjs.org/axe-core/-/axe-core-4.4.2.tgz", - "integrity": "sha512-LVAaGp/wkkgYJcjmHsoKx4juT1aQvJyPcW09MLCjVTh3V2cc6PnyempiLMNH5iMdfIX/zdbjUx2KDjMLCTdPeA==" + "version": "4.4.3", + "resolved": "https://registry.npmjs.org/axe-core/-/axe-core-4.4.3.tgz", + "integrity": "sha512-32+ub6kkdhhWick/UjvEwRchgoetXqTK14INLqbGm5U2TzBkBNF3nQtLYm8ovxSkQWArjEQvftCKryjZaATu3w==" }, "axios": { "version": "0.21.4", @@ -8314,9 +8569,9 @@ "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==" }, "gatsby": { - "version": "4.18.1", - "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-4.18.1.tgz", - "integrity": "sha512-frMFAWOmMl/CtqBZ3aZXlysicQQa8C+yfMdjnjx81f7E5xoL20klk1j4UYj1kUnGgBMSuVehU8M+bE0kT02zoQ==", + "version": "4.18.2", + "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-4.18.2.tgz", + "integrity": "sha512-ZWdo0TXsSRmwlmOeeuoWwXKQNteHm9VxJWF9Ud+c33r7ZXQgTA5WtRYjiBpjZuNAUwsiONNAe+wKK5jVY8B4LQ==", "requires": { "@babel/code-frame": "^7.14.0", "@babel/core": "^7.15.5", @@ -8402,7 +8657,7 @@ "gatsby-legacy-polyfills": "^2.18.0", "gatsby-link": "^4.18.1", "gatsby-page-utils": "^2.18.1", - "gatsby-parcel-config": "^0.9.1", + "gatsby-parcel-config": "^0.9.2", "gatsby-plugin-page-creator": "^4.18.1", "gatsby-plugin-typescript": "^4.18.1", "gatsby-plugin-utils": "^3.12.1", @@ -8883,11 +9138,11 @@ } }, "gatsby-parcel-config": { - "version": "0.9.1", - "resolved": "https://registry.npmjs.org/gatsby-parcel-config/-/gatsby-parcel-config-0.9.1.tgz", - "integrity": "sha512-ZtVntsQYs0xhy1hvWUMeSLc4a+DvxtTf+NUrPF4rvBjOW/LPMx2eYDzPddKvqWmiUaT1+Ki9S9bwCuOp5muawg==", + "version": "0.9.2", + "resolved": "https://registry.npmjs.org/gatsby-parcel-config/-/gatsby-parcel-config-0.9.2.tgz", + "integrity": "sha512-ONykPoYCoFs89M8Hio0TSrUQEpwXwbSiV8aCcPH9L6w3eros9RlWrwAwnWb+lPDNJT5BsereBjefoS9cC6mpVA==", "requires": { - "@gatsbyjs/parcel-namer-relative-to-cwd": "^1.3.1", + "@gatsbyjs/parcel-namer-relative-to-cwd": "^1.3.2", "@parcel/bundler-default": "2.6.0", "@parcel/compressor-raw": "2.6.0", "@parcel/namer-default": "2.6.0", @@ -12684,25 +12939,25 @@ }, "dependencies": { "browserslist": { - "version": "4.21.1", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.1.tgz", - "integrity": "sha512-Nq8MFCSrnJXSc88yliwlzQe3qNe3VntIjhsArW9IJOEPSHNx23FalwApUVbzAWABLhYJJ7y8AynWI/XM8OdfjQ==", + "version": "4.21.2", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.2.tgz", + "integrity": "sha512-MonuOgAtUB46uP5CezYbRaYKBNt2LxP0yX+Pmj4LkcDFGkn9Cbpi83d9sCjwQDErXsIJSzY5oKGDbgOlF/LPAA==", "requires": { - "caniuse-lite": "^1.0.30001359", - "electron-to-chromium": "^1.4.172", - "node-releases": "^2.0.5", + "caniuse-lite": "^1.0.30001366", + "electron-to-chromium": "^1.4.188", + "node-releases": "^2.0.6", "update-browserslist-db": "^1.0.4" } }, "caniuse-lite": { - "version": "1.0.30001365", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001365.tgz", - "integrity": "sha512-VDQZ8OtpuIPMBA4YYvZXECtXbddMCUFJk1qu8Mqxfm/SZJNSr1cy4IuLCOL7RJ/YASrvJcYg1Zh+UEUQ5m6z8Q==" + "version": "1.0.30001366", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001366.tgz", + "integrity": "sha512-yy7XLWCubDobokgzudpkKux8e0UOOnLHE6mlNJBzT3lZJz6s5atSEzjoL+fsCPkI0G8MP5uVdDx1ur/fXEWkZA==" }, "electron-to-chromium": { - "version": "1.4.186", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.186.tgz", - "integrity": "sha512-YoVeFrGd/7ROjz4R9uPoND1K/hSRC/xADy9639ZmIZeJSaBnKdYx3I6LMPsY7CXLpK7JFgKQVzeZ/dk2br6Eaw==" + "version": "1.4.188", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.188.tgz", + "integrity": "sha512-Zpa1+E+BVmD/orkyz1Z2dAT1XNUuVAHB3GrogfyY66dXN0ZWSsygI8+u6QTDai1ZayLcATDJpcv2Z2AZjEcr1A==" } } }, @@ -14864,9 +15119,9 @@ "integrity": "sha512-wK0Ri4fOGjv/XPy8SBHZChl8CM7uMc5VML7SqiQ0zG7+J5Vr+RMQDoHa2CNT6KHUnTGIXH34UDMkPzAUyapBZg==" }, "terser": { - "version": "5.14.1", - "resolved": "https://registry.npmjs.org/terser/-/terser-5.14.1.tgz", - "integrity": "sha512-+ahUAE+iheqBTDxXhTisdA8hgvbEG1hHOQ9xmNjeUJSoi6DU/gMrKNcfZjHkyY6Alnuyc+ikYJaxxfHkT3+WuQ==", + "version": "5.14.2", + "resolved": "https://registry.npmjs.org/terser/-/terser-5.14.2.tgz", + "integrity": "sha512-oL0rGeM/WFQCUd0y2QrWxYnq7tfSuKBiqTjRPWrRgB46WD/kiwHwF8T23z78H6Q6kGCuuHcPB+KULHRdxvVGQA==", "requires": { "@jridgewell/source-map": "^0.3.2", "acorn": "^8.5.0", diff --git a/starters/gatsby-starter-notes-theme/package.json b/starters/gatsby-starter-notes-theme/package.json index 3dfecf066200f..14dd354e691a9 100644 --- a/starters/gatsby-starter-notes-theme/package.json +++ b/starters/gatsby-starter-notes-theme/package.json @@ -10,7 +10,7 @@ }, "license": "0BSD", "dependencies": { - "gatsby": "^4.18.1", + "gatsby": "^4.18.2", "gatsby-theme-notes": "^4.0.0", "react": "^17.0.2", "react-dom": "^17.0.2" diff --git a/starters/gatsby-starter-theme-workspace/example/package.json b/starters/gatsby-starter-theme-workspace/example/package.json index 347b6f18f9bb4..3c1d225fb54ae 100644 --- a/starters/gatsby-starter-theme-workspace/example/package.json +++ b/starters/gatsby-starter-theme-workspace/example/package.json @@ -8,7 +8,7 @@ "build": "gatsby build" }, "dependencies": { - "gatsby": "^4.18.1", + "gatsby": "^4.18.2", "gatsby-theme-minimal": "^1.0.0", "react": "^18.1.0", "react-dom": "^18.1.0" diff --git a/starters/gatsby-starter-theme/package-lock.json b/starters/gatsby-starter-theme/package-lock.json index 1669c0557f610..b7c408f078da3 100644 --- a/starters/gatsby-starter-theme/package-lock.json +++ b/starters/gatsby-starter-theme/package-lock.json @@ -1692,11 +1692,12 @@ } }, "@gatsbyjs/parcel-namer-relative-to-cwd": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/@gatsbyjs/parcel-namer-relative-to-cwd/-/parcel-namer-relative-to-cwd-1.3.1.tgz", - "integrity": "sha512-wN4iU1CWumvhcuzMBKdDikZ5xgo81Ias09bKyjE36DgNxTzAhT2fXZIBAAEUlv/GBQqFe6Eas83gGGtXf31hiw==", + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/@gatsbyjs/parcel-namer-relative-to-cwd/-/parcel-namer-relative-to-cwd-1.3.2.tgz", + "integrity": "sha512-jiYGiq8Zk21x2IIWbsLQ0GqgGJyKjj+/4jYwr5msD5ORB/JAZLk4IDrMKZ9rFXkNPq/bRV57ub0k/NvRMELfLQ==", "requires": { "@babel/runtime": "^7.18.0", + "@parcel/namer-default": "2.6.2", "@parcel/plugin": "2.6.0", "gatsby-core-utils": "^3.18.1" }, @@ -1709,6 +1710,196 @@ "regenerator-runtime": "^0.13.4" } }, + "@lmdb/lmdb-darwin-arm64": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-arm64/-/lmdb-darwin-arm64-2.5.2.tgz", + "integrity": "sha512-+F8ioQIUN68B4UFiIBYu0QQvgb9FmlKw2ctQMSBfW2QBrZIxz9vD9jCGqTCPqZBRbPHAS/vG1zSXnKqnS2ch/A==", + "optional": true + }, + "@lmdb/lmdb-darwin-x64": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-x64/-/lmdb-darwin-x64-2.5.2.tgz", + "integrity": "sha512-KvPH56KRLLx4KSfKBx0m1r7GGGUMXm0jrKmNE7plbHlesZMuPJICtn07HYgQhj1LNsK7Yqwuvnqh1QxhJnF1EA==", + "optional": true + }, + "@lmdb/lmdb-linux-arm": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm/-/lmdb-linux-arm-2.5.2.tgz", + "integrity": "sha512-5kQAP21hAkfW5Bl+e0P57dV4dGYnkNIpR7f/GAh6QHlgXx+vp/teVj4PGRZaKAvt0GX6++N6hF8NnGElLDuIDw==", + "optional": true + }, + "@lmdb/lmdb-linux-arm64": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm64/-/lmdb-linux-arm64-2.5.2.tgz", + "integrity": "sha512-aLl89VHL/wjhievEOlPocoefUyWdvzVrcQ/MHQYZm2JfV1jUsrbr/ZfkPPUFvZBf+VSE+Q0clWs9l29PCX1hTQ==", + "optional": true + }, + "@lmdb/lmdb-linux-x64": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-x64/-/lmdb-linux-x64-2.5.2.tgz", + "integrity": "sha512-xUdUfwDJLGjOUPH3BuPBt0NlIrR7f/QHKgu3GZIXswMMIihAekj2i97oI0iWG5Bok/b+OBjHPfa8IU9velnP/Q==", + "optional": true + }, + "@lmdb/lmdb-win32-x64": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-win32-x64/-/lmdb-win32-x64-2.5.2.tgz", + "integrity": "sha512-zrBczSbXKxEyK2ijtbRdICDygRqWSRPpZMN5dD1T8VMEW5RIhIbwFWw2phDRXuBQdVDpSjalCIUMWMV2h3JaZA==", + "optional": true + }, + "@parcel/cache": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/cache/-/cache-2.6.2.tgz", + "integrity": "sha512-hhJ6AsEGybeQZd9c/GYqfcKTgZKQXu3Xih6TlnP3gdR3KZoJOnb40ovHD1yYg4COvfcXThKP1cVJ18J6rcv3IA==", + "requires": { + "@parcel/fs": "2.6.2", + "@parcel/logger": "2.6.2", + "@parcel/utils": "2.6.2", + "lmdb": "2.5.2" + } + }, + "@parcel/codeframe": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/codeframe/-/codeframe-2.6.2.tgz", + "integrity": "sha512-oFlHr6HCaYYsB4SHkU+gn9DKtbzvv3/4NdwMX0/6NAKyYVI7inEsXyPGw2Bbd2ZCFatW9QJZUETF0etvh5AEfQ==", + "requires": { + "chalk": "^4.1.0" + } + }, + "@parcel/diagnostic": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/diagnostic/-/diagnostic-2.6.2.tgz", + "integrity": "sha512-3ODSBkKVihENU763z1/1DhGAWFhYWRxOCOShC72KXp+GFnSgGiBsxclu8NBa/N948Rzp8lqQI8U1nLcKkh0O/w==", + "requires": { + "@mischnic/json-sourcemap": "^0.1.0", + "nullthrows": "^1.1.1" + } + }, + "@parcel/events": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/events/-/events-2.6.2.tgz", + "integrity": "sha512-IaCjOeA5ercdFVi1EZOmUHhGfIysmCUgc2Th9hMugSFO0I3GzRsBcAdP6XPfWm+TV6sQ/qZRfdk/drUxoAupnw==" + }, + "@parcel/fs": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/fs/-/fs-2.6.2.tgz", + "integrity": "sha512-mIhqdF3tjgeoIGqW7Nc/xfM2ClID7o8livwUe5lpQEP+ZaIBiMigXs6ckv3WToCACK+3uylrSD2A/HmlhrxMqQ==", + "requires": { + "@parcel/fs-search": "2.6.2", + "@parcel/types": "2.6.2", + "@parcel/utils": "2.6.2", + "@parcel/watcher": "^2.0.0", + "@parcel/workers": "2.6.2" + } + }, + "@parcel/fs-search": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/fs-search/-/fs-search-2.6.2.tgz", + "integrity": "sha512-4STid1zqtGnmGjHD/2TG2g/zPDiCTtE3IAS24QYH3eiUAz2uoKGgEqd2tZbZ2yI96jtCuIhC1bzVu8Hbykls7w==", + "requires": { + "detect-libc": "^1.0.3" + } + }, + "@parcel/hash": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/hash/-/hash-2.6.2.tgz", + "integrity": "sha512-tFB+cJU1Wqag6WyJgsmx3nx+xhmjcNZqtWh/MtK1lHNnZdDRk6bjr7SapnygBwruz+SmSt5bbdVThcpk2dRCcA==", + "requires": { + "detect-libc": "^1.0.3", + "xxhash-wasm": "^0.4.2" + } + }, + "@parcel/logger": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/logger/-/logger-2.6.2.tgz", + "integrity": "sha512-Sz5YGCj1DbEiX0/G8Uw97LLZ0uEK+qtWcRAkHNpJpeMiSqDiRNevxXltz42EcLo+oCh4d4wyiVzwi9mNwzhS/Q==", + "requires": { + "@parcel/diagnostic": "2.6.2", + "@parcel/events": "2.6.2" + } + }, + "@parcel/markdown-ansi": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/markdown-ansi/-/markdown-ansi-2.6.2.tgz", + "integrity": "sha512-N/h9J4eibhc+B+krzvPMzFUWL37GudBIZBa7XSLkcuH6MnYYfh6rrMvhIyyESwk6VkcZNVzAeZrGQqxEs0dHDQ==", + "requires": { + "chalk": "^4.1.0" + } + }, + "@parcel/namer-default": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/namer-default/-/namer-default-2.6.2.tgz", + "integrity": "sha512-mp7bx/BQaIuohmZP0uE+gAmDBzzH0Yu8F4yCtE611lc6i0mou+nWRhzyKLNC/ieuI8DB3BFh2QQKeTxJn4W0qg==", + "requires": { + "@parcel/diagnostic": "2.6.2", + "@parcel/plugin": "2.6.2", + "nullthrows": "^1.1.1" + }, + "dependencies": { + "@parcel/plugin": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/plugin/-/plugin-2.6.2.tgz", + "integrity": "sha512-wbbWsM23Pr+8xtLSvf+UopXdVYlpKCCx6PuuZaZcKo+9IcDCWoGXD4M8Kkz14qBmkFn5uM00mULUqmVdSibB2w==", + "requires": { + "@parcel/types": "2.6.2" + } + } + } + }, + "@parcel/package-manager": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/package-manager/-/package-manager-2.6.2.tgz", + "integrity": "sha512-xGMqTgnwTE3rgzYwUZMKxR8fzmP5iSYz/gj2H8FR3pEmwh/8xCMtNjTSth+hPVGuqgRZ6JxwpfdY/fXdZ61ViQ==", + "requires": { + "@parcel/diagnostic": "2.6.2", + "@parcel/fs": "2.6.2", + "@parcel/logger": "2.6.2", + "@parcel/types": "2.6.2", + "@parcel/utils": "2.6.2", + "@parcel/workers": "2.6.2", + "semver": "^5.7.1" + } + }, + "@parcel/types": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/types/-/types-2.6.2.tgz", + "integrity": "sha512-MV8BFpCIs2jMUvK2RHqzkoiuOQ//JIbrD1zocA2YRW3zuPL/iABvbAABJoXpoPCKikVWOoCWASgBfWQo26VvJQ==", + "requires": { + "@parcel/cache": "2.6.2", + "@parcel/diagnostic": "2.6.2", + "@parcel/fs": "2.6.2", + "@parcel/package-manager": "2.6.2", + "@parcel/source-map": "^2.0.0", + "@parcel/workers": "2.6.2", + "utility-types": "^3.10.0" + } + }, + "@parcel/utils": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/utils/-/utils-2.6.2.tgz", + "integrity": "sha512-Ug7hpRxjgbY5AopW55nY7MmGMVmwmN+ihfCmxJkBUoESTG/3iq8uME7GjyOgW5DkQc2K7q62i8y8N0wCJT1u4Q==", + "requires": { + "@parcel/codeframe": "2.6.2", + "@parcel/diagnostic": "2.6.2", + "@parcel/hash": "2.6.2", + "@parcel/logger": "2.6.2", + "@parcel/markdown-ansi": "2.6.2", + "@parcel/source-map": "^2.0.0", + "chalk": "^4.1.0" + } + }, + "@parcel/workers": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/workers/-/workers-2.6.2.tgz", + "integrity": "sha512-wBgUjJQm+lDd12fPRUmk09+ujTA9DgwPdqylSFK0OtI/yT6A+2kArUqjp8IwWo2tCJXoMzXBne2XQIWKqMiN4Q==", + "requires": { + "@parcel/diagnostic": "2.6.2", + "@parcel/logger": "2.6.2", + "@parcel/types": "2.6.2", + "@parcel/utils": "2.6.2", + "chrome-trace-event": "^1.0.2", + "nullthrows": "^1.1.1" + } + }, "fs-extra": { "version": "10.1.0", "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz", @@ -1739,6 +1930,62 @@ "resolve-from": "^5.0.0", "tmp": "^0.2.1", "xdg-basedir": "^4.0.0" + }, + "dependencies": { + "@lmdb/lmdb-darwin-arm64": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-arm64/-/lmdb-darwin-arm64-2.5.3.tgz", + "integrity": "sha512-RXwGZ/0eCqtCY8FLTM/koR60w+MXyvBUpToXiIyjOcBnC81tAlTUHrRUavCEWPI9zc9VgvpK3+cbumPyR8BSuA==", + "optional": true + }, + "@lmdb/lmdb-darwin-x64": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-x64/-/lmdb-darwin-x64-2.5.3.tgz", + "integrity": "sha512-337dNzh5yCdNCTk8kPfoU7jR3otibSlPDGW0vKZT97rKnQMb9tNdto3RtWoGPsQ8hKmlRZpojOJtmwjncq1MoA==", + "optional": true + }, + "@lmdb/lmdb-linux-arm": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm/-/lmdb-linux-arm-2.5.3.tgz", + "integrity": "sha512-mU2HFJDGwECkoD9dHQEfeTG5mp8hNS2BCfwoiOpVPMeapjYpQz9Uw3FkUjRZ4dGHWKbin40oWHuL0bk2bCx+Sg==", + "optional": true + }, + "@lmdb/lmdb-linux-arm64": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm64/-/lmdb-linux-arm64-2.5.3.tgz", + "integrity": "sha512-VJw60Mdgb4n+L0fO1PqfB0C7TyEQolJAC8qpqvG3JoQwvyOv6LH7Ib/WE3wxEW9nuHmVz9jkK7lk5HfWWgoO1Q==", + "optional": true + }, + "@lmdb/lmdb-linux-x64": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-x64/-/lmdb-linux-x64-2.5.3.tgz", + "integrity": "sha512-qaReO5aV8griBDsBr8uBF/faO3ieGjY1RY4p8JvTL6Mu1ylLrTVvOONqKFlNaCwrmUjWw5jnf7VafxDAeQHTow==", + "optional": true + }, + "@lmdb/lmdb-win32-x64": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-win32-x64/-/lmdb-win32-x64-2.5.3.tgz", + "integrity": "sha512-cK+Elf3RjEzrm3SerAhrFWL5oQAsZSJ/LmjL1joIpTfEP1etJJ9CTRvdaV6XLYAxaEkfdhk/9hOvHLbR9yIhCA==", + "optional": true + }, + "lmdb": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/lmdb/-/lmdb-2.5.3.tgz", + "integrity": "sha512-iBA0cb13CobBSoGJLfZgnrykLlfJipDAnvtf+YwIqqzBEsTeQYsXrHaSBkaHd5wCWeabwrNvhjZoFMUrlo+eLw==", + "requires": { + "@lmdb/lmdb-darwin-arm64": "2.5.3", + "@lmdb/lmdb-darwin-x64": "2.5.3", + "@lmdb/lmdb-linux-arm": "2.5.3", + "@lmdb/lmdb-linux-arm64": "2.5.3", + "@lmdb/lmdb-linux-x64": "2.5.3", + "@lmdb/lmdb-win32-x64": "2.5.3", + "msgpackr": "^1.5.4", + "node-addon-api": "^4.3.0", + "node-gyp-build-optional-packages": "5.0.3", + "ordered-binary": "^1.2.4", + "weak-lru-cache": "^1.2.2" + } + } } }, "got": { @@ -1769,16 +2016,16 @@ } }, "lmdb": { - "version": "2.5.3", - "resolved": "https://registry.npmjs.org/lmdb/-/lmdb-2.5.3.tgz", - "integrity": "sha512-iBA0cb13CobBSoGJLfZgnrykLlfJipDAnvtf+YwIqqzBEsTeQYsXrHaSBkaHd5wCWeabwrNvhjZoFMUrlo+eLw==", - "requires": { - "@lmdb/lmdb-darwin-arm64": "2.5.3", - "@lmdb/lmdb-darwin-x64": "2.5.3", - "@lmdb/lmdb-linux-arm": "2.5.3", - "@lmdb/lmdb-linux-arm64": "2.5.3", - "@lmdb/lmdb-linux-x64": "2.5.3", - "@lmdb/lmdb-win32-x64": "2.5.3", + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/lmdb/-/lmdb-2.5.2.tgz", + "integrity": "sha512-V5V5Xa2Hp9i2XsbDALkBTeHXnBXh/lEmk9p22zdr7jtuOIY9TGhjK6vAvTpOOx9IKU4hJkRWZxn/HsvR1ELLtA==", + "requires": { + "@lmdb/lmdb-darwin-arm64": "2.5.2", + "@lmdb/lmdb-darwin-x64": "2.5.2", + "@lmdb/lmdb-linux-arm": "2.5.2", + "@lmdb/lmdb-linux-arm64": "2.5.2", + "@lmdb/lmdb-linux-x64": "2.5.2", + "@lmdb/lmdb-win32-x64": "2.5.2", "msgpackr": "^1.5.4", "node-addon-api": "^4.3.0", "node-gyp-build-optional-packages": "5.0.3", @@ -1801,6 +2048,11 @@ "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==" }, + "semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==" + }, "universalify": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz", @@ -4215,9 +4467,9 @@ } }, "@types/estree": { - "version": "0.0.52", - "resolved": "https://registry.npmjs.org/@types/estree/-/estree-0.0.52.tgz", - "integrity": "sha512-BZWrtCU0bMVAIliIV+HJO1f1PR41M7NKjfxrFJwwhKI1KwhwOxYw1SXg9ao+CIMt774nFuGiG6eU+udtbEI9oQ==" + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.0.tgz", + "integrity": "sha512-WulqXMDUTYAXCjZnk6JtIHPigp55cVtDgDrO2gHRwhyJto21+1zbVCtOYB2L1F9w4qCQ0rOGWBnBe0FNTiEJIQ==" }, "@types/get-port": { "version": "3.2.0", @@ -4548,9 +4800,12 @@ } }, "@vercel/webpack-asset-relocator-loader": { - "version": "1.7.2", - "resolved": "https://registry.npmjs.org/@vercel/webpack-asset-relocator-loader/-/webpack-asset-relocator-loader-1.7.2.tgz", - "integrity": "sha512-pdMwUawmAtH/LScbjKJq/y2+gZFggFMc2tlJrlPSrgKajvYPEis3L9QKcMyC9RN1Xos4ezAP5AJfRCNN6RMKCQ==" + "version": "1.7.3", + "resolved": "https://registry.npmjs.org/@vercel/webpack-asset-relocator-loader/-/webpack-asset-relocator-loader-1.7.3.tgz", + "integrity": "sha512-vizrI18v8Lcb1PmNNUBz7yxPxxXoOeuaVEjTG9MjvDrphjiSxFZrRJ5tIghk+qdLFRCXI5HBCshgobftbmrC5g==", + "requires": { + "resolve": "^1.10.0" + } }, "@webassemblyjs/ast": { "version": "1.11.1", @@ -5353,32 +5608,32 @@ }, "dependencies": { "browserslist": { - "version": "4.21.1", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.1.tgz", - "integrity": "sha512-Nq8MFCSrnJXSc88yliwlzQe3qNe3VntIjhsArW9IJOEPSHNx23FalwApUVbzAWABLhYJJ7y8AynWI/XM8OdfjQ==", + "version": "4.21.2", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.2.tgz", + "integrity": "sha512-MonuOgAtUB46uP5CezYbRaYKBNt2LxP0yX+Pmj4LkcDFGkn9Cbpi83d9sCjwQDErXsIJSzY5oKGDbgOlF/LPAA==", "requires": { - "caniuse-lite": "^1.0.30001359", - "electron-to-chromium": "^1.4.172", - "node-releases": "^2.0.5", + "caniuse-lite": "^1.0.30001366", + "electron-to-chromium": "^1.4.188", + "node-releases": "^2.0.6", "update-browserslist-db": "^1.0.4" } }, "caniuse-lite": { - "version": "1.0.30001365", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001365.tgz", - "integrity": "sha512-VDQZ8OtpuIPMBA4YYvZXECtXbddMCUFJk1qu8Mqxfm/SZJNSr1cy4IuLCOL7RJ/YASrvJcYg1Zh+UEUQ5m6z8Q==" + "version": "1.0.30001366", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001366.tgz", + "integrity": "sha512-yy7XLWCubDobokgzudpkKux8e0UOOnLHE6mlNJBzT3lZJz6s5atSEzjoL+fsCPkI0G8MP5uVdDx1ur/fXEWkZA==" }, "electron-to-chromium": { - "version": "1.4.186", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.186.tgz", - "integrity": "sha512-YoVeFrGd/7ROjz4R9uPoND1K/hSRC/xADy9639ZmIZeJSaBnKdYx3I6LMPsY7CXLpK7JFgKQVzeZ/dk2br6Eaw==" + "version": "1.4.188", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.188.tgz", + "integrity": "sha512-Zpa1+E+BVmD/orkyz1Z2dAT1XNUuVAHB3GrogfyY66dXN0ZWSsygI8+u6QTDai1ZayLcATDJpcv2Z2AZjEcr1A==" } } }, "axe-core": { - "version": "4.4.2", - "resolved": "https://registry.npmjs.org/axe-core/-/axe-core-4.4.2.tgz", - "integrity": "sha512-LVAaGp/wkkgYJcjmHsoKx4juT1aQvJyPcW09MLCjVTh3V2cc6PnyempiLMNH5iMdfIX/zdbjUx2KDjMLCTdPeA==" + "version": "4.4.3", + "resolved": "https://registry.npmjs.org/axe-core/-/axe-core-4.4.3.tgz", + "integrity": "sha512-32+ub6kkdhhWick/UjvEwRchgoetXqTK14INLqbGm5U2TzBkBNF3nQtLYm8ovxSkQWArjEQvftCKryjZaATu3w==" }, "axios": { "version": "0.21.4", @@ -9047,9 +9302,9 @@ "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==" }, "gatsby": { - "version": "4.18.1", - "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-4.18.1.tgz", - "integrity": "sha512-frMFAWOmMl/CtqBZ3aZXlysicQQa8C+yfMdjnjx81f7E5xoL20klk1j4UYj1kUnGgBMSuVehU8M+bE0kT02zoQ==", + "version": "4.18.2", + "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-4.18.2.tgz", + "integrity": "sha512-ZWdo0TXsSRmwlmOeeuoWwXKQNteHm9VxJWF9Ud+c33r7ZXQgTA5WtRYjiBpjZuNAUwsiONNAe+wKK5jVY8B4LQ==", "requires": { "@babel/code-frame": "^7.14.0", "@babel/core": "^7.15.5", @@ -9135,7 +9390,7 @@ "gatsby-legacy-polyfills": "^2.18.0", "gatsby-link": "^4.18.1", "gatsby-page-utils": "^2.18.1", - "gatsby-parcel-config": "^0.9.1", + "gatsby-parcel-config": "^0.9.2", "gatsby-plugin-page-creator": "^4.18.1", "gatsby-plugin-typescript": "^4.18.1", "gatsby-plugin-utils": "^3.12.1", @@ -9776,11 +10031,11 @@ } }, "gatsby-parcel-config": { - "version": "0.9.1", - "resolved": "https://registry.npmjs.org/gatsby-parcel-config/-/gatsby-parcel-config-0.9.1.tgz", - "integrity": "sha512-ZtVntsQYs0xhy1hvWUMeSLc4a+DvxtTf+NUrPF4rvBjOW/LPMx2eYDzPddKvqWmiUaT1+Ki9S9bwCuOp5muawg==", + "version": "0.9.2", + "resolved": "https://registry.npmjs.org/gatsby-parcel-config/-/gatsby-parcel-config-0.9.2.tgz", + "integrity": "sha512-ONykPoYCoFs89M8Hio0TSrUQEpwXwbSiV8aCcPH9L6w3eros9RlWrwAwnWb+lPDNJT5BsereBjefoS9cC6mpVA==", "requires": { - "@gatsbyjs/parcel-namer-relative-to-cwd": "^1.3.1", + "@gatsbyjs/parcel-namer-relative-to-cwd": "^1.3.2", "@parcel/bundler-default": "2.6.0", "@parcel/compressor-raw": "2.6.0", "@parcel/namer-default": "2.6.0", @@ -14072,25 +14327,25 @@ }, "dependencies": { "browserslist": { - "version": "4.21.1", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.1.tgz", - "integrity": "sha512-Nq8MFCSrnJXSc88yliwlzQe3qNe3VntIjhsArW9IJOEPSHNx23FalwApUVbzAWABLhYJJ7y8AynWI/XM8OdfjQ==", + "version": "4.21.2", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.2.tgz", + "integrity": "sha512-MonuOgAtUB46uP5CezYbRaYKBNt2LxP0yX+Pmj4LkcDFGkn9Cbpi83d9sCjwQDErXsIJSzY5oKGDbgOlF/LPAA==", "requires": { - "caniuse-lite": "^1.0.30001359", - "electron-to-chromium": "^1.4.172", - "node-releases": "^2.0.5", + "caniuse-lite": "^1.0.30001366", + "electron-to-chromium": "^1.4.188", + "node-releases": "^2.0.6", "update-browserslist-db": "^1.0.4" } }, "caniuse-lite": { - "version": "1.0.30001365", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001365.tgz", - "integrity": "sha512-VDQZ8OtpuIPMBA4YYvZXECtXbddMCUFJk1qu8Mqxfm/SZJNSr1cy4IuLCOL7RJ/YASrvJcYg1Zh+UEUQ5m6z8Q==" + "version": "1.0.30001366", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001366.tgz", + "integrity": "sha512-yy7XLWCubDobokgzudpkKux8e0UOOnLHE6mlNJBzT3lZJz6s5atSEzjoL+fsCPkI0G8MP5uVdDx1ur/fXEWkZA==" }, "electron-to-chromium": { - "version": "1.4.186", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.186.tgz", - "integrity": "sha512-YoVeFrGd/7ROjz4R9uPoND1K/hSRC/xADy9639ZmIZeJSaBnKdYx3I6LMPsY7CXLpK7JFgKQVzeZ/dk2br6Eaw==" + "version": "1.4.188", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.188.tgz", + "integrity": "sha512-Zpa1+E+BVmD/orkyz1Z2dAT1XNUuVAHB3GrogfyY66dXN0ZWSsygI8+u6QTDai1ZayLcATDJpcv2Z2AZjEcr1A==" } } }, @@ -16594,9 +16849,9 @@ "integrity": "sha512-wK0Ri4fOGjv/XPy8SBHZChl8CM7uMc5VML7SqiQ0zG7+J5Vr+RMQDoHa2CNT6KHUnTGIXH34UDMkPzAUyapBZg==" }, "terser": { - "version": "5.14.1", - "resolved": "https://registry.npmjs.org/terser/-/terser-5.14.1.tgz", - "integrity": "sha512-+ahUAE+iheqBTDxXhTisdA8hgvbEG1hHOQ9xmNjeUJSoi6DU/gMrKNcfZjHkyY6Alnuyc+ikYJaxxfHkT3+WuQ==", + "version": "5.14.2", + "resolved": "https://registry.npmjs.org/terser/-/terser-5.14.2.tgz", + "integrity": "sha512-oL0rGeM/WFQCUd0y2QrWxYnq7tfSuKBiqTjRPWrRgB46WD/kiwHwF8T23z78H6Q6kGCuuHcPB+KULHRdxvVGQA==", "requires": { "@jridgewell/source-map": "^0.3.2", "acorn": "^8.5.0", diff --git a/starters/gatsby-starter-theme/package.json b/starters/gatsby-starter-theme/package.json index 3d119ad99ecb8..420e44434c12a 100644 --- a/starters/gatsby-starter-theme/package.json +++ b/starters/gatsby-starter-theme/package.json @@ -10,7 +10,7 @@ }, "license": "0BSD", "dependencies": { - "gatsby": "^4.18.1", + "gatsby": "^4.18.2", "gatsby-theme-blog": "^4.0.0", "gatsby-theme-notes": "^4.0.0", "react": "^17.0.2", diff --git a/starters/gatsby-starter-wordpress-blog/package-lock.json b/starters/gatsby-starter-wordpress-blog/package-lock.json index 8908919f6da2f..24d1bdba22d2d 100644 --- a/starters/gatsby-starter-wordpress-blog/package-lock.json +++ b/starters/gatsby-starter-wordpress-blog/package-lock.json @@ -1957,13 +1957,239 @@ } }, "@gatsbyjs/parcel-namer-relative-to-cwd": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/@gatsbyjs/parcel-namer-relative-to-cwd/-/parcel-namer-relative-to-cwd-1.3.1.tgz", - "integrity": "sha512-wN4iU1CWumvhcuzMBKdDikZ5xgo81Ias09bKyjE36DgNxTzAhT2fXZIBAAEUlv/GBQqFe6Eas83gGGtXf31hiw==", + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/@gatsbyjs/parcel-namer-relative-to-cwd/-/parcel-namer-relative-to-cwd-1.3.2.tgz", + "integrity": "sha512-jiYGiq8Zk21x2IIWbsLQ0GqgGJyKjj+/4jYwr5msD5ORB/JAZLk4IDrMKZ9rFXkNPq/bRV57ub0k/NvRMELfLQ==", "requires": { "@babel/runtime": "^7.18.0", + "@parcel/namer-default": "2.6.2", "@parcel/plugin": "2.6.0", "gatsby-core-utils": "^3.18.1" + }, + "dependencies": { + "@lmdb/lmdb-darwin-arm64": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-arm64/-/lmdb-darwin-arm64-2.5.2.tgz", + "integrity": "sha512-+F8ioQIUN68B4UFiIBYu0QQvgb9FmlKw2ctQMSBfW2QBrZIxz9vD9jCGqTCPqZBRbPHAS/vG1zSXnKqnS2ch/A==", + "optional": true + }, + "@lmdb/lmdb-darwin-x64": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-x64/-/lmdb-darwin-x64-2.5.2.tgz", + "integrity": "sha512-KvPH56KRLLx4KSfKBx0m1r7GGGUMXm0jrKmNE7plbHlesZMuPJICtn07HYgQhj1LNsK7Yqwuvnqh1QxhJnF1EA==", + "optional": true + }, + "@lmdb/lmdb-linux-arm": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm/-/lmdb-linux-arm-2.5.2.tgz", + "integrity": "sha512-5kQAP21hAkfW5Bl+e0P57dV4dGYnkNIpR7f/GAh6QHlgXx+vp/teVj4PGRZaKAvt0GX6++N6hF8NnGElLDuIDw==", + "optional": true + }, + "@lmdb/lmdb-linux-arm64": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm64/-/lmdb-linux-arm64-2.5.2.tgz", + "integrity": "sha512-aLl89VHL/wjhievEOlPocoefUyWdvzVrcQ/MHQYZm2JfV1jUsrbr/ZfkPPUFvZBf+VSE+Q0clWs9l29PCX1hTQ==", + "optional": true + }, + "@lmdb/lmdb-linux-x64": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-x64/-/lmdb-linux-x64-2.5.2.tgz", + "integrity": "sha512-xUdUfwDJLGjOUPH3BuPBt0NlIrR7f/QHKgu3GZIXswMMIihAekj2i97oI0iWG5Bok/b+OBjHPfa8IU9velnP/Q==", + "optional": true + }, + "@lmdb/lmdb-win32-x64": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-win32-x64/-/lmdb-win32-x64-2.5.2.tgz", + "integrity": "sha512-zrBczSbXKxEyK2ijtbRdICDygRqWSRPpZMN5dD1T8VMEW5RIhIbwFWw2phDRXuBQdVDpSjalCIUMWMV2h3JaZA==", + "optional": true + }, + "@parcel/cache": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/cache/-/cache-2.6.2.tgz", + "integrity": "sha512-hhJ6AsEGybeQZd9c/GYqfcKTgZKQXu3Xih6TlnP3gdR3KZoJOnb40ovHD1yYg4COvfcXThKP1cVJ18J6rcv3IA==", + "requires": { + "@parcel/fs": "2.6.2", + "@parcel/logger": "2.6.2", + "@parcel/utils": "2.6.2", + "lmdb": "2.5.2" + } + }, + "@parcel/codeframe": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/codeframe/-/codeframe-2.6.2.tgz", + "integrity": "sha512-oFlHr6HCaYYsB4SHkU+gn9DKtbzvv3/4NdwMX0/6NAKyYVI7inEsXyPGw2Bbd2ZCFatW9QJZUETF0etvh5AEfQ==", + "requires": { + "chalk": "^4.1.0" + } + }, + "@parcel/diagnostic": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/diagnostic/-/diagnostic-2.6.2.tgz", + "integrity": "sha512-3ODSBkKVihENU763z1/1DhGAWFhYWRxOCOShC72KXp+GFnSgGiBsxclu8NBa/N948Rzp8lqQI8U1nLcKkh0O/w==", + "requires": { + "@mischnic/json-sourcemap": "^0.1.0", + "nullthrows": "^1.1.1" + } + }, + "@parcel/events": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/events/-/events-2.6.2.tgz", + "integrity": "sha512-IaCjOeA5ercdFVi1EZOmUHhGfIysmCUgc2Th9hMugSFO0I3GzRsBcAdP6XPfWm+TV6sQ/qZRfdk/drUxoAupnw==" + }, + "@parcel/fs": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/fs/-/fs-2.6.2.tgz", + "integrity": "sha512-mIhqdF3tjgeoIGqW7Nc/xfM2ClID7o8livwUe5lpQEP+ZaIBiMigXs6ckv3WToCACK+3uylrSD2A/HmlhrxMqQ==", + "requires": { + "@parcel/fs-search": "2.6.2", + "@parcel/types": "2.6.2", + "@parcel/utils": "2.6.2", + "@parcel/watcher": "^2.0.0", + "@parcel/workers": "2.6.2" + } + }, + "@parcel/fs-search": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/fs-search/-/fs-search-2.6.2.tgz", + "integrity": "sha512-4STid1zqtGnmGjHD/2TG2g/zPDiCTtE3IAS24QYH3eiUAz2uoKGgEqd2tZbZ2yI96jtCuIhC1bzVu8Hbykls7w==", + "requires": { + "detect-libc": "^1.0.3" + } + }, + "@parcel/hash": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/hash/-/hash-2.6.2.tgz", + "integrity": "sha512-tFB+cJU1Wqag6WyJgsmx3nx+xhmjcNZqtWh/MtK1lHNnZdDRk6bjr7SapnygBwruz+SmSt5bbdVThcpk2dRCcA==", + "requires": { + "detect-libc": "^1.0.3", + "xxhash-wasm": "^0.4.2" + } + }, + "@parcel/logger": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/logger/-/logger-2.6.2.tgz", + "integrity": "sha512-Sz5YGCj1DbEiX0/G8Uw97LLZ0uEK+qtWcRAkHNpJpeMiSqDiRNevxXltz42EcLo+oCh4d4wyiVzwi9mNwzhS/Q==", + "requires": { + "@parcel/diagnostic": "2.6.2", + "@parcel/events": "2.6.2" + } + }, + "@parcel/markdown-ansi": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/markdown-ansi/-/markdown-ansi-2.6.2.tgz", + "integrity": "sha512-N/h9J4eibhc+B+krzvPMzFUWL37GudBIZBa7XSLkcuH6MnYYfh6rrMvhIyyESwk6VkcZNVzAeZrGQqxEs0dHDQ==", + "requires": { + "chalk": "^4.1.0" + } + }, + "@parcel/namer-default": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/namer-default/-/namer-default-2.6.2.tgz", + "integrity": "sha512-mp7bx/BQaIuohmZP0uE+gAmDBzzH0Yu8F4yCtE611lc6i0mou+nWRhzyKLNC/ieuI8DB3BFh2QQKeTxJn4W0qg==", + "requires": { + "@parcel/diagnostic": "2.6.2", + "@parcel/plugin": "2.6.2", + "nullthrows": "^1.1.1" + }, + "dependencies": { + "@parcel/plugin": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/plugin/-/plugin-2.6.2.tgz", + "integrity": "sha512-wbbWsM23Pr+8xtLSvf+UopXdVYlpKCCx6PuuZaZcKo+9IcDCWoGXD4M8Kkz14qBmkFn5uM00mULUqmVdSibB2w==", + "requires": { + "@parcel/types": "2.6.2" + } + } + } + }, + "@parcel/package-manager": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/package-manager/-/package-manager-2.6.2.tgz", + "integrity": "sha512-xGMqTgnwTE3rgzYwUZMKxR8fzmP5iSYz/gj2H8FR3pEmwh/8xCMtNjTSth+hPVGuqgRZ6JxwpfdY/fXdZ61ViQ==", + "requires": { + "@parcel/diagnostic": "2.6.2", + "@parcel/fs": "2.6.2", + "@parcel/logger": "2.6.2", + "@parcel/types": "2.6.2", + "@parcel/utils": "2.6.2", + "@parcel/workers": "2.6.2", + "semver": "^5.7.1" + } + }, + "@parcel/types": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/types/-/types-2.6.2.tgz", + "integrity": "sha512-MV8BFpCIs2jMUvK2RHqzkoiuOQ//JIbrD1zocA2YRW3zuPL/iABvbAABJoXpoPCKikVWOoCWASgBfWQo26VvJQ==", + "requires": { + "@parcel/cache": "2.6.2", + "@parcel/diagnostic": "2.6.2", + "@parcel/fs": "2.6.2", + "@parcel/package-manager": "2.6.2", + "@parcel/source-map": "^2.0.0", + "@parcel/workers": "2.6.2", + "utility-types": "^3.10.0" + } + }, + "@parcel/utils": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/utils/-/utils-2.6.2.tgz", + "integrity": "sha512-Ug7hpRxjgbY5AopW55nY7MmGMVmwmN+ihfCmxJkBUoESTG/3iq8uME7GjyOgW5DkQc2K7q62i8y8N0wCJT1u4Q==", + "requires": { + "@parcel/codeframe": "2.6.2", + "@parcel/diagnostic": "2.6.2", + "@parcel/hash": "2.6.2", + "@parcel/logger": "2.6.2", + "@parcel/markdown-ansi": "2.6.2", + "@parcel/source-map": "^2.0.0", + "chalk": "^4.1.0" + } + }, + "@parcel/workers": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/workers/-/workers-2.6.2.tgz", + "integrity": "sha512-wBgUjJQm+lDd12fPRUmk09+ujTA9DgwPdqylSFK0OtI/yT6A+2kArUqjp8IwWo2tCJXoMzXBne2XQIWKqMiN4Q==", + "requires": { + "@parcel/diagnostic": "2.6.2", + "@parcel/logger": "2.6.2", + "@parcel/types": "2.6.2", + "@parcel/utils": "2.6.2", + "chrome-trace-event": "^1.0.2", + "nullthrows": "^1.1.1" + } + }, + "lmdb": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/lmdb/-/lmdb-2.5.2.tgz", + "integrity": "sha512-V5V5Xa2Hp9i2XsbDALkBTeHXnBXh/lEmk9p22zdr7jtuOIY9TGhjK6vAvTpOOx9IKU4hJkRWZxn/HsvR1ELLtA==", + "requires": { + "@lmdb/lmdb-darwin-arm64": "2.5.2", + "@lmdb/lmdb-darwin-x64": "2.5.2", + "@lmdb/lmdb-linux-arm": "2.5.2", + "@lmdb/lmdb-linux-arm64": "2.5.2", + "@lmdb/lmdb-linux-x64": "2.5.2", + "@lmdb/lmdb-win32-x64": "2.5.2", + "msgpackr": "^1.5.4", + "node-addon-api": "^4.3.0", + "node-gyp-build-optional-packages": "5.0.3", + "ordered-binary": "^1.2.4", + "weak-lru-cache": "^1.2.2" + } + }, + "node-addon-api": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-4.3.0.tgz", + "integrity": "sha512-73sE9+3UaLYYFmDsFZnqCInzPyh3MqIwZO9cw58yIqAZhONrrabrYyYe3TuIqtIiOuTXVhsGau8hcrhhwSsDIQ==" + }, + "node-gyp-build-optional-packages": { + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/node-gyp-build-optional-packages/-/node-gyp-build-optional-packages-5.0.3.tgz", + "integrity": "sha512-k75jcVzk5wnnc/FMxsf4udAoTEUv2jY3ycfdSd3yWu6Cnd1oee6/CfZJApyscA4FJOmdoixWwiwOyf16RzD5JA==" + }, + "semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==" + } } }, "@gatsbyjs/potrace": { @@ -3720,9 +3946,9 @@ } }, "@types/estree": { - "version": "0.0.52", - "resolved": "https://registry.npmjs.org/@types/estree/-/estree-0.0.52.tgz", - "integrity": "sha512-BZWrtCU0bMVAIliIV+HJO1f1PR41M7NKjfxrFJwwhKI1KwhwOxYw1SXg9ao+CIMt774nFuGiG6eU+udtbEI9oQ==" + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.0.tgz", + "integrity": "sha512-WulqXMDUTYAXCjZnk6JtIHPigp55cVtDgDrO2gHRwhyJto21+1zbVCtOYB2L1F9w4qCQ0rOGWBnBe0FNTiEJIQ==" }, "@types/get-port": { "version": "3.2.0", @@ -4046,9 +4272,12 @@ } }, "@vercel/webpack-asset-relocator-loader": { - "version": "1.7.2", - "resolved": "https://registry.npmjs.org/@vercel/webpack-asset-relocator-loader/-/webpack-asset-relocator-loader-1.7.2.tgz", - "integrity": "sha512-pdMwUawmAtH/LScbjKJq/y2+gZFggFMc2tlJrlPSrgKajvYPEis3L9QKcMyC9RN1Xos4ezAP5AJfRCNN6RMKCQ==" + "version": "1.7.3", + "resolved": "https://registry.npmjs.org/@vercel/webpack-asset-relocator-loader/-/webpack-asset-relocator-loader-1.7.3.tgz", + "integrity": "sha512-vizrI18v8Lcb1PmNNUBz7yxPxxXoOeuaVEjTG9MjvDrphjiSxFZrRJ5tIghk+qdLFRCXI5HBCshgobftbmrC5g==", + "requires": { + "resolve": "^1.10.0" + } }, "@webassemblyjs/ast": { "version": "1.11.1", @@ -6224,9 +6453,9 @@ "integrity": "sha512-5yxLQ22O0fCRGoxGfeLSNt3J8LB1v+umtpMnPW6XjkTWXKoN0AmXAIhelJcDtFT/Y/wYWmfE+oqU10Q0b8FhaQ==" }, "axe-core": { - "version": "4.4.2", - "resolved": "https://registry.npmjs.org/axe-core/-/axe-core-4.4.2.tgz", - "integrity": "sha512-LVAaGp/wkkgYJcjmHsoKx4juT1aQvJyPcW09MLCjVTh3V2cc6PnyempiLMNH5iMdfIX/zdbjUx2KDjMLCTdPeA==" + "version": "4.4.3", + "resolved": "https://registry.npmjs.org/axe-core/-/axe-core-4.4.3.tgz", + "integrity": "sha512-32+ub6kkdhhWick/UjvEwRchgoetXqTK14INLqbGm5U2TzBkBNF3nQtLYm8ovxSkQWArjEQvftCKryjZaATu3w==" }, "axios": { "version": "0.21.4", @@ -6713,13 +6942,13 @@ "integrity": "sha512-Tfn5JSE7hrUlFcOoaLzVvkbgIemIorMIyoMr3TgvszWW7jFt2C9PdeMLtysYD9RU0MmU17b69+XJG1eRY2OBRg==" }, "browserslist": { - "version": "4.21.1", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.1.tgz", - "integrity": "sha512-Nq8MFCSrnJXSc88yliwlzQe3qNe3VntIjhsArW9IJOEPSHNx23FalwApUVbzAWABLhYJJ7y8AynWI/XM8OdfjQ==", + "version": "4.21.2", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.2.tgz", + "integrity": "sha512-MonuOgAtUB46uP5CezYbRaYKBNt2LxP0yX+Pmj4LkcDFGkn9Cbpi83d9sCjwQDErXsIJSzY5oKGDbgOlF/LPAA==", "requires": { - "caniuse-lite": "^1.0.30001359", - "electron-to-chromium": "^1.4.172", - "node-releases": "^2.0.5", + "caniuse-lite": "^1.0.30001366", + "electron-to-chromium": "^1.4.188", + "node-releases": "^2.0.6", "update-browserslist-db": "^1.0.4" } }, @@ -6888,9 +7117,9 @@ } }, "caniuse-lite": { - "version": "1.0.30001365", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001365.tgz", - "integrity": "sha512-VDQZ8OtpuIPMBA4YYvZXECtXbddMCUFJk1qu8Mqxfm/SZJNSr1cy4IuLCOL7RJ/YASrvJcYg1Zh+UEUQ5m6z8Q==" + "version": "1.0.30001366", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001366.tgz", + "integrity": "sha512-yy7XLWCubDobokgzudpkKux8e0UOOnLHE6mlNJBzT3lZJz6s5atSEzjoL+fsCPkI0G8MP5uVdDx1ur/fXEWkZA==" }, "capital-case": { "version": "1.0.4", @@ -8286,9 +8515,9 @@ "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==" }, "electron-to-chromium": { - "version": "1.4.186", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.186.tgz", - "integrity": "sha512-YoVeFrGd/7ROjz4R9uPoND1K/hSRC/xADy9639ZmIZeJSaBnKdYx3I6LMPsY7CXLpK7JFgKQVzeZ/dk2br6Eaw==" + "version": "1.4.188", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.188.tgz", + "integrity": "sha512-Zpa1+E+BVmD/orkyz1Z2dAT1XNUuVAHB3GrogfyY66dXN0ZWSsygI8+u6QTDai1ZayLcATDJpcv2Z2AZjEcr1A==" }, "emoji-regex": { "version": "8.0.0", @@ -9712,9 +9941,9 @@ "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==" }, "gatsby": { - "version": "4.18.1", - "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-4.18.1.tgz", - "integrity": "sha512-frMFAWOmMl/CtqBZ3aZXlysicQQa8C+yfMdjnjx81f7E5xoL20klk1j4UYj1kUnGgBMSuVehU8M+bE0kT02zoQ==", + "version": "4.18.2", + "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-4.18.2.tgz", + "integrity": "sha512-ZWdo0TXsSRmwlmOeeuoWwXKQNteHm9VxJWF9Ud+c33r7ZXQgTA5WtRYjiBpjZuNAUwsiONNAe+wKK5jVY8B4LQ==", "requires": { "@babel/code-frame": "^7.14.0", "@babel/core": "^7.15.5", @@ -9800,7 +10029,7 @@ "gatsby-legacy-polyfills": "^2.18.0", "gatsby-link": "^4.18.1", "gatsby-page-utils": "^2.18.1", - "gatsby-parcel-config": "^0.9.1", + "gatsby-parcel-config": "^0.9.2", "gatsby-plugin-page-creator": "^4.18.1", "gatsby-plugin-typescript": "^4.18.1", "gatsby-plugin-utils": "^3.12.1", @@ -10038,11 +10267,11 @@ } }, "gatsby-parcel-config": { - "version": "0.9.1", - "resolved": "https://registry.npmjs.org/gatsby-parcel-config/-/gatsby-parcel-config-0.9.1.tgz", - "integrity": "sha512-ZtVntsQYs0xhy1hvWUMeSLc4a+DvxtTf+NUrPF4rvBjOW/LPMx2eYDzPddKvqWmiUaT1+Ki9S9bwCuOp5muawg==", + "version": "0.9.2", + "resolved": "https://registry.npmjs.org/gatsby-parcel-config/-/gatsby-parcel-config-0.9.2.tgz", + "integrity": "sha512-ONykPoYCoFs89M8Hio0TSrUQEpwXwbSiV8aCcPH9L6w3eros9RlWrwAwnWb+lPDNJT5BsereBjefoS9cC6mpVA==", "requires": { - "@gatsbyjs/parcel-namer-relative-to-cwd": "^1.3.1", + "@gatsbyjs/parcel-namer-relative-to-cwd": "^1.3.2", "@parcel/bundler-default": "2.6.0", "@parcel/compressor-raw": "2.6.0", "@parcel/namer-default": "2.6.0", @@ -15998,9 +16227,9 @@ "integrity": "sha512-wK0Ri4fOGjv/XPy8SBHZChl8CM7uMc5VML7SqiQ0zG7+J5Vr+RMQDoHa2CNT6KHUnTGIXH34UDMkPzAUyapBZg==" }, "terser": { - "version": "5.14.1", - "resolved": "https://registry.npmjs.org/terser/-/terser-5.14.1.tgz", - "integrity": "sha512-+ahUAE+iheqBTDxXhTisdA8hgvbEG1hHOQ9xmNjeUJSoi6DU/gMrKNcfZjHkyY6Alnuyc+ikYJaxxfHkT3+WuQ==", + "version": "5.14.2", + "resolved": "https://registry.npmjs.org/terser/-/terser-5.14.2.tgz", + "integrity": "sha512-oL0rGeM/WFQCUd0y2QrWxYnq7tfSuKBiqTjRPWrRgB46WD/kiwHwF8T23z78H6Q6kGCuuHcPB+KULHRdxvVGQA==", "requires": { "@jridgewell/source-map": "^0.3.2", "acorn": "^8.5.0", diff --git a/starters/gatsby-starter-wordpress-blog/package.json b/starters/gatsby-starter-wordpress-blog/package.json index 44863a22da591..b0ca7d221ce22 100644 --- a/starters/gatsby-starter-wordpress-blog/package.json +++ b/starters/gatsby-starter-wordpress-blog/package.json @@ -9,7 +9,7 @@ }, "dependencies": { "@wordpress/block-library": "^2.29.3", - "gatsby": "^4.18.1", + "gatsby": "^4.18.2", "gatsby-image": "^3.11.0", "gatsby-plugin-image": "^2.18.1", "gatsby-plugin-manifest": "^4.18.1", diff --git a/starters/hello-world/package-lock.json b/starters/hello-world/package-lock.json index 9a19bf1576469..452e7a6e06906 100644 --- a/starters/hello-world/package-lock.json +++ b/starters/hello-world/package-lock.json @@ -1317,13 +1317,239 @@ } }, "@gatsbyjs/parcel-namer-relative-to-cwd": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/@gatsbyjs/parcel-namer-relative-to-cwd/-/parcel-namer-relative-to-cwd-1.3.1.tgz", - "integrity": "sha512-wN4iU1CWumvhcuzMBKdDikZ5xgo81Ias09bKyjE36DgNxTzAhT2fXZIBAAEUlv/GBQqFe6Eas83gGGtXf31hiw==", + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/@gatsbyjs/parcel-namer-relative-to-cwd/-/parcel-namer-relative-to-cwd-1.3.2.tgz", + "integrity": "sha512-jiYGiq8Zk21x2IIWbsLQ0GqgGJyKjj+/4jYwr5msD5ORB/JAZLk4IDrMKZ9rFXkNPq/bRV57ub0k/NvRMELfLQ==", "requires": { "@babel/runtime": "^7.18.0", + "@parcel/namer-default": "2.6.2", "@parcel/plugin": "2.6.0", "gatsby-core-utils": "^3.18.1" + }, + "dependencies": { + "@lmdb/lmdb-darwin-arm64": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-arm64/-/lmdb-darwin-arm64-2.5.2.tgz", + "integrity": "sha512-+F8ioQIUN68B4UFiIBYu0QQvgb9FmlKw2ctQMSBfW2QBrZIxz9vD9jCGqTCPqZBRbPHAS/vG1zSXnKqnS2ch/A==", + "optional": true + }, + "@lmdb/lmdb-darwin-x64": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-x64/-/lmdb-darwin-x64-2.5.2.tgz", + "integrity": "sha512-KvPH56KRLLx4KSfKBx0m1r7GGGUMXm0jrKmNE7plbHlesZMuPJICtn07HYgQhj1LNsK7Yqwuvnqh1QxhJnF1EA==", + "optional": true + }, + "@lmdb/lmdb-linux-arm": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm/-/lmdb-linux-arm-2.5.2.tgz", + "integrity": "sha512-5kQAP21hAkfW5Bl+e0P57dV4dGYnkNIpR7f/GAh6QHlgXx+vp/teVj4PGRZaKAvt0GX6++N6hF8NnGElLDuIDw==", + "optional": true + }, + "@lmdb/lmdb-linux-arm64": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm64/-/lmdb-linux-arm64-2.5.2.tgz", + "integrity": "sha512-aLl89VHL/wjhievEOlPocoefUyWdvzVrcQ/MHQYZm2JfV1jUsrbr/ZfkPPUFvZBf+VSE+Q0clWs9l29PCX1hTQ==", + "optional": true + }, + "@lmdb/lmdb-linux-x64": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-x64/-/lmdb-linux-x64-2.5.2.tgz", + "integrity": "sha512-xUdUfwDJLGjOUPH3BuPBt0NlIrR7f/QHKgu3GZIXswMMIihAekj2i97oI0iWG5Bok/b+OBjHPfa8IU9velnP/Q==", + "optional": true + }, + "@lmdb/lmdb-win32-x64": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-win32-x64/-/lmdb-win32-x64-2.5.2.tgz", + "integrity": "sha512-zrBczSbXKxEyK2ijtbRdICDygRqWSRPpZMN5dD1T8VMEW5RIhIbwFWw2phDRXuBQdVDpSjalCIUMWMV2h3JaZA==", + "optional": true + }, + "@parcel/cache": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/cache/-/cache-2.6.2.tgz", + "integrity": "sha512-hhJ6AsEGybeQZd9c/GYqfcKTgZKQXu3Xih6TlnP3gdR3KZoJOnb40ovHD1yYg4COvfcXThKP1cVJ18J6rcv3IA==", + "requires": { + "@parcel/fs": "2.6.2", + "@parcel/logger": "2.6.2", + "@parcel/utils": "2.6.2", + "lmdb": "2.5.2" + } + }, + "@parcel/codeframe": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/codeframe/-/codeframe-2.6.2.tgz", + "integrity": "sha512-oFlHr6HCaYYsB4SHkU+gn9DKtbzvv3/4NdwMX0/6NAKyYVI7inEsXyPGw2Bbd2ZCFatW9QJZUETF0etvh5AEfQ==", + "requires": { + "chalk": "^4.1.0" + } + }, + "@parcel/diagnostic": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/diagnostic/-/diagnostic-2.6.2.tgz", + "integrity": "sha512-3ODSBkKVihENU763z1/1DhGAWFhYWRxOCOShC72KXp+GFnSgGiBsxclu8NBa/N948Rzp8lqQI8U1nLcKkh0O/w==", + "requires": { + "@mischnic/json-sourcemap": "^0.1.0", + "nullthrows": "^1.1.1" + } + }, + "@parcel/events": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/events/-/events-2.6.2.tgz", + "integrity": "sha512-IaCjOeA5ercdFVi1EZOmUHhGfIysmCUgc2Th9hMugSFO0I3GzRsBcAdP6XPfWm+TV6sQ/qZRfdk/drUxoAupnw==" + }, + "@parcel/fs": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/fs/-/fs-2.6.2.tgz", + "integrity": "sha512-mIhqdF3tjgeoIGqW7Nc/xfM2ClID7o8livwUe5lpQEP+ZaIBiMigXs6ckv3WToCACK+3uylrSD2A/HmlhrxMqQ==", + "requires": { + "@parcel/fs-search": "2.6.2", + "@parcel/types": "2.6.2", + "@parcel/utils": "2.6.2", + "@parcel/watcher": "^2.0.0", + "@parcel/workers": "2.6.2" + } + }, + "@parcel/fs-search": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/fs-search/-/fs-search-2.6.2.tgz", + "integrity": "sha512-4STid1zqtGnmGjHD/2TG2g/zPDiCTtE3IAS24QYH3eiUAz2uoKGgEqd2tZbZ2yI96jtCuIhC1bzVu8Hbykls7w==", + "requires": { + "detect-libc": "^1.0.3" + } + }, + "@parcel/hash": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/hash/-/hash-2.6.2.tgz", + "integrity": "sha512-tFB+cJU1Wqag6WyJgsmx3nx+xhmjcNZqtWh/MtK1lHNnZdDRk6bjr7SapnygBwruz+SmSt5bbdVThcpk2dRCcA==", + "requires": { + "detect-libc": "^1.0.3", + "xxhash-wasm": "^0.4.2" + } + }, + "@parcel/logger": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/logger/-/logger-2.6.2.tgz", + "integrity": "sha512-Sz5YGCj1DbEiX0/G8Uw97LLZ0uEK+qtWcRAkHNpJpeMiSqDiRNevxXltz42EcLo+oCh4d4wyiVzwi9mNwzhS/Q==", + "requires": { + "@parcel/diagnostic": "2.6.2", + "@parcel/events": "2.6.2" + } + }, + "@parcel/markdown-ansi": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/markdown-ansi/-/markdown-ansi-2.6.2.tgz", + "integrity": "sha512-N/h9J4eibhc+B+krzvPMzFUWL37GudBIZBa7XSLkcuH6MnYYfh6rrMvhIyyESwk6VkcZNVzAeZrGQqxEs0dHDQ==", + "requires": { + "chalk": "^4.1.0" + } + }, + "@parcel/namer-default": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/namer-default/-/namer-default-2.6.2.tgz", + "integrity": "sha512-mp7bx/BQaIuohmZP0uE+gAmDBzzH0Yu8F4yCtE611lc6i0mou+nWRhzyKLNC/ieuI8DB3BFh2QQKeTxJn4W0qg==", + "requires": { + "@parcel/diagnostic": "2.6.2", + "@parcel/plugin": "2.6.2", + "nullthrows": "^1.1.1" + }, + "dependencies": { + "@parcel/plugin": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/plugin/-/plugin-2.6.2.tgz", + "integrity": "sha512-wbbWsM23Pr+8xtLSvf+UopXdVYlpKCCx6PuuZaZcKo+9IcDCWoGXD4M8Kkz14qBmkFn5uM00mULUqmVdSibB2w==", + "requires": { + "@parcel/types": "2.6.2" + } + } + } + }, + "@parcel/package-manager": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/package-manager/-/package-manager-2.6.2.tgz", + "integrity": "sha512-xGMqTgnwTE3rgzYwUZMKxR8fzmP5iSYz/gj2H8FR3pEmwh/8xCMtNjTSth+hPVGuqgRZ6JxwpfdY/fXdZ61ViQ==", + "requires": { + "@parcel/diagnostic": "2.6.2", + "@parcel/fs": "2.6.2", + "@parcel/logger": "2.6.2", + "@parcel/types": "2.6.2", + "@parcel/utils": "2.6.2", + "@parcel/workers": "2.6.2", + "semver": "^5.7.1" + } + }, + "@parcel/types": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/types/-/types-2.6.2.tgz", + "integrity": "sha512-MV8BFpCIs2jMUvK2RHqzkoiuOQ//JIbrD1zocA2YRW3zuPL/iABvbAABJoXpoPCKikVWOoCWASgBfWQo26VvJQ==", + "requires": { + "@parcel/cache": "2.6.2", + "@parcel/diagnostic": "2.6.2", + "@parcel/fs": "2.6.2", + "@parcel/package-manager": "2.6.2", + "@parcel/source-map": "^2.0.0", + "@parcel/workers": "2.6.2", + "utility-types": "^3.10.0" + } + }, + "@parcel/utils": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/utils/-/utils-2.6.2.tgz", + "integrity": "sha512-Ug7hpRxjgbY5AopW55nY7MmGMVmwmN+ihfCmxJkBUoESTG/3iq8uME7GjyOgW5DkQc2K7q62i8y8N0wCJT1u4Q==", + "requires": { + "@parcel/codeframe": "2.6.2", + "@parcel/diagnostic": "2.6.2", + "@parcel/hash": "2.6.2", + "@parcel/logger": "2.6.2", + "@parcel/markdown-ansi": "2.6.2", + "@parcel/source-map": "^2.0.0", + "chalk": "^4.1.0" + } + }, + "@parcel/workers": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/workers/-/workers-2.6.2.tgz", + "integrity": "sha512-wBgUjJQm+lDd12fPRUmk09+ujTA9DgwPdqylSFK0OtI/yT6A+2kArUqjp8IwWo2tCJXoMzXBne2XQIWKqMiN4Q==", + "requires": { + "@parcel/diagnostic": "2.6.2", + "@parcel/logger": "2.6.2", + "@parcel/types": "2.6.2", + "@parcel/utils": "2.6.2", + "chrome-trace-event": "^1.0.2", + "nullthrows": "^1.1.1" + } + }, + "lmdb": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/lmdb/-/lmdb-2.5.2.tgz", + "integrity": "sha512-V5V5Xa2Hp9i2XsbDALkBTeHXnBXh/lEmk9p22zdr7jtuOIY9TGhjK6vAvTpOOx9IKU4hJkRWZxn/HsvR1ELLtA==", + "requires": { + "@lmdb/lmdb-darwin-arm64": "2.5.2", + "@lmdb/lmdb-darwin-x64": "2.5.2", + "@lmdb/lmdb-linux-arm": "2.5.2", + "@lmdb/lmdb-linux-arm64": "2.5.2", + "@lmdb/lmdb-linux-x64": "2.5.2", + "@lmdb/lmdb-win32-x64": "2.5.2", + "msgpackr": "^1.5.4", + "node-addon-api": "^4.3.0", + "node-gyp-build-optional-packages": "5.0.3", + "ordered-binary": "^1.2.4", + "weak-lru-cache": "^1.2.2" + } + }, + "node-addon-api": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-4.3.0.tgz", + "integrity": "sha512-73sE9+3UaLYYFmDsFZnqCInzPyh3MqIwZO9cw58yIqAZhONrrabrYyYe3TuIqtIiOuTXVhsGau8hcrhhwSsDIQ==" + }, + "node-gyp-build-optional-packages": { + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/node-gyp-build-optional-packages/-/node-gyp-build-optional-packages-5.0.3.tgz", + "integrity": "sha512-k75jcVzk5wnnc/FMxsf4udAoTEUv2jY3ycfdSd3yWu6Cnd1oee6/CfZJApyscA4FJOmdoixWwiwOyf16RzD5JA==" + }, + "semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==" + } } }, "@gatsbyjs/potrace": { @@ -2951,9 +3177,9 @@ } }, "@types/estree": { - "version": "0.0.52", - "resolved": "https://registry.npmjs.org/@types/estree/-/estree-0.0.52.tgz", - "integrity": "sha512-BZWrtCU0bMVAIliIV+HJO1f1PR41M7NKjfxrFJwwhKI1KwhwOxYw1SXg9ao+CIMt774nFuGiG6eU+udtbEI9oQ==" + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.0.tgz", + "integrity": "sha512-WulqXMDUTYAXCjZnk6JtIHPigp55cVtDgDrO2gHRwhyJto21+1zbVCtOYB2L1F9w4qCQ0rOGWBnBe0FNTiEJIQ==" }, "@types/get-port": { "version": "3.2.0", @@ -3232,9 +3458,12 @@ } }, "@vercel/webpack-asset-relocator-loader": { - "version": "1.7.2", - "resolved": "https://registry.npmjs.org/@vercel/webpack-asset-relocator-loader/-/webpack-asset-relocator-loader-1.7.2.tgz", - "integrity": "sha512-pdMwUawmAtH/LScbjKJq/y2+gZFggFMc2tlJrlPSrgKajvYPEis3L9QKcMyC9RN1Xos4ezAP5AJfRCNN6RMKCQ==" + "version": "1.7.3", + "resolved": "https://registry.npmjs.org/@vercel/webpack-asset-relocator-loader/-/webpack-asset-relocator-loader-1.7.3.tgz", + "integrity": "sha512-vizrI18v8Lcb1PmNNUBz7yxPxxXoOeuaVEjTG9MjvDrphjiSxFZrRJ5tIghk+qdLFRCXI5HBCshgobftbmrC5g==", + "requires": { + "resolve": "^1.10.0" + } }, "@webassemblyjs/ast": { "version": "1.11.1", @@ -3654,9 +3883,9 @@ } }, "axe-core": { - "version": "4.4.2", - "resolved": "https://registry.npmjs.org/axe-core/-/axe-core-4.4.2.tgz", - "integrity": "sha512-LVAaGp/wkkgYJcjmHsoKx4juT1aQvJyPcW09MLCjVTh3V2cc6PnyempiLMNH5iMdfIX/zdbjUx2KDjMLCTdPeA==" + "version": "4.4.3", + "resolved": "https://registry.npmjs.org/axe-core/-/axe-core-4.4.3.tgz", + "integrity": "sha512-32+ub6kkdhhWick/UjvEwRchgoetXqTK14INLqbGm5U2TzBkBNF3nQtLYm8ovxSkQWArjEQvftCKryjZaATu3w==" }, "axios": { "version": "0.21.4", @@ -4007,13 +4236,13 @@ } }, "browserslist": { - "version": "4.21.1", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.1.tgz", - "integrity": "sha512-Nq8MFCSrnJXSc88yliwlzQe3qNe3VntIjhsArW9IJOEPSHNx23FalwApUVbzAWABLhYJJ7y8AynWI/XM8OdfjQ==", + "version": "4.21.2", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.2.tgz", + "integrity": "sha512-MonuOgAtUB46uP5CezYbRaYKBNt2LxP0yX+Pmj4LkcDFGkn9Cbpi83d9sCjwQDErXsIJSzY5oKGDbgOlF/LPAA==", "requires": { - "caniuse-lite": "^1.0.30001359", - "electron-to-chromium": "^1.4.172", - "node-releases": "^2.0.5", + "caniuse-lite": "^1.0.30001366", + "electron-to-chromium": "^1.4.188", + "node-releases": "^2.0.6", "update-browserslist-db": "^1.0.4" } }, @@ -4161,9 +4390,9 @@ } }, "caniuse-lite": { - "version": "1.0.30001365", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001365.tgz", - "integrity": "sha512-VDQZ8OtpuIPMBA4YYvZXECtXbddMCUFJk1qu8Mqxfm/SZJNSr1cy4IuLCOL7RJ/YASrvJcYg1Zh+UEUQ5m6z8Q==" + "version": "1.0.30001366", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001366.tgz", + "integrity": "sha512-yy7XLWCubDobokgzudpkKux8e0UOOnLHE6mlNJBzT3lZJz6s5atSEzjoL+fsCPkI0G8MP5uVdDx1ur/fXEWkZA==" }, "capital-case": { "version": "1.0.4", @@ -5270,9 +5499,9 @@ "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==" }, "electron-to-chromium": { - "version": "1.4.186", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.186.tgz", - "integrity": "sha512-YoVeFrGd/7ROjz4R9uPoND1K/hSRC/xADy9639ZmIZeJSaBnKdYx3I6LMPsY7CXLpK7JFgKQVzeZ/dk2br6Eaw==" + "version": "1.4.188", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.188.tgz", + "integrity": "sha512-Zpa1+E+BVmD/orkyz1Z2dAT1XNUuVAHB3GrogfyY66dXN0ZWSsygI8+u6QTDai1ZayLcATDJpcv2Z2AZjEcr1A==" }, "emoji-regex": { "version": "8.0.0", @@ -6618,9 +6847,9 @@ "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==" }, "gatsby": { - "version": "4.18.1", - "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-4.18.1.tgz", - "integrity": "sha512-frMFAWOmMl/CtqBZ3aZXlysicQQa8C+yfMdjnjx81f7E5xoL20klk1j4UYj1kUnGgBMSuVehU8M+bE0kT02zoQ==", + "version": "4.18.2", + "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-4.18.2.tgz", + "integrity": "sha512-ZWdo0TXsSRmwlmOeeuoWwXKQNteHm9VxJWF9Ud+c33r7ZXQgTA5WtRYjiBpjZuNAUwsiONNAe+wKK5jVY8B4LQ==", "requires": { "@babel/code-frame": "^7.14.0", "@babel/core": "^7.15.5", @@ -6706,7 +6935,7 @@ "gatsby-legacy-polyfills": "^2.18.0", "gatsby-link": "^4.18.1", "gatsby-page-utils": "^2.18.1", - "gatsby-parcel-config": "^0.9.1", + "gatsby-parcel-config": "^0.9.2", "gatsby-plugin-page-creator": "^4.18.1", "gatsby-plugin-typescript": "^4.18.1", "gatsby-plugin-utils": "^3.12.1", @@ -6921,11 +7150,11 @@ } }, "gatsby-parcel-config": { - "version": "0.9.1", - "resolved": "https://registry.npmjs.org/gatsby-parcel-config/-/gatsby-parcel-config-0.9.1.tgz", - "integrity": "sha512-ZtVntsQYs0xhy1hvWUMeSLc4a+DvxtTf+NUrPF4rvBjOW/LPMx2eYDzPddKvqWmiUaT1+Ki9S9bwCuOp5muawg==", + "version": "0.9.2", + "resolved": "https://registry.npmjs.org/gatsby-parcel-config/-/gatsby-parcel-config-0.9.2.tgz", + "integrity": "sha512-ONykPoYCoFs89M8Hio0TSrUQEpwXwbSiV8aCcPH9L6w3eros9RlWrwAwnWb+lPDNJT5BsereBjefoS9cC6mpVA==", "requires": { - "@gatsbyjs/parcel-namer-relative-to-cwd": "^1.3.1", + "@gatsbyjs/parcel-namer-relative-to-cwd": "^1.3.2", "@parcel/bundler-default": "2.6.0", "@parcel/compressor-raw": "2.6.0", "@parcel/namer-default": "2.6.0", @@ -11390,9 +11619,9 @@ "integrity": "sha512-wK0Ri4fOGjv/XPy8SBHZChl8CM7uMc5VML7SqiQ0zG7+J5Vr+RMQDoHa2CNT6KHUnTGIXH34UDMkPzAUyapBZg==" }, "terser": { - "version": "5.14.1", - "resolved": "https://registry.npmjs.org/terser/-/terser-5.14.1.tgz", - "integrity": "sha512-+ahUAE+iheqBTDxXhTisdA8hgvbEG1hHOQ9xmNjeUJSoi6DU/gMrKNcfZjHkyY6Alnuyc+ikYJaxxfHkT3+WuQ==", + "version": "5.14.2", + "resolved": "https://registry.npmjs.org/terser/-/terser-5.14.2.tgz", + "integrity": "sha512-oL0rGeM/WFQCUd0y2QrWxYnq7tfSuKBiqTjRPWrRgB46WD/kiwHwF8T23z78H6Q6kGCuuHcPB+KULHRdxvVGQA==", "requires": { "@jridgewell/source-map": "^0.3.2", "acorn": "^8.5.0", diff --git a/starters/hello-world/package.json b/starters/hello-world/package.json index 4a624bbd8bede..4ca018b1c9827 100644 --- a/starters/hello-world/package.json +++ b/starters/hello-world/package.json @@ -14,7 +14,7 @@ "test": "echo \"Write tests! -> https://gatsby.dev/unit-testing\" && exit 1" }, "dependencies": { - "gatsby": "^4.18.1", + "gatsby": "^4.18.2", "react": "^18.1.0", "react-dom": "^18.1.0" }, From 40810c46d18753ea10c8f60ebdabc164482e7983 Mon Sep 17 00:00:00 2001 From: Jude Agboola Date: Thu, 14 Jul 2022 13:05:52 +0100 Subject: [PATCH 26/90] feat(gatsby): Gatsby Head API (#35980) Co-authored-by: Michal Piechowiak Co-authored-by: pieh Co-authored-by: tyhopp Co-authored-by: Lennart Co-authored-by: Ty Hopp --- .circleci/config.yml | 9 ++ .../limited-exports-page-templates.js | 6 +- .../head-function-export/correct-props.js | 32 ++++ .../head-function-export/fs-route-api.js | 6 + .../head-function-export/html-insertion.js | 99 ++++++++++++ .../head-function-export/invalid-elements.js | 13 ++ .../head-function-export/navigation.js | 114 ++++++++++++++ .../head-function-export/typescript.js | 11 ++ .../head-function-export/warnings.js | 28 ++++ .../integration/hot-reloading/head-export.js | 28 ++++ .../hot-reloading/page-component.js | 32 +++- .../development-runtime/gatsby-config.js | 6 + e2e-tests/development-runtime/gatsby-node.js | 29 ++++ .../shared-data/head-function-export.js | 63 ++++++++ .../src/components/head-function-export.js | 67 ++++++++ .../src/pages/head-function-export/basic.js | 55 +++++++ .../src/pages/head-function-export/dsg.js | 35 +++++ .../head-function-export/invalid-elements.js | 22 +++ .../pages/head-function-export/page-query.js | 61 ++++++++ .../re-exported-function.js | 12 ++ .../src/pages/head-function-export/ssr.js | 37 +++++ .../static-query-component.js | 15 ++ .../pages/head-function-export/tsx-page.tsx | 23 +++ .../pages/head-function-export/warnings.js | 20 +++ .../head-function-export/without-head.js | 9 ++ .../{HeadFunctionExportFsRouteApi.slug}.js | 16 ++ .../head-function-export/correct-props.js | 58 +++++++ .../used-by-head-function-export-basic.css | 3 + .../used-by-head-function-export-dsg.css | 3 + .../used-by-head-function-export-query.css | 3 + .../used-by-head-function-export-ssr.css | 3 + .../head-function-export/fs-route-api.js | 6 + .../head-function-export/html-insertion.js | 99 ++++++++++++ .../head-function-export/invalid-elements.js | 13 ++ .../head-function-export/navigation.js | 114 ++++++++++++++ .../head-function-export/typescript.js | 11 ++ e2e-tests/production-runtime/gatsby-config.js | 6 + e2e-tests/production-runtime/gatsby-node.ts | 20 +++ .../shared-data/head-function-export.js | 59 +++++++ .../src/components/head-function-export.js | 67 ++++++++ .../src/pages/head-function-export/basic.js | 41 +++++ .../src/pages/head-function-export/dsg.js | 35 +++++ .../head-function-export/invalid-elements.js | 22 +++ .../pages/head-function-export/page-query.js | 61 ++++++++ .../re-exported-function.js | 12 ++ .../src/pages/head-function-export/ssr.js | 37 +++++ .../static-query-component.js | 15 ++ .../pages/head-function-export/tsx-page.tsx | 23 +++ .../head-function-export/without-head.js | 9 ++ .../{HeadFunctionExportFsRouteApi.slug}.js | 15 ++ .../used-by-head-function-export-basic.css | 3 + .../used-by-head-function-export-dsg.css | 3 + .../used-by-head-function-export-query.css | 3 + .../used-by-head-function-export-ssr.css | 3 + .../head-function-export/.gitignore | 3 + .../head-function-export/README.md | 15 ++ .../__tests__/ssr-html-output.js | 76 +++++++++ .../head-function-export/gatsby-config.js | 11 ++ .../head-function-export/jest-transformer.js | 5 + .../head-function-export/jest.config.js | 13 ++ .../head-function-export/package.json | 29 ++++ .../shared-data/head-function-export.js | 31 ++++ .../src/components/head-function-export.js | 67 ++++++++ .../head-function-export/src/pages/404.js | 13 ++ .../src/pages/head-function-export/basic.js | 36 +++++ .../pages/head-function-export/page-query.js | 54 +++++++ .../re-exported-function.js | 12 ++ .../static-query-component.js | 15 ++ .../head-function-export/src/pages/index.js | 11 ++ integration-tests/ssr/__tests__/ssr.js | 23 +++ .../ssr/src/pages/head-function-export.js | 9 ++ .../src/babel-preset-react.js | 3 + .../src/__tests__/gatsby-node.js | 7 +- .../src/gatsby-node.js | 11 +- .../__snapshots__/dev-loader.js.snap | 7 +- .../__tests__/__snapshots__/loader.js.snap | 1 + .../gatsby/cache-dir/__tests__/dev-loader.js | 2 + .../gatsby/cache-dir/__tests__/head/utils.js | 145 ++++++++++++++++++ packages/gatsby/cache-dir/__tests__/loader.js | 1 + packages/gatsby/cache-dir/dev-loader.js | 9 +- .../components/runtime-errors.js | 7 +- .../components/fire-callback-in-effect.js | 12 ++ packages/gatsby/cache-dir/head/constants.js | 8 + .../head/head-export-handler-for-browser.js | 82 ++++++++++ .../head/head-export-handler-for-ssr.js | 78 ++++++++++ packages/gatsby/cache-dir/head/utils.js | 59 +++++++ packages/gatsby/cache-dir/loader.js | 54 ++++--- packages/gatsby/cache-dir/page-renderer.js | 62 +++++--- packages/gatsby/cache-dir/production-app.js | 19 +-- packages/gatsby/cache-dir/react-dom-utils.js | 33 ++++ .../cache-dir/ssr-develop-static-entry.js | 14 +- packages/gatsby/cache-dir/static-entry.js | 29 ++-- packages/gatsby/index.d.ts | 29 ++++ packages/gatsby/package.json | 1 + .../gatsby/src/bootstrap/requires-writer.ts | 57 +++++-- packages/gatsby/src/query/file-parser.js | 4 +- .../schema/graphql-engine/bundle-webpack.ts | 21 ++- .../webpack-remove-apis-loader.ts | 26 ---- .../__snapshots__/webpack-utils.ts.snap | 1 + .../gatsby/src/utils/babel-loader-helpers.js | 23 ++- packages/gatsby/src/utils/babel-loader.js | 8 +- .../fixtures/remove-apis/options.json | 3 +- .../remove-apis/re-exported/input.mjs | 7 + .../remove-apis/re-exported/output.mjs | 4 + .../utils/babel/babel-plugin-remove-api.ts | 21 ++- .../limited-exports-page-templates.ts | 17 ++ .../limited-exports-page-templates.ts | 28 +++- packages/gatsby/src/utils/webpack-utils.ts | 3 +- packages/gatsby/src/utils/webpack.config.js | 31 ++-- .../loaders/webpack-remove-exports-loader.ts | 61 ++++++++ .../webpack/plugins/static-query-mapper.ts | 92 +++++++---- yarn.lock | 49 +++++- 112 files changed, 2943 insertions(+), 204 deletions(-) create mode 100644 e2e-tests/development-runtime/cypress/integration/head-function-export/correct-props.js create mode 100644 e2e-tests/development-runtime/cypress/integration/head-function-export/fs-route-api.js create mode 100644 e2e-tests/development-runtime/cypress/integration/head-function-export/html-insertion.js create mode 100644 e2e-tests/development-runtime/cypress/integration/head-function-export/invalid-elements.js create mode 100644 e2e-tests/development-runtime/cypress/integration/head-function-export/navigation.js create mode 100644 e2e-tests/development-runtime/cypress/integration/head-function-export/typescript.js create mode 100644 e2e-tests/development-runtime/cypress/integration/head-function-export/warnings.js create mode 100644 e2e-tests/development-runtime/cypress/integration/hot-reloading/head-export.js create mode 100644 e2e-tests/development-runtime/shared-data/head-function-export.js create mode 100644 e2e-tests/development-runtime/src/components/head-function-export.js create mode 100644 e2e-tests/development-runtime/src/pages/head-function-export/basic.js create mode 100644 e2e-tests/development-runtime/src/pages/head-function-export/dsg.js create mode 100644 e2e-tests/development-runtime/src/pages/head-function-export/invalid-elements.js create mode 100644 e2e-tests/development-runtime/src/pages/head-function-export/page-query.js create mode 100644 e2e-tests/development-runtime/src/pages/head-function-export/re-exported-function.js create mode 100644 e2e-tests/development-runtime/src/pages/head-function-export/ssr.js create mode 100644 e2e-tests/development-runtime/src/pages/head-function-export/static-query-component.js create mode 100644 e2e-tests/development-runtime/src/pages/head-function-export/tsx-page.tsx create mode 100644 e2e-tests/development-runtime/src/pages/head-function-export/warnings.js create mode 100644 e2e-tests/development-runtime/src/pages/head-function-export/without-head.js create mode 100644 e2e-tests/development-runtime/src/pages/head-function-export/{HeadFunctionExportFsRouteApi.slug}.js create mode 100644 e2e-tests/development-runtime/src/templates/head-function-export/correct-props.js create mode 100644 e2e-tests/development-runtime/static/used-by-head-function-export-basic.css create mode 100644 e2e-tests/development-runtime/static/used-by-head-function-export-dsg.css create mode 100644 e2e-tests/development-runtime/static/used-by-head-function-export-query.css create mode 100644 e2e-tests/development-runtime/static/used-by-head-function-export-ssr.css create mode 100644 e2e-tests/production-runtime/cypress/integration/head-function-export/fs-route-api.js create mode 100644 e2e-tests/production-runtime/cypress/integration/head-function-export/html-insertion.js create mode 100644 e2e-tests/production-runtime/cypress/integration/head-function-export/invalid-elements.js create mode 100644 e2e-tests/production-runtime/cypress/integration/head-function-export/navigation.js create mode 100644 e2e-tests/production-runtime/cypress/integration/head-function-export/typescript.js create mode 100644 e2e-tests/production-runtime/shared-data/head-function-export.js create mode 100644 e2e-tests/production-runtime/src/components/head-function-export.js create mode 100644 e2e-tests/production-runtime/src/pages/head-function-export/basic.js create mode 100644 e2e-tests/production-runtime/src/pages/head-function-export/dsg.js create mode 100644 e2e-tests/production-runtime/src/pages/head-function-export/invalid-elements.js create mode 100644 e2e-tests/production-runtime/src/pages/head-function-export/page-query.js create mode 100644 e2e-tests/production-runtime/src/pages/head-function-export/re-exported-function.js create mode 100644 e2e-tests/production-runtime/src/pages/head-function-export/ssr.js create mode 100644 e2e-tests/production-runtime/src/pages/head-function-export/static-query-component.js create mode 100644 e2e-tests/production-runtime/src/pages/head-function-export/tsx-page.tsx create mode 100644 e2e-tests/production-runtime/src/pages/head-function-export/without-head.js create mode 100644 e2e-tests/production-runtime/src/pages/head-function-export/{HeadFunctionExportFsRouteApi.slug}.js create mode 100644 e2e-tests/production-runtime/static/used-by-head-function-export-basic.css create mode 100644 e2e-tests/production-runtime/static/used-by-head-function-export-dsg.css create mode 100644 e2e-tests/production-runtime/static/used-by-head-function-export-query.css create mode 100644 e2e-tests/production-runtime/static/used-by-head-function-export-ssr.css create mode 100644 integration-tests/head-function-export/.gitignore create mode 100644 integration-tests/head-function-export/README.md create mode 100644 integration-tests/head-function-export/__tests__/ssr-html-output.js create mode 100644 integration-tests/head-function-export/gatsby-config.js create mode 100644 integration-tests/head-function-export/jest-transformer.js create mode 100644 integration-tests/head-function-export/jest.config.js create mode 100644 integration-tests/head-function-export/package.json create mode 100644 integration-tests/head-function-export/shared-data/head-function-export.js create mode 100644 integration-tests/head-function-export/src/components/head-function-export.js create mode 100644 integration-tests/head-function-export/src/pages/404.js create mode 100644 integration-tests/head-function-export/src/pages/head-function-export/basic.js create mode 100644 integration-tests/head-function-export/src/pages/head-function-export/page-query.js create mode 100644 integration-tests/head-function-export/src/pages/head-function-export/re-exported-function.js create mode 100644 integration-tests/head-function-export/src/pages/head-function-export/static-query-component.js create mode 100644 integration-tests/head-function-export/src/pages/index.js create mode 100644 integration-tests/ssr/src/pages/head-function-export.js create mode 100644 packages/babel-preset-gatsby/src/babel-preset-react.js create mode 100644 packages/gatsby/cache-dir/__tests__/head/utils.js create mode 100644 packages/gatsby/cache-dir/head/components/fire-callback-in-effect.js create mode 100644 packages/gatsby/cache-dir/head/constants.js create mode 100644 packages/gatsby/cache-dir/head/head-export-handler-for-browser.js create mode 100644 packages/gatsby/cache-dir/head/head-export-handler-for-ssr.js create mode 100644 packages/gatsby/cache-dir/head/utils.js create mode 100644 packages/gatsby/cache-dir/react-dom-utils.js delete mode 100644 packages/gatsby/src/schema/graphql-engine/webpack-remove-apis-loader.ts create mode 100644 packages/gatsby/src/utils/babel/__tests__/fixtures/remove-apis/re-exported/input.mjs create mode 100644 packages/gatsby/src/utils/babel/__tests__/fixtures/remove-apis/re-exported/output.mjs create mode 100644 packages/gatsby/src/utils/webpack/loaders/webpack-remove-exports-loader.ts diff --git a/.circleci/config.yml b/.circleci/config.yml index 52332639c16ba..d901e42b3ebf9 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -320,6 +320,13 @@ jobs: test_path: integration-tests/functions test_command: yarn test + integration_tests_head_function_export: + executor: node + steps: + - e2e-test: + test_path: integration-tests/head-function-export + test_command: yarn test + e2e_tests_path-prefix: <<: *e2e-executor environment: @@ -626,6 +633,8 @@ workflows: <<: *e2e-test-workflow - integration_tests_functions: <<: *e2e-test-workflow + - integration_tests_head_function_export: + <<: *e2e-test-workflow - integration_tests_gatsby_cli: requires: - bootstrap diff --git a/e2e-tests/development-runtime/cypress/integration/eslint-rules/limited-exports-page-templates.js b/e2e-tests/development-runtime/cypress/integration/eslint-rules/limited-exports-page-templates.js index 886c557b3a855..8e2afcd307d13 100644 --- a/e2e-tests/development-runtime/cypress/integration/eslint-rules/limited-exports-page-templates.js +++ b/e2e-tests/development-runtime/cypress/integration/eslint-rules/limited-exports-page-templates.js @@ -23,7 +23,7 @@ describe(`limited-exports-page-templates`, () => { it(`should initially not log to console`, () => { cy.get(`@hmrConsoleLog`).should( `not.be.calledWithMatch`, - /13:1 {2}warning {2}In page templates only a default export of a valid React component and the named exports of a page query, getServerData or config are allowed./i + /13:1 {2}warning {2}In page templates only a default export of a valid React component and the named exports of a page query, getServerData, Head or config are allowed./i ) }) it(`should log warning to console for invalid export`, () => { @@ -34,11 +34,11 @@ describe(`limited-exports-page-templates`, () => { cy.get(`@hmrConsoleLog`).should( `be.calledWithMatch`, - /13:1 {2}warning {2}In page templates only a default export of a valid React component and the named exports of a page query, getServerData or config are allowed./i + /13:1 {2}warning {2}In page templates only a default export of a valid React component and the named exports of a page query, getServerData, Head or config are allowed./i ) cy.get(`@hmrConsoleLog`).should( `not.be.calledWithMatch`, - /15:1 {2}warning {2}In page templates only a default export of a valid React component and the named exports of a page query, getServerData or config are allowed./i + /15:1 {2}warning {2}In page templates only a default export of a valid React component and the named exports of a page query, getServerData, Head or config are allowed./i ) }) }) diff --git a/e2e-tests/development-runtime/cypress/integration/head-function-export/correct-props.js b/e2e-tests/development-runtime/cypress/integration/head-function-export/correct-props.js new file mode 100644 index 0000000000000..76b81c9f2efa5 --- /dev/null +++ b/e2e-tests/development-runtime/cypress/integration/head-function-export/correct-props.js @@ -0,0 +1,32 @@ +import headFunctionExportSharedData from "../../../shared-data/head-function-export.js" + +it(`Head function export receive correct props`, () => { + cy.visit(headFunctionExportSharedData.page.correctProps).waitForRouteChange() + + const data = { + site: { + siteMetadata: { + headFunctionExport: { + ...headFunctionExportSharedData.data.queried, + }, + }, + }, + } + const location = { + pathname: headFunctionExportSharedData.page.correctProps, + } + + const pageContext = headFunctionExportSharedData.data.context + + cy.getTestElement(`pageContext`) + .invoke(`attr`, `content`) + .should(`equal`, JSON.stringify(pageContext, null, 2)) + + cy.getTestElement(`location`) + .invoke(`attr`, `content`) + .should(`equal`, JSON.stringify(location, null, 2)) + + cy.getTestElement(`data`) + .invoke(`attr`, `content`) + .should(`equal`, JSON.stringify(data, null, 2)) +}) diff --git a/e2e-tests/development-runtime/cypress/integration/head-function-export/fs-route-api.js b/e2e-tests/development-runtime/cypress/integration/head-function-export/fs-route-api.js new file mode 100644 index 0000000000000..946f191128f17 --- /dev/null +++ b/e2e-tests/development-runtime/cypress/integration/head-function-export/fs-route-api.js @@ -0,0 +1,6 @@ +import { page, data } from "../../../shared-data/head-function-export.js" + +it(`Head function export with FS Route API should work`, () => { + cy.visit(page.fsRouteApi).waitForRouteChange() + cy.getTestElement(`title`).should(`have.text`, data.fsRouteApi.slug) +}) diff --git a/e2e-tests/development-runtime/cypress/integration/head-function-export/html-insertion.js b/e2e-tests/development-runtime/cypress/integration/head-function-export/html-insertion.js new file mode 100644 index 0000000000000..d1783554c22a2 --- /dev/null +++ b/e2e-tests/development-runtime/cypress/integration/head-function-export/html-insertion.js @@ -0,0 +1,99 @@ +import { page, data } from "../../../shared-data/head-function-export.js" + +describe(`Head function export html insertion`, () => { + it(`should work with static data`, () => { + cy.visit(page.basic).waitForRouteChange() + cy.getTestElement(`base`) + .invoke(`attr`, `href`) + .should(`equal`, data.static.base) + cy.getTestElement(`title`).should(`have.text`, data.static.title) + cy.getTestElement(`meta`) + .invoke(`attr`, `content`) + .should(`equal`, data.static.meta) + cy.getTestElement(`noscript`).should(`have.text`, data.static.noscript) + cy.getTestElement(`style`).should(`contain`, data.static.style) + cy.getTestElement(`link`) + .invoke(`attr`, `href`) + .should(`equal`, data.static.link) + }) + + it(`should work with data from a page query`, () => { + cy.visit(page.pageQuery).waitForRouteChange() + cy.getTestElement(`base`) + .invoke(`attr`, `href`) + .should(`equal`, data.queried.base) + cy.getTestElement(`title`).should(`have.text`, data.queried.title) + cy.getTestElement(`meta`) + .invoke(`attr`, `content`) + .should(`equal`, data.queried.meta) + cy.getTestElement(`noscript`).should(`have.text`, data.queried.noscript) + cy.getTestElement(`style`).should(`contain`, data.queried.style) + cy.getTestElement(`link`) + .invoke(`attr`, `href`) + .should(`equal`, data.queried.link) + }) + + it(`should work when a head function with static data is re-exported from the page`, () => { + cy.visit(page.reExport).waitForRouteChange() + cy.getTestElement(`base`) + .invoke(`attr`, `href`) + .should(`equal`, data.static.base) + cy.getTestElement(`title`).should(`have.text`, data.static.title) + cy.getTestElement(`meta`) + .invoke(`attr`, `content`) + .should(`equal`, data.static.meta) + cy.getTestElement(`noscript`).should(`have.text`, data.static.noscript) + cy.getTestElement(`style`).should(`contain`, data.static.style) + cy.getTestElement(`link`) + .invoke(`attr`, `href`) + .should(`equal`, data.static.link) + }) + + it(`should work when an imported Head component with queried data is used`, () => { + cy.visit(page.staticQuery).waitForRouteChange() + cy.getTestElement(`base`) + .invoke(`attr`, `href`) + .should(`equal`, data.queried.base) + cy.getTestElement(`title`).should(`have.text`, data.queried.title) + cy.getTestElement(`meta`) + .invoke(`attr`, `content`) + .should(`equal`, data.queried.meta) + cy.getTestElement(`noscript`).should(`have.text`, data.queried.noscript) + cy.getTestElement(`style`).should(`contain`, data.queried.style) + cy.getTestElement(`link`) + .invoke(`attr`, `href`) + .should(`equal`, data.queried.link) + }) + + it(`should work in a DSG page (exporting function named config)`, () => { + cy.visit(page.dsg).waitForRouteChange() + cy.getTestElement(`base`) + .invoke(`attr`, `href`) + .should(`equal`, data.dsg.base) + cy.getTestElement(`title`).should(`have.text`, data.dsg.title) + cy.getTestElement(`meta`) + .invoke(`attr`, `content`) + .should(`equal`, data.dsg.meta) + cy.getTestElement(`noscript`).should(`have.text`, data.dsg.noscript) + cy.getTestElement(`style`).should(`contain`, data.dsg.style) + cy.getTestElement(`link`) + .invoke(`attr`, `href`) + .should(`equal`, data.dsg.link) + }) + + it(`should work in an SSR page (exporting function named getServerData)`, () => { + cy.visit(page.ssr).waitForRouteChange() + cy.getTestElement(`base`) + .invoke(`attr`, `href`) + .should(`equal`, data.ssr.base) + cy.getTestElement(`title`).should(`have.text`, data.ssr.title) + cy.getTestElement(`meta`) + .invoke(`attr`, `content`) + .should(`equal`, data.ssr.meta) + cy.getTestElement(`noscript`).should(`have.text`, data.ssr.noscript) + cy.getTestElement(`style`).should(`contain`, data.ssr.style) + cy.getTestElement(`link`) + .invoke(`attr`, `href`) + .should(`equal`, data.ssr.link) + }) +}) diff --git a/e2e-tests/development-runtime/cypress/integration/head-function-export/invalid-elements.js b/e2e-tests/development-runtime/cypress/integration/head-function-export/invalid-elements.js new file mode 100644 index 0000000000000..26ab3b6fff7a1 --- /dev/null +++ b/e2e-tests/development-runtime/cypress/integration/head-function-export/invalid-elements.js @@ -0,0 +1,13 @@ +import { page, data } from "../../../shared-data/head-function-export.js" + +it(`Head function export should not include invalid elements`, () => { + cy.visit(page.invalidElements).waitForRouteChange() + + cy.get(`head > h1`).should(`not.exist`) + cy.get(`head > div`).should(`not.exist`) + cy.get(`head > audio`).should(`not.exist`) + cy.get(`head > video`).should(`not.exist`) + cy.get(`head > title`) + .should(`exist`) + .and(`have.text`, data.invalidElements.title) +}) diff --git a/e2e-tests/development-runtime/cypress/integration/head-function-export/navigation.js b/e2e-tests/development-runtime/cypress/integration/head-function-export/navigation.js new file mode 100644 index 0000000000000..dc855eb015808 --- /dev/null +++ b/e2e-tests/development-runtime/cypress/integration/head-function-export/navigation.js @@ -0,0 +1,114 @@ +import { page, data } from "../../../shared-data/head-function-export.js" + +// No need to test SSR navigation (anchor tags) because it's effectively covered in the html insertion tests + +describe(`Head function export behavior during CSR navigation (Gatsby Link)`, () => { + it(`should remove tags not on next page`, () => { + cy.visit(page.basic).waitForRouteChange() + + cy.getTestElement(`extra-meta`) + .invoke(`attr`, `content`) + .should(`equal`, data.static.extraMeta) + + cy.getTestElement(`gatsby-link`).click().waitForRouteChange() + + cy.get(`[data-testid="extra-meta"]`).should(`not.exist`) + }) + + it(`should add tags not on next page`, () => { + cy.visit(page.basic).waitForRouteChange() + + cy.get(`[data-testid="extra-meta-2"]`).should(`not.exist`) + + cy.getTestElement(`gatsby-link`).click().waitForRouteChange() + + cy.getTestElement(`extra-meta-2`) + .invoke(`attr`, `content`) + .should(`equal`, data.queried.extraMeta2) + }) + + it(`should not contain tags from old tags when we navigate to page without Head export`, () => { + cy.visit(page.basic).waitForRouteChange() + + cy.getTestElement(`base`) + .invoke(`attr`, `href`) + .should(`equal`, data.static.base) + cy.getTestElement(`title`).should(`have.text`, data.static.title) + cy.getTestElement(`meta`) + .invoke(`attr`, `content`) + .should(`equal`, data.static.meta) + cy.getTestElement(`noscript`).should(`have.text`, data.static.noscript) + cy.getTestElement(`style`).should(`contain`, data.static.style) + cy.getTestElement(`link`) + .invoke(`attr`, `href`) + .should(`equal`, data.static.link) + + cy.getTestElement(`navigate-to-page-without-head-export`) + .click() + .waitForRouteChange() + + cy.getTestElement(`base`).should(`not.exist`) + cy.getTestElement(`title`).should(`not.exist`) + cy.getTestElement(`meta`).should(`not.exist`) + cy.getTestElement(`noscript`).should(`not.exist`) + cy.getTestElement(`style`).should(`not.exist`) + cy.getTestElement(`link`).should(`not.exist`) + }) + + /** + * Technically nodes are always removed from the DOM and new ones added (in other words nodes are not reused with different data), + * but since this is an implementation detail we'll still test the behavior we expect as if we didn't know that. + */ + it(`should change meta tag values`, () => { + // Initial load + cy.visit(page.basic).waitForRouteChange() + + // Validate data from initial load + cy.getTestElement(`base`) + .invoke(`attr`, `href`) + .should(`equal`, data.static.base) + cy.getTestElement(`title`).should(`have.text`, data.static.title) + cy.getTestElement(`meta`) + .invoke(`attr`, `content`) + .should(`equal`, data.static.meta) + cy.getTestElement(`noscript`).should(`have.text`, data.static.noscript) + cy.getTestElement(`style`).should(`contain`, data.static.style) + cy.getTestElement(`link`) + .invoke(`attr`, `href`) + .should(`equal`, data.static.link) + + // Navigate to a different page via Gatsby Link + cy.getTestElement(`gatsby-link`).click() + + // Validate data on navigated-to page + cy.getTestElement(`base`) + .invoke(`attr`, `href`) + .should(`equal`, data.queried.base) + cy.getTestElement(`title`).should(`have.text`, data.queried.title) + cy.getTestElement(`meta`) + .invoke(`attr`, `content`) + .should(`equal`, data.queried.meta) + cy.getTestElement(`noscript`).should(`have.text`, data.queried.noscript) + cy.getTestElement(`style`).should(`contain`, data.queried.style) + cy.getTestElement(`link`) + .invoke(`attr`, `href`) + .should(`equal`, data.queried.link) + + // Navigate back to original page via Gatsby Link + cy.getTestElement(`gatsby-link`).click().waitForRouteChange() + + // Validate data is same as initial load + cy.getTestElement(`base`) + .invoke(`attr`, `href`) + .should(`equal`, data.static.base) + cy.getTestElement(`title`).should(`have.text`, data.static.title) + cy.getTestElement(`meta`) + .invoke(`attr`, `content`) + .should(`equal`, data.static.meta) + cy.getTestElement(`noscript`).should(`have.text`, data.static.noscript) + cy.getTestElement(`style`).should(`contain`, data.static.style) + cy.getTestElement(`link`) + .invoke(`attr`, `href`) + .should(`equal`, data.static.link) + }) +}) diff --git a/e2e-tests/development-runtime/cypress/integration/head-function-export/typescript.js b/e2e-tests/development-runtime/cypress/integration/head-function-export/typescript.js new file mode 100644 index 0000000000000..af764ae395007 --- /dev/null +++ b/e2e-tests/development-runtime/cypress/integration/head-function-export/typescript.js @@ -0,0 +1,11 @@ +describe(`Tsx Pages`, () => { + it(`Works with Head export`, () => { + cy.visit(`/head-function-export/tsx-page`) + + cy.getTestElement(`title`).should(`contain`, `TypeScript`) + + cy.getTestElement(`name`) + .invoke(`attr`, `content`) + .should(`equal`, `TypeScript`) + }) +}) diff --git a/e2e-tests/development-runtime/cypress/integration/head-function-export/warnings.js b/e2e-tests/development-runtime/cypress/integration/head-function-export/warnings.js new file mode 100644 index 0000000000000..a06a256dcb07c --- /dev/null +++ b/e2e-tests/development-runtime/cypress/integration/head-function-export/warnings.js @@ -0,0 +1,28 @@ +import { VALID_NODE_NAMES } from "gatsby/cache-dir/head/constants" +import { page } from "../../../shared-data/head-function-export.js" + +describe(`Head function export should warn`, () => { + beforeEach(() => { + cy.visit(page.warnings, { + onBeforeLoad(win) { + cy.stub(win.console, `warn`).as(`consoleWarn`) + }, + }).waitForRouteChange() + }) + + it(`for elements that belong in the body`, () => { + cy.get(`@consoleWarn`).should( + `be.calledWith`, + `

is not a valid head element. Please use one of the following: ${VALID_NODE_NAMES.join( + `, ` + )}` + ) + }) + + it(`for scripts that could use the script component`, () => { + cy.get(`@consoleWarn`).should( + `be.calledWith`, + `Do not add scripts here. Please use the + + ) +} diff --git a/e2e-tests/development-runtime/src/pages/head-function-export/without-head.js b/e2e-tests/development-runtime/src/pages/head-function-export/without-head.js new file mode 100644 index 0000000000000..8da3c37a2f8ef --- /dev/null +++ b/e2e-tests/development-runtime/src/pages/head-function-export/without-head.js @@ -0,0 +1,9 @@ +import * as React from "react" + +export default function WithoutHead() { + return ( + <> +

I am used to test cases where we navigae to a page without Head export

+ + ) +} diff --git a/e2e-tests/development-runtime/src/pages/head-function-export/{HeadFunctionExportFsRouteApi.slug}.js b/e2e-tests/development-runtime/src/pages/head-function-export/{HeadFunctionExportFsRouteApi.slug}.js new file mode 100644 index 0000000000000..4a56503da7a67 --- /dev/null +++ b/e2e-tests/development-runtime/src/pages/head-function-export/{HeadFunctionExportFsRouteApi.slug}.js @@ -0,0 +1,16 @@ +import * as React from "react" + +export default function HeadFunctionExportFsRouteApi(props) { + return ( + <> +

I test usage for the Head function export with the FS Route API

+
{JSON.stringify(props, null, 2)}
+ + ) +} + +export function Head(props) { + const { pageContext } = props || {} + + return {pageContext.slug} +} diff --git a/e2e-tests/development-runtime/src/templates/head-function-export/correct-props.js b/e2e-tests/development-runtime/src/templates/head-function-export/correct-props.js new file mode 100644 index 0000000000000..cc5c4bb5ae5df --- /dev/null +++ b/e2e-tests/development-runtime/src/templates/head-function-export/correct-props.js @@ -0,0 +1,58 @@ +import * as React from "react" +import { graphql } from "gatsby" + +export default function CorrectProps() { + return ( + <> +

+ I test usage for the Head function export to make sure all props are + received +

+

+ I am created with the createPage API and I receive some + context +

+ + ) +} + +export const pageQuery = graphql` + query MetaDataPageQuery { + site { + siteMetadata { + headFunctionExport { + base + title + meta + noscript + style + link + extraMeta2 + } + } + } + } +` + +export function Head(props) { + const { data, pageContext, location } = props + return ( + <> + + + + + ) +} diff --git a/e2e-tests/development-runtime/static/used-by-head-function-export-basic.css b/e2e-tests/development-runtime/static/used-by-head-function-export-basic.css new file mode 100644 index 0000000000000..0dfaff5b37990 --- /dev/null +++ b/e2e-tests/development-runtime/static/used-by-head-function-export-basic.css @@ -0,0 +1,3 @@ +p { + color: rebeccapurple; +} diff --git a/e2e-tests/development-runtime/static/used-by-head-function-export-dsg.css b/e2e-tests/development-runtime/static/used-by-head-function-export-dsg.css new file mode 100644 index 0000000000000..c72abd677bf50 --- /dev/null +++ b/e2e-tests/development-runtime/static/used-by-head-function-export-dsg.css @@ -0,0 +1,3 @@ +p { + color: orange; +} diff --git a/e2e-tests/development-runtime/static/used-by-head-function-export-query.css b/e2e-tests/development-runtime/static/used-by-head-function-export-query.css new file mode 100644 index 0000000000000..ce7da04630a36 --- /dev/null +++ b/e2e-tests/development-runtime/static/used-by-head-function-export-query.css @@ -0,0 +1,3 @@ +p { + color: blue; +} diff --git a/e2e-tests/development-runtime/static/used-by-head-function-export-ssr.css b/e2e-tests/development-runtime/static/used-by-head-function-export-ssr.css new file mode 100644 index 0000000000000..87002430abc45 --- /dev/null +++ b/e2e-tests/development-runtime/static/used-by-head-function-export-ssr.css @@ -0,0 +1,3 @@ +p { + color: green; +} diff --git a/e2e-tests/production-runtime/cypress/integration/head-function-export/fs-route-api.js b/e2e-tests/production-runtime/cypress/integration/head-function-export/fs-route-api.js new file mode 100644 index 0000000000000..946f191128f17 --- /dev/null +++ b/e2e-tests/production-runtime/cypress/integration/head-function-export/fs-route-api.js @@ -0,0 +1,6 @@ +import { page, data } from "../../../shared-data/head-function-export.js" + +it(`Head function export with FS Route API should work`, () => { + cy.visit(page.fsRouteApi).waitForRouteChange() + cy.getTestElement(`title`).should(`have.text`, data.fsRouteApi.slug) +}) diff --git a/e2e-tests/production-runtime/cypress/integration/head-function-export/html-insertion.js b/e2e-tests/production-runtime/cypress/integration/head-function-export/html-insertion.js new file mode 100644 index 0000000000000..f518afe0c3572 --- /dev/null +++ b/e2e-tests/production-runtime/cypress/integration/head-function-export/html-insertion.js @@ -0,0 +1,99 @@ +import { page, data } from "../../../shared-data/head-function-export.js" + +describe(`Head function export html insertion`, () => { + it(`should work with static data`, () => { + cy.visit(page.basic).waitForRouteChange() + cy.getTestElement(`base`) + .invoke(`attr`, `href`) + .should(`equal`, data.static.base) + cy.getTestElement(`title`).should(`have.text`, data.static.title) + cy.getTestElement(`meta`) + .invoke(`attr`, `content`) + .should(`equal`, data.static.meta) + cy.getTestElement(`noscript`).should(`have.text`, data.static.noscript) + cy.getTestElement(`style`).should(`contain`, data.static.style) + cy.getTestElement(`link`) + .invoke(`attr`, `href`) + .should(`equal`, data.static.link) + }) + + it(`should work with data from a page query`, () => { + cy.visit(page.pageQuery).waitForRouteChange() + cy.getTestElement(`base`) + .invoke(`attr`, `href`) + .should(`equal`, data.queried.base) + cy.getTestElement(`title`).should(`have.text`, data.queried.title) + cy.getTestElement(`meta`) + .invoke(`attr`, `content`) + .should(`equal`, data.queried.meta) + cy.getTestElement(`noscript`).should(`have.text`, data.queried.noscript) + cy.getTestElement(`style`).should(`contain`, data.queried.style) + cy.getTestElement(`link`) + .invoke(`attr`, `href`) + .should(`equal`, data.queried.link) + }) + + it(`should work when a Head function with static data is re-exported from the page`, () => { + cy.visit(page.reExport).waitForRouteChange() + cy.getTestElement(`base`) + .invoke(`attr`, `href`) + .should(`equal`, data.static.base) + cy.getTestElement(`title`).should(`have.text`, data.static.title) + cy.getTestElement(`meta`) + .invoke(`attr`, `content`) + .should(`equal`, data.static.meta) + cy.getTestElement(`noscript`).should(`have.text`, data.static.noscript) + cy.getTestElement(`style`).should(`contain`, data.static.style) + cy.getTestElement(`link`) + .invoke(`attr`, `href`) + .should(`equal`, data.static.link) + }) + + it(`should work when an imported Head component with queried data is used`, () => { + cy.visit(page.staticQuery).waitForRouteChange() + cy.getTestElement(`base`) + .invoke(`attr`, `href`) + .should(`equal`, data.queried.base) + cy.getTestElement(`title`).should(`have.text`, data.queried.title) + cy.getTestElement(`meta`) + .invoke(`attr`, `content`) + .should(`equal`, data.queried.meta) + cy.getTestElement(`noscript`).should(`have.text`, data.queried.noscript) + cy.getTestElement(`style`).should(`contain`, data.queried.style) + cy.getTestElement(`link`) + .invoke(`attr`, `href`) + .should(`equal`, data.queried.link) + }) + + it(`should work in a DSG page (exporting function named config)`, () => { + cy.visit(page.dsg).waitForRouteChange() + cy.getTestElement(`base`) + .invoke(`attr`, `href`) + .should(`equal`, data.dsg.base) + cy.getTestElement(`title`).should(`have.text`, data.dsg.title) + cy.getTestElement(`meta`) + .invoke(`attr`, `content`) + .should(`equal`, data.dsg.meta) + cy.getTestElement(`noscript`).should(`have.text`, data.dsg.noscript) + cy.getTestElement(`style`).should(`contain`, data.dsg.style) + cy.getTestElement(`link`) + .invoke(`attr`, `href`) + .should(`equal`, data.dsg.link) + }) + + it(`should work in an SSR page (exporting function named getServerData)`, () => { + cy.visit(page.ssr).waitForRouteChange() + cy.getTestElement(`base`) + .invoke(`attr`, `href`) + .should(`equal`, data.ssr.base) + cy.getTestElement(`title`).should(`have.text`, data.ssr.title) + cy.getTestElement(`meta`) + .invoke(`attr`, `content`) + .should(`equal`, data.ssr.meta) + cy.getTestElement(`noscript`).should(`have.text`, data.ssr.noscript) + cy.getTestElement(`style`).should(`contain`, data.ssr.style) + cy.getTestElement(`link`) + .invoke(`attr`, `href`) + .should(`equal`, data.ssr.link) + }) +}) diff --git a/e2e-tests/production-runtime/cypress/integration/head-function-export/invalid-elements.js b/e2e-tests/production-runtime/cypress/integration/head-function-export/invalid-elements.js new file mode 100644 index 0000000000000..26ab3b6fff7a1 --- /dev/null +++ b/e2e-tests/production-runtime/cypress/integration/head-function-export/invalid-elements.js @@ -0,0 +1,13 @@ +import { page, data } from "../../../shared-data/head-function-export.js" + +it(`Head function export should not include invalid elements`, () => { + cy.visit(page.invalidElements).waitForRouteChange() + + cy.get(`head > h1`).should(`not.exist`) + cy.get(`head > div`).should(`not.exist`) + cy.get(`head > audio`).should(`not.exist`) + cy.get(`head > video`).should(`not.exist`) + cy.get(`head > title`) + .should(`exist`) + .and(`have.text`, data.invalidElements.title) +}) diff --git a/e2e-tests/production-runtime/cypress/integration/head-function-export/navigation.js b/e2e-tests/production-runtime/cypress/integration/head-function-export/navigation.js new file mode 100644 index 0000000000000..a25e7519a3926 --- /dev/null +++ b/e2e-tests/production-runtime/cypress/integration/head-function-export/navigation.js @@ -0,0 +1,114 @@ +import { page, data } from "../../../shared-data/head-function-export.js" + +// No need to test SSR navigation (anchor tags) because it's effectively covered in the html insertion tests + +describe(`Head function export behavior during CSR navigation (Gatsby Link)`, () => { + it(`should remove tags not on next page`, () => { + cy.visit(page.basic).waitForRouteChange() + + cy.getTestElement(`extra-meta`) + .invoke(`attr`, `content`) + .should(`equal`, data.static.extraMeta) + + cy.getTestElement(`gatsby-link`).click().waitForRouteChange() + + cy.get(`[data-testid="extra-meta"]`).should(`not.exist`) + }) + + it(`should add tags not on next page`, () => { + cy.visit(page.basic).waitForRouteChange() + + cy.get(`[data-testid="extra-meta-2"]`).should(`not.exist`) + + cy.getTestElement(`gatsby-link`).click() + + cy.getTestElement(`extra-meta-2`) + .invoke(`attr`, `content`) + .should(`equal`, data.queried.extraMeta2) + }) + + it(`should not contain tags from old tags when we navigate to page without Head export`, () => { + cy.visit(page.basic).waitForRouteChange() + + cy.getTestElement(`base`) + .invoke(`attr`, `href`) + .should(`equal`, data.static.base) + cy.getTestElement(`title`).should(`have.text`, data.static.title) + cy.getTestElement(`meta`) + .invoke(`attr`, `content`) + .should(`equal`, data.static.meta) + cy.getTestElement(`noscript`).should(`have.text`, data.static.noscript) + cy.getTestElement(`style`).should(`contain`, data.static.style) + cy.getTestElement(`link`) + .invoke(`attr`, `href`) + .should(`equal`, data.static.link) + + cy.getTestElement(`navigate-to-page-without-head-export`) + .click() + .waitForRouteChange() + + cy.getTestElement(`base`).should(`not.exist`) + cy.getTestElement(`title`).should(`not.exist`) + cy.getTestElement(`meta`).should(`not.exist`) + cy.getTestElement(`noscript`).should(`not.exist`) + cy.getTestElement(`style`).should(`not.exist`) + cy.getTestElement(`link`).should(`not.exist`) + }) + + /** + * Technically nodes are always removed from the DOM and new ones added (in other words nodes are not reused with different data), + * but since this is an implementation detail we'll still test the behavior we expect as if we didn't know that. + */ + it(`should change meta tag values`, () => { + // Initial load + cy.visit(page.basic).waitForRouteChange() + + // Validate data from initial load + cy.getTestElement(`base`) + .invoke(`attr`, `href`) + .should(`equal`, data.static.base) + cy.getTestElement(`title`).should(`have.text`, data.static.title) + cy.getTestElement(`meta`) + .invoke(`attr`, `content`) + .should(`equal`, data.static.meta) + cy.getTestElement(`noscript`).should(`have.text`, data.static.noscript) + cy.getTestElement(`style`).should(`contain`, data.static.style) + cy.getTestElement(`link`) + .invoke(`attr`, `href`) + .should(`equal`, data.static.link) + + // Navigate to a different page via Gatsby Link + cy.getTestElement(`gatsby-link`).click().waitForRouteChange() + + // Validate data on navigated-to page + cy.getTestElement(`base`) + .invoke(`attr`, `href`) + .should(`equal`, data.queried.base) + cy.getTestElement(`title`).should(`have.text`, data.queried.title) + cy.getTestElement(`meta`) + .invoke(`attr`, `content`) + .should(`equal`, data.queried.meta) + cy.getTestElement(`noscript`).should(`have.text`, data.queried.noscript) + cy.getTestElement(`style`).should(`contain`, data.queried.style) + cy.getTestElement(`link`) + .invoke(`attr`, `href`) + .should(`equal`, data.queried.link) + + // Navigate back to original page via Gatsby Link + cy.getTestElement(`gatsby-link`).click().waitForRouteChange() + + // Validate data is same as initial load + cy.getTestElement(`base`) + .invoke(`attr`, `href`) + .should(`equal`, data.static.base) + cy.getTestElement(`title`).should(`have.text`, data.static.title) + cy.getTestElement(`meta`) + .invoke(`attr`, `content`) + .should(`equal`, data.static.meta) + cy.getTestElement(`noscript`).should(`have.text`, data.static.noscript) + cy.getTestElement(`style`).should(`contain`, data.static.style) + cy.getTestElement(`link`) + .invoke(`attr`, `href`) + .should(`equal`, data.static.link) + }) +}) diff --git a/e2e-tests/production-runtime/cypress/integration/head-function-export/typescript.js b/e2e-tests/production-runtime/cypress/integration/head-function-export/typescript.js new file mode 100644 index 0000000000000..af764ae395007 --- /dev/null +++ b/e2e-tests/production-runtime/cypress/integration/head-function-export/typescript.js @@ -0,0 +1,11 @@ +describe(`Tsx Pages`, () => { + it(`Works with Head export`, () => { + cy.visit(`/head-function-export/tsx-page`) + + cy.getTestElement(`title`).should(`contain`, `TypeScript`) + + cy.getTestElement(`name`) + .invoke(`attr`, `content`) + .should(`equal`, `TypeScript`) + }) +}) diff --git a/e2e-tests/production-runtime/gatsby-config.js b/e2e-tests/production-runtime/gatsby-config.js index 1838a357d1862..e494d09979334 100644 --- a/e2e-tests/production-runtime/gatsby-config.js +++ b/e2e-tests/production-runtime/gatsby-config.js @@ -1,8 +1,14 @@ +const { + data: headFunctionExportData, +} = require(`./shared-data/head-function-export.js`) + module.exports = { siteMetadata: { title: `Gatsby Default Starter`, author: `Kyle Mathews`, description: `This is site for production runtime e2e tests`, + // Separate to avoid needing to change other tests that rely on site metadata + headFunctionExport: headFunctionExportData.queried, }, plugins: [ `gatsby-plugin-react-helmet`, diff --git a/e2e-tests/production-runtime/gatsby-node.ts b/e2e-tests/production-runtime/gatsby-node.ts index b15cbc324be7a..775be229ff9b5 100644 --- a/e2e-tests/production-runtime/gatsby-node.ts +++ b/e2e-tests/production-runtime/gatsby-node.ts @@ -36,6 +36,14 @@ export const createSchemaCustomization: GatsbyNode["createSchemaCustomization"] } ) ) + + actions.createTypes(`#graphql + type HeadFunctionExportFsRouteApi implements Node { + id: ID! + slug: String! + content: String! + } + `) } const products = ["Burger", "Chicken"] @@ -101,6 +109,18 @@ export const sourceNodes: GatsbyNode["sourceNodes"] = ({ }, }) }) + + actions.createNode({ + id: createNodeId(`head-function-export-fs-route-api`), + slug: `/fs-route-api`, + parent: null, + children: [], + internal: { + type: `HeadFunctionExportFsRouteApi`, + content: `Some words`, + contentDigest: createContentDigest(`Some words`), + }, + }) } export const createPages: GatsbyNode["createPages"] = ({ diff --git a/e2e-tests/production-runtime/shared-data/head-function-export.js b/e2e-tests/production-runtime/shared-data/head-function-export.js new file mode 100644 index 0000000000000..c20460ae662ff --- /dev/null +++ b/e2e-tests/production-runtime/shared-data/head-function-export.js @@ -0,0 +1,59 @@ +const path = `/head-function-export` + +const page = { + basic: `${path}/basic/`, + pageQuery: `${path}/page-query/`, + reExport: `${path}/re-exported-function/`, + staticQuery: `${path}/static-query-component/`, + warnings: `${path}/warnings/`, + allProps: `${path}/all-props/`, + dsg: `${path}/dsg/`, + ssr: `${path}/ssr/`, + invalidElements: `${path}/invalid-elements/`, + fsRouteApi: `${path}/fs-route-api/`, +} + +const data = { + static: { + base: `http://localhost:9000`, + title: `Ella Fitzgerald's Page`, + meta: `Ella Fitzgerald`, + noscript: `You take romance - I will take Jell-O!`, + style: `rebeccapurple`, + link: `/used-by-head-function-export-basic.css`, + extraMeta: `Extra meta tag that should be removed during navigation`, + }, + queried: { + base: `http://localhost:9000`, + title: `Nat King Cole's Page`, + meta: `Nat King Cole`, + noscript: `There is just one thing I cannot figure out. My income tax!`, + style: `blue`, + link: `/used-by-head-function-export-query.css`, + extraMeta2: `Extra meta tag that should be added during navigation`, + }, + dsg: { + base: `http://localhost:9000`, + title: `Louis Armstrong's Page`, + meta: `Louis Armstrong`, + noscript: `What we play is life`, + style: `orange`, + link: `/used-by-head-function-export-dsg.css`, + }, + ssr: { + base: `http://localhost:9000`, + title: `Frank Sinatra's Page`, + meta: `Frank Sinatra`, + noscript: `You may be a puzzle, but I like the way the parts fit`, + style: `green`, + link: `/used-by-head-function-export-ssr.css`, + }, + invalidElements: { + title: `I should actually be inserted, unlike the others`, + }, + fsRouteApi: { + slug: `/fs-route-api`, + }, +} + +module.exports = { page, data } diff --git a/e2e-tests/production-runtime/src/components/head-function-export.js b/e2e-tests/production-runtime/src/components/head-function-export.js new file mode 100644 index 0000000000000..c261601b6c99f --- /dev/null +++ b/e2e-tests/production-runtime/src/components/head-function-export.js @@ -0,0 +1,67 @@ +import * as React from "react" +import { useStaticQuery, graphql } from "gatsby" +import { data } from "../../shared-data/head-function-export.js" + +function HeadComponent({ children }) { + const data = useStaticQuery(graphql` + query SiteMetaDataStaticQuery { + site { + siteMetadata { + headFunctionExport { + base + title + meta + noscript + style + link + } + } + } + } + `) + + const { base, title, meta, noscript, style, link } = + data?.site?.siteMetadata?.headFunctionExport || {} + + return ( + <> + + {title} + + + + + {children} + + ) +} + +function Head() { + const { base, title, meta, noscript, style, link } = data.static + + return ( + <> + + {title} + + + + + + ) +} + +export { Head } +export default HeadComponent diff --git a/e2e-tests/production-runtime/src/pages/head-function-export/basic.js b/e2e-tests/production-runtime/src/pages/head-function-export/basic.js new file mode 100644 index 0000000000000..6845115bef687 --- /dev/null +++ b/e2e-tests/production-runtime/src/pages/head-function-export/basic.js @@ -0,0 +1,41 @@ +import * as React from "react" +import { Link } from "gatsby" +import { data } from "../../../shared-data/head-function-export" + +export default function HeadFunctionExportBasic() { + return ( + <> +

I test basic usage for the head function export

+

Some other words

+ + Navigate to page-query via Gatsby Link + + + Navigate to without head export + + + ) +} + +export function Head() { + const { base, title, meta, noscript, style, link, extraMeta } = data.static + + return ( + <> + + {title} + + + + + + + + ) +} diff --git a/e2e-tests/production-runtime/src/pages/head-function-export/dsg.js b/e2e-tests/production-runtime/src/pages/head-function-export/dsg.js new file mode 100644 index 0000000000000..4229aa633d39a --- /dev/null +++ b/e2e-tests/production-runtime/src/pages/head-function-export/dsg.js @@ -0,0 +1,35 @@ +import * as React from "react" +import { data } from "../../../shared-data/head-function-export" + +export default function HeadFunctionExportDSG() { + return

I test the Head function export in a DSG page

+} + +export async function config() { + return () => { + return { + defer: true, + } + } +} + +export function Head() { + const { base, title, meta, noscript, style, link } = data.dsg + + return ( + <> + + {title} + + + + + + ) +} diff --git a/e2e-tests/production-runtime/src/pages/head-function-export/invalid-elements.js b/e2e-tests/production-runtime/src/pages/head-function-export/invalid-elements.js new file mode 100644 index 0000000000000..c85fcdd8c9410 --- /dev/null +++ b/e2e-tests/production-runtime/src/pages/head-function-export/invalid-elements.js @@ -0,0 +1,22 @@ +import * as React from "react" +import { data } from "../../../shared-data/head-function-export" + +export default function HeadFunctionExportInvalidElements() { + return ( + <> +

I test usage for the Head function export with invalid elements

+ + ) +} + +export function Head() { + return ( + <> +

Big, big energy

+
A div-ersion
+ + + {data.invalidElements.title} + + ) +} diff --git a/e2e-tests/production-runtime/src/pages/head-function-export/page-query.js b/e2e-tests/production-runtime/src/pages/head-function-export/page-query.js new file mode 100644 index 0000000000000..5adfbceac43a7 --- /dev/null +++ b/e2e-tests/production-runtime/src/pages/head-function-export/page-query.js @@ -0,0 +1,61 @@ +import * as React from "react" +import { graphql } from "gatsby" +import { Link } from "gatsby" + +export default function HeadFunctionExportPageQuery() { + return ( + <> +

I test usage for the Head function export with a page query

+

Some other words

+ + Navigate to basic via Gatsby Link + + + ) +} + +export function Head({ data }) { + const { base, title, meta, noscript, style, link, extraMeta2 } = + data?.site?.siteMetadata?.headFunctionExport || {} + + return ( + <> + + {title} + + + + + + + + ) +} + +export const pageQuery = graphql` + query SiteMetaDataPageQuery { + site { + siteMetadata { + headFunctionExport { + base + title + meta + noscript + style + link + extraMeta2 + } + } + } + } +` diff --git a/e2e-tests/production-runtime/src/pages/head-function-export/re-exported-function.js b/e2e-tests/production-runtime/src/pages/head-function-export/re-exported-function.js new file mode 100644 index 0000000000000..31d17812e2a9f --- /dev/null +++ b/e2e-tests/production-runtime/src/pages/head-function-export/re-exported-function.js @@ -0,0 +1,12 @@ +import * as React from "react" + +export { Head } from "../../components/head-function-export" + +export default function HeadFunctionExportReExported() { + return ( + <> +

I test usage for the Head function export re exported

+

Some other words

+ + ) +} diff --git a/e2e-tests/production-runtime/src/pages/head-function-export/ssr.js b/e2e-tests/production-runtime/src/pages/head-function-export/ssr.js new file mode 100644 index 0000000000000..8c9490cd12265 --- /dev/null +++ b/e2e-tests/production-runtime/src/pages/head-function-export/ssr.js @@ -0,0 +1,37 @@ +import * as React from "react" +import { data } from "../../../shared-data/head-function-export" + +export default function HeadFunctionExportSSR() { + return ( +

+ I test the Head function export in an SSR page (using getServerData) +

+ ) +} + +export async function getServerData() { + return { + hello: `world`, + } +} + +export function Head() { + const { base, title, meta, noscript, style, link } = data.ssr + + return ( + <> + + {title} + + + + + + ) +} diff --git a/e2e-tests/production-runtime/src/pages/head-function-export/static-query-component.js b/e2e-tests/production-runtime/src/pages/head-function-export/static-query-component.js new file mode 100644 index 0000000000000..8da39645a8789 --- /dev/null +++ b/e2e-tests/production-runtime/src/pages/head-function-export/static-query-component.js @@ -0,0 +1,15 @@ +import * as React from "react" +import HeadComponent from "../../components/head-function-export" + +export default function HeadFunctionExportStaticQueryComponent() { + return ( + <> +

I test usage for the Head function export via a common component

+

Some other words

+ + ) +} + +export function Head() { + return +} diff --git a/e2e-tests/production-runtime/src/pages/head-function-export/tsx-page.tsx b/e2e-tests/production-runtime/src/pages/head-function-export/tsx-page.tsx new file mode 100644 index 0000000000000..ff70bb3c373fc --- /dev/null +++ b/e2e-tests/production-runtime/src/pages/head-function-export/tsx-page.tsx @@ -0,0 +1,23 @@ +import * as React from "react" +import { HeadProps } from "gatsby" + +export default function TSXPageWithHeaExport() { + return ( +

+ I am a TS Page, I am used to test that Ts Pages with Head export work +

+ ) +} + +export function Head(props: HeadProps) { + const text = `TypeScript` + return ( + <> + {text} + + + ) +} diff --git a/e2e-tests/production-runtime/src/pages/head-function-export/without-head.js b/e2e-tests/production-runtime/src/pages/head-function-export/without-head.js new file mode 100644 index 0000000000000..715748dafb3be --- /dev/null +++ b/e2e-tests/production-runtime/src/pages/head-function-export/without-head.js @@ -0,0 +1,9 @@ +import * as React from "react" + +export default function WithoutHead() { + return ( + <> +

I am used to test cases where we navigate to a page without Head export

+ + ) +} diff --git a/e2e-tests/production-runtime/src/pages/head-function-export/{HeadFunctionExportFsRouteApi.slug}.js b/e2e-tests/production-runtime/src/pages/head-function-export/{HeadFunctionExportFsRouteApi.slug}.js new file mode 100644 index 0000000000000..c784aaf3a8b06 --- /dev/null +++ b/e2e-tests/production-runtime/src/pages/head-function-export/{HeadFunctionExportFsRouteApi.slug}.js @@ -0,0 +1,15 @@ +import * as React from "react" + +export default function HeadFunctionExportFsRouteApi() { + return ( + <> +

I test usage for the Head function export with the FS Route API

+ + ) +} + +export function Head(props) { + const { pageContext } = props || {} + + return {pageContext.slug} +} diff --git a/e2e-tests/production-runtime/static/used-by-head-function-export-basic.css b/e2e-tests/production-runtime/static/used-by-head-function-export-basic.css new file mode 100644 index 0000000000000..0dfaff5b37990 --- /dev/null +++ b/e2e-tests/production-runtime/static/used-by-head-function-export-basic.css @@ -0,0 +1,3 @@ +p { + color: rebeccapurple; +} diff --git a/e2e-tests/production-runtime/static/used-by-head-function-export-dsg.css b/e2e-tests/production-runtime/static/used-by-head-function-export-dsg.css new file mode 100644 index 0000000000000..c72abd677bf50 --- /dev/null +++ b/e2e-tests/production-runtime/static/used-by-head-function-export-dsg.css @@ -0,0 +1,3 @@ +p { + color: orange; +} diff --git a/e2e-tests/production-runtime/static/used-by-head-function-export-query.css b/e2e-tests/production-runtime/static/used-by-head-function-export-query.css new file mode 100644 index 0000000000000..ce7da04630a36 --- /dev/null +++ b/e2e-tests/production-runtime/static/used-by-head-function-export-query.css @@ -0,0 +1,3 @@ +p { + color: blue; +} diff --git a/e2e-tests/production-runtime/static/used-by-head-function-export-ssr.css b/e2e-tests/production-runtime/static/used-by-head-function-export-ssr.css new file mode 100644 index 0000000000000..87002430abc45 --- /dev/null +++ b/e2e-tests/production-runtime/static/used-by-head-function-export-ssr.css @@ -0,0 +1,3 @@ +p { + color: green; +} diff --git a/integration-tests/head-function-export/.gitignore b/integration-tests/head-function-export/.gitignore new file mode 100644 index 0000000000000..557f97c6feb55 --- /dev/null +++ b/integration-tests/head-function-export/.gitignore @@ -0,0 +1,3 @@ +node_modules/ +.cache/ +public diff --git a/integration-tests/head-function-export/README.md b/integration-tests/head-function-export/README.md new file mode 100644 index 0000000000000..46c0278682dda --- /dev/null +++ b/integration-tests/head-function-export/README.md @@ -0,0 +1,15 @@ +# Integration Tests + +These are tests triggered via the `test:integration` script. They do not run in the browser, but rather run in a Jest JSDOM environment. This means that they're good for catching regressions, but may not catch _quite_ as much as the [e2e-tests](../e2e-tests) which do run in a real browser via Cypress. + +## Adding a new integration test + +- Create a folder `integration-tests/name-of-the-test` +- Copy structure from an existing test, e.g. [`integration-tests/head-function-export`](./head-function-export) +- Write your tests in `integration-tests/name-of-the-test/__tests__` + +## Running the tests + +Run `yarn test:integration` or `npm run test:integration` to run the suite of integration tests. + +Thanks for contributing to Gatsby! diff --git a/integration-tests/head-function-export/__tests__/ssr-html-output.js b/integration-tests/head-function-export/__tests__/ssr-html-output.js new file mode 100644 index 0000000000000..f60c7cd47a1ad --- /dev/null +++ b/integration-tests/head-function-export/__tests__/ssr-html-output.js @@ -0,0 +1,76 @@ +import { readFileSync } from "fs-extra" +import { parse } from "node-html-parser" +import { page, data } from "../shared-data/head-function-export.js" + +/** + * This test ensures that the head elements actually end up in the SSR'ed HTML. + * + * The production-runtime e2e test does the same but in the browser, and we want to make sure + * that we're not being tricked by the browser runtime inserting head elements. + */ + +const publicDir = `${__dirname}/../public` + +function getNodes(dom) { + const base = dom.querySelector(`[data-testid=base]`) + const title = dom.querySelector(`[data-testid=title]`) + const meta = dom.querySelector(`[data-testid=meta]`) + const noscript = dom.querySelector(`[data-testid=noscript]`) + const style = dom.querySelector(`[data-testid=style]`) + const link = dom.querySelector(`[data-testid=link]`) + return { base, title, meta, noscript, style, link } +} + +describe(`Head function export SSR'ed HTML output`, () => { + it(`should work with static data`, () => { + const html = readFileSync(`${publicDir}${page.basic}/index.html`) + const dom = parse(html) + const { base, title, meta, noscript, style, link } = getNodes(dom) + + expect(base.attributes.href).toEqual(data.static.base) + expect(title.text).toEqual(data.static.title) + expect(meta.attributes.content).toEqual(data.static.meta) + expect(noscript.text).toEqual(data.static.noscript) + expect(style.text).toContain(data.static.style) + expect(link.attributes.href).toEqual(data.static.link) + }) + + it(`should work with data from a page query`, () => { + const html = readFileSync(`${publicDir}${page.pageQuery}/index.html`) + const dom = parse(html) + const { base, title, meta, noscript, style, link } = getNodes(dom) + + expect(base.attributes.href).toEqual(data.queried.base) + expect(title.text).toEqual(data.queried.title) + expect(meta.attributes.content).toEqual(data.queried.meta) + expect(noscript.text).toEqual(data.queried.noscript) + expect(style.text).toContain(data.queried.style) + expect(link.attributes.href).toEqual(data.queried.link) + }) + + it(`should work when a Head function with static data is re-exported from the page`, () => { + const html = readFileSync(`${publicDir}${page.reExport}/index.html`) + const dom = parse(html) + const { base, title, meta, noscript, style, link } = getNodes(dom) + + expect(base.attributes.href).toEqual(data.static.base) + expect(title.text).toEqual(data.static.title) + expect(meta.attributes.content).toEqual(data.static.meta) + expect(noscript.text).toEqual(data.static.noscript) + expect(style.text).toContain(data.static.style) + expect(link.attributes.href).toEqual(data.static.link) + }) + + it(`should work when an imported Head component with queried data is used`, () => { + const html = readFileSync(`${publicDir}${page.staticQuery}/index.html`) + const dom = parse(html) + const { base, title, meta, noscript, style, link } = getNodes(dom) + + expect(base.attributes.href).toEqual(data.queried.base) + expect(title.text).toEqual(data.queried.title) + expect(meta.attributes.content).toEqual(data.queried.meta) + expect(noscript.text).toEqual(data.queried.noscript) + expect(style.text).toContain(data.queried.style) + expect(link.attributes.href).toEqual(data.queried.link) + }) +}) diff --git a/integration-tests/head-function-export/gatsby-config.js b/integration-tests/head-function-export/gatsby-config.js new file mode 100644 index 0000000000000..b0da95ef1d562 --- /dev/null +++ b/integration-tests/head-function-export/gatsby-config.js @@ -0,0 +1,11 @@ +const { + data: headFunctionExportData, +} = require(`./shared-data/head-function-export.js`) + +module.exports = { + siteMetadata: { + title: "head-function-export", + headFunctionExport: headFunctionExportData.queried, + }, + plugins: [], +} diff --git a/integration-tests/head-function-export/jest-transformer.js b/integration-tests/head-function-export/jest-transformer.js new file mode 100644 index 0000000000000..02167a152534c --- /dev/null +++ b/integration-tests/head-function-export/jest-transformer.js @@ -0,0 +1,5 @@ +const babelJest = require(`babel-jest`) + +module.exports = babelJest.default.createTransformer({ + presets: [`babel-preset-gatsby-package`], +}) diff --git a/integration-tests/head-function-export/jest.config.js b/integration-tests/head-function-export/jest.config.js new file mode 100644 index 0000000000000..8ec23e14f3462 --- /dev/null +++ b/integration-tests/head-function-export/jest.config.js @@ -0,0 +1,13 @@ +module.exports = { + testPathIgnorePatterns: [ + `/node_modules/`, + `__tests__/fixtures`, + `.cache`, + `src/test`, + `src/api`, + ], + watchPathIgnorePatterns: ["src/api", ".cache"], + transform: { + "^.+\\.[jt]sx?$": `./jest-transformer.js`, + }, +} diff --git a/integration-tests/head-function-export/package.json b/integration-tests/head-function-export/package.json new file mode 100644 index 0000000000000..112e6bb1e8b45 --- /dev/null +++ b/integration-tests/head-function-export/package.json @@ -0,0 +1,29 @@ +{ + "name": "head-function-export-integration-test", + "version": "1.0.0", + "private": true, + "author": "Ty Hopp", + "keywords": [ + "gatsby" + ], + "scripts": { + "clean": "gatsby clean", + "build": "gatsby build", + "develop": "gatsby develop", + "serve": "gatsby serve", + "test:jest": "jest", + "test": "npm-run-all -s build test:jest" + }, + "devDependencies": { + "babel-jest": "^27.4.5", + "babel-preset-gatsby-package": "^2.4.0", + "fs-extra": "^10.0.0", + "jest": "^27.2.1", + "npm-run-all": "4.1.5" + }, + "dependencies": { + "gatsby": "next", + "react": "^17.0.2", + "react-dom": "^17.0.2" + } +} diff --git a/integration-tests/head-function-export/shared-data/head-function-export.js b/integration-tests/head-function-export/shared-data/head-function-export.js new file mode 100644 index 0000000000000..056f993b590c3 --- /dev/null +++ b/integration-tests/head-function-export/shared-data/head-function-export.js @@ -0,0 +1,31 @@ +const path = `/head-function-export` + +const page = { + basic: `${path}/basic/`, + pageQuery: `${path}/page-query/`, + reExport: `${path}/re-exported-function/`, + staticQuery: `${path}/static-query-component/`, + warnings: `${path}/warnings/`, + allProps: `${path}/all-props/`, +} + +const data = { + static: { + base: `http://localhost:8000`, + title: `Ella Fitzgerald's Page`, + meta: `Ella Fitzgerald`, + noscript: `You take romance - I will take Jell-O!`, + style: `rebeccapurple`, + link: `/used-by-head-function-export-basic.css`, + }, + queried: { + base: `http://localhost:8000`, + title: `Nat King Cole's Page`, + meta: `Nat King Cole`, + noscript: `There is just one thing I cannot figure out. My income tax!`, + style: `blue`, + link: `/used-by-head-function-export-query.css`, + }, +} + +module.exports = { page, data } diff --git a/integration-tests/head-function-export/src/components/head-function-export.js b/integration-tests/head-function-export/src/components/head-function-export.js new file mode 100644 index 0000000000000..c261601b6c99f --- /dev/null +++ b/integration-tests/head-function-export/src/components/head-function-export.js @@ -0,0 +1,67 @@ +import * as React from "react" +import { useStaticQuery, graphql } from "gatsby" +import { data } from "../../shared-data/head-function-export.js" + +function HeadComponent({ children }) { + const data = useStaticQuery(graphql` + query SiteMetaDataStaticQuery { + site { + siteMetadata { + headFunctionExport { + base + title + meta + noscript + style + link + } + } + } + } + `) + + const { base, title, meta, noscript, style, link } = + data?.site?.siteMetadata?.headFunctionExport || {} + + return ( + <> + + {title} + + + + + {children} + + ) +} + +function Head() { + const { base, title, meta, noscript, style, link } = data.static + + return ( + <> + + {title} + + + + + + ) +} + +export { Head } +export default HeadComponent diff --git a/integration-tests/head-function-export/src/pages/404.js b/integration-tests/head-function-export/src/pages/404.js new file mode 100644 index 0000000000000..936772aa9d979 --- /dev/null +++ b/integration-tests/head-function-export/src/pages/404.js @@ -0,0 +1,13 @@ +import * as React from "react" +import { Link } from "gatsby" + +const NotFoundPage = () => { + return ( +
+ Not found + Go home +
+ ) +} + +export default NotFoundPage diff --git a/integration-tests/head-function-export/src/pages/head-function-export/basic.js b/integration-tests/head-function-export/src/pages/head-function-export/basic.js new file mode 100644 index 0000000000000..10f71983b1ad3 --- /dev/null +++ b/integration-tests/head-function-export/src/pages/head-function-export/basic.js @@ -0,0 +1,36 @@ +import * as React from "react" +import { Link } from "gatsby" +import { data } from "../../../shared-data/head-function-export" + +export default function HeadFunctionExportBasic() { + return ( + <> +

I test basic usage for the head function export

+

Some other words

+ + Navigate to page-query via Gatsby Link + + + ) +} + +export function Head() { + const { base, title, meta, noscript, style, link } = data.static + + return ( + <> + + {title} + + + + + + ) +} diff --git a/integration-tests/head-function-export/src/pages/head-function-export/page-query.js b/integration-tests/head-function-export/src/pages/head-function-export/page-query.js new file mode 100644 index 0000000000000..a3c553e35acfe --- /dev/null +++ b/integration-tests/head-function-export/src/pages/head-function-export/page-query.js @@ -0,0 +1,54 @@ +import * as React from "react" +import { graphql } from "gatsby" +import { Link } from "gatsby" + +export default function HeadFunctionExportPageQuery() { + return ( + <> +

I test usage for the Head function export with a page query

+

Some other words

+ + Navigate to basic via Gatsby Link + + + ) +} + +export function Head({ data }) { + const { base, title, meta, noscript, style, link } = + data?.site?.siteMetadata?.headFunctionExport || {} + + return ( + <> + + {title} + + + + + + ) +} + +export const pageQuery = graphql` + query SiteMetaDataPageQuery { + site { + siteMetadata { + headFunctionExport { + base + title + meta + noscript + style + link + } + } + } + } +` diff --git a/integration-tests/head-function-export/src/pages/head-function-export/re-exported-function.js b/integration-tests/head-function-export/src/pages/head-function-export/re-exported-function.js new file mode 100644 index 0000000000000..31d17812e2a9f --- /dev/null +++ b/integration-tests/head-function-export/src/pages/head-function-export/re-exported-function.js @@ -0,0 +1,12 @@ +import * as React from "react" + +export { Head } from "../../components/head-function-export" + +export default function HeadFunctionExportReExported() { + return ( + <> +

I test usage for the Head function export re exported

+

Some other words

+ + ) +} diff --git a/integration-tests/head-function-export/src/pages/head-function-export/static-query-component.js b/integration-tests/head-function-export/src/pages/head-function-export/static-query-component.js new file mode 100644 index 0000000000000..8da39645a8789 --- /dev/null +++ b/integration-tests/head-function-export/src/pages/head-function-export/static-query-component.js @@ -0,0 +1,15 @@ +import * as React from "react" +import HeadComponent from "../../components/head-function-export" + +export default function HeadFunctionExportStaticQueryComponent() { + return ( + <> +

I test usage for the Head function export via a common component

+

Some other words

+ + ) +} + +export function Head() { + return +} diff --git a/integration-tests/head-function-export/src/pages/index.js b/integration-tests/head-function-export/src/pages/index.js new file mode 100644 index 0000000000000..3ec43cb08b0e3 --- /dev/null +++ b/integration-tests/head-function-export/src/pages/index.js @@ -0,0 +1,11 @@ +import * as React from "react" + +const IndexPage = () => { + return ( +
+ Head function export integration test +
+ ) +} + +export default IndexPage diff --git a/integration-tests/ssr/__tests__/ssr.js b/integration-tests/ssr/__tests__/ssr.js index 38b7e873d1e7e..ccd17f388d482 100644 --- a/integration-tests/ssr/__tests__/ssr.js +++ b/integration-tests/ssr/__tests__/ssr.js @@ -2,6 +2,7 @@ const fetch = require(`node-fetch`) const execa = require(`execa`) const fs = require(`fs-extra`) const path = require(`path`) +const { parse } = require(`node-html-parser`) function fetchUntil(url, filter, timeout = 1000) { return new Promise(resolve => { @@ -43,6 +44,28 @@ describe(`SSR`, () => { ) }, 180000) + test(`dev & build outputs have matching head elements from Head function export`, async () => { + const devSsrHtml = await fetch( + `http://localhost:8000/head-function-export`, + { + headers: { + "x-gatsby-wait-for-dev-ssr": `1`, + }, + } + ).then(res => res.text()) + const devSsrDom = parse(devSsrHtml) + const devSsrHead = devSsrDom.querySelector(`[data-testid=title]`) + + const ssrHtml = await fs.readFile( + `${__dirname}/../public/head-function-export/index.html`, + `utf8` + ) + const ssrDom = parse(ssrHtml) + const ssrHead = ssrDom.querySelector(`[data-testid=title]`) + + expect(devSsrHead.textContent).toEqual(ssrHead.textContent) + }) + describe(`it generates an error page correctly`, () => { const badPages = [ { diff --git a/integration-tests/ssr/src/pages/head-function-export.js b/integration-tests/ssr/src/pages/head-function-export.js new file mode 100644 index 0000000000000..94813eb0bdffc --- /dev/null +++ b/integration-tests/ssr/src/pages/head-function-export.js @@ -0,0 +1,9 @@ +import React from "react" + +export default function PageWithHeadFunctionExport() { + return

I am a page with a Head function export

+} + +export function Head() { + return Hello world +} diff --git a/packages/babel-preset-gatsby/src/babel-preset-react.js b/packages/babel-preset-gatsby/src/babel-preset-react.js new file mode 100644 index 0000000000000..499f9672ea626 --- /dev/null +++ b/packages/babel-preset-gatsby/src/babel-preset-react.js @@ -0,0 +1,3 @@ +import babelPresetReact from "@babel/preset-react" + +export default babelPresetReact diff --git a/packages/gatsby-plugin-typescript/src/__tests__/gatsby-node.js b/packages/gatsby-plugin-typescript/src/__tests__/gatsby-node.js index 989f0c17446f9..61e8bf8ab7ef2 100644 --- a/packages/gatsby-plugin-typescript/src/__tests__/gatsby-node.js +++ b/packages/gatsby-plugin-typescript/src/__tests__/gatsby-node.js @@ -50,15 +50,14 @@ describe(`gatsby-plugin-typescript`, () => { describe(`onCreateWebpackConfig`, () => { it(`sets the correct webpack config`, () => { const actions = { setWebpackConfig: jest.fn() } - const jsLoader = {} - const loaders = { js: jest.fn(() => jsLoader) } + const loaders = { js: jest.fn(() => {}) } onCreateWebpackConfig({ actions, loaders }) expect(actions.setWebpackConfig).toHaveBeenCalledWith({ module: { rules: [ { test: /\.tsx?$/, - use: jsLoader, + use: expect.toBeFunction(), }, ], }, @@ -67,7 +66,7 @@ describe(`gatsby-plugin-typescript`, () => { it(`does not set the webpack config if there isn't a js loader`, () => { const actions = { setWebpackConfig: jest.fn() } - const loaders = { js: jest.fn() } + const loaders = { js: undefined } onCreateWebpackConfig({ actions, loaders }) expect(actions.setWebpackConfig).not.toHaveBeenCalled() }) diff --git a/packages/gatsby-plugin-typescript/src/gatsby-node.js b/packages/gatsby-plugin-typescript/src/gatsby-node.js index 0ccfe8c41fe28..ac523bca25eb8 100644 --- a/packages/gatsby-plugin-typescript/src/gatsby-node.js +++ b/packages/gatsby-plugin-typescript/src/gatsby-node.js @@ -17,9 +17,7 @@ function onCreateBabelConfig({ actions }, options) { } function onCreateWebpackConfig({ actions, loaders }) { - const jsLoader = loaders.js() - - if (!jsLoader) { + if (typeof loaders?.js !== `function`) { return } @@ -28,7 +26,12 @@ function onCreateWebpackConfig({ actions, loaders }) { rules: [ { test: /\.tsx?$/, - use: jsLoader, + use: ({ resourceQuery, issuer }) => [ + loaders.js({ + isPageTemplate: /async-requires/.test(issuer), + resourceQuery, + }), + ], }, ], }, diff --git a/packages/gatsby/cache-dir/__tests__/__snapshots__/dev-loader.js.snap b/packages/gatsby/cache-dir/__tests__/__snapshots__/dev-loader.js.snap index 5ba039d7796d9..34dd744801c1b 100644 --- a/packages/gatsby/cache-dir/__tests__/__snapshots__/dev-loader.js.snap +++ b/packages/gatsby/cache-dir/__tests__/__snapshots__/dev-loader.js.snap @@ -2,7 +2,12 @@ exports[`Dev loader loadPage should be successful when component can be loaded 1`] = ` Object { - "component": [Function], + "component": Object { + "default": [Function], + }, + "head": Object { + "default": [Function], + }, "json": Object { "pageContext": "something something", }, diff --git a/packages/gatsby/cache-dir/__tests__/__snapshots__/loader.js.snap b/packages/gatsby/cache-dir/__tests__/__snapshots__/loader.js.snap index 58192c541ddf4..ac23c5f70eeb4 100644 --- a/packages/gatsby/cache-dir/__tests__/__snapshots__/loader.js.snap +++ b/packages/gatsby/cache-dir/__tests__/__snapshots__/loader.js.snap @@ -3,6 +3,7 @@ exports[`Production loader loadPage should be successful when component can be loaded 1`] = ` Object { "component": "instance", + "head": "instance", "json": Object { "pageContext": "something something", }, diff --git a/packages/gatsby/cache-dir/__tests__/dev-loader.js b/packages/gatsby/cache-dir/__tests__/dev-loader.js index c4d6a17620105..2d6b4c727b754 100644 --- a/packages/gatsby/cache-dir/__tests__/dev-loader.js +++ b/packages/gatsby/cache-dir/__tests__/dev-loader.js @@ -288,6 +288,7 @@ describe(`Dev loader`, () => { const createAsyncRequires = components => { return { components, + head: components, } } @@ -339,6 +340,7 @@ describe(`Dev loader`, () => { expect(expectation).toMatchSnapshot() expect(Object.keys(expectation)).toEqual([ `component`, + `head`, `json`, `page`, `staticQueryResults`, diff --git a/packages/gatsby/cache-dir/__tests__/head/utils.js b/packages/gatsby/cache-dir/__tests__/head/utils.js new file mode 100644 index 0000000000000..2bacdd76b979b --- /dev/null +++ b/packages/gatsby/cache-dir/__tests__/head/utils.js @@ -0,0 +1,145 @@ +import { filterHeadProps } from "../../head/utils" + +const fullPropsExample = { + path: `/john/`, + location: { + pathname: `/john/`, + search: ``, + hash: ``, + href: `http://localhost:8000/john/`, + origin: `http://localhost:8000`, + protocol: `http:`, + host: `localhost:8000`, + hostname: `localhost`, + port: `8000`, + state: { + key: `1656493073882`, + }, + key: `1656493073882`, + }, + pageResources: { + component: {}, + json: { + pageContext: { + id: `502c6522-6bf1-57de-ad0a-a1a0899d46b8`, + name: `John`, + __params: { + name: `john`, + }, + }, + serverData: null, + }, + page: { + componentChunkName: `component---src-pages-person-name-tsx`, + path: `/john/`, + webpackCompilationHash: `123`, + staticQueryHashes: [], + }, + staticQueryResults: {}, + }, + data: { + site: { + siteMetadata: { + title: `gatsby-head`, + }, + }, + }, + uri: `/john`, + children: null, + pageContext: { + id: `502c6522-6bf1-57de-ad0a-a1a0899d46b8`, + name: `John`, + __params: { + name: `john`, + }, + }, + serverData: null, + params: { + name: `john`, + }, +} + +const minimalExample = { + path: `/john/`, + location: { + pathname: `/john/`, + search: ``, + hash: ``, + href: `http://localhost:8000/john/`, + origin: `http://localhost:8000`, + protocol: `http:`, + host: `localhost:8000`, + hostname: `localhost`, + port: `8000`, + state: { + key: `1656493073882`, + }, + key: `1656493073882`, + }, + pageResources: { + component: {}, + json: { + pageContext: { + id: `502c6522-6bf1-57de-ad0a-a1a0899d46b8`, + name: `John`, + __params: { + name: `john`, + }, + }, + serverData: null, + }, + page: { + componentChunkName: `component---src-pages-person-name-tsx`, + path: `/john/`, + webpackCompilationHash: `123`, + staticQueryHashes: [], + }, + staticQueryResults: {}, + }, + uri: `/john`, + children: null, + pageContext: {}, + serverData: null, + params: {}, +} + +describe(`head utils`, () => { + describe(`filterHeadProps`, () => { + it(`should return the correct valid props for full example`, () => { + const props = filterHeadProps(fullPropsExample) + expect(props).toStrictEqual({ + location: { + pathname: `/john/`, + }, + params: { + name: `john`, + }, + data: { + site: { + siteMetadata: { + title: `gatsby-head`, + }, + }, + }, + pageContext: { + id: `502c6522-6bf1-57de-ad0a-a1a0899d46b8`, + name: `John`, + __params: { + name: `john`, + }, + }, + }) + }) + it(`should return the correct valid props for minimal example`, () => { + const props = filterHeadProps(minimalExample) + expect(props).toStrictEqual({ + location: { + pathname: `/john/`, + }, + params: {}, + data: {}, + pageContext: {}, + }) + }) + }) +}) diff --git a/packages/gatsby/cache-dir/__tests__/loader.js b/packages/gatsby/cache-dir/__tests__/loader.js index 3b78093c5cdf4..f98d951d309a0 100644 --- a/packages/gatsby/cache-dir/__tests__/loader.js +++ b/packages/gatsby/cache-dir/__tests__/loader.js @@ -346,6 +346,7 @@ describe(`Production loader`, () => { expect(expectation).toMatchSnapshot() expect(Object.keys(expectation)).toEqual([ `component`, + `head`, `json`, `page`, `staticQueryResults`, diff --git a/packages/gatsby/cache-dir/dev-loader.js b/packages/gatsby/cache-dir/dev-loader.js index ddc6dad90f491..7cc77f262653d 100644 --- a/packages/gatsby/cache-dir/dev-loader.js +++ b/packages/gatsby/cache-dir/dev-loader.js @@ -7,8 +7,6 @@ import normalizePagePath from "./normalize-page-path" // TODO move away from lodash import isEqual from "lodash/isEqual" -const preferDefault = m => (m && m.default) || m - function mergePageEntry(cachedPage, newPageData) { return { ...cachedPage, @@ -31,16 +29,15 @@ function mergePageEntry(cachedPage, newPageData) { class DevLoader extends BaseLoader { constructor(asyncRequires, matchPaths) { - const loadComponent = chunkName => { - if (!this.asyncRequires.components[chunkName]) { + const loadComponent = (chunkName, exportType = `components`) => { + if (!this.asyncRequires[exportType][chunkName]) { throw new Error( `We couldn't find the correct component chunk with the name "${chunkName}"` ) } return ( - this.asyncRequires.components[chunkName]() - .then(preferDefault) + this.asyncRequires[exportType][chunkName]() // loader will handle the case when component is error .catch(err => err) ) diff --git a/packages/gatsby/cache-dir/fast-refresh-overlay/components/runtime-errors.js b/packages/gatsby/cache-dir/fast-refresh-overlay/components/runtime-errors.js index 78ca54146778d..6957e435603ae 100644 --- a/packages/gatsby/cache-dir/fast-refresh-overlay/components/runtime-errors.js +++ b/packages/gatsby/cache-dir/fast-refresh-overlay/components/runtime-errors.js @@ -9,12 +9,15 @@ import { Accordion, AccordionItem } from "./accordion" function WrappedAccordionItem({ error, open }) { const stacktrace = StackTrace.parse(error) const codeFrameInformation = getCodeFrameInformation(stacktrace) - const filePath = codeFrameInformation?.moduleId + + const modulePath = codeFrameInformation?.moduleId const lineNumber = codeFrameInformation?.lineNumber const columnNumber = codeFrameInformation?.columnNumber const name = codeFrameInformation?.functionName + // With the introduction of Metadata management the modulePath can have a resourceQuery that needs to be removed first + const filePath = modulePath.replace(/\?export=(default|head)$/, ``) - const res = useStackFrame({ moduleId: filePath, lineNumber, columnNumber }) + const res = useStackFrame({ moduleId: modulePath, lineNumber, columnNumber }) const line = res.sourcePosition?.line const Title = () => { diff --git a/packages/gatsby/cache-dir/head/components/fire-callback-in-effect.js b/packages/gatsby/cache-dir/head/components/fire-callback-in-effect.js new file mode 100644 index 0000000000000..0a17d8fc4e879 --- /dev/null +++ b/packages/gatsby/cache-dir/head/components/fire-callback-in-effect.js @@ -0,0 +1,12 @@ +import { useEffect } from "react" + +/* + * Calls callback in an effect and renders children + */ +export function FireCallbackInEffect({ children, callback }) { + useEffect(() => { + callback() + }) + + return children +} diff --git a/packages/gatsby/cache-dir/head/constants.js b/packages/gatsby/cache-dir/head/constants.js new file mode 100644 index 0000000000000..05ccf7fdd5c7b --- /dev/null +++ b/packages/gatsby/cache-dir/head/constants.js @@ -0,0 +1,8 @@ +export const VALID_NODE_NAMES = [ + `link`, + `meta`, + `style`, + `title`, + `base`, + `noscript`, +] diff --git a/packages/gatsby/cache-dir/head/head-export-handler-for-browser.js b/packages/gatsby/cache-dir/head/head-export-handler-for-browser.js new file mode 100644 index 0000000000000..758e6011e1ada --- /dev/null +++ b/packages/gatsby/cache-dir/head/head-export-handler-for-browser.js @@ -0,0 +1,82 @@ +import React from "react" +import { useEffect } from "react" +import { StaticQueryContext } from "gatsby" +import { reactDOMUtils } from "../react-dom-utils" +import { FireCallbackInEffect } from "./components/fire-callback-in-effect" +import { VALID_NODE_NAMES } from "./constants" +import { + headExportValidator, + filterHeadProps, + warnForInvalidTags, +} from "./utils" + +const hiddenRoot = document.createElement(`div`) + +const removePrevHeadElements = () => { + const prevHeadNodes = [...document.querySelectorAll(`[data-gatsby-head]`)] + prevHeadNodes.forEach(e => e.remove()) +} + +const onHeadRendered = () => { + const validHeadNodes = [] + + removePrevHeadElements() + + for (const node of hiddenRoot.childNodes) { + const nodeName = node.nodeName.toLowerCase() + + if (!VALID_NODE_NAMES.includes(nodeName)) { + warnForInvalidTags(nodeName) + } else { + const clonedNode = node.cloneNode(true) + clonedNode.setAttribute(`data-gatsby-head`, true) + validHeadNodes.push(clonedNode) + } + } + + document.head.append(...validHeadNodes) +} + +if (process.env.BUILD_STAGE === `develop`) { + // We set up observer to be able to regenerate after react-refresh + // updates our hidden element. + const observer = new MutationObserver(onHeadRendered) + observer.observe(hiddenRoot, { + attributes: true, + childList: true, + characterData: true, + subtree: true, + }) +} + +export function headHandlerForBrowser({ + pageComponent, + staticQueryResults, + pageComponentProps, +}) { + useEffect(() => { + if (pageComponent?.Head) { + headExportValidator(pageComponent.Head) + + const { render } = reactDOMUtils() + + const Head = pageComponent.Head + + render( + // just a hack to call the callback after react has done first render + // Note: In dev, we call onHeadRendered twice( in FireCallbackInEffect and after mutualution observer dectects initail render into hiddenRoot) this is for hot reloading + // In Prod we only call onHeadRendered in FireCallbackInEffect to render to head + + + + + , + hiddenRoot + ) + } + + return () => { + removePrevHeadElements() + } + }) +} diff --git a/packages/gatsby/cache-dir/head/head-export-handler-for-ssr.js b/packages/gatsby/cache-dir/head/head-export-handler-for-ssr.js new file mode 100644 index 0000000000000..0aa7d53e5dac7 --- /dev/null +++ b/packages/gatsby/cache-dir/head/head-export-handler-for-ssr.js @@ -0,0 +1,78 @@ +const React = require(`react`) +const { grabMatchParams } = require(`../find-path`) +const { createElement } = require(`react`) +const { StaticQueryContext } = require(`gatsby`) +const { + headExportValidator, + filterHeadProps, + warnForInvalidTags, +} = require(`./utils`) +const { ServerLocation, Router } = require(`@gatsbyjs/reach-router`) +const { renderToString } = require(`react-dom/server`) +const { parse } = require(`node-html-parser`) +const { VALID_NODE_NAMES } = require(`./constants`) + +export function headHandlerForSSR({ + pageComponent, + setHeadComponents, + staticQueryContext, + pageData, + pagePath, +}) { + if (pageComponent?.Head) { + headExportValidator(pageComponent.Head) + + function HeadRouteHandler(props) { + const _props = { + ...props, + ...pageData.result, + params: { + ...grabMatchParams(props.location.pathname), + ...(pageData.result?.pageContext?.__params || {}), + }, + } + + return createElement(pageComponent.Head, filterHeadProps(_props)) + } + + const routerElement = ( + + + <>{children}} + > + + + + + ) + + // extract head nodes from string + const rawString = renderToString(routerElement) + const headNodes = parse(rawString).childNodes + + const validHeadNodes = [] + + for (const node of headNodes) { + const { rawTagName, attributes } = node + + if (!VALID_NODE_NAMES.includes(rawTagName)) { + warnForInvalidTags(rawTagName) + } else { + const element = createElement( + rawTagName, + { + ...attributes, + "data-gatsby-head": true, + }, + node.childNodes[0]?.textContent + ) + + validHeadNodes.push(element) + } + } + + setHeadComponents(validHeadNodes) + } +} diff --git a/packages/gatsby/cache-dir/head/utils.js b/packages/gatsby/cache-dir/head/utils.js new file mode 100644 index 0000000000000..4551446c0a793 --- /dev/null +++ b/packages/gatsby/cache-dir/head/utils.js @@ -0,0 +1,59 @@ +import { VALID_NODE_NAMES } from "./constants" + +/** + * Filter the props coming from a page down to just the ones that are relevant for head. + * This e.g. filters out properties that are undefined during SSR. + */ +export function filterHeadProps(input) { + return { + location: { + pathname: input.location.pathname, + }, + params: input.params, + data: input.data || {}, + pageContext: input.pageContext, + } +} + +/** + * Throw error if Head export is not a valid + */ +export function headExportValidator(head) { + if (typeof head !== `function`) + throw new Error( + `Expected "Head" export to be a function got "${typeof head}".` + ) +} + +/** + * Warn once for same messsage + */ +let warnOnce = _ => {} +if (process.env.NODE_ENV !== `production`) { + const warnings = new Set() + warnOnce = msg => { + if (!warnings.has(msg)) { + console.warn(msg) + } + warnings.add(msg) + } +} + +export { warnOnce } + +/** + * Warn for invalid tags in head. + * @param {string} tagName + */ +export function warnForInvalidTags(tagName) { + if (process.env.NODE_ENV !== `production`) { + const warning = + tagName !== `script` + ? `<${tagName}> is not a valid head element. Please use one of the following: ${VALID_NODE_NAMES.join( + `, ` + )}` + : `Do not add scripts here. Please use the ) } diff --git a/e2e-tests/development-runtime/src/pages/head-function-export/basic.js b/e2e-tests/development-runtime/src/pages/head-function-export/basic.js index 2f1b7a137b0f6..af5204c87420a 100644 --- a/e2e-tests/development-runtime/src/pages/head-function-export/basic.js +++ b/e2e-tests/development-runtime/src/pages/head-function-export/basic.js @@ -28,6 +28,7 @@ export function Head() { style, link, extraMeta, + jsonLD } = data.static return ( @@ -50,6 +51,9 @@ export function Head() { name="extra-meta-for-hot-reloading" content="%SOME_EXTRA_META%" /> + ) } diff --git a/e2e-tests/development-runtime/src/pages/head-function-export/warnings.js b/e2e-tests/development-runtime/src/pages/head-function-export/warnings.js index be6a624007010..fba419a066190 100644 --- a/e2e-tests/development-runtime/src/pages/head-function-export/warnings.js +++ b/e2e-tests/development-runtime/src/pages/head-function-export/warnings.js @@ -14,7 +14,6 @@ export function Head() { return ( <>

hello

- ) } diff --git a/e2e-tests/production-runtime/cypress/integration/head-function-export/html-insertion.js b/e2e-tests/production-runtime/cypress/integration/head-function-export/html-insertion.js index f518afe0c3572..0c34c9d59502c 100644 --- a/e2e-tests/production-runtime/cypress/integration/head-function-export/html-insertion.js +++ b/e2e-tests/production-runtime/cypress/integration/head-function-export/html-insertion.js @@ -15,6 +15,7 @@ describe(`Head function export html insertion`, () => { cy.getTestElement(`link`) .invoke(`attr`, `href`) .should(`equal`, data.static.link) + cy.getTestElement(`jsonLD`).should(`have.text`, data.static.jsonLD) }) it(`should work with data from a page query`, () => { @@ -47,6 +48,7 @@ describe(`Head function export html insertion`, () => { cy.getTestElement(`link`) .invoke(`attr`, `href`) .should(`equal`, data.static.link) + cy.getTestElement(`jsonLD`).should(`have.text`, data.static.jsonLD) }) it(`should work when an imported Head component with queried data is used`, () => { diff --git a/e2e-tests/production-runtime/cypress/integration/head-function-export/navigation.js b/e2e-tests/production-runtime/cypress/integration/head-function-export/navigation.js index a25e7519a3926..6ce9f7379c34c 100644 --- a/e2e-tests/production-runtime/cypress/integration/head-function-export/navigation.js +++ b/e2e-tests/production-runtime/cypress/integration/head-function-export/navigation.js @@ -42,6 +42,7 @@ describe(`Head function export behavior during CSR navigation (Gatsby Link)`, () cy.getTestElement(`link`) .invoke(`attr`, `href`) .should(`equal`, data.static.link) + cy.getTestElement(`jsonLD`).should(`have.text`, data.static.jsonLD) cy.getTestElement(`navigate-to-page-without-head-export`) .click() @@ -53,6 +54,7 @@ describe(`Head function export behavior during CSR navigation (Gatsby Link)`, () cy.getTestElement(`noscript`).should(`not.exist`) cy.getTestElement(`style`).should(`not.exist`) cy.getTestElement(`link`).should(`not.exist`) + cy.getTestElement(`jsonLD`).should(`not.exist`) }) /** diff --git a/e2e-tests/production-runtime/shared-data/head-function-export.js b/e2e-tests/production-runtime/shared-data/head-function-export.js index c20460ae662ff..523fbc1b62ed7 100644 --- a/e2e-tests/production-runtime/shared-data/head-function-export.js +++ b/e2e-tests/production-runtime/shared-data/head-function-export.js @@ -22,6 +22,7 @@ const data = { style: `rebeccapurple`, link: `/used-by-head-function-export-basic.css`, extraMeta: `Extra meta tag that should be removed during navigation`, + jsonLD: `{"@context":"https://schema.org","@type":"Organization","url":"https://www.spookytech.com","name":"Spookytechnologies","contactPoint":{"@type":"ContactPoint","telephone":"+5-601-785-8543","contactType":"CustomerSupport"}}` }, queried: { base: `http://localhost:9000`, diff --git a/e2e-tests/production-runtime/src/components/head-function-export.js b/e2e-tests/production-runtime/src/components/head-function-export.js index c261601b6c99f..1f60426fa9c97 100644 --- a/e2e-tests/production-runtime/src/components/head-function-export.js +++ b/e2e-tests/production-runtime/src/components/head-function-export.js @@ -43,7 +43,7 @@ function HeadComponent({ children }) { } function Head() { - const { base, title, meta, noscript, style, link } = data.static + const { base, title, meta, noscript, style, link, jsonLD } = data.static return ( <> @@ -59,6 +59,9 @@ function Head() { `} + ) } diff --git a/e2e-tests/production-runtime/src/pages/head-function-export/basic.js b/e2e-tests/production-runtime/src/pages/head-function-export/basic.js index 6845115bef687..1132b579f8cda 100644 --- a/e2e-tests/production-runtime/src/pages/head-function-export/basic.js +++ b/e2e-tests/production-runtime/src/pages/head-function-export/basic.js @@ -18,7 +18,7 @@ export default function HeadFunctionExportBasic() { } export function Head() { - const { base, title, meta, noscript, style, link, extraMeta } = data.static + const { base, title, meta, noscript, style, link, extraMeta, jsonLD } = data.static return ( <> @@ -34,8 +34,10 @@ export function Head() { `} - + ) } diff --git a/integration-tests/head-function-export/__tests__/ssr-html-output.js b/integration-tests/head-function-export/__tests__/ssr-html-output.js index f60c7cd47a1ad..1354d6a62b2d5 100644 --- a/integration-tests/head-function-export/__tests__/ssr-html-output.js +++ b/integration-tests/head-function-export/__tests__/ssr-html-output.js @@ -18,14 +18,15 @@ function getNodes(dom) { const noscript = dom.querySelector(`[data-testid=noscript]`) const style = dom.querySelector(`[data-testid=style]`) const link = dom.querySelector(`[data-testid=link]`) - return { base, title, meta, noscript, style, link } + const jsonLD = dom.querySelector(`[data-testid=jsonLD]`) + return { base, title, meta, noscript, style, link, jsonLD } } describe(`Head function export SSR'ed HTML output`, () => { it(`should work with static data`, () => { const html = readFileSync(`${publicDir}${page.basic}/index.html`) const dom = parse(html) - const { base, title, meta, noscript, style, link } = getNodes(dom) + const { base, title, meta, noscript, style, link, jsonLD } = getNodes(dom) expect(base.attributes.href).toEqual(data.static.base) expect(title.text).toEqual(data.static.title) @@ -33,6 +34,7 @@ describe(`Head function export SSR'ed HTML output`, () => { expect(noscript.text).toEqual(data.static.noscript) expect(style.text).toContain(data.static.style) expect(link.attributes.href).toEqual(data.static.link) + expect(jsonLD.text).toEqual(data.static.jsonLD) }) it(`should work with data from a page query`, () => { @@ -51,7 +53,7 @@ describe(`Head function export SSR'ed HTML output`, () => { it(`should work when a Head function with static data is re-exported from the page`, () => { const html = readFileSync(`${publicDir}${page.reExport}/index.html`) const dom = parse(html) - const { base, title, meta, noscript, style, link } = getNodes(dom) + const { base, title, meta, noscript, style, link, jsonLD } = getNodes(dom) expect(base.attributes.href).toEqual(data.static.base) expect(title.text).toEqual(data.static.title) @@ -59,6 +61,7 @@ describe(`Head function export SSR'ed HTML output`, () => { expect(noscript.text).toEqual(data.static.noscript) expect(style.text).toContain(data.static.style) expect(link.attributes.href).toEqual(data.static.link) + expect(jsonLD.text).toEqual(data.static.jsonLD) }) it(`should work when an imported Head component with queried data is used`, () => { diff --git a/integration-tests/head-function-export/shared-data/head-function-export.js b/integration-tests/head-function-export/shared-data/head-function-export.js index 056f993b590c3..a6bfc266ead36 100644 --- a/integration-tests/head-function-export/shared-data/head-function-export.js +++ b/integration-tests/head-function-export/shared-data/head-function-export.js @@ -17,6 +17,7 @@ const data = { noscript: `You take romance - I will take Jell-O!`, style: `rebeccapurple`, link: `/used-by-head-function-export-basic.css`, + jsonLD: `{"@context":"https://schema.org","@type":"Organization","url":"https://www.spookytech.com","name":"Spookytechnologies","contactPoint":{"@type":"ContactPoint","telephone":"+5-601-785-8543","contactType":"CustomerSupport"}}` }, queried: { base: `http://localhost:8000`, diff --git a/integration-tests/head-function-export/src/components/head-function-export.js b/integration-tests/head-function-export/src/components/head-function-export.js index c261601b6c99f..1f60426fa9c97 100644 --- a/integration-tests/head-function-export/src/components/head-function-export.js +++ b/integration-tests/head-function-export/src/components/head-function-export.js @@ -43,7 +43,7 @@ function HeadComponent({ children }) { } function Head() { - const { base, title, meta, noscript, style, link } = data.static + const { base, title, meta, noscript, style, link, jsonLD } = data.static return ( <> @@ -59,6 +59,9 @@ function Head() { `} + ) } diff --git a/integration-tests/head-function-export/src/pages/head-function-export/basic.js b/integration-tests/head-function-export/src/pages/head-function-export/basic.js index 10f71983b1ad3..0d8a46d7f72c1 100644 --- a/integration-tests/head-function-export/src/pages/head-function-export/basic.js +++ b/integration-tests/head-function-export/src/pages/head-function-export/basic.js @@ -15,7 +15,7 @@ export default function HeadFunctionExportBasic() { } export function Head() { - const { base, title, meta, noscript, style, link } = data.static + const { base, title, meta, noscript, style, link, jsonLD } = data.static return ( <> @@ -31,6 +31,9 @@ export function Head() { `} + ) } diff --git a/packages/gatsby/cache-dir/head/constants.js b/packages/gatsby/cache-dir/head/constants.js index 05ccf7fdd5c7b..a0d86cfc26d73 100644 --- a/packages/gatsby/cache-dir/head/constants.js +++ b/packages/gatsby/cache-dir/head/constants.js @@ -5,4 +5,5 @@ export const VALID_NODE_NAMES = [ `title`, `base`, `noscript`, + `script`, ] diff --git a/packages/gatsby/cache-dir/head/utils.js b/packages/gatsby/cache-dir/head/utils.js index 4551446c0a793..833226a37f90b 100644 --- a/packages/gatsby/cache-dir/head/utils.js +++ b/packages/gatsby/cache-dir/head/utils.js @@ -39,20 +39,15 @@ if (process.env.NODE_ENV !== `production`) { } } -export { warnOnce } - /** * Warn for invalid tags in head. * @param {string} tagName */ export function warnForInvalidTags(tagName) { if (process.env.NODE_ENV !== `production`) { - const warning = - tagName !== `script` - ? `<${tagName}> is not a valid head element. Please use one of the following: ${VALID_NODE_NAMES.join( - `, ` - )}` - : `Do not add scripts here. Please use the , + , + , + , + , + , + ] + + it(`reorders meta tags in front of other tags and keeps original order (for moved meta tags)`, () => { + const reordered = reorderHeadComponents(exampleHead) + const keyList = reordered.map(e => e.key) + expect(keyList).toEqual([ + `desc`, + `og:url`, + `og:desc`, + `style1`, + `style2`, + `json-ld`, + `canonical`, + `icon`, + ]) + }) +}) diff --git a/packages/gatsby/cache-dir/static-entry.js b/packages/gatsby/cache-dir/static-entry.js index ecac53647ecf4..b1252e4f3e914 100644 --- a/packages/gatsby/cache-dir/static-entry.js +++ b/packages/gatsby/cache-dir/static-entry.js @@ -90,6 +90,21 @@ function deepMerge(a, b) { return merge(a, b, { arrayMerge: combineMerge }) } +/** +Reorder headComponents so meta tags are always at the top and aren't missed by crawlers by being pushed down by large inline styles, etc. +@see https://github.com/gatsbyjs/gatsby/issues/22206 +*/ +export const reorderHeadComponents = headComponents => { + const sorted = headComponents.sort((a, b) => { + if (a.type && a.type === `meta` && !(b.type && b.type === `meta`)) { + return -1 + } + return 0 + }) + + return sorted +} + export default async function staticPage({ pagePath, pageData, @@ -404,15 +419,7 @@ export default async function staticPage({ postBodyComponents.push(...bodyScripts) - // Reorder headComponents so meta tags are always at the top and aren't missed by crawlers - // by being pushed down by large inline styles, etc. - // https://github.com/gatsbyjs/gatsby/issues/22206 - headComponents.sort((a, _) => { - if (a.type && a.type === `meta`) { - return -1 - } - return 0 - }) + headComponents = reorderHeadComponents(headComponents) apiRunner(`onPreRenderHTML`, { getHeadComponents, From b08ef185dc80c21bc0bb08b1cbe1deb7063cb6b0 Mon Sep 17 00:00:00 2001 From: Michal Piechowiak Date: Mon, 18 Jul 2022 10:50:57 +0200 Subject: [PATCH 37/90] feat(gatsby): allow deduplicating head elements on `id` (#36138) * feat: deduplicate head elements on id attrbibute in browser * feat: deduplicate head elements on id attrbibute in html gen * page with head deduplication * add test * update comments to match current code * Update e2e-tests/development-runtime/cypress/integration/head-function-export/deduplication.js Co-authored-by: Jude Agboola * Update e2e-tests/development-runtime/cypress/integration/head-function-export/deduplication.js * add test case to e2e-production * add test case to head integration tests Co-authored-by: Jude Agboola --- .../head-function-export/deduplication.js | 19 ++++++++++ .../shared-data/head-function-export.js | 1 + .../head-function-export/deduplication.js | 35 +++++++++++++++++++ .../head-function-export/deduplication.js | 19 ++++++++++ .../shared-data/head-function-export.js | 1 + .../head-function-export/deduplication.js | 35 +++++++++++++++++++ .../__tests__/ssr-html-output.js | 19 ++++++++++ .../head-function-export/package.json | 1 + .../shared-data/head-function-export.js | 1 + .../head-function-export/deduplication.js | 35 +++++++++++++++++++ .../head/head-export-handler-for-browser.js | 15 +++++++- .../head/head-export-handler-for-ssr.js | 15 ++++++-- 12 files changed, 193 insertions(+), 3 deletions(-) create mode 100644 e2e-tests/development-runtime/cypress/integration/head-function-export/deduplication.js create mode 100644 e2e-tests/development-runtime/src/pages/head-function-export/deduplication.js create mode 100644 e2e-tests/production-runtime/cypress/integration/head-function-export/deduplication.js create mode 100644 e2e-tests/production-runtime/src/pages/head-function-export/deduplication.js create mode 100644 integration-tests/head-function-export/src/pages/head-function-export/deduplication.js diff --git a/e2e-tests/development-runtime/cypress/integration/head-function-export/deduplication.js b/e2e-tests/development-runtime/cypress/integration/head-function-export/deduplication.js new file mode 100644 index 0000000000000..1c6efdae12c39 --- /dev/null +++ b/e2e-tests/development-runtime/cypress/integration/head-function-export/deduplication.js @@ -0,0 +1,19 @@ +import headFunctionExportSharedData from "../../../shared-data/head-function-export.js" + +it(`Deduplicates multiple tags with same id`, () => { + cy.visit(headFunctionExportSharedData.page.deduplication).waitForRouteChange() + + // deduplication link has id and should be deduplicated + cy.get(`link[rel=deduplication]`).should("have.length", 1) + // last deduplication link should win + cy.get(`link[rel=deduplication]`).should("have.attr", "href", "/bar") + // we should preserve id + cy.get(`link[rel=deduplication]`).should( + "have.attr", + "id", + "deduplication-test" + ) + + // alternate links are not using id, so should have multiple instances + cy.get(`link[rel=alternate]`).should("have.length", 2) +}) diff --git a/e2e-tests/development-runtime/shared-data/head-function-export.js b/e2e-tests/development-runtime/shared-data/head-function-export.js index 30ff4de8f5e12..c40d4272a2c01 100644 --- a/e2e-tests/development-runtime/shared-data/head-function-export.js +++ b/e2e-tests/development-runtime/shared-data/head-function-export.js @@ -11,6 +11,7 @@ const page = { ssr: `${path}/ssr/`, invalidElements: `${path}/invalid-elements/`, fsRouteApi: `${path}/fs-route-api/`, + deduplication: `${path}/deduplication/`, } const data = { diff --git a/e2e-tests/development-runtime/src/pages/head-function-export/deduplication.js b/e2e-tests/development-runtime/src/pages/head-function-export/deduplication.js new file mode 100644 index 0000000000000..53302923a3462 --- /dev/null +++ b/e2e-tests/development-runtime/src/pages/head-function-export/deduplication.js @@ -0,0 +1,35 @@ +import * as React from "react" + +export default function HeadFunctionDeduplication() { + return ( + <> +

+ I deduplicated Head elements by their id +

+ + ) +} + +function SEO({ children }) { + return ( + <> + + + {children} + + ) +} + +export function Head() { + return ( + + + + + ) +} diff --git a/e2e-tests/production-runtime/cypress/integration/head-function-export/deduplication.js b/e2e-tests/production-runtime/cypress/integration/head-function-export/deduplication.js new file mode 100644 index 0000000000000..1c6efdae12c39 --- /dev/null +++ b/e2e-tests/production-runtime/cypress/integration/head-function-export/deduplication.js @@ -0,0 +1,19 @@ +import headFunctionExportSharedData from "../../../shared-data/head-function-export.js" + +it(`Deduplicates multiple tags with same id`, () => { + cy.visit(headFunctionExportSharedData.page.deduplication).waitForRouteChange() + + // deduplication link has id and should be deduplicated + cy.get(`link[rel=deduplication]`).should("have.length", 1) + // last deduplication link should win + cy.get(`link[rel=deduplication]`).should("have.attr", "href", "/bar") + // we should preserve id + cy.get(`link[rel=deduplication]`).should( + "have.attr", + "id", + "deduplication-test" + ) + + // alternate links are not using id, so should have multiple instances + cy.get(`link[rel=alternate]`).should("have.length", 2) +}) diff --git a/e2e-tests/production-runtime/shared-data/head-function-export.js b/e2e-tests/production-runtime/shared-data/head-function-export.js index 523fbc1b62ed7..a53b7edf8ee3a 100644 --- a/e2e-tests/production-runtime/shared-data/head-function-export.js +++ b/e2e-tests/production-runtime/shared-data/head-function-export.js @@ -11,6 +11,7 @@ const page = { ssr: `${path}/ssr/`, invalidElements: `${path}/invalid-elements/`, fsRouteApi: `${path}/fs-route-api/`, + deduplication: `${path}/deduplication/`, } const data = { diff --git a/e2e-tests/production-runtime/src/pages/head-function-export/deduplication.js b/e2e-tests/production-runtime/src/pages/head-function-export/deduplication.js new file mode 100644 index 0000000000000..53302923a3462 --- /dev/null +++ b/e2e-tests/production-runtime/src/pages/head-function-export/deduplication.js @@ -0,0 +1,35 @@ +import * as React from "react" + +export default function HeadFunctionDeduplication() { + return ( + <> +

+ I deduplicated Head elements by their id +

+ + ) +} + +function SEO({ children }) { + return ( + <> + + + {children} + + ) +} + +export function Head() { + return ( + + + + + ) +} diff --git a/integration-tests/head-function-export/__tests__/ssr-html-output.js b/integration-tests/head-function-export/__tests__/ssr-html-output.js index 1354d6a62b2d5..74ab79ac30afb 100644 --- a/integration-tests/head-function-export/__tests__/ssr-html-output.js +++ b/integration-tests/head-function-export/__tests__/ssr-html-output.js @@ -76,4 +76,23 @@ describe(`Head function export SSR'ed HTML output`, () => { expect(style.text).toContain(data.queried.style) expect(link.attributes.href).toEqual(data.queried.link) }) + + it(`deduplicates multiple tags with same id`, () => { + const html = readFileSync(`${publicDir}${page.deduplication}/index.html`) + const dom = parse(html) + + // deduplication link has id and should be deduplicated + expect(dom.querySelectorAll(`link[rel=deduplication]`)?.length).toEqual(1) + // last deduplication link should win + expect( + dom.querySelector(`link[rel=deduplication]`)?.attributes?.href + ).toEqual("/bar") + // we should preserve id + expect( + dom.querySelector(`link[rel=deduplication]`)?.attributes?.id + ).toEqual("deduplication-test") + + // alternate links are not using id, so should have multiple instances + expect(dom.querySelectorAll(`link[rel=alternate]`)?.length).toEqual(2) + }) }) diff --git a/integration-tests/head-function-export/package.json b/integration-tests/head-function-export/package.json index 112e6bb1e8b45..3005b8f69b4ff 100644 --- a/integration-tests/head-function-export/package.json +++ b/integration-tests/head-function-export/package.json @@ -19,6 +19,7 @@ "babel-preset-gatsby-package": "^2.4.0", "fs-extra": "^10.0.0", "jest": "^27.2.1", + "node-html-parser": "^5.3.3", "npm-run-all": "4.1.5" }, "dependencies": { diff --git a/integration-tests/head-function-export/shared-data/head-function-export.js b/integration-tests/head-function-export/shared-data/head-function-export.js index a6bfc266ead36..6945cdda70994 100644 --- a/integration-tests/head-function-export/shared-data/head-function-export.js +++ b/integration-tests/head-function-export/shared-data/head-function-export.js @@ -7,6 +7,7 @@ const page = { staticQuery: `${path}/static-query-component/`, warnings: `${path}/warnings/`, allProps: `${path}/all-props/`, + deduplication: `${path}/deduplication/`, } const data = { diff --git a/integration-tests/head-function-export/src/pages/head-function-export/deduplication.js b/integration-tests/head-function-export/src/pages/head-function-export/deduplication.js new file mode 100644 index 0000000000000..53302923a3462 --- /dev/null +++ b/integration-tests/head-function-export/src/pages/head-function-export/deduplication.js @@ -0,0 +1,35 @@ +import * as React from "react" + +export default function HeadFunctionDeduplication() { + return ( + <> +

+ I deduplicated Head elements by their id +

+ + ) +} + +function SEO({ children }) { + return ( + <> + + + {children} + + ) +} + +export function Head() { + return ( + + + + + ) +} diff --git a/packages/gatsby/cache-dir/head/head-export-handler-for-browser.js b/packages/gatsby/cache-dir/head/head-export-handler-for-browser.js index 758e6011e1ada..d4113e15e7ff2 100644 --- a/packages/gatsby/cache-dir/head/head-export-handler-for-browser.js +++ b/packages/gatsby/cache-dir/head/head-export-handler-for-browser.js @@ -22,15 +22,28 @@ const onHeadRendered = () => { removePrevHeadElements() + const seenIds = new Map() for (const node of hiddenRoot.childNodes) { const nodeName = node.nodeName.toLowerCase() + const id = node.attributes.id?.value if (!VALID_NODE_NAMES.includes(nodeName)) { warnForInvalidTags(nodeName) } else { const clonedNode = node.cloneNode(true) clonedNode.setAttribute(`data-gatsby-head`, true) - validHeadNodes.push(clonedNode) + if (id) { + if (!seenIds.has(id)) { + validHeadNodes.push(clonedNode) + seenIds.set(id, validHeadNodes.length - 1) + } else { + const indexOfPreviouslyInsertedNode = seenIds.get(id) + validHeadNodes[indexOfPreviouslyInsertedNode].remove() + validHeadNodes[indexOfPreviouslyInsertedNode] = clonedNode + } + } else { + validHeadNodes.push(clonedNode) + } } } diff --git a/packages/gatsby/cache-dir/head/head-export-handler-for-ssr.js b/packages/gatsby/cache-dir/head/head-export-handler-for-ssr.js index 0aa7d53e5dac7..2003321cf71cb 100644 --- a/packages/gatsby/cache-dir/head/head-export-handler-for-ssr.js +++ b/packages/gatsby/cache-dir/head/head-export-handler-for-ssr.js @@ -54,8 +54,10 @@ export function headHandlerForSSR({ const validHeadNodes = [] + const seenIds = new Map() for (const node of headNodes) { const { rawTagName, attributes } = node + const id = attributes.id if (!VALID_NODE_NAMES.includes(rawTagName)) { warnForInvalidTags(rawTagName) @@ -68,8 +70,17 @@ export function headHandlerForSSR({ }, node.childNodes[0]?.textContent ) - - validHeadNodes.push(element) + if (id) { + if (!seenIds.has(id)) { + validHeadNodes.push(element) + seenIds.set(id, validHeadNodes.length - 1) + } else { + const indexOfPreviouslyInsertedNode = seenIds.get(id) + validHeadNodes[indexOfPreviouslyInsertedNode] = element + } + } else { + validHeadNodes.push(element) + } } } From c3c6a5b54ae695309c3eec1daeff3b2c4e6bf393 Mon Sep 17 00:00:00 2001 From: Jude Agboola Date: Tue, 19 Jul 2022 05:25:44 +0100 Subject: [PATCH 38/90] fix(gatsby): Wrap Head with (#36160) --- .../head-function-export/use-location.js | 13 +++++++++++++ .../shared-data/head-function-export.js | 1 + .../page-with-uselocation.js | 19 +++++++++++++++++++ .../head/head-export-handler-for-browser.js | 5 ++++- 4 files changed, 37 insertions(+), 1 deletion(-) create mode 100644 e2e-tests/production-runtime/cypress/integration/head-function-export/use-location.js create mode 100644 e2e-tests/production-runtime/src/pages/head-function-export/page-with-uselocation.js diff --git a/e2e-tests/production-runtime/cypress/integration/head-function-export/use-location.js b/e2e-tests/production-runtime/cypress/integration/head-function-export/use-location.js new file mode 100644 index 0000000000000..0bc4f7730a3a8 --- /dev/null +++ b/e2e-tests/production-runtime/cypress/integration/head-function-export/use-location.js @@ -0,0 +1,13 @@ +import headFunctionExportSharedData from "../../../shared-data/head-function-export.js" + +it(`Page with Head Export that uses useLocation works`, () => { + cy.visit(headFunctionExportSharedData.page.pageWithUseLocation).waitForRouteChange() + + cy.getTestElement(`location-pathname-in-template`) + .invoke(`text`) + .then(text => { + cy.getTestElement(`location-pathname-in-head`) + .invoke(`attr`, `content`) + .should('equal', text) + }) +}) diff --git a/e2e-tests/production-runtime/shared-data/head-function-export.js b/e2e-tests/production-runtime/shared-data/head-function-export.js index a53b7edf8ee3a..6dd60789408d8 100644 --- a/e2e-tests/production-runtime/shared-data/head-function-export.js +++ b/e2e-tests/production-runtime/shared-data/head-function-export.js @@ -12,6 +12,7 @@ const page = { invalidElements: `${path}/invalid-elements/`, fsRouteApi: `${path}/fs-route-api/`, deduplication: `${path}/deduplication/`, + pageWithUseLocation: `${path}/page-with-uselocation/`, } const data = { diff --git a/e2e-tests/production-runtime/src/pages/head-function-export/page-with-uselocation.js b/e2e-tests/production-runtime/src/pages/head-function-export/page-with-uselocation.js new file mode 100644 index 0000000000000..088e4f21afad0 --- /dev/null +++ b/e2e-tests/production-runtime/src/pages/head-function-export/page-with-uselocation.js @@ -0,0 +1,19 @@ +import * as React from "react" +import { useLocation } from '@gatsbyjs/reach-router'; + +export default function HeadFunctionExportWithUseLocation() { + const location = useLocation(); + + return ( + <> +

I test that Head export with useLocation hook works

+

{location.pathname}

+ + ) +} + +export function Head() { + const location = useLocation(); + + return +} \ No newline at end of file diff --git a/packages/gatsby/cache-dir/head/head-export-handler-for-browser.js b/packages/gatsby/cache-dir/head/head-export-handler-for-browser.js index d4113e15e7ff2..94d42f4ee7b02 100644 --- a/packages/gatsby/cache-dir/head/head-export-handler-for-browser.js +++ b/packages/gatsby/cache-dir/head/head-export-handler-for-browser.js @@ -1,6 +1,7 @@ import React from "react" import { useEffect } from "react" import { StaticQueryContext } from "gatsby" +import { LocationProvider } from "@gatsbyjs/reach-router" import { reactDOMUtils } from "../react-dom-utils" import { FireCallbackInEffect } from "./components/fire-callback-in-effect" import { VALID_NODE_NAMES } from "./constants" @@ -81,7 +82,9 @@ export function headHandlerForBrowser({ // In Prod we only call onHeadRendered in FireCallbackInEffect to render to head - + + + , hiddenRoot From ca6ba62db477931301efe850fb69f6dd814fc449 Mon Sep 17 00:00:00 2001 From: Lennart Date: Tue, 19 Jul 2022 09:52:37 +0200 Subject: [PATCH 39/90] chore(docs): Add Gatsby Head (#36125) Co-authored-by: Ty Hopp --- docs/docs/add-page-metadata.md | 54 ----- docs/docs/add-seo-component.md | 220 ----------------- .../adding-seo-component.md | 226 ++++++++++++++++++ .../docs/how-to/adding-common-features/seo.md | 81 ------- .../how-to/custom-configuration/typescript.md | 73 +++++- .../built-in-components/gatsby-head.md | 130 ++++++++++ examples/using-gatsby-head/README.md | 22 ++ examples/using-gatsby-head/gatsby-config.ts | 15 ++ examples/using-gatsby-head/gatsby-node.ts | 38 +++ examples/using-gatsby-head/gatsby-ssr.tsx | 5 + examples/using-gatsby-head/package.json | 29 +++ .../using-gatsby-head/src/components/seo.tsx | 36 +++ .../src/hooks/use-site-metadata.tsx | 31 +++ examples/using-gatsby-head/src/pages/404.tsx | 5 + .../using-gatsby-head/src/pages/index.tsx | 85 +++++++ .../src/pages/parks/{Park.name}.tsx | 66 +++++ .../using-gatsby-head/static/gatsby-icon.png | Bin 0 -> 21212 bytes examples/using-gatsby-head/tsconfig.json | 19 ++ 18 files changed, 777 insertions(+), 358 deletions(-) delete mode 100644 docs/docs/add-page-metadata.md delete mode 100644 docs/docs/add-seo-component.md create mode 100644 docs/docs/how-to/adding-common-features/adding-seo-component.md delete mode 100644 docs/docs/how-to/adding-common-features/seo.md create mode 100644 docs/docs/reference/built-in-components/gatsby-head.md create mode 100644 examples/using-gatsby-head/README.md create mode 100644 examples/using-gatsby-head/gatsby-config.ts create mode 100644 examples/using-gatsby-head/gatsby-node.ts create mode 100644 examples/using-gatsby-head/gatsby-ssr.tsx create mode 100644 examples/using-gatsby-head/package.json create mode 100644 examples/using-gatsby-head/src/components/seo.tsx create mode 100644 examples/using-gatsby-head/src/hooks/use-site-metadata.tsx create mode 100644 examples/using-gatsby-head/src/pages/404.tsx create mode 100644 examples/using-gatsby-head/src/pages/index.tsx create mode 100644 examples/using-gatsby-head/src/pages/parks/{Park.name}.tsx create mode 100644 examples/using-gatsby-head/static/gatsby-icon.png create mode 100644 examples/using-gatsby-head/tsconfig.json diff --git a/docs/docs/add-page-metadata.md b/docs/docs/add-page-metadata.md deleted file mode 100644 index 3824ab097cf39..0000000000000 --- a/docs/docs/add-page-metadata.md +++ /dev/null @@ -1,54 +0,0 @@ ---- -title: Adding Page Metadata ---- - -If you've run an [audit with Lighthouse](/docs/how-to/performance/audit-with-lighthouse/), you may have noticed a lackluster score in the "SEO" category. Let's address how you can improve that score. - -Adding metadata to pages (such as a title or description) is key in helping search engines like Google understand your content, and decide when to surface it in search results. - -[React Helmet](https://github.com/nfl/react-helmet) is a package that provides a React component interface for you to manage your [document head](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/head). - -Gatsby's [react helmet plugin](/plugins/gatsby-plugin-react-helmet/) provides drop-in support for server rendering data added with React Helmet. Using the plugin, attributes you add to React Helmet will be added to the static HTML pages that Gatsby builds. - -## Using `React Helmet` and `gatsby-plugin-react-helmet` - -1. Install both packages: - -```shell -npm install gatsby-plugin-react-helmet react-helmet -``` - -2. Add the plugin to the `plugins` array in your `gatsby-config.js` file. - -```javascript:title=gatsby-config.js -{ - plugins: [`gatsby-plugin-react-helmet`] -} -``` - -3. Use `React Helmet` in your pages: - -```jsx -import React from "react" -import { Helmet } from "react-helmet" - -class Application extends React.Component { - render() { - return ( -
- {/* highlight-start */} - - - My Title - - - {/* highlight-end */} -
- ) - } -} -``` - -> 💡 The above example is from the [React Helmet docs](https://github.com/nfl/react-helmet#example). Check those out for more! - -You may also be interested in checking out the doc on [adding an SEO component](/docs/add-seo-component/). diff --git a/docs/docs/add-seo-component.md b/docs/docs/add-seo-component.md deleted file mode 100644 index c249fa30ebc4e..0000000000000 --- a/docs/docs/add-seo-component.md +++ /dev/null @@ -1,220 +0,0 @@ ---- -title: "Adding an SEO Component" ---- - -Every site on the web has basic _meta-tags_ like the title, favicon or description of the page in their `` element. This information gets displayed in the browser and is used when someone shares your website, e.g. on Twitter. You can give your users and these websites additional data to embed your website with more data — and that's where this guide for a SEO component comes in. At the end you'll have a component you can place in your layout file and have rich previews for other clients, smartphone users, and search engines. - -_Note: This component will use `useStaticQuery`. If you're unfamiliar with that, have a look at the [useStaticQuery documentation](/docs/how-to/querying-data/use-static-query/). You also have to have `react-helmet` installed for which you can have a look at [this document](/docs/add-page-metadata)._ - -## gatsby-config.js - -Gatsby automatically exposes the `siteMetadata` section of the `gatsby-config` file in the GraphQL datalayer. It's considered best practice to place your site meta information there. - -```js:title=gatsby-config.js -module.exports = { - siteMetadata: { - title: "Severus Snape", - titleTemplate: "%s · The Real Hero", - description: - "Hogwarts Potions master, Head of Slytherin house and former Death Eater.", - url: "https://www.doe.com", // No trailing slash allowed! - image: "/snape.jpg", // Path to the image placed in the 'static' folder, in the project's root directory. - twitterUsername: "@occlumency", - }, -} -``` - -## SEO component - -First create a new component with this initial boilerplate. - -```jsx:title=src/components/seo.js -import React from "react" -import PropTypes from "prop-types" -import { Helmet } from "react-helmet" -import { useLocation } from "@reach/router" -import { useStaticQuery, graphql } from "gatsby" - -const SEO = ({ title, description, image, article }) => () - -export default SEO - -SEO.propTypes = { - title: PropTypes.string, - description: PropTypes.string, - image: PropTypes.string, - article: PropTypes.bool, -} - -SEO.defaultProps = { - title: null, - description: null, - image: null, - article: false, -} -``` - -**Note:** `propTypes` are included in this example to help you ensure you’re getting all the data you need in the component, and to help serve as a guide while destructuring / using those props. - -As the SEO component should also be usable in other files, e.g. a template file, the component also accepts properties for which you set sensible defaults in the `SEO.defaultProps` section. This way the information you put into `siteMetadata` gets used every time unless you define the property explicitly. - -Now define the query and pass it to `useStaticQuery`. You can also alias query items, so `title` gets renamed to `defaultTitle`. - -```jsx:title=src/components/seo.js -const SEO = ({ title, description, image, article }) => { - const { pathname } = useLocation() - const { site } = useStaticQuery(query) - - return null -} - -export default SEO - -const query = graphql` - query SEO { - site { - siteMetadata { - defaultTitle: title - titleTemplate - defaultDescription: description - siteUrl: url - defaultImage: image - twitterUsername - } - } - } -` -``` - -The next step is to destructure the data from the query and create an object that checks if the props were used. If not, the default values are applied. Aliasing the properties comes in handy here to avoid name collisions. - -```jsx:title=src/components/seo.js -const SEO = ({ title, description, image, article }) => { - const { pathname } = useLocation() - const { site } = useStaticQuery(query) - - const { - defaultTitle, - titleTemplate, - defaultDescription, - siteUrl, - defaultImage, - twitterUsername, - } = site.siteMetadata - - const seo = { - title: title || defaultTitle, - description: description || defaultDescription, - image: `${siteUrl}${image || defaultImage}`, - url: `${siteUrl}${pathname}`, - } - - return null -} - -export default SEO -``` - -The last step is to return this data with the help of `Helmet`. Your complete SEO component should look like this. - -```jsx:title=src/components/seo.js -import React from "react" -import PropTypes from "prop-types" -import { Helmet } from "react-helmet" -import { useLocation } from "@reach/router" -import { useStaticQuery, graphql } from "gatsby" - -const SEO = ({ title, description, image, article }) => { - const { pathname } = useLocation() - const { site } = useStaticQuery(query) - - const { - defaultTitle, - titleTemplate, - defaultDescription, - siteUrl, - defaultImage, - twitterUsername, - } = site.siteMetadata - - const seo = { - title: title || defaultTitle, - description: description || defaultDescription, - image: `${siteUrl}${image || defaultImage}`, - url: `${siteUrl}${pathname}`, - } - - return ( - - - - - {seo.url && } - - {(article ? true : null) && } - - {seo.title && } - - {seo.description && ( - - )} - - {seo.image && } - - - - {twitterUsername && ( - - )} - - {seo.title && } - - {seo.description && ( - - )} - - {seo.image && } - - ) -} - -export default SEO - -SEO.propTypes = { - title: PropTypes.string, - description: PropTypes.string, - image: PropTypes.string, - article: PropTypes.bool, -} - -SEO.defaultProps = { - title: null, - description: null, - image: null, - article: false, -} - -const query = graphql` - query SEO { - site { - siteMetadata { - defaultTitle: title - titleTemplate - defaultDescription: description - siteUrl: url - defaultImage: image - twitterUsername - } - } - } -` -``` - -## Examples - -You could also put the Facebook and Twitter meta-tags into their own components, add custom favicons you placed in your `static` folder, and add [schema.org](https://schema.org/) data (Google will use that for their [Structured Data](https://developers.google.com/search/docs/guides/intro-structured-data)). To see how that works you can have a look at these two examples: - -- [marisamorby.com](https://github.com/marisamorby/marisamorby.com/blob/master/packages/gatsby-theme-blog-sanity/src/components/seo.js) -- [gatsby-starter-prismic](https://github.com/LekoArts/gatsby-starter-prismic/blob/master/src/components/SEO/SEO.jsx) - -As mentioned at the beginning you are also able to use the component in templates, like in [this example](https://github.com/jlengstorf/marisamorby.com/blob/6e86f845185f9650ff95316d3475bb8ac86b15bf/src/templates/post.js#L12-L18). diff --git a/docs/docs/how-to/adding-common-features/adding-seo-component.md b/docs/docs/how-to/adding-common-features/adding-seo-component.md new file mode 100644 index 0000000000000..81a35a5629b14 --- /dev/null +++ b/docs/docs/how-to/adding-common-features/adding-seo-component.md @@ -0,0 +1,226 @@ +--- +title: Adding an SEO Component +examples: + - label: Using Gatsby Head + href: "https://github.com/gatsbyjs/gatsby/tree/master/examples/using-gatsby-head" +--- + +Adding metadata to pages (such as a title or description) is key in helping search engines like Google understand your content, and decide when to surface it in search results. This information also gets displayed when someone shares your website, e.g. on Twitter. Using the [Gatsby Head API](/docs/reference/built-in-components/gatsby-head/) you can change the [document head](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/head) of your pages. + +Gatsby automatically provides drop-in support for server rendering of metadata and it'll be added to the static HTML pages that Gatsby produces. This helps your site rank and perform better in search engines. + +By the end of this guide you'll have a SEO component that you can use in your pages to define metadata. + +## Prerequisites + +- A Gatsby project set up with `gatsby@4.19.0` or later. (Need help creating one? Follow the [Quick Start](/docs/quick-start/)) + +## Directions + +### Add `siteMetadata` + +The `siteMetadata` section of the `gatsby-config` file is available in the GraphQL datalayer. It's considered best practice to place your site metadata there. The `siteUrl` should be the URL of your deployed target (e.g. production domain) so that later metatags can point to absolute URLs. + +Add the following keys to your configuration: + +```js:title=gatsby-config.js +module.exports = { + siteMetadata: { + title: `Using Gatsby Head`, + description: `Example project for the Gatsby Head API`, + twitterUsername: `@gatsbyjs`, + image: `/gatsby-icon.png`, + siteUrl: `https://www.yourdomain.tld`, + }, +} +``` + +You can always extend the `siteMetadata` object and subsequently customize the `` component to your liking. When defining the `image` like above, make sure that you have an image with the same name and file extension in the [`static` folder](/docs/how-to/images-and-media/static-folder/). + +### Create a `useSiteMetadata` hook + +Since you need to use the information that you just placed inside `siteMetadata` with the SEO component, you can create a custom React hook called `useSiteMetadata` to fetch that information. This way you can reference these values in other places, too. + +Create a new file called `use-site-metadata.jsx` in `src/hooks`. Query the information from the `site` interface through a [useStaticQuery hook](/docs/how-to/querying-data/use-static-query/): + +```jsx:title=src/hooks/use-site-metadata.jsx +import { graphql, useStaticQuery } from "gatsby" + +export const useSiteMetadata = () => { + const data = useStaticQuery(graphql` + query { + site { + siteMetadata { + title + description + twitterUsername + image + siteUrl + } + } + } + `) + + return data.site.siteMetadata +} +``` + +You'll be able to directly get `title`, `description`, etc. from this hook. + +### SEO component + +Create a new file called `seo.jsx` in `src/components`. Your SEO component will receive things like `title`, `description`, `children`, etc. as props and the information from your `useSiteMetadata` hook is used as a fallback if no props are passed. For things that won't change on a per-page basis (e.g. the Twitter username) the `useSiteMetadata` hook data is directly used. + +Here's the complete SEO component: + +```jsx:title=src/components/seo.jsx +import React from "react" +import { useSiteMetadata } from "../hooks/use-site-metadata" + +export const SEO = ({ title, description, pathname, children }) => { + const { title: defaultTitle, description: defaultDescription, image, siteUrl, twitterUsername } = useSiteMetadata() + + const seo = { + title: title || defaultTitle, + description: description || defaultDescription, + image: `${siteUrl}${image}`, + url: `${siteUrl}${pathname || ``}`, + twitterUsername, + } + + return ( + <> + {seo.title} + + + + + + + + + + {children} + + ) +} +``` + +All props are optional since each value has a default value or fallback. The `pathname` prop will be the relative path of the page so you need to construct an absolute URL with `siteUrl`. + +You can extend the `seo` object with other keys, but it's recommended to follow the pattern of `prop || fallback` so that no value is `undefined`. + +### Usage in pages + +When you just want to use the default values of your SEO component (e.g. on the homepage) you can import it and render it without any props: + +```jsx:title=src/pages/index.jsx +import React from "react" +import { SEO } from "../components/seo" + +const IndexPage = () => { + return ( +
+ Hello World +
+ ) +} + +export default IndexPage + +// highlight-start +export const Head = () => ( + +) +// highlight-end +``` + +To override individual values use the defined props on the SEO component: + +```jsx:title=src/pages/page-2.jsx +import React from "react" +import { SEO } from "../components/seo" + +const SecondPage = () => { + return ( +
+ Hello World +
+ ) +} + +export default SecondPage + +// highlight-start +export const Head = () => ( + +) +// highlight-end +``` + +To add one-off metatags to a page, provide `children` to the SEO component: + +```jsx:title=src/pages/one-off.jsx +import React from "react" +import { SEO } from "../components/seo" + +const OneOffPage = () => { + return ( +
+ Hello World +
+ ) +} + +export default OneOffPage + +// highlight-start +export const Head = () => ( + + + +) +// highlight-end +``` + +## Additional Information + +Data block ` +``` + +You can use the [Rich Results Test](https://search.google.com/test/rich-results) from Google during local development to check if you pass valid information. + +After deployment, their [Rich result status reports](https://support.google.com/webmasters/answer/7552505?hl=en) may help to monitor the health of your pages and mitigate any templating or serving issues. + +## Additional Resources + +- [Using Gatsby Head with TypeScript](/docs/how-to/custom-configuration/typescript/#headprops) +- [Gatsby Head Reference Guide](/docs/reference/built-in-components/gatsby-head/) +- [Gatsby Script Component](/docs/reference/built-in-components/gatsby-script/) +- [Blog posts about SEO in Gatsby](/blog/tags/seo/) +- [Audit with Lighthouse](/docs/how-to/performance/audit-with-lighthouse/) diff --git a/docs/docs/how-to/adding-common-features/seo.md b/docs/docs/how-to/adding-common-features/seo.md deleted file mode 100644 index 1f279bc855600..0000000000000 --- a/docs/docs/how-to/adding-common-features/seo.md +++ /dev/null @@ -1,81 +0,0 @@ ---- -title: SEO with Gatsby ---- - -Gatsby can help your site rank and perform better in search engines. Using Gatsby makes your site fast and efficient for search engine crawlers, like Googlebot, to crawl your site and index your pages. Some advantages, like speed, come out of the box and others require configuration. - -## Server rendering - -Because Gatsby pages are server-side rendered, all the page content is available to Googlebot and other search engine crawlers. -You can see this by viewing the source for this page in your browser, Right-Click => View source. You'll see the fully rendered HTML document. - -When you've installed [`gatsby-plugin-offline`](/plugins/gatsby-plugin-offline/), you'll see a partial HTML document that does not contain the HTML you were hoping for. By using `gatsby-plugin-offline`, we can optimize bandwidth consumption and not let your users download too much data. Serving a partial HTML document is okay. Google and other search engines will still see the full HTML because `gatsby-plugin-offline` only starts working on the second-page load. A search engine always runs a page in Sandbox mode, which essentially is the first visit. - -As a website owner, how do I test my site is serving its HTML correctly when `gatsby-plugin-offline` is being used? It would be best if you used your terminal of choice to visit your website. You can crawl your site by running the following command: - -**on Windows (using PowerShell):** - -```shell -Invoke-WebRequest https://www.gatsbyjs.com/docs/how-to/adding-common-features/seo | Select -ExpandProperty Content -``` - -**on macOS/Linux:** - -```shell -curl https://www.gatsbyjs.com/docs/how-to/adding-common-features/seo -``` - -## Speed boost - -Gatsby's many built-in performance optimizations, such as rendering to static files, progressive image loading, and so on, helping your site be lightning-fast by default. - -In June 2021, [Google implemented a new ranking factor for site speed](https://developers.google.com/search/blog/2020/11/timing-for-page-experience), calling the algorithm update the "Core Web Vitals Update". - -The Gatsby team included information about this in the [Core Web Vitals webinar](/resources/webinars/understanding-core-web-vitals). - -## Page metadata - -Adding metadata to pages, such as page title, meta description, alt text and structured data using JSON-LD, helps search engines understand your content and when to show your pages in search results. - -A common way to add metadata to pages is to add [react-helmet](https://github.com/nfl/react-helmet) components (together with the [Gatsby React Helmet plugin](/plugins/gatsby-plugin-react-helmet) for SSR support) to your page components. Here's a [guide on how to add an SEO component](/docs/add-seo-component/) to your Gatsby app. - -Some examples using react-helmet: - -- [Official GatsbyJS default starter](https://github.com/gatsbyjs/gatsby/blob/master/starters/default/src/components/seo.js) -- [Gatsby Mail](https://github.com/DSchau/gatsby-mail/blob/89b467e5654619ffe3073133ef0ae48b4d7502e3/src/components/meta.js) -- [Jason Lengstorf’s personal blog](https://github.com/jlengstorf/gatsby-theme-jason-blog/blob/e6d25ca927afdc75c759e611d4ba6ba086452bb8/src/components/SEO/SEO.js) - -## Generate rich snippets in search engines using structured data - -Google uses structured data that it finds on the web to understand the content of the page, as well as to gather information about the web and the world in general. - -For example, here is a structured data snippet (added with `react-helmet`) in the [JSON-LD format](https://developers.google.com/search/docs/guides/intro-structured-data) (JavaScript Object Notation for Linked Data), that might appear on the contact page of a company called Spooky Technologies, describing their contact information: - -```jsx - - - -``` - -When using structured data, you'll need to test during development and the [Rich Results Test](https://search.google.com/test/rich-results) from Google is one recommended method. - -After deployment, their [Rich result status reports](https://support.google.com/webmasters/answer/7552505?hl=en) may help to monitor the health of your pages and mitigate any templating or serving issues. - -## Additional resources - -- [Blog posts about SEO in Gatsby](/blog/tags/seo/) -- [An advanced tutorial about SEO and social sharing cards](/tutorial/seo-and-social-sharing-cards-tutorial/) diff --git a/docs/docs/how-to/custom-configuration/typescript.md b/docs/docs/how-to/custom-configuration/typescript.md index 812db3222bd6e..cfb0edd8ef6b4 100644 --- a/docs/docs/how-to/custom-configuration/typescript.md +++ b/docs/docs/how-to/custom-configuration/typescript.md @@ -1,7 +1,7 @@ --- title: TypeScript and Gatsby examples: - - label: Using Typescript + - label: Using TypeScript href: "https://github.com/gatsbyjs/gatsby/tree/master/examples/using-typescript" - label: Using vanilla-extract href: "https://github.com/gatsbyjs/gatsby/tree/master/examples/using-vanilla-extract" @@ -48,7 +48,7 @@ export default IndexRoute The example above uses the power of TypeScript, in combination with exported types from Gatsby (`PageProps`) to tell this code what props is. This can greatly improve your developer experience by letting your IDE show you what properties are injected by Gatsby. -`PageProps` can receive a couple of [generics](https://www.typescriptlang.org/docs/handbook/2/generics.html), most notably the `DataType` one. This way you can type the resulting `data` prop. +`PageProps` can receive a couple of [generics](https://www.typescriptlang.org/docs/handbook/2/generics.html), most notably the `DataType` one. This way you can type the resulting `data` prop. Others are: `PageContextType`, `LocationState`, and `ServerDataType`. ```tsx:title=src/pages/index.tsx import * as React from "react" @@ -152,7 +152,7 @@ export async function getServerData( If you’re using an anonymous function, you can also use the shorthand `GetServerData` type like this: ```tsx -const getServerData: GetServerData = async props => { +export const getServerData: GetServerData = async props => { // your function body } ``` @@ -222,6 +222,73 @@ export const sourceNodes: GatsbyNode["sourceNodes"] = async ({ Read the [Gatsby Node APIs documentation](/docs/reference/config-files/gatsby-node/) to learn more about its different APIs. +### Gatsby Head API + +You can use `HeadProps` to type your [Gatsby Head API](/docs/reference/built-in-components/gatsby-head/). + +```tsx:title=src/pages/index.tsx +import * as React from "react" +import type { HeadProps } from "gatsby" + +const Page = () =>
Hello World
+export default Page + +export function Head(props: HeadProps) { + return ( + Hello World + ) +} +``` + +Similar to [`PageProps`](#pageprops) the `HeadProps` can receive two [generics](https://www.typescriptlang.org/docs/handbook/2/generics.html) (`DataType` and `PageContextType`). This way you can type the `data` prop that gets passed to the `Head` function. + +```tsx:title=src/pages/index.tsx +import * as React from "react" +import { graphql, HeadProps, PageProps } from "gatsby" + +type DataProps = { + site: { + siteMetadata: { + title: string + } + } +} + +const IndexRoute = ({ data: { site } }: PageProps) => { + return ( +
+

{site.siteMetadata.title}

+
+ ) +} + +export default IndexRoute + +export function Head(props: HeadProps) { + return ( + {props.data.site.siteMetadata.title} + ) +} + +export const query = graphql` + { + site { + siteMetadata { + title + } + } + } +` +``` + +If you’re using an anonymous function, you can also use the shorthand `HeadFC` type like this: + +```tsx +export const Head: HeadFC = props => { + // your return value +} +``` + ### Local Plugins > Support added in `gatsby@4.9.0` diff --git a/docs/docs/reference/built-in-components/gatsby-head.md b/docs/docs/reference/built-in-components/gatsby-head.md new file mode 100644 index 0000000000000..e940f893177ee --- /dev/null +++ b/docs/docs/reference/built-in-components/gatsby-head.md @@ -0,0 +1,130 @@ +--- +title: Gatsby Head API +examples: + - label: Using Gatsby Head + href: "https://github.com/gatsbyjs/gatsby/tree/master/examples/using-gatsby-head" +--- + +> Support for the Gatsby Head API was added in `gatsby@4.19.0`. + +Gatsby includes a built-in `Head` export that allows you to add elements to the [document head](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/head) of your pages. + +Compared to [react-helmet](https://github.com/nfl/react-helmet) or other similar solutions, Gatsby Head is easier to use, more performant, has a smaller bundle size, and supports the latest React features. + +## Using Gatsby Head in your page + +By exporting a named function called `Head` you can set the metadata for a page: + +```jsx:title=src/pages/index.jsx +import * as React from "react" + +const Page = () =>
Hello World
+export default Page + +export function Head() { + return ( + Hello World + ) +} +``` + +The arrow function syntax is also valid: + +```jsx +export const Head = () => Hello World +``` + +When defining multiple metatags use React Fragments: + +```jsx +export const Head = () => ( + <> + Hello World + + +) +``` + +You can also re-export a `Head` function in your page from another file: + +```jsx:title=src/pages/index.jsx +import * as React from "react" + +const Page = () =>
Hello World
+export default Page + +// highlight-next-line +export { Head } from "../another/location" +``` + +### Deduplication + +To avoid duplicate tags in your `` you can use the `id` property on your tags to make sure that only one is rendered. Given the following example: + +```jsx +const SEO = ({ children }) => ( + <> + Hello World + + {children} + +) + +export const Head = () => ( + + + +) +``` + +In this case only the second `` is rendered. In a list of items with the same `id`, the last item wins and is used in the HTML. + +### Usage notes + +You'll need to be aware of these things when using Gatsby Head: + +- You can only define the `Head` export inside a page, not in a component. +- The contents of Gatsby Head get cleared upon unmounting the page, so make sure that each page defines what it needs in its ``. +- The `Head` function needs to return valid JSX. +- Valid tags inside the `Head` function are: `link`, `meta`, `style`, `title`, `base`, `script`, and `noscript`. +- Data block ` +
+) + +export const query = graphql` + query ($id: String!){ + park(id: { eq: $id }) { + name + description + } + } +` + +const pageStyles = { + color: "#232129", + padding: 96, + fontFamily: "-apple-system, Roboto, sans-serif, serif", + fontSize: "18px", + maxWidth: "70ch" +} +const headingStyles = { + marginTop: 20, + marginBottom: 64, + maxWidth: 360, +} +const paragraphStyles = { + marginBottom: 48, + lineHeight: "1.6", +} \ No newline at end of file diff --git a/examples/using-gatsby-head/static/gatsby-icon.png b/examples/using-gatsby-head/static/gatsby-icon.png new file mode 100644 index 0000000000000000000000000000000000000000..908bc78a7f5596fab5a638d6ac07e331dc4c74d4 GIT binary patch literal 21212 zcmYg%byQT}`}G~VL6Pq6l5PZ~QyQd1q@=qCX+c0jx{(x+kcJsRN>IAHk?v;ZH~9I! zYrTK4n8iKuoG13)&*4tAmWCoO7C9CG0JzFZ@~;2@3GopLz(7O%I`^5l1%OwD%JMIC zeL(w**h)p4)Zi0MMZ4La!m2?ocIez9{Z!qjXOpt;2f5hdDhbJyB$j7je>UU zztw)va(Z&YR>?9M(EL=eiJ~Oor*9khnb>H|i?_!_3dao0d@*0!Ji{bgLcX>csjVr- zu5i5NjWY9~4<~VBKaw3w`?XV*&E!8J{4H`G>A{R>N zA$G%HqL1WyTN5J4X-O`t+{vf|suT?F}9wX)iG5gQ>X=%7U6ksYJg8l*;9)G}e*0^GR|oaj>tg40wDU*YG(l zaB}lWQe8kL+6LboQ3rqo-A{h^gm77Mve-3)_ZAfSwDq5G?>}n4O;F&Vej!=@_&-^zbei@l5fA zckcK}P%qktdTfeoGMao`{B>4(#KBY)si#McHFr{65YFT(o>b)pEjUPp~M8SSfCWQ_Kam0^=2? zaSxHl3TGT`OCVx6(@2yMjwPSM;N2J=F<+RFfM4dy6v84RTN!L_tKL07YZ;TYPV4%- zPEq9N0An7x%`vlrD{?-LvM}#QVb@+7?lDVTpbS)bO@JL~8*M(IYk|9PmdX;1yBEXru!M zy26;?dHyUBhzwxwje(1OC`xnye_z?SyU(YK0y#1Xl&8?xE!+7jnI8dZ8f0BBLY zN;?JTZoGJ*Mi(w7zp01@E_VfWUt`m0Cc?USxs#`DEy)1;pZb#04w$G3EI0SjDPWdui;KG zB!cqBbfVp_yDX&=FO7)JS18$^APle*38{w+^OQlW=spofy#;nwAQ!=()KQe#zpDov z*n>fNp*oRXLkvo|Eew6R$LrN?pkxcnH2y7ccxwiWWU``rSBGeVJqU*X38m9bnpkDYwXRpt|p*4L#&m<}r;^nNc~aEYc0ZVvdfEdQ^RI({_a=tA zGOChGMf8!jy=VmWH4P07#lCxIsBrc?D&6{7+U%Qdl`liIQy+bQjs;&t-YtbW;U-Ej z{Puv8ok+e`_cpLGcxP>G9i%D4AbCdPARlK-DI43;mMWtW!*{MXt~sQKU>q(e=Dlu1>1UgA7oy5ERm_-z+V zWZc0tyr9u|;OlJ5==|TnDhk7q(7Cf=ugeD`bxppCUEeGD^=_M_li4DHFi0cz9%QgP zXHxMqq%{nUO3#MEE^GAf?h8!=o?E}WRqW@yz!LUR^i{9F{N`T;F`R2l1HRmlVcAI3 z3g)6Ut_U3Cn;er9jaELKv!hR) zB|OzHSMD7R&#dt-t0W@|n~7dmj{A_y%_$bzi<9xfo*5Hwj( zNCnzey5bb@UG!>+fhhUA_>#G2GtC^h+g^FSzylLDbtYJYzvG6+5`TgVSoIT2K8s9Q ze?@Ti*KA*nQ&wA_%w8pPbZR1cDMu=c5VP-t)v1*$Ar`+%jbs%8C4byv0s1=cgFE2Tl*$UNa^p<~ak%gpyr4m0$$8mwO_Ql#_c5jbw zyNXo|8ebk~-#Fui*b0Bsa?68=18Z1v^)yU(b~MXk&ckPi&e9p+ zyzu!Njv9=fmx6gUtL(aKt@CIHzq3Vjv~Zos0;HWQ%IpaGqCUZ2qRUqcdYjRSuf-$M zjHR2o8w~1d`~(x}KF{nv9*A-H-1MAKqD$X=)}E>{>Ds}KZjWrkQ507JT`IsyP?PL9 zkZ`%$o)ztz=y~p2&HDim!St<*wX`K!;NjkIn;_-j@(hrpXR~JJU{#`jBlHQcexg+? zO*=x+eDlq~;2!ToF>mY{iH%GOa&?O72|BvWf|bZS@bQa6=d^dsFzf0{bdK4Ye!Qzw zy38X|%Q-Ycp})tK4`Qjl$eiwK540U+kTue6{aF%GpyTy8oJ=kn)D`*k21lm~zf+MJ zrR{c*l5(&Dzy-_8T24fM4!PbW^Enz|RO=9$5soMM`1DWBE*&j8l*Io!o?n-OHlUDo zI1G-7f;|uhfncM1XIT@8Ss$o!vpxhOThN3psFx75*^2v&)FbcXFkn=UHA$5m{j1lF@-GV=N;ddjho^1`XtUZ#hri z9FkSkU`A*#lfOU)BEnxSQ}X@KQ_L)by8MnoXAN%7=9qzr+R`tf0g3zPN!Rvs3QnSY z^t?jKp#}39F~MxDjOa4G%N-H9gx@ebdp}shk|Kjp{72%yDlukPQ9rXzVc1_Zwb1V~p`(hvI170esJ-_mOykqd`iT48cdbrXCWX1Y*jY+no%F)<7cBT6^Cmf_3>k7|-8 z6CUGk+s?9y0!zu*jXLJC8p~8(@d(D1yM5U zcKnTK-zY(m%-HOFT6o}C$jXMIVYzqr)t#uQea{i8cAU)psoGF`W(k_EqKpQZ5-?vs z!c~2H-##52e3|_@$|NJ?H0ffcXh-04Y3WFM_asK3&33aG5`4AC7MulU${M$x-T-i# z+p5{`eOc;q1t*b7-djb zu=itiOyvOA1yzC)BgvQBa{X^`A^fw$=-$kweta#GPS>f|Jek7%AcEo2TnJ(YzZ0h7 zgrdKeZ;LA_X3*2Mivbloe41X{5!_8Y*Z4O@P*ZPKE^8ns-s%`>&x2hNSUwcog` zGdf6Ll&CtC7!$b-@N364{DMqml3o6!E+!$%RPj@`tA#(+_k!Qwy_w2TmrpdGy5|lsWM59Hi*P|jB zt>*}5G$Q0PM;s2k$l=2i-e3*{NSEp4%0K_8{DB4kA&RG@_{`^E^Cj|6ur+oN3p!L( z52jD*_w}CI@S-ukr`(+WbG@J^z2FY*)&iNQ?>;CZC?mdn; ziau9TtfP%6b9hbcdw+M9G$u3GT2Kjgd8d30jTaGvd$;SphSY~o`H=}uhG%-*2wuTK zh1K0tz_@}#|9`b}M(x96)rQJwSMI1dR?evgVSB$Z3TWH-$l`$|n>$_nM6l=MG*46)O*;IHf;RWjuD>5$MC$~1fG0<6~ud9gOgLG!G-M`u(%r4W9WN z1)xb`=SC0r+HBOFrZX*l{>A_48-4#l%V#Exk7{!`qQK=!V?@y^M~EzJe-h%n$j3Xx zaU#D%y<#|J(6Dw5Q`uKxmqoDc_4_yEOMJbFj+QK@R5;|*!mtN_a$Oz@?;~-{$35Wu zxu1snZ8rJOW<}8`vEwlN6vQ!e?71g?J5uUMu)cX~fK?o{cqv`$ z_8P0nIFxx~aIWIW_5kf_$Xz)5x&NN%b%2{#CWC9rdr@P7#BChLzD3Mi!9RZQ26;oQ zI{8*-zTG@W$FVZVvd?>>?y5cf0kO74O^Ysyo6$qnhNL)QH$9(ivY9!5EyUt_PgA2pd!0E8x2 zUBxOfYc|-EB0#-`LEO#$6HQ;D)vuaOQulA7Tir@ZDfNvWmJi;(5=^{pwqVw;T!?ke z??dhH@trq^c`Ys9%@Q!{VTw~uB@2ae=ro82!T&ON4gs?(&o6$?%tMr&>f`+G?GAJ_9c@PaP0S!u;=% zqg?#6%P|giuj3d5h<}N|Q~HxCKN;WhQUC4N9GQ_WN5g9iPG&PA`R>Aj@yPG=JORQ1 zid&|R=yyAHhEJCBH%eZajCK`%&^H5n*kX84ES(;xgt!6JWX4~m)zcpPi!c2F9-cUJ zN2xeK<)>`c8Iun?@mFgHiiAz*2R8YEjzq`VCry?^EdHI|1KwiS@-an~&4dHF)|tjM zbaLa4+KLnm=uqJs7P*e(^Ra;-Y?>(4_^)NM^DFH3`}Y0%6{==teSz=dQXtjmL}cIH z(5^Mc=8+U@F&EMpLIrxPXU8eEPac0oM2PNl%;*G0vaWTu2>fUyC8Ap5T_eaUP483fu(T zRG0*kUw+?Uivm`|ff3|vn>RK3wQARv&3b*2H!(5xGlHK|wr4haS1STvqLw00pzfl0 z7B-g9Xb=nK81r#&j{W&wnt$*anfG%0;jAc@#O$JuPN`lw%-++bSQ?w6#>Q_)T)eYa zY<{HQresUi^^W7~$UIJ(}`qL|Be0ze>xdRD6Pt1&f0#qP;by4~6FtCCXxs zUKA)Cra()5c6?7rM)9o(jq2@}YKFZN_fweH)H}6SwxPM@R5Ki^mw!t6C#ZG_Jfp=n zf1Y-p4Dyq{Y&*VUcwPU}4Nyph3uPsqW=m%ce5v^McUaPy1=E52*?sORL_5OV=jW3= zZtW67O{l90ax8Ui3{zn=No-EEPQ5Z>YW2hsIosmRC+WN3BQ;JpT~S>zvA$FG&UMrA zN+L*K*B4pCIDpE5n&fMh=s@$~-(5MCm5>;5&>LLGBue1ubUQ*+TJn_T8zb}El3Wk9 zklYX$i1^4-hm`pF=tuKd6?t%rLU!SyHhT6eURJ>!pm>Rton__z+_2&A@Fw6BPl03o zs^N?buH<#=HWc>Lcx$iYclU?8H^~buy^KZ)Es9h{++ts`w=SEyW5ag*#igz5wcUWW zZW`RouWz@_Z?=oXyRTb~Tff`<)*kN=Ngu9`R*EJ2a;QyGmNcQx;?eUq=(8(Q*Tq40 z?(cd%#7v!oY6C2LhtTYRC&M?gWR-plWQI_~smZ{-!&MvE`o(9^Px;n+YD>1Ljh<*WoJx-dw9McM7qEh@Jtm`GcDGbzx0q%fr8YeatZTv zK>VA)>!8kD{#VRbe2g0G^KY=;JKT%UwbpQyVZ_kH85B~Rc&>_Btt3v;wL17fw z74ck*TXuD@Vv!|28qtSZyso!)10t5Ugw21gGp{|Ey8Q4!T%YSqedx#c=Kriz5u})h zIApeCWQA&`rLf&Mr|xNfp}!{7YOs-cv_a4{N4E;wC-J}W?ai|};~HIVJ*fVwCnwkr zO>aiZ%|+1n z@)@Ur{oOjf`cn;s<*T82`UG+xsMl!w8p97Cco}2hveT~Z{08v4W!yX?d2?X{ieI{6 z%eBvlxVJfZSl~)?(M$MqK@mnDFm$vktnJ(K#4C|uc5^>9?*I_CBRL{vMYm|nH@OP~ zr8!Gw6?}Vs7j}O~cFJS9=%J3WCb5$ljNq(|BkrxsG)IlgwV@-6Q&lF?|Y2ZP_ z3E^0OaFekf-o6*XYgJ0EKu2IA?_Hc~$|;fT*RV$U&Cumos<0c}%&y>-C-1WHL=-`e z*_7bU`>&SiiJ?fH#q@Ta=#JxBMPT`E!PEifTT_z zGFLfgCPL&M^UGy*1%nI)>4UzeqjppxYySJAMgcI4mV=`!`0*^+OvJ(|kAQJBSKFm_z5 zoYMsZDs}ZDeqPkPGi&kKum)?F9-c@7_4+z(&Ic9FAtdTclu^aB>xrpKcN{HzoeUUl z1ibF{YGZH4&1P;=LHv>5zBHsVyR&IQ0?Si|K`TspfA79ZKiG=F&r3uguh9aM-Z?gKpX~~3QLS15I|W@*xd(x;4VT#z;}swN z+<@`>P#W8x1l1@(_QHRLBwc;qkCWgXEenrawaQvf_A~-6AB~UBe!(5vXRK7LTO`JW zx6)Fvi+pJDAav%^!mnOklvNH|t^QOmewBA59=SKk)`0?kx2w85{J?Tyc6dIXGvV3# z8&4r?OdPyD49hi@KOk8poBe85QOMQdh#iUA*285*qaRJ>>hsgEIdd z0QRV9b>|mx5#WoM=ju_b7YRWWdS|rg;4{65YGEI9NJ}ecdP~n@Je=M^8V1nGY!{~& zR>iuoa$=w3$)t+ky2dM&;dlmVAeYxB7BT!Nede;2Z4s&-=@s(ZpQSwH^0tQ{(AiUYcO&=XEfy>OL;0IAIj(ysea} zx$5r588nVMQL$vQ`DTZ~Kf*;_X^bTh;Py)0kQjYZeaOzZCu& zRMCAXc{4bd!D22Y+0~gM4c!9>7siF&#&B8P%`Kk(#xCSEzNo_{sK|svZZm!c+l&7h zm|J8nbC7n^hk?fx;|tf!_(mqgjYP$NSb9etSJ+dB0WM!u&RqA*P1eM21XzN-qwhy8 zUjd0?Pz^BKq~opUPb)-@t8-YLnaq6eK^dDcibDg+Vd=m03*p8auYW)iyRiPAjN&lU z63`YK8MwY^{^^#SqMNZSGZ(7ZA(qDvT4DS#FkRV*)aUeI@FntXsgz!T(Ggc$KPnZi zmiK41*29lu;z_%PLM9p5_W#^g18myG-#xbCCh z(rL$NvoZ;yvJRAc?*9{>e6e}Oz}--qaMp z**R+)nJ1UGzQ+c*^fYssKeGANc)f^d;#ISXJ2E5x-An}*BM~x}5PV(BkM+Cmo%rBw zL5aPc4j>};^+s1?JnL(w*>nT`c#=#m>vKC`BBl)Y^kJ}YGh6(w&i1=bhFEtoFfvdw z85~LBKlmj@yeHi9kkuBMfExy~9ifjr3##y}WdiD7u}P`N2ATi%Dwxl;Q#l_fl>3mf z1_Id1Q*c2m#CjWpyO1--Kqg1IxEZN(cG)6ghew(u<5=TcpIf9%S{6o!t823Xu<|b05Dl!Vr*Uim4~{M?XnYscGV@4p zW9x-v0rw!NwCL^_V#HOu;Y032$^GRP%APok3+|s;4@ne;11n`$Rzv{aEB?Tpt7QfM zZJw-pqxaM=eXZx3LSuq~m74V3JVO-lpl%hu4cuIkUv>z6YKzb6*xq-uK%N-@t~m@$ ziSq&IC4}$m5mt@w##`cnK74%33w*#wdJeQ=A=n-14L@3vl<_Jij`~q({8nx4&Djw) z0LAfi5kQ89+c)BaELIxbe{SVSlV!Sn-OHA^yK@G>i@RO6Xka|4XE5LO4C-1}yDu|h zU90xvsVlk856Hj>oiWJ5T(CE?BpA}+bTtk+aPW3;{vb7R2e$#heD=$>DBy9umPA_r zn=W}}vLAnTCxhYDIy1L$ZvgD!=_h~$tz)M=uY=>$kTQxIz0|LUi7zZGA|z;tz1zq#%)9Mte3A3e6O+DD2=V0hqBH;`O@@5N0BlOXR34=j9?w7kD4)<# z#|3^*| z5y7)bn?1L=aAe@S)(?9Xph@fC&7HJVVL3e`W_HQ3|{K#I2{d#-dB%G3{VT!o&crN%njiaGZ>V z>U#&jYGhV<>6# z2^qv2Q;=%&ak++X3v5Dhn3Aa{sl)&Q=J>=5Tugwaw4T-(9(*x`!N$!>GOu8#9UgGj z#o7P|0iP3!HEflDCesvFOnUdapcQZTpS{{y=G@W^WP=Bf8zh&`Q#=L4I564UO`TQt zjTi6C_u%6X_=wfB_b344aw!3L^ie+}3INa-#@id^0xnU;q#I{&b2AF_!YgTU5C|18 zEX6C+1Vl`%(VBsgnGL2_Rs={NFcFddQ>6(s>FA+c+?clxCRtmnluwX$O5g!Np6nuG zsS&~c?SJ*=_B^Jj*Mfz%2>?v@uz=sX%PTo>I2{Bcsm(qpR}e}70LL%QC%-iSF5fc< z5xb9KA|_y5x+31Ua-Zn@feKF2El;HNyGUd-;&W)7Al*knp#W(0vUN>>CjAt4Ov-j( zMxO`Z&hF6jAV9pVCB>#UJw*(d>8{cWgKk$~FKUBMf@{2owLTbXQ$|{emo=E4*JN|Q zBbsm6vwJiD*lg4YIUmM&eZOqGYIpCbdpK>plD-xdlXeGyl*}}|EPcSEh}9k@1=t)0 zm_&oWaD#vmz8`?$^Tp2vV)OuTsHCdF2I#9+m)J5Rc{Ts01Y|hOG%M8EfZMM$I=X#K z01%}1Q2Y$YEXijpXFvihZ07=0K;IR~a|^__0Dv_2GVK+Rl~G`fSlPw?3NU0e&5%XW z^~VIjs^j$8$QEViE+1RckY6JKI~%L@y4!%EXnPWpyUY*3hoy2s6u2#Mer17IN(?L) z!4SjS1$a@n!1f?s-pXlFph0>4zlZB%LWqaU&(e^~(V-pL$Sd{#eY8V-?E3FxI2;vP z@VDw2e<#z5I^z88W2SbaPl3S_7M+A4kSFrWKz#rvSnBWZXCCkHfIJoFVkss7t!P+h zBwZ8$vj^s&B?E>G4;dfW_|XBa&*tOgOn{JT_bXmviYb2{oHS!@fiqmDn$Mk*Zp z!vx@|S?TaPK0f9ZqB2BU*$|LIog4vx*)Jf_?SGMe^NxvYi< zuJ)57PLKH(p7ubYHM&qD9 zp9Eg>&HHNTj8SfO3B{T^zsx4yX4x^jIBHJR}M-Y$$ zyFOdKIKC2Ny2viZxH1jtXtXG+>%#e?^C*Zhr0CbUh`lFZ2iv^It1jn4;R<$cpZCUD->ZppoWkIBw6 z*`Xy7rbw@(O#VnDp7rt5^o6(CYBAN2sANQtG($W&KA z927PJXyJOANop+VBCilBRDgE4Ca`%w1>uL$`_CKww-ZJ_D9^rvocAW1sF)n=m)}SZ z&czZ$QezZ6VV$Gz1;rvij`;Plf^U^2=E>WwyRQn@W#nL%Ff0&r6|z#?FIkhH8vomC zThsh!Y3iC8C2`-3@f(ha>#c*t4 zrMSm}H!Iamyb1s1$kbF_OWe@J-CfgEkRT9D|2EAYcz3BHZ~BP@_AwjqLV7f*flK`T z?ldGZ|A#p)RJ}_8;n!Hv=6paY@ zu_Wesyfd@lxitJK-ZW49!6U~fNT`908rNyjYRPqBVgDER-1SI?&khrv9G z-xpmbYNT=&n29B_*p-Eb*@;*F)p(2=!tfoH<0#C`8v7+PDqPjMnCkJ$<-g4gJuVq| z#ak953{RMIk$Lrx??-_9+!etKtvsVZ{lbnZ>?i6n{vJrr7oMOK&<|HG&=g5xK1Guz z4=MCNTNQ9L3mDnBn{}AJ<-ma^$u zBVb|UfH@bW<@9gDGNy0wJ6}2K`2F1vJtAOcFu|L?T5JX9u*Uo+8i{{mJ~M2n3jw}f zm5?srJ|}@2s_RuH@sXSOF@2Ee-UfOQXBBs4xyAYlc5Zmfw3zNy^8yeqPQ=k=@?P@4 z8V!F$Fn~^8tTvR|^&Kqut!B=BU3g(*Gd7Tl1qloXeNX3xPK1Na&&}tpu|Z_$k7dHG zY16K&i(6th-i6Fe5^UYF(wu=PU4itLowxfA*p*%Lg8#+1fX1rj$19QrQRNnOiPI!5 z=54sT?9mhsR7dtxjlUlaR(HN>^A7nx%pn-tUP7I+6xYzvGomVPYwdcAti>QPnE|?1 zr0d%WXW=t?9GHhm8^%whAVCqDRfvd-TU?68H9sFSKJe=atVR&or6PeDDu3=0>0&1- zC@3_F@|_ToYYE)szw`|jffBo`x%C}?I8stD+^(y#k__x5+cprR$=uP7v&kg56Y!rQ zcz_Dd0GRN{Tm6iIgJ34Jov93vR&T~a5c%!fXBr1Q^4lL>0d;^*;tDH&^LB<;@Yj#*)kAxS#{XMHa2`U{;@(FF2%rKS$RBju&pU& z2xX!M=D*i9W{3B?-oZ&U=I#9Mf~#FJrO{UUWU~fDClXlbT_x&(Y{p0C3v;<$p8t~t zGca{Jf(ze?#t{bX$Ah#KuzAyyo8EiG*&@v#T#IHgurDB@U4l=%R#;M~{s*2i`k~Jp zfd*QRr($5=PBzcMSi7GfH?S zX)TF{u5wU#5Kabc$cfm=E(WC4@mxA-4i!C$8O#hd#E5}x?Ump^>xv$Whr%Sg)gXB0 zm^lsPVDE5+hOeaP9-IhL;PY*t%%W2+tvKn5HkRO@JfDPr>S~>S0~`{os4d}%oJX@} z%@_cE(f{z858QDjdbVS(*VAL1t!CQ-VtsPhfjE)BY|Gz+GSAg?m*jsQ`U&{W4!aNB zV2NnEF^A-+Tb!OiR9cSx5$gsqhGi_}+!nx%?KB0UM*kHSS}ZI(9W56>ZsM2o*y8c) z2rTIqV&ps&OsPVWQVGIOb&)YE0yTt)U@GM)e(R&U#hKQf*yBfpa@l6uW%vg<_%56t z#9U{$3QD8>7e|q=tzzDWwN@nXfjJ&N*3ZR_@R+c>YD6y4?F+&bs4`-2jd>_({}Cgf z#UB;cOU7)lPKt{wCCPlu8SIBFe zJqUI_gTeO%065)iUP-i(H%2Ctz+y zcB%V5a87D5qcbX!?g`Q$5l3*NM#Ko96ymu*1*u)Lzdwb1Y0iIuyl85c!~vgjcvBjF z1|cw)7J<2>=mcx^-aGvyYc7XMd|Bm3LfO6G$SyT!cz4xo&gFA}2TM?*HqjMKh>&nm z{JDeIY~mvmJE4S=6Ek7`nvG4Xdk_Vm8cAGeE@mVOX^co$2!5m$JkFh0=27N|5p`9= zSBHO!+`do2w&AfH;=pwB>BY1A?WBo3VjATd8u}@_o=RO^Dg)T=Mvxl1WXvdGW7qr$ zN{I@3$3^or(KLg?&QcDV%#Dog^B~l{J#6hX9lY(R|D58p1xbRy9N72xT93$QPpt3V zC*MxnYx+}wg9%Sj($r`~JKP2n<#-JqZJDD%*rI?Q{6MpG@G%LVEKxa0WeNCUIG{AG zhC%1b{W5?Os0g%~;2nIpcjc`F^C#=xS z?Xn|SPvv!k2{D`q`^vir)TB4F8$sc}?||9l(trcv>;*}PgA?!;#o7b@P@@O4&Z5Hu zRz8LXCs%e=QrQ8?@u*E9$usYplpi%M?N1uN+3W`F%c0;%O_=+j=jh!2Ut8qk?=IS4 z3T9;e*WW^J-u%Nl_<73WD+Hr=50qD*y)kq7NYMaeBMFZb?|uXlLJP46{|GwC8^$4$ zf70n1qGPWx!k(Nu1sxE}@ioKub?=^%w$5}>6(fA}A-g0ctbL)7LJ*zU=C4U+gn!q8u6*f2v)JzR(3dVP`awxc_kY|#Y+dTv z2uD~5tG9>+<`Fm%i9a?bkNjuYPKzu>Ls?mXpzL6G?KA$)RcR_K;P5Hd!WgQdNMK3( z@?>BECV~auKWM@&h!C=O)q_dVy7}+iGYoIfaL~1>WwXg;TU?On(yx@)jNCYHDP@$- zj7tMe{y_h-i<*ZZBZq?#TfV}XHDRQ%Vxy9ECtMp z&FpsuufoN%EP!NfBqW+c3=2wVO=nmoyfa?G!ub~)%7=*}wd?4L%Lk4^lz1H+CXP{ZJ~CUY-@LFm1;J2&wdL8amu$20Eni>VZlS@ zANE$l$zDV^=^BR1BzV2)YfD^dxDzwJu1P|mQj69)IiW=^;(eC%f5^|bnk{r1Zb&)U zuSi>3Q-g`A0e8m;=ZBnvrU9k$}G)4IPGpQx>4g#Ym|w=g&GGY|-t*U$nA$-5=z*@~ZA zDbAPvI9ydjU4rOco@%rX2;%RMMVLCohyJq(bHd;MS1ZT2Z9%Q%n$=`Hwx{cB_;Fg4(Y|6l1M|azerwhW_A340z&&Y9r&fp{g_<$Kpv4ZJQO0SG|_g8 z`vQKnM21$z!)+;X*3P!nK|W8Z?|Zy|U_Qms6gAXDUj;Fq{r$3+X71#^E@|vAt*ed^)K64mK&3njp9D= zrxGarn)A|cG;4KS%}r##H=`v3tidau^Pz&0wnV>F%3u5wd?L@Q0t7qfm=6*~N+M=!Sgue$lnGiGyagI|LBL*Yt?hl!z)P5OjQMGimOk#)XMYetJ#gS0$ zk1uEi2$6^_)hPLv!92FR?14n)QO&K8Hm$+)UEUk}0O}yG{|`b`Jd7~Hq%;~ zd5ADQ(`ezd$|T9^!VGx?L>Cmwv-vBS7H4iN%L*~up7?p@lfA{6TLTR&IB7pxUMBBk zrTdRYZb_6!5h{}^`?l45zq+BYp`1FT_;(E6ZmaH6Syh{tPPkLZdmtJ9%x$r0=G}c} zOoD&gvt){OActxNC+g1-4^P>PyubUa^s#|lot0OnRi@&SAx=OGw)%qI&3w z6K^N*9or%k7+7uMKxDW$C>vCAkGkK?IJxPWCeCRTj2HBfX$j1rjBYt98OpdhA!1yN(_R~`|JKx z2kZRH`b?U!*+7H!SK36ZUXLR9{hdjz7rUB&@K+e86a4nb36b+K9T5g-UV1B)a>0ovVouNT$;ht zg`i=|I){QjE;Jc327%^gPhlISr|c>YGXHKYg2kf(4;Vw^%M5ejOLJJl@?1On;PO;3-;rA5U@Dg`$JfCPQTHm2KFe(;Y{8S8nSl zz}g<}C)|32kaM(-7kmhK{7yJR&Iv=N!Rz}~J+5ss36}X%JrJpmjc*|{%-cu-_G?A+ zTd)TX34~e#>Ehp7WZ}E${cE~CO#EItvquTYc3>H6HUJbxdmV1LzwC;K z!1BY7$Z1#cer(ib6>;Q(?5|65@B*Kg-}rin&U#gzjR3DbO=!(ga_<8$|4?%yy+pL9 z(EIf+f6QC)(M1_4n%L2r*nrp|(VXeIYR6y!pb^Uf!BJrr3R?6ZPk%k)6{Uq!Uv=;> z@6UTT3YAk1i$u5h!H;nG+Q;CYcb{B1aAo!+xSnCJWPk~Vur*ejEWD6N(McChmuolj zeklE6B#KE-pR~EyT+{q`Ft=q#MGmG2OGo0261=S|uBCpaF5}KZ8|o^P_hvD&mORL7 zSx|qFMv9ba_OL{p)R_C4fj^wW7PvPjNMi!u!agnwW`J~X6I?7 zts_%DWwI_dH2HOU`$6$d;9N$fKVs2V=9&~mm{y)kJbQc9vVJ^@xWhsK^4kpcts=Nd zTsvFIH+s8*`po>2J6u1;g0D5qCHv%C`Jg7R2rOKrj!5Rmn}z-v7c4|nW0AA`)guOu zGnwkfwA?z7id9-ayQ$=Rumo$}D~Fo4N(cbceFw4y;K31;*dQkA+4sTNJ5hz|*-`F|svmuP`(>pZ)r88=oDdmAL;d6wHDQaSLt|#G-{P@r%c||ygo*aG zWq>zIId#pxh4=5QRcjY{Fc{reGcH#d5;u;^d^9F@~V z)ZC}Ca&|Ms19SLstyp($9z9*9w}|jz>M}_pYJC{9#Sq6EB;#JtvqvTv!GvrhE?d{m zU=EywOBOt*{E+L$(@o991LMtnkZmwEu^S4(V*>Hw?I2~q$sR9C<~t-8PG`*4=V6rr zH%XMO3cg}!lD=_op zuc81zHCWlzh-57LVSf=+`!b>XgDql{dYjc$$TFgp`+go{dON&QE=qYR6-;G0v=;2y zagdb+vjvjz4y=P+; z6mQ%L+|gkp04q&HkUqeIwmV~yLxqr<>)-}y>0e4*_xv3^_v)Vx`NzfPrTG};hUqL% zAYzkVT&E*|2e)L{NQF6R2H<+&2PV*bQuNsPIrdwKE|;3;k>7bK^|{-ST#5#p9KxIlgMcZ*2~U+$-B@YJ6NUaxqFntzg0o{%PCFvuB$rp=(_-jlG~- zcZU-i*n1q}*rli;^%89(eQdCpe-p;IwBbdjI=7w6pL%I>VAIPo8a!pm$jiX`WE+p9 zn+tIdn+@DKEN9GJ&6=pzym1oyL(N{xa-}_YF%lXhm4d<8PvfroMPx6J1~J<_j1yFJ zk=pSt`#Ep_O#0^IE%&Xv-RN|#cH;>bX*=le0EE)BZ zZ=Q4P&$|db7g@aGPD zX*rv@bg$XJW3xS{ewb;8pdFLV62NRlE~nm7fcd^mZSb3Z3KY3QdGY*3YxU9@o@njl z<~skZ3cn;Ec!`r=g`Ll2ko}k#>1i(0lsyr-m)S-0Knr+h{igWkkwqH^Wj6MJ?E)Cf z-y@kJgxN|#Y>d`G!3pxR(>`2ELQ}+gfv1+j(!<#)?aY!M`uMvKx#0`L%Og4vsmp&* zPo8qOKJKW9hg~n15kIKzIpxcL=JG!QBe3Q-KMDTe`=i7?Mb?dE&qKbON#qFa$NRB) zKJYA!Ir=y4xI11QyM|V8{Sp$9^%7FTw%jr?eNkdV^R+Jn?+b) zUU+(a-Q7rW!FeJNrkR=>YA2(c=x5^Wc#p>hz^fOhx#w| zK$)KxOiLI7m@grIZWh|%2>oR>kXsyEJ=}^(HxA_ms#Im<&^=&3468=Ql$Sgu1`@oT-BmzP zei6O+008p_t##1`YJUYmV)=1vq67-sHe&y~&pV<=<#NFB*o0~eP}3H_dkLz3P-je5 zR6d-W+gYu#YrD9a&9oO3gH|5mPe8u8WKF02!pR%gRfAF=;E8-w&?lyOjLpE8(QzL4 zRG4w&@Y>5ww(mp4rty(} z(nafURWst;OpiAFG4p}ic$EoJ9C$=v4wl>D3 zKY?q6b^}*yzJvR0JrdS8FBa+P##h#7%Zjdq%gdR3^Yj<*KWuyd$s}~Di}~f_IwzNH zLw#bSQQ6YH2oL@g6JCtVd+W@v<%fvB5#-#IX8P=NLz}ce2v-yb-eea*GL(nS<&8PX zbF8e~X2L`KJu^QZUV!XZ@~RZLQ(JpALcefo?$=!Hkut^rB+NE@vS?5j!y^SGLpJrU zdG?sZhIn$91rB`&6r{1-bz>b7b{!wP=;H=D+`%I+S$)7%0Xf5Vw$}$S2SKGryg=wK zPw$A|4G`Y3Rog+)ndJdrAmHsis2*K-wNuYX&q;uU5DR|#`~0`~6=0Q`EAd0jeRW#< zww$(nAs_g!ARElI7)j;?N5M=PsWEZ|>-Zgj#{!Jk3sJlgH=NgImacjZ%`qQ$64Zg3 z#Jqh7G_TJ@&qA!Br3^sFRMZFPQGp(`J`UErjY0e?lT+^&yJ%G9t+;(4z52kdG$N@O z;2N1Li`<1xSEfJ!(9zw%kwIfx8)b9c?=rK6wVk=Tb4oJ6`}@6*RoSV{xyX9mQMEG@ zP4(&px57US4f69Hy~RPDZ?CY$9yzB2+wb$|x2$o>)n^`H>ZLv&d+9vO`mJVjj7VfP zn;1mp4Q=@bb5*1r9@5x&)%;K)5qtk^0LGCRh;ck^SFU!r_~f-o`=p$7t@(DP^=u=Y zhxBv)mSB3W01tQvn$uZwZQ+;$QetZxrcJiP)NP~Bc`r(YEwU{-Z83^j&ErHb^tzL_ zYL_9c^>H7e$ZRD#$XfK*{Yg6nCV(%3ON33IBb5DScXgSNRaP$P-ZzmFks7XiE+2w! z|53TMaAk+dH(E90Vv+W_jkT-o?0Fe|w*LzDe5Eq30#1qDFa5^x%7I9gVU>p?3i2e zN5Lt7x`;cQJ&O4yx`@-q$KyfaP1CP4trJCau;C=Im)x%2`T6xCYA-~9271=BwqALo zNm2eA)8PP@4iMr>5&8gx%zD2e7huPm(Ph-8s@1Hb9#TqLgaiX{eUTvnvzm3`Ux zcI0Sw%j8AhfwY`FJBwL&#iilRCefI>5lI|X@8o1$gpJzJ>`9`rvUVpuCr3`B z{(ZY}-6d4CXjLTtL*cU&LpB|l^U~?hj+3}+`v*=%9l2_i{&kqShAG}LaBUN*I>&V+ zZp5Y-rUMlwYMxON#=t)q(JGLOmuT)8o}3S5qv%&kQrqcZ(5UoDwQ}Xxs>l@4F6JHE zMVHSwfb;JmuH(0zZiM(Cjrq$gT5k^=R~Am-GCuQSPh!o|*@;5Pvm0hEJ!bHEg9)1V z#;QSK=Y8BFT~^KA4=e*+Yn?;VU874KueMbP;Iom}X@Zdk9CUTopF)QC-v@TK!_2nD zX9F-0l3%ACB4&!Cho%Lc8ZZA<4Y`o})hhE{pCRT@&Hu)zhlLDpmigU=SIRD+Ip{TNSZ(g!)!dOLW?zD`jmC8$I$O`phMH~d22(`)T8OZ zoqlsyl^6WMxG-J-y9O_FpI!*dPpoQ(@PQ1$JO^TmOqe_MK)+y=(#-BNm;QbUHn48+ zDE84u{t(0LkPX+Ma}PsgY*yb@TqsEk{*SHs)=$FuLUPRvQZ2>mjon#Pu z@A5YM6)ceL0bNjiwE%|ybHell-2lcdo6$w;x|C7*`d_4Gf3nbC&>eCVD2Wfew|nEg zZjIYobz7 z2$IP=fxX$h>0Qv1e(Nx+$4#xMNd8*Ji7?HjHP-I8_Xx_&8;Ckt=}*>(dH|8RxRJb8 zui-E*$W#FpPT~Zz-egvBp!&K7COxKAEJkk22v9=dq(mqNiq;~T zmaqvgZAd36TApHX(3)#iD`{!B4eHT+5svBPvW~zAHFD-2L}0cv8Ul;qkVtRJr@*B~YRK5Ed3E<@&l-dajO!xImACR#ZNaAcZF?;VZv zUBFu2FT8P~l{ zT|QG2gTSmiHX)_Jfn@3szUwoD4MW$fQJ2U{)`W-#)Dq>UFokHlW>53O~nGyRi+NWMHDPms7Kl!%6G+_a?btikhYIK-(hGnHb(MN_x=L ze%&)wlZpsT?$=a)y=W~N?=fRNdsCCW>t1pziNhV9nQVCr@&RI~1s)PIzmV$7n#h3B zn0iF*cUa40rRNI{{pIm*`aS}6l-ciN8+ph06yA=C2Vl+G1?t|2L4^OpIQSfXc|a{! z!wQAG!k%FGdl#krm~ZY2J|~{%=Asz8#6w{h{5r_>aFy%A@`zp{w?)C|cif?;oaqT- zUD$)Vj{#3q%o+~Ls2Lvdzf#L#0^yeDccaH|&@Jt6Px9yFk#Jw-b(eTDH0Ofci?pG_ zN2t1WGVUcX$|aW!s|2;82AQXt66*#4=j!Q{_`A4WIxu#!Pa}=FYG`$ zF`6PP2Yx(^Zi-Q3z{W}&GcngDB&Be$O)Ux_53~AxgR@2}#Yl;kgxQeRv9Fix^gNod zC+T_cb-Ml)yujyeMp~_z(C0vbBcf}+qrhWYL^bQ3nb3Anif}6?U|U@Z@#wQdzgB^% z&o}?cCU9*fEBqLhNmMxFB~dnB4BJjSPFOO#~KgK z6V`!9{BKK%dzmdlh0Dm?ax&(U2Yc=^($}>?=Mc)Wj=%(Lc+ob}NGB;R;09IcVM2Lb_=1C>nDY>!x6L~zBy1TnhqRJQDeJCa0i_PM!L7==Y?0dn Pwx}U%bK8?;ra1Edyv(7f literal 0 HcmV?d00001 diff --git a/examples/using-gatsby-head/tsconfig.json b/examples/using-gatsby-head/tsconfig.json new file mode 100644 index 0000000000000..15128c8efd05b --- /dev/null +++ b/examples/using-gatsby-head/tsconfig.json @@ -0,0 +1,19 @@ +{ + "compilerOptions": { + "target": "esnext", + "lib": ["dom", "esnext"], + "jsx": "react", + "module": "esnext", + "moduleResolution": "node", + "esModuleInterop": true, + "forceConsistentCasingInFileNames": true, + "strict": true, + "skipLibCheck": true + }, + "include": [ + "./src/**/*", + "./gatsby-node.ts", + "./gatsby-config.ts", + "./plugins/**/*" + ] +} From c6627e3353d0299bb6bc743512eb8dbe77d52dbc Mon Sep 17 00:00:00 2001 From: Lennart Date: Tue, 19 Jul 2022 09:53:12 +0200 Subject: [PATCH 40/90] chore(gatsby-plugin-react-helmet): Add deprecation notice (#36166) --- packages/gatsby-plugin-react-helmet/README.md | 12 +++++++----- .../gatsby-plugin-react-helmet/src/gatsby-node.js | 6 ++++++ 2 files changed, 13 insertions(+), 5 deletions(-) diff --git a/packages/gatsby-plugin-react-helmet/README.md b/packages/gatsby-plugin-react-helmet/README.md index 9b44782d4637b..f7a673fcdbf4b 100644 --- a/packages/gatsby-plugin-react-helmet/README.md +++ b/packages/gatsby-plugin-react-helmet/README.md @@ -11,9 +11,15 @@ attributes, etc. will get added to the static HTML pages Gatsby builds. This is important not just for site viewers, but also for SEO -- title and description metadata stored in the document head is a key component used by Google in determining placement in search results. +## ⚠️ This package will be deprecated + +The `gatsby-plugin-react-helmet` package will be deprecated in the future. The new [Gatsby Head API](https://www.gatsbyjs.com/docs/reference/built-in-components/gatsby-head/) is easier to use, more performant, has a smaller bundle size, and supports the latest React features. Update to `gatsby@^4.19.0` to use it. + ## Install -`npm install gatsby-plugin-react-helmet react-helmet` +```shell +npm install gatsby-plugin-react-helmet react-helmet +``` ## How to use @@ -38,7 +44,3 @@ If you are using this plugin with React hooks, you may notice some errors like ` - You have updated to the latest version of `gatsby-plugin-react-helmet` - You are using version 6.0.0-beta or later of `react-helmet` - You are importing React Helmet using `import { Helmet } from 'react-helmet'` rather than the old `import Helmet from 'react-helmet'` - -## Examples - -- [gatsby-starter-blog](https://github.com/gatsbyjs/gatsby/blob/master/starters/blog/src/components/seo.js) diff --git a/packages/gatsby-plugin-react-helmet/src/gatsby-node.js b/packages/gatsby-plugin-react-helmet/src/gatsby-node.js index db28839c1259d..aab9251532a76 100644 --- a/packages/gatsby-plugin-react-helmet/src/gatsby-node.js +++ b/packages/gatsby-plugin-react-helmet/src/gatsby-node.js @@ -1 +1,7 @@ exports.pluginOptionsSchema = ({ Joi }) => Joi.object({}) + +exports.onPreInit = ({ reporter }) => { + reporter.warn( + `gatsby-plugin-react-helmet: Gatsby now has built-in support for modyfing the document head. Learn more at https://gatsby.dev/gatsby-head` + ) +} From e186d73bb452b4af56bdd42ba2bfc396781f985e Mon Sep 17 00:00:00 2001 From: Lennart Date: Tue, 19 Jul 2022 09:53:59 +0200 Subject: [PATCH 41/90] chore(docs): Release Notes 4.19 (#36130) Co-authored-by: Jude Agboola --- .../reference/release-notes/v4.19/index.md | 86 +++++++++++++++++++ 1 file changed, 86 insertions(+) create mode 100644 docs/docs/reference/release-notes/v4.19/index.md diff --git a/docs/docs/reference/release-notes/v4.19/index.md b/docs/docs/reference/release-notes/v4.19/index.md new file mode 100644 index 0000000000000..aa56468ef9da9 --- /dev/null +++ b/docs/docs/reference/release-notes/v4.19/index.md @@ -0,0 +1,86 @@ +--- +date: "2022-07-19" +version: "4.19.0" +title: "v4.19 Release Notes" +--- + +Welcome to `gatsby@4.19.0` release (July 2022 #2) + +Key highlights of this release: + +- [Gatsby Head API](#gatsby-head-api) - Better performance & more future-proof than `react-helmet` +- [Release Candidate for gatsby-plugin-mdx v4](#release-candidate-for-gatsby-plugin-mdx-v4) - Support for MDX v2 and more! + +Also check out [notable bugfixes](#notable-bugfixes--improvements). + +**Bleeding Edge:** Want to try new features as soon as possible? Install `gatsby@next` and let us know if you have any [issues](https://github.com/gatsbyjs/gatsby/issues). + +[Previous release notes](/docs/reference/release-notes/v4.18) + +[Full changelog][full-changelog] + +--- + +## Gatsby Head API + +Gatsby now includes a built-in `Head` export that allows you to add elements to the [document head](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/head) of your pages. + +Compared to [react-helmet](https://github.com/nfl/react-helmet) or other similar solutions, Gatsby Head is easier to use, more performant, has a smaller bundle size, and supports the latest React features. **You no longer need a third-party library to handle meta tags in Gatsby.** Gatsby Head also automatically places your meta tags into the generated HTML so you also no longer need a Gatsby plugin in your `gatsby-config.js`. + +```jsx:title=src/pages/index.jsx +import * as React from "react" + +const Page = () =>
Hello World
+export default Page + +export function Head() { + return ( + Hello World + ) +} +``` + +The `Head` function has to return valid JSX which also means that you can use React's composition model and define a reusable React component to more easily handle default values for your pages. You can learn more about this in the [Adding an SEO component guide](/docs/how-to/adding-common-features/adding-seo-component). + +One thing to note is that every page that need to add some tags to document head needs to export or re-export a Head function. You may only do a re-export if the new page needs to have same tags as the previous. + +One important difference between Gatsby Head API and solutions like `react-helmet` is that (at the moment) you loose the ability to define global defaults (e.g. in a layout component) and have them automatically applied everywhere. With Gatsby Head API your pages have to export a `Head` function to define meta tags for this specific page. To help with that you can use an SEO component or re-export the `Head` function from somewhere else: + +```jsx:title=src/pages/index.jsx +import * as React from "react" + +const Page = () =>
Hello World
+export default Page + +// highlight-next-line +export { Head } from "../another/location" +``` + +For full details, see the [Gatsby Head API reference guide](/docs/reference/built-in-components/gatsby-head/). To learn how to use Gatsby Head API with TypeScript, head to the [TypeScript and Gatsby guide](/docs/how-to/custom-configuration/typescript/#headprops). + +This feature followed our RFC process, you can read [RFC: Gatsby Head API](https://github.com/gatsbyjs/gatsby/discussions/35841) to understand how the API was created. + +## Release Candidate for `gatsby-plugin-mdx` v4 + +In case you missed it: We're working on a new major version of `gatsby-plugin-mdx` to support MDX v2, improve build & frontend performance, and simplify the API. + +You can now try out a release candidate version, head to the [MDX v2 RFC](https://github.com/gatsbyjs/gatsby/discussions/25068) to learn more. + +## Notable bugfixes & improvements + +- Publish `gatsby-script`, `gatsby-link`, and `gatsby-core-utils` both as CJS & ESM, via [PR #36012](https://github.com/gatsbyjs/gatsby/pull/36012) and [PR #36020](https://github.com/gatsbyjs/gatsby/pull/36020) +- `gatsby` + - Sanitize page state to remove non-serializable elements, via [PR #36074](https://github.com/gatsbyjs/gatsby/pull/36074) + - Remove the `/___services` endpoint and remove development proxy. Also remove `proxyPort` (aliased to `port` for now). Via [PR #35675](https://github.com/gatsbyjs/gatsby/pull/35675) + +## Contributors + +A big **Thank You** to [our community who contributed][full-changelog] to this release 💜 + +- [Timxyx](https://github.com/Timxyx): fix(gatsby-source-contentful): Add `proxy.protocol` to Joi schema [PR #36011](https://github.com/gatsbyjs/gatsby/pull/36011) +- [ericapisani](https://github.com/ericapisani): chore(gatsby): upgrade lmdb to 2.5.3 [PR #36087](https://github.com/gatsbyjs/gatsby/pull/36087) +- [openscript](https://github.com/openscript) + - chore(docs): Add `gatsby-link` to `transformIgnorePatterns` [PR #36076](https://github.com/gatsbyjs/gatsby/pull/36076) + - chore(docs): update jest.config.js [PR #36049](https://github.com/gatsbyjs/gatsby/pull/36049) + +[full-changelog]: https://github.com/gatsbyjs/gatsby/compare/gatsby@4.19.0-next.0...gatsby@4.19.0 From eeb5f4bf34fa23413df9b3e703d883c91ac54d4f Mon Sep 17 00:00:00 2001 From: LekoArts Date: Tue, 19 Jul 2022 10:31:30 +0200 Subject: [PATCH 42/90] chore(docs): Correct anchor tag to gatsby-head TS --- docs/docs/how-to/adding-common-features/adding-seo-component.md | 2 +- docs/docs/reference/built-in-components/gatsby-head.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/docs/how-to/adding-common-features/adding-seo-component.md b/docs/docs/how-to/adding-common-features/adding-seo-component.md index 81a35a5629b14..9e85c76711411 100644 --- a/docs/docs/how-to/adding-common-features/adding-seo-component.md +++ b/docs/docs/how-to/adding-common-features/adding-seo-component.md @@ -219,7 +219,7 @@ After deployment, their [Rich result status reports](https://support.google.com/ ## Additional Resources -- [Using Gatsby Head with TypeScript](/docs/how-to/custom-configuration/typescript/#headprops) +- [Using Gatsby Head with TypeScript](/docs/how-to/custom-configuration/typescript/#gatsby-head-api) - [Gatsby Head Reference Guide](/docs/reference/built-in-components/gatsby-head/) - [Gatsby Script Component](/docs/reference/built-in-components/gatsby-script/) - [Blog posts about SEO in Gatsby](/blog/tags/seo/) diff --git a/docs/docs/reference/built-in-components/gatsby-head.md b/docs/docs/reference/built-in-components/gatsby-head.md index e940f893177ee..1b0c7abbf356d 100644 --- a/docs/docs/reference/built-in-components/gatsby-head.md +++ b/docs/docs/reference/built-in-components/gatsby-head.md @@ -126,5 +126,5 @@ exports.onRenderBody = ({ setHtmlAttributes }) => { ## Additional Resources - [Adding an SEO component](/docs/how-to/adding-common-features/adding-seo-component) -- [Using Gatsby Head with TypeScript](/docs/how-to/custom-configuration/typescript/#headprops) +- [Using Gatsby Head with TypeScript](/docs/how-to/custom-configuration/typescript/#gatsby-head-api) - [Gatsby Script Component](/docs/reference/built-in-components/gatsby-script/) From 2cbccc9ffca27a6ee522f513386ea3fa25e2f219 Mon Sep 17 00:00:00 2001 From: LekoArts Date: Tue, 19 Jul 2022 10:45:55 +0200 Subject: [PATCH 43/90] chore(release): Publish next - gatsby-plugin-react-helmet@5.20.0-next.1 - gatsby-plugin-sass@5.20.0-next.1 - gatsby-source-contentful@7.18.0-next.1 - gatsby-source-drupal@5.21.0-next.1 - gatsby@4.20.0-next.2 --- packages/gatsby-plugin-react-helmet/package.json | 2 +- packages/gatsby-plugin-sass/package.json | 2 +- packages/gatsby-source-contentful/package.json | 2 +- packages/gatsby-source-drupal/package.json | 2 +- packages/gatsby/package.json | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/packages/gatsby-plugin-react-helmet/package.json b/packages/gatsby-plugin-react-helmet/package.json index 96de6563c2d7d..df5c2d631f0b3 100644 --- a/packages/gatsby-plugin-react-helmet/package.json +++ b/packages/gatsby-plugin-react-helmet/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-plugin-react-helmet", "description": "Manage document head data with react-helmet. Provides drop-in server rendering support for Gatsby.", - "version": "5.20.0-next.0", + "version": "5.20.0-next.1", "author": "Kyle Mathews ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" diff --git a/packages/gatsby-plugin-sass/package.json b/packages/gatsby-plugin-sass/package.json index c7c56637bf84f..6d441e0bc115d 100644 --- a/packages/gatsby-plugin-sass/package.json +++ b/packages/gatsby-plugin-sass/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-plugin-sass", "description": "Gatsby plugin to handle SCSS/Sass files", - "version": "5.20.0-next.0", + "version": "5.20.0-next.1", "author": "Daniel Farrell ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" diff --git a/packages/gatsby-source-contentful/package.json b/packages/gatsby-source-contentful/package.json index 4996b2c209e94..61d3315b2f214 100644 --- a/packages/gatsby-source-contentful/package.json +++ b/packages/gatsby-source-contentful/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-source-contentful", "description": "Gatsby source plugin for building websites using the Contentful CMS as a data source", - "version": "7.18.0-next.0", + "version": "7.18.0-next.1", "author": "Marcus Ericsson (mericsson.com)", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" diff --git a/packages/gatsby-source-drupal/package.json b/packages/gatsby-source-drupal/package.json index 5c00afbfb96da..5faf08dc55d2f 100644 --- a/packages/gatsby-source-drupal/package.json +++ b/packages/gatsby-source-drupal/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-source-drupal", "description": "Gatsby source plugin for building websites using the Drupal CMS as a data source", - "version": "5.21.0-next.0", + "version": "5.21.0-next.1", "author": "Kyle Mathews ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" diff --git a/packages/gatsby/package.json b/packages/gatsby/package.json index c8aa895ac1425..3a0d578ddbf6d 100644 --- a/packages/gatsby/package.json +++ b/packages/gatsby/package.json @@ -1,7 +1,7 @@ { "name": "gatsby", "description": "Blazing fast modern site generator for React", - "version": "4.20.0-next.1", + "version": "4.20.0-next.2", "author": "Kyle Mathews ", "bin": { "gatsby": "./cli.js" From 5d718578f37d04ce5a3d299a0d6139462c29f038 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 19 Jul 2022 10:48:05 +0200 Subject: [PATCH 44/90] fix(deps): update starters and examples - gatsby (#36167) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- starters/blog/package-lock.json | 2222 +++++++++------- starters/blog/package.json | 26 +- starters/default/package-lock.json | 2096 ++++++++------- starters/default/package.json | 12 +- .../package-lock.json | 1443 ++++++----- .../package.json | 2 +- .../package-lock.json | 1443 ++++++----- .../gatsby-starter-blog-theme/package.json | 2 +- .../package-lock.json | 1523 +++++------ .../gatsby-starter-minimal-ts/package.json | 2 +- .../gatsby-starter-minimal/package-lock.json | 1529 +++++------ starters/gatsby-starter-minimal/package.json | 2 +- .../package-lock.json | 1582 ++++++----- .../gatsby-starter-notes-theme/package.json | 2 +- .../example/package.json | 2 +- .../gatsby-starter-theme/package-lock.json | 1514 +++++------ starters/gatsby-starter-theme/package.json | 2 +- .../package-lock.json | 2303 ++++++++++------- .../package.json | 10 +- starters/hello-world/package-lock.json | 1529 +++++------ starters/hello-world/package.json | 2 +- 21 files changed, 8635 insertions(+), 8613 deletions(-) diff --git a/starters/blog/package-lock.json b/starters/blog/package-lock.json index 55774ffa6b47e..87cc772c66698 100644 --- a/starters/blog/package-lock.json +++ b/starters/blog/package-lock.json @@ -66,20 +66,20 @@ "integrity": "sha512-HSmX4WZPPK3FUxYp7g2T6EyO8j96HlZJlxmKPSh6KAcqwyDrfx7hKjXpAW/0FhFfTJsR0Yt4lAjLI2coMptIHQ==" }, "@babel/core": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.18.6.tgz", - "integrity": "sha512-cQbWBpxcbbs/IUredIPkHiAGULLV8iwgNRMFzvbhEXISp4f3rUUXE5+TIw6KwUWUR3DwyI6gmBRnmAtYaWehwQ==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.18.9.tgz", + "integrity": "sha512-1LIb1eL8APMy91/IMW+31ckrfBM4yCoLaVzoDhZUKSM4cu1L1nIidyxkCgzPAgrC5WEz36IPEr/eSeSF9pIn+g==", "requires": { "@ampproject/remapping": "^2.1.0", "@babel/code-frame": "^7.18.6", - "@babel/generator": "^7.18.6", - "@babel/helper-compilation-targets": "^7.18.6", - "@babel/helper-module-transforms": "^7.18.6", - "@babel/helpers": "^7.18.6", - "@babel/parser": "^7.18.6", + "@babel/generator": "^7.18.9", + "@babel/helper-compilation-targets": "^7.18.9", + "@babel/helper-module-transforms": "^7.18.9", + "@babel/helpers": "^7.18.9", + "@babel/parser": "^7.18.9", "@babel/template": "^7.18.6", - "@babel/traverse": "^7.18.6", - "@babel/types": "^7.18.6", + "@babel/traverse": "^7.18.9", + "@babel/types": "^7.18.9", "convert-source-map": "^1.7.0", "debug": "^4.1.0", "gensync": "^1.0.0-beta.2", @@ -103,9 +103,9 @@ } }, "@babel/eslint-parser": { - "version": "7.18.2", - "resolved": "https://registry.npmjs.org/@babel/eslint-parser/-/eslint-parser-7.18.2.tgz", - "integrity": "sha512-oFQYkE8SuH14+uR51JVAmdqwKYXGRjEXx7s+WiagVjqQ+HPE+nnwyF2qlVG8evUsUHmPcA+6YXMEDbIhEyQc5A==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/eslint-parser/-/eslint-parser-7.18.9.tgz", + "integrity": "sha512-KzSGpMBggz4fKbRbWLNyPVTuQr6cmCcBhOyXTw/fieOVaw5oYAwcAj4a7UKcDYCPxQq+CG1NCDZH9e2JTXquiQ==", "requires": { "eslint-scope": "^5.1.1", "eslint-visitor-keys": "^2.1.0", @@ -120,11 +120,11 @@ } }, "@babel/generator": { - "version": "7.18.7", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.18.7.tgz", - "integrity": "sha512-shck+7VLlY72a2w9c3zYWuE1pwOKEiQHV7GTUbSnhyl5eu3i04t30tBY82ZRWrDfo3gkakCFtevExnxbkf2a3A==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.18.9.tgz", + "integrity": "sha512-wt5Naw6lJrL1/SGkipMiFxJjtyczUWTP38deiP1PO60HsBjDeKk08CGC3S8iVuvf0FmTdgKwU1KIXzSKL1G0Ug==", "requires": { - "@babel/types": "^7.18.7", + "@babel/types": "^7.18.9", "@jridgewell/gen-mapping": "^0.3.2", "jsesc": "^2.5.1" }, @@ -150,20 +150,20 @@ } }, "@babel/helper-builder-binary-assignment-operator-visitor": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.18.6.tgz", - "integrity": "sha512-KT10c1oWEpmrIRYnthbzHgoOf6B+Xd6a5yhdbNtdhtG7aO1or5HViuf1TQR36xY/QprXA5nvxO6nAjhJ4y38jw==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.18.9.tgz", + "integrity": "sha512-yFQ0YCHoIqarl8BCRwBL8ulYUaZpz3bNsA7oFepAzee+8/+ImtADXNOmO5vJvsPff3qi+hvpkY/NYBTrBQgdNw==", "requires": { "@babel/helper-explode-assignable-expression": "^7.18.6", - "@babel/types": "^7.18.6" + "@babel/types": "^7.18.9" } }, "@babel/helper-compilation-targets": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.18.6.tgz", - "integrity": "sha512-vFjbfhNCzqdeAtZflUFrG5YIFqGTqsctrtkZ1D/NB0mDW9TwW3GmmUepYY4G9wCET5rY5ugz4OGTcLd614IzQg==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.18.9.tgz", + "integrity": "sha512-tzLCyVmqUiFlcFoAPLA/gL9TeYrF61VLNtb+hvkuVaB5SUjW7jcfrglBIX1vUIoT7CLP3bBlIMeyEsIl2eFQNg==", "requires": { - "@babel/compat-data": "^7.18.6", + "@babel/compat-data": "^7.18.8", "@babel/helper-validator-option": "^7.18.6", "browserslist": "^4.20.2", "semver": "^6.3.0" @@ -177,16 +177,16 @@ } }, "@babel/helper-create-class-features-plugin": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.18.6.tgz", - "integrity": "sha512-YfDzdnoxHGV8CzqHGyCbFvXg5QESPFkXlHtvdCkesLjjVMT2Adxe4FGUR5ChIb3DxSaXO12iIOCWoXdsUVwnqw==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.18.9.tgz", + "integrity": "sha512-WvypNAYaVh23QcjpMR24CwZY2Nz6hqdOcFdPbNpV56hL5H6KiFheO7Xm1aPdlLQ7d5emYZX7VZwPp9x3z+2opw==", "requires": { "@babel/helper-annotate-as-pure": "^7.18.6", - "@babel/helper-environment-visitor": "^7.18.6", - "@babel/helper-function-name": "^7.18.6", - "@babel/helper-member-expression-to-functions": "^7.18.6", + "@babel/helper-environment-visitor": "^7.18.9", + "@babel/helper-function-name": "^7.18.9", + "@babel/helper-member-expression-to-functions": "^7.18.9", "@babel/helper-optimise-call-expression": "^7.18.6", - "@babel/helper-replace-supers": "^7.18.6", + "@babel/helper-replace-supers": "^7.18.9", "@babel/helper-split-export-declaration": "^7.18.6" } }, @@ -230,9 +230,9 @@ } }, "@babel/helper-environment-visitor": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.18.6.tgz", - "integrity": "sha512-8n6gSfn2baOY+qlp+VSzsosjCVGFqWKmDF0cCWOybh52Dw3SEyoWR1KrhMJASjLwIEkkAufZ0xvr+SxLHSpy2Q==" + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.18.9.tgz", + "integrity": "sha512-3r/aACDJ3fhQ/EVgFy0hpj8oHyHpQc+LPtJoY9SzTThAsStm4Ptegq92vqKoE3vD706ZVFWITnMnxucw+S9Ipg==" }, "@babel/helper-explode-assignable-expression": { "version": "7.18.6", @@ -243,12 +243,12 @@ } }, "@babel/helper-function-name": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.18.6.tgz", - "integrity": "sha512-0mWMxV1aC97dhjCah5U5Ua7668r5ZmSC2DLfH2EZnf9c3/dHZKiFa5pRLMH5tjSl471tY6496ZWk/kjNONBxhw==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.18.9.tgz", + "integrity": "sha512-fJgWlZt7nxGksJS9a0XdSaI4XvpExnNIgRP+rVefWh5U7BL8pPuir6SJUmFKRfjWQ51OtWSzwOxhaH/EBWWc0A==", "requires": { "@babel/template": "^7.18.6", - "@babel/types": "^7.18.6" + "@babel/types": "^7.18.9" } }, "@babel/helper-hoist-variables": { @@ -260,11 +260,11 @@ } }, "@babel/helper-member-expression-to-functions": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.18.6.tgz", - "integrity": "sha512-CeHxqwwipekotzPDUuJOfIMtcIHBuc7WAzLmTYWctVigqS5RktNMQ5bEwQSuGewzYnCtTWa3BARXeiLxDTv+Ng==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.18.9.tgz", + "integrity": "sha512-RxifAh2ZoVU67PyKIO4AMi1wTenGfMR/O/ae0CCRqwgBAt5v7xjdtRw7UoSbsreKrQn5t7r89eruK/9JjYHuDg==", "requires": { - "@babel/types": "^7.18.6" + "@babel/types": "^7.18.9" } }, "@babel/helper-module-imports": { @@ -276,18 +276,18 @@ } }, "@babel/helper-module-transforms": { - "version": "7.18.8", - "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.18.8.tgz", - "integrity": "sha512-che3jvZwIcZxrwh63VfnFTUzcAM9v/lznYkkRxIBGMPt1SudOKHAEec0SIRCfiuIzTcF7VGj/CaTT6gY4eWxvA==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.18.9.tgz", + "integrity": "sha512-KYNqY0ICwfv19b31XzvmI/mfcylOzbLtowkw+mfvGPAQ3kfCnMLYbED3YecL5tPd8nAYFQFAd6JHp2LxZk/J1g==", "requires": { - "@babel/helper-environment-visitor": "^7.18.6", + "@babel/helper-environment-visitor": "^7.18.9", "@babel/helper-module-imports": "^7.18.6", "@babel/helper-simple-access": "^7.18.6", "@babel/helper-split-export-declaration": "^7.18.6", "@babel/helper-validator-identifier": "^7.18.6", "@babel/template": "^7.18.6", - "@babel/traverse": "^7.18.8", - "@babel/types": "^7.18.8" + "@babel/traverse": "^7.18.9", + "@babel/types": "^7.18.9" } }, "@babel/helper-optimise-call-expression": { @@ -299,31 +299,31 @@ } }, "@babel/helper-plugin-utils": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.18.6.tgz", - "integrity": "sha512-gvZnm1YAAxh13eJdkb9EWHBnF3eAub3XTLCZEehHT2kWxiKVRL64+ae5Y6Ivne0mVHmMYKT+xWgZO+gQhuLUBg==" + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.18.9.tgz", + "integrity": "sha512-aBXPT3bmtLryXaoJLyYPXPlSD4p1ld9aYeR+sJNOZjJJGiOpb+fKfh3NkcCu7J54nUJwCERPBExCCpyCOHnu/w==" }, "@babel/helper-remap-async-to-generator": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.18.6.tgz", - "integrity": "sha512-z5wbmV55TveUPZlCLZvxWHtrjuJd+8inFhk7DG0WW87/oJuGDcjDiu7HIvGcpf5464L6xKCg3vNkmlVVz9hwyQ==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.18.9.tgz", + "integrity": "sha512-dI7q50YKd8BAv3VEfgg7PS7yD3Rtbi2J1XMXaalXO0W0164hYLnh8zpjRS0mte9MfVp/tltvr/cfdXPvJr1opA==", "requires": { "@babel/helper-annotate-as-pure": "^7.18.6", - "@babel/helper-environment-visitor": "^7.18.6", - "@babel/helper-wrap-function": "^7.18.6", - "@babel/types": "^7.18.6" + "@babel/helper-environment-visitor": "^7.18.9", + "@babel/helper-wrap-function": "^7.18.9", + "@babel/types": "^7.18.9" } }, "@babel/helper-replace-supers": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.18.6.tgz", - "integrity": "sha512-fTf7zoXnUGl9gF25fXCWE26t7Tvtyn6H4hkLSYhATwJvw2uYxd3aoXplMSe0g9XbwK7bmxNes7+FGO0rB/xC0g==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.18.9.tgz", + "integrity": "sha512-dNsWibVI4lNT6HiuOIBr1oyxo40HvIVmbwPUm3XZ7wMh4k2WxrxTqZwSqw/eEmXDS9np0ey5M2bz9tBmO9c+YQ==", "requires": { - "@babel/helper-environment-visitor": "^7.18.6", - "@babel/helper-member-expression-to-functions": "^7.18.6", + "@babel/helper-environment-visitor": "^7.18.9", + "@babel/helper-member-expression-to-functions": "^7.18.9", "@babel/helper-optimise-call-expression": "^7.18.6", - "@babel/traverse": "^7.18.6", - "@babel/types": "^7.18.6" + "@babel/traverse": "^7.18.9", + "@babel/types": "^7.18.9" } }, "@babel/helper-simple-access": { @@ -335,11 +335,11 @@ } }, "@babel/helper-skip-transparent-expression-wrappers": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.18.6.tgz", - "integrity": "sha512-4KoLhwGS9vGethZpAhYnMejWkX64wsnHPDwvOsKWU6Fg4+AlK2Jz3TyjQLMEPvz+1zemi/WBdkYxCD0bAfIkiw==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.18.9.tgz", + "integrity": "sha512-imytd2gHi3cJPsybLRbmFrF7u5BIEuI2cNheyKi3/iOBC63kNn3q8Crn2xVuESli0aM4KYsyEqKyS7lFL8YVtw==", "requires": { - "@babel/types": "^7.18.6" + "@babel/types": "^7.18.9" } }, "@babel/helper-split-export-declaration": { @@ -361,24 +361,24 @@ "integrity": "sha512-XO7gESt5ouv/LRJdrVjkShckw6STTaB7l9BrpBaAHDeF5YZT+01PCwmR0SJHnkW6i8OwW/EVWRShfi4j2x+KQw==" }, "@babel/helper-wrap-function": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.18.6.tgz", - "integrity": "sha512-I5/LZfozwMNbwr/b1vhhuYD+J/mU+gfGAj5td7l5Rv9WYmH6i3Om69WGKNmlIpsVW/mF6O5bvTKbvDQZVgjqOw==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.18.9.tgz", + "integrity": "sha512-cG2ru3TRAL6a60tfQflpEfs4ldiPwF6YW3zfJiRgmoFVIaC1vGnBBgatfec+ZUziPHkHSaXAuEck3Cdkf3eRpQ==", "requires": { - "@babel/helper-function-name": "^7.18.6", + "@babel/helper-function-name": "^7.18.9", "@babel/template": "^7.18.6", - "@babel/traverse": "^7.18.6", - "@babel/types": "^7.18.6" + "@babel/traverse": "^7.18.9", + "@babel/types": "^7.18.9" } }, "@babel/helpers": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.18.6.tgz", - "integrity": "sha512-vzSiiqbQOghPngUYt/zWGvK3LAsPhz55vc9XNN0xAl2gV4ieShI2OQli5duxWHD+72PZPTKAcfcZDE1Cwc5zsQ==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.18.9.tgz", + "integrity": "sha512-Jf5a+rbrLoR4eNdUmnFu8cN5eNJT6qdTdOg5IHIzq87WwyRw9PwguLFOWYgktN/60IP4fgDUawJvs7PjQIzELQ==", "requires": { "@babel/template": "^7.18.6", - "@babel/traverse": "^7.18.6", - "@babel/types": "^7.18.6" + "@babel/traverse": "^7.18.9", + "@babel/types": "^7.18.9" } }, "@babel/highlight": { @@ -404,9 +404,9 @@ } }, "@babel/parser": { - "version": "7.18.8", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.18.8.tgz", - "integrity": "sha512-RSKRfYX20dyH+elbJK2uqAkVyucL+xXzhqlMD5/ZXx+dAAwpyB7HsvnHe/ZUGOF+xLr5Wx9/JoXVTj6BQE2/oA==" + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.18.9.tgz", + "integrity": "sha512-9uJveS9eY9DJ0t64YbIBZICtJy8a5QrDEVdiLCG97fVLpDTpGX7t8mMSb6OWw6Lrnjqj4O8zwjELX3dhoMgiBg==" }, "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": { "version": "7.18.6", @@ -417,13 +417,13 @@ } }, "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.18.6.tgz", - "integrity": "sha512-Udgu8ZRgrBrttVz6A0EVL0SJ1z+RLbIeqsu632SA1hf0awEppD6TvdznoH+orIF8wtFFAV/Enmw9Y+9oV8TQcw==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.18.9.tgz", + "integrity": "sha512-AHrP9jadvH7qlOj6PINbgSuphjQUAK7AOT7DPjBo9EHoLhQTnnK5u45e1Hd4DbSQEO9nqPWtQ89r+XEOWFScKg==", "requires": { - "@babel/helper-plugin-utils": "^7.18.6", - "@babel/helper-skip-transparent-expression-wrappers": "^7.18.6", - "@babel/plugin-proposal-optional-chaining": "^7.18.6" + "@babel/helper-plugin-utils": "^7.18.9", + "@babel/helper-skip-transparent-expression-wrappers": "^7.18.9", + "@babel/plugin-proposal-optional-chaining": "^7.18.9" } }, "@babel/plugin-proposal-async-generator-functions": { @@ -466,11 +466,11 @@ } }, "@babel/plugin-proposal-export-namespace-from": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.18.6.tgz", - "integrity": "sha512-zr/QcUlUo7GPo6+X1wC98NJADqmy5QTFWWhqeQWiki4XHafJtLl/YMGkmRB2szDD2IYJCCdBTd4ElwhId9T7Xw==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.18.9.tgz", + "integrity": "sha512-k1NtHyOMvlDDFeb9G5PhUXuGj8m/wiwojgQVEhJ/fsVsMCpLyOP4h0uGEjYJKrRI+EVPlb5Jk+Gt9P97lOGwtA==", "requires": { - "@babel/helper-plugin-utils": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.9", "@babel/plugin-syntax-export-namespace-from": "^7.8.3" } }, @@ -484,11 +484,11 @@ } }, "@babel/plugin-proposal-logical-assignment-operators": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.18.6.tgz", - "integrity": "sha512-zMo66azZth/0tVd7gmkxOkOjs2rpHyhpcFo565PUP37hSp6hSd9uUKIfTDFMz58BwqgQKhJ9YxtM5XddjXVn+Q==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.18.9.tgz", + "integrity": "sha512-128YbMpjCrP35IOExw2Fq+x55LMP42DzhOhX2aNNIdI9avSWl2PI0yuBWarr3RYpZBSPtabfadkH2yeRiMD61Q==", "requires": { - "@babel/helper-plugin-utils": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.9", "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4" } }, @@ -511,15 +511,15 @@ } }, "@babel/plugin-proposal-object-rest-spread": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.18.6.tgz", - "integrity": "sha512-9yuM6wr4rIsKa1wlUAbZEazkCrgw2sMPEXCr4Rnwetu7cEW1NydkCWytLuYletbf8vFxdJxFhwEZqMpOx2eZyw==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.18.9.tgz", + "integrity": "sha512-kDDHQ5rflIeY5xl69CEqGEZ0KY369ehsCIEbTGb4siHG5BE9sga/T0r0OUwyZNLMmZE79E1kbsqAjwFCW4ds6Q==", "requires": { - "@babel/compat-data": "^7.18.6", - "@babel/helper-compilation-targets": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6", + "@babel/compat-data": "^7.18.8", + "@babel/helper-compilation-targets": "^7.18.9", + "@babel/helper-plugin-utils": "^7.18.9", "@babel/plugin-syntax-object-rest-spread": "^7.8.3", - "@babel/plugin-transform-parameters": "^7.18.6" + "@babel/plugin-transform-parameters": "^7.18.8" } }, "@babel/plugin-proposal-optional-catch-binding": { @@ -532,12 +532,12 @@ } }, "@babel/plugin-proposal-optional-chaining": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.18.6.tgz", - "integrity": "sha512-PatI6elL5eMzoypFAiYDpYQyMtXTn+iMhuxxQt5mAXD4fEmKorpSI3PHd+i3JXBJN3xyA6MvJv7at23HffFHwA==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.18.9.tgz", + "integrity": "sha512-v5nwt4IqBXihxGsW2QmCWMDS3B3bzGIk/EQVZz2ei7f3NJl8NzAJVvUmpDW5q1CRNY+Beb/k58UAH1Km1N411w==", "requires": { - "@babel/helper-plugin-utils": "^7.18.6", - "@babel/helper-skip-transparent-expression-wrappers": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.9", + "@babel/helper-skip-transparent-expression-wrappers": "^7.18.9", "@babel/plugin-syntax-optional-chaining": "^7.8.3" } }, @@ -741,42 +741,42 @@ } }, "@babel/plugin-transform-block-scoping": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.18.6.tgz", - "integrity": "sha512-pRqwb91C42vs1ahSAWJkxOxU1RHWDn16XAa6ggQ72wjLlWyYeAcLvTtE0aM8ph3KNydy9CQF2nLYcjq1WysgxQ==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.18.9.tgz", + "integrity": "sha512-5sDIJRV1KtQVEbt/EIBwGy4T01uYIo4KRB3VUqzkhrAIOGx7AoctL9+Ux88btY0zXdDyPJ9mW+bg+v+XEkGmtw==", "requires": { - "@babel/helper-plugin-utils": "^7.18.6" + "@babel/helper-plugin-utils": "^7.18.9" } }, "@babel/plugin-transform-classes": { - "version": "7.18.8", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.18.8.tgz", - "integrity": "sha512-RySDoXdF6hgHSHuAW4aLGyVQdmvEX/iJtjVre52k0pxRq4hzqze+rAVP++NmNv596brBpYmaiKgTZby7ziBnVg==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.18.9.tgz", + "integrity": "sha512-EkRQxsxoytpTlKJmSPYrsOMjCILacAjtSVkd4gChEe2kXjFCun3yohhW5I7plXJhCemM0gKsaGMcO8tinvCA5g==", "requires": { "@babel/helper-annotate-as-pure": "^7.18.6", - "@babel/helper-environment-visitor": "^7.18.6", - "@babel/helper-function-name": "^7.18.6", + "@babel/helper-environment-visitor": "^7.18.9", + "@babel/helper-function-name": "^7.18.9", "@babel/helper-optimise-call-expression": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6", - "@babel/helper-replace-supers": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.9", + "@babel/helper-replace-supers": "^7.18.9", "@babel/helper-split-export-declaration": "^7.18.6", "globals": "^11.1.0" } }, "@babel/plugin-transform-computed-properties": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.18.6.tgz", - "integrity": "sha512-9repI4BhNrR0KenoR9vm3/cIc1tSBIo+u1WVjKCAynahj25O8zfbiE6JtAtHPGQSs4yZ+bA8mRasRP+qc+2R5A==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.18.9.tgz", + "integrity": "sha512-+i0ZU1bCDymKakLxn5srGHrsAPRELC2WIbzwjLhHW9SIE1cPYkLCL0NlnXMZaM1vhfgA2+M7hySk42VBvrkBRw==", "requires": { - "@babel/helper-plugin-utils": "^7.18.6" + "@babel/helper-plugin-utils": "^7.18.9" } }, "@babel/plugin-transform-destructuring": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.18.6.tgz", - "integrity": "sha512-tgy3u6lRp17ilY8r1kP4i2+HDUwxlVqq3RTc943eAWSzGgpU1qhiKpqZ5CMyHReIYPHdo3Kg8v8edKtDqSVEyQ==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.18.9.tgz", + "integrity": "sha512-p5VCYNddPLkZTq4XymQIaIfZNJwT9YsjkPOhkVEqt6QIpQFZVM9IltqqYpOEkJoN1DPznmxUDyZ5CTZs/ZCuHA==", "requires": { - "@babel/helper-plugin-utils": "^7.18.6" + "@babel/helper-plugin-utils": "^7.18.9" } }, "@babel/plugin-transform-dotall-regex": { @@ -789,11 +789,11 @@ } }, "@babel/plugin-transform-duplicate-keys": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.18.6.tgz", - "integrity": "sha512-NJU26U/208+sxYszf82nmGYqVF9QN8py2HFTblPT9hbawi8+1C5a9JubODLTGFuT0qlkqVinmkwOD13s0sZktg==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.18.9.tgz", + "integrity": "sha512-d2bmXCtZXYc59/0SanQKbiWINadaJXqtvIQIzd4+hNwkWBgyCd5F/2t1kXoUdvPMrxzPvhK6EMQRROxsue+mfw==", "requires": { - "@babel/helper-plugin-utils": "^7.18.6" + "@babel/helper-plugin-utils": "^7.18.9" } }, "@babel/plugin-transform-exponentiation-operator": { @@ -806,11 +806,11 @@ } }, "@babel/plugin-transform-flow-strip-types": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.18.6.tgz", - "integrity": "sha512-wE0xtA7csz+hw4fKPwxmu5jnzAsXPIO57XnRwzXP3T19jWh1BODnPGoG9xKYwvAwusP7iUktHayRFbMPGtODaQ==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.18.9.tgz", + "integrity": "sha512-+G6rp2zRuOAInY5wcggsx4+QVao1qPM0osC9fTUVlAV3zOrzTCnrMAFVnR6+a3T8wz1wFIH7KhYMcMB3u1n80A==", "requires": { - "@babel/helper-plugin-utils": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.9", "@babel/plugin-syntax-flow": "^7.18.6" } }, @@ -823,21 +823,21 @@ } }, "@babel/plugin-transform-function-name": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.18.6.tgz", - "integrity": "sha512-kJha/Gbs5RjzIu0CxZwf5e3aTTSlhZnHMT8zPWnJMjNpLOUgqevg+PN5oMH68nMCXnfiMo4Bhgxqj59KHTlAnA==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.18.9.tgz", + "integrity": "sha512-WvIBoRPaJQ5yVHzcnJFor7oS5Ls0PYixlTYE63lCj2RtdQEl15M68FXQlxnG6wdraJIXRdR7KI+hQ7q/9QjrCQ==", "requires": { - "@babel/helper-compilation-targets": "^7.18.6", - "@babel/helper-function-name": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6" + "@babel/helper-compilation-targets": "^7.18.9", + "@babel/helper-function-name": "^7.18.9", + "@babel/helper-plugin-utils": "^7.18.9" } }, "@babel/plugin-transform-literals": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.18.6.tgz", - "integrity": "sha512-x3HEw0cJZVDoENXOp20HlypIHfl0zMIhMVZEBVTfmqbObIpsMxMbmU5nOEO8R7LYT+z5RORKPlTI5Hj4OsO9/Q==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.18.9.tgz", + "integrity": "sha512-IFQDSRoTPnrAIrI5zoZv73IFeZu2dhu6irxQjY9rNjTT53VmKg9fenjvoiOWOkJ6mm4jKVPtdMzBY98Fp4Z4cg==", "requires": { - "@babel/helper-plugin-utils": "^7.18.6" + "@babel/helper-plugin-utils": "^7.18.9" } }, "@babel/plugin-transform-member-expression-literals": { @@ -870,13 +870,13 @@ } }, "@babel/plugin-transform-modules-systemjs": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.18.6.tgz", - "integrity": "sha512-UbPYpXxLjTw6w6yXX2BYNxF3p6QY225wcTkfQCy3OMnSlS/C3xGtwUjEzGkldb/sy6PWLiCQ3NbYfjWUTI3t4g==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.18.9.tgz", + "integrity": "sha512-zY/VSIbbqtoRoJKo2cDTewL364jSlZGvn0LKOf9ntbfxOvjfmyrdtEEOAdswOswhZEb8UH3jDkCKHd1sPgsS0A==", "requires": { "@babel/helper-hoist-variables": "^7.18.6", - "@babel/helper-module-transforms": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6", + "@babel/helper-module-transforms": "^7.18.9", + "@babel/helper-plugin-utils": "^7.18.9", "@babel/helper-validator-identifier": "^7.18.6", "babel-plugin-dynamic-import-node": "^2.3.3" } @@ -987,12 +987,12 @@ } }, "@babel/plugin-transform-runtime": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.18.6.tgz", - "integrity": "sha512-8uRHk9ZmRSnWqUgyae249EJZ94b0yAGLBIqzZzl+0iEdbno55Pmlt/32JZsHwXD9k/uZj18Aqqk35wBX4CBTXA==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.18.9.tgz", + "integrity": "sha512-wS8uJwBt7/b/mzE13ktsJdmS4JP/j7PQSaADtnb4I2wL0zK51MQ0pmF8/Jy0wUIS96fr+fXT6S/ifiPXnvrlSg==", "requires": { "@babel/helper-module-imports": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.9", "babel-plugin-polyfill-corejs2": "^0.3.1", "babel-plugin-polyfill-corejs3": "^0.5.2", "babel-plugin-polyfill-regenerator": "^0.3.1", @@ -1015,12 +1015,12 @@ } }, "@babel/plugin-transform-spread": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.18.6.tgz", - "integrity": "sha512-ayT53rT/ENF8WWexIRg9AiV9h0aIteyWn5ptfZTZQrjk/+f3WdrJGCY4c9wcgl2+MKkKPhzbYp97FTsquZpDCw==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.18.9.tgz", + "integrity": "sha512-39Q814wyoOPtIB/qGopNIL9xDChOE1pNU0ZY5dO0owhiVt/5kFm4li+/bBtwc7QotG0u5EPzqhZdjMtmqBqyQA==", "requires": { - "@babel/helper-plugin-utils": "^7.18.6", - "@babel/helper-skip-transparent-expression-wrappers": "^7.18.6" + "@babel/helper-plugin-utils": "^7.18.9", + "@babel/helper-skip-transparent-expression-wrappers": "^7.18.9" } }, "@babel/plugin-transform-sticky-regex": { @@ -1032,19 +1032,19 @@ } }, "@babel/plugin-transform-template-literals": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.18.6.tgz", - "integrity": "sha512-UuqlRrQmT2SWRvahW46cGSany0uTlcj8NYOS5sRGYi8FxPYPoLd5DDmMd32ZXEj2Jq+06uGVQKHxa/hJx2EzKw==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.18.9.tgz", + "integrity": "sha512-S8cOWfT82gTezpYOiVaGHrCbhlHgKhQt8XH5ES46P2XWmX92yisoZywf5km75wv5sYcXDUCLMmMxOLCtthDgMA==", "requires": { - "@babel/helper-plugin-utils": "^7.18.6" + "@babel/helper-plugin-utils": "^7.18.9" } }, "@babel/plugin-transform-typeof-symbol": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.18.6.tgz", - "integrity": "sha512-7m71iS/QhsPk85xSjFPovHPcH3H9qeyzsujhTc+vcdnsXavoWYJ74zx0lP5RhpC5+iDnVLO+PPMHzC11qels1g==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.18.9.tgz", + "integrity": "sha512-SRfwTtF11G2aemAZWivL7PD+C9z52v9EvMqH9BuYbabyPuKUvSWks3oCg6041pT925L4zVFqaVBeECwsmlguEw==", "requires": { - "@babel/helper-plugin-utils": "^7.18.6" + "@babel/helper-plugin-utils": "^7.18.9" } }, "@babel/plugin-transform-typescript": { @@ -1075,28 +1075,28 @@ } }, "@babel/preset-env": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.18.6.tgz", - "integrity": "sha512-WrthhuIIYKrEFAwttYzgRNQ5hULGmwTj+D6l7Zdfsv5M7IWV/OZbUfbeL++Qrzx1nVJwWROIFhCHRYQV4xbPNw==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.18.9.tgz", + "integrity": "sha512-75pt/q95cMIHWssYtyfjVlvI+QEZQThQbKvR9xH+F/Agtw/s4Wfc2V9Bwd/P39VtixB7oWxGdH4GteTTwYJWMg==", "requires": { - "@babel/compat-data": "^7.18.6", - "@babel/helper-compilation-targets": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6", + "@babel/compat-data": "^7.18.8", + "@babel/helper-compilation-targets": "^7.18.9", + "@babel/helper-plugin-utils": "^7.18.9", "@babel/helper-validator-option": "^7.18.6", "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "^7.18.6", - "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.18.6", + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.18.9", "@babel/plugin-proposal-async-generator-functions": "^7.18.6", "@babel/plugin-proposal-class-properties": "^7.18.6", "@babel/plugin-proposal-class-static-block": "^7.18.6", "@babel/plugin-proposal-dynamic-import": "^7.18.6", - "@babel/plugin-proposal-export-namespace-from": "^7.18.6", + "@babel/plugin-proposal-export-namespace-from": "^7.18.9", "@babel/plugin-proposal-json-strings": "^7.18.6", - "@babel/plugin-proposal-logical-assignment-operators": "^7.18.6", + "@babel/plugin-proposal-logical-assignment-operators": "^7.18.9", "@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6", "@babel/plugin-proposal-numeric-separator": "^7.18.6", - "@babel/plugin-proposal-object-rest-spread": "^7.18.6", + "@babel/plugin-proposal-object-rest-spread": "^7.18.9", "@babel/plugin-proposal-optional-catch-binding": "^7.18.6", - "@babel/plugin-proposal-optional-chaining": "^7.18.6", + "@babel/plugin-proposal-optional-chaining": "^7.18.9", "@babel/plugin-proposal-private-methods": "^7.18.6", "@babel/plugin-proposal-private-property-in-object": "^7.18.6", "@babel/plugin-proposal-unicode-property-regex": "^7.18.6", @@ -1118,37 +1118,37 @@ "@babel/plugin-transform-arrow-functions": "^7.18.6", "@babel/plugin-transform-async-to-generator": "^7.18.6", "@babel/plugin-transform-block-scoped-functions": "^7.18.6", - "@babel/plugin-transform-block-scoping": "^7.18.6", - "@babel/plugin-transform-classes": "^7.18.6", - "@babel/plugin-transform-computed-properties": "^7.18.6", - "@babel/plugin-transform-destructuring": "^7.18.6", + "@babel/plugin-transform-block-scoping": "^7.18.9", + "@babel/plugin-transform-classes": "^7.18.9", + "@babel/plugin-transform-computed-properties": "^7.18.9", + "@babel/plugin-transform-destructuring": "^7.18.9", "@babel/plugin-transform-dotall-regex": "^7.18.6", - "@babel/plugin-transform-duplicate-keys": "^7.18.6", + "@babel/plugin-transform-duplicate-keys": "^7.18.9", "@babel/plugin-transform-exponentiation-operator": "^7.18.6", - "@babel/plugin-transform-for-of": "^7.18.6", - "@babel/plugin-transform-function-name": "^7.18.6", - "@babel/plugin-transform-literals": "^7.18.6", + "@babel/plugin-transform-for-of": "^7.18.8", + "@babel/plugin-transform-function-name": "^7.18.9", + "@babel/plugin-transform-literals": "^7.18.9", "@babel/plugin-transform-member-expression-literals": "^7.18.6", "@babel/plugin-transform-modules-amd": "^7.18.6", "@babel/plugin-transform-modules-commonjs": "^7.18.6", - "@babel/plugin-transform-modules-systemjs": "^7.18.6", + "@babel/plugin-transform-modules-systemjs": "^7.18.9", "@babel/plugin-transform-modules-umd": "^7.18.6", "@babel/plugin-transform-named-capturing-groups-regex": "^7.18.6", "@babel/plugin-transform-new-target": "^7.18.6", "@babel/plugin-transform-object-super": "^7.18.6", - "@babel/plugin-transform-parameters": "^7.18.6", + "@babel/plugin-transform-parameters": "^7.18.8", "@babel/plugin-transform-property-literals": "^7.18.6", "@babel/plugin-transform-regenerator": "^7.18.6", "@babel/plugin-transform-reserved-words": "^7.18.6", "@babel/plugin-transform-shorthand-properties": "^7.18.6", - "@babel/plugin-transform-spread": "^7.18.6", + "@babel/plugin-transform-spread": "^7.18.9", "@babel/plugin-transform-sticky-regex": "^7.18.6", - "@babel/plugin-transform-template-literals": "^7.18.6", - "@babel/plugin-transform-typeof-symbol": "^7.18.6", + "@babel/plugin-transform-template-literals": "^7.18.9", + "@babel/plugin-transform-typeof-symbol": "^7.18.9", "@babel/plugin-transform-unicode-escapes": "^7.18.6", "@babel/plugin-transform-unicode-regex": "^7.18.6", "@babel/preset-modules": "^0.1.5", - "@babel/types": "^7.18.6", + "@babel/types": "^7.18.9", "babel-plugin-polyfill-corejs2": "^0.3.1", "babel-plugin-polyfill-corejs3": "^0.5.2", "babel-plugin-polyfill-regenerator": "^0.3.1", @@ -1207,9 +1207,9 @@ } }, "@babel/runtime-corejs3": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/runtime-corejs3/-/runtime-corejs3-7.18.6.tgz", - "integrity": "sha512-cOu5wH2JFBgMjje+a+fz2JNIWU4GzYpl05oSob3UDvBEh6EuIn+TXFHMmBbhSb+k/4HMzgKCQfEEDArAWNF9Cw==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/runtime-corejs3/-/runtime-corejs3-7.18.9.tgz", + "integrity": "sha512-qZEWeccZCrHA2Au4/X05QW5CMdm4VjUDCrGq5gf1ZDcM4hRqreKrtwAn7yci9zfgAS9apvnsFXiGBHBAxZdK9A==", "requires": { "core-js-pure": "^3.20.2", "regenerator-runtime": "^0.13.4" @@ -1226,18 +1226,18 @@ } }, "@babel/traverse": { - "version": "7.18.8", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.18.8.tgz", - "integrity": "sha512-UNg/AcSySJYR/+mIcJQDCv00T+AqRO7j/ZEJLzpaYtgM48rMg5MnkJgyNqkzo88+p4tfRvZJCEiwwfG6h4jkRg==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.18.9.tgz", + "integrity": "sha512-LcPAnujXGwBgv3/WHv01pHtb2tihcyW1XuL9wd7jqh1Z8AQkTd+QVjMrMijrln0T7ED3UXLIy36P9Ao7W75rYg==", "requires": { "@babel/code-frame": "^7.18.6", - "@babel/generator": "^7.18.7", - "@babel/helper-environment-visitor": "^7.18.6", - "@babel/helper-function-name": "^7.18.6", + "@babel/generator": "^7.18.9", + "@babel/helper-environment-visitor": "^7.18.9", + "@babel/helper-function-name": "^7.18.9", "@babel/helper-hoist-variables": "^7.18.6", "@babel/helper-split-export-declaration": "^7.18.6", - "@babel/parser": "^7.18.8", - "@babel/types": "^7.18.8", + "@babel/parser": "^7.18.9", + "@babel/types": "^7.18.9", "debug": "^4.1.0", "globals": "^11.1.0" }, @@ -1253,9 +1253,9 @@ } }, "@babel/types": { - "version": "7.18.8", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.8.tgz", - "integrity": "sha512-qwpdsmraq0aJ3osLJRApsc2ouSJCdnMeZwB0DhbtHAtRpZNZCdlbRnHIgcRKzdE1g0iOGg644fzjOBcdOz9cPw==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.9.tgz", + "integrity": "sha512-WwMLAg2MvJmt/rKEVQBBhIVffMmnilX4oe0sRe7iPOHIGsqpruFHHdrfj4O1CMMtgMtCU4oPafZjDPCRgO57Wg==", "requires": { "@babel/helper-validator-identifier": "^7.18.6", "to-fast-properties": "^2.0.0" @@ -1317,238 +1317,37 @@ } }, "@gatsbyjs/parcel-namer-relative-to-cwd": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/@gatsbyjs/parcel-namer-relative-to-cwd/-/parcel-namer-relative-to-cwd-1.3.2.tgz", - "integrity": "sha512-jiYGiq8Zk21x2IIWbsLQ0GqgGJyKjj+/4jYwr5msD5ORB/JAZLk4IDrMKZ9rFXkNPq/bRV57ub0k/NvRMELfLQ==", + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/@gatsbyjs/parcel-namer-relative-to-cwd/-/parcel-namer-relative-to-cwd-1.4.0.tgz", + "integrity": "sha512-oXhiaPtYTGYqGZlazYRUabWVHWx5z6sAyBVLhUnpsKcBsK815cET+mjeWDKpmvJmFTKHC72Bvy1WIEnW3++YxA==", "requires": { "@babel/runtime": "^7.18.0", "@parcel/namer-default": "2.6.2", - "@parcel/plugin": "2.6.0", - "gatsby-core-utils": "^3.18.1" + "@parcel/plugin": "2.6.2", + "gatsby-core-utils": "^3.19.0" }, "dependencies": { - "@lmdb/lmdb-darwin-arm64": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-arm64/-/lmdb-darwin-arm64-2.5.2.tgz", - "integrity": "sha512-+F8ioQIUN68B4UFiIBYu0QQvgb9FmlKw2ctQMSBfW2QBrZIxz9vD9jCGqTCPqZBRbPHAS/vG1zSXnKqnS2ch/A==", - "optional": true - }, - "@lmdb/lmdb-darwin-x64": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-x64/-/lmdb-darwin-x64-2.5.2.tgz", - "integrity": "sha512-KvPH56KRLLx4KSfKBx0m1r7GGGUMXm0jrKmNE7plbHlesZMuPJICtn07HYgQhj1LNsK7Yqwuvnqh1QxhJnF1EA==", - "optional": true - }, - "@lmdb/lmdb-linux-arm": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm/-/lmdb-linux-arm-2.5.2.tgz", - "integrity": "sha512-5kQAP21hAkfW5Bl+e0P57dV4dGYnkNIpR7f/GAh6QHlgXx+vp/teVj4PGRZaKAvt0GX6++N6hF8NnGElLDuIDw==", - "optional": true - }, - "@lmdb/lmdb-linux-arm64": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm64/-/lmdb-linux-arm64-2.5.2.tgz", - "integrity": "sha512-aLl89VHL/wjhievEOlPocoefUyWdvzVrcQ/MHQYZm2JfV1jUsrbr/ZfkPPUFvZBf+VSE+Q0clWs9l29PCX1hTQ==", - "optional": true - }, - "@lmdb/lmdb-linux-x64": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-x64/-/lmdb-linux-x64-2.5.2.tgz", - "integrity": "sha512-xUdUfwDJLGjOUPH3BuPBt0NlIrR7f/QHKgu3GZIXswMMIihAekj2i97oI0iWG5Bok/b+OBjHPfa8IU9velnP/Q==", - "optional": true - }, - "@lmdb/lmdb-win32-x64": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-win32-x64/-/lmdb-win32-x64-2.5.2.tgz", - "integrity": "sha512-zrBczSbXKxEyK2ijtbRdICDygRqWSRPpZMN5dD1T8VMEW5RIhIbwFWw2phDRXuBQdVDpSjalCIUMWMV2h3JaZA==", - "optional": true - }, - "@parcel/cache": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/@parcel/cache/-/cache-2.6.2.tgz", - "integrity": "sha512-hhJ6AsEGybeQZd9c/GYqfcKTgZKQXu3Xih6TlnP3gdR3KZoJOnb40ovHD1yYg4COvfcXThKP1cVJ18J6rcv3IA==", - "requires": { - "@parcel/fs": "2.6.2", - "@parcel/logger": "2.6.2", - "@parcel/utils": "2.6.2", - "lmdb": "2.5.2" - } - }, - "@parcel/codeframe": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/@parcel/codeframe/-/codeframe-2.6.2.tgz", - "integrity": "sha512-oFlHr6HCaYYsB4SHkU+gn9DKtbzvv3/4NdwMX0/6NAKyYVI7inEsXyPGw2Bbd2ZCFatW9QJZUETF0etvh5AEfQ==", - "requires": { - "chalk": "^4.1.0" - } - }, - "@parcel/diagnostic": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/@parcel/diagnostic/-/diagnostic-2.6.2.tgz", - "integrity": "sha512-3ODSBkKVihENU763z1/1DhGAWFhYWRxOCOShC72KXp+GFnSgGiBsxclu8NBa/N948Rzp8lqQI8U1nLcKkh0O/w==", - "requires": { - "@mischnic/json-sourcemap": "^0.1.0", - "nullthrows": "^1.1.1" - } - }, - "@parcel/events": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/@parcel/events/-/events-2.6.2.tgz", - "integrity": "sha512-IaCjOeA5ercdFVi1EZOmUHhGfIysmCUgc2Th9hMugSFO0I3GzRsBcAdP6XPfWm+TV6sQ/qZRfdk/drUxoAupnw==" - }, - "@parcel/fs": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/@parcel/fs/-/fs-2.6.2.tgz", - "integrity": "sha512-mIhqdF3tjgeoIGqW7Nc/xfM2ClID7o8livwUe5lpQEP+ZaIBiMigXs6ckv3WToCACK+3uylrSD2A/HmlhrxMqQ==", - "requires": { - "@parcel/fs-search": "2.6.2", - "@parcel/types": "2.6.2", - "@parcel/utils": "2.6.2", - "@parcel/watcher": "^2.0.0", - "@parcel/workers": "2.6.2" - } - }, - "@parcel/fs-search": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/@parcel/fs-search/-/fs-search-2.6.2.tgz", - "integrity": "sha512-4STid1zqtGnmGjHD/2TG2g/zPDiCTtE3IAS24QYH3eiUAz2uoKGgEqd2tZbZ2yI96jtCuIhC1bzVu8Hbykls7w==", - "requires": { - "detect-libc": "^1.0.3" - } - }, - "@parcel/hash": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/@parcel/hash/-/hash-2.6.2.tgz", - "integrity": "sha512-tFB+cJU1Wqag6WyJgsmx3nx+xhmjcNZqtWh/MtK1lHNnZdDRk6bjr7SapnygBwruz+SmSt5bbdVThcpk2dRCcA==", - "requires": { - "detect-libc": "^1.0.3", - "xxhash-wasm": "^0.4.2" - } - }, - "@parcel/logger": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/@parcel/logger/-/logger-2.6.2.tgz", - "integrity": "sha512-Sz5YGCj1DbEiX0/G8Uw97LLZ0uEK+qtWcRAkHNpJpeMiSqDiRNevxXltz42EcLo+oCh4d4wyiVzwi9mNwzhS/Q==", - "requires": { - "@parcel/diagnostic": "2.6.2", - "@parcel/events": "2.6.2" - } - }, - "@parcel/markdown-ansi": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/@parcel/markdown-ansi/-/markdown-ansi-2.6.2.tgz", - "integrity": "sha512-N/h9J4eibhc+B+krzvPMzFUWL37GudBIZBa7XSLkcuH6MnYYfh6rrMvhIyyESwk6VkcZNVzAeZrGQqxEs0dHDQ==", - "requires": { - "chalk": "^4.1.0" - } - }, - "@parcel/namer-default": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/@parcel/namer-default/-/namer-default-2.6.2.tgz", - "integrity": "sha512-mp7bx/BQaIuohmZP0uE+gAmDBzzH0Yu8F4yCtE611lc6i0mou+nWRhzyKLNC/ieuI8DB3BFh2QQKeTxJn4W0qg==", - "requires": { - "@parcel/diagnostic": "2.6.2", - "@parcel/plugin": "2.6.2", - "nullthrows": "^1.1.1" - }, - "dependencies": { - "@parcel/plugin": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/@parcel/plugin/-/plugin-2.6.2.tgz", - "integrity": "sha512-wbbWsM23Pr+8xtLSvf+UopXdVYlpKCCx6PuuZaZcKo+9IcDCWoGXD4M8Kkz14qBmkFn5uM00mULUqmVdSibB2w==", - "requires": { - "@parcel/types": "2.6.2" - } - } - } - }, - "@parcel/package-manager": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/@parcel/package-manager/-/package-manager-2.6.2.tgz", - "integrity": "sha512-xGMqTgnwTE3rgzYwUZMKxR8fzmP5iSYz/gj2H8FR3pEmwh/8xCMtNjTSth+hPVGuqgRZ6JxwpfdY/fXdZ61ViQ==", - "requires": { - "@parcel/diagnostic": "2.6.2", - "@parcel/fs": "2.6.2", - "@parcel/logger": "2.6.2", - "@parcel/types": "2.6.2", - "@parcel/utils": "2.6.2", - "@parcel/workers": "2.6.2", - "semver": "^5.7.1" - } - }, - "@parcel/types": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/@parcel/types/-/types-2.6.2.tgz", - "integrity": "sha512-MV8BFpCIs2jMUvK2RHqzkoiuOQ//JIbrD1zocA2YRW3zuPL/iABvbAABJoXpoPCKikVWOoCWASgBfWQo26VvJQ==", - "requires": { - "@parcel/cache": "2.6.2", - "@parcel/diagnostic": "2.6.2", - "@parcel/fs": "2.6.2", - "@parcel/package-manager": "2.6.2", - "@parcel/source-map": "^2.0.0", - "@parcel/workers": "2.6.2", - "utility-types": "^3.10.0" - } - }, - "@parcel/utils": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/@parcel/utils/-/utils-2.6.2.tgz", - "integrity": "sha512-Ug7hpRxjgbY5AopW55nY7MmGMVmwmN+ihfCmxJkBUoESTG/3iq8uME7GjyOgW5DkQc2K7q62i8y8N0wCJT1u4Q==", - "requires": { - "@parcel/codeframe": "2.6.2", - "@parcel/diagnostic": "2.6.2", - "@parcel/hash": "2.6.2", - "@parcel/logger": "2.6.2", - "@parcel/markdown-ansi": "2.6.2", - "@parcel/source-map": "^2.0.0", - "chalk": "^4.1.0" - } - }, - "@parcel/workers": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/@parcel/workers/-/workers-2.6.2.tgz", - "integrity": "sha512-wBgUjJQm+lDd12fPRUmk09+ujTA9DgwPdqylSFK0OtI/yT6A+2kArUqjp8IwWo2tCJXoMzXBne2XQIWKqMiN4Q==", + "gatsby-core-utils": { + "version": "3.19.0", + "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.19.0.tgz", + "integrity": "sha512-cjXs9DsXkPZt+UdiLHxtq+rGMGVrcnM0KwkawlruvPchI7lqGNv9CScqlvYPxx1dBhu3zSZS26EBALMlFhyOJA==", "requires": { - "@parcel/diagnostic": "2.6.2", - "@parcel/logger": "2.6.2", - "@parcel/types": "2.6.2", - "@parcel/utils": "2.6.2", - "chrome-trace-event": "^1.0.2", - "nullthrows": "^1.1.1" - } - }, - "lmdb": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/lmdb/-/lmdb-2.5.2.tgz", - "integrity": "sha512-V5V5Xa2Hp9i2XsbDALkBTeHXnBXh/lEmk9p22zdr7jtuOIY9TGhjK6vAvTpOOx9IKU4hJkRWZxn/HsvR1ELLtA==", - "requires": { - "@lmdb/lmdb-darwin-arm64": "2.5.2", - "@lmdb/lmdb-darwin-x64": "2.5.2", - "@lmdb/lmdb-linux-arm": "2.5.2", - "@lmdb/lmdb-linux-arm64": "2.5.2", - "@lmdb/lmdb-linux-x64": "2.5.2", - "@lmdb/lmdb-win32-x64": "2.5.2", - "msgpackr": "^1.5.4", - "node-addon-api": "^4.3.0", - "node-gyp-build-optional-packages": "5.0.3", - "ordered-binary": "^1.2.4", - "weak-lru-cache": "^1.2.2" + "@babel/runtime": "^7.15.4", + "ci-info": "2.0.0", + "configstore": "^5.0.1", + "fastq": "^1.13.0", + "file-type": "^16.5.3", + "fs-extra": "^10.1.0", + "got": "^11.8.5", + "import-from": "^4.0.0", + "lmdb": "2.5.3", + "lock": "^1.1.0", + "node-object-hash": "^2.3.10", + "proper-lockfile": "^4.1.2", + "resolve-from": "^5.0.0", + "tmp": "^0.2.1", + "xdg-basedir": "^4.0.0" } - }, - "node-addon-api": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-4.3.0.tgz", - "integrity": "sha512-73sE9+3UaLYYFmDsFZnqCInzPyh3MqIwZO9cw58yIqAZhONrrabrYyYe3TuIqtIiOuTXVhsGau8hcrhhwSsDIQ==" - }, - "node-gyp-build-optional-packages": { - "version": "5.0.3", - "resolved": "https://registry.npmjs.org/node-gyp-build-optional-packages/-/node-gyp-build-optional-packages-5.0.3.tgz", - "integrity": "sha512-k75jcVzk5wnnc/FMxsf4udAoTEUv2jY3ycfdSd3yWu6Cnd1oee6/CfZJApyscA4FJOmdoixWwiwOyf16RzD5JA==" - }, - "semver": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", - "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==" } } }, @@ -2596,43 +2395,78 @@ } }, "@parcel/bundler-default": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/bundler-default/-/bundler-default-2.6.0.tgz", - "integrity": "sha512-AplEdGm/odV7yGmoeOnglxnY31WlNB5EqGLFGxkgs7uwDaTWoTX/9SWPG6xfvirhjDpms8sLSiVuBdFRCCLtNA==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/bundler-default/-/bundler-default-2.6.2.tgz", + "integrity": "sha512-XIa3had/MIaTGgRFkHApXwytYs77k4geaNcmlb6nzmAABcYjW1CLYh83Zt0AbzLFsDT9ZcRY3u2UjhNf6efSaw==", "requires": { - "@parcel/diagnostic": "2.6.0", - "@parcel/hash": "2.6.0", - "@parcel/plugin": "2.6.0", - "@parcel/utils": "2.6.0", + "@parcel/diagnostic": "2.6.2", + "@parcel/hash": "2.6.2", + "@parcel/plugin": "2.6.2", + "@parcel/utils": "2.6.2", "nullthrows": "^1.1.1" } }, "@parcel/cache": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/cache/-/cache-2.6.0.tgz", - "integrity": "sha512-4vbD5uSuf+kRnrFesKhpn0AKnOw8u2UlvCyrplYmp1g9bNAkIooC/nDGdmkb/9SviPEbni9PEanQEHDU2+slpA==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/cache/-/cache-2.6.2.tgz", + "integrity": "sha512-hhJ6AsEGybeQZd9c/GYqfcKTgZKQXu3Xih6TlnP3gdR3KZoJOnb40ovHD1yYg4COvfcXThKP1cVJ18J6rcv3IA==", "requires": { - "@parcel/fs": "2.6.0", - "@parcel/logger": "2.6.0", - "@parcel/utils": "2.6.0", - "lmdb": "2.3.10" + "@parcel/fs": "2.6.2", + "@parcel/logger": "2.6.2", + "@parcel/utils": "2.6.2", + "lmdb": "2.5.2" }, "dependencies": { + "@lmdb/lmdb-darwin-arm64": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-arm64/-/lmdb-darwin-arm64-2.5.2.tgz", + "integrity": "sha512-+F8ioQIUN68B4UFiIBYu0QQvgb9FmlKw2ctQMSBfW2QBrZIxz9vD9jCGqTCPqZBRbPHAS/vG1zSXnKqnS2ch/A==", + "optional": true + }, + "@lmdb/lmdb-darwin-x64": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-x64/-/lmdb-darwin-x64-2.5.2.tgz", + "integrity": "sha512-KvPH56KRLLx4KSfKBx0m1r7GGGUMXm0jrKmNE7plbHlesZMuPJICtn07HYgQhj1LNsK7Yqwuvnqh1QxhJnF1EA==", + "optional": true + }, + "@lmdb/lmdb-linux-arm": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm/-/lmdb-linux-arm-2.5.2.tgz", + "integrity": "sha512-5kQAP21hAkfW5Bl+e0P57dV4dGYnkNIpR7f/GAh6QHlgXx+vp/teVj4PGRZaKAvt0GX6++N6hF8NnGElLDuIDw==", + "optional": true + }, + "@lmdb/lmdb-linux-arm64": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm64/-/lmdb-linux-arm64-2.5.2.tgz", + "integrity": "sha512-aLl89VHL/wjhievEOlPocoefUyWdvzVrcQ/MHQYZm2JfV1jUsrbr/ZfkPPUFvZBf+VSE+Q0clWs9l29PCX1hTQ==", + "optional": true + }, + "@lmdb/lmdb-linux-x64": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-x64/-/lmdb-linux-x64-2.5.2.tgz", + "integrity": "sha512-xUdUfwDJLGjOUPH3BuPBt0NlIrR7f/QHKgu3GZIXswMMIihAekj2i97oI0iWG5Bok/b+OBjHPfa8IU9velnP/Q==", + "optional": true + }, + "@lmdb/lmdb-win32-x64": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-win32-x64/-/lmdb-win32-x64-2.5.2.tgz", + "integrity": "sha512-zrBczSbXKxEyK2ijtbRdICDygRqWSRPpZMN5dD1T8VMEW5RIhIbwFWw2phDRXuBQdVDpSjalCIUMWMV2h3JaZA==", + "optional": true + }, "lmdb": { - "version": "2.3.10", - "resolved": "https://registry.npmjs.org/lmdb/-/lmdb-2.3.10.tgz", - "integrity": "sha512-GtH+nStn9V59CfYeQ5ddx6YTfuFCmu86UJojIjJAweG+/Fm0PDknuk3ovgYDtY/foMeMdZa8/P7oSljW/d5UPw==", - "requires": { - "lmdb-darwin-arm64": "2.3.10", - "lmdb-darwin-x64": "2.3.10", - "lmdb-linux-arm": "2.3.10", - "lmdb-linux-arm64": "2.3.10", - "lmdb-linux-x64": "2.3.10", - "lmdb-win32-x64": "2.3.10", + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/lmdb/-/lmdb-2.5.2.tgz", + "integrity": "sha512-V5V5Xa2Hp9i2XsbDALkBTeHXnBXh/lEmk9p22zdr7jtuOIY9TGhjK6vAvTpOOx9IKU4hJkRWZxn/HsvR1ELLtA==", + "requires": { + "@lmdb/lmdb-darwin-arm64": "2.5.2", + "@lmdb/lmdb-darwin-x64": "2.5.2", + "@lmdb/lmdb-linux-arm": "2.5.2", + "@lmdb/lmdb-linux-arm64": "2.5.2", + "@lmdb/lmdb-linux-x64": "2.5.2", + "@lmdb/lmdb-win32-x64": "2.5.2", "msgpackr": "^1.5.4", - "nan": "^2.14.2", "node-addon-api": "^4.3.0", - "node-gyp-build-optional-packages": "^4.3.2", + "node-gyp-build-optional-packages": "5.0.3", "ordered-binary": "^1.2.4", "weak-lru-cache": "^1.2.2" } @@ -2645,40 +2479,40 @@ } }, "@parcel/codeframe": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/codeframe/-/codeframe-2.6.0.tgz", - "integrity": "sha512-yXXxrO9yyedHKpTwC+Af0+vPmQm+A9xeEhkt4f0yVg1n4t4yUIxYlTedzbM8ygZEEBtkXU9jJ+PkgXbfMf0dqw==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/codeframe/-/codeframe-2.6.2.tgz", + "integrity": "sha512-oFlHr6HCaYYsB4SHkU+gn9DKtbzvv3/4NdwMX0/6NAKyYVI7inEsXyPGw2Bbd2ZCFatW9QJZUETF0etvh5AEfQ==", "requires": { "chalk": "^4.1.0" } }, "@parcel/compressor-raw": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/compressor-raw/-/compressor-raw-2.6.0.tgz", - "integrity": "sha512-rtMU2mGl88bic6Xbq1u5L49bMK4s5185b0k7h3JRdS6/0rR+Xp4k/o9Wog+hHjK/s82z1eF9WmET779ZpIDIQQ==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/compressor-raw/-/compressor-raw-2.6.2.tgz", + "integrity": "sha512-P3c8jjV5HVs+fNDjhvq7PtHXNm687nit1iwTS5VAt+ScXKhKBhoIJ56q+9opcw0jnXVjAAgZqcRZ50oAJBGdKw==", "requires": { - "@parcel/plugin": "2.6.0" + "@parcel/plugin": "2.6.2" } }, "@parcel/core": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/core/-/core-2.6.0.tgz", - "integrity": "sha512-8OOWbPuxpFydpwNyKoz6d3e3O4DmxNYmMw4DXwrPSj/jyg7oa+SDtMT0/VXEhujE0HYkQPCHt4npRajkSuf99A==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/core/-/core-2.6.2.tgz", + "integrity": "sha512-JlKS3Ux0ngmdooSBbzQLShHJdsapF9E7TGMo1hFaHRquZip/DaqzvysYrgMJlDuCoLArciq5ei7ZKzGeK9zexA==", "requires": { "@mischnic/json-sourcemap": "^0.1.0", - "@parcel/cache": "2.6.0", - "@parcel/diagnostic": "2.6.0", - "@parcel/events": "2.6.0", - "@parcel/fs": "2.6.0", - "@parcel/graph": "2.6.0", - "@parcel/hash": "2.6.0", - "@parcel/logger": "2.6.0", - "@parcel/package-manager": "2.6.0", - "@parcel/plugin": "2.6.0", + "@parcel/cache": "2.6.2", + "@parcel/diagnostic": "2.6.2", + "@parcel/events": "2.6.2", + "@parcel/fs": "2.6.2", + "@parcel/graph": "2.6.2", + "@parcel/hash": "2.6.2", + "@parcel/logger": "2.6.2", + "@parcel/package-manager": "2.6.2", + "@parcel/plugin": "2.6.2", "@parcel/source-map": "^2.0.0", - "@parcel/types": "2.6.0", - "@parcel/utils": "2.6.0", - "@parcel/workers": "2.6.0", + "@parcel/types": "2.6.2", + "@parcel/utils": "2.6.2", + "@parcel/workers": "2.6.2", "abortcontroller-polyfill": "^1.1.9", "base-x": "^3.0.8", "browserslist": "^4.6.6", @@ -2704,118 +2538,126 @@ } }, "@parcel/diagnostic": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/diagnostic/-/diagnostic-2.6.0.tgz", - "integrity": "sha512-+p8gC2FKxSI2veD7SoaNlP572v4kw+nafCQEPDtJuzYYRqywYUGncch25dkpgNApB4W4cXVkZu3ZbtIpCAmjQQ==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/diagnostic/-/diagnostic-2.6.2.tgz", + "integrity": "sha512-3ODSBkKVihENU763z1/1DhGAWFhYWRxOCOShC72KXp+GFnSgGiBsxclu8NBa/N948Rzp8lqQI8U1nLcKkh0O/w==", "requires": { "@mischnic/json-sourcemap": "^0.1.0", "nullthrows": "^1.1.1" } }, "@parcel/events": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/events/-/events-2.6.0.tgz", - "integrity": "sha512-2WaKtBs4iYwS88j4zRdyTJTgh8iuY4E32FMmjzzbheqETs6I05gWuPReGukJYxk8vc0Ir7tbzp12oAfpgo0Y+g==" + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/events/-/events-2.6.2.tgz", + "integrity": "sha512-IaCjOeA5ercdFVi1EZOmUHhGfIysmCUgc2Th9hMugSFO0I3GzRsBcAdP6XPfWm+TV6sQ/qZRfdk/drUxoAupnw==" }, "@parcel/fs": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/fs/-/fs-2.6.0.tgz", - "integrity": "sha512-6vxtx5Zy6MvDvH1EPx9JxjKGF03bR7VE1dUf4HLeX2D8YmpL5hkHJnlRCFdcH08rzOVwaJLzg1QNtblWJXQ9CA==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/fs/-/fs-2.6.2.tgz", + "integrity": "sha512-mIhqdF3tjgeoIGqW7Nc/xfM2ClID7o8livwUe5lpQEP+ZaIBiMigXs6ckv3WToCACK+3uylrSD2A/HmlhrxMqQ==", "requires": { - "@parcel/fs-search": "2.6.0", - "@parcel/types": "2.6.0", - "@parcel/utils": "2.6.0", + "@parcel/fs-search": "2.6.2", + "@parcel/types": "2.6.2", + "@parcel/utils": "2.6.2", "@parcel/watcher": "^2.0.0", - "@parcel/workers": "2.6.0" + "@parcel/workers": "2.6.2" } }, "@parcel/fs-search": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/fs-search/-/fs-search-2.6.0.tgz", - "integrity": "sha512-1nXzM3H/cA4kzLKvDBvwmNisKCdRqlgkLXh+OR1Zu28Kn4W34KuJMcHWW8cC+WIuuKqDh5oo2WPsC5y65GXBKQ==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/fs-search/-/fs-search-2.6.2.tgz", + "integrity": "sha512-4STid1zqtGnmGjHD/2TG2g/zPDiCTtE3IAS24QYH3eiUAz2uoKGgEqd2tZbZ2yI96jtCuIhC1bzVu8Hbykls7w==", "requires": { "detect-libc": "^1.0.3" } }, "@parcel/graph": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/graph/-/graph-2.6.0.tgz", - "integrity": "sha512-rxrAzWm6rwbCRPbu0Z+zwMscpG8omffODniVWPlX2G0jgQGpjKsutBQ6RMfFIcfaQ4MzL3pIQOTf8bkjQOPsbg==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/graph/-/graph-2.6.2.tgz", + "integrity": "sha512-DPH4G/RBFJWayIN2fnhDXqhUw75n7k15YsGzdDKiXuwwz4wMOjoL4cyrI6zOf1SIyh3guRmeTYJ4jjPzwrLYww==", "requires": { - "@parcel/utils": "2.6.0", + "@parcel/utils": "2.6.2", "nullthrows": "^1.1.1" } }, "@parcel/hash": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/hash/-/hash-2.6.0.tgz", - "integrity": "sha512-YugWqhLxqK80Lo++3B3Kr5UPCHOdS8iI2zJ1jkzUeH9v6WUzbwWOnmPf6lN2S5m1BrIFFJd8Jc+CbEXWi8zoJA==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/hash/-/hash-2.6.2.tgz", + "integrity": "sha512-tFB+cJU1Wqag6WyJgsmx3nx+xhmjcNZqtWh/MtK1lHNnZdDRk6bjr7SapnygBwruz+SmSt5bbdVThcpk2dRCcA==", "requires": { "detect-libc": "^1.0.3", "xxhash-wasm": "^0.4.2" } }, "@parcel/logger": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/logger/-/logger-2.6.0.tgz", - "integrity": "sha512-J1/7kPfSGBvMKSZdi0WCNuN0fIeiWxifnDGn7W/K8KhD422YwFJA8N046ps8nkDOPIXf1osnIECNp4GIR9oSYw==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/logger/-/logger-2.6.2.tgz", + "integrity": "sha512-Sz5YGCj1DbEiX0/G8Uw97LLZ0uEK+qtWcRAkHNpJpeMiSqDiRNevxXltz42EcLo+oCh4d4wyiVzwi9mNwzhS/Q==", "requires": { - "@parcel/diagnostic": "2.6.0", - "@parcel/events": "2.6.0" + "@parcel/diagnostic": "2.6.2", + "@parcel/events": "2.6.2" } }, "@parcel/markdown-ansi": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/markdown-ansi/-/markdown-ansi-2.6.0.tgz", - "integrity": "sha512-fyjkrJQQSfKTUFTTasdZ6WrAkDoQ2+DYDjj+3p+RncYyrIa9zArKx4IiRiipsvNdtMvP0/hTdK8F3BOJ3KSU/g==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/markdown-ansi/-/markdown-ansi-2.6.2.tgz", + "integrity": "sha512-N/h9J4eibhc+B+krzvPMzFUWL37GudBIZBa7XSLkcuH6MnYYfh6rrMvhIyyESwk6VkcZNVzAeZrGQqxEs0dHDQ==", "requires": { "chalk": "^4.1.0" } }, "@parcel/namer-default": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/namer-default/-/namer-default-2.6.0.tgz", - "integrity": "sha512-r8O12r7ozJBctnFxVdXbf/fK97GIdNj3hiiUNWlXEmED9sw6ZPcChaLcfot0/443g8i87JDmSTKJ8js2tuz5XA==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/namer-default/-/namer-default-2.6.2.tgz", + "integrity": "sha512-mp7bx/BQaIuohmZP0uE+gAmDBzzH0Yu8F4yCtE611lc6i0mou+nWRhzyKLNC/ieuI8DB3BFh2QQKeTxJn4W0qg==", "requires": { - "@parcel/diagnostic": "2.6.0", - "@parcel/plugin": "2.6.0", + "@parcel/diagnostic": "2.6.2", + "@parcel/plugin": "2.6.2", "nullthrows": "^1.1.1" } }, "@parcel/node-resolver-core": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/node-resolver-core/-/node-resolver-core-2.6.0.tgz", - "integrity": "sha512-AJDj5DZbB58plv0li8bdVSD+zpnkHE36Om3TYyNn1jgXXwgBM64Er/9p8yQn356jBqTQMh7zlJqvbdIyOiMeMg==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/node-resolver-core/-/node-resolver-core-2.6.2.tgz", + "integrity": "sha512-4b2L5QRYlTybvv3+TIRtwg4PPJXy+cRShCBa8eu1K0Fj297Afe8MOZrcVV+RIr2KPMIRXcIJoqDmOhyci/DynA==", "requires": { - "@parcel/diagnostic": "2.6.0", - "@parcel/utils": "2.6.0", - "nullthrows": "^1.1.1" + "@parcel/diagnostic": "2.6.2", + "@parcel/utils": "2.6.2", + "nullthrows": "^1.1.1", + "semver": "^5.7.1" + }, + "dependencies": { + "semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==" + } } }, "@parcel/optimizer-terser": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/optimizer-terser/-/optimizer-terser-2.6.0.tgz", - "integrity": "sha512-oezRt6Lz/QqcVDXyMfFjzQc7n0ThJowLJ4Lyhu8rMh0ZJYzc4UCFCw/19d4nRnzE+Qg0vj3mQCpdkA9/64E44g==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/optimizer-terser/-/optimizer-terser-2.6.2.tgz", + "integrity": "sha512-ZSEVQ3G3zOiVPeHvH+BrHegZybrQj9kWQAaAA92leSqbvf6UaX4xqXbGRg2OttNFtbGYBzIl28Zm4t2SLeUIuA==", "requires": { - "@parcel/diagnostic": "2.6.0", - "@parcel/plugin": "2.6.0", + "@parcel/diagnostic": "2.6.2", + "@parcel/plugin": "2.6.2", "@parcel/source-map": "^2.0.0", - "@parcel/utils": "2.6.0", + "@parcel/utils": "2.6.2", "nullthrows": "^1.1.1", "terser": "^5.2.0" } }, "@parcel/package-manager": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/package-manager/-/package-manager-2.6.0.tgz", - "integrity": "sha512-AqFfdkbOw51q/3ia2mIsFTmrpYEyUb3k+2uYC5GsLMz3go6OGn7/Crz0lZLSclv5EtwpRg3TWr9yL7RekVN/Uw==", - "requires": { - "@parcel/diagnostic": "2.6.0", - "@parcel/fs": "2.6.0", - "@parcel/logger": "2.6.0", - "@parcel/types": "2.6.0", - "@parcel/utils": "2.6.0", - "@parcel/workers": "2.6.0", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/package-manager/-/package-manager-2.6.2.tgz", + "integrity": "sha512-xGMqTgnwTE3rgzYwUZMKxR8fzmP5iSYz/gj2H8FR3pEmwh/8xCMtNjTSth+hPVGuqgRZ6JxwpfdY/fXdZ61ViQ==", + "requires": { + "@parcel/diagnostic": "2.6.2", + "@parcel/fs": "2.6.2", + "@parcel/logger": "2.6.2", + "@parcel/types": "2.6.2", + "@parcel/utils": "2.6.2", + "@parcel/workers": "2.6.2", "semver": "^5.7.1" }, "dependencies": { @@ -2827,15 +2669,15 @@ } }, "@parcel/packager-js": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/packager-js/-/packager-js-2.6.0.tgz", - "integrity": "sha512-Uz3pqIFchFfKszWnNGDgIwM1uwHHJp7Dts6VzS9lf/2RbRgZT0fmce+NPgnVO5MMKBHzdvm32ShT6gFAABF5Vw==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/packager-js/-/packager-js-2.6.2.tgz", + "integrity": "sha512-fm5rKWtaExR0W+UEKWivXNPysRFxuBCdskdxDByb1J1JeGMvp7dJElbi8oXDAQM4MnM5EyG7cg47SlMZNTLm4A==", "requires": { - "@parcel/diagnostic": "2.6.0", - "@parcel/hash": "2.6.0", - "@parcel/plugin": "2.6.0", + "@parcel/diagnostic": "2.6.2", + "@parcel/hash": "2.6.2", + "@parcel/plugin": "2.6.2", "@parcel/source-map": "^2.0.0", - "@parcel/utils": "2.6.0", + "@parcel/utils": "2.6.2", "globals": "^13.2.0", "nullthrows": "^1.1.1" }, @@ -2851,76 +2693,76 @@ } }, "@parcel/packager-raw": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/packager-raw/-/packager-raw-2.6.0.tgz", - "integrity": "sha512-ktT6Qc/GgCq8H1+6y+AXufVzQj1s6KRoKf83qswCD0iY3MwCbJoEfc3IsB4K64FpHIL5Eu0z54IId+INvGbOYA==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/packager-raw/-/packager-raw-2.6.2.tgz", + "integrity": "sha512-Rl3ZkMtMjb+LEvRowijDD8fibUAS6rWK0/vZQMk9cDNYCP2gCpZayLk0HZIGxneeTbosf/0sbngHq4VeRQOnQA==", "requires": { - "@parcel/plugin": "2.6.0" + "@parcel/plugin": "2.6.2" } }, "@parcel/plugin": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/plugin/-/plugin-2.6.0.tgz", - "integrity": "sha512-LzOaiK8R6eFEoov1cb3/W+o0XvXdI/VbDhMDl0L0II+/56M0UeayYtFP5QGTDn/fZqVlYfzPCtt3EMwdG7/dow==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/plugin/-/plugin-2.6.2.tgz", + "integrity": "sha512-wbbWsM23Pr+8xtLSvf+UopXdVYlpKCCx6PuuZaZcKo+9IcDCWoGXD4M8Kkz14qBmkFn5uM00mULUqmVdSibB2w==", "requires": { - "@parcel/types": "2.6.0" + "@parcel/types": "2.6.2" } }, "@parcel/reporter-dev-server": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/reporter-dev-server/-/reporter-dev-server-2.6.0.tgz", - "integrity": "sha512-VvygsCA+uzWyijIV8zqU1gFyhAWknuaY4KIWhV4kCT8afRJwsLSwt/tpdaKDPuPU45h3tTsUdXH1wjaIk+dGeQ==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/reporter-dev-server/-/reporter-dev-server-2.6.2.tgz", + "integrity": "sha512-5QtL3ETMFL161jehlIK6rjBM+Pqk5cMhr60s9yLYqE1GY4M4gMj+Act+FXViyM6gmMA38cPxDvUsxTKBYXpFCw==", "requires": { - "@parcel/plugin": "2.6.0", - "@parcel/utils": "2.6.0" + "@parcel/plugin": "2.6.2", + "@parcel/utils": "2.6.2" } }, "@parcel/resolver-default": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/resolver-default/-/resolver-default-2.6.0.tgz", - "integrity": "sha512-ATk9wXvy5GOHAqyHbnCnU11fUPTtf8dLjpgVqL5XylwugZnyBXbynoTWX4w8h6mffkVtdfmzTJx/o4Lresz9sA==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/resolver-default/-/resolver-default-2.6.2.tgz", + "integrity": "sha512-Lo5sWb5QkjWvdBr+TdmAF6Mszb/sMldBBatc1osQTkHXCy679VMH+lfyiWxHbwK+F1pmdMeBJpYcMxvrgT8EsA==", "requires": { - "@parcel/node-resolver-core": "2.6.0", - "@parcel/plugin": "2.6.0" + "@parcel/node-resolver-core": "2.6.2", + "@parcel/plugin": "2.6.2" } }, "@parcel/runtime-browser-hmr": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/runtime-browser-hmr/-/runtime-browser-hmr-2.6.0.tgz", - "integrity": "sha512-90xvv/10cFML5dAhClBEJZ/ExiBQVPqQsZcvRmVZmc5mpZVJMKattWCQrd7pAf7FDYl4JAcvsK3DTwvRT/oLNA==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/runtime-browser-hmr/-/runtime-browser-hmr-2.6.2.tgz", + "integrity": "sha512-M4X0+7dyfdI6smwGUGjGXb8Ns3HX7ZrTemyq4Gc7zp7P/5gWjR8i9eISz46sXmF9bf01a/4dKZpoCC9un1pH1g==", "requires": { - "@parcel/plugin": "2.6.0", - "@parcel/utils": "2.6.0" + "@parcel/plugin": "2.6.2", + "@parcel/utils": "2.6.2" } }, "@parcel/runtime-js": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/runtime-js/-/runtime-js-2.6.0.tgz", - "integrity": "sha512-R4tJAIT/SX7VBQ+f7WmeekREQzzLsmgP1j486uKhQNyYrpvsN0HnRbg5aqvZjEjkEmSeJR0mOlWtMK5/m+0yTA==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/runtime-js/-/runtime-js-2.6.2.tgz", + "integrity": "sha512-0S3JFwgvs6FmEx2dHta9R0Sfu8vCnFAm4i7Y4efGHtAcTrF2CHjyiz4/hG+RQGJ70eoWW463Q+8qt6EKbkaOBQ==", "requires": { - "@parcel/plugin": "2.6.0", - "@parcel/utils": "2.6.0", + "@parcel/plugin": "2.6.2", + "@parcel/utils": "2.6.2", "nullthrows": "^1.1.1" } }, "@parcel/runtime-react-refresh": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/runtime-react-refresh/-/runtime-react-refresh-2.6.0.tgz", - "integrity": "sha512-2sRd13gc2EbMV/O5n2NPVGGhKBasb1fDTXGEY8y7qi9xDKc+ewok/D83T+w243FhCPS9Pf3ur5GkbPlrJGcenQ==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/runtime-react-refresh/-/runtime-react-refresh-2.6.2.tgz", + "integrity": "sha512-DJTm5D/tUAGZm0o3ndDOPbKwdYrobuvm4jvkPq31LdEUqVvyuzBAMlqQFHc1yJEJDRRWOIQwQP9Y0NQbJmXFfg==", "requires": { - "@parcel/plugin": "2.6.0", - "@parcel/utils": "2.6.0", + "@parcel/plugin": "2.6.2", + "@parcel/utils": "2.6.2", "react-error-overlay": "6.0.9", "react-refresh": "^0.9.0" } }, "@parcel/runtime-service-worker": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/runtime-service-worker/-/runtime-service-worker-2.6.0.tgz", - "integrity": "sha512-nVlknGw5J5Bkd1Wr1TbyWHhUd9CmVVebaRg/lpfVKYhAuE/2r+3N0+J8qbEIgtTRcHaSV7wTNpg4weSWq46VeA==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/runtime-service-worker/-/runtime-service-worker-2.6.2.tgz", + "integrity": "sha512-9jV+RwVEeDUI5+eLy8j1tapTNoHHGOY2+JUprcObQkQ8fux7KltQBJWFhpkUdGtz5LTCNXtj9tdycFtS5lmSzg==", "requires": { - "@parcel/plugin": "2.6.0", - "@parcel/utils": "2.6.0", + "@parcel/plugin": "2.6.2", + "@parcel/utils": "2.6.2", "nullthrows": "^1.1.1" } }, @@ -2933,16 +2775,16 @@ } }, "@parcel/transformer-js": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/transformer-js/-/transformer-js-2.6.0.tgz", - "integrity": "sha512-4v2r3EVdMKowBziVBW9HZqvAv88HaeiezkWyMX4wAfplo9jBtWEp99KEQINzSEdbXROR81M9oJjlGF5+yoVr/w==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/transformer-js/-/transformer-js-2.6.2.tgz", + "integrity": "sha512-uhXAMTjE/Q61amflV8qVpb73mj+mIdXIMH0cSks1/gDIAxcgIvWvrE14P4TvY6zJ1q1iRJRIRUN6cFSXqjjLSA==", "requires": { - "@parcel/diagnostic": "2.6.0", - "@parcel/plugin": "2.6.0", + "@parcel/diagnostic": "2.6.2", + "@parcel/plugin": "2.6.2", "@parcel/source-map": "^2.0.0", - "@parcel/utils": "2.6.0", - "@parcel/workers": "2.6.0", - "@swc/helpers": "^0.3.15", + "@parcel/utils": "2.6.2", + "@parcel/workers": "2.6.2", + "@swc/helpers": "^0.4.2", "browserslist": "^4.6.6", "detect-libc": "^1.0.3", "nullthrows": "^1.1.1", @@ -2958,56 +2800,56 @@ } }, "@parcel/transformer-json": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/transformer-json/-/transformer-json-2.6.0.tgz", - "integrity": "sha512-zb+TQAdHWdXijKcFhLe+5KN1O0IzXwW1gJhPr8DJEA3qhPaCsncsw5RCVjQlP3a7NXr1mMm1eMtO6bhIMqbXeA==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/transformer-json/-/transformer-json-2.6.2.tgz", + "integrity": "sha512-QGcIIvbPF/u10ihYvQhxXqb2QMXWSzcBxJrOSIXIl74TUGrWX05D5LmjDA/rzm/n/kvRnBkFNP60R/smYb8x+Q==", "requires": { - "@parcel/plugin": "2.6.0", + "@parcel/plugin": "2.6.2", "json5": "^2.2.0" } }, "@parcel/transformer-raw": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/transformer-raw/-/transformer-raw-2.6.0.tgz", - "integrity": "sha512-QDirlWCS/qy0DQ3WvDIAnFP52n1TJW/uWH+4PGMNnX4/M3/2UchY8xp9CN0tx4NQ4g09S8o3gLlHvNxQqZxFrQ==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/transformer-raw/-/transformer-raw-2.6.2.tgz", + "integrity": "sha512-CsofYq5g9Zj/FNmhya2R7Xp3WHlzz34mEdN69bds3azRYHCrl/TS33xXcp/9J+74SEIY1Ufh552o1cM3fnSrDQ==", "requires": { - "@parcel/plugin": "2.6.0" + "@parcel/plugin": "2.6.2" } }, "@parcel/transformer-react-refresh-wrap": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/transformer-react-refresh-wrap/-/transformer-react-refresh-wrap-2.6.0.tgz", - "integrity": "sha512-G34orfvLDUTumuerqNmA8T8NUHk+R0jwUjbVPO7gpB6VCVQ5ocTABdE9vN9Uu/cUsHij40TUFwqK4R9TFEBIEQ==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/transformer-react-refresh-wrap/-/transformer-react-refresh-wrap-2.6.2.tgz", + "integrity": "sha512-7EE68ebISz+oAHm64ZJbz6uJQT4aOoB8QiK3PvuY6+RsP7aK4/FEHGM1afW49KrZbP4lWjloEkcJm/88DfBiGw==", "requires": { - "@parcel/plugin": "2.6.0", - "@parcel/utils": "2.6.0", + "@parcel/plugin": "2.6.2", + "@parcel/utils": "2.6.2", "react-refresh": "^0.9.0" } }, "@parcel/types": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/types/-/types-2.6.0.tgz", - "integrity": "sha512-lAMYvOBfNEJMsPJ+plbB50305o0TwNrY1xX5RRIWBqwOa6bYmbW1ZljUk1tQvnkpIE4eAHQwnPR5Z2XWg18wGQ==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/types/-/types-2.6.2.tgz", + "integrity": "sha512-MV8BFpCIs2jMUvK2RHqzkoiuOQ//JIbrD1zocA2YRW3zuPL/iABvbAABJoXpoPCKikVWOoCWASgBfWQo26VvJQ==", "requires": { - "@parcel/cache": "2.6.0", - "@parcel/diagnostic": "2.6.0", - "@parcel/fs": "2.6.0", - "@parcel/package-manager": "2.6.0", + "@parcel/cache": "2.6.2", + "@parcel/diagnostic": "2.6.2", + "@parcel/fs": "2.6.2", + "@parcel/package-manager": "2.6.2", "@parcel/source-map": "^2.0.0", - "@parcel/workers": "2.6.0", + "@parcel/workers": "2.6.2", "utility-types": "^3.10.0" } }, "@parcel/utils": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/utils/-/utils-2.6.0.tgz", - "integrity": "sha512-ElXz+QHtT1JQIucbQJBk7SzAGoOlBp4yodEQVvTKS7GA+hEGrSP/cmibl6qm29Rjtd0zgQsdd+2XmP3xvP2gQQ==", - "requires": { - "@parcel/codeframe": "2.6.0", - "@parcel/diagnostic": "2.6.0", - "@parcel/hash": "2.6.0", - "@parcel/logger": "2.6.0", - "@parcel/markdown-ansi": "2.6.0", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/utils/-/utils-2.6.2.tgz", + "integrity": "sha512-Ug7hpRxjgbY5AopW55nY7MmGMVmwmN+ihfCmxJkBUoESTG/3iq8uME7GjyOgW5DkQc2K7q62i8y8N0wCJT1u4Q==", + "requires": { + "@parcel/codeframe": "2.6.2", + "@parcel/diagnostic": "2.6.2", + "@parcel/hash": "2.6.2", + "@parcel/logger": "2.6.2", + "@parcel/markdown-ansi": "2.6.2", "@parcel/source-map": "^2.0.0", "chalk": "^4.1.0" } @@ -3022,14 +2864,14 @@ } }, "@parcel/workers": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/workers/-/workers-2.6.0.tgz", - "integrity": "sha512-3tcI2LF5fd/WZtSnSjyWdDE+G+FitdNrRgSObzSp+axHKMAM23sO0z7KY8s2SYCF40msdYbFUW8eI6JlYNJoWQ==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/workers/-/workers-2.6.2.tgz", + "integrity": "sha512-wBgUjJQm+lDd12fPRUmk09+ujTA9DgwPdqylSFK0OtI/yT6A+2kArUqjp8IwWo2tCJXoMzXBne2XQIWKqMiN4Q==", "requires": { - "@parcel/diagnostic": "2.6.0", - "@parcel/logger": "2.6.0", - "@parcel/types": "2.6.0", - "@parcel/utils": "2.6.0", + "@parcel/diagnostic": "2.6.2", + "@parcel/logger": "2.6.2", + "@parcel/types": "2.6.2", + "@parcel/utils": "2.6.2", "chrome-trace-event": "^1.0.2", "nullthrows": "^1.1.1" } @@ -3115,9 +2957,9 @@ } }, "@swc/helpers": { - "version": "0.3.17", - "resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.3.17.tgz", - "integrity": "sha512-tb7Iu+oZ+zWJZ3HJqwx8oNwSDIU440hmVMDPhpACWQWnrZHK99Bxs70gT1L2dnr5Hg50ZRWEFkQCAnOVVV0z1Q==", + "version": "0.4.3", + "resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.4.3.tgz", + "integrity": "sha512-6JrF+fdUK2zbGpJIlN7G3v966PQjyx/dPt1T9km2wj+EUBqgrxCk3uX4Kct16MIm9gGxfKRcfax2hVf5jvlTzA==", "requires": { "tslib": "^2.4.0" } @@ -4078,12 +3920,36 @@ } }, "babel-plugin-remove-graphql-queries": { - "version": "4.18.1", - "resolved": "https://registry.npmjs.org/babel-plugin-remove-graphql-queries/-/babel-plugin-remove-graphql-queries-4.18.1.tgz", - "integrity": "sha512-2I7qsm3pnyvrS6/Q9YuHK1SpfQLmrgYH/AjpnWpnLHee6SiVb5Te89iphhpBdycpBRVGWh04ram9+z/1rMaRYQ==", + "version": "4.19.0", + "resolved": "https://registry.npmjs.org/babel-plugin-remove-graphql-queries/-/babel-plugin-remove-graphql-queries-4.19.0.tgz", + "integrity": "sha512-VbxC7aZxdqQA0YiAcTD/djIW+6PP/JVODlRmCiqDyTbtI0zhE/Z6je1maCmC6J2LLBsKxhWT3UYTjRfLofK7sQ==", "requires": { "@babel/runtime": "^7.15.4", - "gatsby-core-utils": "^3.18.1" + "gatsby-core-utils": "^3.19.0" + }, + "dependencies": { + "gatsby-core-utils": { + "version": "3.19.0", + "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.19.0.tgz", + "integrity": "sha512-cjXs9DsXkPZt+UdiLHxtq+rGMGVrcnM0KwkawlruvPchI7lqGNv9CScqlvYPxx1dBhu3zSZS26EBALMlFhyOJA==", + "requires": { + "@babel/runtime": "^7.15.4", + "ci-info": "2.0.0", + "configstore": "^5.0.1", + "fastq": "^1.13.0", + "file-type": "^16.5.3", + "fs-extra": "^10.1.0", + "got": "^11.8.5", + "import-from": "^4.0.0", + "lmdb": "2.5.3", + "lock": "^1.1.0", + "node-object-hash": "^2.3.10", + "proper-lockfile": "^4.1.2", + "resolve-from": "^5.0.0", + "tmp": "^0.2.1", + "xdg-basedir": "^4.0.0" + } + } } }, "babel-plugin-syntax-object-rest-spread": { @@ -4145,9 +4011,9 @@ } }, "babel-preset-gatsby": { - "version": "2.18.1", - "resolved": "https://registry.npmjs.org/babel-preset-gatsby/-/babel-preset-gatsby-2.18.1.tgz", - "integrity": "sha512-oaVV6ULceMjTQKjCA06qvgfLwBNZFJxpacwNZYOJpLygmj+qYiNKDGhJ8vTw/KAIUeDPZAbPMP5P+3wMEPIWYQ==", + "version": "2.19.0", + "resolved": "https://registry.npmjs.org/babel-preset-gatsby/-/babel-preset-gatsby-2.19.0.tgz", + "integrity": "sha512-wjh4lUN1MffsnqHAfRoeOtJFGEObUPR4oxo7fyfx9pZUyqBgXvKXMEoLnwNht5HV5BzT5Xo9dkwNJl0/CNhXHw==", "requires": { "@babel/plugin-proposal-class-properties": "^7.14.0", "@babel/plugin-proposal-nullish-coalescing-operator": "^7.14.5", @@ -4162,8 +4028,32 @@ "babel-plugin-dynamic-import-node": "^2.3.3", "babel-plugin-macros": "^3.1.0", "babel-plugin-transform-react-remove-prop-types": "^0.4.24", - "gatsby-core-utils": "^3.18.1", - "gatsby-legacy-polyfills": "^2.18.0" + "gatsby-core-utils": "^3.19.0", + "gatsby-legacy-polyfills": "^2.19.0" + }, + "dependencies": { + "gatsby-core-utils": { + "version": "3.19.0", + "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.19.0.tgz", + "integrity": "sha512-cjXs9DsXkPZt+UdiLHxtq+rGMGVrcnM0KwkawlruvPchI7lqGNv9CScqlvYPxx1dBhu3zSZS26EBALMlFhyOJA==", + "requires": { + "@babel/runtime": "^7.15.4", + "ci-info": "2.0.0", + "configstore": "^5.0.1", + "fastq": "^1.13.0", + "file-type": "^16.5.3", + "fs-extra": "^10.1.0", + "got": "^11.8.5", + "import-from": "^4.0.0", + "lmdb": "2.5.3", + "lock": "^1.1.0", + "node-object-hash": "^2.3.10", + "proper-lockfile": "^4.1.2", + "resolve-from": "^5.0.0", + "tmp": "^0.2.1", + "xdg-basedir": "^4.0.0" + } + } } }, "babel-runtime": { @@ -4287,6 +4177,11 @@ "unpipe": "1.0.0" }, "dependencies": { + "bytes": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", + "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==" + }, "debug": { "version": "2.6.9", "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", @@ -4443,9 +4338,9 @@ } }, "bytes": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", - "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==" + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz", + "integrity": "sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==" }, "cache-manager": { "version": "2.11.1", @@ -4532,9 +4427,9 @@ } }, "caniuse-lite": { - "version": "1.0.30001366", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001366.tgz", - "integrity": "sha512-yy7XLWCubDobokgzudpkKux8e0UOOnLHE6mlNJBzT3lZJz6s5atSEzjoL+fsCPkI0G8MP5uVdDx1ur/fXEWkZA==" + "version": "1.0.30001367", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001367.tgz", + "integrity": "sha512-XDgbeOHfifWV3GEES2B8rtsrADx4Jf+juKX2SICJcaUhjYBO3bR96kvEIHa15VU6ohtOhBZuPGGYGbXMRn0NCw==" }, "capital-case": { "version": "1.0.4", @@ -5052,11 +4947,6 @@ "vary": "~1.1.2" }, "dependencies": { - "bytes": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz", - "integrity": "sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==" - }, "debug": { "version": "2.6.9", "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", @@ -5189,16 +5079,16 @@ "integrity": "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==" }, "core-js": { - "version": "3.23.4", - "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.23.4.tgz", - "integrity": "sha512-vjsKqRc1RyAJC3Ye2kYqgfdThb3zYnx9CrqoCcjMOENMtQPC7ZViBvlDxwYU/2z2NI/IPuiXw5mT4hWhddqjzQ==" + "version": "3.23.5", + "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.23.5.tgz", + "integrity": "sha512-7Vh11tujtAZy82da4duVreQysIoO2EvVrur7y6IzZkH1IHPSekuDi8Vuw1+YKjkbfWLRD7Nc9ICQ/sIUDutcyg==" }, "core-js-compat": { - "version": "3.23.4", - "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.23.4.tgz", - "integrity": "sha512-RkSRPe+JYEoflcsuxJWaiMPhnZoFS51FcIxm53k4KzhISCBTmaGlto9dTIrYuk0hnJc3G6pKufAKepHnBq6B6Q==", + "version": "3.23.5", + "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.23.5.tgz", + "integrity": "sha512-fHYozIFIxd+91IIbXJgWd/igXIc8Mf9is0fusswjnGIWVG96y2cwyUdlCkGOw6rMLHKAxg7xtCIVaHsyOUnJIg==", "requires": { - "browserslist": "^4.21.1", + "browserslist": "^4.21.2", "semver": "7.0.0" }, "dependencies": { @@ -5210,9 +5100,9 @@ } }, "core-js-pure": { - "version": "3.23.4", - "resolved": "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.23.4.tgz", - "integrity": "sha512-lizxkcgj3XDmi7TUBFe+bQ1vNpD5E4t76BrBWI3HdUxdw/Mq1VF4CkiHzIKyieECKtcODK2asJttoofEeUKICQ==" + "version": "3.23.5", + "resolved": "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.23.5.tgz", + "integrity": "sha512-8t78LdpKSuCq4pJYCYk8hl7XEkAX+BP16yRIwL3AanTksxuEf7CM83vRyctmiEL8NDZ3jpUcv56fk9/zG3aIuw==" }, "core-util-is": { "version": "1.0.3", @@ -5249,9 +5139,9 @@ } }, "create-gatsby": { - "version": "2.18.1", - "resolved": "https://registry.npmjs.org/create-gatsby/-/create-gatsby-2.18.1.tgz", - "integrity": "sha512-1AZioXKi4COhESSHfsb/6tpkBvyuuXHwAmMAGrcUQpbynsQxYdqonnRqnFhp80bA2cIKxgjtHzzLhyRouDonbQ==", + "version": "2.19.0", + "resolved": "https://registry.npmjs.org/create-gatsby/-/create-gatsby-2.19.0.tgz", + "integrity": "sha512-Esl/qCau3rjpnRkmo31BYOE6l72SJ/5Fq8bF6gmXOf/lnbOh51so8hgRcClfizr1nCihqQQihZn//o4DIgZKeA==", "requires": { "@babel/runtime": "^7.15.4" } @@ -5823,9 +5713,9 @@ "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==" }, "electron-to-chromium": { - "version": "1.4.188", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.188.tgz", - "integrity": "sha512-Zpa1+E+BVmD/orkyz1Z2dAT1XNUuVAHB3GrogfyY66dXN0ZWSsygI8+u6QTDai1ZayLcATDJpcv2Z2AZjEcr1A==" + "version": "1.4.194", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.194.tgz", + "integrity": "sha512-ola5UH0xAP1oYY0FFUsPvwtucEzCQHucXnT7PQ1zjHJMccZhCDktEugI++JUR3YuIs7Ff7afz+OVEhVAIMhLAQ==" }, "emoji-regex": { "version": "8.0.0", @@ -7204,9 +7094,9 @@ "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==" }, "gatsby": { - "version": "4.18.2", - "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-4.18.2.tgz", - "integrity": "sha512-ZWdo0TXsSRmwlmOeeuoWwXKQNteHm9VxJWF9Ud+c33r7ZXQgTA5WtRYjiBpjZuNAUwsiONNAe+wKK5jVY8B4LQ==", + "version": "4.19.0", + "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-4.19.0.tgz", + "integrity": "sha512-Bhga6PbDRSL3J7yIcVAWwN76cK0OeFWE4f5ggh4qEjnsL20kxW+LPwAexpZ5dVxbE1gsl1k/VDSX66Wj3vGH3A==", "requires": { "@babel/code-frame": "^7.14.0", "@babel/core": "^7.15.5", @@ -7228,7 +7118,7 @@ "@graphql-tools/load": "^7.5.10", "@jridgewell/trace-mapping": "^0.3.13", "@nodelib/fs.walk": "^1.2.8", - "@parcel/core": "2.6.0", + "@parcel/core": "2.6.2", "@pmmmwh/react-refresh-webpack-plugin": "^0.4.3", "@types/http-proxy": "^1.17.7", "@typescript-eslint/eslint-plugin": "^4.33.0", @@ -7242,11 +7132,10 @@ "babel-plugin-add-module-exports": "^1.0.4", "babel-plugin-dynamic-import-node": "^2.3.3", "babel-plugin-lodash": "^3.3.4", - "babel-plugin-remove-graphql-queries": "^4.18.1", - "babel-preset-gatsby": "^2.18.1", + "babel-plugin-remove-graphql-queries": "^4.19.0", + "babel-preset-gatsby": "^2.19.0", "better-opn": "^2.1.1", "bluebird": "^3.7.2", - "body-parser": "^1.19.0", "browserslist": "^4.17.5", "cache-manager": "^2.11.1", "chalk": "^4.1.2", @@ -7272,7 +7161,7 @@ "eslint-plugin-graphql": "^4.0.0", "eslint-plugin-import": "^2.26.0", "eslint-plugin-jsx-a11y": "^6.5.1", - "eslint-plugin-react": "^7.30.0", + "eslint-plugin-react": "^7.30.1", "eslint-plugin-react-hooks": "^4.5.0", "eslint-webpack-plugin": "^2.6.0", "event-source-polyfill": "1.0.25", @@ -7286,21 +7175,21 @@ "find-cache-dir": "^3.3.2", "fs-exists-cached": "1.0.0", "fs-extra": "^10.1.0", - "gatsby-cli": "^4.18.1", - "gatsby-core-utils": "^3.18.1", - "gatsby-graphiql-explorer": "^2.18.0", - "gatsby-legacy-polyfills": "^2.18.0", - "gatsby-link": "^4.18.1", - "gatsby-page-utils": "^2.18.1", - "gatsby-parcel-config": "^0.9.2", - "gatsby-plugin-page-creator": "^4.18.1", - "gatsby-plugin-typescript": "^4.18.1", - "gatsby-plugin-utils": "^3.12.1", - "gatsby-react-router-scroll": "^5.18.0", - "gatsby-script": "^1.3.0", - "gatsby-sharp": "^0.12.0", - "gatsby-telemetry": "^3.18.1", - "gatsby-worker": "^1.18.0", + "gatsby-cli": "^4.19.0", + "gatsby-core-utils": "^3.19.0", + "gatsby-graphiql-explorer": "^2.19.0", + "gatsby-legacy-polyfills": "^2.19.0", + "gatsby-link": "^4.19.0", + "gatsby-page-utils": "^2.19.0", + "gatsby-parcel-config": "^0.10.0", + "gatsby-plugin-page-creator": "^4.19.0", + "gatsby-plugin-typescript": "^4.19.0", + "gatsby-plugin-utils": "^3.13.0", + "gatsby-react-router-scroll": "^5.19.0", + "gatsby-script": "^1.4.0", + "gatsby-sharp": "^0.13.0", + "gatsby-telemetry": "^3.19.0", + "gatsby-worker": "^1.19.0", "glob": "^7.2.3", "globby": "^11.1.0", "got": "^11.8.2", @@ -7308,7 +7197,6 @@ "graphql-compose": "^9.0.7", "graphql-playground-middleware-express": "^1.7.22", "hasha": "^5.2.2", - "http-proxy": "^1.18.1", "invariant": "^2.2.4", "is-relative": "^1.0.0", "is-relative-url": "^3.0.0", @@ -7327,6 +7215,7 @@ "moment": "^2.29.1", "multer": "^1.4.3", "node-fetch": "^2.6.6", + "node-html-parser": "^5.3.3", "normalize-path": "^3.0.0", "null-loader": "^4.0.1", "opentracing": "^0.14.5", @@ -7373,9 +7262,9 @@ }, "dependencies": { "gatsby-cli": { - "version": "4.18.1", - "resolved": "https://registry.npmjs.org/gatsby-cli/-/gatsby-cli-4.18.1.tgz", - "integrity": "sha512-ceYqm6i39rHY343zUCflwXnGtd25QGccvToTWL8W42/EGToDW8bubLfeBSRCfjXm946yf1gkS/1UAsAgAphYDA==", + "version": "4.19.0", + "resolved": "https://registry.npmjs.org/gatsby-cli/-/gatsby-cli-4.19.0.tgz", + "integrity": "sha512-i1B9ktvOECiOZgyKqf0xdYx9bmrIUeZeiK+EOIvIpvFfFUwBmZR6xSHRHYUGX2JVpQiy4QEG25KcPWgF9mYJ3w==", "requires": { "@babel/code-frame": "^7.14.0", "@babel/core": "^7.15.5", @@ -7394,13 +7283,13 @@ "common-tags": "^1.8.2", "configstore": "^5.0.1", "convert-hrtime": "^3.0.0", - "create-gatsby": "^2.18.1", + "create-gatsby": "^2.19.0", "envinfo": "^7.8.1", "execa": "^5.1.1", "fs-exists-cached": "^1.0.0", "fs-extra": "^10.1.0", - "gatsby-core-utils": "^3.18.1", - "gatsby-telemetry": "^3.18.1", + "gatsby-core-utils": "^3.19.0", + "gatsby-telemetry": "^3.19.0", "hosted-git-info": "^3.0.8", "is-valid-path": "^0.1.1", "joi": "^17.4.2", @@ -7422,6 +7311,62 @@ "yoga-layout-prebuilt": "^1.10.0", "yurnalist": "^2.1.0" } + }, + "gatsby-core-utils": { + "version": "3.19.0", + "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.19.0.tgz", + "integrity": "sha512-cjXs9DsXkPZt+UdiLHxtq+rGMGVrcnM0KwkawlruvPchI7lqGNv9CScqlvYPxx1dBhu3zSZS26EBALMlFhyOJA==", + "requires": { + "@babel/runtime": "^7.15.4", + "ci-info": "2.0.0", + "configstore": "^5.0.1", + "fastq": "^1.13.0", + "file-type": "^16.5.3", + "fs-extra": "^10.1.0", + "got": "^11.8.5", + "import-from": "^4.0.0", + "lmdb": "2.5.3", + "lock": "^1.1.0", + "node-object-hash": "^2.3.10", + "proper-lockfile": "^4.1.2", + "resolve-from": "^5.0.0", + "tmp": "^0.2.1", + "xdg-basedir": "^4.0.0" + } + }, + "gatsby-plugin-utils": { + "version": "3.13.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-utils/-/gatsby-plugin-utils-3.13.0.tgz", + "integrity": "sha512-iFFWswld/Nu8IrSCikZXC4/cud9txv3ikjkQiGLccJStS9VH2rSY4XEMNRqsKN9Spe3pFBOr/97yYUaPhZaQWg==", + "requires": { + "@babel/runtime": "^7.15.4", + "@gatsbyjs/potrace": "^2.2.0", + "fs-extra": "^10.1.0", + "gatsby-core-utils": "^3.19.0", + "gatsby-sharp": "^0.13.0", + "graphql-compose": "^9.0.7", + "import-from": "^4.0.0", + "joi": "^17.4.2", + "mime": "^3.0.0", + "mini-svg-data-uri": "^1.4.4", + "svgo": "^2.8.0" + }, + "dependencies": { + "mime": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-3.0.0.tgz", + "integrity": "sha512-jSCU7/VB1loIWBZe14aEYHU/+1UMEHoaO7qxCOVJOw9GgH72VAWppxNcjU+x9a2k3GSIBXNKxXQFqRvvZ7vr3A==" + } + } + }, + "gatsby-sharp": { + "version": "0.13.0", + "resolved": "https://registry.npmjs.org/gatsby-sharp/-/gatsby-sharp-0.13.0.tgz", + "integrity": "sha512-dGuIuWP3rC7hXl/CgkHEY4WQEW+B9Rsg8uo6u+OumuLnLBxD4vTusEIGctVKzlyIxpENEQylQ7w1JKHX9fOy9g==", + "requires": { + "@types/sharp": "^0.30.0", + "sharp": "^0.30.3" + } } } }, @@ -7448,17 +7393,17 @@ } }, "gatsby-graphiql-explorer": { - "version": "2.18.0", - "resolved": "https://registry.npmjs.org/gatsby-graphiql-explorer/-/gatsby-graphiql-explorer-2.18.0.tgz", - "integrity": "sha512-mmY+kHc+axpDO9lfjbCEf/0oEIHTcZmpe2PtQAzkhnQHyti3xd9IIafq/1W3QKIJo5c7f40+tR3sFTERqaBeIA==", + "version": "2.19.0", + "resolved": "https://registry.npmjs.org/gatsby-graphiql-explorer/-/gatsby-graphiql-explorer-2.19.0.tgz", + "integrity": "sha512-wOD1LuWaSbCtZ0E9C2HxMBQj67k8kPnlLMr/VfKHgBh0FfvIavIq5vOq5K9zRIkAzSzYVODGEz2NVdbfVK9Bew==", "requires": { "@babel/runtime": "^7.15.4" } }, "gatsby-legacy-polyfills": { - "version": "2.18.0", - "resolved": "https://registry.npmjs.org/gatsby-legacy-polyfills/-/gatsby-legacy-polyfills-2.18.0.tgz", - "integrity": "sha512-wPnsRUnnab10wyt5VPkIhpJC1k8bVrpn0Sfat1L3JskYwkVIEvquqTmHWkpGMB8SLbXQiJEGCs2TcIrx9riL+w==", + "version": "2.19.0", + "resolved": "https://registry.npmjs.org/gatsby-legacy-polyfills/-/gatsby-legacy-polyfills-2.19.0.tgz", + "integrity": "sha512-WuyN01eiRxhanfnj6UgsCxU+Pxs9B8rtgxbrwXhlEKX+QdAp4XlywDQ8QXvv8i028QDF9h+VnvGlfcZY4tgQrQ==", "requires": { "@babel/runtime": "^7.15.4", "core-js-compat": "3.9.0" @@ -7481,87 +7426,190 @@ } }, "gatsby-link": { - "version": "4.18.1", - "resolved": "https://registry.npmjs.org/gatsby-link/-/gatsby-link-4.18.1.tgz", - "integrity": "sha512-gLFH2iU4WugHU5k+SLu4F0Ar04kDT5KhkyXly99ZVtiIvHpA5DqcuGNIUjIE/lizSCsfa553wGv7dadfghGzrQ==", + "version": "4.19.0", + "resolved": "https://registry.npmjs.org/gatsby-link/-/gatsby-link-4.19.0.tgz", + "integrity": "sha512-snv9blxZR7s/ymRjUUDP2+zrJ/beuyy/k/MeW57EkQ16YfgDyF79JMKNDU3iXFmiFhG9AYBkClIfe4qTSoCO/A==", "requires": { - "@babel/runtime": "^7.15.4", "@types/reach__router": "^1.3.10", - "gatsby-page-utils": "^2.18.1", + "gatsby-page-utils": "^2.19.0", "prop-types": "^15.8.1" } }, "gatsby-page-utils": { - "version": "2.18.1", - "resolved": "https://registry.npmjs.org/gatsby-page-utils/-/gatsby-page-utils-2.18.1.tgz", - "integrity": "sha512-4EM0LNOQgnCndHDQSI/ZKRFWYWG9dtTPuGbBaGlmPquhj3zwjOscws1vfj7g+u3PowKjZQ2Rf92RZd8xt8XLTQ==", + "version": "2.19.0", + "resolved": "https://registry.npmjs.org/gatsby-page-utils/-/gatsby-page-utils-2.19.0.tgz", + "integrity": "sha512-eYStV4jQbuEBKhatH3yzWA+lmoydJBCZVg6w2GG38eSsgcj9pdep8oQqyQdGFU3dy/HizWmWCv+wW9FIUoVQsQ==", "requires": { "@babel/runtime": "^7.15.4", "bluebird": "^3.7.2", "chokidar": "^3.5.3", "fs-exists-cached": "^1.0.0", - "gatsby-core-utils": "^3.18.1", + "gatsby-core-utils": "^3.19.0", "glob": "^7.2.3", "lodash": "^4.17.21", "micromatch": "^4.0.5" + }, + "dependencies": { + "gatsby-core-utils": { + "version": "3.19.0", + "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.19.0.tgz", + "integrity": "sha512-cjXs9DsXkPZt+UdiLHxtq+rGMGVrcnM0KwkawlruvPchI7lqGNv9CScqlvYPxx1dBhu3zSZS26EBALMlFhyOJA==", + "requires": { + "@babel/runtime": "^7.15.4", + "ci-info": "2.0.0", + "configstore": "^5.0.1", + "fastq": "^1.13.0", + "file-type": "^16.5.3", + "fs-extra": "^10.1.0", + "got": "^11.8.5", + "import-from": "^4.0.0", + "lmdb": "2.5.3", + "lock": "^1.1.0", + "node-object-hash": "^2.3.10", + "proper-lockfile": "^4.1.2", + "resolve-from": "^5.0.0", + "tmp": "^0.2.1", + "xdg-basedir": "^4.0.0" + } + } } }, "gatsby-parcel-config": { - "version": "0.9.2", - "resolved": "https://registry.npmjs.org/gatsby-parcel-config/-/gatsby-parcel-config-0.9.2.tgz", - "integrity": "sha512-ONykPoYCoFs89M8Hio0TSrUQEpwXwbSiV8aCcPH9L6w3eros9RlWrwAwnWb+lPDNJT5BsereBjefoS9cC6mpVA==", - "requires": { - "@gatsbyjs/parcel-namer-relative-to-cwd": "^1.3.2", - "@parcel/bundler-default": "2.6.0", - "@parcel/compressor-raw": "2.6.0", - "@parcel/namer-default": "2.6.0", - "@parcel/optimizer-terser": "2.6.0", - "@parcel/packager-js": "2.6.0", - "@parcel/packager-raw": "2.6.0", - "@parcel/reporter-dev-server": "2.6.0", - "@parcel/resolver-default": "2.6.0", - "@parcel/runtime-browser-hmr": "2.6.0", - "@parcel/runtime-js": "2.6.0", - "@parcel/runtime-react-refresh": "2.6.0", - "@parcel/runtime-service-worker": "2.6.0", - "@parcel/transformer-js": "2.6.0", - "@parcel/transformer-json": "2.6.0", - "@parcel/transformer-raw": "2.6.0", - "@parcel/transformer-react-refresh-wrap": "2.6.0" + "version": "0.10.0", + "resolved": "https://registry.npmjs.org/gatsby-parcel-config/-/gatsby-parcel-config-0.10.0.tgz", + "integrity": "sha512-FV+ccSeWPgicWRtycfUV1L7xyVIr6OSDnUkztnxq3Xj+OEBPC0NO2x07CA4tz16hSRDH1/qXgwY8AsHyenCidg==", + "requires": { + "@gatsbyjs/parcel-namer-relative-to-cwd": "^1.4.0", + "@parcel/bundler-default": "2.6.2", + "@parcel/compressor-raw": "2.6.2", + "@parcel/namer-default": "2.6.2", + "@parcel/optimizer-terser": "2.6.2", + "@parcel/packager-js": "2.6.2", + "@parcel/packager-raw": "2.6.2", + "@parcel/reporter-dev-server": "2.6.2", + "@parcel/resolver-default": "2.6.2", + "@parcel/runtime-browser-hmr": "2.6.2", + "@parcel/runtime-js": "2.6.2", + "@parcel/runtime-react-refresh": "2.6.2", + "@parcel/runtime-service-worker": "2.6.2", + "@parcel/transformer-js": "2.6.2", + "@parcel/transformer-json": "2.6.2", + "@parcel/transformer-raw": "2.6.2", + "@parcel/transformer-react-refresh-wrap": "2.6.2" } }, "gatsby-plugin-feed": { - "version": "4.18.1", - "resolved": "https://registry.npmjs.org/gatsby-plugin-feed/-/gatsby-plugin-feed-4.18.1.tgz", - "integrity": "sha512-akP96zP2eUu3O70LMtubq+22kAe0OEbZi4N76Bi+k0ZrD8p14AQkjX9XLCGjqfmcdYmvdtxTOIf5Z7aZKh0DkQ==", + "version": "4.19.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-feed/-/gatsby-plugin-feed-4.19.0.tgz", + "integrity": "sha512-evO6G5znamBxUi4WNsM5lsmi2++/gUOZYv+zBTPj4lpvLnlHqKxvHDkhd/Cw0jaYKGep6EQVlVpKyM6iXDG1ww==", "requires": { "@babel/runtime": "^7.15.4", "@hapi/joi": "^15.1.1", "common-tags": "^1.8.2", "fs-extra": "^10.1.0", - "gatsby-plugin-utils": "^3.12.1", + "gatsby-plugin-utils": "^3.13.0", "lodash.merge": "^4.6.2", "rss": "^1.2.2" + }, + "dependencies": { + "gatsby-core-utils": { + "version": "3.19.0", + "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.19.0.tgz", + "integrity": "sha512-cjXs9DsXkPZt+UdiLHxtq+rGMGVrcnM0KwkawlruvPchI7lqGNv9CScqlvYPxx1dBhu3zSZS26EBALMlFhyOJA==", + "requires": { + "@babel/runtime": "^7.15.4", + "ci-info": "2.0.0", + "configstore": "^5.0.1", + "fastq": "^1.13.0", + "file-type": "^16.5.3", + "fs-extra": "^10.1.0", + "got": "^11.8.5", + "import-from": "^4.0.0", + "lmdb": "2.5.3", + "lock": "^1.1.0", + "node-object-hash": "^2.3.10", + "proper-lockfile": "^4.1.2", + "resolve-from": "^5.0.0", + "tmp": "^0.2.1", + "xdg-basedir": "^4.0.0" + } + }, + "gatsby-plugin-utils": { + "version": "3.13.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-utils/-/gatsby-plugin-utils-3.13.0.tgz", + "integrity": "sha512-iFFWswld/Nu8IrSCikZXC4/cud9txv3ikjkQiGLccJStS9VH2rSY4XEMNRqsKN9Spe3pFBOr/97yYUaPhZaQWg==", + "requires": { + "@babel/runtime": "^7.15.4", + "@gatsbyjs/potrace": "^2.2.0", + "fs-extra": "^10.1.0", + "gatsby-core-utils": "^3.19.0", + "gatsby-sharp": "^0.13.0", + "graphql-compose": "^9.0.7", + "import-from": "^4.0.0", + "joi": "^17.4.2", + "mime": "^3.0.0", + "mini-svg-data-uri": "^1.4.4", + "svgo": "^2.8.0" + } + }, + "gatsby-sharp": { + "version": "0.13.0", + "resolved": "https://registry.npmjs.org/gatsby-sharp/-/gatsby-sharp-0.13.0.tgz", + "integrity": "sha512-dGuIuWP3rC7hXl/CgkHEY4WQEW+B9Rsg8uo6u+OumuLnLBxD4vTusEIGctVKzlyIxpENEQylQ7w1JKHX9fOy9g==", + "requires": { + "@types/sharp": "^0.30.0", + "sharp": "^0.30.3" + } + }, + "mime": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-3.0.0.tgz", + "integrity": "sha512-jSCU7/VB1loIWBZe14aEYHU/+1UMEHoaO7qxCOVJOw9GgH72VAWppxNcjU+x9a2k3GSIBXNKxXQFqRvvZ7vr3A==" + } } }, "gatsby-plugin-gatsby-cloud": { - "version": "4.18.1", - "resolved": "https://registry.npmjs.org/gatsby-plugin-gatsby-cloud/-/gatsby-plugin-gatsby-cloud-4.18.1.tgz", - "integrity": "sha512-FDrLl3w3WHVJCzddTYcSCqEi4DLvS9e8/9LY312QnxOqPv+fnLoSDYDyqazyK9/mu6gMz8cUU7UoHsMqpZNbCg==", + "version": "4.19.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-gatsby-cloud/-/gatsby-plugin-gatsby-cloud-4.19.0.tgz", + "integrity": "sha512-3p/lXOUjJ6D0FsI32p924Ty/JlovqdwunnlBps5sESmn2FPfaBO6jVWgR3W920kFAQh1se94Ps1/NwY+9wugiQ==", "requires": { "@babel/runtime": "^7.15.4", "fs-extra": "^10.1.0", - "gatsby-core-utils": "^3.18.1", - "gatsby-telemetry": "^3.18.1", + "gatsby-core-utils": "^3.19.0", + "gatsby-telemetry": "^3.19.0", "kebab-hash": "^0.1.2", "lodash": "^4.17.21", "webpack-assets-manifest": "^5.1.0" + }, + "dependencies": { + "gatsby-core-utils": { + "version": "3.19.0", + "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.19.0.tgz", + "integrity": "sha512-cjXs9DsXkPZt+UdiLHxtq+rGMGVrcnM0KwkawlruvPchI7lqGNv9CScqlvYPxx1dBhu3zSZS26EBALMlFhyOJA==", + "requires": { + "@babel/runtime": "^7.15.4", + "ci-info": "2.0.0", + "configstore": "^5.0.1", + "fastq": "^1.13.0", + "file-type": "^16.5.3", + "fs-extra": "^10.1.0", + "got": "^11.8.5", + "import-from": "^4.0.0", + "lmdb": "2.5.3", + "lock": "^1.1.0", + "node-object-hash": "^2.3.10", + "proper-lockfile": "^4.1.2", + "resolve-from": "^5.0.0", + "tmp": "^0.2.1", + "xdg-basedir": "^4.0.0" + } + } } }, "gatsby-plugin-google-analytics": { - "version": "4.18.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-google-analytics/-/gatsby-plugin-google-analytics-4.18.0.tgz", - "integrity": "sha512-MOEdusG+3JpqS/Xnb7ektteXLisdcZHg+IRVOeNdMkYwgWpDTAG5ut0awgr0C6ClQzlyA5z8HczxK+aL6zZ07w==", + "version": "4.19.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-google-analytics/-/gatsby-plugin-google-analytics-4.19.0.tgz", + "integrity": "sha512-bHpi/rN9v8h0IqYs57btJItXlE1ns+TUhltkunXoPp6aDC92JaPA/f3RdDmx50IwAdwRftJRlgtnc6OoDA9uCg==", "requires": { "@babel/runtime": "^7.15.4", "minimatch": "3.0.4", @@ -7579,24 +7627,80 @@ } }, "gatsby-plugin-image": { - "version": "2.18.1", - "resolved": "https://registry.npmjs.org/gatsby-plugin-image/-/gatsby-plugin-image-2.18.1.tgz", - "integrity": "sha512-PsNIWq5bVALRRshbKOL97tqZTT2r0iILlP+K26YHfd+54DOUPqjESGZ/x7rnv2WMBVFd+Xtkmrx6M1rW86g1Rw==", + "version": "2.19.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-image/-/gatsby-plugin-image-2.19.0.tgz", + "integrity": "sha512-Eu2LY1nfkTdr5hJip5TcZNUqzWQps2Zq4KnPJmgmxpGOYIbrgu8B2kEKQM5hKoe5flu4Xu5gj+CObEMlBj5K1w==", "requires": { "@babel/code-frame": "^7.14.0", "@babel/parser": "^7.15.5", "@babel/runtime": "^7.15.4", "@babel/traverse": "^7.15.4", "babel-jsx-utils": "^1.1.0", - "babel-plugin-remove-graphql-queries": "^4.18.1", + "babel-plugin-remove-graphql-queries": "^4.19.0", "camelcase": "^5.3.1", "chokidar": "^3.5.3", "common-tags": "^1.8.2", "fs-extra": "^10.1.0", - "gatsby-core-utils": "^3.18.1", - "gatsby-plugin-utils": "^3.12.1", + "gatsby-core-utils": "^3.19.0", + "gatsby-plugin-utils": "^3.13.0", "objectFitPolyfill": "^2.3.5", "prop-types": "^15.8.1" + }, + "dependencies": { + "gatsby-core-utils": { + "version": "3.19.0", + "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.19.0.tgz", + "integrity": "sha512-cjXs9DsXkPZt+UdiLHxtq+rGMGVrcnM0KwkawlruvPchI7lqGNv9CScqlvYPxx1dBhu3zSZS26EBALMlFhyOJA==", + "requires": { + "@babel/runtime": "^7.15.4", + "ci-info": "2.0.0", + "configstore": "^5.0.1", + "fastq": "^1.13.0", + "file-type": "^16.5.3", + "fs-extra": "^10.1.0", + "got": "^11.8.5", + "import-from": "^4.0.0", + "lmdb": "2.5.3", + "lock": "^1.1.0", + "node-object-hash": "^2.3.10", + "proper-lockfile": "^4.1.2", + "resolve-from": "^5.0.0", + "tmp": "^0.2.1", + "xdg-basedir": "^4.0.0" + } + }, + "gatsby-plugin-utils": { + "version": "3.13.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-utils/-/gatsby-plugin-utils-3.13.0.tgz", + "integrity": "sha512-iFFWswld/Nu8IrSCikZXC4/cud9txv3ikjkQiGLccJStS9VH2rSY4XEMNRqsKN9Spe3pFBOr/97yYUaPhZaQWg==", + "requires": { + "@babel/runtime": "^7.15.4", + "@gatsbyjs/potrace": "^2.2.0", + "fs-extra": "^10.1.0", + "gatsby-core-utils": "^3.19.0", + "gatsby-sharp": "^0.13.0", + "graphql-compose": "^9.0.7", + "import-from": "^4.0.0", + "joi": "^17.4.2", + "mime": "^3.0.0", + "mini-svg-data-uri": "^1.4.4", + "svgo": "^2.8.0" + } + }, + "gatsby-sharp": { + "version": "0.13.0", + "resolved": "https://registry.npmjs.org/gatsby-sharp/-/gatsby-sharp-0.13.0.tgz", + "integrity": "sha512-dGuIuWP3rC7hXl/CgkHEY4WQEW+B9Rsg8uo6u+OumuLnLBxD4vTusEIGctVKzlyIxpENEQylQ7w1JKHX9fOy9g==", + "requires": { + "@types/sharp": "^0.30.0", + "sharp": "^0.30.3" + } + }, + "mime": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-3.0.0.tgz", + "integrity": "sha512-jSCU7/VB1loIWBZe14aEYHU/+1UMEHoaO7qxCOVJOw9GgH72VAWppxNcjU+x9a2k3GSIBXNKxXQFqRvvZ7vr3A==" + } } }, "gatsby-plugin-manifest": { @@ -7612,35 +7716,115 @@ } }, "gatsby-plugin-offline": { - "version": "5.18.1", - "resolved": "https://registry.npmjs.org/gatsby-plugin-offline/-/gatsby-plugin-offline-5.18.1.tgz", - "integrity": "sha512-Gbk3bNPPCGWgZluXtmW2FUOBmLoxShuXeInCZlYz+p+Vz9jnNUIWk2SFZO1oeo7SFzuQpdkcy0oClOCYVZ9ClA==", + "version": "5.19.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-offline/-/gatsby-plugin-offline-5.19.0.tgz", + "integrity": "sha512-bTouKG26tqlKMCc8q9Fq3+agSv1gO7raEVdjhmtWrbLMPK1RKUv8alOnNc0inMCT/so+vSb7VBKRz0nQSv+O8A==", "requires": { "@babel/runtime": "^7.15.4", "cheerio": "^1.0.0-rc.10", - "gatsby-core-utils": "^3.18.1", + "gatsby-core-utils": "^3.19.0", "glob": "^7.2.3", "idb-keyval": "^3.2.0", "lodash": "^4.17.21", "workbox-build": "^4.3.1" + }, + "dependencies": { + "gatsby-core-utils": { + "version": "3.19.0", + "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.19.0.tgz", + "integrity": "sha512-cjXs9DsXkPZt+UdiLHxtq+rGMGVrcnM0KwkawlruvPchI7lqGNv9CScqlvYPxx1dBhu3zSZS26EBALMlFhyOJA==", + "requires": { + "@babel/runtime": "^7.15.4", + "ci-info": "2.0.0", + "configstore": "^5.0.1", + "fastq": "^1.13.0", + "file-type": "^16.5.3", + "fs-extra": "^10.1.0", + "got": "^11.8.5", + "import-from": "^4.0.0", + "lmdb": "2.5.3", + "lock": "^1.1.0", + "node-object-hash": "^2.3.10", + "proper-lockfile": "^4.1.2", + "resolve-from": "^5.0.0", + "tmp": "^0.2.1", + "xdg-basedir": "^4.0.0" + } + } } }, "gatsby-plugin-page-creator": { - "version": "4.18.1", - "resolved": "https://registry.npmjs.org/gatsby-plugin-page-creator/-/gatsby-plugin-page-creator-4.18.1.tgz", - "integrity": "sha512-XPAglahQ1fDnSdSNJmtAGwVqB7yZDGPOQQBQX7LD74XwYP6uriRo4LyeI+gEXRqW4d63ZL3VMvgdisde9M95LQ==", + "version": "4.19.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-page-creator/-/gatsby-plugin-page-creator-4.19.0.tgz", + "integrity": "sha512-JGclCb2lniTjBdFzoiF0Px9EhVY/3uiWx7mqnvfdVO85VVey5+eCKL60Aqamjovo6C+l/0Uldt4uT1EpNLC3Xw==", "requires": { "@babel/runtime": "^7.15.4", "@babel/traverse": "^7.15.4", "@sindresorhus/slugify": "^1.1.2", "chokidar": "^3.5.3", "fs-exists-cached": "^1.0.0", - "gatsby-core-utils": "^3.18.1", - "gatsby-page-utils": "^2.18.1", - "gatsby-plugin-utils": "^3.12.1", - "gatsby-telemetry": "^3.18.1", + "gatsby-core-utils": "^3.19.0", + "gatsby-page-utils": "^2.19.0", + "gatsby-plugin-utils": "^3.13.0", + "gatsby-telemetry": "^3.19.0", "globby": "^11.1.0", "lodash": "^4.17.21" + }, + "dependencies": { + "gatsby-core-utils": { + "version": "3.19.0", + "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.19.0.tgz", + "integrity": "sha512-cjXs9DsXkPZt+UdiLHxtq+rGMGVrcnM0KwkawlruvPchI7lqGNv9CScqlvYPxx1dBhu3zSZS26EBALMlFhyOJA==", + "requires": { + "@babel/runtime": "^7.15.4", + "ci-info": "2.0.0", + "configstore": "^5.0.1", + "fastq": "^1.13.0", + "file-type": "^16.5.3", + "fs-extra": "^10.1.0", + "got": "^11.8.5", + "import-from": "^4.0.0", + "lmdb": "2.5.3", + "lock": "^1.1.0", + "node-object-hash": "^2.3.10", + "proper-lockfile": "^4.1.2", + "resolve-from": "^5.0.0", + "tmp": "^0.2.1", + "xdg-basedir": "^4.0.0" + } + }, + "gatsby-plugin-utils": { + "version": "3.13.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-utils/-/gatsby-plugin-utils-3.13.0.tgz", + "integrity": "sha512-iFFWswld/Nu8IrSCikZXC4/cud9txv3ikjkQiGLccJStS9VH2rSY4XEMNRqsKN9Spe3pFBOr/97yYUaPhZaQWg==", + "requires": { + "@babel/runtime": "^7.15.4", + "@gatsbyjs/potrace": "^2.2.0", + "fs-extra": "^10.1.0", + "gatsby-core-utils": "^3.19.0", + "gatsby-sharp": "^0.13.0", + "graphql-compose": "^9.0.7", + "import-from": "^4.0.0", + "joi": "^17.4.2", + "mime": "^3.0.0", + "mini-svg-data-uri": "^1.4.4", + "svgo": "^2.8.0" + } + }, + "gatsby-sharp": { + "version": "0.13.0", + "resolved": "https://registry.npmjs.org/gatsby-sharp/-/gatsby-sharp-0.13.0.tgz", + "integrity": "sha512-dGuIuWP3rC7hXl/CgkHEY4WQEW+B9Rsg8uo6u+OumuLnLBxD4vTusEIGctVKzlyIxpENEQylQ7w1JKHX9fOy9g==", + "requires": { + "@types/sharp": "^0.30.0", + "sharp": "^0.30.3" + } + }, + "mime": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-3.0.0.tgz", + "integrity": "sha512-jSCU7/VB1loIWBZe14aEYHU/+1UMEHoaO7qxCOVJOw9GgH72VAWppxNcjU+x9a2k3GSIBXNKxXQFqRvvZ7vr3A==" + } } }, "gatsby-plugin-react-helmet": { @@ -7652,20 +7836,20 @@ } }, "gatsby-plugin-sharp": { - "version": "4.18.1", - "resolved": "https://registry.npmjs.org/gatsby-plugin-sharp/-/gatsby-plugin-sharp-4.18.1.tgz", - "integrity": "sha512-oUAy+1Ey8/HKSYwY9W+LkO8BT7nVk6it2n9QympS8BzGgnFXY8695flmaPtQySMES+OwYGtlh0JhU+p9caVZAQ==", + "version": "4.19.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-sharp/-/gatsby-plugin-sharp-4.19.0.tgz", + "integrity": "sha512-2wIxbCoJmZMeCw+V9ht90tmwoSF2eaEKj6j5QMLe+NlLpLOXwmsHjrauMpqd8ILmcKpZTOJr9yEplzbjxlD36A==", "requires": { "@babel/runtime": "^7.15.4", "@gatsbyjs/potrace": "^2.2.0", - "async": "^3.2.3", + "async": "^3.2.4", "bluebird": "^3.7.2", "debug": "^4.3.4", "filenamify": "^4.3.0", "fs-extra": "^10.1.0", - "gatsby-core-utils": "^3.18.1", - "gatsby-plugin-utils": "^3.12.1", - "gatsby-telemetry": "^3.18.1", + "gatsby-core-utils": "^3.19.0", + "gatsby-plugin-utils": "^3.13.0", + "gatsby-telemetry": "^3.19.0", "got": "^11.8.5", "lodash": "^4.17.21", "mini-svg-data-uri": "^1.4.4", @@ -7691,26 +7875,6 @@ "supports-color": "^5.3.0" } }, - "css-select": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/css-select/-/css-select-2.1.0.tgz", - "integrity": "sha512-Dqk7LQKpwLoH3VovzZnkzegqNSuAziQyNZUcrdDM401iY+R5NkGBXGmtO05/yaXQziALuPogeG0b7UAgjnTJTQ==", - "requires": { - "boolbase": "^1.0.0", - "css-what": "^3.2.1", - "domutils": "^1.7.0", - "nth-check": "^1.0.2" - } - }, - "css-tree": { - "version": "1.0.0-alpha.37", - "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-1.0.0-alpha.37.tgz", - "integrity": "sha512-DMxWJg0rnz7UgxKT0Q1HU/L9BeJI0M6ksor0OgqOnF+aRCDWg/N2641HmVyU9KVIu0OVVWOb2IpC9A+BJRnejg==", - "requires": { - "mdn-data": "2.0.4", - "source-map": "^0.6.1" - } - }, "css-what": { "version": "3.4.2", "resolved": "https://registry.npmjs.org/css-what/-/css-what-3.4.2.tgz", @@ -7754,11 +7918,81 @@ "domelementtype": "1" } }, + "gatsby-core-utils": { + "version": "3.19.0", + "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.19.0.tgz", + "integrity": "sha512-cjXs9DsXkPZt+UdiLHxtq+rGMGVrcnM0KwkawlruvPchI7lqGNv9CScqlvYPxx1dBhu3zSZS26EBALMlFhyOJA==", + "requires": { + "@babel/runtime": "^7.15.4", + "ci-info": "2.0.0", + "configstore": "^5.0.1", + "fastq": "^1.13.0", + "file-type": "^16.5.3", + "fs-extra": "^10.1.0", + "got": "^11.8.5", + "import-from": "^4.0.0", + "lmdb": "2.5.3", + "lock": "^1.1.0", + "node-object-hash": "^2.3.10", + "proper-lockfile": "^4.1.2", + "resolve-from": "^5.0.0", + "tmp": "^0.2.1", + "xdg-basedir": "^4.0.0" + } + }, + "gatsby-plugin-utils": { + "version": "3.13.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-utils/-/gatsby-plugin-utils-3.13.0.tgz", + "integrity": "sha512-iFFWswld/Nu8IrSCikZXC4/cud9txv3ikjkQiGLccJStS9VH2rSY4XEMNRqsKN9Spe3pFBOr/97yYUaPhZaQWg==", + "requires": { + "@babel/runtime": "^7.15.4", + "@gatsbyjs/potrace": "^2.2.0", + "fs-extra": "^10.1.0", + "gatsby-core-utils": "^3.19.0", + "gatsby-sharp": "^0.13.0", + "graphql-compose": "^9.0.7", + "import-from": "^4.0.0", + "joi": "^17.4.2", + "mime": "^3.0.0", + "mini-svg-data-uri": "^1.4.4", + "svgo": "^2.8.0" + }, + "dependencies": { + "svgo": { + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/svgo/-/svgo-2.8.0.tgz", + "integrity": "sha512-+N/Q9kV1+F+UeWYoSiULYo4xYSDQlTgb+ayMobAXPwMnLvop7oxKMo9OzIrX5x3eS4L4f2UHhc9axXwY8DpChg==", + "requires": { + "@trysound/sax": "0.2.0", + "commander": "^7.2.0", + "css-select": "^4.1.3", + "css-tree": "^1.1.3", + "csso": "^4.2.0", + "picocolors": "^1.0.0", + "stable": "^0.1.8" + } + } + } + }, + "gatsby-sharp": { + "version": "0.13.0", + "resolved": "https://registry.npmjs.org/gatsby-sharp/-/gatsby-sharp-0.13.0.tgz", + "integrity": "sha512-dGuIuWP3rC7hXl/CgkHEY4WQEW+B9Rsg8uo6u+OumuLnLBxD4vTusEIGctVKzlyIxpENEQylQ7w1JKHX9fOy9g==", + "requires": { + "@types/sharp": "^0.30.0", + "sharp": "^0.30.3" + } + }, "mdn-data": { "version": "2.0.4", "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.4.tgz", "integrity": "sha512-iV3XNKw06j5Q7mi6h+9vbx23Tv7JkjEVgKHW4pimwyDGWm0OIQntJJ+u1C6mg6mK1EaTv42XQ7w76yuzH7M2cA==" }, + "mime": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-3.0.0.tgz", + "integrity": "sha512-jSCU7/VB1loIWBZe14aEYHU/+1UMEHoaO7qxCOVJOw9GgH72VAWppxNcjU+x9a2k3GSIBXNKxXQFqRvvZ7vr3A==" + }, "nth-check": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-1.0.2.tgz", @@ -7790,14 +8024,36 @@ "stable": "^0.1.8", "unquote": "~1.1.1", "util.promisify": "~1.0.0" + }, + "dependencies": { + "css-select": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/css-select/-/css-select-2.1.0.tgz", + "integrity": "sha512-Dqk7LQKpwLoH3VovzZnkzegqNSuAziQyNZUcrdDM401iY+R5NkGBXGmtO05/yaXQziALuPogeG0b7UAgjnTJTQ==", + "requires": { + "boolbase": "^1.0.0", + "css-what": "^3.2.1", + "domutils": "^1.7.0", + "nth-check": "^1.0.2" + } + }, + "css-tree": { + "version": "1.0.0-alpha.37", + "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-1.0.0-alpha.37.tgz", + "integrity": "sha512-DMxWJg0rnz7UgxKT0Q1HU/L9BeJI0M6ksor0OgqOnF+aRCDWg/N2641HmVyU9KVIu0OVVWOb2IpC9A+BJRnejg==", + "requires": { + "mdn-data": "2.0.4", + "source-map": "^0.6.1" + } + } } } } }, "gatsby-plugin-typescript": { - "version": "4.18.1", - "resolved": "https://registry.npmjs.org/gatsby-plugin-typescript/-/gatsby-plugin-typescript-4.18.1.tgz", - "integrity": "sha512-YUZcqL2WWiL2ngKe4A5FpTjCij2pLxiim+QaujeKfMjeWfHJ13uQ74HlxQXNpGAy4vMRBiU4CJH71RXgS1aoaA==", + "version": "4.19.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-typescript/-/gatsby-plugin-typescript-4.19.0.tgz", + "integrity": "sha512-f+aC4g/pTkUqFLTHo3OLdPQgdIFcEdoM5i8H4Pph5O4rmFXYHkkQKimRJmAz9cBb6/1wN7IBqI9m4k3AefaAjA==", "requires": { "@babel/core": "^7.15.5", "@babel/plugin-proposal-nullish-coalescing-operator": "^7.14.5", @@ -7805,7 +8061,7 @@ "@babel/plugin-proposal-optional-chaining": "^7.14.5", "@babel/preset-typescript": "^7.15.0", "@babel/runtime": "^7.15.4", - "babel-plugin-remove-graphql-queries": "^4.18.1" + "babel-plugin-remove-graphql-queries": "^4.19.0" } }, "gatsby-plugin-utils": { @@ -7834,18 +8090,18 @@ } }, "gatsby-react-router-scroll": { - "version": "5.18.0", - "resolved": "https://registry.npmjs.org/gatsby-react-router-scroll/-/gatsby-react-router-scroll-5.18.0.tgz", - "integrity": "sha512-/A1k468s6g713c8me5DuGiia8rPWLuwjITQ/pKqgJwioJVB6MnD/iBCbHUTzLHlNwZypAVdGHCN8fCIcPcMb6Q==", + "version": "5.19.0", + "resolved": "https://registry.npmjs.org/gatsby-react-router-scroll/-/gatsby-react-router-scroll-5.19.0.tgz", + "integrity": "sha512-tl1E2/ger3Aw5Vb5n53i9wCBePYqb2dBilO05pd6FfgKYJveFidQwGzzOn1F9smdWq+5c3KJSTlKJaNYPwn72w==", "requires": { "@babel/runtime": "^7.15.4", "prop-types": "^15.8.1" } }, "gatsby-remark-copy-linked-files": { - "version": "5.18.0", - "resolved": "https://registry.npmjs.org/gatsby-remark-copy-linked-files/-/gatsby-remark-copy-linked-files-5.18.0.tgz", - "integrity": "sha512-tqnf/iW7F3tWrNN+scuE176js6WK0Vl8NfhXiHxZ7mQKpnnakLgp9b8q1CQro4Hh2HZxDL4SsKk+nuQqsNqCfw==", + "version": "5.19.0", + "resolved": "https://registry.npmjs.org/gatsby-remark-copy-linked-files/-/gatsby-remark-copy-linked-files-5.19.0.tgz", + "integrity": "sha512-MB3MgqUy4+z0dTOHOwuUQPkCC9di9jS6tM/KBmZ29fxK7OZzzvTOFNOEKCWiO0/ioj+6fIbjkI5xMUJ5eKJ5VA==", "requires": { "@babel/runtime": "^7.15.4", "cheerio": "^1.0.0-rc.10", @@ -7858,27 +8114,51 @@ } }, "gatsby-remark-images": { - "version": "6.18.1", - "resolved": "https://registry.npmjs.org/gatsby-remark-images/-/gatsby-remark-images-6.18.1.tgz", - "integrity": "sha512-QgXVWTcgunNOSCX7B1vbGonRjamvnzwOcTC0yDYBRfOI56PListQAntE7gQE7K3CHTvRYvI+aB/VXf3MMbPDaQ==", + "version": "6.19.0", + "resolved": "https://registry.npmjs.org/gatsby-remark-images/-/gatsby-remark-images-6.19.0.tgz", + "integrity": "sha512-e74ntDZgxOMWBC2UCHl2eqjzVE/lZPjGi1Dtl0Q2TMx6+p6Il40E3RWBKhnMmt52uuDMIoohAOD7gEwmmhQxWA==", "requires": { "@babel/runtime": "^7.15.4", "@gatsbyjs/potrace": "^2.2.0", "chalk": "^4.1.2", "cheerio": "^1.0.0-rc.10", - "gatsby-core-utils": "^3.18.1", + "gatsby-core-utils": "^3.19.0", "is-relative-url": "^3.0.0", "lodash": "^4.17.21", "mdast-util-definitions": "^4.0.0", "query-string": "^6.14.1", "unist-util-select": "^3.0.4", "unist-util-visit-parents": "^3.1.1" + }, + "dependencies": { + "gatsby-core-utils": { + "version": "3.19.0", + "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.19.0.tgz", + "integrity": "sha512-cjXs9DsXkPZt+UdiLHxtq+rGMGVrcnM0KwkawlruvPchI7lqGNv9CScqlvYPxx1dBhu3zSZS26EBALMlFhyOJA==", + "requires": { + "@babel/runtime": "^7.15.4", + "ci-info": "2.0.0", + "configstore": "^5.0.1", + "fastq": "^1.13.0", + "file-type": "^16.5.3", + "fs-extra": "^10.1.0", + "got": "^11.8.5", + "import-from": "^4.0.0", + "lmdb": "2.5.3", + "lock": "^1.1.0", + "node-object-hash": "^2.3.10", + "proper-lockfile": "^4.1.2", + "resolve-from": "^5.0.0", + "tmp": "^0.2.1", + "xdg-basedir": "^4.0.0" + } + } } }, "gatsby-remark-prismjs": { - "version": "6.18.0", - "resolved": "https://registry.npmjs.org/gatsby-remark-prismjs/-/gatsby-remark-prismjs-6.18.0.tgz", - "integrity": "sha512-0bUDZb4p3m5nHKM8uKQDUckMhxx0qy14a5l5GRlRXAbDQXjHd5A8V1rKXXYjCQdHMgumYh+IcSqcBbmXYwF/NQ==", + "version": "6.19.0", + "resolved": "https://registry.npmjs.org/gatsby-remark-prismjs/-/gatsby-remark-prismjs-6.19.0.tgz", + "integrity": "sha512-LlVwrDU/iTSODGLFLiBytfFONBGHxWf2E99bg7OR4xEsaZVN0sFF1aQ+7B76PLKMbi8p8CQwotjTQLbFpGXXsA==", "requires": { "@babel/runtime": "^7.15.4", "parse-numeric-range": "^1.2.0", @@ -7886,9 +8166,9 @@ } }, "gatsby-remark-responsive-iframe": { - "version": "5.18.0", - "resolved": "https://registry.npmjs.org/gatsby-remark-responsive-iframe/-/gatsby-remark-responsive-iframe-5.18.0.tgz", - "integrity": "sha512-2oIHQMj830XhabTH3epPDCqB83zyD1qjvMN/46nytW7SJP8sRLoQkK+LiHj0jmjzjxEW1YSn3yX1uzCaijjQtg==", + "version": "5.19.0", + "resolved": "https://registry.npmjs.org/gatsby-remark-responsive-iframe/-/gatsby-remark-responsive-iframe-5.19.0.tgz", + "integrity": "sha512-p/3lRWhcUA5vtw6h/NUu125aI/vBwfbbrEwB3Xx9S+FlO6GfZ63aMN1M1BZ2URNTck8p2DNtyGX1/D8eTnu8JQ==", "requires": { "@babel/runtime": "^7.15.4", "cheerio": "^1.0.0-rc.10", @@ -7898,9 +8178,9 @@ } }, "gatsby-remark-smartypants": { - "version": "5.18.0", - "resolved": "https://registry.npmjs.org/gatsby-remark-smartypants/-/gatsby-remark-smartypants-5.18.0.tgz", - "integrity": "sha512-FbmP14hnhVX+ozdx6QyGmLAMY5desbcbk5DOpLymX5SA1HH6dRJBmuAOkwKhVa82l0t+7JxKoxatAcmZt/ArJA==", + "version": "5.19.0", + "resolved": "https://registry.npmjs.org/gatsby-remark-smartypants/-/gatsby-remark-smartypants-5.19.0.tgz", + "integrity": "sha512-E+nn/b+a81YexdcGRPBwJLKNI/yOJ6HnEOMNfN5OZji1adAcr/BuuoQa1z7fsKTRW/oHCgqBseyeOR8YKEH2Dw==", "requires": { "@babel/runtime": "^7.15.4", "retext": "^7.0.1", @@ -7909,9 +8189,9 @@ } }, "gatsby-script": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/gatsby-script/-/gatsby-script-1.3.0.tgz", - "integrity": "sha512-eCz6mcMFpB7kvpmyM7AtMTxNxzdrzPgt8GiuDKWFOlDgk1il6PUjO99QsL/cCeokmaiH/6egVnm9b33/x+sy9A==" + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/gatsby-script/-/gatsby-script-1.4.0.tgz", + "integrity": "sha512-+GmHTAfFq/sQWPvl1E8QvApRfxqqamhdqjFo4YloOQRAlDc+e3nMzTzvgj8z3IWqDqlvEfHMnlvQg60E5ThO/A==" }, "gatsby-sharp": { "version": "0.12.0", @@ -7923,15 +8203,15 @@ } }, "gatsby-source-filesystem": { - "version": "4.18.1", - "resolved": "https://registry.npmjs.org/gatsby-source-filesystem/-/gatsby-source-filesystem-4.18.1.tgz", - "integrity": "sha512-b1sZB0ziLJEGZOi2+ieUKWJXn3X1hK+F3nN5joaI3A+ptz75GpNuv04tFoq9oICzOHyuNuSGN5YgO8kMpmoaGQ==", + "version": "4.19.0", + "resolved": "https://registry.npmjs.org/gatsby-source-filesystem/-/gatsby-source-filesystem-4.19.0.tgz", + "integrity": "sha512-UUBEqRCKpq/rWX5K8Kizmoi2Cls9oOTEtZRUrhdtMqpz5Y6VAmd7Pwina03r0fej+AoebZWOEzPTOh+WhpIDFw==", "requires": { "@babel/runtime": "^7.15.4", "chokidar": "^3.5.3", "file-type": "^16.5.3", "fs-extra": "^10.1.0", - "gatsby-core-utils": "^3.18.1", + "gatsby-core-utils": "^3.19.0", "got": "^9.6.0", "md5-file": "^5.0.0", "mime": "^2.5.2", @@ -7941,61 +8221,53 @@ "xstate": "^4.26.1" }, "dependencies": { - "@sindresorhus/is": { - "version": "0.14.0", - "resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-0.14.0.tgz", - "integrity": "sha512-9NET910DNaIPngYnLLPeg+Ogzqsi9uM4mSboU5y6p8S5DzMTVEsJZrawi+BoDNUVBa2DhJqQYUFvMDfgU062LQ==" - }, - "@szmarczak/http-timer": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/@szmarczak/http-timer/-/http-timer-1.1.2.tgz", - "integrity": "sha512-XIB2XbzHTN6ieIjfIMV9hlVcfPU26s2vafYWQcZHWXHOxiaRZYEDKEwdl129Zyg50+foYV2jCgtrqSA6qNuNSA==", - "requires": { - "defer-to-connect": "^1.0.1" - } + "defer-to-connect": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/defer-to-connect/-/defer-to-connect-1.1.3.tgz", + "integrity": "sha512-0ISdNousHvZT2EiFlZeZAHBUvSxmKswVCEf8hW7KWgG4a8MVEu/3Vb6uWYozkjylyCxe0JBIiRB1jV45S70WVQ==" }, - "cacheable-request": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/cacheable-request/-/cacheable-request-6.1.0.tgz", - "integrity": "sha512-Oj3cAGPCqOZX7Rz64Uny2GYAZNliQSqfbePrgAQ1wKAihYmCUnraBtJtKcGR4xz7wF+LoJC+ssFZvv5BgF9Igg==", + "gatsby-core-utils": { + "version": "3.19.0", + "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.19.0.tgz", + "integrity": "sha512-cjXs9DsXkPZt+UdiLHxtq+rGMGVrcnM0KwkawlruvPchI7lqGNv9CScqlvYPxx1dBhu3zSZS26EBALMlFhyOJA==", "requires": { - "clone-response": "^1.0.2", - "get-stream": "^5.1.0", - "http-cache-semantics": "^4.0.0", - "keyv": "^3.0.0", - "lowercase-keys": "^2.0.0", - "normalize-url": "^4.1.0", - "responselike": "^1.0.2" + "@babel/runtime": "^7.15.4", + "ci-info": "2.0.0", + "configstore": "^5.0.1", + "fastq": "^1.13.0", + "file-type": "^16.5.3", + "fs-extra": "^10.1.0", + "got": "^11.8.5", + "import-from": "^4.0.0", + "lmdb": "2.5.3", + "lock": "^1.1.0", + "node-object-hash": "^2.3.10", + "proper-lockfile": "^4.1.2", + "resolve-from": "^5.0.0", + "tmp": "^0.2.1", + "xdg-basedir": "^4.0.0" }, "dependencies": { - "get-stream": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz", - "integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==", + "got": { + "version": "11.8.5", + "resolved": "https://registry.npmjs.org/got/-/got-11.8.5.tgz", + "integrity": "sha512-o0Je4NvQObAuZPHLFoRSkdG2lTgtcynqymzg2Vupdx6PorhaT5MCbIyXG6d4D94kk8ZG57QeosgdiqfJWhEhlQ==", "requires": { - "pump": "^3.0.0" + "@sindresorhus/is": "^4.0.0", + "@szmarczak/http-timer": "^4.0.5", + "@types/cacheable-request": "^6.0.1", + "@types/responselike": "^1.0.0", + "cacheable-lookup": "^5.0.3", + "cacheable-request": "^7.0.2", + "decompress-response": "^6.0.0", + "http2-wrapper": "^1.0.0-beta.5.2", + "lowercase-keys": "^2.0.0", + "p-cancelable": "^2.0.0", + "responselike": "^2.0.0" } - }, - "lowercase-keys": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-2.0.0.tgz", - "integrity": "sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA==" } } }, - "decompress-response": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-3.3.0.tgz", - "integrity": "sha512-BzRPQuY1ip+qDonAOz42gRm/pg9F768C+npV/4JOsxRC2sq+Rlk+Q4ZCAsOhnIaMrgarILY+RMUIvMmmX1qAEA==", - "requires": { - "mimic-response": "^1.0.0" - } - }, - "defer-to-connect": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/defer-to-connect/-/defer-to-connect-1.1.3.tgz", - "integrity": "sha512-0ISdNousHvZT2EiFlZeZAHBUvSxmKswVCEf8hW7KWgG4a8MVEu/3Vb6uWYozkjylyCxe0JBIiRB1jV45S70WVQ==" - }, "get-stream": { "version": "4.1.0", "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz", @@ -8020,6 +8292,76 @@ "p-cancelable": "^1.0.0", "to-readable-stream": "^1.0.0", "url-parse-lax": "^3.0.0" + }, + "dependencies": { + "@sindresorhus/is": { + "version": "0.14.0", + "resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-0.14.0.tgz", + "integrity": "sha512-9NET910DNaIPngYnLLPeg+Ogzqsi9uM4mSboU5y6p8S5DzMTVEsJZrawi+BoDNUVBa2DhJqQYUFvMDfgU062LQ==" + }, + "@szmarczak/http-timer": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@szmarczak/http-timer/-/http-timer-1.1.2.tgz", + "integrity": "sha512-XIB2XbzHTN6ieIjfIMV9hlVcfPU26s2vafYWQcZHWXHOxiaRZYEDKEwdl129Zyg50+foYV2jCgtrqSA6qNuNSA==", + "requires": { + "defer-to-connect": "^1.0.1" + } + }, + "cacheable-request": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/cacheable-request/-/cacheable-request-6.1.0.tgz", + "integrity": "sha512-Oj3cAGPCqOZX7Rz64Uny2GYAZNliQSqfbePrgAQ1wKAihYmCUnraBtJtKcGR4xz7wF+LoJC+ssFZvv5BgF9Igg==", + "requires": { + "clone-response": "^1.0.2", + "get-stream": "^5.1.0", + "http-cache-semantics": "^4.0.0", + "keyv": "^3.0.0", + "lowercase-keys": "^2.0.0", + "normalize-url": "^4.1.0", + "responselike": "^1.0.2" + }, + "dependencies": { + "get-stream": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz", + "integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==", + "requires": { + "pump": "^3.0.0" + } + }, + "lowercase-keys": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-2.0.0.tgz", + "integrity": "sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA==" + } + } + }, + "decompress-response": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-3.3.0.tgz", + "integrity": "sha512-BzRPQuY1ip+qDonAOz42gRm/pg9F768C+npV/4JOsxRC2sq+Rlk+Q4ZCAsOhnIaMrgarILY+RMUIvMmmX1qAEA==", + "requires": { + "mimic-response": "^1.0.0" + } + }, + "lowercase-keys": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-1.0.1.tgz", + "integrity": "sha512-G2Lj61tXDnVFFOi8VZds+SoQjtQC3dgokKdDG2mTm1tx4m50NUHBOZSBwQQHyy0V12A0JTG4icfZQH+xPyh8VA==" + }, + "p-cancelable": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/p-cancelable/-/p-cancelable-1.1.0.tgz", + "integrity": "sha512-s73XxOZ4zpt1edZYZzvhqFa6uvQc1vwUa0K0BdtIZgQMAJj9IbebH+JkgKZc9h+B05PKHLOTl4ajG1BmNrVZlw==" + }, + "responselike": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/responselike/-/responselike-1.0.2.tgz", + "integrity": "sha512-/Fpe5guzJk1gPqdJLJR5u7eG/gNY4nImjbRDaVWVMRhne55TCmj2i9Q+54PBRfatRC8v/rIiv9BN0pMd9OV5EQ==", + "requires": { + "lowercase-keys": "^1.0.0" + } + } } }, "json-buffer": { @@ -8035,35 +8377,17 @@ "json-buffer": "3.0.0" } }, - "lowercase-keys": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-1.0.1.tgz", - "integrity": "sha512-G2Lj61tXDnVFFOi8VZds+SoQjtQC3dgokKdDG2mTm1tx4m50NUHBOZSBwQQHyy0V12A0JTG4icfZQH+xPyh8VA==" - }, "normalize-url": { "version": "4.5.1", "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-4.5.1.tgz", "integrity": "sha512-9UZCFRHQdNrfTpGg8+1INIg93B6zE0aXMVFkw1WFwvO4SlZywU6aLg5Of0Ap/PgcbSw4LNxvMWXMeugwMCX0AA==" - }, - "p-cancelable": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/p-cancelable/-/p-cancelable-1.1.0.tgz", - "integrity": "sha512-s73XxOZ4zpt1edZYZzvhqFa6uvQc1vwUa0K0BdtIZgQMAJj9IbebH+JkgKZc9h+B05PKHLOTl4ajG1BmNrVZlw==" - }, - "responselike": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/responselike/-/responselike-1.0.2.tgz", - "integrity": "sha512-/Fpe5guzJk1gPqdJLJR5u7eG/gNY4nImjbRDaVWVMRhne55TCmj2i9Q+54PBRfatRC8v/rIiv9BN0pMd9OV5EQ==", - "requires": { - "lowercase-keys": "^1.0.0" - } } } }, "gatsby-telemetry": { - "version": "3.18.1", - "resolved": "https://registry.npmjs.org/gatsby-telemetry/-/gatsby-telemetry-3.18.1.tgz", - "integrity": "sha512-EjjsUv15BZGsmnPrOINRT/s7d18DTKokpp2NDZLm8uOs3MwVoLtUZ/BS7h2NTmgK+WN93q3bNYRkZgKgV9QC1A==", + "version": "3.19.0", + "resolved": "https://registry.npmjs.org/gatsby-telemetry/-/gatsby-telemetry-3.19.0.tgz", + "integrity": "sha512-5JQcTm2zCLWTmnXOdOe0gxuk7aRZSTaVrOrytMlwAR7trvtBC/fKqMhJHsYwl5uW9K06F59ZdkC0apJTAPkGww==", "requires": { "@babel/code-frame": "^7.14.0", "@babel/runtime": "^7.15.4", @@ -8073,7 +8397,7 @@ "boxen": "^4.2.0", "configstore": "^5.0.1", "fs-extra": "^10.1.0", - "gatsby-core-utils": "^3.18.1", + "gatsby-core-utils": "^3.19.0", "git-up": "^4.0.5", "is-docker": "^2.2.1", "lodash": "^4.17.21", @@ -8125,6 +8449,28 @@ "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" }, + "gatsby-core-utils": { + "version": "3.19.0", + "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.19.0.tgz", + "integrity": "sha512-cjXs9DsXkPZt+UdiLHxtq+rGMGVrcnM0KwkawlruvPchI7lqGNv9CScqlvYPxx1dBhu3zSZS26EBALMlFhyOJA==", + "requires": { + "@babel/runtime": "^7.15.4", + "ci-info": "2.0.0", + "configstore": "^5.0.1", + "fastq": "^1.13.0", + "file-type": "^16.5.3", + "fs-extra": "^10.1.0", + "got": "^11.8.5", + "import-from": "^4.0.0", + "lmdb": "2.5.3", + "lock": "^1.1.0", + "node-object-hash": "^2.3.10", + "proper-lockfile": "^4.1.2", + "resolve-from": "^5.0.0", + "tmp": "^0.2.1", + "xdg-basedir": "^4.0.0" + } + }, "has-flag": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", @@ -8206,9 +8552,9 @@ } }, "gatsby-worker": { - "version": "1.18.0", - "resolved": "https://registry.npmjs.org/gatsby-worker/-/gatsby-worker-1.18.0.tgz", - "integrity": "sha512-gNzqDrYFMXlfXCzdClORyDQWQZKTOF6nRUrhZT8PUxzQViO+DvnEKE3EAQvZizYKW1Hgw7cbiTtLG3qshkNepw==", + "version": "1.19.0", + "resolved": "https://registry.npmjs.org/gatsby-worker/-/gatsby-worker-1.19.0.tgz", + "integrity": "sha512-E0I51K5+rSpcUkv3wQ17FHZiicLeMH/Hz7p3oxlPCM43pcvsYJTa68Q0MqI1K6XV6Z8Nf48dERKMvHT0PnY4GQ==", "requires": { "@babel/core": "^7.15.5", "@babel/runtime": "^7.15.4" @@ -8770,6 +9116,11 @@ "space-separated-tokens": "^1.0.0" } }, + "he": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/he/-/he-1.2.0.tgz", + "integrity": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==" + }, "header-case": { "version": "2.0.4", "resolved": "https://registry.npmjs.org/header-case/-/header-case-2.0.4.tgz", @@ -8825,23 +9176,6 @@ "toidentifier": "1.0.1" } }, - "http-proxy": { - "version": "1.18.1", - "resolved": "https://registry.npmjs.org/http-proxy/-/http-proxy-1.18.1.tgz", - "integrity": "sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==", - "requires": { - "eventemitter3": "^4.0.0", - "follow-redirects": "^1.0.0", - "requires-port": "^1.0.0" - }, - "dependencies": { - "eventemitter3": { - "version": "4.0.7", - "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.7.tgz", - "integrity": "sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==" - } - } - }, "http2-wrapper": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/http2-wrapper/-/http2-wrapper-1.0.3.tgz", @@ -9631,42 +9965,6 @@ } } }, - "lmdb-darwin-arm64": { - "version": "2.3.10", - "resolved": "https://registry.npmjs.org/lmdb-darwin-arm64/-/lmdb-darwin-arm64-2.3.10.tgz", - "integrity": "sha512-LVXbH2MYu7/ZuQ8+P9rv+SwNyBKltxo7vHAGJS94HWyfwnCbKEYER9PImBvNBwzvgtaYk6x0RMX3oor6e6KdDQ==", - "optional": true - }, - "lmdb-darwin-x64": { - "version": "2.3.10", - "resolved": "https://registry.npmjs.org/lmdb-darwin-x64/-/lmdb-darwin-x64-2.3.10.tgz", - "integrity": "sha512-gAc/1b/FZOb9yVOT+o0huA+hdW82oxLo5r22dFTLoRUFG1JMzxdTjmnW6ONVOHdqC9a5bt3vBCEY3jmXNqV26A==", - "optional": true - }, - "lmdb-linux-arm": { - "version": "2.3.10", - "resolved": "https://registry.npmjs.org/lmdb-linux-arm/-/lmdb-linux-arm-2.3.10.tgz", - "integrity": "sha512-Rb8+4JjsThuEcJ7GLLwFkCFnoiwv/3hAAbELWITz70buQFF+dCZvCWWgEgmDTxwn5r+wIkdUjmFv4dqqiKQFmQ==", - "optional": true - }, - "lmdb-linux-arm64": { - "version": "2.3.10", - "resolved": "https://registry.npmjs.org/lmdb-linux-arm64/-/lmdb-linux-arm64-2.3.10.tgz", - "integrity": "sha512-Ihr8mdICTK3jA4GXHxrXGK2oekn0mY6zuDSXQDNtyRSH19j3D2Y04A7SEI9S0EP/t5sjKSudYgZbiHDxRCsI5A==", - "optional": true - }, - "lmdb-linux-x64": { - "version": "2.3.10", - "resolved": "https://registry.npmjs.org/lmdb-linux-x64/-/lmdb-linux-x64-2.3.10.tgz", - "integrity": "sha512-E3l3pDiCA9uvnLf+t3qkmBGRO01dp1EHD0x0g0iRnfpAhV7wYbayJGfG93BUt22Tj3fnq4HDo4dQ6ZWaDI1nuw==", - "optional": true - }, - "lmdb-win32-x64": { - "version": "2.3.10", - "resolved": "https://registry.npmjs.org/lmdb-win32-x64/-/lmdb-win32-x64-2.3.10.tgz", - "integrity": "sha512-gspWk34tDANhjn+brdqZstJMptGiwj4qFNVg0Zey9ds+BUlif+Lgf5szrfOVzZ8gVRkk1Lgbz7i78+V7YK7SCA==", - "optional": true - }, "load-bmfont": { "version": "1.4.1", "resolved": "https://registry.npmjs.org/load-bmfont/-/load-bmfont-1.4.1.tgz", @@ -10423,11 +10721,6 @@ "resolved": "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.8.tgz", "integrity": "sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==" }, - "nan": { - "version": "2.16.0", - "resolved": "https://registry.npmjs.org/nan/-/nan-2.16.0.tgz", - "integrity": "sha512-UdAqHyFngu7TfQKsCBgAA6pWDkT8MAO7d0jyOecVhN5354xbLqdn8mV9Tat9gepAupm0bt2DbeaSC8vS52MuFA==" - }, "nanoid": { "version": "3.3.4", "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.4.tgz", @@ -10522,9 +10815,18 @@ "integrity": "sha512-2iGbaQBV+ITgCz76ZEjmhUKAKVf7xfY1sRl4UiKQspfZMH2h06SyhNsnSVy50cwkFQDGLyif6m/6uFXHkOZ6rg==" }, "node-gyp-build-optional-packages": { - "version": "4.3.5", - "resolved": "https://registry.npmjs.org/node-gyp-build-optional-packages/-/node-gyp-build-optional-packages-4.3.5.tgz", - "integrity": "sha512-5ke7D8SiQsTQL7CkHpfR1tLwfqtKc0KYEmlnkwd40jHCASskZeS98qoZ1qDUns2aUQWikcjidRUs6PM/3iyN/w==" + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/node-gyp-build-optional-packages/-/node-gyp-build-optional-packages-5.0.3.tgz", + "integrity": "sha512-k75jcVzk5wnnc/FMxsf4udAoTEUv2jY3ycfdSd3yWu6Cnd1oee6/CfZJApyscA4FJOmdoixWwiwOyf16RzD5JA==" + }, + "node-html-parser": { + "version": "5.3.3", + "resolved": "https://registry.npmjs.org/node-html-parser/-/node-html-parser-5.3.3.tgz", + "integrity": "sha512-ncg1033CaX9UexbyA7e1N0aAoAYRDiV8jkTvzEnfd1GDvzFdrsXLzR4p4ik8mwLgnaKP/jyUFWDy9q3jvRT2Jw==", + "requires": { + "css-select": "^4.2.1", + "he": "1.2.0" + } }, "node-int64": { "version": "0.4.0", @@ -11817,6 +12119,13 @@ "http-errors": "2.0.0", "iconv-lite": "0.4.24", "unpipe": "1.0.0" + }, + "dependencies": { + "bytes": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", + "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==" + } } }, "raw-loader": { @@ -12359,11 +12668,6 @@ "resolved": "https://registry.npmjs.org/require-package-name/-/require-package-name-2.0.1.tgz", "integrity": "sha512-uuoJ1hU/k6M0779t3VMVIYpb2VMJk05cehCaABFhXaibcbvfgR8wKiozLjVFSzJPmQMRqIcO0HMyTFqfV09V6Q==" }, - "requires-port": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz", - "integrity": "sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==" - }, "resolve": { "version": "1.22.1", "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.1.tgz", @@ -13925,9 +14229,9 @@ "integrity": "sha512-vRCqFv6UhXpWxZPyGDh/F3ZpNv8/qo7w6iufLpQg9aKnQ71qM4B5KiI7Mia9COcjEhrO9LueHpMYjYzsWH3OIg==" }, "update-browserslist-db": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.4.tgz", - "integrity": "sha512-jnmO2BEGUjsMOe/Fg9u0oczOe/ppIDZPebzccl1yDWGLFP16Pa1/RM5wEoKYPG2zstNcDuAStejyxsOuKINdGA==", + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.5.tgz", + "integrity": "sha512-dteFFpCyvuDdr9S/ff1ISkKt/9YZxKjI9WlRR99c180GaztJtRa/fn18FdxGVKVsnPY7/a/FDN68mcvUmP4U7Q==", "requires": { "escalade": "^3.1.1", "picocolors": "^1.0.0" diff --git a/starters/blog/package.json b/starters/blog/package.json index ae844a2114990..7914f1009c7bc 100644 --- a/starters/blog/package.json +++ b/starters/blog/package.json @@ -8,21 +8,21 @@ "url": "https://github.com/gatsbyjs/gatsby/issues" }, "dependencies": { - "gatsby": "^4.18.2", - "gatsby-plugin-feed": "^4.18.1", - "gatsby-plugin-gatsby-cloud": "^4.18.1", - "gatsby-plugin-google-analytics": "^4.18.0", - "gatsby-plugin-image": "^2.18.1", + "gatsby": "^4.19.0", + "gatsby-plugin-feed": "^4.19.0", + "gatsby-plugin-gatsby-cloud": "^4.19.0", + "gatsby-plugin-google-analytics": "^4.19.0", + "gatsby-plugin-image": "^2.19.0", "gatsby-plugin-manifest": "^4.18.1", - "gatsby-plugin-offline": "^5.18.1", + "gatsby-plugin-offline": "^5.19.0", "gatsby-plugin-react-helmet": "^5.18.0", - "gatsby-plugin-sharp": "^4.18.1", - "gatsby-remark-copy-linked-files": "^5.18.0", - "gatsby-remark-images": "^6.18.1", - "gatsby-remark-prismjs": "^6.18.0", - "gatsby-remark-responsive-iframe": "^5.18.0", - "gatsby-remark-smartypants": "^5.18.0", - "gatsby-source-filesystem": "^4.18.1", + "gatsby-plugin-sharp": "^4.19.0", + "gatsby-remark-copy-linked-files": "^5.19.0", + "gatsby-remark-images": "^6.19.0", + "gatsby-remark-prismjs": "^6.19.0", + "gatsby-remark-responsive-iframe": "^5.19.0", + "gatsby-remark-smartypants": "^5.19.0", + "gatsby-source-filesystem": "^4.19.0", "gatsby-transformer-remark": "^5.18.1", "gatsby-transformer-sharp": "^4.18.1", "prismjs": "^1.28.0", diff --git a/starters/default/package-lock.json b/starters/default/package-lock.json index 0b525d0e1b7ba..dd32ba19be87b 100644 --- a/starters/default/package-lock.json +++ b/starters/default/package-lock.json @@ -66,20 +66,20 @@ "integrity": "sha512-HSmX4WZPPK3FUxYp7g2T6EyO8j96HlZJlxmKPSh6KAcqwyDrfx7hKjXpAW/0FhFfTJsR0Yt4lAjLI2coMptIHQ==" }, "@babel/core": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.18.6.tgz", - "integrity": "sha512-cQbWBpxcbbs/IUredIPkHiAGULLV8iwgNRMFzvbhEXISp4f3rUUXE5+TIw6KwUWUR3DwyI6gmBRnmAtYaWehwQ==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.18.9.tgz", + "integrity": "sha512-1LIb1eL8APMy91/IMW+31ckrfBM4yCoLaVzoDhZUKSM4cu1L1nIidyxkCgzPAgrC5WEz36IPEr/eSeSF9pIn+g==", "requires": { "@ampproject/remapping": "^2.1.0", "@babel/code-frame": "^7.18.6", - "@babel/generator": "^7.18.6", - "@babel/helper-compilation-targets": "^7.18.6", - "@babel/helper-module-transforms": "^7.18.6", - "@babel/helpers": "^7.18.6", - "@babel/parser": "^7.18.6", + "@babel/generator": "^7.18.9", + "@babel/helper-compilation-targets": "^7.18.9", + "@babel/helper-module-transforms": "^7.18.9", + "@babel/helpers": "^7.18.9", + "@babel/parser": "^7.18.9", "@babel/template": "^7.18.6", - "@babel/traverse": "^7.18.6", - "@babel/types": "^7.18.6", + "@babel/traverse": "^7.18.9", + "@babel/types": "^7.18.9", "convert-source-map": "^1.7.0", "debug": "^4.1.0", "gensync": "^1.0.0-beta.2", @@ -103,9 +103,9 @@ } }, "@babel/eslint-parser": { - "version": "7.18.2", - "resolved": "https://registry.npmjs.org/@babel/eslint-parser/-/eslint-parser-7.18.2.tgz", - "integrity": "sha512-oFQYkE8SuH14+uR51JVAmdqwKYXGRjEXx7s+WiagVjqQ+HPE+nnwyF2qlVG8evUsUHmPcA+6YXMEDbIhEyQc5A==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/eslint-parser/-/eslint-parser-7.18.9.tgz", + "integrity": "sha512-KzSGpMBggz4fKbRbWLNyPVTuQr6cmCcBhOyXTw/fieOVaw5oYAwcAj4a7UKcDYCPxQq+CG1NCDZH9e2JTXquiQ==", "requires": { "eslint-scope": "^5.1.1", "eslint-visitor-keys": "^2.1.0", @@ -120,11 +120,11 @@ } }, "@babel/generator": { - "version": "7.18.7", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.18.7.tgz", - "integrity": "sha512-shck+7VLlY72a2w9c3zYWuE1pwOKEiQHV7GTUbSnhyl5eu3i04t30tBY82ZRWrDfo3gkakCFtevExnxbkf2a3A==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.18.9.tgz", + "integrity": "sha512-wt5Naw6lJrL1/SGkipMiFxJjtyczUWTP38deiP1PO60HsBjDeKk08CGC3S8iVuvf0FmTdgKwU1KIXzSKL1G0Ug==", "requires": { - "@babel/types": "^7.18.7", + "@babel/types": "^7.18.9", "@jridgewell/gen-mapping": "^0.3.2", "jsesc": "^2.5.1" }, @@ -150,20 +150,20 @@ } }, "@babel/helper-builder-binary-assignment-operator-visitor": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.18.6.tgz", - "integrity": "sha512-KT10c1oWEpmrIRYnthbzHgoOf6B+Xd6a5yhdbNtdhtG7aO1or5HViuf1TQR36xY/QprXA5nvxO6nAjhJ4y38jw==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.18.9.tgz", + "integrity": "sha512-yFQ0YCHoIqarl8BCRwBL8ulYUaZpz3bNsA7oFepAzee+8/+ImtADXNOmO5vJvsPff3qi+hvpkY/NYBTrBQgdNw==", "requires": { "@babel/helper-explode-assignable-expression": "^7.18.6", - "@babel/types": "^7.18.6" + "@babel/types": "^7.18.9" } }, "@babel/helper-compilation-targets": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.18.6.tgz", - "integrity": "sha512-vFjbfhNCzqdeAtZflUFrG5YIFqGTqsctrtkZ1D/NB0mDW9TwW3GmmUepYY4G9wCET5rY5ugz4OGTcLd614IzQg==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.18.9.tgz", + "integrity": "sha512-tzLCyVmqUiFlcFoAPLA/gL9TeYrF61VLNtb+hvkuVaB5SUjW7jcfrglBIX1vUIoT7CLP3bBlIMeyEsIl2eFQNg==", "requires": { - "@babel/compat-data": "^7.18.6", + "@babel/compat-data": "^7.18.8", "@babel/helper-validator-option": "^7.18.6", "browserslist": "^4.20.2", "semver": "^6.3.0" @@ -177,16 +177,16 @@ } }, "@babel/helper-create-class-features-plugin": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.18.6.tgz", - "integrity": "sha512-YfDzdnoxHGV8CzqHGyCbFvXg5QESPFkXlHtvdCkesLjjVMT2Adxe4FGUR5ChIb3DxSaXO12iIOCWoXdsUVwnqw==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.18.9.tgz", + "integrity": "sha512-WvypNAYaVh23QcjpMR24CwZY2Nz6hqdOcFdPbNpV56hL5H6KiFheO7Xm1aPdlLQ7d5emYZX7VZwPp9x3z+2opw==", "requires": { "@babel/helper-annotate-as-pure": "^7.18.6", - "@babel/helper-environment-visitor": "^7.18.6", - "@babel/helper-function-name": "^7.18.6", - "@babel/helper-member-expression-to-functions": "^7.18.6", + "@babel/helper-environment-visitor": "^7.18.9", + "@babel/helper-function-name": "^7.18.9", + "@babel/helper-member-expression-to-functions": "^7.18.9", "@babel/helper-optimise-call-expression": "^7.18.6", - "@babel/helper-replace-supers": "^7.18.6", + "@babel/helper-replace-supers": "^7.18.9", "@babel/helper-split-export-declaration": "^7.18.6" } }, @@ -230,9 +230,9 @@ } }, "@babel/helper-environment-visitor": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.18.6.tgz", - "integrity": "sha512-8n6gSfn2baOY+qlp+VSzsosjCVGFqWKmDF0cCWOybh52Dw3SEyoWR1KrhMJASjLwIEkkAufZ0xvr+SxLHSpy2Q==" + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.18.9.tgz", + "integrity": "sha512-3r/aACDJ3fhQ/EVgFy0hpj8oHyHpQc+LPtJoY9SzTThAsStm4Ptegq92vqKoE3vD706ZVFWITnMnxucw+S9Ipg==" }, "@babel/helper-explode-assignable-expression": { "version": "7.18.6", @@ -243,12 +243,12 @@ } }, "@babel/helper-function-name": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.18.6.tgz", - "integrity": "sha512-0mWMxV1aC97dhjCah5U5Ua7668r5ZmSC2DLfH2EZnf9c3/dHZKiFa5pRLMH5tjSl471tY6496ZWk/kjNONBxhw==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.18.9.tgz", + "integrity": "sha512-fJgWlZt7nxGksJS9a0XdSaI4XvpExnNIgRP+rVefWh5U7BL8pPuir6SJUmFKRfjWQ51OtWSzwOxhaH/EBWWc0A==", "requires": { "@babel/template": "^7.18.6", - "@babel/types": "^7.18.6" + "@babel/types": "^7.18.9" } }, "@babel/helper-hoist-variables": { @@ -260,11 +260,11 @@ } }, "@babel/helper-member-expression-to-functions": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.18.6.tgz", - "integrity": "sha512-CeHxqwwipekotzPDUuJOfIMtcIHBuc7WAzLmTYWctVigqS5RktNMQ5bEwQSuGewzYnCtTWa3BARXeiLxDTv+Ng==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.18.9.tgz", + "integrity": "sha512-RxifAh2ZoVU67PyKIO4AMi1wTenGfMR/O/ae0CCRqwgBAt5v7xjdtRw7UoSbsreKrQn5t7r89eruK/9JjYHuDg==", "requires": { - "@babel/types": "^7.18.6" + "@babel/types": "^7.18.9" } }, "@babel/helper-module-imports": { @@ -276,18 +276,18 @@ } }, "@babel/helper-module-transforms": { - "version": "7.18.8", - "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.18.8.tgz", - "integrity": "sha512-che3jvZwIcZxrwh63VfnFTUzcAM9v/lznYkkRxIBGMPt1SudOKHAEec0SIRCfiuIzTcF7VGj/CaTT6gY4eWxvA==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.18.9.tgz", + "integrity": "sha512-KYNqY0ICwfv19b31XzvmI/mfcylOzbLtowkw+mfvGPAQ3kfCnMLYbED3YecL5tPd8nAYFQFAd6JHp2LxZk/J1g==", "requires": { - "@babel/helper-environment-visitor": "^7.18.6", + "@babel/helper-environment-visitor": "^7.18.9", "@babel/helper-module-imports": "^7.18.6", "@babel/helper-simple-access": "^7.18.6", "@babel/helper-split-export-declaration": "^7.18.6", "@babel/helper-validator-identifier": "^7.18.6", "@babel/template": "^7.18.6", - "@babel/traverse": "^7.18.8", - "@babel/types": "^7.18.8" + "@babel/traverse": "^7.18.9", + "@babel/types": "^7.18.9" } }, "@babel/helper-optimise-call-expression": { @@ -299,31 +299,31 @@ } }, "@babel/helper-plugin-utils": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.18.6.tgz", - "integrity": "sha512-gvZnm1YAAxh13eJdkb9EWHBnF3eAub3XTLCZEehHT2kWxiKVRL64+ae5Y6Ivne0mVHmMYKT+xWgZO+gQhuLUBg==" + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.18.9.tgz", + "integrity": "sha512-aBXPT3bmtLryXaoJLyYPXPlSD4p1ld9aYeR+sJNOZjJJGiOpb+fKfh3NkcCu7J54nUJwCERPBExCCpyCOHnu/w==" }, "@babel/helper-remap-async-to-generator": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.18.6.tgz", - "integrity": "sha512-z5wbmV55TveUPZlCLZvxWHtrjuJd+8inFhk7DG0WW87/oJuGDcjDiu7HIvGcpf5464L6xKCg3vNkmlVVz9hwyQ==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.18.9.tgz", + "integrity": "sha512-dI7q50YKd8BAv3VEfgg7PS7yD3Rtbi2J1XMXaalXO0W0164hYLnh8zpjRS0mte9MfVp/tltvr/cfdXPvJr1opA==", "requires": { "@babel/helper-annotate-as-pure": "^7.18.6", - "@babel/helper-environment-visitor": "^7.18.6", - "@babel/helper-wrap-function": "^7.18.6", - "@babel/types": "^7.18.6" + "@babel/helper-environment-visitor": "^7.18.9", + "@babel/helper-wrap-function": "^7.18.9", + "@babel/types": "^7.18.9" } }, "@babel/helper-replace-supers": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.18.6.tgz", - "integrity": "sha512-fTf7zoXnUGl9gF25fXCWE26t7Tvtyn6H4hkLSYhATwJvw2uYxd3aoXplMSe0g9XbwK7bmxNes7+FGO0rB/xC0g==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.18.9.tgz", + "integrity": "sha512-dNsWibVI4lNT6HiuOIBr1oyxo40HvIVmbwPUm3XZ7wMh4k2WxrxTqZwSqw/eEmXDS9np0ey5M2bz9tBmO9c+YQ==", "requires": { - "@babel/helper-environment-visitor": "^7.18.6", - "@babel/helper-member-expression-to-functions": "^7.18.6", + "@babel/helper-environment-visitor": "^7.18.9", + "@babel/helper-member-expression-to-functions": "^7.18.9", "@babel/helper-optimise-call-expression": "^7.18.6", - "@babel/traverse": "^7.18.6", - "@babel/types": "^7.18.6" + "@babel/traverse": "^7.18.9", + "@babel/types": "^7.18.9" } }, "@babel/helper-simple-access": { @@ -335,11 +335,11 @@ } }, "@babel/helper-skip-transparent-expression-wrappers": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.18.6.tgz", - "integrity": "sha512-4KoLhwGS9vGethZpAhYnMejWkX64wsnHPDwvOsKWU6Fg4+AlK2Jz3TyjQLMEPvz+1zemi/WBdkYxCD0bAfIkiw==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.18.9.tgz", + "integrity": "sha512-imytd2gHi3cJPsybLRbmFrF7u5BIEuI2cNheyKi3/iOBC63kNn3q8Crn2xVuESli0aM4KYsyEqKyS7lFL8YVtw==", "requires": { - "@babel/types": "^7.18.6" + "@babel/types": "^7.18.9" } }, "@babel/helper-split-export-declaration": { @@ -361,24 +361,24 @@ "integrity": "sha512-XO7gESt5ouv/LRJdrVjkShckw6STTaB7l9BrpBaAHDeF5YZT+01PCwmR0SJHnkW6i8OwW/EVWRShfi4j2x+KQw==" }, "@babel/helper-wrap-function": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.18.6.tgz", - "integrity": "sha512-I5/LZfozwMNbwr/b1vhhuYD+J/mU+gfGAj5td7l5Rv9WYmH6i3Om69WGKNmlIpsVW/mF6O5bvTKbvDQZVgjqOw==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.18.9.tgz", + "integrity": "sha512-cG2ru3TRAL6a60tfQflpEfs4ldiPwF6YW3zfJiRgmoFVIaC1vGnBBgatfec+ZUziPHkHSaXAuEck3Cdkf3eRpQ==", "requires": { - "@babel/helper-function-name": "^7.18.6", + "@babel/helper-function-name": "^7.18.9", "@babel/template": "^7.18.6", - "@babel/traverse": "^7.18.6", - "@babel/types": "^7.18.6" + "@babel/traverse": "^7.18.9", + "@babel/types": "^7.18.9" } }, "@babel/helpers": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.18.6.tgz", - "integrity": "sha512-vzSiiqbQOghPngUYt/zWGvK3LAsPhz55vc9XNN0xAl2gV4ieShI2OQli5duxWHD+72PZPTKAcfcZDE1Cwc5zsQ==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.18.9.tgz", + "integrity": "sha512-Jf5a+rbrLoR4eNdUmnFu8cN5eNJT6qdTdOg5IHIzq87WwyRw9PwguLFOWYgktN/60IP4fgDUawJvs7PjQIzELQ==", "requires": { "@babel/template": "^7.18.6", - "@babel/traverse": "^7.18.6", - "@babel/types": "^7.18.6" + "@babel/traverse": "^7.18.9", + "@babel/types": "^7.18.9" } }, "@babel/highlight": { @@ -404,9 +404,9 @@ } }, "@babel/parser": { - "version": "7.18.8", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.18.8.tgz", - "integrity": "sha512-RSKRfYX20dyH+elbJK2uqAkVyucL+xXzhqlMD5/ZXx+dAAwpyB7HsvnHe/ZUGOF+xLr5Wx9/JoXVTj6BQE2/oA==" + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.18.9.tgz", + "integrity": "sha512-9uJveS9eY9DJ0t64YbIBZICtJy8a5QrDEVdiLCG97fVLpDTpGX7t8mMSb6OWw6Lrnjqj4O8zwjELX3dhoMgiBg==" }, "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": { "version": "7.18.6", @@ -417,13 +417,13 @@ } }, "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.18.6.tgz", - "integrity": "sha512-Udgu8ZRgrBrttVz6A0EVL0SJ1z+RLbIeqsu632SA1hf0awEppD6TvdznoH+orIF8wtFFAV/Enmw9Y+9oV8TQcw==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.18.9.tgz", + "integrity": "sha512-AHrP9jadvH7qlOj6PINbgSuphjQUAK7AOT7DPjBo9EHoLhQTnnK5u45e1Hd4DbSQEO9nqPWtQ89r+XEOWFScKg==", "requires": { - "@babel/helper-plugin-utils": "^7.18.6", - "@babel/helper-skip-transparent-expression-wrappers": "^7.18.6", - "@babel/plugin-proposal-optional-chaining": "^7.18.6" + "@babel/helper-plugin-utils": "^7.18.9", + "@babel/helper-skip-transparent-expression-wrappers": "^7.18.9", + "@babel/plugin-proposal-optional-chaining": "^7.18.9" } }, "@babel/plugin-proposal-async-generator-functions": { @@ -466,11 +466,11 @@ } }, "@babel/plugin-proposal-export-namespace-from": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.18.6.tgz", - "integrity": "sha512-zr/QcUlUo7GPo6+X1wC98NJADqmy5QTFWWhqeQWiki4XHafJtLl/YMGkmRB2szDD2IYJCCdBTd4ElwhId9T7Xw==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.18.9.tgz", + "integrity": "sha512-k1NtHyOMvlDDFeb9G5PhUXuGj8m/wiwojgQVEhJ/fsVsMCpLyOP4h0uGEjYJKrRI+EVPlb5Jk+Gt9P97lOGwtA==", "requires": { - "@babel/helper-plugin-utils": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.9", "@babel/plugin-syntax-export-namespace-from": "^7.8.3" } }, @@ -484,11 +484,11 @@ } }, "@babel/plugin-proposal-logical-assignment-operators": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.18.6.tgz", - "integrity": "sha512-zMo66azZth/0tVd7gmkxOkOjs2rpHyhpcFo565PUP37hSp6hSd9uUKIfTDFMz58BwqgQKhJ9YxtM5XddjXVn+Q==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.18.9.tgz", + "integrity": "sha512-128YbMpjCrP35IOExw2Fq+x55LMP42DzhOhX2aNNIdI9avSWl2PI0yuBWarr3RYpZBSPtabfadkH2yeRiMD61Q==", "requires": { - "@babel/helper-plugin-utils": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.9", "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4" } }, @@ -511,15 +511,15 @@ } }, "@babel/plugin-proposal-object-rest-spread": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.18.6.tgz", - "integrity": "sha512-9yuM6wr4rIsKa1wlUAbZEazkCrgw2sMPEXCr4Rnwetu7cEW1NydkCWytLuYletbf8vFxdJxFhwEZqMpOx2eZyw==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.18.9.tgz", + "integrity": "sha512-kDDHQ5rflIeY5xl69CEqGEZ0KY369ehsCIEbTGb4siHG5BE9sga/T0r0OUwyZNLMmZE79E1kbsqAjwFCW4ds6Q==", "requires": { - "@babel/compat-data": "^7.18.6", - "@babel/helper-compilation-targets": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6", + "@babel/compat-data": "^7.18.8", + "@babel/helper-compilation-targets": "^7.18.9", + "@babel/helper-plugin-utils": "^7.18.9", "@babel/plugin-syntax-object-rest-spread": "^7.8.3", - "@babel/plugin-transform-parameters": "^7.18.6" + "@babel/plugin-transform-parameters": "^7.18.8" } }, "@babel/plugin-proposal-optional-catch-binding": { @@ -532,12 +532,12 @@ } }, "@babel/plugin-proposal-optional-chaining": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.18.6.tgz", - "integrity": "sha512-PatI6elL5eMzoypFAiYDpYQyMtXTn+iMhuxxQt5mAXD4fEmKorpSI3PHd+i3JXBJN3xyA6MvJv7at23HffFHwA==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.18.9.tgz", + "integrity": "sha512-v5nwt4IqBXihxGsW2QmCWMDS3B3bzGIk/EQVZz2ei7f3NJl8NzAJVvUmpDW5q1CRNY+Beb/k58UAH1Km1N411w==", "requires": { - "@babel/helper-plugin-utils": "^7.18.6", - "@babel/helper-skip-transparent-expression-wrappers": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.9", + "@babel/helper-skip-transparent-expression-wrappers": "^7.18.9", "@babel/plugin-syntax-optional-chaining": "^7.8.3" } }, @@ -741,42 +741,42 @@ } }, "@babel/plugin-transform-block-scoping": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.18.6.tgz", - "integrity": "sha512-pRqwb91C42vs1ahSAWJkxOxU1RHWDn16XAa6ggQ72wjLlWyYeAcLvTtE0aM8ph3KNydy9CQF2nLYcjq1WysgxQ==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.18.9.tgz", + "integrity": "sha512-5sDIJRV1KtQVEbt/EIBwGy4T01uYIo4KRB3VUqzkhrAIOGx7AoctL9+Ux88btY0zXdDyPJ9mW+bg+v+XEkGmtw==", "requires": { - "@babel/helper-plugin-utils": "^7.18.6" + "@babel/helper-plugin-utils": "^7.18.9" } }, "@babel/plugin-transform-classes": { - "version": "7.18.8", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.18.8.tgz", - "integrity": "sha512-RySDoXdF6hgHSHuAW4aLGyVQdmvEX/iJtjVre52k0pxRq4hzqze+rAVP++NmNv596brBpYmaiKgTZby7ziBnVg==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.18.9.tgz", + "integrity": "sha512-EkRQxsxoytpTlKJmSPYrsOMjCILacAjtSVkd4gChEe2kXjFCun3yohhW5I7plXJhCemM0gKsaGMcO8tinvCA5g==", "requires": { "@babel/helper-annotate-as-pure": "^7.18.6", - "@babel/helper-environment-visitor": "^7.18.6", - "@babel/helper-function-name": "^7.18.6", + "@babel/helper-environment-visitor": "^7.18.9", + "@babel/helper-function-name": "^7.18.9", "@babel/helper-optimise-call-expression": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6", - "@babel/helper-replace-supers": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.9", + "@babel/helper-replace-supers": "^7.18.9", "@babel/helper-split-export-declaration": "^7.18.6", "globals": "^11.1.0" } }, "@babel/plugin-transform-computed-properties": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.18.6.tgz", - "integrity": "sha512-9repI4BhNrR0KenoR9vm3/cIc1tSBIo+u1WVjKCAynahj25O8zfbiE6JtAtHPGQSs4yZ+bA8mRasRP+qc+2R5A==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.18.9.tgz", + "integrity": "sha512-+i0ZU1bCDymKakLxn5srGHrsAPRELC2WIbzwjLhHW9SIE1cPYkLCL0NlnXMZaM1vhfgA2+M7hySk42VBvrkBRw==", "requires": { - "@babel/helper-plugin-utils": "^7.18.6" + "@babel/helper-plugin-utils": "^7.18.9" } }, "@babel/plugin-transform-destructuring": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.18.6.tgz", - "integrity": "sha512-tgy3u6lRp17ilY8r1kP4i2+HDUwxlVqq3RTc943eAWSzGgpU1qhiKpqZ5CMyHReIYPHdo3Kg8v8edKtDqSVEyQ==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.18.9.tgz", + "integrity": "sha512-p5VCYNddPLkZTq4XymQIaIfZNJwT9YsjkPOhkVEqt6QIpQFZVM9IltqqYpOEkJoN1DPznmxUDyZ5CTZs/ZCuHA==", "requires": { - "@babel/helper-plugin-utils": "^7.18.6" + "@babel/helper-plugin-utils": "^7.18.9" } }, "@babel/plugin-transform-dotall-regex": { @@ -789,11 +789,11 @@ } }, "@babel/plugin-transform-duplicate-keys": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.18.6.tgz", - "integrity": "sha512-NJU26U/208+sxYszf82nmGYqVF9QN8py2HFTblPT9hbawi8+1C5a9JubODLTGFuT0qlkqVinmkwOD13s0sZktg==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.18.9.tgz", + "integrity": "sha512-d2bmXCtZXYc59/0SanQKbiWINadaJXqtvIQIzd4+hNwkWBgyCd5F/2t1kXoUdvPMrxzPvhK6EMQRROxsue+mfw==", "requires": { - "@babel/helper-plugin-utils": "^7.18.6" + "@babel/helper-plugin-utils": "^7.18.9" } }, "@babel/plugin-transform-exponentiation-operator": { @@ -806,11 +806,11 @@ } }, "@babel/plugin-transform-flow-strip-types": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.18.6.tgz", - "integrity": "sha512-wE0xtA7csz+hw4fKPwxmu5jnzAsXPIO57XnRwzXP3T19jWh1BODnPGoG9xKYwvAwusP7iUktHayRFbMPGtODaQ==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.18.9.tgz", + "integrity": "sha512-+G6rp2zRuOAInY5wcggsx4+QVao1qPM0osC9fTUVlAV3zOrzTCnrMAFVnR6+a3T8wz1wFIH7KhYMcMB3u1n80A==", "requires": { - "@babel/helper-plugin-utils": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.9", "@babel/plugin-syntax-flow": "^7.18.6" } }, @@ -823,21 +823,21 @@ } }, "@babel/plugin-transform-function-name": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.18.6.tgz", - "integrity": "sha512-kJha/Gbs5RjzIu0CxZwf5e3aTTSlhZnHMT8zPWnJMjNpLOUgqevg+PN5oMH68nMCXnfiMo4Bhgxqj59KHTlAnA==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.18.9.tgz", + "integrity": "sha512-WvIBoRPaJQ5yVHzcnJFor7oS5Ls0PYixlTYE63lCj2RtdQEl15M68FXQlxnG6wdraJIXRdR7KI+hQ7q/9QjrCQ==", "requires": { - "@babel/helper-compilation-targets": "^7.18.6", - "@babel/helper-function-name": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6" + "@babel/helper-compilation-targets": "^7.18.9", + "@babel/helper-function-name": "^7.18.9", + "@babel/helper-plugin-utils": "^7.18.9" } }, "@babel/plugin-transform-literals": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.18.6.tgz", - "integrity": "sha512-x3HEw0cJZVDoENXOp20HlypIHfl0zMIhMVZEBVTfmqbObIpsMxMbmU5nOEO8R7LYT+z5RORKPlTI5Hj4OsO9/Q==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.18.9.tgz", + "integrity": "sha512-IFQDSRoTPnrAIrI5zoZv73IFeZu2dhu6irxQjY9rNjTT53VmKg9fenjvoiOWOkJ6mm4jKVPtdMzBY98Fp4Z4cg==", "requires": { - "@babel/helper-plugin-utils": "^7.18.6" + "@babel/helper-plugin-utils": "^7.18.9" } }, "@babel/plugin-transform-member-expression-literals": { @@ -870,13 +870,13 @@ } }, "@babel/plugin-transform-modules-systemjs": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.18.6.tgz", - "integrity": "sha512-UbPYpXxLjTw6w6yXX2BYNxF3p6QY225wcTkfQCy3OMnSlS/C3xGtwUjEzGkldb/sy6PWLiCQ3NbYfjWUTI3t4g==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.18.9.tgz", + "integrity": "sha512-zY/VSIbbqtoRoJKo2cDTewL364jSlZGvn0LKOf9ntbfxOvjfmyrdtEEOAdswOswhZEb8UH3jDkCKHd1sPgsS0A==", "requires": { "@babel/helper-hoist-variables": "^7.18.6", - "@babel/helper-module-transforms": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6", + "@babel/helper-module-transforms": "^7.18.9", + "@babel/helper-plugin-utils": "^7.18.9", "@babel/helper-validator-identifier": "^7.18.6", "babel-plugin-dynamic-import-node": "^2.3.3" } @@ -987,12 +987,12 @@ } }, "@babel/plugin-transform-runtime": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.18.6.tgz", - "integrity": "sha512-8uRHk9ZmRSnWqUgyae249EJZ94b0yAGLBIqzZzl+0iEdbno55Pmlt/32JZsHwXD9k/uZj18Aqqk35wBX4CBTXA==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.18.9.tgz", + "integrity": "sha512-wS8uJwBt7/b/mzE13ktsJdmS4JP/j7PQSaADtnb4I2wL0zK51MQ0pmF8/Jy0wUIS96fr+fXT6S/ifiPXnvrlSg==", "requires": { "@babel/helper-module-imports": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.9", "babel-plugin-polyfill-corejs2": "^0.3.1", "babel-plugin-polyfill-corejs3": "^0.5.2", "babel-plugin-polyfill-regenerator": "^0.3.1", @@ -1015,12 +1015,12 @@ } }, "@babel/plugin-transform-spread": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.18.6.tgz", - "integrity": "sha512-ayT53rT/ENF8WWexIRg9AiV9h0aIteyWn5ptfZTZQrjk/+f3WdrJGCY4c9wcgl2+MKkKPhzbYp97FTsquZpDCw==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.18.9.tgz", + "integrity": "sha512-39Q814wyoOPtIB/qGopNIL9xDChOE1pNU0ZY5dO0owhiVt/5kFm4li+/bBtwc7QotG0u5EPzqhZdjMtmqBqyQA==", "requires": { - "@babel/helper-plugin-utils": "^7.18.6", - "@babel/helper-skip-transparent-expression-wrappers": "^7.18.6" + "@babel/helper-plugin-utils": "^7.18.9", + "@babel/helper-skip-transparent-expression-wrappers": "^7.18.9" } }, "@babel/plugin-transform-sticky-regex": { @@ -1032,19 +1032,19 @@ } }, "@babel/plugin-transform-template-literals": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.18.6.tgz", - "integrity": "sha512-UuqlRrQmT2SWRvahW46cGSany0uTlcj8NYOS5sRGYi8FxPYPoLd5DDmMd32ZXEj2Jq+06uGVQKHxa/hJx2EzKw==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.18.9.tgz", + "integrity": "sha512-S8cOWfT82gTezpYOiVaGHrCbhlHgKhQt8XH5ES46P2XWmX92yisoZywf5km75wv5sYcXDUCLMmMxOLCtthDgMA==", "requires": { - "@babel/helper-plugin-utils": "^7.18.6" + "@babel/helper-plugin-utils": "^7.18.9" } }, "@babel/plugin-transform-typeof-symbol": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.18.6.tgz", - "integrity": "sha512-7m71iS/QhsPk85xSjFPovHPcH3H9qeyzsujhTc+vcdnsXavoWYJ74zx0lP5RhpC5+iDnVLO+PPMHzC11qels1g==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.18.9.tgz", + "integrity": "sha512-SRfwTtF11G2aemAZWivL7PD+C9z52v9EvMqH9BuYbabyPuKUvSWks3oCg6041pT925L4zVFqaVBeECwsmlguEw==", "requires": { - "@babel/helper-plugin-utils": "^7.18.6" + "@babel/helper-plugin-utils": "^7.18.9" } }, "@babel/plugin-transform-typescript": { @@ -1075,28 +1075,28 @@ } }, "@babel/preset-env": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.18.6.tgz", - "integrity": "sha512-WrthhuIIYKrEFAwttYzgRNQ5hULGmwTj+D6l7Zdfsv5M7IWV/OZbUfbeL++Qrzx1nVJwWROIFhCHRYQV4xbPNw==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.18.9.tgz", + "integrity": "sha512-75pt/q95cMIHWssYtyfjVlvI+QEZQThQbKvR9xH+F/Agtw/s4Wfc2V9Bwd/P39VtixB7oWxGdH4GteTTwYJWMg==", "requires": { - "@babel/compat-data": "^7.18.6", - "@babel/helper-compilation-targets": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6", + "@babel/compat-data": "^7.18.8", + "@babel/helper-compilation-targets": "^7.18.9", + "@babel/helper-plugin-utils": "^7.18.9", "@babel/helper-validator-option": "^7.18.6", "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "^7.18.6", - "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.18.6", + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.18.9", "@babel/plugin-proposal-async-generator-functions": "^7.18.6", "@babel/plugin-proposal-class-properties": "^7.18.6", "@babel/plugin-proposal-class-static-block": "^7.18.6", "@babel/plugin-proposal-dynamic-import": "^7.18.6", - "@babel/plugin-proposal-export-namespace-from": "^7.18.6", + "@babel/plugin-proposal-export-namespace-from": "^7.18.9", "@babel/plugin-proposal-json-strings": "^7.18.6", - "@babel/plugin-proposal-logical-assignment-operators": "^7.18.6", + "@babel/plugin-proposal-logical-assignment-operators": "^7.18.9", "@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6", "@babel/plugin-proposal-numeric-separator": "^7.18.6", - "@babel/plugin-proposal-object-rest-spread": "^7.18.6", + "@babel/plugin-proposal-object-rest-spread": "^7.18.9", "@babel/plugin-proposal-optional-catch-binding": "^7.18.6", - "@babel/plugin-proposal-optional-chaining": "^7.18.6", + "@babel/plugin-proposal-optional-chaining": "^7.18.9", "@babel/plugin-proposal-private-methods": "^7.18.6", "@babel/plugin-proposal-private-property-in-object": "^7.18.6", "@babel/plugin-proposal-unicode-property-regex": "^7.18.6", @@ -1118,37 +1118,37 @@ "@babel/plugin-transform-arrow-functions": "^7.18.6", "@babel/plugin-transform-async-to-generator": "^7.18.6", "@babel/plugin-transform-block-scoped-functions": "^7.18.6", - "@babel/plugin-transform-block-scoping": "^7.18.6", - "@babel/plugin-transform-classes": "^7.18.6", - "@babel/plugin-transform-computed-properties": "^7.18.6", - "@babel/plugin-transform-destructuring": "^7.18.6", + "@babel/plugin-transform-block-scoping": "^7.18.9", + "@babel/plugin-transform-classes": "^7.18.9", + "@babel/plugin-transform-computed-properties": "^7.18.9", + "@babel/plugin-transform-destructuring": "^7.18.9", "@babel/plugin-transform-dotall-regex": "^7.18.6", - "@babel/plugin-transform-duplicate-keys": "^7.18.6", + "@babel/plugin-transform-duplicate-keys": "^7.18.9", "@babel/plugin-transform-exponentiation-operator": "^7.18.6", - "@babel/plugin-transform-for-of": "^7.18.6", - "@babel/plugin-transform-function-name": "^7.18.6", - "@babel/plugin-transform-literals": "^7.18.6", + "@babel/plugin-transform-for-of": "^7.18.8", + "@babel/plugin-transform-function-name": "^7.18.9", + "@babel/plugin-transform-literals": "^7.18.9", "@babel/plugin-transform-member-expression-literals": "^7.18.6", "@babel/plugin-transform-modules-amd": "^7.18.6", "@babel/plugin-transform-modules-commonjs": "^7.18.6", - "@babel/plugin-transform-modules-systemjs": "^7.18.6", + "@babel/plugin-transform-modules-systemjs": "^7.18.9", "@babel/plugin-transform-modules-umd": "^7.18.6", "@babel/plugin-transform-named-capturing-groups-regex": "^7.18.6", "@babel/plugin-transform-new-target": "^7.18.6", "@babel/plugin-transform-object-super": "^7.18.6", - "@babel/plugin-transform-parameters": "^7.18.6", + "@babel/plugin-transform-parameters": "^7.18.8", "@babel/plugin-transform-property-literals": "^7.18.6", "@babel/plugin-transform-regenerator": "^7.18.6", "@babel/plugin-transform-reserved-words": "^7.18.6", "@babel/plugin-transform-shorthand-properties": "^7.18.6", - "@babel/plugin-transform-spread": "^7.18.6", + "@babel/plugin-transform-spread": "^7.18.9", "@babel/plugin-transform-sticky-regex": "^7.18.6", - "@babel/plugin-transform-template-literals": "^7.18.6", - "@babel/plugin-transform-typeof-symbol": "^7.18.6", + "@babel/plugin-transform-template-literals": "^7.18.9", + "@babel/plugin-transform-typeof-symbol": "^7.18.9", "@babel/plugin-transform-unicode-escapes": "^7.18.6", "@babel/plugin-transform-unicode-regex": "^7.18.6", "@babel/preset-modules": "^0.1.5", - "@babel/types": "^7.18.6", + "@babel/types": "^7.18.9", "babel-plugin-polyfill-corejs2": "^0.3.1", "babel-plugin-polyfill-corejs3": "^0.5.2", "babel-plugin-polyfill-regenerator": "^0.3.1", @@ -1207,9 +1207,9 @@ } }, "@babel/runtime-corejs3": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/runtime-corejs3/-/runtime-corejs3-7.18.6.tgz", - "integrity": "sha512-cOu5wH2JFBgMjje+a+fz2JNIWU4GzYpl05oSob3UDvBEh6EuIn+TXFHMmBbhSb+k/4HMzgKCQfEEDArAWNF9Cw==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/runtime-corejs3/-/runtime-corejs3-7.18.9.tgz", + "integrity": "sha512-qZEWeccZCrHA2Au4/X05QW5CMdm4VjUDCrGq5gf1ZDcM4hRqreKrtwAn7yci9zfgAS9apvnsFXiGBHBAxZdK9A==", "requires": { "core-js-pure": "^3.20.2", "regenerator-runtime": "^0.13.4" @@ -1226,18 +1226,18 @@ } }, "@babel/traverse": { - "version": "7.18.8", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.18.8.tgz", - "integrity": "sha512-UNg/AcSySJYR/+mIcJQDCv00T+AqRO7j/ZEJLzpaYtgM48rMg5MnkJgyNqkzo88+p4tfRvZJCEiwwfG6h4jkRg==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.18.9.tgz", + "integrity": "sha512-LcPAnujXGwBgv3/WHv01pHtb2tihcyW1XuL9wd7jqh1Z8AQkTd+QVjMrMijrln0T7ED3UXLIy36P9Ao7W75rYg==", "requires": { "@babel/code-frame": "^7.18.6", - "@babel/generator": "^7.18.7", - "@babel/helper-environment-visitor": "^7.18.6", - "@babel/helper-function-name": "^7.18.6", + "@babel/generator": "^7.18.9", + "@babel/helper-environment-visitor": "^7.18.9", + "@babel/helper-function-name": "^7.18.9", "@babel/helper-hoist-variables": "^7.18.6", "@babel/helper-split-export-declaration": "^7.18.6", - "@babel/parser": "^7.18.8", - "@babel/types": "^7.18.8", + "@babel/parser": "^7.18.9", + "@babel/types": "^7.18.9", "debug": "^4.1.0", "globals": "^11.1.0" }, @@ -1253,9 +1253,9 @@ } }, "@babel/types": { - "version": "7.18.8", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.8.tgz", - "integrity": "sha512-qwpdsmraq0aJ3osLJRApsc2ouSJCdnMeZwB0DhbtHAtRpZNZCdlbRnHIgcRKzdE1g0iOGg644fzjOBcdOz9cPw==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.9.tgz", + "integrity": "sha512-WwMLAg2MvJmt/rKEVQBBhIVffMmnilX4oe0sRe7iPOHIGsqpruFHHdrfj4O1CMMtgMtCU4oPafZjDPCRgO57Wg==", "requires": { "@babel/helper-validator-identifier": "^7.18.6", "to-fast-properties": "^2.0.0" @@ -1317,238 +1317,37 @@ } }, "@gatsbyjs/parcel-namer-relative-to-cwd": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/@gatsbyjs/parcel-namer-relative-to-cwd/-/parcel-namer-relative-to-cwd-1.3.2.tgz", - "integrity": "sha512-jiYGiq8Zk21x2IIWbsLQ0GqgGJyKjj+/4jYwr5msD5ORB/JAZLk4IDrMKZ9rFXkNPq/bRV57ub0k/NvRMELfLQ==", + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/@gatsbyjs/parcel-namer-relative-to-cwd/-/parcel-namer-relative-to-cwd-1.4.0.tgz", + "integrity": "sha512-oXhiaPtYTGYqGZlazYRUabWVHWx5z6sAyBVLhUnpsKcBsK815cET+mjeWDKpmvJmFTKHC72Bvy1WIEnW3++YxA==", "requires": { "@babel/runtime": "^7.18.0", "@parcel/namer-default": "2.6.2", - "@parcel/plugin": "2.6.0", - "gatsby-core-utils": "^3.18.1" + "@parcel/plugin": "2.6.2", + "gatsby-core-utils": "^3.19.0" }, "dependencies": { - "@lmdb/lmdb-darwin-arm64": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-arm64/-/lmdb-darwin-arm64-2.5.2.tgz", - "integrity": "sha512-+F8ioQIUN68B4UFiIBYu0QQvgb9FmlKw2ctQMSBfW2QBrZIxz9vD9jCGqTCPqZBRbPHAS/vG1zSXnKqnS2ch/A==", - "optional": true - }, - "@lmdb/lmdb-darwin-x64": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-x64/-/lmdb-darwin-x64-2.5.2.tgz", - "integrity": "sha512-KvPH56KRLLx4KSfKBx0m1r7GGGUMXm0jrKmNE7plbHlesZMuPJICtn07HYgQhj1LNsK7Yqwuvnqh1QxhJnF1EA==", - "optional": true - }, - "@lmdb/lmdb-linux-arm": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm/-/lmdb-linux-arm-2.5.2.tgz", - "integrity": "sha512-5kQAP21hAkfW5Bl+e0P57dV4dGYnkNIpR7f/GAh6QHlgXx+vp/teVj4PGRZaKAvt0GX6++N6hF8NnGElLDuIDw==", - "optional": true - }, - "@lmdb/lmdb-linux-arm64": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm64/-/lmdb-linux-arm64-2.5.2.tgz", - "integrity": "sha512-aLl89VHL/wjhievEOlPocoefUyWdvzVrcQ/MHQYZm2JfV1jUsrbr/ZfkPPUFvZBf+VSE+Q0clWs9l29PCX1hTQ==", - "optional": true - }, - "@lmdb/lmdb-linux-x64": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-x64/-/lmdb-linux-x64-2.5.2.tgz", - "integrity": "sha512-xUdUfwDJLGjOUPH3BuPBt0NlIrR7f/QHKgu3GZIXswMMIihAekj2i97oI0iWG5Bok/b+OBjHPfa8IU9velnP/Q==", - "optional": true - }, - "@lmdb/lmdb-win32-x64": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-win32-x64/-/lmdb-win32-x64-2.5.2.tgz", - "integrity": "sha512-zrBczSbXKxEyK2ijtbRdICDygRqWSRPpZMN5dD1T8VMEW5RIhIbwFWw2phDRXuBQdVDpSjalCIUMWMV2h3JaZA==", - "optional": true - }, - "@parcel/cache": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/@parcel/cache/-/cache-2.6.2.tgz", - "integrity": "sha512-hhJ6AsEGybeQZd9c/GYqfcKTgZKQXu3Xih6TlnP3gdR3KZoJOnb40ovHD1yYg4COvfcXThKP1cVJ18J6rcv3IA==", - "requires": { - "@parcel/fs": "2.6.2", - "@parcel/logger": "2.6.2", - "@parcel/utils": "2.6.2", - "lmdb": "2.5.2" - } - }, - "@parcel/codeframe": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/@parcel/codeframe/-/codeframe-2.6.2.tgz", - "integrity": "sha512-oFlHr6HCaYYsB4SHkU+gn9DKtbzvv3/4NdwMX0/6NAKyYVI7inEsXyPGw2Bbd2ZCFatW9QJZUETF0etvh5AEfQ==", - "requires": { - "chalk": "^4.1.0" - } - }, - "@parcel/diagnostic": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/@parcel/diagnostic/-/diagnostic-2.6.2.tgz", - "integrity": "sha512-3ODSBkKVihENU763z1/1DhGAWFhYWRxOCOShC72KXp+GFnSgGiBsxclu8NBa/N948Rzp8lqQI8U1nLcKkh0O/w==", - "requires": { - "@mischnic/json-sourcemap": "^0.1.0", - "nullthrows": "^1.1.1" - } - }, - "@parcel/events": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/@parcel/events/-/events-2.6.2.tgz", - "integrity": "sha512-IaCjOeA5ercdFVi1EZOmUHhGfIysmCUgc2Th9hMugSFO0I3GzRsBcAdP6XPfWm+TV6sQ/qZRfdk/drUxoAupnw==" - }, - "@parcel/fs": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/@parcel/fs/-/fs-2.6.2.tgz", - "integrity": "sha512-mIhqdF3tjgeoIGqW7Nc/xfM2ClID7o8livwUe5lpQEP+ZaIBiMigXs6ckv3WToCACK+3uylrSD2A/HmlhrxMqQ==", - "requires": { - "@parcel/fs-search": "2.6.2", - "@parcel/types": "2.6.2", - "@parcel/utils": "2.6.2", - "@parcel/watcher": "^2.0.0", - "@parcel/workers": "2.6.2" - } - }, - "@parcel/fs-search": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/@parcel/fs-search/-/fs-search-2.6.2.tgz", - "integrity": "sha512-4STid1zqtGnmGjHD/2TG2g/zPDiCTtE3IAS24QYH3eiUAz2uoKGgEqd2tZbZ2yI96jtCuIhC1bzVu8Hbykls7w==", - "requires": { - "detect-libc": "^1.0.3" - } - }, - "@parcel/hash": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/@parcel/hash/-/hash-2.6.2.tgz", - "integrity": "sha512-tFB+cJU1Wqag6WyJgsmx3nx+xhmjcNZqtWh/MtK1lHNnZdDRk6bjr7SapnygBwruz+SmSt5bbdVThcpk2dRCcA==", - "requires": { - "detect-libc": "^1.0.3", - "xxhash-wasm": "^0.4.2" - } - }, - "@parcel/logger": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/@parcel/logger/-/logger-2.6.2.tgz", - "integrity": "sha512-Sz5YGCj1DbEiX0/G8Uw97LLZ0uEK+qtWcRAkHNpJpeMiSqDiRNevxXltz42EcLo+oCh4d4wyiVzwi9mNwzhS/Q==", - "requires": { - "@parcel/diagnostic": "2.6.2", - "@parcel/events": "2.6.2" - } - }, - "@parcel/markdown-ansi": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/@parcel/markdown-ansi/-/markdown-ansi-2.6.2.tgz", - "integrity": "sha512-N/h9J4eibhc+B+krzvPMzFUWL37GudBIZBa7XSLkcuH6MnYYfh6rrMvhIyyESwk6VkcZNVzAeZrGQqxEs0dHDQ==", - "requires": { - "chalk": "^4.1.0" - } - }, - "@parcel/namer-default": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/@parcel/namer-default/-/namer-default-2.6.2.tgz", - "integrity": "sha512-mp7bx/BQaIuohmZP0uE+gAmDBzzH0Yu8F4yCtE611lc6i0mou+nWRhzyKLNC/ieuI8DB3BFh2QQKeTxJn4W0qg==", - "requires": { - "@parcel/diagnostic": "2.6.2", - "@parcel/plugin": "2.6.2", - "nullthrows": "^1.1.1" - }, - "dependencies": { - "@parcel/plugin": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/@parcel/plugin/-/plugin-2.6.2.tgz", - "integrity": "sha512-wbbWsM23Pr+8xtLSvf+UopXdVYlpKCCx6PuuZaZcKo+9IcDCWoGXD4M8Kkz14qBmkFn5uM00mULUqmVdSibB2w==", - "requires": { - "@parcel/types": "2.6.2" - } - } - } - }, - "@parcel/package-manager": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/@parcel/package-manager/-/package-manager-2.6.2.tgz", - "integrity": "sha512-xGMqTgnwTE3rgzYwUZMKxR8fzmP5iSYz/gj2H8FR3pEmwh/8xCMtNjTSth+hPVGuqgRZ6JxwpfdY/fXdZ61ViQ==", - "requires": { - "@parcel/diagnostic": "2.6.2", - "@parcel/fs": "2.6.2", - "@parcel/logger": "2.6.2", - "@parcel/types": "2.6.2", - "@parcel/utils": "2.6.2", - "@parcel/workers": "2.6.2", - "semver": "^5.7.1" - } - }, - "@parcel/types": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/@parcel/types/-/types-2.6.2.tgz", - "integrity": "sha512-MV8BFpCIs2jMUvK2RHqzkoiuOQ//JIbrD1zocA2YRW3zuPL/iABvbAABJoXpoPCKikVWOoCWASgBfWQo26VvJQ==", - "requires": { - "@parcel/cache": "2.6.2", - "@parcel/diagnostic": "2.6.2", - "@parcel/fs": "2.6.2", - "@parcel/package-manager": "2.6.2", - "@parcel/source-map": "^2.0.0", - "@parcel/workers": "2.6.2", - "utility-types": "^3.10.0" - } - }, - "@parcel/utils": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/@parcel/utils/-/utils-2.6.2.tgz", - "integrity": "sha512-Ug7hpRxjgbY5AopW55nY7MmGMVmwmN+ihfCmxJkBUoESTG/3iq8uME7GjyOgW5DkQc2K7q62i8y8N0wCJT1u4Q==", + "gatsby-core-utils": { + "version": "3.19.0", + "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.19.0.tgz", + "integrity": "sha512-cjXs9DsXkPZt+UdiLHxtq+rGMGVrcnM0KwkawlruvPchI7lqGNv9CScqlvYPxx1dBhu3zSZS26EBALMlFhyOJA==", "requires": { - "@parcel/codeframe": "2.6.2", - "@parcel/diagnostic": "2.6.2", - "@parcel/hash": "2.6.2", - "@parcel/logger": "2.6.2", - "@parcel/markdown-ansi": "2.6.2", - "@parcel/source-map": "^2.0.0", - "chalk": "^4.1.0" - } - }, - "@parcel/workers": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/@parcel/workers/-/workers-2.6.2.tgz", - "integrity": "sha512-wBgUjJQm+lDd12fPRUmk09+ujTA9DgwPdqylSFK0OtI/yT6A+2kArUqjp8IwWo2tCJXoMzXBne2XQIWKqMiN4Q==", - "requires": { - "@parcel/diagnostic": "2.6.2", - "@parcel/logger": "2.6.2", - "@parcel/types": "2.6.2", - "@parcel/utils": "2.6.2", - "chrome-trace-event": "^1.0.2", - "nullthrows": "^1.1.1" - } - }, - "lmdb": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/lmdb/-/lmdb-2.5.2.tgz", - "integrity": "sha512-V5V5Xa2Hp9i2XsbDALkBTeHXnBXh/lEmk9p22zdr7jtuOIY9TGhjK6vAvTpOOx9IKU4hJkRWZxn/HsvR1ELLtA==", - "requires": { - "@lmdb/lmdb-darwin-arm64": "2.5.2", - "@lmdb/lmdb-darwin-x64": "2.5.2", - "@lmdb/lmdb-linux-arm": "2.5.2", - "@lmdb/lmdb-linux-arm64": "2.5.2", - "@lmdb/lmdb-linux-x64": "2.5.2", - "@lmdb/lmdb-win32-x64": "2.5.2", - "msgpackr": "^1.5.4", - "node-addon-api": "^4.3.0", - "node-gyp-build-optional-packages": "5.0.3", - "ordered-binary": "^1.2.4", - "weak-lru-cache": "^1.2.2" + "@babel/runtime": "^7.15.4", + "ci-info": "2.0.0", + "configstore": "^5.0.1", + "fastq": "^1.13.0", + "file-type": "^16.5.3", + "fs-extra": "^10.1.0", + "got": "^11.8.5", + "import-from": "^4.0.0", + "lmdb": "2.5.3", + "lock": "^1.1.0", + "node-object-hash": "^2.3.10", + "proper-lockfile": "^4.1.2", + "resolve-from": "^5.0.0", + "tmp": "^0.2.1", + "xdg-basedir": "^4.0.0" } - }, - "node-addon-api": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-4.3.0.tgz", - "integrity": "sha512-73sE9+3UaLYYFmDsFZnqCInzPyh3MqIwZO9cw58yIqAZhONrrabrYyYe3TuIqtIiOuTXVhsGau8hcrhhwSsDIQ==" - }, - "node-gyp-build-optional-packages": { - "version": "5.0.3", - "resolved": "https://registry.npmjs.org/node-gyp-build-optional-packages/-/node-gyp-build-optional-packages-5.0.3.tgz", - "integrity": "sha512-k75jcVzk5wnnc/FMxsf4udAoTEUv2jY3ycfdSd3yWu6Cnd1oee6/CfZJApyscA4FJOmdoixWwiwOyf16RzD5JA==" - }, - "semver": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", - "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==" } } }, @@ -2596,43 +2395,78 @@ } }, "@parcel/bundler-default": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/bundler-default/-/bundler-default-2.6.0.tgz", - "integrity": "sha512-AplEdGm/odV7yGmoeOnglxnY31WlNB5EqGLFGxkgs7uwDaTWoTX/9SWPG6xfvirhjDpms8sLSiVuBdFRCCLtNA==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/bundler-default/-/bundler-default-2.6.2.tgz", + "integrity": "sha512-XIa3had/MIaTGgRFkHApXwytYs77k4geaNcmlb6nzmAABcYjW1CLYh83Zt0AbzLFsDT9ZcRY3u2UjhNf6efSaw==", "requires": { - "@parcel/diagnostic": "2.6.0", - "@parcel/hash": "2.6.0", - "@parcel/plugin": "2.6.0", - "@parcel/utils": "2.6.0", + "@parcel/diagnostic": "2.6.2", + "@parcel/hash": "2.6.2", + "@parcel/plugin": "2.6.2", + "@parcel/utils": "2.6.2", "nullthrows": "^1.1.1" } }, "@parcel/cache": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/cache/-/cache-2.6.0.tgz", - "integrity": "sha512-4vbD5uSuf+kRnrFesKhpn0AKnOw8u2UlvCyrplYmp1g9bNAkIooC/nDGdmkb/9SviPEbni9PEanQEHDU2+slpA==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/cache/-/cache-2.6.2.tgz", + "integrity": "sha512-hhJ6AsEGybeQZd9c/GYqfcKTgZKQXu3Xih6TlnP3gdR3KZoJOnb40ovHD1yYg4COvfcXThKP1cVJ18J6rcv3IA==", "requires": { - "@parcel/fs": "2.6.0", - "@parcel/logger": "2.6.0", - "@parcel/utils": "2.6.0", - "lmdb": "2.3.10" + "@parcel/fs": "2.6.2", + "@parcel/logger": "2.6.2", + "@parcel/utils": "2.6.2", + "lmdb": "2.5.2" }, "dependencies": { + "@lmdb/lmdb-darwin-arm64": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-arm64/-/lmdb-darwin-arm64-2.5.2.tgz", + "integrity": "sha512-+F8ioQIUN68B4UFiIBYu0QQvgb9FmlKw2ctQMSBfW2QBrZIxz9vD9jCGqTCPqZBRbPHAS/vG1zSXnKqnS2ch/A==", + "optional": true + }, + "@lmdb/lmdb-darwin-x64": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-x64/-/lmdb-darwin-x64-2.5.2.tgz", + "integrity": "sha512-KvPH56KRLLx4KSfKBx0m1r7GGGUMXm0jrKmNE7plbHlesZMuPJICtn07HYgQhj1LNsK7Yqwuvnqh1QxhJnF1EA==", + "optional": true + }, + "@lmdb/lmdb-linux-arm": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm/-/lmdb-linux-arm-2.5.2.tgz", + "integrity": "sha512-5kQAP21hAkfW5Bl+e0P57dV4dGYnkNIpR7f/GAh6QHlgXx+vp/teVj4PGRZaKAvt0GX6++N6hF8NnGElLDuIDw==", + "optional": true + }, + "@lmdb/lmdb-linux-arm64": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm64/-/lmdb-linux-arm64-2.5.2.tgz", + "integrity": "sha512-aLl89VHL/wjhievEOlPocoefUyWdvzVrcQ/MHQYZm2JfV1jUsrbr/ZfkPPUFvZBf+VSE+Q0clWs9l29PCX1hTQ==", + "optional": true + }, + "@lmdb/lmdb-linux-x64": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-x64/-/lmdb-linux-x64-2.5.2.tgz", + "integrity": "sha512-xUdUfwDJLGjOUPH3BuPBt0NlIrR7f/QHKgu3GZIXswMMIihAekj2i97oI0iWG5Bok/b+OBjHPfa8IU9velnP/Q==", + "optional": true + }, + "@lmdb/lmdb-win32-x64": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-win32-x64/-/lmdb-win32-x64-2.5.2.tgz", + "integrity": "sha512-zrBczSbXKxEyK2ijtbRdICDygRqWSRPpZMN5dD1T8VMEW5RIhIbwFWw2phDRXuBQdVDpSjalCIUMWMV2h3JaZA==", + "optional": true + }, "lmdb": { - "version": "2.3.10", - "resolved": "https://registry.npmjs.org/lmdb/-/lmdb-2.3.10.tgz", - "integrity": "sha512-GtH+nStn9V59CfYeQ5ddx6YTfuFCmu86UJojIjJAweG+/Fm0PDknuk3ovgYDtY/foMeMdZa8/P7oSljW/d5UPw==", - "requires": { - "lmdb-darwin-arm64": "2.3.10", - "lmdb-darwin-x64": "2.3.10", - "lmdb-linux-arm": "2.3.10", - "lmdb-linux-arm64": "2.3.10", - "lmdb-linux-x64": "2.3.10", - "lmdb-win32-x64": "2.3.10", + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/lmdb/-/lmdb-2.5.2.tgz", + "integrity": "sha512-V5V5Xa2Hp9i2XsbDALkBTeHXnBXh/lEmk9p22zdr7jtuOIY9TGhjK6vAvTpOOx9IKU4hJkRWZxn/HsvR1ELLtA==", + "requires": { + "@lmdb/lmdb-darwin-arm64": "2.5.2", + "@lmdb/lmdb-darwin-x64": "2.5.2", + "@lmdb/lmdb-linux-arm": "2.5.2", + "@lmdb/lmdb-linux-arm64": "2.5.2", + "@lmdb/lmdb-linux-x64": "2.5.2", + "@lmdb/lmdb-win32-x64": "2.5.2", "msgpackr": "^1.5.4", - "nan": "^2.14.2", "node-addon-api": "^4.3.0", - "node-gyp-build-optional-packages": "^4.3.2", + "node-gyp-build-optional-packages": "5.0.3", "ordered-binary": "^1.2.4", "weak-lru-cache": "^1.2.2" } @@ -2645,40 +2479,40 @@ } }, "@parcel/codeframe": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/codeframe/-/codeframe-2.6.0.tgz", - "integrity": "sha512-yXXxrO9yyedHKpTwC+Af0+vPmQm+A9xeEhkt4f0yVg1n4t4yUIxYlTedzbM8ygZEEBtkXU9jJ+PkgXbfMf0dqw==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/codeframe/-/codeframe-2.6.2.tgz", + "integrity": "sha512-oFlHr6HCaYYsB4SHkU+gn9DKtbzvv3/4NdwMX0/6NAKyYVI7inEsXyPGw2Bbd2ZCFatW9QJZUETF0etvh5AEfQ==", "requires": { "chalk": "^4.1.0" } }, "@parcel/compressor-raw": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/compressor-raw/-/compressor-raw-2.6.0.tgz", - "integrity": "sha512-rtMU2mGl88bic6Xbq1u5L49bMK4s5185b0k7h3JRdS6/0rR+Xp4k/o9Wog+hHjK/s82z1eF9WmET779ZpIDIQQ==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/compressor-raw/-/compressor-raw-2.6.2.tgz", + "integrity": "sha512-P3c8jjV5HVs+fNDjhvq7PtHXNm687nit1iwTS5VAt+ScXKhKBhoIJ56q+9opcw0jnXVjAAgZqcRZ50oAJBGdKw==", "requires": { - "@parcel/plugin": "2.6.0" + "@parcel/plugin": "2.6.2" } }, "@parcel/core": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/core/-/core-2.6.0.tgz", - "integrity": "sha512-8OOWbPuxpFydpwNyKoz6d3e3O4DmxNYmMw4DXwrPSj/jyg7oa+SDtMT0/VXEhujE0HYkQPCHt4npRajkSuf99A==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/core/-/core-2.6.2.tgz", + "integrity": "sha512-JlKS3Ux0ngmdooSBbzQLShHJdsapF9E7TGMo1hFaHRquZip/DaqzvysYrgMJlDuCoLArciq5ei7ZKzGeK9zexA==", "requires": { "@mischnic/json-sourcemap": "^0.1.0", - "@parcel/cache": "2.6.0", - "@parcel/diagnostic": "2.6.0", - "@parcel/events": "2.6.0", - "@parcel/fs": "2.6.0", - "@parcel/graph": "2.6.0", - "@parcel/hash": "2.6.0", - "@parcel/logger": "2.6.0", - "@parcel/package-manager": "2.6.0", - "@parcel/plugin": "2.6.0", + "@parcel/cache": "2.6.2", + "@parcel/diagnostic": "2.6.2", + "@parcel/events": "2.6.2", + "@parcel/fs": "2.6.2", + "@parcel/graph": "2.6.2", + "@parcel/hash": "2.6.2", + "@parcel/logger": "2.6.2", + "@parcel/package-manager": "2.6.2", + "@parcel/plugin": "2.6.2", "@parcel/source-map": "^2.0.0", - "@parcel/types": "2.6.0", - "@parcel/utils": "2.6.0", - "@parcel/workers": "2.6.0", + "@parcel/types": "2.6.2", + "@parcel/utils": "2.6.2", + "@parcel/workers": "2.6.2", "abortcontroller-polyfill": "^1.1.9", "base-x": "^3.0.8", "browserslist": "^4.6.6", @@ -2704,118 +2538,126 @@ } }, "@parcel/diagnostic": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/diagnostic/-/diagnostic-2.6.0.tgz", - "integrity": "sha512-+p8gC2FKxSI2veD7SoaNlP572v4kw+nafCQEPDtJuzYYRqywYUGncch25dkpgNApB4W4cXVkZu3ZbtIpCAmjQQ==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/diagnostic/-/diagnostic-2.6.2.tgz", + "integrity": "sha512-3ODSBkKVihENU763z1/1DhGAWFhYWRxOCOShC72KXp+GFnSgGiBsxclu8NBa/N948Rzp8lqQI8U1nLcKkh0O/w==", "requires": { "@mischnic/json-sourcemap": "^0.1.0", "nullthrows": "^1.1.1" } }, "@parcel/events": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/events/-/events-2.6.0.tgz", - "integrity": "sha512-2WaKtBs4iYwS88j4zRdyTJTgh8iuY4E32FMmjzzbheqETs6I05gWuPReGukJYxk8vc0Ir7tbzp12oAfpgo0Y+g==" + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/events/-/events-2.6.2.tgz", + "integrity": "sha512-IaCjOeA5ercdFVi1EZOmUHhGfIysmCUgc2Th9hMugSFO0I3GzRsBcAdP6XPfWm+TV6sQ/qZRfdk/drUxoAupnw==" }, "@parcel/fs": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/fs/-/fs-2.6.0.tgz", - "integrity": "sha512-6vxtx5Zy6MvDvH1EPx9JxjKGF03bR7VE1dUf4HLeX2D8YmpL5hkHJnlRCFdcH08rzOVwaJLzg1QNtblWJXQ9CA==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/fs/-/fs-2.6.2.tgz", + "integrity": "sha512-mIhqdF3tjgeoIGqW7Nc/xfM2ClID7o8livwUe5lpQEP+ZaIBiMigXs6ckv3WToCACK+3uylrSD2A/HmlhrxMqQ==", "requires": { - "@parcel/fs-search": "2.6.0", - "@parcel/types": "2.6.0", - "@parcel/utils": "2.6.0", + "@parcel/fs-search": "2.6.2", + "@parcel/types": "2.6.2", + "@parcel/utils": "2.6.2", "@parcel/watcher": "^2.0.0", - "@parcel/workers": "2.6.0" + "@parcel/workers": "2.6.2" } }, "@parcel/fs-search": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/fs-search/-/fs-search-2.6.0.tgz", - "integrity": "sha512-1nXzM3H/cA4kzLKvDBvwmNisKCdRqlgkLXh+OR1Zu28Kn4W34KuJMcHWW8cC+WIuuKqDh5oo2WPsC5y65GXBKQ==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/fs-search/-/fs-search-2.6.2.tgz", + "integrity": "sha512-4STid1zqtGnmGjHD/2TG2g/zPDiCTtE3IAS24QYH3eiUAz2uoKGgEqd2tZbZ2yI96jtCuIhC1bzVu8Hbykls7w==", "requires": { "detect-libc": "^1.0.3" } }, "@parcel/graph": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/graph/-/graph-2.6.0.tgz", - "integrity": "sha512-rxrAzWm6rwbCRPbu0Z+zwMscpG8omffODniVWPlX2G0jgQGpjKsutBQ6RMfFIcfaQ4MzL3pIQOTf8bkjQOPsbg==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/graph/-/graph-2.6.2.tgz", + "integrity": "sha512-DPH4G/RBFJWayIN2fnhDXqhUw75n7k15YsGzdDKiXuwwz4wMOjoL4cyrI6zOf1SIyh3guRmeTYJ4jjPzwrLYww==", "requires": { - "@parcel/utils": "2.6.0", + "@parcel/utils": "2.6.2", "nullthrows": "^1.1.1" } }, "@parcel/hash": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/hash/-/hash-2.6.0.tgz", - "integrity": "sha512-YugWqhLxqK80Lo++3B3Kr5UPCHOdS8iI2zJ1jkzUeH9v6WUzbwWOnmPf6lN2S5m1BrIFFJd8Jc+CbEXWi8zoJA==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/hash/-/hash-2.6.2.tgz", + "integrity": "sha512-tFB+cJU1Wqag6WyJgsmx3nx+xhmjcNZqtWh/MtK1lHNnZdDRk6bjr7SapnygBwruz+SmSt5bbdVThcpk2dRCcA==", "requires": { "detect-libc": "^1.0.3", "xxhash-wasm": "^0.4.2" } }, "@parcel/logger": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/logger/-/logger-2.6.0.tgz", - "integrity": "sha512-J1/7kPfSGBvMKSZdi0WCNuN0fIeiWxifnDGn7W/K8KhD422YwFJA8N046ps8nkDOPIXf1osnIECNp4GIR9oSYw==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/logger/-/logger-2.6.2.tgz", + "integrity": "sha512-Sz5YGCj1DbEiX0/G8Uw97LLZ0uEK+qtWcRAkHNpJpeMiSqDiRNevxXltz42EcLo+oCh4d4wyiVzwi9mNwzhS/Q==", "requires": { - "@parcel/diagnostic": "2.6.0", - "@parcel/events": "2.6.0" + "@parcel/diagnostic": "2.6.2", + "@parcel/events": "2.6.2" } }, "@parcel/markdown-ansi": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/markdown-ansi/-/markdown-ansi-2.6.0.tgz", - "integrity": "sha512-fyjkrJQQSfKTUFTTasdZ6WrAkDoQ2+DYDjj+3p+RncYyrIa9zArKx4IiRiipsvNdtMvP0/hTdK8F3BOJ3KSU/g==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/markdown-ansi/-/markdown-ansi-2.6.2.tgz", + "integrity": "sha512-N/h9J4eibhc+B+krzvPMzFUWL37GudBIZBa7XSLkcuH6MnYYfh6rrMvhIyyESwk6VkcZNVzAeZrGQqxEs0dHDQ==", "requires": { "chalk": "^4.1.0" } }, "@parcel/namer-default": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/namer-default/-/namer-default-2.6.0.tgz", - "integrity": "sha512-r8O12r7ozJBctnFxVdXbf/fK97GIdNj3hiiUNWlXEmED9sw6ZPcChaLcfot0/443g8i87JDmSTKJ8js2tuz5XA==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/namer-default/-/namer-default-2.6.2.tgz", + "integrity": "sha512-mp7bx/BQaIuohmZP0uE+gAmDBzzH0Yu8F4yCtE611lc6i0mou+nWRhzyKLNC/ieuI8DB3BFh2QQKeTxJn4W0qg==", "requires": { - "@parcel/diagnostic": "2.6.0", - "@parcel/plugin": "2.6.0", + "@parcel/diagnostic": "2.6.2", + "@parcel/plugin": "2.6.2", "nullthrows": "^1.1.1" } }, "@parcel/node-resolver-core": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/node-resolver-core/-/node-resolver-core-2.6.0.tgz", - "integrity": "sha512-AJDj5DZbB58plv0li8bdVSD+zpnkHE36Om3TYyNn1jgXXwgBM64Er/9p8yQn356jBqTQMh7zlJqvbdIyOiMeMg==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/node-resolver-core/-/node-resolver-core-2.6.2.tgz", + "integrity": "sha512-4b2L5QRYlTybvv3+TIRtwg4PPJXy+cRShCBa8eu1K0Fj297Afe8MOZrcVV+RIr2KPMIRXcIJoqDmOhyci/DynA==", "requires": { - "@parcel/diagnostic": "2.6.0", - "@parcel/utils": "2.6.0", - "nullthrows": "^1.1.1" + "@parcel/diagnostic": "2.6.2", + "@parcel/utils": "2.6.2", + "nullthrows": "^1.1.1", + "semver": "^5.7.1" + }, + "dependencies": { + "semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==" + } } }, "@parcel/optimizer-terser": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/optimizer-terser/-/optimizer-terser-2.6.0.tgz", - "integrity": "sha512-oezRt6Lz/QqcVDXyMfFjzQc7n0ThJowLJ4Lyhu8rMh0ZJYzc4UCFCw/19d4nRnzE+Qg0vj3mQCpdkA9/64E44g==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/optimizer-terser/-/optimizer-terser-2.6.2.tgz", + "integrity": "sha512-ZSEVQ3G3zOiVPeHvH+BrHegZybrQj9kWQAaAA92leSqbvf6UaX4xqXbGRg2OttNFtbGYBzIl28Zm4t2SLeUIuA==", "requires": { - "@parcel/diagnostic": "2.6.0", - "@parcel/plugin": "2.6.0", + "@parcel/diagnostic": "2.6.2", + "@parcel/plugin": "2.6.2", "@parcel/source-map": "^2.0.0", - "@parcel/utils": "2.6.0", + "@parcel/utils": "2.6.2", "nullthrows": "^1.1.1", "terser": "^5.2.0" } }, "@parcel/package-manager": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/package-manager/-/package-manager-2.6.0.tgz", - "integrity": "sha512-AqFfdkbOw51q/3ia2mIsFTmrpYEyUb3k+2uYC5GsLMz3go6OGn7/Crz0lZLSclv5EtwpRg3TWr9yL7RekVN/Uw==", - "requires": { - "@parcel/diagnostic": "2.6.0", - "@parcel/fs": "2.6.0", - "@parcel/logger": "2.6.0", - "@parcel/types": "2.6.0", - "@parcel/utils": "2.6.0", - "@parcel/workers": "2.6.0", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/package-manager/-/package-manager-2.6.2.tgz", + "integrity": "sha512-xGMqTgnwTE3rgzYwUZMKxR8fzmP5iSYz/gj2H8FR3pEmwh/8xCMtNjTSth+hPVGuqgRZ6JxwpfdY/fXdZ61ViQ==", + "requires": { + "@parcel/diagnostic": "2.6.2", + "@parcel/fs": "2.6.2", + "@parcel/logger": "2.6.2", + "@parcel/types": "2.6.2", + "@parcel/utils": "2.6.2", + "@parcel/workers": "2.6.2", "semver": "^5.7.1" }, "dependencies": { @@ -2827,15 +2669,15 @@ } }, "@parcel/packager-js": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/packager-js/-/packager-js-2.6.0.tgz", - "integrity": "sha512-Uz3pqIFchFfKszWnNGDgIwM1uwHHJp7Dts6VzS9lf/2RbRgZT0fmce+NPgnVO5MMKBHzdvm32ShT6gFAABF5Vw==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/packager-js/-/packager-js-2.6.2.tgz", + "integrity": "sha512-fm5rKWtaExR0W+UEKWivXNPysRFxuBCdskdxDByb1J1JeGMvp7dJElbi8oXDAQM4MnM5EyG7cg47SlMZNTLm4A==", "requires": { - "@parcel/diagnostic": "2.6.0", - "@parcel/hash": "2.6.0", - "@parcel/plugin": "2.6.0", + "@parcel/diagnostic": "2.6.2", + "@parcel/hash": "2.6.2", + "@parcel/plugin": "2.6.2", "@parcel/source-map": "^2.0.0", - "@parcel/utils": "2.6.0", + "@parcel/utils": "2.6.2", "globals": "^13.2.0", "nullthrows": "^1.1.1" }, @@ -2851,76 +2693,76 @@ } }, "@parcel/packager-raw": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/packager-raw/-/packager-raw-2.6.0.tgz", - "integrity": "sha512-ktT6Qc/GgCq8H1+6y+AXufVzQj1s6KRoKf83qswCD0iY3MwCbJoEfc3IsB4K64FpHIL5Eu0z54IId+INvGbOYA==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/packager-raw/-/packager-raw-2.6.2.tgz", + "integrity": "sha512-Rl3ZkMtMjb+LEvRowijDD8fibUAS6rWK0/vZQMk9cDNYCP2gCpZayLk0HZIGxneeTbosf/0sbngHq4VeRQOnQA==", "requires": { - "@parcel/plugin": "2.6.0" + "@parcel/plugin": "2.6.2" } }, "@parcel/plugin": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/plugin/-/plugin-2.6.0.tgz", - "integrity": "sha512-LzOaiK8R6eFEoov1cb3/W+o0XvXdI/VbDhMDl0L0II+/56M0UeayYtFP5QGTDn/fZqVlYfzPCtt3EMwdG7/dow==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/plugin/-/plugin-2.6.2.tgz", + "integrity": "sha512-wbbWsM23Pr+8xtLSvf+UopXdVYlpKCCx6PuuZaZcKo+9IcDCWoGXD4M8Kkz14qBmkFn5uM00mULUqmVdSibB2w==", "requires": { - "@parcel/types": "2.6.0" + "@parcel/types": "2.6.2" } }, "@parcel/reporter-dev-server": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/reporter-dev-server/-/reporter-dev-server-2.6.0.tgz", - "integrity": "sha512-VvygsCA+uzWyijIV8zqU1gFyhAWknuaY4KIWhV4kCT8afRJwsLSwt/tpdaKDPuPU45h3tTsUdXH1wjaIk+dGeQ==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/reporter-dev-server/-/reporter-dev-server-2.6.2.tgz", + "integrity": "sha512-5QtL3ETMFL161jehlIK6rjBM+Pqk5cMhr60s9yLYqE1GY4M4gMj+Act+FXViyM6gmMA38cPxDvUsxTKBYXpFCw==", "requires": { - "@parcel/plugin": "2.6.0", - "@parcel/utils": "2.6.0" + "@parcel/plugin": "2.6.2", + "@parcel/utils": "2.6.2" } }, "@parcel/resolver-default": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/resolver-default/-/resolver-default-2.6.0.tgz", - "integrity": "sha512-ATk9wXvy5GOHAqyHbnCnU11fUPTtf8dLjpgVqL5XylwugZnyBXbynoTWX4w8h6mffkVtdfmzTJx/o4Lresz9sA==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/resolver-default/-/resolver-default-2.6.2.tgz", + "integrity": "sha512-Lo5sWb5QkjWvdBr+TdmAF6Mszb/sMldBBatc1osQTkHXCy679VMH+lfyiWxHbwK+F1pmdMeBJpYcMxvrgT8EsA==", "requires": { - "@parcel/node-resolver-core": "2.6.0", - "@parcel/plugin": "2.6.0" + "@parcel/node-resolver-core": "2.6.2", + "@parcel/plugin": "2.6.2" } }, "@parcel/runtime-browser-hmr": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/runtime-browser-hmr/-/runtime-browser-hmr-2.6.0.tgz", - "integrity": "sha512-90xvv/10cFML5dAhClBEJZ/ExiBQVPqQsZcvRmVZmc5mpZVJMKattWCQrd7pAf7FDYl4JAcvsK3DTwvRT/oLNA==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/runtime-browser-hmr/-/runtime-browser-hmr-2.6.2.tgz", + "integrity": "sha512-M4X0+7dyfdI6smwGUGjGXb8Ns3HX7ZrTemyq4Gc7zp7P/5gWjR8i9eISz46sXmF9bf01a/4dKZpoCC9un1pH1g==", "requires": { - "@parcel/plugin": "2.6.0", - "@parcel/utils": "2.6.0" + "@parcel/plugin": "2.6.2", + "@parcel/utils": "2.6.2" } }, "@parcel/runtime-js": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/runtime-js/-/runtime-js-2.6.0.tgz", - "integrity": "sha512-R4tJAIT/SX7VBQ+f7WmeekREQzzLsmgP1j486uKhQNyYrpvsN0HnRbg5aqvZjEjkEmSeJR0mOlWtMK5/m+0yTA==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/runtime-js/-/runtime-js-2.6.2.tgz", + "integrity": "sha512-0S3JFwgvs6FmEx2dHta9R0Sfu8vCnFAm4i7Y4efGHtAcTrF2CHjyiz4/hG+RQGJ70eoWW463Q+8qt6EKbkaOBQ==", "requires": { - "@parcel/plugin": "2.6.0", - "@parcel/utils": "2.6.0", + "@parcel/plugin": "2.6.2", + "@parcel/utils": "2.6.2", "nullthrows": "^1.1.1" } }, "@parcel/runtime-react-refresh": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/runtime-react-refresh/-/runtime-react-refresh-2.6.0.tgz", - "integrity": "sha512-2sRd13gc2EbMV/O5n2NPVGGhKBasb1fDTXGEY8y7qi9xDKc+ewok/D83T+w243FhCPS9Pf3ur5GkbPlrJGcenQ==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/runtime-react-refresh/-/runtime-react-refresh-2.6.2.tgz", + "integrity": "sha512-DJTm5D/tUAGZm0o3ndDOPbKwdYrobuvm4jvkPq31LdEUqVvyuzBAMlqQFHc1yJEJDRRWOIQwQP9Y0NQbJmXFfg==", "requires": { - "@parcel/plugin": "2.6.0", - "@parcel/utils": "2.6.0", + "@parcel/plugin": "2.6.2", + "@parcel/utils": "2.6.2", "react-error-overlay": "6.0.9", "react-refresh": "^0.9.0" } }, "@parcel/runtime-service-worker": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/runtime-service-worker/-/runtime-service-worker-2.6.0.tgz", - "integrity": "sha512-nVlknGw5J5Bkd1Wr1TbyWHhUd9CmVVebaRg/lpfVKYhAuE/2r+3N0+J8qbEIgtTRcHaSV7wTNpg4weSWq46VeA==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/runtime-service-worker/-/runtime-service-worker-2.6.2.tgz", + "integrity": "sha512-9jV+RwVEeDUI5+eLy8j1tapTNoHHGOY2+JUprcObQkQ8fux7KltQBJWFhpkUdGtz5LTCNXtj9tdycFtS5lmSzg==", "requires": { - "@parcel/plugin": "2.6.0", - "@parcel/utils": "2.6.0", + "@parcel/plugin": "2.6.2", + "@parcel/utils": "2.6.2", "nullthrows": "^1.1.1" } }, @@ -2933,16 +2775,16 @@ } }, "@parcel/transformer-js": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/transformer-js/-/transformer-js-2.6.0.tgz", - "integrity": "sha512-4v2r3EVdMKowBziVBW9HZqvAv88HaeiezkWyMX4wAfplo9jBtWEp99KEQINzSEdbXROR81M9oJjlGF5+yoVr/w==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/transformer-js/-/transformer-js-2.6.2.tgz", + "integrity": "sha512-uhXAMTjE/Q61amflV8qVpb73mj+mIdXIMH0cSks1/gDIAxcgIvWvrE14P4TvY6zJ1q1iRJRIRUN6cFSXqjjLSA==", "requires": { - "@parcel/diagnostic": "2.6.0", - "@parcel/plugin": "2.6.0", + "@parcel/diagnostic": "2.6.2", + "@parcel/plugin": "2.6.2", "@parcel/source-map": "^2.0.0", - "@parcel/utils": "2.6.0", - "@parcel/workers": "2.6.0", - "@swc/helpers": "^0.3.15", + "@parcel/utils": "2.6.2", + "@parcel/workers": "2.6.2", + "@swc/helpers": "^0.4.2", "browserslist": "^4.6.6", "detect-libc": "^1.0.3", "nullthrows": "^1.1.1", @@ -2958,56 +2800,56 @@ } }, "@parcel/transformer-json": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/transformer-json/-/transformer-json-2.6.0.tgz", - "integrity": "sha512-zb+TQAdHWdXijKcFhLe+5KN1O0IzXwW1gJhPr8DJEA3qhPaCsncsw5RCVjQlP3a7NXr1mMm1eMtO6bhIMqbXeA==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/transformer-json/-/transformer-json-2.6.2.tgz", + "integrity": "sha512-QGcIIvbPF/u10ihYvQhxXqb2QMXWSzcBxJrOSIXIl74TUGrWX05D5LmjDA/rzm/n/kvRnBkFNP60R/smYb8x+Q==", "requires": { - "@parcel/plugin": "2.6.0", + "@parcel/plugin": "2.6.2", "json5": "^2.2.0" } }, "@parcel/transformer-raw": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/transformer-raw/-/transformer-raw-2.6.0.tgz", - "integrity": "sha512-QDirlWCS/qy0DQ3WvDIAnFP52n1TJW/uWH+4PGMNnX4/M3/2UchY8xp9CN0tx4NQ4g09S8o3gLlHvNxQqZxFrQ==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/transformer-raw/-/transformer-raw-2.6.2.tgz", + "integrity": "sha512-CsofYq5g9Zj/FNmhya2R7Xp3WHlzz34mEdN69bds3azRYHCrl/TS33xXcp/9J+74SEIY1Ufh552o1cM3fnSrDQ==", "requires": { - "@parcel/plugin": "2.6.0" + "@parcel/plugin": "2.6.2" } }, "@parcel/transformer-react-refresh-wrap": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/transformer-react-refresh-wrap/-/transformer-react-refresh-wrap-2.6.0.tgz", - "integrity": "sha512-G34orfvLDUTumuerqNmA8T8NUHk+R0jwUjbVPO7gpB6VCVQ5ocTABdE9vN9Uu/cUsHij40TUFwqK4R9TFEBIEQ==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/transformer-react-refresh-wrap/-/transformer-react-refresh-wrap-2.6.2.tgz", + "integrity": "sha512-7EE68ebISz+oAHm64ZJbz6uJQT4aOoB8QiK3PvuY6+RsP7aK4/FEHGM1afW49KrZbP4lWjloEkcJm/88DfBiGw==", "requires": { - "@parcel/plugin": "2.6.0", - "@parcel/utils": "2.6.0", + "@parcel/plugin": "2.6.2", + "@parcel/utils": "2.6.2", "react-refresh": "^0.9.0" } }, "@parcel/types": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/types/-/types-2.6.0.tgz", - "integrity": "sha512-lAMYvOBfNEJMsPJ+plbB50305o0TwNrY1xX5RRIWBqwOa6bYmbW1ZljUk1tQvnkpIE4eAHQwnPR5Z2XWg18wGQ==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/types/-/types-2.6.2.tgz", + "integrity": "sha512-MV8BFpCIs2jMUvK2RHqzkoiuOQ//JIbrD1zocA2YRW3zuPL/iABvbAABJoXpoPCKikVWOoCWASgBfWQo26VvJQ==", "requires": { - "@parcel/cache": "2.6.0", - "@parcel/diagnostic": "2.6.0", - "@parcel/fs": "2.6.0", - "@parcel/package-manager": "2.6.0", + "@parcel/cache": "2.6.2", + "@parcel/diagnostic": "2.6.2", + "@parcel/fs": "2.6.2", + "@parcel/package-manager": "2.6.2", "@parcel/source-map": "^2.0.0", - "@parcel/workers": "2.6.0", + "@parcel/workers": "2.6.2", "utility-types": "^3.10.0" } }, "@parcel/utils": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/utils/-/utils-2.6.0.tgz", - "integrity": "sha512-ElXz+QHtT1JQIucbQJBk7SzAGoOlBp4yodEQVvTKS7GA+hEGrSP/cmibl6qm29Rjtd0zgQsdd+2XmP3xvP2gQQ==", - "requires": { - "@parcel/codeframe": "2.6.0", - "@parcel/diagnostic": "2.6.0", - "@parcel/hash": "2.6.0", - "@parcel/logger": "2.6.0", - "@parcel/markdown-ansi": "2.6.0", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/utils/-/utils-2.6.2.tgz", + "integrity": "sha512-Ug7hpRxjgbY5AopW55nY7MmGMVmwmN+ihfCmxJkBUoESTG/3iq8uME7GjyOgW5DkQc2K7q62i8y8N0wCJT1u4Q==", + "requires": { + "@parcel/codeframe": "2.6.2", + "@parcel/diagnostic": "2.6.2", + "@parcel/hash": "2.6.2", + "@parcel/logger": "2.6.2", + "@parcel/markdown-ansi": "2.6.2", "@parcel/source-map": "^2.0.0", "chalk": "^4.1.0" } @@ -3022,14 +2864,14 @@ } }, "@parcel/workers": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/workers/-/workers-2.6.0.tgz", - "integrity": "sha512-3tcI2LF5fd/WZtSnSjyWdDE+G+FitdNrRgSObzSp+axHKMAM23sO0z7KY8s2SYCF40msdYbFUW8eI6JlYNJoWQ==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/workers/-/workers-2.6.2.tgz", + "integrity": "sha512-wBgUjJQm+lDd12fPRUmk09+ujTA9DgwPdqylSFK0OtI/yT6A+2kArUqjp8IwWo2tCJXoMzXBne2XQIWKqMiN4Q==", "requires": { - "@parcel/diagnostic": "2.6.0", - "@parcel/logger": "2.6.0", - "@parcel/types": "2.6.0", - "@parcel/utils": "2.6.0", + "@parcel/diagnostic": "2.6.2", + "@parcel/logger": "2.6.2", + "@parcel/types": "2.6.2", + "@parcel/utils": "2.6.2", "chrome-trace-event": "^1.0.2", "nullthrows": "^1.1.1" } @@ -3115,9 +2957,9 @@ } }, "@swc/helpers": { - "version": "0.3.17", - "resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.3.17.tgz", - "integrity": "sha512-tb7Iu+oZ+zWJZ3HJqwx8oNwSDIU440hmVMDPhpACWQWnrZHK99Bxs70gT1L2dnr5Hg50ZRWEFkQCAnOVVV0z1Q==", + "version": "0.4.3", + "resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.4.3.tgz", + "integrity": "sha512-6JrF+fdUK2zbGpJIlN7G3v966PQjyx/dPt1T9km2wj+EUBqgrxCk3uX4Kct16MIm9gGxfKRcfax2hVf5jvlTzA==", "requires": { "tslib": "^2.4.0" } @@ -4047,12 +3889,36 @@ } }, "babel-plugin-remove-graphql-queries": { - "version": "4.18.1", - "resolved": "https://registry.npmjs.org/babel-plugin-remove-graphql-queries/-/babel-plugin-remove-graphql-queries-4.18.1.tgz", - "integrity": "sha512-2I7qsm3pnyvrS6/Q9YuHK1SpfQLmrgYH/AjpnWpnLHee6SiVb5Te89iphhpBdycpBRVGWh04ram9+z/1rMaRYQ==", + "version": "4.19.0", + "resolved": "https://registry.npmjs.org/babel-plugin-remove-graphql-queries/-/babel-plugin-remove-graphql-queries-4.19.0.tgz", + "integrity": "sha512-VbxC7aZxdqQA0YiAcTD/djIW+6PP/JVODlRmCiqDyTbtI0zhE/Z6je1maCmC6J2LLBsKxhWT3UYTjRfLofK7sQ==", "requires": { "@babel/runtime": "^7.15.4", - "gatsby-core-utils": "^3.18.1" + "gatsby-core-utils": "^3.19.0" + }, + "dependencies": { + "gatsby-core-utils": { + "version": "3.19.0", + "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.19.0.tgz", + "integrity": "sha512-cjXs9DsXkPZt+UdiLHxtq+rGMGVrcnM0KwkawlruvPchI7lqGNv9CScqlvYPxx1dBhu3zSZS26EBALMlFhyOJA==", + "requires": { + "@babel/runtime": "^7.15.4", + "ci-info": "2.0.0", + "configstore": "^5.0.1", + "fastq": "^1.13.0", + "file-type": "^16.5.3", + "fs-extra": "^10.1.0", + "got": "^11.8.5", + "import-from": "^4.0.0", + "lmdb": "2.5.3", + "lock": "^1.1.0", + "node-object-hash": "^2.3.10", + "proper-lockfile": "^4.1.2", + "resolve-from": "^5.0.0", + "tmp": "^0.2.1", + "xdg-basedir": "^4.0.0" + } + } } }, "babel-plugin-syntax-object-rest-spread": { @@ -4114,9 +3980,9 @@ } }, "babel-preset-gatsby": { - "version": "2.18.1", - "resolved": "https://registry.npmjs.org/babel-preset-gatsby/-/babel-preset-gatsby-2.18.1.tgz", - "integrity": "sha512-oaVV6ULceMjTQKjCA06qvgfLwBNZFJxpacwNZYOJpLygmj+qYiNKDGhJ8vTw/KAIUeDPZAbPMP5P+3wMEPIWYQ==", + "version": "2.19.0", + "resolved": "https://registry.npmjs.org/babel-preset-gatsby/-/babel-preset-gatsby-2.19.0.tgz", + "integrity": "sha512-wjh4lUN1MffsnqHAfRoeOtJFGEObUPR4oxo7fyfx9pZUyqBgXvKXMEoLnwNht5HV5BzT5Xo9dkwNJl0/CNhXHw==", "requires": { "@babel/plugin-proposal-class-properties": "^7.14.0", "@babel/plugin-proposal-nullish-coalescing-operator": "^7.14.5", @@ -4131,8 +3997,32 @@ "babel-plugin-dynamic-import-node": "^2.3.3", "babel-plugin-macros": "^3.1.0", "babel-plugin-transform-react-remove-prop-types": "^0.4.24", - "gatsby-core-utils": "^3.18.1", - "gatsby-legacy-polyfills": "^2.18.0" + "gatsby-core-utils": "^3.19.0", + "gatsby-legacy-polyfills": "^2.19.0" + }, + "dependencies": { + "gatsby-core-utils": { + "version": "3.19.0", + "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.19.0.tgz", + "integrity": "sha512-cjXs9DsXkPZt+UdiLHxtq+rGMGVrcnM0KwkawlruvPchI7lqGNv9CScqlvYPxx1dBhu3zSZS26EBALMlFhyOJA==", + "requires": { + "@babel/runtime": "^7.15.4", + "ci-info": "2.0.0", + "configstore": "^5.0.1", + "fastq": "^1.13.0", + "file-type": "^16.5.3", + "fs-extra": "^10.1.0", + "got": "^11.8.5", + "import-from": "^4.0.0", + "lmdb": "2.5.3", + "lock": "^1.1.0", + "node-object-hash": "^2.3.10", + "proper-lockfile": "^4.1.2", + "resolve-from": "^5.0.0", + "tmp": "^0.2.1", + "xdg-basedir": "^4.0.0" + } + } } }, "babel-runtime": { @@ -4251,6 +4141,11 @@ "unpipe": "1.0.0" }, "dependencies": { + "bytes": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", + "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==" + }, "debug": { "version": "2.6.9", "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", @@ -4407,9 +4302,9 @@ } }, "bytes": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", - "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==" + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz", + "integrity": "sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==" }, "cache-manager": { "version": "2.11.1", @@ -4496,9 +4391,9 @@ } }, "caniuse-lite": { - "version": "1.0.30001366", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001366.tgz", - "integrity": "sha512-yy7XLWCubDobokgzudpkKux8e0UOOnLHE6mlNJBzT3lZJz6s5atSEzjoL+fsCPkI0G8MP5uVdDx1ur/fXEWkZA==" + "version": "1.0.30001367", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001367.tgz", + "integrity": "sha512-XDgbeOHfifWV3GEES2B8rtsrADx4Jf+juKX2SICJcaUhjYBO3bR96kvEIHa15VU6ohtOhBZuPGGYGbXMRn0NCw==" }, "capital-case": { "version": "1.0.4", @@ -4986,11 +4881,6 @@ "vary": "~1.1.2" }, "dependencies": { - "bytes": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz", - "integrity": "sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==" - }, "debug": { "version": "2.6.9", "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", @@ -5123,16 +5013,16 @@ "integrity": "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==" }, "core-js": { - "version": "3.23.4", - "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.23.4.tgz", - "integrity": "sha512-vjsKqRc1RyAJC3Ye2kYqgfdThb3zYnx9CrqoCcjMOENMtQPC7ZViBvlDxwYU/2z2NI/IPuiXw5mT4hWhddqjzQ==" + "version": "3.23.5", + "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.23.5.tgz", + "integrity": "sha512-7Vh11tujtAZy82da4duVreQysIoO2EvVrur7y6IzZkH1IHPSekuDi8Vuw1+YKjkbfWLRD7Nc9ICQ/sIUDutcyg==" }, "core-js-compat": { - "version": "3.23.4", - "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.23.4.tgz", - "integrity": "sha512-RkSRPe+JYEoflcsuxJWaiMPhnZoFS51FcIxm53k4KzhISCBTmaGlto9dTIrYuk0hnJc3G6pKufAKepHnBq6B6Q==", + "version": "3.23.5", + "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.23.5.tgz", + "integrity": "sha512-fHYozIFIxd+91IIbXJgWd/igXIc8Mf9is0fusswjnGIWVG96y2cwyUdlCkGOw6rMLHKAxg7xtCIVaHsyOUnJIg==", "requires": { - "browserslist": "^4.21.1", + "browserslist": "^4.21.2", "semver": "7.0.0" }, "dependencies": { @@ -5144,9 +5034,9 @@ } }, "core-js-pure": { - "version": "3.23.4", - "resolved": "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.23.4.tgz", - "integrity": "sha512-lizxkcgj3XDmi7TUBFe+bQ1vNpD5E4t76BrBWI3HdUxdw/Mq1VF4CkiHzIKyieECKtcODK2asJttoofEeUKICQ==" + "version": "3.23.5", + "resolved": "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.23.5.tgz", + "integrity": "sha512-8t78LdpKSuCq4pJYCYk8hl7XEkAX+BP16yRIwL3AanTksxuEf7CM83vRyctmiEL8NDZ3jpUcv56fk9/zG3aIuw==" }, "core-util-is": { "version": "1.0.3", @@ -5183,9 +5073,9 @@ } }, "create-gatsby": { - "version": "2.18.1", - "resolved": "https://registry.npmjs.org/create-gatsby/-/create-gatsby-2.18.1.tgz", - "integrity": "sha512-1AZioXKi4COhESSHfsb/6tpkBvyuuXHwAmMAGrcUQpbynsQxYdqonnRqnFhp80bA2cIKxgjtHzzLhyRouDonbQ==", + "version": "2.19.0", + "resolved": "https://registry.npmjs.org/create-gatsby/-/create-gatsby-2.19.0.tgz", + "integrity": "sha512-Esl/qCau3rjpnRkmo31BYOE6l72SJ/5Fq8bF6gmXOf/lnbOh51so8hgRcClfizr1nCihqQQihZn//o4DIgZKeA==", "requires": { "@babel/runtime": "^7.15.4" } @@ -5752,9 +5642,9 @@ "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==" }, "electron-to-chromium": { - "version": "1.4.188", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.188.tgz", - "integrity": "sha512-Zpa1+E+BVmD/orkyz1Z2dAT1XNUuVAHB3GrogfyY66dXN0ZWSsygI8+u6QTDai1ZayLcATDJpcv2Z2AZjEcr1A==" + "version": "1.4.194", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.194.tgz", + "integrity": "sha512-ola5UH0xAP1oYY0FFUsPvwtucEzCQHucXnT7PQ1zjHJMccZhCDktEugI++JUR3YuIs7Ff7afz+OVEhVAIMhLAQ==" }, "emoji-regex": { "version": "8.0.0", @@ -7120,9 +7010,9 @@ "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==" }, "gatsby": { - "version": "4.18.2", - "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-4.18.2.tgz", - "integrity": "sha512-ZWdo0TXsSRmwlmOeeuoWwXKQNteHm9VxJWF9Ud+c33r7ZXQgTA5WtRYjiBpjZuNAUwsiONNAe+wKK5jVY8B4LQ==", + "version": "4.19.0", + "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-4.19.0.tgz", + "integrity": "sha512-Bhga6PbDRSL3J7yIcVAWwN76cK0OeFWE4f5ggh4qEjnsL20kxW+LPwAexpZ5dVxbE1gsl1k/VDSX66Wj3vGH3A==", "requires": { "@babel/code-frame": "^7.14.0", "@babel/core": "^7.15.5", @@ -7144,7 +7034,7 @@ "@graphql-tools/load": "^7.5.10", "@jridgewell/trace-mapping": "^0.3.13", "@nodelib/fs.walk": "^1.2.8", - "@parcel/core": "2.6.0", + "@parcel/core": "2.6.2", "@pmmmwh/react-refresh-webpack-plugin": "^0.4.3", "@types/http-proxy": "^1.17.7", "@typescript-eslint/eslint-plugin": "^4.33.0", @@ -7158,11 +7048,10 @@ "babel-plugin-add-module-exports": "^1.0.4", "babel-plugin-dynamic-import-node": "^2.3.3", "babel-plugin-lodash": "^3.3.4", - "babel-plugin-remove-graphql-queries": "^4.18.1", - "babel-preset-gatsby": "^2.18.1", + "babel-plugin-remove-graphql-queries": "^4.19.0", + "babel-preset-gatsby": "^2.19.0", "better-opn": "^2.1.1", "bluebird": "^3.7.2", - "body-parser": "^1.19.0", "browserslist": "^4.17.5", "cache-manager": "^2.11.1", "chalk": "^4.1.2", @@ -7188,7 +7077,7 @@ "eslint-plugin-graphql": "^4.0.0", "eslint-plugin-import": "^2.26.0", "eslint-plugin-jsx-a11y": "^6.5.1", - "eslint-plugin-react": "^7.30.0", + "eslint-plugin-react": "^7.30.1", "eslint-plugin-react-hooks": "^4.5.0", "eslint-webpack-plugin": "^2.6.0", "event-source-polyfill": "1.0.25", @@ -7202,21 +7091,21 @@ "find-cache-dir": "^3.3.2", "fs-exists-cached": "1.0.0", "fs-extra": "^10.1.0", - "gatsby-cli": "^4.18.1", - "gatsby-core-utils": "^3.18.1", - "gatsby-graphiql-explorer": "^2.18.0", - "gatsby-legacy-polyfills": "^2.18.0", - "gatsby-link": "^4.18.1", - "gatsby-page-utils": "^2.18.1", - "gatsby-parcel-config": "^0.9.2", - "gatsby-plugin-page-creator": "^4.18.1", - "gatsby-plugin-typescript": "^4.18.1", - "gatsby-plugin-utils": "^3.12.1", - "gatsby-react-router-scroll": "^5.18.0", - "gatsby-script": "^1.3.0", - "gatsby-sharp": "^0.12.0", - "gatsby-telemetry": "^3.18.1", - "gatsby-worker": "^1.18.0", + "gatsby-cli": "^4.19.0", + "gatsby-core-utils": "^3.19.0", + "gatsby-graphiql-explorer": "^2.19.0", + "gatsby-legacy-polyfills": "^2.19.0", + "gatsby-link": "^4.19.0", + "gatsby-page-utils": "^2.19.0", + "gatsby-parcel-config": "^0.10.0", + "gatsby-plugin-page-creator": "^4.19.0", + "gatsby-plugin-typescript": "^4.19.0", + "gatsby-plugin-utils": "^3.13.0", + "gatsby-react-router-scroll": "^5.19.0", + "gatsby-script": "^1.4.0", + "gatsby-sharp": "^0.13.0", + "gatsby-telemetry": "^3.19.0", + "gatsby-worker": "^1.19.0", "glob": "^7.2.3", "globby": "^11.1.0", "got": "^11.8.2", @@ -7224,7 +7113,6 @@ "graphql-compose": "^9.0.7", "graphql-playground-middleware-express": "^1.7.22", "hasha": "^5.2.2", - "http-proxy": "^1.18.1", "invariant": "^2.2.4", "is-relative": "^1.0.0", "is-relative-url": "^3.0.0", @@ -7243,6 +7131,7 @@ "moment": "^2.29.1", "multer": "^1.4.3", "node-fetch": "^2.6.6", + "node-html-parser": "^5.3.3", "normalize-path": "^3.0.0", "null-loader": "^4.0.1", "opentracing": "^0.14.5", @@ -7289,9 +7178,9 @@ }, "dependencies": { "gatsby-cli": { - "version": "4.18.1", - "resolved": "https://registry.npmjs.org/gatsby-cli/-/gatsby-cli-4.18.1.tgz", - "integrity": "sha512-ceYqm6i39rHY343zUCflwXnGtd25QGccvToTWL8W42/EGToDW8bubLfeBSRCfjXm946yf1gkS/1UAsAgAphYDA==", + "version": "4.19.0", + "resolved": "https://registry.npmjs.org/gatsby-cli/-/gatsby-cli-4.19.0.tgz", + "integrity": "sha512-i1B9ktvOECiOZgyKqf0xdYx9bmrIUeZeiK+EOIvIpvFfFUwBmZR6xSHRHYUGX2JVpQiy4QEG25KcPWgF9mYJ3w==", "requires": { "@babel/code-frame": "^7.14.0", "@babel/core": "^7.15.5", @@ -7310,13 +7199,13 @@ "common-tags": "^1.8.2", "configstore": "^5.0.1", "convert-hrtime": "^3.0.0", - "create-gatsby": "^2.18.1", + "create-gatsby": "^2.19.0", "envinfo": "^7.8.1", "execa": "^5.1.1", "fs-exists-cached": "^1.0.0", "fs-extra": "^10.1.0", - "gatsby-core-utils": "^3.18.1", - "gatsby-telemetry": "^3.18.1", + "gatsby-core-utils": "^3.19.0", + "gatsby-telemetry": "^3.19.0", "hosted-git-info": "^3.0.8", "is-valid-path": "^0.1.1", "joi": "^17.4.2", @@ -7338,6 +7227,62 @@ "yoga-layout-prebuilt": "^1.10.0", "yurnalist": "^2.1.0" } + }, + "gatsby-core-utils": { + "version": "3.19.0", + "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.19.0.tgz", + "integrity": "sha512-cjXs9DsXkPZt+UdiLHxtq+rGMGVrcnM0KwkawlruvPchI7lqGNv9CScqlvYPxx1dBhu3zSZS26EBALMlFhyOJA==", + "requires": { + "@babel/runtime": "^7.15.4", + "ci-info": "2.0.0", + "configstore": "^5.0.1", + "fastq": "^1.13.0", + "file-type": "^16.5.3", + "fs-extra": "^10.1.0", + "got": "^11.8.5", + "import-from": "^4.0.0", + "lmdb": "2.5.3", + "lock": "^1.1.0", + "node-object-hash": "^2.3.10", + "proper-lockfile": "^4.1.2", + "resolve-from": "^5.0.0", + "tmp": "^0.2.1", + "xdg-basedir": "^4.0.0" + } + }, + "gatsby-plugin-utils": { + "version": "3.13.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-utils/-/gatsby-plugin-utils-3.13.0.tgz", + "integrity": "sha512-iFFWswld/Nu8IrSCikZXC4/cud9txv3ikjkQiGLccJStS9VH2rSY4XEMNRqsKN9Spe3pFBOr/97yYUaPhZaQWg==", + "requires": { + "@babel/runtime": "^7.15.4", + "@gatsbyjs/potrace": "^2.2.0", + "fs-extra": "^10.1.0", + "gatsby-core-utils": "^3.19.0", + "gatsby-sharp": "^0.13.0", + "graphql-compose": "^9.0.7", + "import-from": "^4.0.0", + "joi": "^17.4.2", + "mime": "^3.0.0", + "mini-svg-data-uri": "^1.4.4", + "svgo": "^2.8.0" + }, + "dependencies": { + "mime": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-3.0.0.tgz", + "integrity": "sha512-jSCU7/VB1loIWBZe14aEYHU/+1UMEHoaO7qxCOVJOw9GgH72VAWppxNcjU+x9a2k3GSIBXNKxXQFqRvvZ7vr3A==" + } + } + }, + "gatsby-sharp": { + "version": "0.13.0", + "resolved": "https://registry.npmjs.org/gatsby-sharp/-/gatsby-sharp-0.13.0.tgz", + "integrity": "sha512-dGuIuWP3rC7hXl/CgkHEY4WQEW+B9Rsg8uo6u+OumuLnLBxD4vTusEIGctVKzlyIxpENEQylQ7w1JKHX9fOy9g==", + "requires": { + "@types/sharp": "^0.30.0", + "sharp": "^0.30.3" + } } } }, @@ -7364,17 +7309,17 @@ } }, "gatsby-graphiql-explorer": { - "version": "2.18.0", - "resolved": "https://registry.npmjs.org/gatsby-graphiql-explorer/-/gatsby-graphiql-explorer-2.18.0.tgz", - "integrity": "sha512-mmY+kHc+axpDO9lfjbCEf/0oEIHTcZmpe2PtQAzkhnQHyti3xd9IIafq/1W3QKIJo5c7f40+tR3sFTERqaBeIA==", + "version": "2.19.0", + "resolved": "https://registry.npmjs.org/gatsby-graphiql-explorer/-/gatsby-graphiql-explorer-2.19.0.tgz", + "integrity": "sha512-wOD1LuWaSbCtZ0E9C2HxMBQj67k8kPnlLMr/VfKHgBh0FfvIavIq5vOq5K9zRIkAzSzYVODGEz2NVdbfVK9Bew==", "requires": { "@babel/runtime": "^7.15.4" } }, "gatsby-legacy-polyfills": { - "version": "2.18.0", - "resolved": "https://registry.npmjs.org/gatsby-legacy-polyfills/-/gatsby-legacy-polyfills-2.18.0.tgz", - "integrity": "sha512-wPnsRUnnab10wyt5VPkIhpJC1k8bVrpn0Sfat1L3JskYwkVIEvquqTmHWkpGMB8SLbXQiJEGCs2TcIrx9riL+w==", + "version": "2.19.0", + "resolved": "https://registry.npmjs.org/gatsby-legacy-polyfills/-/gatsby-legacy-polyfills-2.19.0.tgz", + "integrity": "sha512-WuyN01eiRxhanfnj6UgsCxU+Pxs9B8rtgxbrwXhlEKX+QdAp4XlywDQ8QXvv8i028QDF9h+VnvGlfcZY4tgQrQ==", "requires": { "@babel/runtime": "^7.15.4", "core-js-compat": "3.9.0" @@ -7397,88 +7342,191 @@ } }, "gatsby-link": { - "version": "4.18.1", - "resolved": "https://registry.npmjs.org/gatsby-link/-/gatsby-link-4.18.1.tgz", - "integrity": "sha512-gLFH2iU4WugHU5k+SLu4F0Ar04kDT5KhkyXly99ZVtiIvHpA5DqcuGNIUjIE/lizSCsfa553wGv7dadfghGzrQ==", + "version": "4.19.0", + "resolved": "https://registry.npmjs.org/gatsby-link/-/gatsby-link-4.19.0.tgz", + "integrity": "sha512-snv9blxZR7s/ymRjUUDP2+zrJ/beuyy/k/MeW57EkQ16YfgDyF79JMKNDU3iXFmiFhG9AYBkClIfe4qTSoCO/A==", "requires": { - "@babel/runtime": "^7.15.4", "@types/reach__router": "^1.3.10", - "gatsby-page-utils": "^2.18.1", + "gatsby-page-utils": "^2.19.0", "prop-types": "^15.8.1" } }, "gatsby-page-utils": { - "version": "2.18.1", - "resolved": "https://registry.npmjs.org/gatsby-page-utils/-/gatsby-page-utils-2.18.1.tgz", - "integrity": "sha512-4EM0LNOQgnCndHDQSI/ZKRFWYWG9dtTPuGbBaGlmPquhj3zwjOscws1vfj7g+u3PowKjZQ2Rf92RZd8xt8XLTQ==", + "version": "2.19.0", + "resolved": "https://registry.npmjs.org/gatsby-page-utils/-/gatsby-page-utils-2.19.0.tgz", + "integrity": "sha512-eYStV4jQbuEBKhatH3yzWA+lmoydJBCZVg6w2GG38eSsgcj9pdep8oQqyQdGFU3dy/HizWmWCv+wW9FIUoVQsQ==", "requires": { "@babel/runtime": "^7.15.4", "bluebird": "^3.7.2", "chokidar": "^3.5.3", "fs-exists-cached": "^1.0.0", - "gatsby-core-utils": "^3.18.1", + "gatsby-core-utils": "^3.19.0", "glob": "^7.2.3", "lodash": "^4.17.21", "micromatch": "^4.0.5" + }, + "dependencies": { + "gatsby-core-utils": { + "version": "3.19.0", + "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.19.0.tgz", + "integrity": "sha512-cjXs9DsXkPZt+UdiLHxtq+rGMGVrcnM0KwkawlruvPchI7lqGNv9CScqlvYPxx1dBhu3zSZS26EBALMlFhyOJA==", + "requires": { + "@babel/runtime": "^7.15.4", + "ci-info": "2.0.0", + "configstore": "^5.0.1", + "fastq": "^1.13.0", + "file-type": "^16.5.3", + "fs-extra": "^10.1.0", + "got": "^11.8.5", + "import-from": "^4.0.0", + "lmdb": "2.5.3", + "lock": "^1.1.0", + "node-object-hash": "^2.3.10", + "proper-lockfile": "^4.1.2", + "resolve-from": "^5.0.0", + "tmp": "^0.2.1", + "xdg-basedir": "^4.0.0" + } + } } }, "gatsby-parcel-config": { - "version": "0.9.2", - "resolved": "https://registry.npmjs.org/gatsby-parcel-config/-/gatsby-parcel-config-0.9.2.tgz", - "integrity": "sha512-ONykPoYCoFs89M8Hio0TSrUQEpwXwbSiV8aCcPH9L6w3eros9RlWrwAwnWb+lPDNJT5BsereBjefoS9cC6mpVA==", - "requires": { - "@gatsbyjs/parcel-namer-relative-to-cwd": "^1.3.2", - "@parcel/bundler-default": "2.6.0", - "@parcel/compressor-raw": "2.6.0", - "@parcel/namer-default": "2.6.0", - "@parcel/optimizer-terser": "2.6.0", - "@parcel/packager-js": "2.6.0", - "@parcel/packager-raw": "2.6.0", - "@parcel/reporter-dev-server": "2.6.0", - "@parcel/resolver-default": "2.6.0", - "@parcel/runtime-browser-hmr": "2.6.0", - "@parcel/runtime-js": "2.6.0", - "@parcel/runtime-react-refresh": "2.6.0", - "@parcel/runtime-service-worker": "2.6.0", - "@parcel/transformer-js": "2.6.0", - "@parcel/transformer-json": "2.6.0", - "@parcel/transformer-raw": "2.6.0", - "@parcel/transformer-react-refresh-wrap": "2.6.0" + "version": "0.10.0", + "resolved": "https://registry.npmjs.org/gatsby-parcel-config/-/gatsby-parcel-config-0.10.0.tgz", + "integrity": "sha512-FV+ccSeWPgicWRtycfUV1L7xyVIr6OSDnUkztnxq3Xj+OEBPC0NO2x07CA4tz16hSRDH1/qXgwY8AsHyenCidg==", + "requires": { + "@gatsbyjs/parcel-namer-relative-to-cwd": "^1.4.0", + "@parcel/bundler-default": "2.6.2", + "@parcel/compressor-raw": "2.6.2", + "@parcel/namer-default": "2.6.2", + "@parcel/optimizer-terser": "2.6.2", + "@parcel/packager-js": "2.6.2", + "@parcel/packager-raw": "2.6.2", + "@parcel/reporter-dev-server": "2.6.2", + "@parcel/resolver-default": "2.6.2", + "@parcel/runtime-browser-hmr": "2.6.2", + "@parcel/runtime-js": "2.6.2", + "@parcel/runtime-react-refresh": "2.6.2", + "@parcel/runtime-service-worker": "2.6.2", + "@parcel/transformer-js": "2.6.2", + "@parcel/transformer-json": "2.6.2", + "@parcel/transformer-raw": "2.6.2", + "@parcel/transformer-react-refresh-wrap": "2.6.2" } }, "gatsby-plugin-gatsby-cloud": { - "version": "4.18.1", - "resolved": "https://registry.npmjs.org/gatsby-plugin-gatsby-cloud/-/gatsby-plugin-gatsby-cloud-4.18.1.tgz", - "integrity": "sha512-FDrLl3w3WHVJCzddTYcSCqEi4DLvS9e8/9LY312QnxOqPv+fnLoSDYDyqazyK9/mu6gMz8cUU7UoHsMqpZNbCg==", + "version": "4.19.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-gatsby-cloud/-/gatsby-plugin-gatsby-cloud-4.19.0.tgz", + "integrity": "sha512-3p/lXOUjJ6D0FsI32p924Ty/JlovqdwunnlBps5sESmn2FPfaBO6jVWgR3W920kFAQh1se94Ps1/NwY+9wugiQ==", "requires": { "@babel/runtime": "^7.15.4", "fs-extra": "^10.1.0", - "gatsby-core-utils": "^3.18.1", - "gatsby-telemetry": "^3.18.1", + "gatsby-core-utils": "^3.19.0", + "gatsby-telemetry": "^3.19.0", "kebab-hash": "^0.1.2", "lodash": "^4.17.21", "webpack-assets-manifest": "^5.1.0" + }, + "dependencies": { + "gatsby-core-utils": { + "version": "3.19.0", + "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.19.0.tgz", + "integrity": "sha512-cjXs9DsXkPZt+UdiLHxtq+rGMGVrcnM0KwkawlruvPchI7lqGNv9CScqlvYPxx1dBhu3zSZS26EBALMlFhyOJA==", + "requires": { + "@babel/runtime": "^7.15.4", + "ci-info": "2.0.0", + "configstore": "^5.0.1", + "fastq": "^1.13.0", + "file-type": "^16.5.3", + "fs-extra": "^10.1.0", + "got": "^11.8.5", + "import-from": "^4.0.0", + "lmdb": "2.5.3", + "lock": "^1.1.0", + "node-object-hash": "^2.3.10", + "proper-lockfile": "^4.1.2", + "resolve-from": "^5.0.0", + "tmp": "^0.2.1", + "xdg-basedir": "^4.0.0" + } + } } }, "gatsby-plugin-image": { - "version": "2.18.1", - "resolved": "https://registry.npmjs.org/gatsby-plugin-image/-/gatsby-plugin-image-2.18.1.tgz", - "integrity": "sha512-PsNIWq5bVALRRshbKOL97tqZTT2r0iILlP+K26YHfd+54DOUPqjESGZ/x7rnv2WMBVFd+Xtkmrx6M1rW86g1Rw==", + "version": "2.19.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-image/-/gatsby-plugin-image-2.19.0.tgz", + "integrity": "sha512-Eu2LY1nfkTdr5hJip5TcZNUqzWQps2Zq4KnPJmgmxpGOYIbrgu8B2kEKQM5hKoe5flu4Xu5gj+CObEMlBj5K1w==", "requires": { "@babel/code-frame": "^7.14.0", "@babel/parser": "^7.15.5", "@babel/runtime": "^7.15.4", "@babel/traverse": "^7.15.4", "babel-jsx-utils": "^1.1.0", - "babel-plugin-remove-graphql-queries": "^4.18.1", + "babel-plugin-remove-graphql-queries": "^4.19.0", "camelcase": "^5.3.1", "chokidar": "^3.5.3", "common-tags": "^1.8.2", "fs-extra": "^10.1.0", - "gatsby-core-utils": "^3.18.1", - "gatsby-plugin-utils": "^3.12.1", + "gatsby-core-utils": "^3.19.0", + "gatsby-plugin-utils": "^3.13.0", "objectFitPolyfill": "^2.3.5", "prop-types": "^15.8.1" + }, + "dependencies": { + "gatsby-core-utils": { + "version": "3.19.0", + "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.19.0.tgz", + "integrity": "sha512-cjXs9DsXkPZt+UdiLHxtq+rGMGVrcnM0KwkawlruvPchI7lqGNv9CScqlvYPxx1dBhu3zSZS26EBALMlFhyOJA==", + "requires": { + "@babel/runtime": "^7.15.4", + "ci-info": "2.0.0", + "configstore": "^5.0.1", + "fastq": "^1.13.0", + "file-type": "^16.5.3", + "fs-extra": "^10.1.0", + "got": "^11.8.5", + "import-from": "^4.0.0", + "lmdb": "2.5.3", + "lock": "^1.1.0", + "node-object-hash": "^2.3.10", + "proper-lockfile": "^4.1.2", + "resolve-from": "^5.0.0", + "tmp": "^0.2.1", + "xdg-basedir": "^4.0.0" + } + }, + "gatsby-plugin-utils": { + "version": "3.13.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-utils/-/gatsby-plugin-utils-3.13.0.tgz", + "integrity": "sha512-iFFWswld/Nu8IrSCikZXC4/cud9txv3ikjkQiGLccJStS9VH2rSY4XEMNRqsKN9Spe3pFBOr/97yYUaPhZaQWg==", + "requires": { + "@babel/runtime": "^7.15.4", + "@gatsbyjs/potrace": "^2.2.0", + "fs-extra": "^10.1.0", + "gatsby-core-utils": "^3.19.0", + "gatsby-sharp": "^0.13.0", + "graphql-compose": "^9.0.7", + "import-from": "^4.0.0", + "joi": "^17.4.2", + "mime": "^3.0.0", + "mini-svg-data-uri": "^1.4.4", + "svgo": "^2.8.0" + } + }, + "gatsby-sharp": { + "version": "0.13.0", + "resolved": "https://registry.npmjs.org/gatsby-sharp/-/gatsby-sharp-0.13.0.tgz", + "integrity": "sha512-dGuIuWP3rC7hXl/CgkHEY4WQEW+B9Rsg8uo6u+OumuLnLBxD4vTusEIGctVKzlyIxpENEQylQ7w1JKHX9fOy9g==", + "requires": { + "@types/sharp": "^0.30.0", + "sharp": "^0.30.3" + } + }, + "mime": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-3.0.0.tgz", + "integrity": "sha512-jSCU7/VB1loIWBZe14aEYHU/+1UMEHoaO7qxCOVJOw9GgH72VAWppxNcjU+x9a2k3GSIBXNKxXQFqRvvZ7vr3A==" + } } }, "gatsby-plugin-manifest": { @@ -7494,35 +7542,115 @@ } }, "gatsby-plugin-offline": { - "version": "5.18.1", - "resolved": "https://registry.npmjs.org/gatsby-plugin-offline/-/gatsby-plugin-offline-5.18.1.tgz", - "integrity": "sha512-Gbk3bNPPCGWgZluXtmW2FUOBmLoxShuXeInCZlYz+p+Vz9jnNUIWk2SFZO1oeo7SFzuQpdkcy0oClOCYVZ9ClA==", + "version": "5.19.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-offline/-/gatsby-plugin-offline-5.19.0.tgz", + "integrity": "sha512-bTouKG26tqlKMCc8q9Fq3+agSv1gO7raEVdjhmtWrbLMPK1RKUv8alOnNc0inMCT/so+vSb7VBKRz0nQSv+O8A==", "requires": { "@babel/runtime": "^7.15.4", "cheerio": "^1.0.0-rc.10", - "gatsby-core-utils": "^3.18.1", + "gatsby-core-utils": "^3.19.0", "glob": "^7.2.3", "idb-keyval": "^3.2.0", "lodash": "^4.17.21", "workbox-build": "^4.3.1" + }, + "dependencies": { + "gatsby-core-utils": { + "version": "3.19.0", + "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.19.0.tgz", + "integrity": "sha512-cjXs9DsXkPZt+UdiLHxtq+rGMGVrcnM0KwkawlruvPchI7lqGNv9CScqlvYPxx1dBhu3zSZS26EBALMlFhyOJA==", + "requires": { + "@babel/runtime": "^7.15.4", + "ci-info": "2.0.0", + "configstore": "^5.0.1", + "fastq": "^1.13.0", + "file-type": "^16.5.3", + "fs-extra": "^10.1.0", + "got": "^11.8.5", + "import-from": "^4.0.0", + "lmdb": "2.5.3", + "lock": "^1.1.0", + "node-object-hash": "^2.3.10", + "proper-lockfile": "^4.1.2", + "resolve-from": "^5.0.0", + "tmp": "^0.2.1", + "xdg-basedir": "^4.0.0" + } + } } }, "gatsby-plugin-page-creator": { - "version": "4.18.1", - "resolved": "https://registry.npmjs.org/gatsby-plugin-page-creator/-/gatsby-plugin-page-creator-4.18.1.tgz", - "integrity": "sha512-XPAglahQ1fDnSdSNJmtAGwVqB7yZDGPOQQBQX7LD74XwYP6uriRo4LyeI+gEXRqW4d63ZL3VMvgdisde9M95LQ==", + "version": "4.19.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-page-creator/-/gatsby-plugin-page-creator-4.19.0.tgz", + "integrity": "sha512-JGclCb2lniTjBdFzoiF0Px9EhVY/3uiWx7mqnvfdVO85VVey5+eCKL60Aqamjovo6C+l/0Uldt4uT1EpNLC3Xw==", "requires": { "@babel/runtime": "^7.15.4", "@babel/traverse": "^7.15.4", "@sindresorhus/slugify": "^1.1.2", "chokidar": "^3.5.3", "fs-exists-cached": "^1.0.0", - "gatsby-core-utils": "^3.18.1", - "gatsby-page-utils": "^2.18.1", - "gatsby-plugin-utils": "^3.12.1", - "gatsby-telemetry": "^3.18.1", + "gatsby-core-utils": "^3.19.0", + "gatsby-page-utils": "^2.19.0", + "gatsby-plugin-utils": "^3.13.0", + "gatsby-telemetry": "^3.19.0", "globby": "^11.1.0", "lodash": "^4.17.21" + }, + "dependencies": { + "gatsby-core-utils": { + "version": "3.19.0", + "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.19.0.tgz", + "integrity": "sha512-cjXs9DsXkPZt+UdiLHxtq+rGMGVrcnM0KwkawlruvPchI7lqGNv9CScqlvYPxx1dBhu3zSZS26EBALMlFhyOJA==", + "requires": { + "@babel/runtime": "^7.15.4", + "ci-info": "2.0.0", + "configstore": "^5.0.1", + "fastq": "^1.13.0", + "file-type": "^16.5.3", + "fs-extra": "^10.1.0", + "got": "^11.8.5", + "import-from": "^4.0.0", + "lmdb": "2.5.3", + "lock": "^1.1.0", + "node-object-hash": "^2.3.10", + "proper-lockfile": "^4.1.2", + "resolve-from": "^5.0.0", + "tmp": "^0.2.1", + "xdg-basedir": "^4.0.0" + } + }, + "gatsby-plugin-utils": { + "version": "3.13.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-utils/-/gatsby-plugin-utils-3.13.0.tgz", + "integrity": "sha512-iFFWswld/Nu8IrSCikZXC4/cud9txv3ikjkQiGLccJStS9VH2rSY4XEMNRqsKN9Spe3pFBOr/97yYUaPhZaQWg==", + "requires": { + "@babel/runtime": "^7.15.4", + "@gatsbyjs/potrace": "^2.2.0", + "fs-extra": "^10.1.0", + "gatsby-core-utils": "^3.19.0", + "gatsby-sharp": "^0.13.0", + "graphql-compose": "^9.0.7", + "import-from": "^4.0.0", + "joi": "^17.4.2", + "mime": "^3.0.0", + "mini-svg-data-uri": "^1.4.4", + "svgo": "^2.8.0" + } + }, + "gatsby-sharp": { + "version": "0.13.0", + "resolved": "https://registry.npmjs.org/gatsby-sharp/-/gatsby-sharp-0.13.0.tgz", + "integrity": "sha512-dGuIuWP3rC7hXl/CgkHEY4WQEW+B9Rsg8uo6u+OumuLnLBxD4vTusEIGctVKzlyIxpENEQylQ7w1JKHX9fOy9g==", + "requires": { + "@types/sharp": "^0.30.0", + "sharp": "^0.30.3" + } + }, + "mime": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-3.0.0.tgz", + "integrity": "sha512-jSCU7/VB1loIWBZe14aEYHU/+1UMEHoaO7qxCOVJOw9GgH72VAWppxNcjU+x9a2k3GSIBXNKxXQFqRvvZ7vr3A==" + } } }, "gatsby-plugin-react-helmet": { @@ -7534,20 +7662,20 @@ } }, "gatsby-plugin-sharp": { - "version": "4.18.1", - "resolved": "https://registry.npmjs.org/gatsby-plugin-sharp/-/gatsby-plugin-sharp-4.18.1.tgz", - "integrity": "sha512-oUAy+1Ey8/HKSYwY9W+LkO8BT7nVk6it2n9QympS8BzGgnFXY8695flmaPtQySMES+OwYGtlh0JhU+p9caVZAQ==", + "version": "4.19.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-sharp/-/gatsby-plugin-sharp-4.19.0.tgz", + "integrity": "sha512-2wIxbCoJmZMeCw+V9ht90tmwoSF2eaEKj6j5QMLe+NlLpLOXwmsHjrauMpqd8ILmcKpZTOJr9yEplzbjxlD36A==", "requires": { "@babel/runtime": "^7.15.4", "@gatsbyjs/potrace": "^2.2.0", - "async": "^3.2.3", + "async": "^3.2.4", "bluebird": "^3.7.2", "debug": "^4.3.4", "filenamify": "^4.3.0", "fs-extra": "^10.1.0", - "gatsby-core-utils": "^3.18.1", - "gatsby-plugin-utils": "^3.12.1", - "gatsby-telemetry": "^3.18.1", + "gatsby-core-utils": "^3.19.0", + "gatsby-plugin-utils": "^3.13.0", + "gatsby-telemetry": "^3.19.0", "got": "^11.8.5", "lodash": "^4.17.21", "mini-svg-data-uri": "^1.4.4", @@ -7573,26 +7701,6 @@ "supports-color": "^5.3.0" } }, - "css-select": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/css-select/-/css-select-2.1.0.tgz", - "integrity": "sha512-Dqk7LQKpwLoH3VovzZnkzegqNSuAziQyNZUcrdDM401iY+R5NkGBXGmtO05/yaXQziALuPogeG0b7UAgjnTJTQ==", - "requires": { - "boolbase": "^1.0.0", - "css-what": "^3.2.1", - "domutils": "^1.7.0", - "nth-check": "^1.0.2" - } - }, - "css-tree": { - "version": "1.0.0-alpha.37", - "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-1.0.0-alpha.37.tgz", - "integrity": "sha512-DMxWJg0rnz7UgxKT0Q1HU/L9BeJI0M6ksor0OgqOnF+aRCDWg/N2641HmVyU9KVIu0OVVWOb2IpC9A+BJRnejg==", - "requires": { - "mdn-data": "2.0.4", - "source-map": "^0.6.1" - } - }, "css-what": { "version": "3.4.2", "resolved": "https://registry.npmjs.org/css-what/-/css-what-3.4.2.tgz", @@ -7636,11 +7744,81 @@ "domelementtype": "1" } }, + "gatsby-core-utils": { + "version": "3.19.0", + "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.19.0.tgz", + "integrity": "sha512-cjXs9DsXkPZt+UdiLHxtq+rGMGVrcnM0KwkawlruvPchI7lqGNv9CScqlvYPxx1dBhu3zSZS26EBALMlFhyOJA==", + "requires": { + "@babel/runtime": "^7.15.4", + "ci-info": "2.0.0", + "configstore": "^5.0.1", + "fastq": "^1.13.0", + "file-type": "^16.5.3", + "fs-extra": "^10.1.0", + "got": "^11.8.5", + "import-from": "^4.0.0", + "lmdb": "2.5.3", + "lock": "^1.1.0", + "node-object-hash": "^2.3.10", + "proper-lockfile": "^4.1.2", + "resolve-from": "^5.0.0", + "tmp": "^0.2.1", + "xdg-basedir": "^4.0.0" + } + }, + "gatsby-plugin-utils": { + "version": "3.13.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-utils/-/gatsby-plugin-utils-3.13.0.tgz", + "integrity": "sha512-iFFWswld/Nu8IrSCikZXC4/cud9txv3ikjkQiGLccJStS9VH2rSY4XEMNRqsKN9Spe3pFBOr/97yYUaPhZaQWg==", + "requires": { + "@babel/runtime": "^7.15.4", + "@gatsbyjs/potrace": "^2.2.0", + "fs-extra": "^10.1.0", + "gatsby-core-utils": "^3.19.0", + "gatsby-sharp": "^0.13.0", + "graphql-compose": "^9.0.7", + "import-from": "^4.0.0", + "joi": "^17.4.2", + "mime": "^3.0.0", + "mini-svg-data-uri": "^1.4.4", + "svgo": "^2.8.0" + }, + "dependencies": { + "svgo": { + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/svgo/-/svgo-2.8.0.tgz", + "integrity": "sha512-+N/Q9kV1+F+UeWYoSiULYo4xYSDQlTgb+ayMobAXPwMnLvop7oxKMo9OzIrX5x3eS4L4f2UHhc9axXwY8DpChg==", + "requires": { + "@trysound/sax": "0.2.0", + "commander": "^7.2.0", + "css-select": "^4.1.3", + "css-tree": "^1.1.3", + "csso": "^4.2.0", + "picocolors": "^1.0.0", + "stable": "^0.1.8" + } + } + } + }, + "gatsby-sharp": { + "version": "0.13.0", + "resolved": "https://registry.npmjs.org/gatsby-sharp/-/gatsby-sharp-0.13.0.tgz", + "integrity": "sha512-dGuIuWP3rC7hXl/CgkHEY4WQEW+B9Rsg8uo6u+OumuLnLBxD4vTusEIGctVKzlyIxpENEQylQ7w1JKHX9fOy9g==", + "requires": { + "@types/sharp": "^0.30.0", + "sharp": "^0.30.3" + } + }, "mdn-data": { "version": "2.0.4", "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.4.tgz", "integrity": "sha512-iV3XNKw06j5Q7mi6h+9vbx23Tv7JkjEVgKHW4pimwyDGWm0OIQntJJ+u1C6mg6mK1EaTv42XQ7w76yuzH7M2cA==" }, + "mime": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-3.0.0.tgz", + "integrity": "sha512-jSCU7/VB1loIWBZe14aEYHU/+1UMEHoaO7qxCOVJOw9GgH72VAWppxNcjU+x9a2k3GSIBXNKxXQFqRvvZ7vr3A==" + }, "nth-check": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-1.0.2.tgz", @@ -7672,14 +7850,36 @@ "stable": "^0.1.8", "unquote": "~1.1.1", "util.promisify": "~1.0.0" + }, + "dependencies": { + "css-select": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/css-select/-/css-select-2.1.0.tgz", + "integrity": "sha512-Dqk7LQKpwLoH3VovzZnkzegqNSuAziQyNZUcrdDM401iY+R5NkGBXGmtO05/yaXQziALuPogeG0b7UAgjnTJTQ==", + "requires": { + "boolbase": "^1.0.0", + "css-what": "^3.2.1", + "domutils": "^1.7.0", + "nth-check": "^1.0.2" + } + }, + "css-tree": { + "version": "1.0.0-alpha.37", + "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-1.0.0-alpha.37.tgz", + "integrity": "sha512-DMxWJg0rnz7UgxKT0Q1HU/L9BeJI0M6ksor0OgqOnF+aRCDWg/N2641HmVyU9KVIu0OVVWOb2IpC9A+BJRnejg==", + "requires": { + "mdn-data": "2.0.4", + "source-map": "^0.6.1" + } + } } } } }, "gatsby-plugin-typescript": { - "version": "4.18.1", - "resolved": "https://registry.npmjs.org/gatsby-plugin-typescript/-/gatsby-plugin-typescript-4.18.1.tgz", - "integrity": "sha512-YUZcqL2WWiL2ngKe4A5FpTjCij2pLxiim+QaujeKfMjeWfHJ13uQ74HlxQXNpGAy4vMRBiU4CJH71RXgS1aoaA==", + "version": "4.19.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-typescript/-/gatsby-plugin-typescript-4.19.0.tgz", + "integrity": "sha512-f+aC4g/pTkUqFLTHo3OLdPQgdIFcEdoM5i8H4Pph5O4rmFXYHkkQKimRJmAz9cBb6/1wN7IBqI9m4k3AefaAjA==", "requires": { "@babel/core": "^7.15.5", "@babel/plugin-proposal-nullish-coalescing-operator": "^7.14.5", @@ -7687,7 +7887,7 @@ "@babel/plugin-proposal-optional-chaining": "^7.14.5", "@babel/preset-typescript": "^7.15.0", "@babel/runtime": "^7.15.4", - "babel-plugin-remove-graphql-queries": "^4.18.1" + "babel-plugin-remove-graphql-queries": "^4.19.0" } }, "gatsby-plugin-utils": { @@ -7716,18 +7916,18 @@ } }, "gatsby-react-router-scroll": { - "version": "5.18.0", - "resolved": "https://registry.npmjs.org/gatsby-react-router-scroll/-/gatsby-react-router-scroll-5.18.0.tgz", - "integrity": "sha512-/A1k468s6g713c8me5DuGiia8rPWLuwjITQ/pKqgJwioJVB6MnD/iBCbHUTzLHlNwZypAVdGHCN8fCIcPcMb6Q==", + "version": "5.19.0", + "resolved": "https://registry.npmjs.org/gatsby-react-router-scroll/-/gatsby-react-router-scroll-5.19.0.tgz", + "integrity": "sha512-tl1E2/ger3Aw5Vb5n53i9wCBePYqb2dBilO05pd6FfgKYJveFidQwGzzOn1F9smdWq+5c3KJSTlKJaNYPwn72w==", "requires": { "@babel/runtime": "^7.15.4", "prop-types": "^15.8.1" } }, "gatsby-script": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/gatsby-script/-/gatsby-script-1.3.0.tgz", - "integrity": "sha512-eCz6mcMFpB7kvpmyM7AtMTxNxzdrzPgt8GiuDKWFOlDgk1il6PUjO99QsL/cCeokmaiH/6egVnm9b33/x+sy9A==" + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/gatsby-script/-/gatsby-script-1.4.0.tgz", + "integrity": "sha512-+GmHTAfFq/sQWPvl1E8QvApRfxqqamhdqjFo4YloOQRAlDc+e3nMzTzvgj8z3IWqDqlvEfHMnlvQg60E5ThO/A==" }, "gatsby-sharp": { "version": "0.12.0", @@ -7739,15 +7939,15 @@ } }, "gatsby-source-filesystem": { - "version": "4.18.1", - "resolved": "https://registry.npmjs.org/gatsby-source-filesystem/-/gatsby-source-filesystem-4.18.1.tgz", - "integrity": "sha512-b1sZB0ziLJEGZOi2+ieUKWJXn3X1hK+F3nN5joaI3A+ptz75GpNuv04tFoq9oICzOHyuNuSGN5YgO8kMpmoaGQ==", + "version": "4.19.0", + "resolved": "https://registry.npmjs.org/gatsby-source-filesystem/-/gatsby-source-filesystem-4.19.0.tgz", + "integrity": "sha512-UUBEqRCKpq/rWX5K8Kizmoi2Cls9oOTEtZRUrhdtMqpz5Y6VAmd7Pwina03r0fej+AoebZWOEzPTOh+WhpIDFw==", "requires": { "@babel/runtime": "^7.15.4", "chokidar": "^3.5.3", "file-type": "^16.5.3", "fs-extra": "^10.1.0", - "gatsby-core-utils": "^3.18.1", + "gatsby-core-utils": "^3.19.0", "got": "^9.6.0", "md5-file": "^5.0.0", "mime": "^2.5.2", @@ -7757,61 +7957,53 @@ "xstate": "^4.26.1" }, "dependencies": { - "@sindresorhus/is": { - "version": "0.14.0", - "resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-0.14.0.tgz", - "integrity": "sha512-9NET910DNaIPngYnLLPeg+Ogzqsi9uM4mSboU5y6p8S5DzMTVEsJZrawi+BoDNUVBa2DhJqQYUFvMDfgU062LQ==" - }, - "@szmarczak/http-timer": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/@szmarczak/http-timer/-/http-timer-1.1.2.tgz", - "integrity": "sha512-XIB2XbzHTN6ieIjfIMV9hlVcfPU26s2vafYWQcZHWXHOxiaRZYEDKEwdl129Zyg50+foYV2jCgtrqSA6qNuNSA==", - "requires": { - "defer-to-connect": "^1.0.1" - } + "defer-to-connect": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/defer-to-connect/-/defer-to-connect-1.1.3.tgz", + "integrity": "sha512-0ISdNousHvZT2EiFlZeZAHBUvSxmKswVCEf8hW7KWgG4a8MVEu/3Vb6uWYozkjylyCxe0JBIiRB1jV45S70WVQ==" }, - "cacheable-request": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/cacheable-request/-/cacheable-request-6.1.0.tgz", - "integrity": "sha512-Oj3cAGPCqOZX7Rz64Uny2GYAZNliQSqfbePrgAQ1wKAihYmCUnraBtJtKcGR4xz7wF+LoJC+ssFZvv5BgF9Igg==", + "gatsby-core-utils": { + "version": "3.19.0", + "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.19.0.tgz", + "integrity": "sha512-cjXs9DsXkPZt+UdiLHxtq+rGMGVrcnM0KwkawlruvPchI7lqGNv9CScqlvYPxx1dBhu3zSZS26EBALMlFhyOJA==", "requires": { - "clone-response": "^1.0.2", - "get-stream": "^5.1.0", - "http-cache-semantics": "^4.0.0", - "keyv": "^3.0.0", - "lowercase-keys": "^2.0.0", - "normalize-url": "^4.1.0", - "responselike": "^1.0.2" + "@babel/runtime": "^7.15.4", + "ci-info": "2.0.0", + "configstore": "^5.0.1", + "fastq": "^1.13.0", + "file-type": "^16.5.3", + "fs-extra": "^10.1.0", + "got": "^11.8.5", + "import-from": "^4.0.0", + "lmdb": "2.5.3", + "lock": "^1.1.0", + "node-object-hash": "^2.3.10", + "proper-lockfile": "^4.1.2", + "resolve-from": "^5.0.0", + "tmp": "^0.2.1", + "xdg-basedir": "^4.0.0" }, "dependencies": { - "get-stream": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz", - "integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==", + "got": { + "version": "11.8.5", + "resolved": "https://registry.npmjs.org/got/-/got-11.8.5.tgz", + "integrity": "sha512-o0Je4NvQObAuZPHLFoRSkdG2lTgtcynqymzg2Vupdx6PorhaT5MCbIyXG6d4D94kk8ZG57QeosgdiqfJWhEhlQ==", "requires": { - "pump": "^3.0.0" + "@sindresorhus/is": "^4.0.0", + "@szmarczak/http-timer": "^4.0.5", + "@types/cacheable-request": "^6.0.1", + "@types/responselike": "^1.0.0", + "cacheable-lookup": "^5.0.3", + "cacheable-request": "^7.0.2", + "decompress-response": "^6.0.0", + "http2-wrapper": "^1.0.0-beta.5.2", + "lowercase-keys": "^2.0.0", + "p-cancelable": "^2.0.0", + "responselike": "^2.0.0" } - }, - "lowercase-keys": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-2.0.0.tgz", - "integrity": "sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA==" } } }, - "decompress-response": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-3.3.0.tgz", - "integrity": "sha512-BzRPQuY1ip+qDonAOz42gRm/pg9F768C+npV/4JOsxRC2sq+Rlk+Q4ZCAsOhnIaMrgarILY+RMUIvMmmX1qAEA==", - "requires": { - "mimic-response": "^1.0.0" - } - }, - "defer-to-connect": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/defer-to-connect/-/defer-to-connect-1.1.3.tgz", - "integrity": "sha512-0ISdNousHvZT2EiFlZeZAHBUvSxmKswVCEf8hW7KWgG4a8MVEu/3Vb6uWYozkjylyCxe0JBIiRB1jV45S70WVQ==" - }, "get-stream": { "version": "4.1.0", "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz", @@ -7836,6 +8028,76 @@ "p-cancelable": "^1.0.0", "to-readable-stream": "^1.0.0", "url-parse-lax": "^3.0.0" + }, + "dependencies": { + "@sindresorhus/is": { + "version": "0.14.0", + "resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-0.14.0.tgz", + "integrity": "sha512-9NET910DNaIPngYnLLPeg+Ogzqsi9uM4mSboU5y6p8S5DzMTVEsJZrawi+BoDNUVBa2DhJqQYUFvMDfgU062LQ==" + }, + "@szmarczak/http-timer": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@szmarczak/http-timer/-/http-timer-1.1.2.tgz", + "integrity": "sha512-XIB2XbzHTN6ieIjfIMV9hlVcfPU26s2vafYWQcZHWXHOxiaRZYEDKEwdl129Zyg50+foYV2jCgtrqSA6qNuNSA==", + "requires": { + "defer-to-connect": "^1.0.1" + } + }, + "cacheable-request": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/cacheable-request/-/cacheable-request-6.1.0.tgz", + "integrity": "sha512-Oj3cAGPCqOZX7Rz64Uny2GYAZNliQSqfbePrgAQ1wKAihYmCUnraBtJtKcGR4xz7wF+LoJC+ssFZvv5BgF9Igg==", + "requires": { + "clone-response": "^1.0.2", + "get-stream": "^5.1.0", + "http-cache-semantics": "^4.0.0", + "keyv": "^3.0.0", + "lowercase-keys": "^2.0.0", + "normalize-url": "^4.1.0", + "responselike": "^1.0.2" + }, + "dependencies": { + "get-stream": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz", + "integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==", + "requires": { + "pump": "^3.0.0" + } + }, + "lowercase-keys": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-2.0.0.tgz", + "integrity": "sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA==" + } + } + }, + "decompress-response": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-3.3.0.tgz", + "integrity": "sha512-BzRPQuY1ip+qDonAOz42gRm/pg9F768C+npV/4JOsxRC2sq+Rlk+Q4ZCAsOhnIaMrgarILY+RMUIvMmmX1qAEA==", + "requires": { + "mimic-response": "^1.0.0" + } + }, + "lowercase-keys": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-1.0.1.tgz", + "integrity": "sha512-G2Lj61tXDnVFFOi8VZds+SoQjtQC3dgokKdDG2mTm1tx4m50NUHBOZSBwQQHyy0V12A0JTG4icfZQH+xPyh8VA==" + }, + "p-cancelable": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/p-cancelable/-/p-cancelable-1.1.0.tgz", + "integrity": "sha512-s73XxOZ4zpt1edZYZzvhqFa6uvQc1vwUa0K0BdtIZgQMAJj9IbebH+JkgKZc9h+B05PKHLOTl4ajG1BmNrVZlw==" + }, + "responselike": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/responselike/-/responselike-1.0.2.tgz", + "integrity": "sha512-/Fpe5guzJk1gPqdJLJR5u7eG/gNY4nImjbRDaVWVMRhne55TCmj2i9Q+54PBRfatRC8v/rIiv9BN0pMd9OV5EQ==", + "requires": { + "lowercase-keys": "^1.0.0" + } + } } }, "json-buffer": { @@ -7851,35 +8113,17 @@ "json-buffer": "3.0.0" } }, - "lowercase-keys": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-1.0.1.tgz", - "integrity": "sha512-G2Lj61tXDnVFFOi8VZds+SoQjtQC3dgokKdDG2mTm1tx4m50NUHBOZSBwQQHyy0V12A0JTG4icfZQH+xPyh8VA==" - }, "normalize-url": { "version": "4.5.1", "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-4.5.1.tgz", "integrity": "sha512-9UZCFRHQdNrfTpGg8+1INIg93B6zE0aXMVFkw1WFwvO4SlZywU6aLg5Of0Ap/PgcbSw4LNxvMWXMeugwMCX0AA==" - }, - "p-cancelable": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/p-cancelable/-/p-cancelable-1.1.0.tgz", - "integrity": "sha512-s73XxOZ4zpt1edZYZzvhqFa6uvQc1vwUa0K0BdtIZgQMAJj9IbebH+JkgKZc9h+B05PKHLOTl4ajG1BmNrVZlw==" - }, - "responselike": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/responselike/-/responselike-1.0.2.tgz", - "integrity": "sha512-/Fpe5guzJk1gPqdJLJR5u7eG/gNY4nImjbRDaVWVMRhne55TCmj2i9Q+54PBRfatRC8v/rIiv9BN0pMd9OV5EQ==", - "requires": { - "lowercase-keys": "^1.0.0" - } } } }, "gatsby-telemetry": { - "version": "3.18.1", - "resolved": "https://registry.npmjs.org/gatsby-telemetry/-/gatsby-telemetry-3.18.1.tgz", - "integrity": "sha512-EjjsUv15BZGsmnPrOINRT/s7d18DTKokpp2NDZLm8uOs3MwVoLtUZ/BS7h2NTmgK+WN93q3bNYRkZgKgV9QC1A==", + "version": "3.19.0", + "resolved": "https://registry.npmjs.org/gatsby-telemetry/-/gatsby-telemetry-3.19.0.tgz", + "integrity": "sha512-5JQcTm2zCLWTmnXOdOe0gxuk7aRZSTaVrOrytMlwAR7trvtBC/fKqMhJHsYwl5uW9K06F59ZdkC0apJTAPkGww==", "requires": { "@babel/code-frame": "^7.14.0", "@babel/runtime": "^7.15.4", @@ -7889,7 +8133,7 @@ "boxen": "^4.2.0", "configstore": "^5.0.1", "fs-extra": "^10.1.0", - "gatsby-core-utils": "^3.18.1", + "gatsby-core-utils": "^3.19.0", "git-up": "^4.0.5", "is-docker": "^2.2.1", "lodash": "^4.17.21", @@ -7941,6 +8185,28 @@ "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" }, + "gatsby-core-utils": { + "version": "3.19.0", + "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.19.0.tgz", + "integrity": "sha512-cjXs9DsXkPZt+UdiLHxtq+rGMGVrcnM0KwkawlruvPchI7lqGNv9CScqlvYPxx1dBhu3zSZS26EBALMlFhyOJA==", + "requires": { + "@babel/runtime": "^7.15.4", + "ci-info": "2.0.0", + "configstore": "^5.0.1", + "fastq": "^1.13.0", + "file-type": "^16.5.3", + "fs-extra": "^10.1.0", + "got": "^11.8.5", + "import-from": "^4.0.0", + "lmdb": "2.5.3", + "lock": "^1.1.0", + "node-object-hash": "^2.3.10", + "proper-lockfile": "^4.1.2", + "resolve-from": "^5.0.0", + "tmp": "^0.2.1", + "xdg-basedir": "^4.0.0" + } + }, "has-flag": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", @@ -7978,9 +8244,9 @@ } }, "gatsby-worker": { - "version": "1.18.0", - "resolved": "https://registry.npmjs.org/gatsby-worker/-/gatsby-worker-1.18.0.tgz", - "integrity": "sha512-gNzqDrYFMXlfXCzdClORyDQWQZKTOF6nRUrhZT8PUxzQViO+DvnEKE3EAQvZizYKW1Hgw7cbiTtLG3qshkNepw==", + "version": "1.19.0", + "resolved": "https://registry.npmjs.org/gatsby-worker/-/gatsby-worker-1.19.0.tgz", + "integrity": "sha512-E0I51K5+rSpcUkv3wQ17FHZiicLeMH/Hz7p3oxlPCM43pcvsYJTa68Q0MqI1K6XV6Z8Nf48dERKMvHT0PnY4GQ==", "requires": { "@babel/core": "^7.15.5", "@babel/runtime": "^7.15.4" @@ -8418,6 +8684,11 @@ } } }, + "he": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/he/-/he-1.2.0.tgz", + "integrity": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==" + }, "header-case": { "version": "2.0.4", "resolved": "https://registry.npmjs.org/header-case/-/header-case-2.0.4.tgz", @@ -8468,23 +8739,6 @@ "toidentifier": "1.0.1" } }, - "http-proxy": { - "version": "1.18.1", - "resolved": "https://registry.npmjs.org/http-proxy/-/http-proxy-1.18.1.tgz", - "integrity": "sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==", - "requires": { - "eventemitter3": "^4.0.0", - "follow-redirects": "^1.0.0", - "requires-port": "^1.0.0" - }, - "dependencies": { - "eventemitter3": { - "version": "4.0.7", - "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.7.tgz", - "integrity": "sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==" - } - } - }, "http2-wrapper": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/http2-wrapper/-/http2-wrapper-1.0.3.tgz", @@ -9230,42 +9484,6 @@ } } }, - "lmdb-darwin-arm64": { - "version": "2.3.10", - "resolved": "https://registry.npmjs.org/lmdb-darwin-arm64/-/lmdb-darwin-arm64-2.3.10.tgz", - "integrity": "sha512-LVXbH2MYu7/ZuQ8+P9rv+SwNyBKltxo7vHAGJS94HWyfwnCbKEYER9PImBvNBwzvgtaYk6x0RMX3oor6e6KdDQ==", - "optional": true - }, - "lmdb-darwin-x64": { - "version": "2.3.10", - "resolved": "https://registry.npmjs.org/lmdb-darwin-x64/-/lmdb-darwin-x64-2.3.10.tgz", - "integrity": "sha512-gAc/1b/FZOb9yVOT+o0huA+hdW82oxLo5r22dFTLoRUFG1JMzxdTjmnW6ONVOHdqC9a5bt3vBCEY3jmXNqV26A==", - "optional": true - }, - "lmdb-linux-arm": { - "version": "2.3.10", - "resolved": "https://registry.npmjs.org/lmdb-linux-arm/-/lmdb-linux-arm-2.3.10.tgz", - "integrity": "sha512-Rb8+4JjsThuEcJ7GLLwFkCFnoiwv/3hAAbELWITz70buQFF+dCZvCWWgEgmDTxwn5r+wIkdUjmFv4dqqiKQFmQ==", - "optional": true - }, - "lmdb-linux-arm64": { - "version": "2.3.10", - "resolved": "https://registry.npmjs.org/lmdb-linux-arm64/-/lmdb-linux-arm64-2.3.10.tgz", - "integrity": "sha512-Ihr8mdICTK3jA4GXHxrXGK2oekn0mY6zuDSXQDNtyRSH19j3D2Y04A7SEI9S0EP/t5sjKSudYgZbiHDxRCsI5A==", - "optional": true - }, - "lmdb-linux-x64": { - "version": "2.3.10", - "resolved": "https://registry.npmjs.org/lmdb-linux-x64/-/lmdb-linux-x64-2.3.10.tgz", - "integrity": "sha512-E3l3pDiCA9uvnLf+t3qkmBGRO01dp1EHD0x0g0iRnfpAhV7wYbayJGfG93BUt22Tj3fnq4HDo4dQ6ZWaDI1nuw==", - "optional": true - }, - "lmdb-win32-x64": { - "version": "2.3.10", - "resolved": "https://registry.npmjs.org/lmdb-win32-x64/-/lmdb-win32-x64-2.3.10.tgz", - "integrity": "sha512-gspWk34tDANhjn+brdqZstJMptGiwj4qFNVg0Zey9ds+BUlif+Lgf5szrfOVzZ8gVRkk1Lgbz7i78+V7YK7SCA==", - "optional": true - }, "load-bmfont": { "version": "1.4.1", "resolved": "https://registry.npmjs.org/load-bmfont/-/load-bmfont-1.4.1.tgz", @@ -9776,11 +9994,6 @@ "resolved": "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.8.tgz", "integrity": "sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==" }, - "nan": { - "version": "2.16.0", - "resolved": "https://registry.npmjs.org/nan/-/nan-2.16.0.tgz", - "integrity": "sha512-UdAqHyFngu7TfQKsCBgAA6pWDkT8MAO7d0jyOecVhN5354xbLqdn8mV9Tat9gepAupm0bt2DbeaSC8vS52MuFA==" - }, "nanoid": { "version": "3.3.4", "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.4.tgz", @@ -9870,9 +10083,18 @@ "integrity": "sha512-2iGbaQBV+ITgCz76ZEjmhUKAKVf7xfY1sRl4UiKQspfZMH2h06SyhNsnSVy50cwkFQDGLyif6m/6uFXHkOZ6rg==" }, "node-gyp-build-optional-packages": { - "version": "4.3.5", - "resolved": "https://registry.npmjs.org/node-gyp-build-optional-packages/-/node-gyp-build-optional-packages-4.3.5.tgz", - "integrity": "sha512-5ke7D8SiQsTQL7CkHpfR1tLwfqtKc0KYEmlnkwd40jHCASskZeS98qoZ1qDUns2aUQWikcjidRUs6PM/3iyN/w==" + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/node-gyp-build-optional-packages/-/node-gyp-build-optional-packages-5.0.3.tgz", + "integrity": "sha512-k75jcVzk5wnnc/FMxsf4udAoTEUv2jY3ycfdSd3yWu6Cnd1oee6/CfZJApyscA4FJOmdoixWwiwOyf16RzD5JA==" + }, + "node-html-parser": { + "version": "5.3.3", + "resolved": "https://registry.npmjs.org/node-html-parser/-/node-html-parser-5.3.3.tgz", + "integrity": "sha512-ncg1033CaX9UexbyA7e1N0aAoAYRDiV8jkTvzEnfd1GDvzFdrsXLzR4p4ik8mwLgnaKP/jyUFWDy9q3jvRT2Jw==", + "requires": { + "css-select": "^4.2.1", + "he": "1.2.0" + } }, "node-int64": { "version": "0.4.0", @@ -11098,6 +11320,13 @@ "http-errors": "2.0.0", "iconv-lite": "0.4.24", "unpipe": "1.0.0" + }, + "dependencies": { + "bytes": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", + "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==" + } } }, "raw-loader": { @@ -11568,11 +11797,6 @@ "resolved": "https://registry.npmjs.org/require-package-name/-/require-package-name-2.0.1.tgz", "integrity": "sha512-uuoJ1hU/k6M0779t3VMVIYpb2VMJk05cehCaABFhXaibcbvfgR8wKiozLjVFSzJPmQMRqIcO0HMyTFqfV09V6Q==" }, - "requires-port": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz", - "integrity": "sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==" - }, "resolve": { "version": "1.22.1", "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.1.tgz", @@ -12845,9 +13069,9 @@ "integrity": "sha512-vRCqFv6UhXpWxZPyGDh/F3ZpNv8/qo7w6iufLpQg9aKnQ71qM4B5KiI7Mia9COcjEhrO9LueHpMYjYzsWH3OIg==" }, "update-browserslist-db": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.4.tgz", - "integrity": "sha512-jnmO2BEGUjsMOe/Fg9u0oczOe/ppIDZPebzccl1yDWGLFP16Pa1/RM5wEoKYPG2zstNcDuAStejyxsOuKINdGA==", + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.5.tgz", + "integrity": "sha512-dteFFpCyvuDdr9S/ff1ISkKt/9YZxKjI9WlRR99c180GaztJtRa/fn18FdxGVKVsnPY7/a/FDN68mcvUmP4U7Q==", "requires": { "escalade": "^3.1.1", "picocolors": "^1.0.0" diff --git a/starters/default/package.json b/starters/default/package.json index 9b8ce7babcd5d..52f3716a129e1 100644 --- a/starters/default/package.json +++ b/starters/default/package.json @@ -5,14 +5,14 @@ "version": "0.1.0", "author": "Kyle Mathews ", "dependencies": { - "gatsby": "^4.18.2", - "gatsby-plugin-gatsby-cloud": "^4.18.1", - "gatsby-plugin-image": "^2.18.1", + "gatsby": "^4.19.0", + "gatsby-plugin-gatsby-cloud": "^4.19.0", + "gatsby-plugin-image": "^2.19.0", "gatsby-plugin-manifest": "^4.18.1", - "gatsby-plugin-offline": "^5.18.1", + "gatsby-plugin-offline": "^5.19.0", "gatsby-plugin-react-helmet": "^5.18.0", - "gatsby-plugin-sharp": "^4.18.1", - "gatsby-source-filesystem": "^4.18.1", + "gatsby-plugin-sharp": "^4.19.0", + "gatsby-source-filesystem": "^4.19.0", "gatsby-transformer-sharp": "^4.18.1", "prop-types": "^15.8.1", "react": "^18.1.0", diff --git a/starters/gatsby-starter-blog-theme-core/package-lock.json b/starters/gatsby-starter-blog-theme-core/package-lock.json index 3bc77f2a18bdc..bba5673d3b94e 100644 --- a/starters/gatsby-starter-blog-theme-core/package-lock.json +++ b/starters/gatsby-starter-blog-theme-core/package-lock.json @@ -102,9 +102,9 @@ } }, "@babel/eslint-parser": { - "version": "7.18.2", - "resolved": "https://registry.npmjs.org/@babel/eslint-parser/-/eslint-parser-7.18.2.tgz", - "integrity": "sha512-oFQYkE8SuH14+uR51JVAmdqwKYXGRjEXx7s+WiagVjqQ+HPE+nnwyF2qlVG8evUsUHmPcA+6YXMEDbIhEyQc5A==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/eslint-parser/-/eslint-parser-7.18.9.tgz", + "integrity": "sha512-KzSGpMBggz4fKbRbWLNyPVTuQr6cmCcBhOyXTw/fieOVaw5oYAwcAj4a7UKcDYCPxQq+CG1NCDZH9e2JTXquiQ==", "requires": { "eslint-scope": "^5.1.1", "eslint-visitor-keys": "^2.1.0", @@ -614,9 +614,9 @@ }, "dependencies": { "@babel/helper-plugin-utils": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.18.6.tgz", - "integrity": "sha512-gvZnm1YAAxh13eJdkb9EWHBnF3eAub3XTLCZEehHT2kWxiKVRL64+ae5Y6Ivne0mVHmMYKT+xWgZO+gQhuLUBg==" + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.18.9.tgz", + "integrity": "sha512-aBXPT3bmtLryXaoJLyYPXPlSD4p1ld9aYeR+sJNOZjJJGiOpb+fKfh3NkcCu7J54nUJwCERPBExCCpyCOHnu/w==" } } }, @@ -709,9 +709,9 @@ }, "dependencies": { "@babel/helper-plugin-utils": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.18.6.tgz", - "integrity": "sha512-gvZnm1YAAxh13eJdkb9EWHBnF3eAub3XTLCZEehHT2kWxiKVRL64+ae5Y6Ivne0mVHmMYKT+xWgZO+gQhuLUBg==" + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.18.9.tgz", + "integrity": "sha512-aBXPT3bmtLryXaoJLyYPXPlSD4p1ld9aYeR+sJNOZjJJGiOpb+fKfh3NkcCu7J54nUJwCERPBExCCpyCOHnu/w==" } } }, @@ -807,18 +807,18 @@ } }, "@babel/plugin-transform-flow-strip-types": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.18.6.tgz", - "integrity": "sha512-wE0xtA7csz+hw4fKPwxmu5jnzAsXPIO57XnRwzXP3T19jWh1BODnPGoG9xKYwvAwusP7iUktHayRFbMPGtODaQ==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.18.9.tgz", + "integrity": "sha512-+G6rp2zRuOAInY5wcggsx4+QVao1qPM0osC9fTUVlAV3zOrzTCnrMAFVnR6+a3T8wz1wFIH7KhYMcMB3u1n80A==", "requires": { - "@babel/helper-plugin-utils": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.9", "@babel/plugin-syntax-flow": "^7.18.6" }, "dependencies": { "@babel/helper-plugin-utils": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.18.6.tgz", - "integrity": "sha512-gvZnm1YAAxh13eJdkb9EWHBnF3eAub3XTLCZEehHT2kWxiKVRL64+ae5Y6Ivne0mVHmMYKT+xWgZO+gQhuLUBg==" + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.18.9.tgz", + "integrity": "sha512-aBXPT3bmtLryXaoJLyYPXPlSD4p1ld9aYeR+sJNOZjJJGiOpb+fKfh3NkcCu7J54nUJwCERPBExCCpyCOHnu/w==" } } }, @@ -993,12 +993,12 @@ } }, "@babel/plugin-transform-runtime": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.18.6.tgz", - "integrity": "sha512-8uRHk9ZmRSnWqUgyae249EJZ94b0yAGLBIqzZzl+0iEdbno55Pmlt/32JZsHwXD9k/uZj18Aqqk35wBX4CBTXA==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.18.9.tgz", + "integrity": "sha512-wS8uJwBt7/b/mzE13ktsJdmS4JP/j7PQSaADtnb4I2wL0zK51MQ0pmF8/Jy0wUIS96fr+fXT6S/ifiPXnvrlSg==", "requires": { "@babel/helper-module-imports": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.9", "babel-plugin-polyfill-corejs2": "^0.3.1", "babel-plugin-polyfill-corejs3": "^0.5.2", "babel-plugin-polyfill-regenerator": "^0.3.1", @@ -1014,9 +1014,9 @@ } }, "@babel/helper-plugin-utils": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.18.6.tgz", - "integrity": "sha512-gvZnm1YAAxh13eJdkb9EWHBnF3eAub3XTLCZEehHT2kWxiKVRL64+ae5Y6Ivne0mVHmMYKT+xWgZO+gQhuLUBg==" + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.18.9.tgz", + "integrity": "sha512-aBXPT3bmtLryXaoJLyYPXPlSD4p1ld9aYeR+sJNOZjJJGiOpb+fKfh3NkcCu7J54nUJwCERPBExCCpyCOHnu/w==" }, "@babel/helper-validator-identifier": { "version": "7.18.6", @@ -1024,9 +1024,9 @@ "integrity": "sha512-MmetCkz9ej86nJQV+sFCxoGGrUbU3q02kgLciwkrt9QqEB7cP39oKEY0PakknEO0Gu20SskMRi+AYZ3b1TpN9g==" }, "@babel/types": { - "version": "7.18.8", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.8.tgz", - "integrity": "sha512-qwpdsmraq0aJ3osLJRApsc2ouSJCdnMeZwB0DhbtHAtRpZNZCdlbRnHIgcRKzdE1g0iOGg644fzjOBcdOz9cPw==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.9.tgz", + "integrity": "sha512-WwMLAg2MvJmt/rKEVQBBhIVffMmnilX4oe0sRe7iPOHIGsqpruFHHdrfj4O1CMMtgMtCU4oPafZjDPCRgO57Wg==", "requires": { "@babel/helper-validator-identifier": "^7.18.6", "to-fast-properties": "^2.0.0" @@ -1099,11 +1099,11 @@ } }, "@babel/generator": { - "version": "7.18.7", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.18.7.tgz", - "integrity": "sha512-shck+7VLlY72a2w9c3zYWuE1pwOKEiQHV7GTUbSnhyl5eu3i04t30tBY82ZRWrDfo3gkakCFtevExnxbkf2a3A==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.18.9.tgz", + "integrity": "sha512-wt5Naw6lJrL1/SGkipMiFxJjtyczUWTP38deiP1PO60HsBjDeKk08CGC3S8iVuvf0FmTdgKwU1KIXzSKL1G0Ug==", "requires": { - "@babel/types": "^7.18.7", + "@babel/types": "^7.18.9", "@jridgewell/gen-mapping": "^0.3.2", "jsesc": "^2.5.1" } @@ -1117,31 +1117,31 @@ } }, "@babel/helper-create-class-features-plugin": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.18.6.tgz", - "integrity": "sha512-YfDzdnoxHGV8CzqHGyCbFvXg5QESPFkXlHtvdCkesLjjVMT2Adxe4FGUR5ChIb3DxSaXO12iIOCWoXdsUVwnqw==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.18.9.tgz", + "integrity": "sha512-WvypNAYaVh23QcjpMR24CwZY2Nz6hqdOcFdPbNpV56hL5H6KiFheO7Xm1aPdlLQ7d5emYZX7VZwPp9x3z+2opw==", "requires": { "@babel/helper-annotate-as-pure": "^7.18.6", - "@babel/helper-environment-visitor": "^7.18.6", - "@babel/helper-function-name": "^7.18.6", - "@babel/helper-member-expression-to-functions": "^7.18.6", + "@babel/helper-environment-visitor": "^7.18.9", + "@babel/helper-function-name": "^7.18.9", + "@babel/helper-member-expression-to-functions": "^7.18.9", "@babel/helper-optimise-call-expression": "^7.18.6", - "@babel/helper-replace-supers": "^7.18.6", + "@babel/helper-replace-supers": "^7.18.9", "@babel/helper-split-export-declaration": "^7.18.6" } }, "@babel/helper-environment-visitor": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.18.6.tgz", - "integrity": "sha512-8n6gSfn2baOY+qlp+VSzsosjCVGFqWKmDF0cCWOybh52Dw3SEyoWR1KrhMJASjLwIEkkAufZ0xvr+SxLHSpy2Q==" + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.18.9.tgz", + "integrity": "sha512-3r/aACDJ3fhQ/EVgFy0hpj8oHyHpQc+LPtJoY9SzTThAsStm4Ptegq92vqKoE3vD706ZVFWITnMnxucw+S9Ipg==" }, "@babel/helper-function-name": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.18.6.tgz", - "integrity": "sha512-0mWMxV1aC97dhjCah5U5Ua7668r5ZmSC2DLfH2EZnf9c3/dHZKiFa5pRLMH5tjSl471tY6496ZWk/kjNONBxhw==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.18.9.tgz", + "integrity": "sha512-fJgWlZt7nxGksJS9a0XdSaI4XvpExnNIgRP+rVefWh5U7BL8pPuir6SJUmFKRfjWQ51OtWSzwOxhaH/EBWWc0A==", "requires": { "@babel/template": "^7.18.6", - "@babel/types": "^7.18.6" + "@babel/types": "^7.18.9" } }, "@babel/helper-hoist-variables": { @@ -1153,11 +1153,11 @@ } }, "@babel/helper-member-expression-to-functions": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.18.6.tgz", - "integrity": "sha512-CeHxqwwipekotzPDUuJOfIMtcIHBuc7WAzLmTYWctVigqS5RktNMQ5bEwQSuGewzYnCtTWa3BARXeiLxDTv+Ng==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.18.9.tgz", + "integrity": "sha512-RxifAh2ZoVU67PyKIO4AMi1wTenGfMR/O/ae0CCRqwgBAt5v7xjdtRw7UoSbsreKrQn5t7r89eruK/9JjYHuDg==", "requires": { - "@babel/types": "^7.18.6" + "@babel/types": "^7.18.9" } }, "@babel/helper-optimise-call-expression": { @@ -1169,20 +1169,20 @@ } }, "@babel/helper-plugin-utils": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.18.6.tgz", - "integrity": "sha512-gvZnm1YAAxh13eJdkb9EWHBnF3eAub3XTLCZEehHT2kWxiKVRL64+ae5Y6Ivne0mVHmMYKT+xWgZO+gQhuLUBg==" + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.18.9.tgz", + "integrity": "sha512-aBXPT3bmtLryXaoJLyYPXPlSD4p1ld9aYeR+sJNOZjJJGiOpb+fKfh3NkcCu7J54nUJwCERPBExCCpyCOHnu/w==" }, "@babel/helper-replace-supers": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.18.6.tgz", - "integrity": "sha512-fTf7zoXnUGl9gF25fXCWE26t7Tvtyn6H4hkLSYhATwJvw2uYxd3aoXplMSe0g9XbwK7bmxNes7+FGO0rB/xC0g==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.18.9.tgz", + "integrity": "sha512-dNsWibVI4lNT6HiuOIBr1oyxo40HvIVmbwPUm3XZ7wMh4k2WxrxTqZwSqw/eEmXDS9np0ey5M2bz9tBmO9c+YQ==", "requires": { - "@babel/helper-environment-visitor": "^7.18.6", - "@babel/helper-member-expression-to-functions": "^7.18.6", + "@babel/helper-environment-visitor": "^7.18.9", + "@babel/helper-member-expression-to-functions": "^7.18.9", "@babel/helper-optimise-call-expression": "^7.18.6", - "@babel/traverse": "^7.18.6", - "@babel/types": "^7.18.6" + "@babel/traverse": "^7.18.9", + "@babel/types": "^7.18.9" } }, "@babel/helper-split-export-declaration": { @@ -1209,9 +1209,9 @@ } }, "@babel/parser": { - "version": "7.18.8", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.18.8.tgz", - "integrity": "sha512-RSKRfYX20dyH+elbJK2uqAkVyucL+xXzhqlMD5/ZXx+dAAwpyB7HsvnHe/ZUGOF+xLr5Wx9/JoXVTj6BQE2/oA==" + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.18.9.tgz", + "integrity": "sha512-9uJveS9eY9DJ0t64YbIBZICtJy8a5QrDEVdiLCG97fVLpDTpGX7t8mMSb6OWw6Lrnjqj4O8zwjELX3dhoMgiBg==" }, "@babel/template": { "version": "7.18.6", @@ -1224,26 +1224,26 @@ } }, "@babel/traverse": { - "version": "7.18.8", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.18.8.tgz", - "integrity": "sha512-UNg/AcSySJYR/+mIcJQDCv00T+AqRO7j/ZEJLzpaYtgM48rMg5MnkJgyNqkzo88+p4tfRvZJCEiwwfG6h4jkRg==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.18.9.tgz", + "integrity": "sha512-LcPAnujXGwBgv3/WHv01pHtb2tihcyW1XuL9wd7jqh1Z8AQkTd+QVjMrMijrln0T7ED3UXLIy36P9Ao7W75rYg==", "requires": { "@babel/code-frame": "^7.18.6", - "@babel/generator": "^7.18.7", - "@babel/helper-environment-visitor": "^7.18.6", - "@babel/helper-function-name": "^7.18.6", + "@babel/generator": "^7.18.9", + "@babel/helper-environment-visitor": "^7.18.9", + "@babel/helper-function-name": "^7.18.9", "@babel/helper-hoist-variables": "^7.18.6", "@babel/helper-split-export-declaration": "^7.18.6", - "@babel/parser": "^7.18.8", - "@babel/types": "^7.18.8", + "@babel/parser": "^7.18.9", + "@babel/types": "^7.18.9", "debug": "^4.1.0", "globals": "^11.1.0" } }, "@babel/types": { - "version": "7.18.8", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.8.tgz", - "integrity": "sha512-qwpdsmraq0aJ3osLJRApsc2ouSJCdnMeZwB0DhbtHAtRpZNZCdlbRnHIgcRKzdE1g0iOGg644fzjOBcdOz9cPw==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.9.tgz", + "integrity": "sha512-WwMLAg2MvJmt/rKEVQBBhIVffMmnilX4oe0sRe7iPOHIGsqpruFHHdrfj4O1CMMtgMtCU4oPafZjDPCRgO57Wg==", "requires": { "@babel/helper-validator-identifier": "^7.18.6", "to-fast-properties": "^2.0.0" @@ -1410,9 +1410,9 @@ }, "dependencies": { "@babel/helper-plugin-utils": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.18.6.tgz", - "integrity": "sha512-gvZnm1YAAxh13eJdkb9EWHBnF3eAub3XTLCZEehHT2kWxiKVRL64+ae5Y6Ivne0mVHmMYKT+xWgZO+gQhuLUBg==" + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.18.9.tgz", + "integrity": "sha512-aBXPT3bmtLryXaoJLyYPXPlSD4p1ld9aYeR+sJNOZjJJGiOpb+fKfh3NkcCu7J54nUJwCERPBExCCpyCOHnu/w==" }, "@babel/helper-validator-option": { "version": "7.18.6", @@ -1430,9 +1430,9 @@ } }, "@babel/runtime-corejs3": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/runtime-corejs3/-/runtime-corejs3-7.18.6.tgz", - "integrity": "sha512-cOu5wH2JFBgMjje+a+fz2JNIWU4GzYpl05oSob3UDvBEh6EuIn+TXFHMmBbhSb+k/4HMzgKCQfEEDArAWNF9Cw==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/runtime-corejs3/-/runtime-corejs3-7.18.9.tgz", + "integrity": "sha512-qZEWeccZCrHA2Au4/X05QW5CMdm4VjUDCrGq5gf1ZDcM4hRqreKrtwAn7yci9zfgAS9apvnsFXiGBHBAxZdK9A==", "requires": { "core-js-pure": "^3.20.2", "regenerator-runtime": "^0.13.4" @@ -1545,210 +1545,56 @@ } }, "@gatsbyjs/parcel-namer-relative-to-cwd": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/@gatsbyjs/parcel-namer-relative-to-cwd/-/parcel-namer-relative-to-cwd-1.3.2.tgz", - "integrity": "sha512-jiYGiq8Zk21x2IIWbsLQ0GqgGJyKjj+/4jYwr5msD5ORB/JAZLk4IDrMKZ9rFXkNPq/bRV57ub0k/NvRMELfLQ==", + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/@gatsbyjs/parcel-namer-relative-to-cwd/-/parcel-namer-relative-to-cwd-1.4.0.tgz", + "integrity": "sha512-oXhiaPtYTGYqGZlazYRUabWVHWx5z6sAyBVLhUnpsKcBsK815cET+mjeWDKpmvJmFTKHC72Bvy1WIEnW3++YxA==", "requires": { "@babel/runtime": "^7.18.0", "@parcel/namer-default": "2.6.2", - "@parcel/plugin": "2.6.0", - "gatsby-core-utils": "^3.18.1" + "@parcel/plugin": "2.6.2", + "gatsby-core-utils": "^3.19.0" }, "dependencies": { "@lmdb/lmdb-darwin-arm64": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-arm64/-/lmdb-darwin-arm64-2.5.2.tgz", - "integrity": "sha512-+F8ioQIUN68B4UFiIBYu0QQvgb9FmlKw2ctQMSBfW2QBrZIxz9vD9jCGqTCPqZBRbPHAS/vG1zSXnKqnS2ch/A==", + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-arm64/-/lmdb-darwin-arm64-2.5.3.tgz", + "integrity": "sha512-RXwGZ/0eCqtCY8FLTM/koR60w+MXyvBUpToXiIyjOcBnC81tAlTUHrRUavCEWPI9zc9VgvpK3+cbumPyR8BSuA==", "optional": true }, "@lmdb/lmdb-darwin-x64": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-x64/-/lmdb-darwin-x64-2.5.2.tgz", - "integrity": "sha512-KvPH56KRLLx4KSfKBx0m1r7GGGUMXm0jrKmNE7plbHlesZMuPJICtn07HYgQhj1LNsK7Yqwuvnqh1QxhJnF1EA==", + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-x64/-/lmdb-darwin-x64-2.5.3.tgz", + "integrity": "sha512-337dNzh5yCdNCTk8kPfoU7jR3otibSlPDGW0vKZT97rKnQMb9tNdto3RtWoGPsQ8hKmlRZpojOJtmwjncq1MoA==", "optional": true }, "@lmdb/lmdb-linux-arm": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm/-/lmdb-linux-arm-2.5.2.tgz", - "integrity": "sha512-5kQAP21hAkfW5Bl+e0P57dV4dGYnkNIpR7f/GAh6QHlgXx+vp/teVj4PGRZaKAvt0GX6++N6hF8NnGElLDuIDw==", + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm/-/lmdb-linux-arm-2.5.3.tgz", + "integrity": "sha512-mU2HFJDGwECkoD9dHQEfeTG5mp8hNS2BCfwoiOpVPMeapjYpQz9Uw3FkUjRZ4dGHWKbin40oWHuL0bk2bCx+Sg==", "optional": true }, "@lmdb/lmdb-linux-arm64": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm64/-/lmdb-linux-arm64-2.5.2.tgz", - "integrity": "sha512-aLl89VHL/wjhievEOlPocoefUyWdvzVrcQ/MHQYZm2JfV1jUsrbr/ZfkPPUFvZBf+VSE+Q0clWs9l29PCX1hTQ==", + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm64/-/lmdb-linux-arm64-2.5.3.tgz", + "integrity": "sha512-VJw60Mdgb4n+L0fO1PqfB0C7TyEQolJAC8qpqvG3JoQwvyOv6LH7Ib/WE3wxEW9nuHmVz9jkK7lk5HfWWgoO1Q==", "optional": true }, "@lmdb/lmdb-linux-x64": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-x64/-/lmdb-linux-x64-2.5.2.tgz", - "integrity": "sha512-xUdUfwDJLGjOUPH3BuPBt0NlIrR7f/QHKgu3GZIXswMMIihAekj2i97oI0iWG5Bok/b+OBjHPfa8IU9velnP/Q==", + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-x64/-/lmdb-linux-x64-2.5.3.tgz", + "integrity": "sha512-qaReO5aV8griBDsBr8uBF/faO3ieGjY1RY4p8JvTL6Mu1ylLrTVvOONqKFlNaCwrmUjWw5jnf7VafxDAeQHTow==", "optional": true }, "@lmdb/lmdb-win32-x64": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-win32-x64/-/lmdb-win32-x64-2.5.2.tgz", - "integrity": "sha512-zrBczSbXKxEyK2ijtbRdICDygRqWSRPpZMN5dD1T8VMEW5RIhIbwFWw2phDRXuBQdVDpSjalCIUMWMV2h3JaZA==", + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-win32-x64/-/lmdb-win32-x64-2.5.3.tgz", + "integrity": "sha512-cK+Elf3RjEzrm3SerAhrFWL5oQAsZSJ/LmjL1joIpTfEP1etJJ9CTRvdaV6XLYAxaEkfdhk/9hOvHLbR9yIhCA==", "optional": true }, - "@parcel/cache": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/@parcel/cache/-/cache-2.6.2.tgz", - "integrity": "sha512-hhJ6AsEGybeQZd9c/GYqfcKTgZKQXu3Xih6TlnP3gdR3KZoJOnb40ovHD1yYg4COvfcXThKP1cVJ18J6rcv3IA==", - "requires": { - "@parcel/fs": "2.6.2", - "@parcel/logger": "2.6.2", - "@parcel/utils": "2.6.2", - "lmdb": "2.5.2" - } - }, - "@parcel/codeframe": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/@parcel/codeframe/-/codeframe-2.6.2.tgz", - "integrity": "sha512-oFlHr6HCaYYsB4SHkU+gn9DKtbzvv3/4NdwMX0/6NAKyYVI7inEsXyPGw2Bbd2ZCFatW9QJZUETF0etvh5AEfQ==", - "requires": { - "chalk": "^4.1.0" - } - }, - "@parcel/diagnostic": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/@parcel/diagnostic/-/diagnostic-2.6.2.tgz", - "integrity": "sha512-3ODSBkKVihENU763z1/1DhGAWFhYWRxOCOShC72KXp+GFnSgGiBsxclu8NBa/N948Rzp8lqQI8U1nLcKkh0O/w==", - "requires": { - "@mischnic/json-sourcemap": "^0.1.0", - "nullthrows": "^1.1.1" - } - }, - "@parcel/events": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/@parcel/events/-/events-2.6.2.tgz", - "integrity": "sha512-IaCjOeA5ercdFVi1EZOmUHhGfIysmCUgc2Th9hMugSFO0I3GzRsBcAdP6XPfWm+TV6sQ/qZRfdk/drUxoAupnw==" - }, - "@parcel/fs": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/@parcel/fs/-/fs-2.6.2.tgz", - "integrity": "sha512-mIhqdF3tjgeoIGqW7Nc/xfM2ClID7o8livwUe5lpQEP+ZaIBiMigXs6ckv3WToCACK+3uylrSD2A/HmlhrxMqQ==", - "requires": { - "@parcel/fs-search": "2.6.2", - "@parcel/types": "2.6.2", - "@parcel/utils": "2.6.2", - "@parcel/watcher": "^2.0.0", - "@parcel/workers": "2.6.2" - } - }, - "@parcel/fs-search": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/@parcel/fs-search/-/fs-search-2.6.2.tgz", - "integrity": "sha512-4STid1zqtGnmGjHD/2TG2g/zPDiCTtE3IAS24QYH3eiUAz2uoKGgEqd2tZbZ2yI96jtCuIhC1bzVu8Hbykls7w==", - "requires": { - "detect-libc": "^1.0.3" - } - }, - "@parcel/hash": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/@parcel/hash/-/hash-2.6.2.tgz", - "integrity": "sha512-tFB+cJU1Wqag6WyJgsmx3nx+xhmjcNZqtWh/MtK1lHNnZdDRk6bjr7SapnygBwruz+SmSt5bbdVThcpk2dRCcA==", - "requires": { - "detect-libc": "^1.0.3", - "xxhash-wasm": "^0.4.2" - } - }, - "@parcel/logger": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/@parcel/logger/-/logger-2.6.2.tgz", - "integrity": "sha512-Sz5YGCj1DbEiX0/G8Uw97LLZ0uEK+qtWcRAkHNpJpeMiSqDiRNevxXltz42EcLo+oCh4d4wyiVzwi9mNwzhS/Q==", - "requires": { - "@parcel/diagnostic": "2.6.2", - "@parcel/events": "2.6.2" - } - }, - "@parcel/markdown-ansi": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/@parcel/markdown-ansi/-/markdown-ansi-2.6.2.tgz", - "integrity": "sha512-N/h9J4eibhc+B+krzvPMzFUWL37GudBIZBa7XSLkcuH6MnYYfh6rrMvhIyyESwk6VkcZNVzAeZrGQqxEs0dHDQ==", - "requires": { - "chalk": "^4.1.0" - } - }, - "@parcel/namer-default": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/@parcel/namer-default/-/namer-default-2.6.2.tgz", - "integrity": "sha512-mp7bx/BQaIuohmZP0uE+gAmDBzzH0Yu8F4yCtE611lc6i0mou+nWRhzyKLNC/ieuI8DB3BFh2QQKeTxJn4W0qg==", - "requires": { - "@parcel/diagnostic": "2.6.2", - "@parcel/plugin": "2.6.2", - "nullthrows": "^1.1.1" - }, - "dependencies": { - "@parcel/plugin": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/@parcel/plugin/-/plugin-2.6.2.tgz", - "integrity": "sha512-wbbWsM23Pr+8xtLSvf+UopXdVYlpKCCx6PuuZaZcKo+9IcDCWoGXD4M8Kkz14qBmkFn5uM00mULUqmVdSibB2w==", - "requires": { - "@parcel/types": "2.6.2" - } - } - } - }, - "@parcel/package-manager": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/@parcel/package-manager/-/package-manager-2.6.2.tgz", - "integrity": "sha512-xGMqTgnwTE3rgzYwUZMKxR8fzmP5iSYz/gj2H8FR3pEmwh/8xCMtNjTSth+hPVGuqgRZ6JxwpfdY/fXdZ61ViQ==", - "requires": { - "@parcel/diagnostic": "2.6.2", - "@parcel/fs": "2.6.2", - "@parcel/logger": "2.6.2", - "@parcel/types": "2.6.2", - "@parcel/utils": "2.6.2", - "@parcel/workers": "2.6.2", - "semver": "^5.7.1" - } - }, - "@parcel/types": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/@parcel/types/-/types-2.6.2.tgz", - "integrity": "sha512-MV8BFpCIs2jMUvK2RHqzkoiuOQ//JIbrD1zocA2YRW3zuPL/iABvbAABJoXpoPCKikVWOoCWASgBfWQo26VvJQ==", - "requires": { - "@parcel/cache": "2.6.2", - "@parcel/diagnostic": "2.6.2", - "@parcel/fs": "2.6.2", - "@parcel/package-manager": "2.6.2", - "@parcel/source-map": "^2.0.0", - "@parcel/workers": "2.6.2", - "utility-types": "^3.10.0" - } - }, - "@parcel/utils": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/@parcel/utils/-/utils-2.6.2.tgz", - "integrity": "sha512-Ug7hpRxjgbY5AopW55nY7MmGMVmwmN+ihfCmxJkBUoESTG/3iq8uME7GjyOgW5DkQc2K7q62i8y8N0wCJT1u4Q==", - "requires": { - "@parcel/codeframe": "2.6.2", - "@parcel/diagnostic": "2.6.2", - "@parcel/hash": "2.6.2", - "@parcel/logger": "2.6.2", - "@parcel/markdown-ansi": "2.6.2", - "@parcel/source-map": "^2.0.0", - "chalk": "^4.1.0" - } - }, - "@parcel/workers": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/@parcel/workers/-/workers-2.6.2.tgz", - "integrity": "sha512-wBgUjJQm+lDd12fPRUmk09+ujTA9DgwPdqylSFK0OtI/yT6A+2kArUqjp8IwWo2tCJXoMzXBne2XQIWKqMiN4Q==", - "requires": { - "@parcel/diagnostic": "2.6.2", - "@parcel/logger": "2.6.2", - "@parcel/types": "2.6.2", - "@parcel/utils": "2.6.2", - "chrome-trace-event": "^1.0.2", - "nullthrows": "^1.1.1" - } - }, "gatsby-core-utils": { - "version": "3.18.1", - "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.18.1.tgz", - "integrity": "sha512-sJTxRqizLxYy/tSFk0ydfqEZ3ek1So9HDVUa39F6Oi8XuPCBTFzaAooUvowKGneI5YUbdk5y4VO4ybwVUynntw==", + "version": "3.19.0", + "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.19.0.tgz", + "integrity": "sha512-cjXs9DsXkPZt+UdiLHxtq+rGMGVrcnM0KwkawlruvPchI7lqGNv9CScqlvYPxx1dBhu3zSZS26EBALMlFhyOJA==", "requires": { "@babel/runtime": "^7.15.4", "ci-info": "2.0.0", @@ -1765,62 +1611,6 @@ "resolve-from": "^5.0.0", "tmp": "^0.2.1", "xdg-basedir": "^4.0.0" - }, - "dependencies": { - "@lmdb/lmdb-darwin-arm64": { - "version": "2.5.3", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-arm64/-/lmdb-darwin-arm64-2.5.3.tgz", - "integrity": "sha512-RXwGZ/0eCqtCY8FLTM/koR60w+MXyvBUpToXiIyjOcBnC81tAlTUHrRUavCEWPI9zc9VgvpK3+cbumPyR8BSuA==", - "optional": true - }, - "@lmdb/lmdb-darwin-x64": { - "version": "2.5.3", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-x64/-/lmdb-darwin-x64-2.5.3.tgz", - "integrity": "sha512-337dNzh5yCdNCTk8kPfoU7jR3otibSlPDGW0vKZT97rKnQMb9tNdto3RtWoGPsQ8hKmlRZpojOJtmwjncq1MoA==", - "optional": true - }, - "@lmdb/lmdb-linux-arm": { - "version": "2.5.3", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm/-/lmdb-linux-arm-2.5.3.tgz", - "integrity": "sha512-mU2HFJDGwECkoD9dHQEfeTG5mp8hNS2BCfwoiOpVPMeapjYpQz9Uw3FkUjRZ4dGHWKbin40oWHuL0bk2bCx+Sg==", - "optional": true - }, - "@lmdb/lmdb-linux-arm64": { - "version": "2.5.3", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm64/-/lmdb-linux-arm64-2.5.3.tgz", - "integrity": "sha512-VJw60Mdgb4n+L0fO1PqfB0C7TyEQolJAC8qpqvG3JoQwvyOv6LH7Ib/WE3wxEW9nuHmVz9jkK7lk5HfWWgoO1Q==", - "optional": true - }, - "@lmdb/lmdb-linux-x64": { - "version": "2.5.3", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-x64/-/lmdb-linux-x64-2.5.3.tgz", - "integrity": "sha512-qaReO5aV8griBDsBr8uBF/faO3ieGjY1RY4p8JvTL6Mu1ylLrTVvOONqKFlNaCwrmUjWw5jnf7VafxDAeQHTow==", - "optional": true - }, - "@lmdb/lmdb-win32-x64": { - "version": "2.5.3", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-win32-x64/-/lmdb-win32-x64-2.5.3.tgz", - "integrity": "sha512-cK+Elf3RjEzrm3SerAhrFWL5oQAsZSJ/LmjL1joIpTfEP1etJJ9CTRvdaV6XLYAxaEkfdhk/9hOvHLbR9yIhCA==", - "optional": true - }, - "lmdb": { - "version": "2.5.3", - "resolved": "https://registry.npmjs.org/lmdb/-/lmdb-2.5.3.tgz", - "integrity": "sha512-iBA0cb13CobBSoGJLfZgnrykLlfJipDAnvtf+YwIqqzBEsTeQYsXrHaSBkaHd5wCWeabwrNvhjZoFMUrlo+eLw==", - "requires": { - "@lmdb/lmdb-darwin-arm64": "2.5.3", - "@lmdb/lmdb-darwin-x64": "2.5.3", - "@lmdb/lmdb-linux-arm": "2.5.3", - "@lmdb/lmdb-linux-arm64": "2.5.3", - "@lmdb/lmdb-linux-x64": "2.5.3", - "@lmdb/lmdb-win32-x64": "2.5.3", - "msgpackr": "^1.5.4", - "node-addon-api": "^4.3.0", - "node-gyp-build-optional-packages": "5.0.3", - "ordered-binary": "^1.2.4", - "weak-lru-cache": "^1.2.2" - } - } } }, "got": { @@ -1842,16 +1632,16 @@ } }, "lmdb": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/lmdb/-/lmdb-2.5.2.tgz", - "integrity": "sha512-V5V5Xa2Hp9i2XsbDALkBTeHXnBXh/lEmk9p22zdr7jtuOIY9TGhjK6vAvTpOOx9IKU4hJkRWZxn/HsvR1ELLtA==", + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/lmdb/-/lmdb-2.5.3.tgz", + "integrity": "sha512-iBA0cb13CobBSoGJLfZgnrykLlfJipDAnvtf+YwIqqzBEsTeQYsXrHaSBkaHd5wCWeabwrNvhjZoFMUrlo+eLw==", "requires": { - "@lmdb/lmdb-darwin-arm64": "2.5.2", - "@lmdb/lmdb-darwin-x64": "2.5.2", - "@lmdb/lmdb-linux-arm": "2.5.2", - "@lmdb/lmdb-linux-arm64": "2.5.2", - "@lmdb/lmdb-linux-x64": "2.5.2", - "@lmdb/lmdb-win32-x64": "2.5.2", + "@lmdb/lmdb-darwin-arm64": "2.5.3", + "@lmdb/lmdb-darwin-x64": "2.5.3", + "@lmdb/lmdb-linux-arm": "2.5.3", + "@lmdb/lmdb-linux-arm64": "2.5.3", + "@lmdb/lmdb-linux-x64": "2.5.3", + "@lmdb/lmdb-win32-x64": "2.5.3", "msgpackr": "^1.5.4", "node-addon-api": "^4.3.0", "node-gyp-build-optional-packages": "5.0.3", @@ -1868,11 +1658,6 @@ "version": "5.0.3", "resolved": "https://registry.npmjs.org/node-gyp-build-optional-packages/-/node-gyp-build-optional-packages-5.0.3.tgz", "integrity": "sha512-k75jcVzk5wnnc/FMxsf4udAoTEUv2jY3ycfdSd3yWu6Cnd1oee6/CfZJApyscA4FJOmdoixWwiwOyf16RzD5JA==" - }, - "semver": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", - "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==" } } }, @@ -3130,39 +2915,39 @@ } }, "@lmdb/lmdb-darwin-arm64": { - "version": "2.5.3", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-arm64/-/lmdb-darwin-arm64-2.5.3.tgz", - "integrity": "sha512-RXwGZ/0eCqtCY8FLTM/koR60w+MXyvBUpToXiIyjOcBnC81tAlTUHrRUavCEWPI9zc9VgvpK3+cbumPyR8BSuA==", + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-arm64/-/lmdb-darwin-arm64-2.5.2.tgz", + "integrity": "sha512-+F8ioQIUN68B4UFiIBYu0QQvgb9FmlKw2ctQMSBfW2QBrZIxz9vD9jCGqTCPqZBRbPHAS/vG1zSXnKqnS2ch/A==", "optional": true }, "@lmdb/lmdb-darwin-x64": { - "version": "2.5.3", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-x64/-/lmdb-darwin-x64-2.5.3.tgz", - "integrity": "sha512-337dNzh5yCdNCTk8kPfoU7jR3otibSlPDGW0vKZT97rKnQMb9tNdto3RtWoGPsQ8hKmlRZpojOJtmwjncq1MoA==", + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-x64/-/lmdb-darwin-x64-2.5.2.tgz", + "integrity": "sha512-KvPH56KRLLx4KSfKBx0m1r7GGGUMXm0jrKmNE7plbHlesZMuPJICtn07HYgQhj1LNsK7Yqwuvnqh1QxhJnF1EA==", "optional": true }, "@lmdb/lmdb-linux-arm": { - "version": "2.5.3", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm/-/lmdb-linux-arm-2.5.3.tgz", - "integrity": "sha512-mU2HFJDGwECkoD9dHQEfeTG5mp8hNS2BCfwoiOpVPMeapjYpQz9Uw3FkUjRZ4dGHWKbin40oWHuL0bk2bCx+Sg==", + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm/-/lmdb-linux-arm-2.5.2.tgz", + "integrity": "sha512-5kQAP21hAkfW5Bl+e0P57dV4dGYnkNIpR7f/GAh6QHlgXx+vp/teVj4PGRZaKAvt0GX6++N6hF8NnGElLDuIDw==", "optional": true }, "@lmdb/lmdb-linux-arm64": { - "version": "2.5.3", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm64/-/lmdb-linux-arm64-2.5.3.tgz", - "integrity": "sha512-VJw60Mdgb4n+L0fO1PqfB0C7TyEQolJAC8qpqvG3JoQwvyOv6LH7Ib/WE3wxEW9nuHmVz9jkK7lk5HfWWgoO1Q==", + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm64/-/lmdb-linux-arm64-2.5.2.tgz", + "integrity": "sha512-aLl89VHL/wjhievEOlPocoefUyWdvzVrcQ/MHQYZm2JfV1jUsrbr/ZfkPPUFvZBf+VSE+Q0clWs9l29PCX1hTQ==", "optional": true }, "@lmdb/lmdb-linux-x64": { - "version": "2.5.3", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-x64/-/lmdb-linux-x64-2.5.3.tgz", - "integrity": "sha512-qaReO5aV8griBDsBr8uBF/faO3ieGjY1RY4p8JvTL6Mu1ylLrTVvOONqKFlNaCwrmUjWw5jnf7VafxDAeQHTow==", + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-x64/-/lmdb-linux-x64-2.5.2.tgz", + "integrity": "sha512-xUdUfwDJLGjOUPH3BuPBt0NlIrR7f/QHKgu3GZIXswMMIihAekj2i97oI0iWG5Bok/b+OBjHPfa8IU9velnP/Q==", "optional": true }, "@lmdb/lmdb-win32-x64": { - "version": "2.5.3", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-win32-x64/-/lmdb-win32-x64-2.5.3.tgz", - "integrity": "sha512-cK+Elf3RjEzrm3SerAhrFWL5oQAsZSJ/LmjL1joIpTfEP1etJJ9CTRvdaV6XLYAxaEkfdhk/9hOvHLbR9yIhCA==", + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-win32-x64/-/lmdb-win32-x64-2.5.2.tgz", + "integrity": "sha512-zrBczSbXKxEyK2ijtbRdICDygRqWSRPpZMN5dD1T8VMEW5RIhIbwFWw2phDRXuBQdVDpSjalCIUMWMV2h3JaZA==", "optional": true }, "@mdx-js/mdx": { @@ -3372,63 +3157,93 @@ } }, "@parcel/bundler-default": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/bundler-default/-/bundler-default-2.6.0.tgz", - "integrity": "sha512-AplEdGm/odV7yGmoeOnglxnY31WlNB5EqGLFGxkgs7uwDaTWoTX/9SWPG6xfvirhjDpms8sLSiVuBdFRCCLtNA==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/bundler-default/-/bundler-default-2.6.2.tgz", + "integrity": "sha512-XIa3had/MIaTGgRFkHApXwytYs77k4geaNcmlb6nzmAABcYjW1CLYh83Zt0AbzLFsDT9ZcRY3u2UjhNf6efSaw==", "requires": { - "@parcel/diagnostic": "2.6.0", - "@parcel/hash": "2.6.0", - "@parcel/plugin": "2.6.0", - "@parcel/utils": "2.6.0", + "@parcel/diagnostic": "2.6.2", + "@parcel/hash": "2.6.2", + "@parcel/plugin": "2.6.2", + "@parcel/utils": "2.6.2", "nullthrows": "^1.1.1" } }, "@parcel/cache": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/cache/-/cache-2.6.0.tgz", - "integrity": "sha512-4vbD5uSuf+kRnrFesKhpn0AKnOw8u2UlvCyrplYmp1g9bNAkIooC/nDGdmkb/9SviPEbni9PEanQEHDU2+slpA==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/cache/-/cache-2.6.2.tgz", + "integrity": "sha512-hhJ6AsEGybeQZd9c/GYqfcKTgZKQXu3Xih6TlnP3gdR3KZoJOnb40ovHD1yYg4COvfcXThKP1cVJ18J6rcv3IA==", "requires": { - "@parcel/fs": "2.6.0", - "@parcel/logger": "2.6.0", - "@parcel/utils": "2.6.0", - "lmdb": "2.3.10" + "@parcel/fs": "2.6.2", + "@parcel/logger": "2.6.2", + "@parcel/utils": "2.6.2", + "lmdb": "2.5.2" + }, + "dependencies": { + "lmdb": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/lmdb/-/lmdb-2.5.2.tgz", + "integrity": "sha512-V5V5Xa2Hp9i2XsbDALkBTeHXnBXh/lEmk9p22zdr7jtuOIY9TGhjK6vAvTpOOx9IKU4hJkRWZxn/HsvR1ELLtA==", + "requires": { + "@lmdb/lmdb-darwin-arm64": "2.5.2", + "@lmdb/lmdb-darwin-x64": "2.5.2", + "@lmdb/lmdb-linux-arm": "2.5.2", + "@lmdb/lmdb-linux-arm64": "2.5.2", + "@lmdb/lmdb-linux-x64": "2.5.2", + "@lmdb/lmdb-win32-x64": "2.5.2", + "msgpackr": "^1.5.4", + "node-addon-api": "^4.3.0", + "node-gyp-build-optional-packages": "5.0.3", + "ordered-binary": "^1.2.4", + "weak-lru-cache": "^1.2.2" + } + }, + "node-addon-api": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-4.3.0.tgz", + "integrity": "sha512-73sE9+3UaLYYFmDsFZnqCInzPyh3MqIwZO9cw58yIqAZhONrrabrYyYe3TuIqtIiOuTXVhsGau8hcrhhwSsDIQ==" + }, + "node-gyp-build-optional-packages": { + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/node-gyp-build-optional-packages/-/node-gyp-build-optional-packages-5.0.3.tgz", + "integrity": "sha512-k75jcVzk5wnnc/FMxsf4udAoTEUv2jY3ycfdSd3yWu6Cnd1oee6/CfZJApyscA4FJOmdoixWwiwOyf16RzD5JA==" + } } }, "@parcel/codeframe": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/codeframe/-/codeframe-2.6.0.tgz", - "integrity": "sha512-yXXxrO9yyedHKpTwC+Af0+vPmQm+A9xeEhkt4f0yVg1n4t4yUIxYlTedzbM8ygZEEBtkXU9jJ+PkgXbfMf0dqw==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/codeframe/-/codeframe-2.6.2.tgz", + "integrity": "sha512-oFlHr6HCaYYsB4SHkU+gn9DKtbzvv3/4NdwMX0/6NAKyYVI7inEsXyPGw2Bbd2ZCFatW9QJZUETF0etvh5AEfQ==", "requires": { "chalk": "^4.1.0" } }, "@parcel/compressor-raw": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/compressor-raw/-/compressor-raw-2.6.0.tgz", - "integrity": "sha512-rtMU2mGl88bic6Xbq1u5L49bMK4s5185b0k7h3JRdS6/0rR+Xp4k/o9Wog+hHjK/s82z1eF9WmET779ZpIDIQQ==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/compressor-raw/-/compressor-raw-2.6.2.tgz", + "integrity": "sha512-P3c8jjV5HVs+fNDjhvq7PtHXNm687nit1iwTS5VAt+ScXKhKBhoIJ56q+9opcw0jnXVjAAgZqcRZ50oAJBGdKw==", "requires": { - "@parcel/plugin": "2.6.0" + "@parcel/plugin": "2.6.2" } }, "@parcel/core": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/core/-/core-2.6.0.tgz", - "integrity": "sha512-8OOWbPuxpFydpwNyKoz6d3e3O4DmxNYmMw4DXwrPSj/jyg7oa+SDtMT0/VXEhujE0HYkQPCHt4npRajkSuf99A==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/core/-/core-2.6.2.tgz", + "integrity": "sha512-JlKS3Ux0ngmdooSBbzQLShHJdsapF9E7TGMo1hFaHRquZip/DaqzvysYrgMJlDuCoLArciq5ei7ZKzGeK9zexA==", "requires": { "@mischnic/json-sourcemap": "^0.1.0", - "@parcel/cache": "2.6.0", - "@parcel/diagnostic": "2.6.0", - "@parcel/events": "2.6.0", - "@parcel/fs": "2.6.0", - "@parcel/graph": "2.6.0", - "@parcel/hash": "2.6.0", - "@parcel/logger": "2.6.0", - "@parcel/package-manager": "2.6.0", - "@parcel/plugin": "2.6.0", + "@parcel/cache": "2.6.2", + "@parcel/diagnostic": "2.6.2", + "@parcel/events": "2.6.2", + "@parcel/fs": "2.6.2", + "@parcel/graph": "2.6.2", + "@parcel/hash": "2.6.2", + "@parcel/logger": "2.6.2", + "@parcel/package-manager": "2.6.2", + "@parcel/plugin": "2.6.2", "@parcel/source-map": "^2.0.0", - "@parcel/types": "2.6.0", - "@parcel/utils": "2.6.0", - "@parcel/workers": "2.6.0", + "@parcel/types": "2.6.2", + "@parcel/utils": "2.6.2", + "@parcel/workers": "2.6.2", "abortcontroller-polyfill": "^1.1.9", "base-x": "^3.0.8", "browserslist": "^4.6.6", @@ -3454,118 +3269,126 @@ } }, "@parcel/diagnostic": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/diagnostic/-/diagnostic-2.6.0.tgz", - "integrity": "sha512-+p8gC2FKxSI2veD7SoaNlP572v4kw+nafCQEPDtJuzYYRqywYUGncch25dkpgNApB4W4cXVkZu3ZbtIpCAmjQQ==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/diagnostic/-/diagnostic-2.6.2.tgz", + "integrity": "sha512-3ODSBkKVihENU763z1/1DhGAWFhYWRxOCOShC72KXp+GFnSgGiBsxclu8NBa/N948Rzp8lqQI8U1nLcKkh0O/w==", "requires": { "@mischnic/json-sourcemap": "^0.1.0", "nullthrows": "^1.1.1" } }, "@parcel/events": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/events/-/events-2.6.0.tgz", - "integrity": "sha512-2WaKtBs4iYwS88j4zRdyTJTgh8iuY4E32FMmjzzbheqETs6I05gWuPReGukJYxk8vc0Ir7tbzp12oAfpgo0Y+g==" + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/events/-/events-2.6.2.tgz", + "integrity": "sha512-IaCjOeA5ercdFVi1EZOmUHhGfIysmCUgc2Th9hMugSFO0I3GzRsBcAdP6XPfWm+TV6sQ/qZRfdk/drUxoAupnw==" }, "@parcel/fs": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/fs/-/fs-2.6.0.tgz", - "integrity": "sha512-6vxtx5Zy6MvDvH1EPx9JxjKGF03bR7VE1dUf4HLeX2D8YmpL5hkHJnlRCFdcH08rzOVwaJLzg1QNtblWJXQ9CA==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/fs/-/fs-2.6.2.tgz", + "integrity": "sha512-mIhqdF3tjgeoIGqW7Nc/xfM2ClID7o8livwUe5lpQEP+ZaIBiMigXs6ckv3WToCACK+3uylrSD2A/HmlhrxMqQ==", "requires": { - "@parcel/fs-search": "2.6.0", - "@parcel/types": "2.6.0", - "@parcel/utils": "2.6.0", + "@parcel/fs-search": "2.6.2", + "@parcel/types": "2.6.2", + "@parcel/utils": "2.6.2", "@parcel/watcher": "^2.0.0", - "@parcel/workers": "2.6.0" + "@parcel/workers": "2.6.2" } }, "@parcel/fs-search": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/fs-search/-/fs-search-2.6.0.tgz", - "integrity": "sha512-1nXzM3H/cA4kzLKvDBvwmNisKCdRqlgkLXh+OR1Zu28Kn4W34KuJMcHWW8cC+WIuuKqDh5oo2WPsC5y65GXBKQ==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/fs-search/-/fs-search-2.6.2.tgz", + "integrity": "sha512-4STid1zqtGnmGjHD/2TG2g/zPDiCTtE3IAS24QYH3eiUAz2uoKGgEqd2tZbZ2yI96jtCuIhC1bzVu8Hbykls7w==", "requires": { "detect-libc": "^1.0.3" } }, "@parcel/graph": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/graph/-/graph-2.6.0.tgz", - "integrity": "sha512-rxrAzWm6rwbCRPbu0Z+zwMscpG8omffODniVWPlX2G0jgQGpjKsutBQ6RMfFIcfaQ4MzL3pIQOTf8bkjQOPsbg==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/graph/-/graph-2.6.2.tgz", + "integrity": "sha512-DPH4G/RBFJWayIN2fnhDXqhUw75n7k15YsGzdDKiXuwwz4wMOjoL4cyrI6zOf1SIyh3guRmeTYJ4jjPzwrLYww==", "requires": { - "@parcel/utils": "2.6.0", + "@parcel/utils": "2.6.2", "nullthrows": "^1.1.1" } }, "@parcel/hash": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/hash/-/hash-2.6.0.tgz", - "integrity": "sha512-YugWqhLxqK80Lo++3B3Kr5UPCHOdS8iI2zJ1jkzUeH9v6WUzbwWOnmPf6lN2S5m1BrIFFJd8Jc+CbEXWi8zoJA==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/hash/-/hash-2.6.2.tgz", + "integrity": "sha512-tFB+cJU1Wqag6WyJgsmx3nx+xhmjcNZqtWh/MtK1lHNnZdDRk6bjr7SapnygBwruz+SmSt5bbdVThcpk2dRCcA==", "requires": { "detect-libc": "^1.0.3", "xxhash-wasm": "^0.4.2" } }, "@parcel/logger": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/logger/-/logger-2.6.0.tgz", - "integrity": "sha512-J1/7kPfSGBvMKSZdi0WCNuN0fIeiWxifnDGn7W/K8KhD422YwFJA8N046ps8nkDOPIXf1osnIECNp4GIR9oSYw==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/logger/-/logger-2.6.2.tgz", + "integrity": "sha512-Sz5YGCj1DbEiX0/G8Uw97LLZ0uEK+qtWcRAkHNpJpeMiSqDiRNevxXltz42EcLo+oCh4d4wyiVzwi9mNwzhS/Q==", "requires": { - "@parcel/diagnostic": "2.6.0", - "@parcel/events": "2.6.0" + "@parcel/diagnostic": "2.6.2", + "@parcel/events": "2.6.2" } }, "@parcel/markdown-ansi": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/markdown-ansi/-/markdown-ansi-2.6.0.tgz", - "integrity": "sha512-fyjkrJQQSfKTUFTTasdZ6WrAkDoQ2+DYDjj+3p+RncYyrIa9zArKx4IiRiipsvNdtMvP0/hTdK8F3BOJ3KSU/g==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/markdown-ansi/-/markdown-ansi-2.6.2.tgz", + "integrity": "sha512-N/h9J4eibhc+B+krzvPMzFUWL37GudBIZBa7XSLkcuH6MnYYfh6rrMvhIyyESwk6VkcZNVzAeZrGQqxEs0dHDQ==", "requires": { "chalk": "^4.1.0" } }, "@parcel/namer-default": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/namer-default/-/namer-default-2.6.0.tgz", - "integrity": "sha512-r8O12r7ozJBctnFxVdXbf/fK97GIdNj3hiiUNWlXEmED9sw6ZPcChaLcfot0/443g8i87JDmSTKJ8js2tuz5XA==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/namer-default/-/namer-default-2.6.2.tgz", + "integrity": "sha512-mp7bx/BQaIuohmZP0uE+gAmDBzzH0Yu8F4yCtE611lc6i0mou+nWRhzyKLNC/ieuI8DB3BFh2QQKeTxJn4W0qg==", "requires": { - "@parcel/diagnostic": "2.6.0", - "@parcel/plugin": "2.6.0", + "@parcel/diagnostic": "2.6.2", + "@parcel/plugin": "2.6.2", "nullthrows": "^1.1.1" } }, "@parcel/node-resolver-core": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/node-resolver-core/-/node-resolver-core-2.6.0.tgz", - "integrity": "sha512-AJDj5DZbB58plv0li8bdVSD+zpnkHE36Om3TYyNn1jgXXwgBM64Er/9p8yQn356jBqTQMh7zlJqvbdIyOiMeMg==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/node-resolver-core/-/node-resolver-core-2.6.2.tgz", + "integrity": "sha512-4b2L5QRYlTybvv3+TIRtwg4PPJXy+cRShCBa8eu1K0Fj297Afe8MOZrcVV+RIr2KPMIRXcIJoqDmOhyci/DynA==", "requires": { - "@parcel/diagnostic": "2.6.0", - "@parcel/utils": "2.6.0", - "nullthrows": "^1.1.1" + "@parcel/diagnostic": "2.6.2", + "@parcel/utils": "2.6.2", + "nullthrows": "^1.1.1", + "semver": "^5.7.1" + }, + "dependencies": { + "semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==" + } } }, "@parcel/optimizer-terser": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/optimizer-terser/-/optimizer-terser-2.6.0.tgz", - "integrity": "sha512-oezRt6Lz/QqcVDXyMfFjzQc7n0ThJowLJ4Lyhu8rMh0ZJYzc4UCFCw/19d4nRnzE+Qg0vj3mQCpdkA9/64E44g==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/optimizer-terser/-/optimizer-terser-2.6.2.tgz", + "integrity": "sha512-ZSEVQ3G3zOiVPeHvH+BrHegZybrQj9kWQAaAA92leSqbvf6UaX4xqXbGRg2OttNFtbGYBzIl28Zm4t2SLeUIuA==", "requires": { - "@parcel/diagnostic": "2.6.0", - "@parcel/plugin": "2.6.0", + "@parcel/diagnostic": "2.6.2", + "@parcel/plugin": "2.6.2", "@parcel/source-map": "^2.0.0", - "@parcel/utils": "2.6.0", + "@parcel/utils": "2.6.2", "nullthrows": "^1.1.1", "terser": "^5.2.0" } }, "@parcel/package-manager": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/package-manager/-/package-manager-2.6.0.tgz", - "integrity": "sha512-AqFfdkbOw51q/3ia2mIsFTmrpYEyUb3k+2uYC5GsLMz3go6OGn7/Crz0lZLSclv5EtwpRg3TWr9yL7RekVN/Uw==", - "requires": { - "@parcel/diagnostic": "2.6.0", - "@parcel/fs": "2.6.0", - "@parcel/logger": "2.6.0", - "@parcel/types": "2.6.0", - "@parcel/utils": "2.6.0", - "@parcel/workers": "2.6.0", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/package-manager/-/package-manager-2.6.2.tgz", + "integrity": "sha512-xGMqTgnwTE3rgzYwUZMKxR8fzmP5iSYz/gj2H8FR3pEmwh/8xCMtNjTSth+hPVGuqgRZ6JxwpfdY/fXdZ61ViQ==", + "requires": { + "@parcel/diagnostic": "2.6.2", + "@parcel/fs": "2.6.2", + "@parcel/logger": "2.6.2", + "@parcel/types": "2.6.2", + "@parcel/utils": "2.6.2", + "@parcel/workers": "2.6.2", "semver": "^5.7.1" }, "dependencies": { @@ -3577,15 +3400,15 @@ } }, "@parcel/packager-js": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/packager-js/-/packager-js-2.6.0.tgz", - "integrity": "sha512-Uz3pqIFchFfKszWnNGDgIwM1uwHHJp7Dts6VzS9lf/2RbRgZT0fmce+NPgnVO5MMKBHzdvm32ShT6gFAABF5Vw==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/packager-js/-/packager-js-2.6.2.tgz", + "integrity": "sha512-fm5rKWtaExR0W+UEKWivXNPysRFxuBCdskdxDByb1J1JeGMvp7dJElbi8oXDAQM4MnM5EyG7cg47SlMZNTLm4A==", "requires": { - "@parcel/diagnostic": "2.6.0", - "@parcel/hash": "2.6.0", - "@parcel/plugin": "2.6.0", + "@parcel/diagnostic": "2.6.2", + "@parcel/hash": "2.6.2", + "@parcel/plugin": "2.6.2", "@parcel/source-map": "^2.0.0", - "@parcel/utils": "2.6.0", + "@parcel/utils": "2.6.2", "globals": "^13.2.0", "nullthrows": "^1.1.1" }, @@ -3606,76 +3429,76 @@ } }, "@parcel/packager-raw": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/packager-raw/-/packager-raw-2.6.0.tgz", - "integrity": "sha512-ktT6Qc/GgCq8H1+6y+AXufVzQj1s6KRoKf83qswCD0iY3MwCbJoEfc3IsB4K64FpHIL5Eu0z54IId+INvGbOYA==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/packager-raw/-/packager-raw-2.6.2.tgz", + "integrity": "sha512-Rl3ZkMtMjb+LEvRowijDD8fibUAS6rWK0/vZQMk9cDNYCP2gCpZayLk0HZIGxneeTbosf/0sbngHq4VeRQOnQA==", "requires": { - "@parcel/plugin": "2.6.0" + "@parcel/plugin": "2.6.2" } }, "@parcel/plugin": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/plugin/-/plugin-2.6.0.tgz", - "integrity": "sha512-LzOaiK8R6eFEoov1cb3/W+o0XvXdI/VbDhMDl0L0II+/56M0UeayYtFP5QGTDn/fZqVlYfzPCtt3EMwdG7/dow==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/plugin/-/plugin-2.6.2.tgz", + "integrity": "sha512-wbbWsM23Pr+8xtLSvf+UopXdVYlpKCCx6PuuZaZcKo+9IcDCWoGXD4M8Kkz14qBmkFn5uM00mULUqmVdSibB2w==", "requires": { - "@parcel/types": "2.6.0" + "@parcel/types": "2.6.2" } }, "@parcel/reporter-dev-server": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/reporter-dev-server/-/reporter-dev-server-2.6.0.tgz", - "integrity": "sha512-VvygsCA+uzWyijIV8zqU1gFyhAWknuaY4KIWhV4kCT8afRJwsLSwt/tpdaKDPuPU45h3tTsUdXH1wjaIk+dGeQ==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/reporter-dev-server/-/reporter-dev-server-2.6.2.tgz", + "integrity": "sha512-5QtL3ETMFL161jehlIK6rjBM+Pqk5cMhr60s9yLYqE1GY4M4gMj+Act+FXViyM6gmMA38cPxDvUsxTKBYXpFCw==", "requires": { - "@parcel/plugin": "2.6.0", - "@parcel/utils": "2.6.0" + "@parcel/plugin": "2.6.2", + "@parcel/utils": "2.6.2" } }, "@parcel/resolver-default": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/resolver-default/-/resolver-default-2.6.0.tgz", - "integrity": "sha512-ATk9wXvy5GOHAqyHbnCnU11fUPTtf8dLjpgVqL5XylwugZnyBXbynoTWX4w8h6mffkVtdfmzTJx/o4Lresz9sA==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/resolver-default/-/resolver-default-2.6.2.tgz", + "integrity": "sha512-Lo5sWb5QkjWvdBr+TdmAF6Mszb/sMldBBatc1osQTkHXCy679VMH+lfyiWxHbwK+F1pmdMeBJpYcMxvrgT8EsA==", "requires": { - "@parcel/node-resolver-core": "2.6.0", - "@parcel/plugin": "2.6.0" + "@parcel/node-resolver-core": "2.6.2", + "@parcel/plugin": "2.6.2" } }, "@parcel/runtime-browser-hmr": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/runtime-browser-hmr/-/runtime-browser-hmr-2.6.0.tgz", - "integrity": "sha512-90xvv/10cFML5dAhClBEJZ/ExiBQVPqQsZcvRmVZmc5mpZVJMKattWCQrd7pAf7FDYl4JAcvsK3DTwvRT/oLNA==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/runtime-browser-hmr/-/runtime-browser-hmr-2.6.2.tgz", + "integrity": "sha512-M4X0+7dyfdI6smwGUGjGXb8Ns3HX7ZrTemyq4Gc7zp7P/5gWjR8i9eISz46sXmF9bf01a/4dKZpoCC9un1pH1g==", "requires": { - "@parcel/plugin": "2.6.0", - "@parcel/utils": "2.6.0" + "@parcel/plugin": "2.6.2", + "@parcel/utils": "2.6.2" } }, "@parcel/runtime-js": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/runtime-js/-/runtime-js-2.6.0.tgz", - "integrity": "sha512-R4tJAIT/SX7VBQ+f7WmeekREQzzLsmgP1j486uKhQNyYrpvsN0HnRbg5aqvZjEjkEmSeJR0mOlWtMK5/m+0yTA==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/runtime-js/-/runtime-js-2.6.2.tgz", + "integrity": "sha512-0S3JFwgvs6FmEx2dHta9R0Sfu8vCnFAm4i7Y4efGHtAcTrF2CHjyiz4/hG+RQGJ70eoWW463Q+8qt6EKbkaOBQ==", "requires": { - "@parcel/plugin": "2.6.0", - "@parcel/utils": "2.6.0", + "@parcel/plugin": "2.6.2", + "@parcel/utils": "2.6.2", "nullthrows": "^1.1.1" } }, "@parcel/runtime-react-refresh": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/runtime-react-refresh/-/runtime-react-refresh-2.6.0.tgz", - "integrity": "sha512-2sRd13gc2EbMV/O5n2NPVGGhKBasb1fDTXGEY8y7qi9xDKc+ewok/D83T+w243FhCPS9Pf3ur5GkbPlrJGcenQ==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/runtime-react-refresh/-/runtime-react-refresh-2.6.2.tgz", + "integrity": "sha512-DJTm5D/tUAGZm0o3ndDOPbKwdYrobuvm4jvkPq31LdEUqVvyuzBAMlqQFHc1yJEJDRRWOIQwQP9Y0NQbJmXFfg==", "requires": { - "@parcel/plugin": "2.6.0", - "@parcel/utils": "2.6.0", + "@parcel/plugin": "2.6.2", + "@parcel/utils": "2.6.2", "react-error-overlay": "6.0.9", "react-refresh": "^0.9.0" } }, "@parcel/runtime-service-worker": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/runtime-service-worker/-/runtime-service-worker-2.6.0.tgz", - "integrity": "sha512-nVlknGw5J5Bkd1Wr1TbyWHhUd9CmVVebaRg/lpfVKYhAuE/2r+3N0+J8qbEIgtTRcHaSV7wTNpg4weSWq46VeA==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/runtime-service-worker/-/runtime-service-worker-2.6.2.tgz", + "integrity": "sha512-9jV+RwVEeDUI5+eLy8j1tapTNoHHGOY2+JUprcObQkQ8fux7KltQBJWFhpkUdGtz5LTCNXtj9tdycFtS5lmSzg==", "requires": { - "@parcel/plugin": "2.6.0", - "@parcel/utils": "2.6.0", + "@parcel/plugin": "2.6.2", + "@parcel/utils": "2.6.2", "nullthrows": "^1.1.1" } }, @@ -3688,16 +3511,16 @@ } }, "@parcel/transformer-js": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/transformer-js/-/transformer-js-2.6.0.tgz", - "integrity": "sha512-4v2r3EVdMKowBziVBW9HZqvAv88HaeiezkWyMX4wAfplo9jBtWEp99KEQINzSEdbXROR81M9oJjlGF5+yoVr/w==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/transformer-js/-/transformer-js-2.6.2.tgz", + "integrity": "sha512-uhXAMTjE/Q61amflV8qVpb73mj+mIdXIMH0cSks1/gDIAxcgIvWvrE14P4TvY6zJ1q1iRJRIRUN6cFSXqjjLSA==", "requires": { - "@parcel/diagnostic": "2.6.0", - "@parcel/plugin": "2.6.0", + "@parcel/diagnostic": "2.6.2", + "@parcel/plugin": "2.6.2", "@parcel/source-map": "^2.0.0", - "@parcel/utils": "2.6.0", - "@parcel/workers": "2.6.0", - "@swc/helpers": "^0.3.15", + "@parcel/utils": "2.6.2", + "@parcel/workers": "2.6.2", + "@swc/helpers": "^0.4.2", "browserslist": "^4.6.6", "detect-libc": "^1.0.3", "nullthrows": "^1.1.1", @@ -3713,56 +3536,56 @@ } }, "@parcel/transformer-json": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/transformer-json/-/transformer-json-2.6.0.tgz", - "integrity": "sha512-zb+TQAdHWdXijKcFhLe+5KN1O0IzXwW1gJhPr8DJEA3qhPaCsncsw5RCVjQlP3a7NXr1mMm1eMtO6bhIMqbXeA==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/transformer-json/-/transformer-json-2.6.2.tgz", + "integrity": "sha512-QGcIIvbPF/u10ihYvQhxXqb2QMXWSzcBxJrOSIXIl74TUGrWX05D5LmjDA/rzm/n/kvRnBkFNP60R/smYb8x+Q==", "requires": { - "@parcel/plugin": "2.6.0", + "@parcel/plugin": "2.6.2", "json5": "^2.2.0" } }, "@parcel/transformer-raw": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/transformer-raw/-/transformer-raw-2.6.0.tgz", - "integrity": "sha512-QDirlWCS/qy0DQ3WvDIAnFP52n1TJW/uWH+4PGMNnX4/M3/2UchY8xp9CN0tx4NQ4g09S8o3gLlHvNxQqZxFrQ==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/transformer-raw/-/transformer-raw-2.6.2.tgz", + "integrity": "sha512-CsofYq5g9Zj/FNmhya2R7Xp3WHlzz34mEdN69bds3azRYHCrl/TS33xXcp/9J+74SEIY1Ufh552o1cM3fnSrDQ==", "requires": { - "@parcel/plugin": "2.6.0" + "@parcel/plugin": "2.6.2" } }, "@parcel/transformer-react-refresh-wrap": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/transformer-react-refresh-wrap/-/transformer-react-refresh-wrap-2.6.0.tgz", - "integrity": "sha512-G34orfvLDUTumuerqNmA8T8NUHk+R0jwUjbVPO7gpB6VCVQ5ocTABdE9vN9Uu/cUsHij40TUFwqK4R9TFEBIEQ==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/transformer-react-refresh-wrap/-/transformer-react-refresh-wrap-2.6.2.tgz", + "integrity": "sha512-7EE68ebISz+oAHm64ZJbz6uJQT4aOoB8QiK3PvuY6+RsP7aK4/FEHGM1afW49KrZbP4lWjloEkcJm/88DfBiGw==", "requires": { - "@parcel/plugin": "2.6.0", - "@parcel/utils": "2.6.0", + "@parcel/plugin": "2.6.2", + "@parcel/utils": "2.6.2", "react-refresh": "^0.9.0" } }, "@parcel/types": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/types/-/types-2.6.0.tgz", - "integrity": "sha512-lAMYvOBfNEJMsPJ+plbB50305o0TwNrY1xX5RRIWBqwOa6bYmbW1ZljUk1tQvnkpIE4eAHQwnPR5Z2XWg18wGQ==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/types/-/types-2.6.2.tgz", + "integrity": "sha512-MV8BFpCIs2jMUvK2RHqzkoiuOQ//JIbrD1zocA2YRW3zuPL/iABvbAABJoXpoPCKikVWOoCWASgBfWQo26VvJQ==", "requires": { - "@parcel/cache": "2.6.0", - "@parcel/diagnostic": "2.6.0", - "@parcel/fs": "2.6.0", - "@parcel/package-manager": "2.6.0", + "@parcel/cache": "2.6.2", + "@parcel/diagnostic": "2.6.2", + "@parcel/fs": "2.6.2", + "@parcel/package-manager": "2.6.2", "@parcel/source-map": "^2.0.0", - "@parcel/workers": "2.6.0", + "@parcel/workers": "2.6.2", "utility-types": "^3.10.0" } }, "@parcel/utils": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/utils/-/utils-2.6.0.tgz", - "integrity": "sha512-ElXz+QHtT1JQIucbQJBk7SzAGoOlBp4yodEQVvTKS7GA+hEGrSP/cmibl6qm29Rjtd0zgQsdd+2XmP3xvP2gQQ==", - "requires": { - "@parcel/codeframe": "2.6.0", - "@parcel/diagnostic": "2.6.0", - "@parcel/hash": "2.6.0", - "@parcel/logger": "2.6.0", - "@parcel/markdown-ansi": "2.6.0", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/utils/-/utils-2.6.2.tgz", + "integrity": "sha512-Ug7hpRxjgbY5AopW55nY7MmGMVmwmN+ihfCmxJkBUoESTG/3iq8uME7GjyOgW5DkQc2K7q62i8y8N0wCJT1u4Q==", + "requires": { + "@parcel/codeframe": "2.6.2", + "@parcel/diagnostic": "2.6.2", + "@parcel/hash": "2.6.2", + "@parcel/logger": "2.6.2", + "@parcel/markdown-ansi": "2.6.2", "@parcel/source-map": "^2.0.0", "chalk": "^4.1.0" } @@ -3777,14 +3600,14 @@ } }, "@parcel/workers": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/workers/-/workers-2.6.0.tgz", - "integrity": "sha512-3tcI2LF5fd/WZtSnSjyWdDE+G+FitdNrRgSObzSp+axHKMAM23sO0z7KY8s2SYCF40msdYbFUW8eI6JlYNJoWQ==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/workers/-/workers-2.6.2.tgz", + "integrity": "sha512-wBgUjJQm+lDd12fPRUmk09+ujTA9DgwPdqylSFK0OtI/yT6A+2kArUqjp8IwWo2tCJXoMzXBne2XQIWKqMiN4Q==", "requires": { - "@parcel/diagnostic": "2.6.0", - "@parcel/logger": "2.6.0", - "@parcel/types": "2.6.0", - "@parcel/utils": "2.6.0", + "@parcel/diagnostic": "2.6.2", + "@parcel/logger": "2.6.2", + "@parcel/types": "2.6.2", + "@parcel/utils": "2.6.2", "chrome-trace-event": "^1.0.2", "nullthrows": "^1.1.1" } @@ -3870,9 +3693,9 @@ } }, "@swc/helpers": { - "version": "0.3.17", - "resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.3.17.tgz", - "integrity": "sha512-tb7Iu+oZ+zWJZ3HJqwx8oNwSDIU440hmVMDPhpACWQWnrZHK99Bxs70gT1L2dnr5Hg50ZRWEFkQCAnOVVV0z1Q==", + "version": "0.4.3", + "resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.4.3.tgz", + "integrity": "sha512-6JrF+fdUK2zbGpJIlN7G3v966PQjyx/dPt1T9km2wj+EUBqgrxCk3uX4Kct16MIm9gGxfKRcfax2hVf5jvlTzA==", "requires": { "tslib": "^2.4.0" } @@ -4777,14 +4600,14 @@ } }, "caniuse-lite": { - "version": "1.0.30001366", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001366.tgz", - "integrity": "sha512-yy7XLWCubDobokgzudpkKux8e0UOOnLHE6mlNJBzT3lZJz6s5atSEzjoL+fsCPkI0G8MP5uVdDx1ur/fXEWkZA==" + "version": "1.0.30001367", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001367.tgz", + "integrity": "sha512-XDgbeOHfifWV3GEES2B8rtsrADx4Jf+juKX2SICJcaUhjYBO3bR96kvEIHa15VU6ohtOhBZuPGGYGbXMRn0NCw==" }, "electron-to-chromium": { - "version": "1.4.188", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.188.tgz", - "integrity": "sha512-Zpa1+E+BVmD/orkyz1Z2dAT1XNUuVAHB3GrogfyY66dXN0ZWSsygI8+u6QTDai1ZayLcATDJpcv2Z2AZjEcr1A==" + "version": "1.4.194", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.194.tgz", + "integrity": "sha512-ola5UH0xAP1oYY0FFUsPvwtucEzCQHucXnT7PQ1zjHJMccZhCDktEugI++JUR3YuIs7Ff7afz+OVEhVAIMhLAQ==" } } }, @@ -4993,9 +4816,9 @@ } }, "babel-preset-gatsby": { - "version": "2.18.1", - "resolved": "https://registry.npmjs.org/babel-preset-gatsby/-/babel-preset-gatsby-2.18.1.tgz", - "integrity": "sha512-oaVV6ULceMjTQKjCA06qvgfLwBNZFJxpacwNZYOJpLygmj+qYiNKDGhJ8vTw/KAIUeDPZAbPMP5P+3wMEPIWYQ==", + "version": "2.19.0", + "resolved": "https://registry.npmjs.org/babel-preset-gatsby/-/babel-preset-gatsby-2.19.0.tgz", + "integrity": "sha512-wjh4lUN1MffsnqHAfRoeOtJFGEObUPR4oxo7fyfx9pZUyqBgXvKXMEoLnwNht5HV5BzT5Xo9dkwNJl0/CNhXHw==", "requires": { "@babel/plugin-proposal-class-properties": "^7.14.0", "@babel/plugin-proposal-nullish-coalescing-operator": "^7.14.5", @@ -5010,14 +4833,50 @@ "babel-plugin-dynamic-import-node": "^2.3.3", "babel-plugin-macros": "^3.1.0", "babel-plugin-transform-react-remove-prop-types": "^0.4.24", - "gatsby-core-utils": "^3.18.1", - "gatsby-legacy-polyfills": "^2.18.0" + "gatsby-core-utils": "^3.19.0", + "gatsby-legacy-polyfills": "^2.19.0" }, "dependencies": { + "@lmdb/lmdb-darwin-arm64": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-arm64/-/lmdb-darwin-arm64-2.5.3.tgz", + "integrity": "sha512-RXwGZ/0eCqtCY8FLTM/koR60w+MXyvBUpToXiIyjOcBnC81tAlTUHrRUavCEWPI9zc9VgvpK3+cbumPyR8BSuA==", + "optional": true + }, + "@lmdb/lmdb-darwin-x64": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-x64/-/lmdb-darwin-x64-2.5.3.tgz", + "integrity": "sha512-337dNzh5yCdNCTk8kPfoU7jR3otibSlPDGW0vKZT97rKnQMb9tNdto3RtWoGPsQ8hKmlRZpojOJtmwjncq1MoA==", + "optional": true + }, + "@lmdb/lmdb-linux-arm": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm/-/lmdb-linux-arm-2.5.3.tgz", + "integrity": "sha512-mU2HFJDGwECkoD9dHQEfeTG5mp8hNS2BCfwoiOpVPMeapjYpQz9Uw3FkUjRZ4dGHWKbin40oWHuL0bk2bCx+Sg==", + "optional": true + }, + "@lmdb/lmdb-linux-arm64": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm64/-/lmdb-linux-arm64-2.5.3.tgz", + "integrity": "sha512-VJw60Mdgb4n+L0fO1PqfB0C7TyEQolJAC8qpqvG3JoQwvyOv6LH7Ib/WE3wxEW9nuHmVz9jkK7lk5HfWWgoO1Q==", + "optional": true + }, + "@lmdb/lmdb-linux-x64": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-x64/-/lmdb-linux-x64-2.5.3.tgz", + "integrity": "sha512-qaReO5aV8griBDsBr8uBF/faO3ieGjY1RY4p8JvTL6Mu1ylLrTVvOONqKFlNaCwrmUjWw5jnf7VafxDAeQHTow==", + "optional": true + }, + "@lmdb/lmdb-win32-x64": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-win32-x64/-/lmdb-win32-x64-2.5.3.tgz", + "integrity": "sha512-cK+Elf3RjEzrm3SerAhrFWL5oQAsZSJ/LmjL1joIpTfEP1etJJ9CTRvdaV6XLYAxaEkfdhk/9hOvHLbR9yIhCA==", + "optional": true + }, "gatsby-core-utils": { - "version": "3.18.1", - "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.18.1.tgz", - "integrity": "sha512-sJTxRqizLxYy/tSFk0ydfqEZ3ek1So9HDVUa39F6Oi8XuPCBTFzaAooUvowKGneI5YUbdk5y4VO4ybwVUynntw==", + "version": "3.19.0", + "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.19.0.tgz", + "integrity": "sha512-cjXs9DsXkPZt+UdiLHxtq+rGMGVrcnM0KwkawlruvPchI7lqGNv9CScqlvYPxx1dBhu3zSZS26EBALMlFhyOJA==", "requires": { "@babel/runtime": "^7.15.4", "ci-info": "2.0.0", @@ -5179,6 +5038,11 @@ "unpipe": "1.0.0" }, "dependencies": { + "bytes": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", + "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==" + }, "debug": { "version": "2.6.9", "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", @@ -5356,9 +5220,9 @@ } }, "bytes": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", - "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==" + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz", + "integrity": "sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==" }, "cache-manager": { "version": "2.11.1", @@ -6085,11 +5949,6 @@ "vary": "~1.1.2" }, "dependencies": { - "bytes": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz", - "integrity": "sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==" - }, "debug": { "version": "2.6.9", "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", @@ -6247,9 +6106,9 @@ } }, "core-js-pure": { - "version": "3.23.4", - "resolved": "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.23.4.tgz", - "integrity": "sha512-lizxkcgj3XDmi7TUBFe+bQ1vNpD5E4t76BrBWI3HdUxdw/Mq1VF4CkiHzIKyieECKtcODK2asJttoofEeUKICQ==" + "version": "3.23.5", + "resolved": "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.23.5.tgz", + "integrity": "sha512-8t78LdpKSuCq4pJYCYk8hl7XEkAX+BP16yRIwL3AanTksxuEf7CM83vRyctmiEL8NDZ3jpUcv56fk9/zG3aIuw==" }, "core-util-is": { "version": "1.0.2", @@ -6286,9 +6145,9 @@ } }, "create-gatsby": { - "version": "2.18.1", - "resolved": "https://registry.npmjs.org/create-gatsby/-/create-gatsby-2.18.1.tgz", - "integrity": "sha512-1AZioXKi4COhESSHfsb/6tpkBvyuuXHwAmMAGrcUQpbynsQxYdqonnRqnFhp80bA2cIKxgjtHzzLhyRouDonbQ==", + "version": "2.19.0", + "resolved": "https://registry.npmjs.org/create-gatsby/-/create-gatsby-2.19.0.tgz", + "integrity": "sha512-Esl/qCau3rjpnRkmo31BYOE6l72SJ/5Fq8bF6gmXOf/lnbOh51so8hgRcClfizr1nCihqQQihZn//o4DIgZKeA==", "requires": { "@babel/runtime": "^7.15.4" } @@ -7492,9 +7351,9 @@ }, "dependencies": { "@babel/runtime": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.18.6.tgz", - "integrity": "sha512-t9wi7/AW6XtKahAe20Yw0/mMljKq0B1r2fPdvaAdV/KPDZewFXdaaa6K7lxmZBZ8FBNpCiAT6iHPmd6QO9bKfQ==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.18.9.tgz", + "integrity": "sha512-lkqXDcvlFT5rvEjiu6+QYO+1GXrEHRo2LOtS7E4GtX5ESIZOgepqsZBVIj6Pv+a6zqsya9VCgiK1KAK4BvJDAw==", "requires": { "regenerator-runtime": "^0.13.4" } @@ -8356,9 +8215,9 @@ "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==" }, "gatsby": { - "version": "4.18.2", - "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-4.18.2.tgz", - "integrity": "sha512-ZWdo0TXsSRmwlmOeeuoWwXKQNteHm9VxJWF9Ud+c33r7ZXQgTA5WtRYjiBpjZuNAUwsiONNAe+wKK5jVY8B4LQ==", + "version": "4.19.0", + "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-4.19.0.tgz", + "integrity": "sha512-Bhga6PbDRSL3J7yIcVAWwN76cK0OeFWE4f5ggh4qEjnsL20kxW+LPwAexpZ5dVxbE1gsl1k/VDSX66Wj3vGH3A==", "requires": { "@babel/code-frame": "^7.14.0", "@babel/core": "^7.15.5", @@ -8380,7 +8239,7 @@ "@graphql-tools/load": "^7.5.10", "@jridgewell/trace-mapping": "^0.3.13", "@nodelib/fs.walk": "^1.2.8", - "@parcel/core": "2.6.0", + "@parcel/core": "2.6.2", "@pmmmwh/react-refresh-webpack-plugin": "^0.4.3", "@types/http-proxy": "^1.17.7", "@typescript-eslint/eslint-plugin": "^4.33.0", @@ -8394,11 +8253,10 @@ "babel-plugin-add-module-exports": "^1.0.4", "babel-plugin-dynamic-import-node": "^2.3.3", "babel-plugin-lodash": "^3.3.4", - "babel-plugin-remove-graphql-queries": "^4.18.1", - "babel-preset-gatsby": "^2.18.1", + "babel-plugin-remove-graphql-queries": "^4.19.0", + "babel-preset-gatsby": "^2.19.0", "better-opn": "^2.1.1", "bluebird": "^3.7.2", - "body-parser": "^1.19.0", "browserslist": "^4.17.5", "cache-manager": "^2.11.1", "chalk": "^4.1.2", @@ -8424,7 +8282,7 @@ "eslint-plugin-graphql": "^4.0.0", "eslint-plugin-import": "^2.26.0", "eslint-plugin-jsx-a11y": "^6.5.1", - "eslint-plugin-react": "^7.30.0", + "eslint-plugin-react": "^7.30.1", "eslint-plugin-react-hooks": "^4.5.0", "eslint-webpack-plugin": "^2.6.0", "event-source-polyfill": "1.0.25", @@ -8438,21 +8296,21 @@ "find-cache-dir": "^3.3.2", "fs-exists-cached": "1.0.0", "fs-extra": "^10.1.0", - "gatsby-cli": "^4.18.1", - "gatsby-core-utils": "^3.18.1", - "gatsby-graphiql-explorer": "^2.18.0", - "gatsby-legacy-polyfills": "^2.18.0", - "gatsby-link": "^4.18.1", - "gatsby-page-utils": "^2.18.1", - "gatsby-parcel-config": "^0.9.2", - "gatsby-plugin-page-creator": "^4.18.1", - "gatsby-plugin-typescript": "^4.18.1", - "gatsby-plugin-utils": "^3.12.1", - "gatsby-react-router-scroll": "^5.18.0", - "gatsby-script": "^1.3.0", - "gatsby-sharp": "^0.12.0", - "gatsby-telemetry": "^3.18.1", - "gatsby-worker": "^1.18.0", + "gatsby-cli": "^4.19.0", + "gatsby-core-utils": "^3.19.0", + "gatsby-graphiql-explorer": "^2.19.0", + "gatsby-legacy-polyfills": "^2.19.0", + "gatsby-link": "^4.19.0", + "gatsby-page-utils": "^2.19.0", + "gatsby-parcel-config": "^0.10.0", + "gatsby-plugin-page-creator": "^4.19.0", + "gatsby-plugin-typescript": "^4.19.0", + "gatsby-plugin-utils": "^3.13.0", + "gatsby-react-router-scroll": "^5.19.0", + "gatsby-script": "^1.4.0", + "gatsby-sharp": "^0.13.0", + "gatsby-telemetry": "^3.19.0", + "gatsby-worker": "^1.19.0", "glob": "^7.2.3", "globby": "^11.1.0", "got": "^11.8.2", @@ -8460,7 +8318,6 @@ "graphql-compose": "^9.0.7", "graphql-playground-middleware-express": "^1.7.22", "hasha": "^5.2.2", - "http-proxy": "^1.18.1", "invariant": "^2.2.4", "is-relative": "^1.0.0", "is-relative-url": "^3.0.0", @@ -8479,6 +8336,7 @@ "moment": "^2.29.1", "multer": "^1.4.3", "node-fetch": "^2.6.6", + "node-html-parser": "^5.3.3", "normalize-path": "^3.0.0", "null-loader": "^4.0.1", "opentracing": "^0.14.5", @@ -8533,6 +8391,42 @@ "@jridgewell/sourcemap-codec": "^1.4.10" } }, + "@lmdb/lmdb-darwin-arm64": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-arm64/-/lmdb-darwin-arm64-2.5.3.tgz", + "integrity": "sha512-RXwGZ/0eCqtCY8FLTM/koR60w+MXyvBUpToXiIyjOcBnC81tAlTUHrRUavCEWPI9zc9VgvpK3+cbumPyR8BSuA==", + "optional": true + }, + "@lmdb/lmdb-darwin-x64": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-x64/-/lmdb-darwin-x64-2.5.3.tgz", + "integrity": "sha512-337dNzh5yCdNCTk8kPfoU7jR3otibSlPDGW0vKZT97rKnQMb9tNdto3RtWoGPsQ8hKmlRZpojOJtmwjncq1MoA==", + "optional": true + }, + "@lmdb/lmdb-linux-arm": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm/-/lmdb-linux-arm-2.5.3.tgz", + "integrity": "sha512-mU2HFJDGwECkoD9dHQEfeTG5mp8hNS2BCfwoiOpVPMeapjYpQz9Uw3FkUjRZ4dGHWKbin40oWHuL0bk2bCx+Sg==", + "optional": true + }, + "@lmdb/lmdb-linux-arm64": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm64/-/lmdb-linux-arm64-2.5.3.tgz", + "integrity": "sha512-VJw60Mdgb4n+L0fO1PqfB0C7TyEQolJAC8qpqvG3JoQwvyOv6LH7Ib/WE3wxEW9nuHmVz9jkK7lk5HfWWgoO1Q==", + "optional": true + }, + "@lmdb/lmdb-linux-x64": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-x64/-/lmdb-linux-x64-2.5.3.tgz", + "integrity": "sha512-qaReO5aV8griBDsBr8uBF/faO3ieGjY1RY4p8JvTL6Mu1ylLrTVvOONqKFlNaCwrmUjWw5jnf7VafxDAeQHTow==", + "optional": true + }, + "@lmdb/lmdb-win32-x64": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-win32-x64/-/lmdb-win32-x64-2.5.3.tgz", + "integrity": "sha512-cK+Elf3RjEzrm3SerAhrFWL5oQAsZSJ/LmjL1joIpTfEP1etJJ9CTRvdaV6XLYAxaEkfdhk/9hOvHLbR9yIhCA==", + "optional": true + }, "ansi-styles": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", @@ -8542,12 +8436,12 @@ } }, "babel-plugin-remove-graphql-queries": { - "version": "4.18.1", - "resolved": "https://registry.npmjs.org/babel-plugin-remove-graphql-queries/-/babel-plugin-remove-graphql-queries-4.18.1.tgz", - "integrity": "sha512-2I7qsm3pnyvrS6/Q9YuHK1SpfQLmrgYH/AjpnWpnLHee6SiVb5Te89iphhpBdycpBRVGWh04ram9+z/1rMaRYQ==", + "version": "4.19.0", + "resolved": "https://registry.npmjs.org/babel-plugin-remove-graphql-queries/-/babel-plugin-remove-graphql-queries-4.19.0.tgz", + "integrity": "sha512-VbxC7aZxdqQA0YiAcTD/djIW+6PP/JVODlRmCiqDyTbtI0zhE/Z6je1maCmC6J2LLBsKxhWT3UYTjRfLofK7sQ==", "requires": { "@babel/runtime": "^7.15.4", - "gatsby-core-utils": "^3.18.1" + "gatsby-core-utils": "^3.19.0" } }, "color-convert": { @@ -8573,9 +8467,9 @@ } }, "gatsby-cli": { - "version": "4.18.1", - "resolved": "https://registry.npmjs.org/gatsby-cli/-/gatsby-cli-4.18.1.tgz", - "integrity": "sha512-ceYqm6i39rHY343zUCflwXnGtd25QGccvToTWL8W42/EGToDW8bubLfeBSRCfjXm946yf1gkS/1UAsAgAphYDA==", + "version": "4.19.0", + "resolved": "https://registry.npmjs.org/gatsby-cli/-/gatsby-cli-4.19.0.tgz", + "integrity": "sha512-i1B9ktvOECiOZgyKqf0xdYx9bmrIUeZeiK+EOIvIpvFfFUwBmZR6xSHRHYUGX2JVpQiy4QEG25KcPWgF9mYJ3w==", "requires": { "@babel/code-frame": "^7.14.0", "@babel/core": "^7.15.5", @@ -8594,13 +8488,13 @@ "common-tags": "^1.8.2", "configstore": "^5.0.1", "convert-hrtime": "^3.0.0", - "create-gatsby": "^2.18.1", + "create-gatsby": "^2.19.0", "envinfo": "^7.8.1", "execa": "^5.1.1", "fs-exists-cached": "^1.0.0", "fs-extra": "^10.1.0", - "gatsby-core-utils": "^3.18.1", - "gatsby-telemetry": "^3.18.1", + "gatsby-core-utils": "^3.19.0", + "gatsby-telemetry": "^3.19.0", "hosted-git-info": "^3.0.8", "is-valid-path": "^0.1.1", "joi": "^17.4.2", @@ -8624,9 +8518,9 @@ } }, "gatsby-core-utils": { - "version": "3.18.1", - "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.18.1.tgz", - "integrity": "sha512-sJTxRqizLxYy/tSFk0ydfqEZ3ek1So9HDVUa39F6Oi8XuPCBTFzaAooUvowKGneI5YUbdk5y4VO4ybwVUynntw==", + "version": "3.19.0", + "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.19.0.tgz", + "integrity": "sha512-cjXs9DsXkPZt+UdiLHxtq+rGMGVrcnM0KwkawlruvPchI7lqGNv9CScqlvYPxx1dBhu3zSZS26EBALMlFhyOJA==", "requires": { "@babel/runtime": "^7.15.4", "ci-info": "2.0.0", @@ -8666,15 +8560,15 @@ } }, "gatsby-plugin-utils": { - "version": "3.12.1", - "resolved": "https://registry.npmjs.org/gatsby-plugin-utils/-/gatsby-plugin-utils-3.12.1.tgz", - "integrity": "sha512-Rx7/MFtiJ+pyvPLqCPj5beyMN6qOx3EYMrOqmvrWJaM32nxMfHZqUqxGruufyFNVe6edfRuNuXcKaPXlGlyexA==", + "version": "3.13.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-utils/-/gatsby-plugin-utils-3.13.0.tgz", + "integrity": "sha512-iFFWswld/Nu8IrSCikZXC4/cud9txv3ikjkQiGLccJStS9VH2rSY4XEMNRqsKN9Spe3pFBOr/97yYUaPhZaQWg==", "requires": { "@babel/runtime": "^7.15.4", "@gatsbyjs/potrace": "^2.2.0", "fs-extra": "^10.1.0", - "gatsby-core-utils": "^3.18.1", - "gatsby-sharp": "^0.12.0", + "gatsby-core-utils": "^3.19.0", + "gatsby-sharp": "^0.13.0", "graphql-compose": "^9.0.7", "import-from": "^4.0.0", "joi": "^17.4.2", @@ -8691,18 +8585,18 @@ } }, "gatsby-sharp": { - "version": "0.12.0", - "resolved": "https://registry.npmjs.org/gatsby-sharp/-/gatsby-sharp-0.12.0.tgz", - "integrity": "sha512-dZa/AgxmPzD0vvROEZSuT3IdzAFTxnq1FfLTf9n3mywonvsKYc84zj6nf8TEzBrVrBFAaLvZek4NpVAKWGr4/w==", + "version": "0.13.0", + "resolved": "https://registry.npmjs.org/gatsby-sharp/-/gatsby-sharp-0.13.0.tgz", + "integrity": "sha512-dGuIuWP3rC7hXl/CgkHEY4WQEW+B9Rsg8uo6u+OumuLnLBxD4vTusEIGctVKzlyIxpENEQylQ7w1JKHX9fOy9g==", "requires": { "@types/sharp": "^0.30.0", "sharp": "^0.30.3" } }, "gatsby-telemetry": { - "version": "3.18.1", - "resolved": "https://registry.npmjs.org/gatsby-telemetry/-/gatsby-telemetry-3.18.1.tgz", - "integrity": "sha512-EjjsUv15BZGsmnPrOINRT/s7d18DTKokpp2NDZLm8uOs3MwVoLtUZ/BS7h2NTmgK+WN93q3bNYRkZgKgV9QC1A==", + "version": "3.19.0", + "resolved": "https://registry.npmjs.org/gatsby-telemetry/-/gatsby-telemetry-3.19.0.tgz", + "integrity": "sha512-5JQcTm2zCLWTmnXOdOe0gxuk7aRZSTaVrOrytMlwAR7trvtBC/fKqMhJHsYwl5uW9K06F59ZdkC0apJTAPkGww==", "requires": { "@babel/code-frame": "^7.14.0", "@babel/runtime": "^7.15.4", @@ -8712,7 +8606,7 @@ "boxen": "^4.2.0", "configstore": "^5.0.1", "fs-extra": "^10.1.0", - "gatsby-core-utils": "^3.18.1", + "gatsby-core-utils": "^3.19.0", "git-up": "^4.0.5", "is-docker": "^2.2.1", "lodash": "^4.17.21", @@ -8842,17 +8736,17 @@ } }, "gatsby-graphiql-explorer": { - "version": "2.18.0", - "resolved": "https://registry.npmjs.org/gatsby-graphiql-explorer/-/gatsby-graphiql-explorer-2.18.0.tgz", - "integrity": "sha512-mmY+kHc+axpDO9lfjbCEf/0oEIHTcZmpe2PtQAzkhnQHyti3xd9IIafq/1W3QKIJo5c7f40+tR3sFTERqaBeIA==", + "version": "2.19.0", + "resolved": "https://registry.npmjs.org/gatsby-graphiql-explorer/-/gatsby-graphiql-explorer-2.19.0.tgz", + "integrity": "sha512-wOD1LuWaSbCtZ0E9C2HxMBQj67k8kPnlLMr/VfKHgBh0FfvIavIq5vOq5K9zRIkAzSzYVODGEz2NVdbfVK9Bew==", "requires": { "@babel/runtime": "^7.15.4" } }, "gatsby-legacy-polyfills": { - "version": "2.18.0", - "resolved": "https://registry.npmjs.org/gatsby-legacy-polyfills/-/gatsby-legacy-polyfills-2.18.0.tgz", - "integrity": "sha512-wPnsRUnnab10wyt5VPkIhpJC1k8bVrpn0Sfat1L3JskYwkVIEvquqTmHWkpGMB8SLbXQiJEGCs2TcIrx9riL+w==", + "version": "2.19.0", + "resolved": "https://registry.npmjs.org/gatsby-legacy-polyfills/-/gatsby-legacy-polyfills-2.19.0.tgz", + "integrity": "sha512-WuyN01eiRxhanfnj6UgsCxU+Pxs9B8rtgxbrwXhlEKX+QdAp4XlywDQ8QXvv8i028QDF9h+VnvGlfcZY4tgQrQ==", "requires": { "@babel/runtime": "^7.15.4", "core-js-compat": "3.9.0" @@ -8875,35 +8769,70 @@ } }, "gatsby-link": { - "version": "4.18.1", - "resolved": "https://registry.npmjs.org/gatsby-link/-/gatsby-link-4.18.1.tgz", - "integrity": "sha512-gLFH2iU4WugHU5k+SLu4F0Ar04kDT5KhkyXly99ZVtiIvHpA5DqcuGNIUjIE/lizSCsfa553wGv7dadfghGzrQ==", + "version": "4.19.0", + "resolved": "https://registry.npmjs.org/gatsby-link/-/gatsby-link-4.19.0.tgz", + "integrity": "sha512-snv9blxZR7s/ymRjUUDP2+zrJ/beuyy/k/MeW57EkQ16YfgDyF79JMKNDU3iXFmiFhG9AYBkClIfe4qTSoCO/A==", "requires": { - "@babel/runtime": "^7.15.4", "@types/reach__router": "^1.3.10", - "gatsby-page-utils": "^2.18.1", + "gatsby-page-utils": "^2.19.0", "prop-types": "^15.8.1" } }, "gatsby-page-utils": { - "version": "2.18.1", - "resolved": "https://registry.npmjs.org/gatsby-page-utils/-/gatsby-page-utils-2.18.1.tgz", - "integrity": "sha512-4EM0LNOQgnCndHDQSI/ZKRFWYWG9dtTPuGbBaGlmPquhj3zwjOscws1vfj7g+u3PowKjZQ2Rf92RZd8xt8XLTQ==", + "version": "2.19.0", + "resolved": "https://registry.npmjs.org/gatsby-page-utils/-/gatsby-page-utils-2.19.0.tgz", + "integrity": "sha512-eYStV4jQbuEBKhatH3yzWA+lmoydJBCZVg6w2GG38eSsgcj9pdep8oQqyQdGFU3dy/HizWmWCv+wW9FIUoVQsQ==", "requires": { "@babel/runtime": "^7.15.4", "bluebird": "^3.7.2", "chokidar": "^3.5.3", "fs-exists-cached": "^1.0.0", - "gatsby-core-utils": "^3.18.1", + "gatsby-core-utils": "^3.19.0", "glob": "^7.2.3", "lodash": "^4.17.21", "micromatch": "^4.0.5" }, "dependencies": { + "@lmdb/lmdb-darwin-arm64": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-arm64/-/lmdb-darwin-arm64-2.5.3.tgz", + "integrity": "sha512-RXwGZ/0eCqtCY8FLTM/koR60w+MXyvBUpToXiIyjOcBnC81tAlTUHrRUavCEWPI9zc9VgvpK3+cbumPyR8BSuA==", + "optional": true + }, + "@lmdb/lmdb-darwin-x64": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-x64/-/lmdb-darwin-x64-2.5.3.tgz", + "integrity": "sha512-337dNzh5yCdNCTk8kPfoU7jR3otibSlPDGW0vKZT97rKnQMb9tNdto3RtWoGPsQ8hKmlRZpojOJtmwjncq1MoA==", + "optional": true + }, + "@lmdb/lmdb-linux-arm": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm/-/lmdb-linux-arm-2.5.3.tgz", + "integrity": "sha512-mU2HFJDGwECkoD9dHQEfeTG5mp8hNS2BCfwoiOpVPMeapjYpQz9Uw3FkUjRZ4dGHWKbin40oWHuL0bk2bCx+Sg==", + "optional": true + }, + "@lmdb/lmdb-linux-arm64": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm64/-/lmdb-linux-arm64-2.5.3.tgz", + "integrity": "sha512-VJw60Mdgb4n+L0fO1PqfB0C7TyEQolJAC8qpqvG3JoQwvyOv6LH7Ib/WE3wxEW9nuHmVz9jkK7lk5HfWWgoO1Q==", + "optional": true + }, + "@lmdb/lmdb-linux-x64": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-x64/-/lmdb-linux-x64-2.5.3.tgz", + "integrity": "sha512-qaReO5aV8griBDsBr8uBF/faO3ieGjY1RY4p8JvTL6Mu1ylLrTVvOONqKFlNaCwrmUjWw5jnf7VafxDAeQHTow==", + "optional": true + }, + "@lmdb/lmdb-win32-x64": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-win32-x64/-/lmdb-win32-x64-2.5.3.tgz", + "integrity": "sha512-cK+Elf3RjEzrm3SerAhrFWL5oQAsZSJ/LmjL1joIpTfEP1etJJ9CTRvdaV6XLYAxaEkfdhk/9hOvHLbR9yIhCA==", + "optional": true + }, "gatsby-core-utils": { - "version": "3.18.1", - "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.18.1.tgz", - "integrity": "sha512-sJTxRqizLxYy/tSFk0ydfqEZ3ek1So9HDVUa39F6Oi8XuPCBTFzaAooUvowKGneI5YUbdk5y4VO4ybwVUynntw==", + "version": "3.19.0", + "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.19.0.tgz", + "integrity": "sha512-cjXs9DsXkPZt+UdiLHxtq+rGMGVrcnM0KwkawlruvPchI7lqGNv9CScqlvYPxx1dBhu3zSZS26EBALMlFhyOJA==", "requires": { "@babel/runtime": "^7.15.4", "ci-info": "2.0.0", @@ -8971,27 +8900,27 @@ } }, "gatsby-parcel-config": { - "version": "0.9.2", - "resolved": "https://registry.npmjs.org/gatsby-parcel-config/-/gatsby-parcel-config-0.9.2.tgz", - "integrity": "sha512-ONykPoYCoFs89M8Hio0TSrUQEpwXwbSiV8aCcPH9L6w3eros9RlWrwAwnWb+lPDNJT5BsereBjefoS9cC6mpVA==", - "requires": { - "@gatsbyjs/parcel-namer-relative-to-cwd": "^1.3.2", - "@parcel/bundler-default": "2.6.0", - "@parcel/compressor-raw": "2.6.0", - "@parcel/namer-default": "2.6.0", - "@parcel/optimizer-terser": "2.6.0", - "@parcel/packager-js": "2.6.0", - "@parcel/packager-raw": "2.6.0", - "@parcel/reporter-dev-server": "2.6.0", - "@parcel/resolver-default": "2.6.0", - "@parcel/runtime-browser-hmr": "2.6.0", - "@parcel/runtime-js": "2.6.0", - "@parcel/runtime-react-refresh": "2.6.0", - "@parcel/runtime-service-worker": "2.6.0", - "@parcel/transformer-js": "2.6.0", - "@parcel/transformer-json": "2.6.0", - "@parcel/transformer-raw": "2.6.0", - "@parcel/transformer-react-refresh-wrap": "2.6.0" + "version": "0.10.0", + "resolved": "https://registry.npmjs.org/gatsby-parcel-config/-/gatsby-parcel-config-0.10.0.tgz", + "integrity": "sha512-FV+ccSeWPgicWRtycfUV1L7xyVIr6OSDnUkztnxq3Xj+OEBPC0NO2x07CA4tz16hSRDH1/qXgwY8AsHyenCidg==", + "requires": { + "@gatsbyjs/parcel-namer-relative-to-cwd": "^1.4.0", + "@parcel/bundler-default": "2.6.2", + "@parcel/compressor-raw": "2.6.2", + "@parcel/namer-default": "2.6.2", + "@parcel/optimizer-terser": "2.6.2", + "@parcel/packager-js": "2.6.2", + "@parcel/packager-raw": "2.6.2", + "@parcel/reporter-dev-server": "2.6.2", + "@parcel/resolver-default": "2.6.2", + "@parcel/runtime-browser-hmr": "2.6.2", + "@parcel/runtime-js": "2.6.2", + "@parcel/runtime-react-refresh": "2.6.2", + "@parcel/runtime-service-worker": "2.6.2", + "@parcel/transformer-js": "2.6.2", + "@parcel/transformer-json": "2.6.2", + "@parcel/transformer-raw": "2.6.2", + "@parcel/transformer-react-refresh-wrap": "2.6.2" } }, "gatsby-plugin-image": { @@ -9116,23 +9045,59 @@ } }, "gatsby-plugin-page-creator": { - "version": "4.18.1", - "resolved": "https://registry.npmjs.org/gatsby-plugin-page-creator/-/gatsby-plugin-page-creator-4.18.1.tgz", - "integrity": "sha512-XPAglahQ1fDnSdSNJmtAGwVqB7yZDGPOQQBQX7LD74XwYP6uriRo4LyeI+gEXRqW4d63ZL3VMvgdisde9M95LQ==", + "version": "4.19.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-page-creator/-/gatsby-plugin-page-creator-4.19.0.tgz", + "integrity": "sha512-JGclCb2lniTjBdFzoiF0Px9EhVY/3uiWx7mqnvfdVO85VVey5+eCKL60Aqamjovo6C+l/0Uldt4uT1EpNLC3Xw==", "requires": { "@babel/runtime": "^7.15.4", "@babel/traverse": "^7.15.4", "@sindresorhus/slugify": "^1.1.2", "chokidar": "^3.5.3", "fs-exists-cached": "^1.0.0", - "gatsby-core-utils": "^3.18.1", - "gatsby-page-utils": "^2.18.1", - "gatsby-plugin-utils": "^3.12.1", - "gatsby-telemetry": "^3.18.1", + "gatsby-core-utils": "^3.19.0", + "gatsby-page-utils": "^2.19.0", + "gatsby-plugin-utils": "^3.13.0", + "gatsby-telemetry": "^3.19.0", "globby": "^11.1.0", "lodash": "^4.17.21" }, "dependencies": { + "@lmdb/lmdb-darwin-arm64": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-arm64/-/lmdb-darwin-arm64-2.5.3.tgz", + "integrity": "sha512-RXwGZ/0eCqtCY8FLTM/koR60w+MXyvBUpToXiIyjOcBnC81tAlTUHrRUavCEWPI9zc9VgvpK3+cbumPyR8BSuA==", + "optional": true + }, + "@lmdb/lmdb-darwin-x64": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-x64/-/lmdb-darwin-x64-2.5.3.tgz", + "integrity": "sha512-337dNzh5yCdNCTk8kPfoU7jR3otibSlPDGW0vKZT97rKnQMb9tNdto3RtWoGPsQ8hKmlRZpojOJtmwjncq1MoA==", + "optional": true + }, + "@lmdb/lmdb-linux-arm": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm/-/lmdb-linux-arm-2.5.3.tgz", + "integrity": "sha512-mU2HFJDGwECkoD9dHQEfeTG5mp8hNS2BCfwoiOpVPMeapjYpQz9Uw3FkUjRZ4dGHWKbin40oWHuL0bk2bCx+Sg==", + "optional": true + }, + "@lmdb/lmdb-linux-arm64": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm64/-/lmdb-linux-arm64-2.5.3.tgz", + "integrity": "sha512-VJw60Mdgb4n+L0fO1PqfB0C7TyEQolJAC8qpqvG3JoQwvyOv6LH7Ib/WE3wxEW9nuHmVz9jkK7lk5HfWWgoO1Q==", + "optional": true + }, + "@lmdb/lmdb-linux-x64": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-x64/-/lmdb-linux-x64-2.5.3.tgz", + "integrity": "sha512-qaReO5aV8griBDsBr8uBF/faO3ieGjY1RY4p8JvTL6Mu1ylLrTVvOONqKFlNaCwrmUjWw5jnf7VafxDAeQHTow==", + "optional": true + }, + "@lmdb/lmdb-win32-x64": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-win32-x64/-/lmdb-win32-x64-2.5.3.tgz", + "integrity": "sha512-cK+Elf3RjEzrm3SerAhrFWL5oQAsZSJ/LmjL1joIpTfEP1etJJ9CTRvdaV6XLYAxaEkfdhk/9hOvHLbR9yIhCA==", + "optional": true + }, "ansi-styles": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", @@ -9188,9 +9153,9 @@ } }, "gatsby-core-utils": { - "version": "3.18.1", - "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.18.1.tgz", - "integrity": "sha512-sJTxRqizLxYy/tSFk0ydfqEZ3ek1So9HDVUa39F6Oi8XuPCBTFzaAooUvowKGneI5YUbdk5y4VO4ybwVUynntw==", + "version": "3.19.0", + "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.19.0.tgz", + "integrity": "sha512-cjXs9DsXkPZt+UdiLHxtq+rGMGVrcnM0KwkawlruvPchI7lqGNv9CScqlvYPxx1dBhu3zSZS26EBALMlFhyOJA==", "requires": { "@babel/runtime": "^7.15.4", "ci-info": "2.0.0", @@ -9210,15 +9175,15 @@ } }, "gatsby-plugin-utils": { - "version": "3.12.1", - "resolved": "https://registry.npmjs.org/gatsby-plugin-utils/-/gatsby-plugin-utils-3.12.1.tgz", - "integrity": "sha512-Rx7/MFtiJ+pyvPLqCPj5beyMN6qOx3EYMrOqmvrWJaM32nxMfHZqUqxGruufyFNVe6edfRuNuXcKaPXlGlyexA==", + "version": "3.13.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-utils/-/gatsby-plugin-utils-3.13.0.tgz", + "integrity": "sha512-iFFWswld/Nu8IrSCikZXC4/cud9txv3ikjkQiGLccJStS9VH2rSY4XEMNRqsKN9Spe3pFBOr/97yYUaPhZaQWg==", "requires": { "@babel/runtime": "^7.15.4", "@gatsbyjs/potrace": "^2.2.0", "fs-extra": "^10.1.0", - "gatsby-core-utils": "^3.18.1", - "gatsby-sharp": "^0.12.0", + "gatsby-core-utils": "^3.19.0", + "gatsby-sharp": "^0.13.0", "graphql-compose": "^9.0.7", "import-from": "^4.0.0", "joi": "^17.4.2", @@ -9228,18 +9193,18 @@ } }, "gatsby-sharp": { - "version": "0.12.0", - "resolved": "https://registry.npmjs.org/gatsby-sharp/-/gatsby-sharp-0.12.0.tgz", - "integrity": "sha512-dZa/AgxmPzD0vvROEZSuT3IdzAFTxnq1FfLTf9n3mywonvsKYc84zj6nf8TEzBrVrBFAaLvZek4NpVAKWGr4/w==", + "version": "0.13.0", + "resolved": "https://registry.npmjs.org/gatsby-sharp/-/gatsby-sharp-0.13.0.tgz", + "integrity": "sha512-dGuIuWP3rC7hXl/CgkHEY4WQEW+B9Rsg8uo6u+OumuLnLBxD4vTusEIGctVKzlyIxpENEQylQ7w1JKHX9fOy9g==", "requires": { "@types/sharp": "^0.30.0", "sharp": "^0.30.3" } }, "gatsby-telemetry": { - "version": "3.18.1", - "resolved": "https://registry.npmjs.org/gatsby-telemetry/-/gatsby-telemetry-3.18.1.tgz", - "integrity": "sha512-EjjsUv15BZGsmnPrOINRT/s7d18DTKokpp2NDZLm8uOs3MwVoLtUZ/BS7h2NTmgK+WN93q3bNYRkZgKgV9QC1A==", + "version": "3.19.0", + "resolved": "https://registry.npmjs.org/gatsby-telemetry/-/gatsby-telemetry-3.19.0.tgz", + "integrity": "sha512-5JQcTm2zCLWTmnXOdOe0gxuk7aRZSTaVrOrytMlwAR7trvtBC/fKqMhJHsYwl5uW9K06F59ZdkC0apJTAPkGww==", "requires": { "@babel/code-frame": "^7.14.0", "@babel/runtime": "^7.15.4", @@ -9249,7 +9214,7 @@ "boxen": "^4.2.0", "configstore": "^5.0.1", "fs-extra": "^10.1.0", - "gatsby-core-utils": "^3.18.1", + "gatsby-core-utils": "^3.19.0", "git-up": "^4.0.5", "is-docker": "^2.2.1", "lodash": "^4.17.21", @@ -9393,9 +9358,9 @@ } }, "gatsby-plugin-typescript": { - "version": "4.18.1", - "resolved": "https://registry.npmjs.org/gatsby-plugin-typescript/-/gatsby-plugin-typescript-4.18.1.tgz", - "integrity": "sha512-YUZcqL2WWiL2ngKe4A5FpTjCij2pLxiim+QaujeKfMjeWfHJ13uQ74HlxQXNpGAy4vMRBiU4CJH71RXgS1aoaA==", + "version": "4.19.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-typescript/-/gatsby-plugin-typescript-4.19.0.tgz", + "integrity": "sha512-f+aC4g/pTkUqFLTHo3OLdPQgdIFcEdoM5i8H4Pph5O4rmFXYHkkQKimRJmAz9cBb6/1wN7IBqI9m4k3AefaAjA==", "requires": { "@babel/core": "^7.15.5", "@babel/plugin-proposal-nullish-coalescing-operator": "^7.14.5", @@ -9403,22 +9368,58 @@ "@babel/plugin-proposal-optional-chaining": "^7.14.5", "@babel/preset-typescript": "^7.15.0", "@babel/runtime": "^7.15.4", - "babel-plugin-remove-graphql-queries": "^4.18.1" + "babel-plugin-remove-graphql-queries": "^4.19.0" }, "dependencies": { + "@lmdb/lmdb-darwin-arm64": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-arm64/-/lmdb-darwin-arm64-2.5.3.tgz", + "integrity": "sha512-RXwGZ/0eCqtCY8FLTM/koR60w+MXyvBUpToXiIyjOcBnC81tAlTUHrRUavCEWPI9zc9VgvpK3+cbumPyR8BSuA==", + "optional": true + }, + "@lmdb/lmdb-darwin-x64": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-x64/-/lmdb-darwin-x64-2.5.3.tgz", + "integrity": "sha512-337dNzh5yCdNCTk8kPfoU7jR3otibSlPDGW0vKZT97rKnQMb9tNdto3RtWoGPsQ8hKmlRZpojOJtmwjncq1MoA==", + "optional": true + }, + "@lmdb/lmdb-linux-arm": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm/-/lmdb-linux-arm-2.5.3.tgz", + "integrity": "sha512-mU2HFJDGwECkoD9dHQEfeTG5mp8hNS2BCfwoiOpVPMeapjYpQz9Uw3FkUjRZ4dGHWKbin40oWHuL0bk2bCx+Sg==", + "optional": true + }, + "@lmdb/lmdb-linux-arm64": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm64/-/lmdb-linux-arm64-2.5.3.tgz", + "integrity": "sha512-VJw60Mdgb4n+L0fO1PqfB0C7TyEQolJAC8qpqvG3JoQwvyOv6LH7Ib/WE3wxEW9nuHmVz9jkK7lk5HfWWgoO1Q==", + "optional": true + }, + "@lmdb/lmdb-linux-x64": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-x64/-/lmdb-linux-x64-2.5.3.tgz", + "integrity": "sha512-qaReO5aV8griBDsBr8uBF/faO3ieGjY1RY4p8JvTL6Mu1ylLrTVvOONqKFlNaCwrmUjWw5jnf7VafxDAeQHTow==", + "optional": true + }, + "@lmdb/lmdb-win32-x64": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-win32-x64/-/lmdb-win32-x64-2.5.3.tgz", + "integrity": "sha512-cK+Elf3RjEzrm3SerAhrFWL5oQAsZSJ/LmjL1joIpTfEP1etJJ9CTRvdaV6XLYAxaEkfdhk/9hOvHLbR9yIhCA==", + "optional": true + }, "babel-plugin-remove-graphql-queries": { - "version": "4.18.1", - "resolved": "https://registry.npmjs.org/babel-plugin-remove-graphql-queries/-/babel-plugin-remove-graphql-queries-4.18.1.tgz", - "integrity": "sha512-2I7qsm3pnyvrS6/Q9YuHK1SpfQLmrgYH/AjpnWpnLHee6SiVb5Te89iphhpBdycpBRVGWh04ram9+z/1rMaRYQ==", + "version": "4.19.0", + "resolved": "https://registry.npmjs.org/babel-plugin-remove-graphql-queries/-/babel-plugin-remove-graphql-queries-4.19.0.tgz", + "integrity": "sha512-VbxC7aZxdqQA0YiAcTD/djIW+6PP/JVODlRmCiqDyTbtI0zhE/Z6je1maCmC6J2LLBsKxhWT3UYTjRfLofK7sQ==", "requires": { "@babel/runtime": "^7.15.4", - "gatsby-core-utils": "^3.18.1" + "gatsby-core-utils": "^3.19.0" } }, "gatsby-core-utils": { - "version": "3.18.1", - "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.18.1.tgz", - "integrity": "sha512-sJTxRqizLxYy/tSFk0ydfqEZ3ek1So9HDVUa39F6Oi8XuPCBTFzaAooUvowKGneI5YUbdk5y4VO4ybwVUynntw==", + "version": "3.19.0", + "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.19.0.tgz", + "integrity": "sha512-cjXs9DsXkPZt+UdiLHxtq+rGMGVrcnM0KwkawlruvPchI7lqGNv9CScqlvYPxx1dBhu3zSZS26EBALMlFhyOJA==", "requires": { "@babel/runtime": "^7.15.4", "ci-info": "2.0.0", @@ -9554,9 +9555,9 @@ } }, "gatsby-react-router-scroll": { - "version": "5.18.0", - "resolved": "https://registry.npmjs.org/gatsby-react-router-scroll/-/gatsby-react-router-scroll-5.18.0.tgz", - "integrity": "sha512-/A1k468s6g713c8me5DuGiia8rPWLuwjITQ/pKqgJwioJVB6MnD/iBCbHUTzLHlNwZypAVdGHCN8fCIcPcMb6Q==", + "version": "5.19.0", + "resolved": "https://registry.npmjs.org/gatsby-react-router-scroll/-/gatsby-react-router-scroll-5.19.0.tgz", + "integrity": "sha512-tl1E2/ger3Aw5Vb5n53i9wCBePYqb2dBilO05pd6FfgKYJveFidQwGzzOn1F9smdWq+5c3KJSTlKJaNYPwn72w==", "requires": { "@babel/runtime": "^7.15.4", "prop-types": "^15.8.1" @@ -9607,9 +9608,9 @@ } }, "gatsby-script": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/gatsby-script/-/gatsby-script-1.3.0.tgz", - "integrity": "sha512-eCz6mcMFpB7kvpmyM7AtMTxNxzdrzPgt8GiuDKWFOlDgk1il6PUjO99QsL/cCeokmaiH/6egVnm9b33/x+sy9A==" + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/gatsby-script/-/gatsby-script-1.4.0.tgz", + "integrity": "sha512-+GmHTAfFq/sQWPvl1E8QvApRfxqqamhdqjFo4YloOQRAlDc+e3nMzTzvgj8z3IWqDqlvEfHMnlvQg60E5ThO/A==" }, "gatsby-sharp": { "version": "0.9.0", @@ -9889,9 +9890,9 @@ } }, "gatsby-worker": { - "version": "1.18.0", - "resolved": "https://registry.npmjs.org/gatsby-worker/-/gatsby-worker-1.18.0.tgz", - "integrity": "sha512-gNzqDrYFMXlfXCzdClORyDQWQZKTOF6nRUrhZT8PUxzQViO+DvnEKE3EAQvZizYKW1Hgw7cbiTtLG3qshkNepw==", + "version": "1.19.0", + "resolved": "https://registry.npmjs.org/gatsby-worker/-/gatsby-worker-1.19.0.tgz", + "integrity": "sha512-E0I51K5+rSpcUkv3wQ17FHZiicLeMH/Hz7p3oxlPCM43pcvsYJTa68Q0MqI1K6XV6Z8Nf48dERKMvHT0PnY4GQ==", "requires": { "@babel/core": "^7.15.5", "@babel/runtime": "^7.15.4" @@ -10470,6 +10471,11 @@ "space-separated-tokens": "^1.0.0" } }, + "he": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/he/-/he-1.2.0.tgz", + "integrity": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==" + }, "header-case": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/header-case/-/header-case-1.0.1.tgz", @@ -10540,16 +10546,6 @@ "toidentifier": "1.0.1" } }, - "http-proxy": { - "version": "1.18.1", - "resolved": "https://registry.npmjs.org/http-proxy/-/http-proxy-1.18.1.tgz", - "integrity": "sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==", - "requires": { - "eventemitter3": "^4.0.0", - "follow-redirects": "^1.0.0", - "requires-port": "^1.0.0" - } - }, "http2-wrapper": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/http2-wrapper/-/http2-wrapper-1.0.3.tgz", @@ -12129,6 +12125,15 @@ "resolved": "https://registry.npmjs.org/node-gyp-build-optional-packages/-/node-gyp-build-optional-packages-4.3.2.tgz", "integrity": "sha512-P5Ep3ISdmwcCkZIaBaQamQtWAG0facC89phWZgi5Z3hBU//J6S48OIvyZWSPPf6yQMklLZiqoosWAZUj7N+esA==" }, + "node-html-parser": { + "version": "5.3.3", + "resolved": "https://registry.npmjs.org/node-html-parser/-/node-html-parser-5.3.3.tgz", + "integrity": "sha512-ncg1033CaX9UexbyA7e1N0aAoAYRDiV8jkTvzEnfd1GDvzFdrsXLzR4p4ik8mwLgnaKP/jyUFWDy9q3jvRT2Jw==", + "requires": { + "css-select": "^4.2.1", + "he": "1.2.0" + } + }, "node-int64": { "version": "0.4.0", "resolved": "https://registry.npmjs.org/node-int64/-/node-int64-0.4.0.tgz", @@ -12974,14 +12979,14 @@ } }, "caniuse-lite": { - "version": "1.0.30001366", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001366.tgz", - "integrity": "sha512-yy7XLWCubDobokgzudpkKux8e0UOOnLHE6mlNJBzT3lZJz6s5atSEzjoL+fsCPkI0G8MP5uVdDx1ur/fXEWkZA==" + "version": "1.0.30001367", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001367.tgz", + "integrity": "sha512-XDgbeOHfifWV3GEES2B8rtsrADx4Jf+juKX2SICJcaUhjYBO3bR96kvEIHa15VU6ohtOhBZuPGGYGbXMRn0NCw==" }, "electron-to-chromium": { - "version": "1.4.188", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.188.tgz", - "integrity": "sha512-Zpa1+E+BVmD/orkyz1Z2dAT1XNUuVAHB3GrogfyY66dXN0ZWSsygI8+u6QTDai1ZayLcATDJpcv2Z2AZjEcr1A==" + "version": "1.4.194", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.194.tgz", + "integrity": "sha512-ola5UH0xAP1oYY0FFUsPvwtucEzCQHucXnT7PQ1zjHJMccZhCDktEugI++JUR3YuIs7Ff7afz+OVEhVAIMhLAQ==" } } }, @@ -13498,6 +13503,13 @@ "http-errors": "2.0.0", "iconv-lite": "0.4.24", "unpipe": "1.0.0" + }, + "dependencies": { + "bytes": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", + "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==" + } } }, "raw-loader": { @@ -14145,11 +14157,6 @@ "resolved": "https://registry.npmjs.org/require-package-name/-/require-package-name-2.0.1.tgz", "integrity": "sha512-uuoJ1hU/k6M0779t3VMVIYpb2VMJk05cehCaABFhXaibcbvfgR8wKiozLjVFSzJPmQMRqIcO0HMyTFqfV09V6Q==" }, - "requires-port": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz", - "integrity": "sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==" - }, "resolve": { "version": "1.20.0", "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.20.0.tgz", @@ -15945,9 +15952,9 @@ "integrity": "sha1-j97XMk7G6IoP+LkF58CYzcCG1UQ=" }, "update-browserslist-db": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.4.tgz", - "integrity": "sha512-jnmO2BEGUjsMOe/Fg9u0oczOe/ppIDZPebzccl1yDWGLFP16Pa1/RM5wEoKYPG2zstNcDuAStejyxsOuKINdGA==", + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.5.tgz", + "integrity": "sha512-dteFFpCyvuDdr9S/ff1ISkKt/9YZxKjI9WlRR99c180GaztJtRa/fn18FdxGVKVsnPY7/a/FDN68mcvUmP4U7Q==", "requires": { "escalade": "^3.1.1", "picocolors": "^1.0.0" diff --git a/starters/gatsby-starter-blog-theme-core/package.json b/starters/gatsby-starter-blog-theme-core/package.json index 9f0a623046ff4..5d0303683440a 100644 --- a/starters/gatsby-starter-blog-theme-core/package.json +++ b/starters/gatsby-starter-blog-theme-core/package.json @@ -11,7 +11,7 @@ "license": "0BSD", "dependencies": { "@mdx-js/react": "^1.6.22", - "gatsby": "^4.18.2", + "gatsby": "^4.19.0", "gatsby-theme-blog-core": "^4.0.0", "react": "^18.1.0", "react-dom": "^18.1.0" diff --git a/starters/gatsby-starter-blog-theme/package-lock.json b/starters/gatsby-starter-blog-theme/package-lock.json index c92f5408b13fc..e7affee8950ef 100644 --- a/starters/gatsby-starter-blog-theme/package-lock.json +++ b/starters/gatsby-starter-blog-theme/package-lock.json @@ -102,9 +102,9 @@ } }, "@babel/eslint-parser": { - "version": "7.18.2", - "resolved": "https://registry.npmjs.org/@babel/eslint-parser/-/eslint-parser-7.18.2.tgz", - "integrity": "sha512-oFQYkE8SuH14+uR51JVAmdqwKYXGRjEXx7s+WiagVjqQ+HPE+nnwyF2qlVG8evUsUHmPcA+6YXMEDbIhEyQc5A==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/eslint-parser/-/eslint-parser-7.18.9.tgz", + "integrity": "sha512-KzSGpMBggz4fKbRbWLNyPVTuQr6cmCcBhOyXTw/fieOVaw5oYAwcAj4a7UKcDYCPxQq+CG1NCDZH9e2JTXquiQ==", "requires": { "eslint-scope": "^5.1.1", "eslint-visitor-keys": "^2.1.0", @@ -614,9 +614,9 @@ }, "dependencies": { "@babel/helper-plugin-utils": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.18.6.tgz", - "integrity": "sha512-gvZnm1YAAxh13eJdkb9EWHBnF3eAub3XTLCZEehHT2kWxiKVRL64+ae5Y6Ivne0mVHmMYKT+xWgZO+gQhuLUBg==" + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.18.9.tgz", + "integrity": "sha512-aBXPT3bmtLryXaoJLyYPXPlSD4p1ld9aYeR+sJNOZjJJGiOpb+fKfh3NkcCu7J54nUJwCERPBExCCpyCOHnu/w==" } } }, @@ -709,9 +709,9 @@ }, "dependencies": { "@babel/helper-plugin-utils": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.18.6.tgz", - "integrity": "sha512-gvZnm1YAAxh13eJdkb9EWHBnF3eAub3XTLCZEehHT2kWxiKVRL64+ae5Y6Ivne0mVHmMYKT+xWgZO+gQhuLUBg==" + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.18.9.tgz", + "integrity": "sha512-aBXPT3bmtLryXaoJLyYPXPlSD4p1ld9aYeR+sJNOZjJJGiOpb+fKfh3NkcCu7J54nUJwCERPBExCCpyCOHnu/w==" } } }, @@ -807,18 +807,18 @@ } }, "@babel/plugin-transform-flow-strip-types": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.18.6.tgz", - "integrity": "sha512-wE0xtA7csz+hw4fKPwxmu5jnzAsXPIO57XnRwzXP3T19jWh1BODnPGoG9xKYwvAwusP7iUktHayRFbMPGtODaQ==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.18.9.tgz", + "integrity": "sha512-+G6rp2zRuOAInY5wcggsx4+QVao1qPM0osC9fTUVlAV3zOrzTCnrMAFVnR6+a3T8wz1wFIH7KhYMcMB3u1n80A==", "requires": { - "@babel/helper-plugin-utils": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.9", "@babel/plugin-syntax-flow": "^7.18.6" }, "dependencies": { "@babel/helper-plugin-utils": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.18.6.tgz", - "integrity": "sha512-gvZnm1YAAxh13eJdkb9EWHBnF3eAub3XTLCZEehHT2kWxiKVRL64+ae5Y6Ivne0mVHmMYKT+xWgZO+gQhuLUBg==" + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.18.9.tgz", + "integrity": "sha512-aBXPT3bmtLryXaoJLyYPXPlSD4p1ld9aYeR+sJNOZjJJGiOpb+fKfh3NkcCu7J54nUJwCERPBExCCpyCOHnu/w==" } } }, @@ -993,12 +993,12 @@ } }, "@babel/plugin-transform-runtime": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.18.6.tgz", - "integrity": "sha512-8uRHk9ZmRSnWqUgyae249EJZ94b0yAGLBIqzZzl+0iEdbno55Pmlt/32JZsHwXD9k/uZj18Aqqk35wBX4CBTXA==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.18.9.tgz", + "integrity": "sha512-wS8uJwBt7/b/mzE13ktsJdmS4JP/j7PQSaADtnb4I2wL0zK51MQ0pmF8/Jy0wUIS96fr+fXT6S/ifiPXnvrlSg==", "requires": { "@babel/helper-module-imports": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.9", "babel-plugin-polyfill-corejs2": "^0.3.1", "babel-plugin-polyfill-corejs3": "^0.5.2", "babel-plugin-polyfill-regenerator": "^0.3.1", @@ -1014,9 +1014,9 @@ } }, "@babel/helper-plugin-utils": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.18.6.tgz", - "integrity": "sha512-gvZnm1YAAxh13eJdkb9EWHBnF3eAub3XTLCZEehHT2kWxiKVRL64+ae5Y6Ivne0mVHmMYKT+xWgZO+gQhuLUBg==" + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.18.9.tgz", + "integrity": "sha512-aBXPT3bmtLryXaoJLyYPXPlSD4p1ld9aYeR+sJNOZjJJGiOpb+fKfh3NkcCu7J54nUJwCERPBExCCpyCOHnu/w==" }, "@babel/helper-validator-identifier": { "version": "7.18.6", @@ -1024,9 +1024,9 @@ "integrity": "sha512-MmetCkz9ej86nJQV+sFCxoGGrUbU3q02kgLciwkrt9QqEB7cP39oKEY0PakknEO0Gu20SskMRi+AYZ3b1TpN9g==" }, "@babel/types": { - "version": "7.18.8", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.8.tgz", - "integrity": "sha512-qwpdsmraq0aJ3osLJRApsc2ouSJCdnMeZwB0DhbtHAtRpZNZCdlbRnHIgcRKzdE1g0iOGg644fzjOBcdOz9cPw==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.9.tgz", + "integrity": "sha512-WwMLAg2MvJmt/rKEVQBBhIVffMmnilX4oe0sRe7iPOHIGsqpruFHHdrfj4O1CMMtgMtCU4oPafZjDPCRgO57Wg==", "requires": { "@babel/helper-validator-identifier": "^7.18.6", "to-fast-properties": "^2.0.0" @@ -1099,11 +1099,11 @@ } }, "@babel/generator": { - "version": "7.18.7", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.18.7.tgz", - "integrity": "sha512-shck+7VLlY72a2w9c3zYWuE1pwOKEiQHV7GTUbSnhyl5eu3i04t30tBY82ZRWrDfo3gkakCFtevExnxbkf2a3A==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.18.9.tgz", + "integrity": "sha512-wt5Naw6lJrL1/SGkipMiFxJjtyczUWTP38deiP1PO60HsBjDeKk08CGC3S8iVuvf0FmTdgKwU1KIXzSKL1G0Ug==", "requires": { - "@babel/types": "^7.18.7", + "@babel/types": "^7.18.9", "@jridgewell/gen-mapping": "^0.3.2", "jsesc": "^2.5.1" } @@ -1117,31 +1117,31 @@ } }, "@babel/helper-create-class-features-plugin": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.18.6.tgz", - "integrity": "sha512-YfDzdnoxHGV8CzqHGyCbFvXg5QESPFkXlHtvdCkesLjjVMT2Adxe4FGUR5ChIb3DxSaXO12iIOCWoXdsUVwnqw==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.18.9.tgz", + "integrity": "sha512-WvypNAYaVh23QcjpMR24CwZY2Nz6hqdOcFdPbNpV56hL5H6KiFheO7Xm1aPdlLQ7d5emYZX7VZwPp9x3z+2opw==", "requires": { "@babel/helper-annotate-as-pure": "^7.18.6", - "@babel/helper-environment-visitor": "^7.18.6", - "@babel/helper-function-name": "^7.18.6", - "@babel/helper-member-expression-to-functions": "^7.18.6", + "@babel/helper-environment-visitor": "^7.18.9", + "@babel/helper-function-name": "^7.18.9", + "@babel/helper-member-expression-to-functions": "^7.18.9", "@babel/helper-optimise-call-expression": "^7.18.6", - "@babel/helper-replace-supers": "^7.18.6", + "@babel/helper-replace-supers": "^7.18.9", "@babel/helper-split-export-declaration": "^7.18.6" } }, "@babel/helper-environment-visitor": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.18.6.tgz", - "integrity": "sha512-8n6gSfn2baOY+qlp+VSzsosjCVGFqWKmDF0cCWOybh52Dw3SEyoWR1KrhMJASjLwIEkkAufZ0xvr+SxLHSpy2Q==" + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.18.9.tgz", + "integrity": "sha512-3r/aACDJ3fhQ/EVgFy0hpj8oHyHpQc+LPtJoY9SzTThAsStm4Ptegq92vqKoE3vD706ZVFWITnMnxucw+S9Ipg==" }, "@babel/helper-function-name": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.18.6.tgz", - "integrity": "sha512-0mWMxV1aC97dhjCah5U5Ua7668r5ZmSC2DLfH2EZnf9c3/dHZKiFa5pRLMH5tjSl471tY6496ZWk/kjNONBxhw==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.18.9.tgz", + "integrity": "sha512-fJgWlZt7nxGksJS9a0XdSaI4XvpExnNIgRP+rVefWh5U7BL8pPuir6SJUmFKRfjWQ51OtWSzwOxhaH/EBWWc0A==", "requires": { "@babel/template": "^7.18.6", - "@babel/types": "^7.18.6" + "@babel/types": "^7.18.9" } }, "@babel/helper-hoist-variables": { @@ -1153,11 +1153,11 @@ } }, "@babel/helper-member-expression-to-functions": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.18.6.tgz", - "integrity": "sha512-CeHxqwwipekotzPDUuJOfIMtcIHBuc7WAzLmTYWctVigqS5RktNMQ5bEwQSuGewzYnCtTWa3BARXeiLxDTv+Ng==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.18.9.tgz", + "integrity": "sha512-RxifAh2ZoVU67PyKIO4AMi1wTenGfMR/O/ae0CCRqwgBAt5v7xjdtRw7UoSbsreKrQn5t7r89eruK/9JjYHuDg==", "requires": { - "@babel/types": "^7.18.6" + "@babel/types": "^7.18.9" } }, "@babel/helper-optimise-call-expression": { @@ -1169,20 +1169,20 @@ } }, "@babel/helper-plugin-utils": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.18.6.tgz", - "integrity": "sha512-gvZnm1YAAxh13eJdkb9EWHBnF3eAub3XTLCZEehHT2kWxiKVRL64+ae5Y6Ivne0mVHmMYKT+xWgZO+gQhuLUBg==" + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.18.9.tgz", + "integrity": "sha512-aBXPT3bmtLryXaoJLyYPXPlSD4p1ld9aYeR+sJNOZjJJGiOpb+fKfh3NkcCu7J54nUJwCERPBExCCpyCOHnu/w==" }, "@babel/helper-replace-supers": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.18.6.tgz", - "integrity": "sha512-fTf7zoXnUGl9gF25fXCWE26t7Tvtyn6H4hkLSYhATwJvw2uYxd3aoXplMSe0g9XbwK7bmxNes7+FGO0rB/xC0g==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.18.9.tgz", + "integrity": "sha512-dNsWibVI4lNT6HiuOIBr1oyxo40HvIVmbwPUm3XZ7wMh4k2WxrxTqZwSqw/eEmXDS9np0ey5M2bz9tBmO9c+YQ==", "requires": { - "@babel/helper-environment-visitor": "^7.18.6", - "@babel/helper-member-expression-to-functions": "^7.18.6", + "@babel/helper-environment-visitor": "^7.18.9", + "@babel/helper-member-expression-to-functions": "^7.18.9", "@babel/helper-optimise-call-expression": "^7.18.6", - "@babel/traverse": "^7.18.6", - "@babel/types": "^7.18.6" + "@babel/traverse": "^7.18.9", + "@babel/types": "^7.18.9" } }, "@babel/helper-split-export-declaration": { @@ -1209,9 +1209,9 @@ } }, "@babel/parser": { - "version": "7.18.8", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.18.8.tgz", - "integrity": "sha512-RSKRfYX20dyH+elbJK2uqAkVyucL+xXzhqlMD5/ZXx+dAAwpyB7HsvnHe/ZUGOF+xLr5Wx9/JoXVTj6BQE2/oA==" + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.18.9.tgz", + "integrity": "sha512-9uJveS9eY9DJ0t64YbIBZICtJy8a5QrDEVdiLCG97fVLpDTpGX7t8mMSb6OWw6Lrnjqj4O8zwjELX3dhoMgiBg==" }, "@babel/template": { "version": "7.18.6", @@ -1224,26 +1224,26 @@ } }, "@babel/traverse": { - "version": "7.18.8", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.18.8.tgz", - "integrity": "sha512-UNg/AcSySJYR/+mIcJQDCv00T+AqRO7j/ZEJLzpaYtgM48rMg5MnkJgyNqkzo88+p4tfRvZJCEiwwfG6h4jkRg==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.18.9.tgz", + "integrity": "sha512-LcPAnujXGwBgv3/WHv01pHtb2tihcyW1XuL9wd7jqh1Z8AQkTd+QVjMrMijrln0T7ED3UXLIy36P9Ao7W75rYg==", "requires": { "@babel/code-frame": "^7.18.6", - "@babel/generator": "^7.18.7", - "@babel/helper-environment-visitor": "^7.18.6", - "@babel/helper-function-name": "^7.18.6", + "@babel/generator": "^7.18.9", + "@babel/helper-environment-visitor": "^7.18.9", + "@babel/helper-function-name": "^7.18.9", "@babel/helper-hoist-variables": "^7.18.6", "@babel/helper-split-export-declaration": "^7.18.6", - "@babel/parser": "^7.18.8", - "@babel/types": "^7.18.8", + "@babel/parser": "^7.18.9", + "@babel/types": "^7.18.9", "debug": "^4.1.0", "globals": "^11.1.0" } }, "@babel/types": { - "version": "7.18.8", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.8.tgz", - "integrity": "sha512-qwpdsmraq0aJ3osLJRApsc2ouSJCdnMeZwB0DhbtHAtRpZNZCdlbRnHIgcRKzdE1g0iOGg644fzjOBcdOz9cPw==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.9.tgz", + "integrity": "sha512-WwMLAg2MvJmt/rKEVQBBhIVffMmnilX4oe0sRe7iPOHIGsqpruFHHdrfj4O1CMMtgMtCU4oPafZjDPCRgO57Wg==", "requires": { "@babel/helper-validator-identifier": "^7.18.6", "to-fast-properties": "^2.0.0" @@ -1410,9 +1410,9 @@ }, "dependencies": { "@babel/helper-plugin-utils": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.18.6.tgz", - "integrity": "sha512-gvZnm1YAAxh13eJdkb9EWHBnF3eAub3XTLCZEehHT2kWxiKVRL64+ae5Y6Ivne0mVHmMYKT+xWgZO+gQhuLUBg==" + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.18.9.tgz", + "integrity": "sha512-aBXPT3bmtLryXaoJLyYPXPlSD4p1ld9aYeR+sJNOZjJJGiOpb+fKfh3NkcCu7J54nUJwCERPBExCCpyCOHnu/w==" }, "@babel/helper-validator-option": { "version": "7.18.6", @@ -1430,9 +1430,9 @@ } }, "@babel/runtime-corejs3": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/runtime-corejs3/-/runtime-corejs3-7.18.6.tgz", - "integrity": "sha512-cOu5wH2JFBgMjje+a+fz2JNIWU4GzYpl05oSob3UDvBEh6EuIn+TXFHMmBbhSb+k/4HMzgKCQfEEDArAWNF9Cw==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/runtime-corejs3/-/runtime-corejs3-7.18.9.tgz", + "integrity": "sha512-qZEWeccZCrHA2Au4/X05QW5CMdm4VjUDCrGq5gf1ZDcM4hRqreKrtwAn7yci9zfgAS9apvnsFXiGBHBAxZdK9A==", "requires": { "core-js-pure": "^3.20.2", "regenerator-runtime": "^0.13.4" @@ -1711,210 +1711,56 @@ } }, "@gatsbyjs/parcel-namer-relative-to-cwd": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/@gatsbyjs/parcel-namer-relative-to-cwd/-/parcel-namer-relative-to-cwd-1.3.2.tgz", - "integrity": "sha512-jiYGiq8Zk21x2IIWbsLQ0GqgGJyKjj+/4jYwr5msD5ORB/JAZLk4IDrMKZ9rFXkNPq/bRV57ub0k/NvRMELfLQ==", + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/@gatsbyjs/parcel-namer-relative-to-cwd/-/parcel-namer-relative-to-cwd-1.4.0.tgz", + "integrity": "sha512-oXhiaPtYTGYqGZlazYRUabWVHWx5z6sAyBVLhUnpsKcBsK815cET+mjeWDKpmvJmFTKHC72Bvy1WIEnW3++YxA==", "requires": { "@babel/runtime": "^7.18.0", "@parcel/namer-default": "2.6.2", - "@parcel/plugin": "2.6.0", - "gatsby-core-utils": "^3.18.1" + "@parcel/plugin": "2.6.2", + "gatsby-core-utils": "^3.19.0" }, "dependencies": { "@lmdb/lmdb-darwin-arm64": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-arm64/-/lmdb-darwin-arm64-2.5.2.tgz", - "integrity": "sha512-+F8ioQIUN68B4UFiIBYu0QQvgb9FmlKw2ctQMSBfW2QBrZIxz9vD9jCGqTCPqZBRbPHAS/vG1zSXnKqnS2ch/A==", + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-arm64/-/lmdb-darwin-arm64-2.5.3.tgz", + "integrity": "sha512-RXwGZ/0eCqtCY8FLTM/koR60w+MXyvBUpToXiIyjOcBnC81tAlTUHrRUavCEWPI9zc9VgvpK3+cbumPyR8BSuA==", "optional": true }, "@lmdb/lmdb-darwin-x64": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-x64/-/lmdb-darwin-x64-2.5.2.tgz", - "integrity": "sha512-KvPH56KRLLx4KSfKBx0m1r7GGGUMXm0jrKmNE7plbHlesZMuPJICtn07HYgQhj1LNsK7Yqwuvnqh1QxhJnF1EA==", + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-x64/-/lmdb-darwin-x64-2.5.3.tgz", + "integrity": "sha512-337dNzh5yCdNCTk8kPfoU7jR3otibSlPDGW0vKZT97rKnQMb9tNdto3RtWoGPsQ8hKmlRZpojOJtmwjncq1MoA==", "optional": true }, "@lmdb/lmdb-linux-arm": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm/-/lmdb-linux-arm-2.5.2.tgz", - "integrity": "sha512-5kQAP21hAkfW5Bl+e0P57dV4dGYnkNIpR7f/GAh6QHlgXx+vp/teVj4PGRZaKAvt0GX6++N6hF8NnGElLDuIDw==", + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm/-/lmdb-linux-arm-2.5.3.tgz", + "integrity": "sha512-mU2HFJDGwECkoD9dHQEfeTG5mp8hNS2BCfwoiOpVPMeapjYpQz9Uw3FkUjRZ4dGHWKbin40oWHuL0bk2bCx+Sg==", "optional": true }, "@lmdb/lmdb-linux-arm64": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm64/-/lmdb-linux-arm64-2.5.2.tgz", - "integrity": "sha512-aLl89VHL/wjhievEOlPocoefUyWdvzVrcQ/MHQYZm2JfV1jUsrbr/ZfkPPUFvZBf+VSE+Q0clWs9l29PCX1hTQ==", + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm64/-/lmdb-linux-arm64-2.5.3.tgz", + "integrity": "sha512-VJw60Mdgb4n+L0fO1PqfB0C7TyEQolJAC8qpqvG3JoQwvyOv6LH7Ib/WE3wxEW9nuHmVz9jkK7lk5HfWWgoO1Q==", "optional": true }, "@lmdb/lmdb-linux-x64": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-x64/-/lmdb-linux-x64-2.5.2.tgz", - "integrity": "sha512-xUdUfwDJLGjOUPH3BuPBt0NlIrR7f/QHKgu3GZIXswMMIihAekj2i97oI0iWG5Bok/b+OBjHPfa8IU9velnP/Q==", + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-x64/-/lmdb-linux-x64-2.5.3.tgz", + "integrity": "sha512-qaReO5aV8griBDsBr8uBF/faO3ieGjY1RY4p8JvTL6Mu1ylLrTVvOONqKFlNaCwrmUjWw5jnf7VafxDAeQHTow==", "optional": true }, "@lmdb/lmdb-win32-x64": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-win32-x64/-/lmdb-win32-x64-2.5.2.tgz", - "integrity": "sha512-zrBczSbXKxEyK2ijtbRdICDygRqWSRPpZMN5dD1T8VMEW5RIhIbwFWw2phDRXuBQdVDpSjalCIUMWMV2h3JaZA==", + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-win32-x64/-/lmdb-win32-x64-2.5.3.tgz", + "integrity": "sha512-cK+Elf3RjEzrm3SerAhrFWL5oQAsZSJ/LmjL1joIpTfEP1etJJ9CTRvdaV6XLYAxaEkfdhk/9hOvHLbR9yIhCA==", "optional": true }, - "@parcel/cache": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/@parcel/cache/-/cache-2.6.2.tgz", - "integrity": "sha512-hhJ6AsEGybeQZd9c/GYqfcKTgZKQXu3Xih6TlnP3gdR3KZoJOnb40ovHD1yYg4COvfcXThKP1cVJ18J6rcv3IA==", - "requires": { - "@parcel/fs": "2.6.2", - "@parcel/logger": "2.6.2", - "@parcel/utils": "2.6.2", - "lmdb": "2.5.2" - } - }, - "@parcel/codeframe": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/@parcel/codeframe/-/codeframe-2.6.2.tgz", - "integrity": "sha512-oFlHr6HCaYYsB4SHkU+gn9DKtbzvv3/4NdwMX0/6NAKyYVI7inEsXyPGw2Bbd2ZCFatW9QJZUETF0etvh5AEfQ==", - "requires": { - "chalk": "^4.1.0" - } - }, - "@parcel/diagnostic": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/@parcel/diagnostic/-/diagnostic-2.6.2.tgz", - "integrity": "sha512-3ODSBkKVihENU763z1/1DhGAWFhYWRxOCOShC72KXp+GFnSgGiBsxclu8NBa/N948Rzp8lqQI8U1nLcKkh0O/w==", - "requires": { - "@mischnic/json-sourcemap": "^0.1.0", - "nullthrows": "^1.1.1" - } - }, - "@parcel/events": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/@parcel/events/-/events-2.6.2.tgz", - "integrity": "sha512-IaCjOeA5ercdFVi1EZOmUHhGfIysmCUgc2Th9hMugSFO0I3GzRsBcAdP6XPfWm+TV6sQ/qZRfdk/drUxoAupnw==" - }, - "@parcel/fs": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/@parcel/fs/-/fs-2.6.2.tgz", - "integrity": "sha512-mIhqdF3tjgeoIGqW7Nc/xfM2ClID7o8livwUe5lpQEP+ZaIBiMigXs6ckv3WToCACK+3uylrSD2A/HmlhrxMqQ==", - "requires": { - "@parcel/fs-search": "2.6.2", - "@parcel/types": "2.6.2", - "@parcel/utils": "2.6.2", - "@parcel/watcher": "^2.0.0", - "@parcel/workers": "2.6.2" - } - }, - "@parcel/fs-search": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/@parcel/fs-search/-/fs-search-2.6.2.tgz", - "integrity": "sha512-4STid1zqtGnmGjHD/2TG2g/zPDiCTtE3IAS24QYH3eiUAz2uoKGgEqd2tZbZ2yI96jtCuIhC1bzVu8Hbykls7w==", - "requires": { - "detect-libc": "^1.0.3" - } - }, - "@parcel/hash": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/@parcel/hash/-/hash-2.6.2.tgz", - "integrity": "sha512-tFB+cJU1Wqag6WyJgsmx3nx+xhmjcNZqtWh/MtK1lHNnZdDRk6bjr7SapnygBwruz+SmSt5bbdVThcpk2dRCcA==", - "requires": { - "detect-libc": "^1.0.3", - "xxhash-wasm": "^0.4.2" - } - }, - "@parcel/logger": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/@parcel/logger/-/logger-2.6.2.tgz", - "integrity": "sha512-Sz5YGCj1DbEiX0/G8Uw97LLZ0uEK+qtWcRAkHNpJpeMiSqDiRNevxXltz42EcLo+oCh4d4wyiVzwi9mNwzhS/Q==", - "requires": { - "@parcel/diagnostic": "2.6.2", - "@parcel/events": "2.6.2" - } - }, - "@parcel/markdown-ansi": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/@parcel/markdown-ansi/-/markdown-ansi-2.6.2.tgz", - "integrity": "sha512-N/h9J4eibhc+B+krzvPMzFUWL37GudBIZBa7XSLkcuH6MnYYfh6rrMvhIyyESwk6VkcZNVzAeZrGQqxEs0dHDQ==", - "requires": { - "chalk": "^4.1.0" - } - }, - "@parcel/namer-default": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/@parcel/namer-default/-/namer-default-2.6.2.tgz", - "integrity": "sha512-mp7bx/BQaIuohmZP0uE+gAmDBzzH0Yu8F4yCtE611lc6i0mou+nWRhzyKLNC/ieuI8DB3BFh2QQKeTxJn4W0qg==", - "requires": { - "@parcel/diagnostic": "2.6.2", - "@parcel/plugin": "2.6.2", - "nullthrows": "^1.1.1" - }, - "dependencies": { - "@parcel/plugin": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/@parcel/plugin/-/plugin-2.6.2.tgz", - "integrity": "sha512-wbbWsM23Pr+8xtLSvf+UopXdVYlpKCCx6PuuZaZcKo+9IcDCWoGXD4M8Kkz14qBmkFn5uM00mULUqmVdSibB2w==", - "requires": { - "@parcel/types": "2.6.2" - } - } - } - }, - "@parcel/package-manager": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/@parcel/package-manager/-/package-manager-2.6.2.tgz", - "integrity": "sha512-xGMqTgnwTE3rgzYwUZMKxR8fzmP5iSYz/gj2H8FR3pEmwh/8xCMtNjTSth+hPVGuqgRZ6JxwpfdY/fXdZ61ViQ==", - "requires": { - "@parcel/diagnostic": "2.6.2", - "@parcel/fs": "2.6.2", - "@parcel/logger": "2.6.2", - "@parcel/types": "2.6.2", - "@parcel/utils": "2.6.2", - "@parcel/workers": "2.6.2", - "semver": "^5.7.1" - } - }, - "@parcel/types": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/@parcel/types/-/types-2.6.2.tgz", - "integrity": "sha512-MV8BFpCIs2jMUvK2RHqzkoiuOQ//JIbrD1zocA2YRW3zuPL/iABvbAABJoXpoPCKikVWOoCWASgBfWQo26VvJQ==", - "requires": { - "@parcel/cache": "2.6.2", - "@parcel/diagnostic": "2.6.2", - "@parcel/fs": "2.6.2", - "@parcel/package-manager": "2.6.2", - "@parcel/source-map": "^2.0.0", - "@parcel/workers": "2.6.2", - "utility-types": "^3.10.0" - } - }, - "@parcel/utils": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/@parcel/utils/-/utils-2.6.2.tgz", - "integrity": "sha512-Ug7hpRxjgbY5AopW55nY7MmGMVmwmN+ihfCmxJkBUoESTG/3iq8uME7GjyOgW5DkQc2K7q62i8y8N0wCJT1u4Q==", - "requires": { - "@parcel/codeframe": "2.6.2", - "@parcel/diagnostic": "2.6.2", - "@parcel/hash": "2.6.2", - "@parcel/logger": "2.6.2", - "@parcel/markdown-ansi": "2.6.2", - "@parcel/source-map": "^2.0.0", - "chalk": "^4.1.0" - } - }, - "@parcel/workers": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/@parcel/workers/-/workers-2.6.2.tgz", - "integrity": "sha512-wBgUjJQm+lDd12fPRUmk09+ujTA9DgwPdqylSFK0OtI/yT6A+2kArUqjp8IwWo2tCJXoMzXBne2XQIWKqMiN4Q==", - "requires": { - "@parcel/diagnostic": "2.6.2", - "@parcel/logger": "2.6.2", - "@parcel/types": "2.6.2", - "@parcel/utils": "2.6.2", - "chrome-trace-event": "^1.0.2", - "nullthrows": "^1.1.1" - } - }, "gatsby-core-utils": { - "version": "3.18.1", - "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.18.1.tgz", - "integrity": "sha512-sJTxRqizLxYy/tSFk0ydfqEZ3ek1So9HDVUa39F6Oi8XuPCBTFzaAooUvowKGneI5YUbdk5y4VO4ybwVUynntw==", + "version": "3.19.0", + "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.19.0.tgz", + "integrity": "sha512-cjXs9DsXkPZt+UdiLHxtq+rGMGVrcnM0KwkawlruvPchI7lqGNv9CScqlvYPxx1dBhu3zSZS26EBALMlFhyOJA==", "requires": { "@babel/runtime": "^7.15.4", "ci-info": "2.0.0", @@ -1931,62 +1777,6 @@ "resolve-from": "^5.0.0", "tmp": "^0.2.1", "xdg-basedir": "^4.0.0" - }, - "dependencies": { - "@lmdb/lmdb-darwin-arm64": { - "version": "2.5.3", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-arm64/-/lmdb-darwin-arm64-2.5.3.tgz", - "integrity": "sha512-RXwGZ/0eCqtCY8FLTM/koR60w+MXyvBUpToXiIyjOcBnC81tAlTUHrRUavCEWPI9zc9VgvpK3+cbumPyR8BSuA==", - "optional": true - }, - "@lmdb/lmdb-darwin-x64": { - "version": "2.5.3", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-x64/-/lmdb-darwin-x64-2.5.3.tgz", - "integrity": "sha512-337dNzh5yCdNCTk8kPfoU7jR3otibSlPDGW0vKZT97rKnQMb9tNdto3RtWoGPsQ8hKmlRZpojOJtmwjncq1MoA==", - "optional": true - }, - "@lmdb/lmdb-linux-arm": { - "version": "2.5.3", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm/-/lmdb-linux-arm-2.5.3.tgz", - "integrity": "sha512-mU2HFJDGwECkoD9dHQEfeTG5mp8hNS2BCfwoiOpVPMeapjYpQz9Uw3FkUjRZ4dGHWKbin40oWHuL0bk2bCx+Sg==", - "optional": true - }, - "@lmdb/lmdb-linux-arm64": { - "version": "2.5.3", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm64/-/lmdb-linux-arm64-2.5.3.tgz", - "integrity": "sha512-VJw60Mdgb4n+L0fO1PqfB0C7TyEQolJAC8qpqvG3JoQwvyOv6LH7Ib/WE3wxEW9nuHmVz9jkK7lk5HfWWgoO1Q==", - "optional": true - }, - "@lmdb/lmdb-linux-x64": { - "version": "2.5.3", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-x64/-/lmdb-linux-x64-2.5.3.tgz", - "integrity": "sha512-qaReO5aV8griBDsBr8uBF/faO3ieGjY1RY4p8JvTL6Mu1ylLrTVvOONqKFlNaCwrmUjWw5jnf7VafxDAeQHTow==", - "optional": true - }, - "@lmdb/lmdb-win32-x64": { - "version": "2.5.3", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-win32-x64/-/lmdb-win32-x64-2.5.3.tgz", - "integrity": "sha512-cK+Elf3RjEzrm3SerAhrFWL5oQAsZSJ/LmjL1joIpTfEP1etJJ9CTRvdaV6XLYAxaEkfdhk/9hOvHLbR9yIhCA==", - "optional": true - }, - "lmdb": { - "version": "2.5.3", - "resolved": "https://registry.npmjs.org/lmdb/-/lmdb-2.5.3.tgz", - "integrity": "sha512-iBA0cb13CobBSoGJLfZgnrykLlfJipDAnvtf+YwIqqzBEsTeQYsXrHaSBkaHd5wCWeabwrNvhjZoFMUrlo+eLw==", - "requires": { - "@lmdb/lmdb-darwin-arm64": "2.5.3", - "@lmdb/lmdb-darwin-x64": "2.5.3", - "@lmdb/lmdb-linux-arm": "2.5.3", - "@lmdb/lmdb-linux-arm64": "2.5.3", - "@lmdb/lmdb-linux-x64": "2.5.3", - "@lmdb/lmdb-win32-x64": "2.5.3", - "msgpackr": "^1.5.4", - "node-addon-api": "^4.3.0", - "node-gyp-build-optional-packages": "5.0.3", - "ordered-binary": "^1.2.4", - "weak-lru-cache": "^1.2.2" - } - } } }, "got": { @@ -2008,16 +1798,16 @@ } }, "lmdb": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/lmdb/-/lmdb-2.5.2.tgz", - "integrity": "sha512-V5V5Xa2Hp9i2XsbDALkBTeHXnBXh/lEmk9p22zdr7jtuOIY9TGhjK6vAvTpOOx9IKU4hJkRWZxn/HsvR1ELLtA==", + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/lmdb/-/lmdb-2.5.3.tgz", + "integrity": "sha512-iBA0cb13CobBSoGJLfZgnrykLlfJipDAnvtf+YwIqqzBEsTeQYsXrHaSBkaHd5wCWeabwrNvhjZoFMUrlo+eLw==", "requires": { - "@lmdb/lmdb-darwin-arm64": "2.5.2", - "@lmdb/lmdb-darwin-x64": "2.5.2", - "@lmdb/lmdb-linux-arm": "2.5.2", - "@lmdb/lmdb-linux-arm64": "2.5.2", - "@lmdb/lmdb-linux-x64": "2.5.2", - "@lmdb/lmdb-win32-x64": "2.5.2", + "@lmdb/lmdb-darwin-arm64": "2.5.3", + "@lmdb/lmdb-darwin-x64": "2.5.3", + "@lmdb/lmdb-linux-arm": "2.5.3", + "@lmdb/lmdb-linux-arm64": "2.5.3", + "@lmdb/lmdb-linux-x64": "2.5.3", + "@lmdb/lmdb-win32-x64": "2.5.3", "msgpackr": "^1.5.4", "node-addon-api": "^4.3.0", "node-gyp-build-optional-packages": "5.0.3", @@ -2039,11 +1829,6 @@ "version": "5.0.0", "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==" - }, - "semver": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", - "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==" } } }, @@ -3329,39 +3114,39 @@ } }, "@lmdb/lmdb-darwin-arm64": { - "version": "2.5.3", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-arm64/-/lmdb-darwin-arm64-2.5.3.tgz", - "integrity": "sha512-RXwGZ/0eCqtCY8FLTM/koR60w+MXyvBUpToXiIyjOcBnC81tAlTUHrRUavCEWPI9zc9VgvpK3+cbumPyR8BSuA==", + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-arm64/-/lmdb-darwin-arm64-2.5.2.tgz", + "integrity": "sha512-+F8ioQIUN68B4UFiIBYu0QQvgb9FmlKw2ctQMSBfW2QBrZIxz9vD9jCGqTCPqZBRbPHAS/vG1zSXnKqnS2ch/A==", "optional": true }, "@lmdb/lmdb-darwin-x64": { - "version": "2.5.3", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-x64/-/lmdb-darwin-x64-2.5.3.tgz", - "integrity": "sha512-337dNzh5yCdNCTk8kPfoU7jR3otibSlPDGW0vKZT97rKnQMb9tNdto3RtWoGPsQ8hKmlRZpojOJtmwjncq1MoA==", + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-x64/-/lmdb-darwin-x64-2.5.2.tgz", + "integrity": "sha512-KvPH56KRLLx4KSfKBx0m1r7GGGUMXm0jrKmNE7plbHlesZMuPJICtn07HYgQhj1LNsK7Yqwuvnqh1QxhJnF1EA==", "optional": true }, "@lmdb/lmdb-linux-arm": { - "version": "2.5.3", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm/-/lmdb-linux-arm-2.5.3.tgz", - "integrity": "sha512-mU2HFJDGwECkoD9dHQEfeTG5mp8hNS2BCfwoiOpVPMeapjYpQz9Uw3FkUjRZ4dGHWKbin40oWHuL0bk2bCx+Sg==", + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm/-/lmdb-linux-arm-2.5.2.tgz", + "integrity": "sha512-5kQAP21hAkfW5Bl+e0P57dV4dGYnkNIpR7f/GAh6QHlgXx+vp/teVj4PGRZaKAvt0GX6++N6hF8NnGElLDuIDw==", "optional": true }, "@lmdb/lmdb-linux-arm64": { - "version": "2.5.3", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm64/-/lmdb-linux-arm64-2.5.3.tgz", - "integrity": "sha512-VJw60Mdgb4n+L0fO1PqfB0C7TyEQolJAC8qpqvG3JoQwvyOv6LH7Ib/WE3wxEW9nuHmVz9jkK7lk5HfWWgoO1Q==", + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm64/-/lmdb-linux-arm64-2.5.2.tgz", + "integrity": "sha512-aLl89VHL/wjhievEOlPocoefUyWdvzVrcQ/MHQYZm2JfV1jUsrbr/ZfkPPUFvZBf+VSE+Q0clWs9l29PCX1hTQ==", "optional": true }, "@lmdb/lmdb-linux-x64": { - "version": "2.5.3", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-x64/-/lmdb-linux-x64-2.5.3.tgz", - "integrity": "sha512-qaReO5aV8griBDsBr8uBF/faO3ieGjY1RY4p8JvTL6Mu1ylLrTVvOONqKFlNaCwrmUjWw5jnf7VafxDAeQHTow==", + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-x64/-/lmdb-linux-x64-2.5.2.tgz", + "integrity": "sha512-xUdUfwDJLGjOUPH3BuPBt0NlIrR7f/QHKgu3GZIXswMMIihAekj2i97oI0iWG5Bok/b+OBjHPfa8IU9velnP/Q==", "optional": true }, "@lmdb/lmdb-win32-x64": { - "version": "2.5.3", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-win32-x64/-/lmdb-win32-x64-2.5.3.tgz", - "integrity": "sha512-cK+Elf3RjEzrm3SerAhrFWL5oQAsZSJ/LmjL1joIpTfEP1etJJ9CTRvdaV6XLYAxaEkfdhk/9hOvHLbR9yIhCA==", + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-win32-x64/-/lmdb-win32-x64-2.5.2.tgz", + "integrity": "sha512-zrBczSbXKxEyK2ijtbRdICDygRqWSRPpZMN5dD1T8VMEW5RIhIbwFWw2phDRXuBQdVDpSjalCIUMWMV2h3JaZA==", "optional": true }, "@mdx-js/mdx": { @@ -3490,63 +3275,93 @@ } }, "@parcel/bundler-default": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/bundler-default/-/bundler-default-2.6.0.tgz", - "integrity": "sha512-AplEdGm/odV7yGmoeOnglxnY31WlNB5EqGLFGxkgs7uwDaTWoTX/9SWPG6xfvirhjDpms8sLSiVuBdFRCCLtNA==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/bundler-default/-/bundler-default-2.6.2.tgz", + "integrity": "sha512-XIa3had/MIaTGgRFkHApXwytYs77k4geaNcmlb6nzmAABcYjW1CLYh83Zt0AbzLFsDT9ZcRY3u2UjhNf6efSaw==", "requires": { - "@parcel/diagnostic": "2.6.0", - "@parcel/hash": "2.6.0", - "@parcel/plugin": "2.6.0", - "@parcel/utils": "2.6.0", + "@parcel/diagnostic": "2.6.2", + "@parcel/hash": "2.6.2", + "@parcel/plugin": "2.6.2", + "@parcel/utils": "2.6.2", "nullthrows": "^1.1.1" } }, "@parcel/cache": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/cache/-/cache-2.6.0.tgz", - "integrity": "sha512-4vbD5uSuf+kRnrFesKhpn0AKnOw8u2UlvCyrplYmp1g9bNAkIooC/nDGdmkb/9SviPEbni9PEanQEHDU2+slpA==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/cache/-/cache-2.6.2.tgz", + "integrity": "sha512-hhJ6AsEGybeQZd9c/GYqfcKTgZKQXu3Xih6TlnP3gdR3KZoJOnb40ovHD1yYg4COvfcXThKP1cVJ18J6rcv3IA==", "requires": { - "@parcel/fs": "2.6.0", - "@parcel/logger": "2.6.0", - "@parcel/utils": "2.6.0", - "lmdb": "2.3.10" + "@parcel/fs": "2.6.2", + "@parcel/logger": "2.6.2", + "@parcel/utils": "2.6.2", + "lmdb": "2.5.2" + }, + "dependencies": { + "lmdb": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/lmdb/-/lmdb-2.5.2.tgz", + "integrity": "sha512-V5V5Xa2Hp9i2XsbDALkBTeHXnBXh/lEmk9p22zdr7jtuOIY9TGhjK6vAvTpOOx9IKU4hJkRWZxn/HsvR1ELLtA==", + "requires": { + "@lmdb/lmdb-darwin-arm64": "2.5.2", + "@lmdb/lmdb-darwin-x64": "2.5.2", + "@lmdb/lmdb-linux-arm": "2.5.2", + "@lmdb/lmdb-linux-arm64": "2.5.2", + "@lmdb/lmdb-linux-x64": "2.5.2", + "@lmdb/lmdb-win32-x64": "2.5.2", + "msgpackr": "^1.5.4", + "node-addon-api": "^4.3.0", + "node-gyp-build-optional-packages": "5.0.3", + "ordered-binary": "^1.2.4", + "weak-lru-cache": "^1.2.2" + } + }, + "node-addon-api": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-4.3.0.tgz", + "integrity": "sha512-73sE9+3UaLYYFmDsFZnqCInzPyh3MqIwZO9cw58yIqAZhONrrabrYyYe3TuIqtIiOuTXVhsGau8hcrhhwSsDIQ==" + }, + "node-gyp-build-optional-packages": { + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/node-gyp-build-optional-packages/-/node-gyp-build-optional-packages-5.0.3.tgz", + "integrity": "sha512-k75jcVzk5wnnc/FMxsf4udAoTEUv2jY3ycfdSd3yWu6Cnd1oee6/CfZJApyscA4FJOmdoixWwiwOyf16RzD5JA==" + } } }, "@parcel/codeframe": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/codeframe/-/codeframe-2.6.0.tgz", - "integrity": "sha512-yXXxrO9yyedHKpTwC+Af0+vPmQm+A9xeEhkt4f0yVg1n4t4yUIxYlTedzbM8ygZEEBtkXU9jJ+PkgXbfMf0dqw==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/codeframe/-/codeframe-2.6.2.tgz", + "integrity": "sha512-oFlHr6HCaYYsB4SHkU+gn9DKtbzvv3/4NdwMX0/6NAKyYVI7inEsXyPGw2Bbd2ZCFatW9QJZUETF0etvh5AEfQ==", "requires": { "chalk": "^4.1.0" } }, "@parcel/compressor-raw": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/compressor-raw/-/compressor-raw-2.6.0.tgz", - "integrity": "sha512-rtMU2mGl88bic6Xbq1u5L49bMK4s5185b0k7h3JRdS6/0rR+Xp4k/o9Wog+hHjK/s82z1eF9WmET779ZpIDIQQ==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/compressor-raw/-/compressor-raw-2.6.2.tgz", + "integrity": "sha512-P3c8jjV5HVs+fNDjhvq7PtHXNm687nit1iwTS5VAt+ScXKhKBhoIJ56q+9opcw0jnXVjAAgZqcRZ50oAJBGdKw==", "requires": { - "@parcel/plugin": "2.6.0" + "@parcel/plugin": "2.6.2" } }, "@parcel/core": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/core/-/core-2.6.0.tgz", - "integrity": "sha512-8OOWbPuxpFydpwNyKoz6d3e3O4DmxNYmMw4DXwrPSj/jyg7oa+SDtMT0/VXEhujE0HYkQPCHt4npRajkSuf99A==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/core/-/core-2.6.2.tgz", + "integrity": "sha512-JlKS3Ux0ngmdooSBbzQLShHJdsapF9E7TGMo1hFaHRquZip/DaqzvysYrgMJlDuCoLArciq5ei7ZKzGeK9zexA==", "requires": { "@mischnic/json-sourcemap": "^0.1.0", - "@parcel/cache": "2.6.0", - "@parcel/diagnostic": "2.6.0", - "@parcel/events": "2.6.0", - "@parcel/fs": "2.6.0", - "@parcel/graph": "2.6.0", - "@parcel/hash": "2.6.0", - "@parcel/logger": "2.6.0", - "@parcel/package-manager": "2.6.0", - "@parcel/plugin": "2.6.0", + "@parcel/cache": "2.6.2", + "@parcel/diagnostic": "2.6.2", + "@parcel/events": "2.6.2", + "@parcel/fs": "2.6.2", + "@parcel/graph": "2.6.2", + "@parcel/hash": "2.6.2", + "@parcel/logger": "2.6.2", + "@parcel/package-manager": "2.6.2", + "@parcel/plugin": "2.6.2", "@parcel/source-map": "^2.0.0", - "@parcel/types": "2.6.0", - "@parcel/utils": "2.6.0", - "@parcel/workers": "2.6.0", + "@parcel/types": "2.6.2", + "@parcel/utils": "2.6.2", + "@parcel/workers": "2.6.2", "abortcontroller-polyfill": "^1.1.9", "base-x": "^3.0.8", "browserslist": "^4.6.6", @@ -3572,118 +3387,126 @@ } }, "@parcel/diagnostic": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/diagnostic/-/diagnostic-2.6.0.tgz", - "integrity": "sha512-+p8gC2FKxSI2veD7SoaNlP572v4kw+nafCQEPDtJuzYYRqywYUGncch25dkpgNApB4W4cXVkZu3ZbtIpCAmjQQ==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/diagnostic/-/diagnostic-2.6.2.tgz", + "integrity": "sha512-3ODSBkKVihENU763z1/1DhGAWFhYWRxOCOShC72KXp+GFnSgGiBsxclu8NBa/N948Rzp8lqQI8U1nLcKkh0O/w==", "requires": { "@mischnic/json-sourcemap": "^0.1.0", "nullthrows": "^1.1.1" } }, "@parcel/events": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/events/-/events-2.6.0.tgz", - "integrity": "sha512-2WaKtBs4iYwS88j4zRdyTJTgh8iuY4E32FMmjzzbheqETs6I05gWuPReGukJYxk8vc0Ir7tbzp12oAfpgo0Y+g==" + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/events/-/events-2.6.2.tgz", + "integrity": "sha512-IaCjOeA5ercdFVi1EZOmUHhGfIysmCUgc2Th9hMugSFO0I3GzRsBcAdP6XPfWm+TV6sQ/qZRfdk/drUxoAupnw==" }, "@parcel/fs": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/fs/-/fs-2.6.0.tgz", - "integrity": "sha512-6vxtx5Zy6MvDvH1EPx9JxjKGF03bR7VE1dUf4HLeX2D8YmpL5hkHJnlRCFdcH08rzOVwaJLzg1QNtblWJXQ9CA==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/fs/-/fs-2.6.2.tgz", + "integrity": "sha512-mIhqdF3tjgeoIGqW7Nc/xfM2ClID7o8livwUe5lpQEP+ZaIBiMigXs6ckv3WToCACK+3uylrSD2A/HmlhrxMqQ==", "requires": { - "@parcel/fs-search": "2.6.0", - "@parcel/types": "2.6.0", - "@parcel/utils": "2.6.0", + "@parcel/fs-search": "2.6.2", + "@parcel/types": "2.6.2", + "@parcel/utils": "2.6.2", "@parcel/watcher": "^2.0.0", - "@parcel/workers": "2.6.0" + "@parcel/workers": "2.6.2" } }, "@parcel/fs-search": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/fs-search/-/fs-search-2.6.0.tgz", - "integrity": "sha512-1nXzM3H/cA4kzLKvDBvwmNisKCdRqlgkLXh+OR1Zu28Kn4W34KuJMcHWW8cC+WIuuKqDh5oo2WPsC5y65GXBKQ==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/fs-search/-/fs-search-2.6.2.tgz", + "integrity": "sha512-4STid1zqtGnmGjHD/2TG2g/zPDiCTtE3IAS24QYH3eiUAz2uoKGgEqd2tZbZ2yI96jtCuIhC1bzVu8Hbykls7w==", "requires": { "detect-libc": "^1.0.3" } }, "@parcel/graph": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/graph/-/graph-2.6.0.tgz", - "integrity": "sha512-rxrAzWm6rwbCRPbu0Z+zwMscpG8omffODniVWPlX2G0jgQGpjKsutBQ6RMfFIcfaQ4MzL3pIQOTf8bkjQOPsbg==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/graph/-/graph-2.6.2.tgz", + "integrity": "sha512-DPH4G/RBFJWayIN2fnhDXqhUw75n7k15YsGzdDKiXuwwz4wMOjoL4cyrI6zOf1SIyh3guRmeTYJ4jjPzwrLYww==", "requires": { - "@parcel/utils": "2.6.0", + "@parcel/utils": "2.6.2", "nullthrows": "^1.1.1" } }, "@parcel/hash": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/hash/-/hash-2.6.0.tgz", - "integrity": "sha512-YugWqhLxqK80Lo++3B3Kr5UPCHOdS8iI2zJ1jkzUeH9v6WUzbwWOnmPf6lN2S5m1BrIFFJd8Jc+CbEXWi8zoJA==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/hash/-/hash-2.6.2.tgz", + "integrity": "sha512-tFB+cJU1Wqag6WyJgsmx3nx+xhmjcNZqtWh/MtK1lHNnZdDRk6bjr7SapnygBwruz+SmSt5bbdVThcpk2dRCcA==", "requires": { "detect-libc": "^1.0.3", "xxhash-wasm": "^0.4.2" } }, "@parcel/logger": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/logger/-/logger-2.6.0.tgz", - "integrity": "sha512-J1/7kPfSGBvMKSZdi0WCNuN0fIeiWxifnDGn7W/K8KhD422YwFJA8N046ps8nkDOPIXf1osnIECNp4GIR9oSYw==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/logger/-/logger-2.6.2.tgz", + "integrity": "sha512-Sz5YGCj1DbEiX0/G8Uw97LLZ0uEK+qtWcRAkHNpJpeMiSqDiRNevxXltz42EcLo+oCh4d4wyiVzwi9mNwzhS/Q==", "requires": { - "@parcel/diagnostic": "2.6.0", - "@parcel/events": "2.6.0" + "@parcel/diagnostic": "2.6.2", + "@parcel/events": "2.6.2" } }, "@parcel/markdown-ansi": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/markdown-ansi/-/markdown-ansi-2.6.0.tgz", - "integrity": "sha512-fyjkrJQQSfKTUFTTasdZ6WrAkDoQ2+DYDjj+3p+RncYyrIa9zArKx4IiRiipsvNdtMvP0/hTdK8F3BOJ3KSU/g==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/markdown-ansi/-/markdown-ansi-2.6.2.tgz", + "integrity": "sha512-N/h9J4eibhc+B+krzvPMzFUWL37GudBIZBa7XSLkcuH6MnYYfh6rrMvhIyyESwk6VkcZNVzAeZrGQqxEs0dHDQ==", "requires": { "chalk": "^4.1.0" } }, "@parcel/namer-default": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/namer-default/-/namer-default-2.6.0.tgz", - "integrity": "sha512-r8O12r7ozJBctnFxVdXbf/fK97GIdNj3hiiUNWlXEmED9sw6ZPcChaLcfot0/443g8i87JDmSTKJ8js2tuz5XA==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/namer-default/-/namer-default-2.6.2.tgz", + "integrity": "sha512-mp7bx/BQaIuohmZP0uE+gAmDBzzH0Yu8F4yCtE611lc6i0mou+nWRhzyKLNC/ieuI8DB3BFh2QQKeTxJn4W0qg==", "requires": { - "@parcel/diagnostic": "2.6.0", - "@parcel/plugin": "2.6.0", + "@parcel/diagnostic": "2.6.2", + "@parcel/plugin": "2.6.2", "nullthrows": "^1.1.1" } }, "@parcel/node-resolver-core": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/node-resolver-core/-/node-resolver-core-2.6.0.tgz", - "integrity": "sha512-AJDj5DZbB58plv0li8bdVSD+zpnkHE36Om3TYyNn1jgXXwgBM64Er/9p8yQn356jBqTQMh7zlJqvbdIyOiMeMg==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/node-resolver-core/-/node-resolver-core-2.6.2.tgz", + "integrity": "sha512-4b2L5QRYlTybvv3+TIRtwg4PPJXy+cRShCBa8eu1K0Fj297Afe8MOZrcVV+RIr2KPMIRXcIJoqDmOhyci/DynA==", "requires": { - "@parcel/diagnostic": "2.6.0", - "@parcel/utils": "2.6.0", - "nullthrows": "^1.1.1" + "@parcel/diagnostic": "2.6.2", + "@parcel/utils": "2.6.2", + "nullthrows": "^1.1.1", + "semver": "^5.7.1" + }, + "dependencies": { + "semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==" + } } }, "@parcel/optimizer-terser": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/optimizer-terser/-/optimizer-terser-2.6.0.tgz", - "integrity": "sha512-oezRt6Lz/QqcVDXyMfFjzQc7n0ThJowLJ4Lyhu8rMh0ZJYzc4UCFCw/19d4nRnzE+Qg0vj3mQCpdkA9/64E44g==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/optimizer-terser/-/optimizer-terser-2.6.2.tgz", + "integrity": "sha512-ZSEVQ3G3zOiVPeHvH+BrHegZybrQj9kWQAaAA92leSqbvf6UaX4xqXbGRg2OttNFtbGYBzIl28Zm4t2SLeUIuA==", "requires": { - "@parcel/diagnostic": "2.6.0", - "@parcel/plugin": "2.6.0", + "@parcel/diagnostic": "2.6.2", + "@parcel/plugin": "2.6.2", "@parcel/source-map": "^2.0.0", - "@parcel/utils": "2.6.0", + "@parcel/utils": "2.6.2", "nullthrows": "^1.1.1", "terser": "^5.2.0" } }, "@parcel/package-manager": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/package-manager/-/package-manager-2.6.0.tgz", - "integrity": "sha512-AqFfdkbOw51q/3ia2mIsFTmrpYEyUb3k+2uYC5GsLMz3go6OGn7/Crz0lZLSclv5EtwpRg3TWr9yL7RekVN/Uw==", - "requires": { - "@parcel/diagnostic": "2.6.0", - "@parcel/fs": "2.6.0", - "@parcel/logger": "2.6.0", - "@parcel/types": "2.6.0", - "@parcel/utils": "2.6.0", - "@parcel/workers": "2.6.0", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/package-manager/-/package-manager-2.6.2.tgz", + "integrity": "sha512-xGMqTgnwTE3rgzYwUZMKxR8fzmP5iSYz/gj2H8FR3pEmwh/8xCMtNjTSth+hPVGuqgRZ6JxwpfdY/fXdZ61ViQ==", + "requires": { + "@parcel/diagnostic": "2.6.2", + "@parcel/fs": "2.6.2", + "@parcel/logger": "2.6.2", + "@parcel/types": "2.6.2", + "@parcel/utils": "2.6.2", + "@parcel/workers": "2.6.2", "semver": "^5.7.1" }, "dependencies": { @@ -3695,15 +3518,15 @@ } }, "@parcel/packager-js": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/packager-js/-/packager-js-2.6.0.tgz", - "integrity": "sha512-Uz3pqIFchFfKszWnNGDgIwM1uwHHJp7Dts6VzS9lf/2RbRgZT0fmce+NPgnVO5MMKBHzdvm32ShT6gFAABF5Vw==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/packager-js/-/packager-js-2.6.2.tgz", + "integrity": "sha512-fm5rKWtaExR0W+UEKWivXNPysRFxuBCdskdxDByb1J1JeGMvp7dJElbi8oXDAQM4MnM5EyG7cg47SlMZNTLm4A==", "requires": { - "@parcel/diagnostic": "2.6.0", - "@parcel/hash": "2.6.0", - "@parcel/plugin": "2.6.0", + "@parcel/diagnostic": "2.6.2", + "@parcel/hash": "2.6.2", + "@parcel/plugin": "2.6.2", "@parcel/source-map": "^2.0.0", - "@parcel/utils": "2.6.0", + "@parcel/utils": "2.6.2", "globals": "^13.2.0", "nullthrows": "^1.1.1" }, @@ -3724,76 +3547,76 @@ } }, "@parcel/packager-raw": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/packager-raw/-/packager-raw-2.6.0.tgz", - "integrity": "sha512-ktT6Qc/GgCq8H1+6y+AXufVzQj1s6KRoKf83qswCD0iY3MwCbJoEfc3IsB4K64FpHIL5Eu0z54IId+INvGbOYA==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/packager-raw/-/packager-raw-2.6.2.tgz", + "integrity": "sha512-Rl3ZkMtMjb+LEvRowijDD8fibUAS6rWK0/vZQMk9cDNYCP2gCpZayLk0HZIGxneeTbosf/0sbngHq4VeRQOnQA==", "requires": { - "@parcel/plugin": "2.6.0" + "@parcel/plugin": "2.6.2" } }, "@parcel/plugin": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/plugin/-/plugin-2.6.0.tgz", - "integrity": "sha512-LzOaiK8R6eFEoov1cb3/W+o0XvXdI/VbDhMDl0L0II+/56M0UeayYtFP5QGTDn/fZqVlYfzPCtt3EMwdG7/dow==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/plugin/-/plugin-2.6.2.tgz", + "integrity": "sha512-wbbWsM23Pr+8xtLSvf+UopXdVYlpKCCx6PuuZaZcKo+9IcDCWoGXD4M8Kkz14qBmkFn5uM00mULUqmVdSibB2w==", "requires": { - "@parcel/types": "2.6.0" + "@parcel/types": "2.6.2" } }, "@parcel/reporter-dev-server": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/reporter-dev-server/-/reporter-dev-server-2.6.0.tgz", - "integrity": "sha512-VvygsCA+uzWyijIV8zqU1gFyhAWknuaY4KIWhV4kCT8afRJwsLSwt/tpdaKDPuPU45h3tTsUdXH1wjaIk+dGeQ==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/reporter-dev-server/-/reporter-dev-server-2.6.2.tgz", + "integrity": "sha512-5QtL3ETMFL161jehlIK6rjBM+Pqk5cMhr60s9yLYqE1GY4M4gMj+Act+FXViyM6gmMA38cPxDvUsxTKBYXpFCw==", "requires": { - "@parcel/plugin": "2.6.0", - "@parcel/utils": "2.6.0" + "@parcel/plugin": "2.6.2", + "@parcel/utils": "2.6.2" } }, "@parcel/resolver-default": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/resolver-default/-/resolver-default-2.6.0.tgz", - "integrity": "sha512-ATk9wXvy5GOHAqyHbnCnU11fUPTtf8dLjpgVqL5XylwugZnyBXbynoTWX4w8h6mffkVtdfmzTJx/o4Lresz9sA==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/resolver-default/-/resolver-default-2.6.2.tgz", + "integrity": "sha512-Lo5sWb5QkjWvdBr+TdmAF6Mszb/sMldBBatc1osQTkHXCy679VMH+lfyiWxHbwK+F1pmdMeBJpYcMxvrgT8EsA==", "requires": { - "@parcel/node-resolver-core": "2.6.0", - "@parcel/plugin": "2.6.0" + "@parcel/node-resolver-core": "2.6.2", + "@parcel/plugin": "2.6.2" } }, "@parcel/runtime-browser-hmr": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/runtime-browser-hmr/-/runtime-browser-hmr-2.6.0.tgz", - "integrity": "sha512-90xvv/10cFML5dAhClBEJZ/ExiBQVPqQsZcvRmVZmc5mpZVJMKattWCQrd7pAf7FDYl4JAcvsK3DTwvRT/oLNA==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/runtime-browser-hmr/-/runtime-browser-hmr-2.6.2.tgz", + "integrity": "sha512-M4X0+7dyfdI6smwGUGjGXb8Ns3HX7ZrTemyq4Gc7zp7P/5gWjR8i9eISz46sXmF9bf01a/4dKZpoCC9un1pH1g==", "requires": { - "@parcel/plugin": "2.6.0", - "@parcel/utils": "2.6.0" + "@parcel/plugin": "2.6.2", + "@parcel/utils": "2.6.2" } }, "@parcel/runtime-js": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/runtime-js/-/runtime-js-2.6.0.tgz", - "integrity": "sha512-R4tJAIT/SX7VBQ+f7WmeekREQzzLsmgP1j486uKhQNyYrpvsN0HnRbg5aqvZjEjkEmSeJR0mOlWtMK5/m+0yTA==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/runtime-js/-/runtime-js-2.6.2.tgz", + "integrity": "sha512-0S3JFwgvs6FmEx2dHta9R0Sfu8vCnFAm4i7Y4efGHtAcTrF2CHjyiz4/hG+RQGJ70eoWW463Q+8qt6EKbkaOBQ==", "requires": { - "@parcel/plugin": "2.6.0", - "@parcel/utils": "2.6.0", + "@parcel/plugin": "2.6.2", + "@parcel/utils": "2.6.2", "nullthrows": "^1.1.1" } }, "@parcel/runtime-react-refresh": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/runtime-react-refresh/-/runtime-react-refresh-2.6.0.tgz", - "integrity": "sha512-2sRd13gc2EbMV/O5n2NPVGGhKBasb1fDTXGEY8y7qi9xDKc+ewok/D83T+w243FhCPS9Pf3ur5GkbPlrJGcenQ==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/runtime-react-refresh/-/runtime-react-refresh-2.6.2.tgz", + "integrity": "sha512-DJTm5D/tUAGZm0o3ndDOPbKwdYrobuvm4jvkPq31LdEUqVvyuzBAMlqQFHc1yJEJDRRWOIQwQP9Y0NQbJmXFfg==", "requires": { - "@parcel/plugin": "2.6.0", - "@parcel/utils": "2.6.0", + "@parcel/plugin": "2.6.2", + "@parcel/utils": "2.6.2", "react-error-overlay": "6.0.9", "react-refresh": "^0.9.0" } }, "@parcel/runtime-service-worker": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/runtime-service-worker/-/runtime-service-worker-2.6.0.tgz", - "integrity": "sha512-nVlknGw5J5Bkd1Wr1TbyWHhUd9CmVVebaRg/lpfVKYhAuE/2r+3N0+J8qbEIgtTRcHaSV7wTNpg4weSWq46VeA==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/runtime-service-worker/-/runtime-service-worker-2.6.2.tgz", + "integrity": "sha512-9jV+RwVEeDUI5+eLy8j1tapTNoHHGOY2+JUprcObQkQ8fux7KltQBJWFhpkUdGtz5LTCNXtj9tdycFtS5lmSzg==", "requires": { - "@parcel/plugin": "2.6.0", - "@parcel/utils": "2.6.0", + "@parcel/plugin": "2.6.2", + "@parcel/utils": "2.6.2", "nullthrows": "^1.1.1" } }, @@ -3806,16 +3629,16 @@ } }, "@parcel/transformer-js": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/transformer-js/-/transformer-js-2.6.0.tgz", - "integrity": "sha512-4v2r3EVdMKowBziVBW9HZqvAv88HaeiezkWyMX4wAfplo9jBtWEp99KEQINzSEdbXROR81M9oJjlGF5+yoVr/w==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/transformer-js/-/transformer-js-2.6.2.tgz", + "integrity": "sha512-uhXAMTjE/Q61amflV8qVpb73mj+mIdXIMH0cSks1/gDIAxcgIvWvrE14P4TvY6zJ1q1iRJRIRUN6cFSXqjjLSA==", "requires": { - "@parcel/diagnostic": "2.6.0", - "@parcel/plugin": "2.6.0", + "@parcel/diagnostic": "2.6.2", + "@parcel/plugin": "2.6.2", "@parcel/source-map": "^2.0.0", - "@parcel/utils": "2.6.0", - "@parcel/workers": "2.6.0", - "@swc/helpers": "^0.3.15", + "@parcel/utils": "2.6.2", + "@parcel/workers": "2.6.2", + "@swc/helpers": "^0.4.2", "browserslist": "^4.6.6", "detect-libc": "^1.0.3", "nullthrows": "^1.1.1", @@ -3831,56 +3654,56 @@ } }, "@parcel/transformer-json": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/transformer-json/-/transformer-json-2.6.0.tgz", - "integrity": "sha512-zb+TQAdHWdXijKcFhLe+5KN1O0IzXwW1gJhPr8DJEA3qhPaCsncsw5RCVjQlP3a7NXr1mMm1eMtO6bhIMqbXeA==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/transformer-json/-/transformer-json-2.6.2.tgz", + "integrity": "sha512-QGcIIvbPF/u10ihYvQhxXqb2QMXWSzcBxJrOSIXIl74TUGrWX05D5LmjDA/rzm/n/kvRnBkFNP60R/smYb8x+Q==", "requires": { - "@parcel/plugin": "2.6.0", + "@parcel/plugin": "2.6.2", "json5": "^2.2.0" } }, "@parcel/transformer-raw": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/transformer-raw/-/transformer-raw-2.6.0.tgz", - "integrity": "sha512-QDirlWCS/qy0DQ3WvDIAnFP52n1TJW/uWH+4PGMNnX4/M3/2UchY8xp9CN0tx4NQ4g09S8o3gLlHvNxQqZxFrQ==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/transformer-raw/-/transformer-raw-2.6.2.tgz", + "integrity": "sha512-CsofYq5g9Zj/FNmhya2R7Xp3WHlzz34mEdN69bds3azRYHCrl/TS33xXcp/9J+74SEIY1Ufh552o1cM3fnSrDQ==", "requires": { - "@parcel/plugin": "2.6.0" + "@parcel/plugin": "2.6.2" } }, "@parcel/transformer-react-refresh-wrap": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/transformer-react-refresh-wrap/-/transformer-react-refresh-wrap-2.6.0.tgz", - "integrity": "sha512-G34orfvLDUTumuerqNmA8T8NUHk+R0jwUjbVPO7gpB6VCVQ5ocTABdE9vN9Uu/cUsHij40TUFwqK4R9TFEBIEQ==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/transformer-react-refresh-wrap/-/transformer-react-refresh-wrap-2.6.2.tgz", + "integrity": "sha512-7EE68ebISz+oAHm64ZJbz6uJQT4aOoB8QiK3PvuY6+RsP7aK4/FEHGM1afW49KrZbP4lWjloEkcJm/88DfBiGw==", "requires": { - "@parcel/plugin": "2.6.0", - "@parcel/utils": "2.6.0", + "@parcel/plugin": "2.6.2", + "@parcel/utils": "2.6.2", "react-refresh": "^0.9.0" } }, "@parcel/types": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/types/-/types-2.6.0.tgz", - "integrity": "sha512-lAMYvOBfNEJMsPJ+plbB50305o0TwNrY1xX5RRIWBqwOa6bYmbW1ZljUk1tQvnkpIE4eAHQwnPR5Z2XWg18wGQ==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/types/-/types-2.6.2.tgz", + "integrity": "sha512-MV8BFpCIs2jMUvK2RHqzkoiuOQ//JIbrD1zocA2YRW3zuPL/iABvbAABJoXpoPCKikVWOoCWASgBfWQo26VvJQ==", "requires": { - "@parcel/cache": "2.6.0", - "@parcel/diagnostic": "2.6.0", - "@parcel/fs": "2.6.0", - "@parcel/package-manager": "2.6.0", + "@parcel/cache": "2.6.2", + "@parcel/diagnostic": "2.6.2", + "@parcel/fs": "2.6.2", + "@parcel/package-manager": "2.6.2", "@parcel/source-map": "^2.0.0", - "@parcel/workers": "2.6.0", + "@parcel/workers": "2.6.2", "utility-types": "^3.10.0" } }, "@parcel/utils": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/utils/-/utils-2.6.0.tgz", - "integrity": "sha512-ElXz+QHtT1JQIucbQJBk7SzAGoOlBp4yodEQVvTKS7GA+hEGrSP/cmibl6qm29Rjtd0zgQsdd+2XmP3xvP2gQQ==", - "requires": { - "@parcel/codeframe": "2.6.0", - "@parcel/diagnostic": "2.6.0", - "@parcel/hash": "2.6.0", - "@parcel/logger": "2.6.0", - "@parcel/markdown-ansi": "2.6.0", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/utils/-/utils-2.6.2.tgz", + "integrity": "sha512-Ug7hpRxjgbY5AopW55nY7MmGMVmwmN+ihfCmxJkBUoESTG/3iq8uME7GjyOgW5DkQc2K7q62i8y8N0wCJT1u4Q==", + "requires": { + "@parcel/codeframe": "2.6.2", + "@parcel/diagnostic": "2.6.2", + "@parcel/hash": "2.6.2", + "@parcel/logger": "2.6.2", + "@parcel/markdown-ansi": "2.6.2", "@parcel/source-map": "^2.0.0", "chalk": "^4.1.0" } @@ -3895,14 +3718,14 @@ } }, "@parcel/workers": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/workers/-/workers-2.6.0.tgz", - "integrity": "sha512-3tcI2LF5fd/WZtSnSjyWdDE+G+FitdNrRgSObzSp+axHKMAM23sO0z7KY8s2SYCF40msdYbFUW8eI6JlYNJoWQ==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/workers/-/workers-2.6.2.tgz", + "integrity": "sha512-wBgUjJQm+lDd12fPRUmk09+ujTA9DgwPdqylSFK0OtI/yT6A+2kArUqjp8IwWo2tCJXoMzXBne2XQIWKqMiN4Q==", "requires": { - "@parcel/diagnostic": "2.6.0", - "@parcel/logger": "2.6.0", - "@parcel/types": "2.6.0", - "@parcel/utils": "2.6.0", + "@parcel/diagnostic": "2.6.2", + "@parcel/logger": "2.6.2", + "@parcel/types": "2.6.2", + "@parcel/utils": "2.6.2", "chrome-trace-event": "^1.0.2", "nullthrows": "^1.1.1" } @@ -4156,9 +3979,9 @@ } }, "@swc/helpers": { - "version": "0.3.17", - "resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.3.17.tgz", - "integrity": "sha512-tb7Iu+oZ+zWJZ3HJqwx8oNwSDIU440hmVMDPhpACWQWnrZHK99Bxs70gT1L2dnr5Hg50ZRWEFkQCAnOVVV0z1Q==", + "version": "0.4.3", + "resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.4.3.tgz", + "integrity": "sha512-6JrF+fdUK2zbGpJIlN7G3v966PQjyx/dPt1T9km2wj+EUBqgrxCk3uX4Kct16MIm9gGxfKRcfax2hVf5jvlTzA==", "requires": { "tslib": "^2.4.0" } @@ -5157,14 +4980,14 @@ } }, "caniuse-lite": { - "version": "1.0.30001366", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001366.tgz", - "integrity": "sha512-yy7XLWCubDobokgzudpkKux8e0UOOnLHE6mlNJBzT3lZJz6s5atSEzjoL+fsCPkI0G8MP5uVdDx1ur/fXEWkZA==" + "version": "1.0.30001367", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001367.tgz", + "integrity": "sha512-XDgbeOHfifWV3GEES2B8rtsrADx4Jf+juKX2SICJcaUhjYBO3bR96kvEIHa15VU6ohtOhBZuPGGYGbXMRn0NCw==" }, "electron-to-chromium": { - "version": "1.4.188", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.188.tgz", - "integrity": "sha512-Zpa1+E+BVmD/orkyz1Z2dAT1XNUuVAHB3GrogfyY66dXN0ZWSsygI8+u6QTDai1ZayLcATDJpcv2Z2AZjEcr1A==" + "version": "1.4.194", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.194.tgz", + "integrity": "sha512-ola5UH0xAP1oYY0FFUsPvwtucEzCQHucXnT7PQ1zjHJMccZhCDktEugI++JUR3YuIs7Ff7afz+OVEhVAIMhLAQ==" } } }, @@ -5368,9 +5191,9 @@ } }, "babel-preset-gatsby": { - "version": "2.18.1", - "resolved": "https://registry.npmjs.org/babel-preset-gatsby/-/babel-preset-gatsby-2.18.1.tgz", - "integrity": "sha512-oaVV6ULceMjTQKjCA06qvgfLwBNZFJxpacwNZYOJpLygmj+qYiNKDGhJ8vTw/KAIUeDPZAbPMP5P+3wMEPIWYQ==", + "version": "2.19.0", + "resolved": "https://registry.npmjs.org/babel-preset-gatsby/-/babel-preset-gatsby-2.19.0.tgz", + "integrity": "sha512-wjh4lUN1MffsnqHAfRoeOtJFGEObUPR4oxo7fyfx9pZUyqBgXvKXMEoLnwNht5HV5BzT5Xo9dkwNJl0/CNhXHw==", "requires": { "@babel/plugin-proposal-class-properties": "^7.14.0", "@babel/plugin-proposal-nullish-coalescing-operator": "^7.14.5", @@ -5385,10 +5208,46 @@ "babel-plugin-dynamic-import-node": "^2.3.3", "babel-plugin-macros": "^3.1.0", "babel-plugin-transform-react-remove-prop-types": "^0.4.24", - "gatsby-core-utils": "^3.18.1", - "gatsby-legacy-polyfills": "^2.18.0" + "gatsby-core-utils": "^3.19.0", + "gatsby-legacy-polyfills": "^2.19.0" }, "dependencies": { + "@lmdb/lmdb-darwin-arm64": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-arm64/-/lmdb-darwin-arm64-2.5.3.tgz", + "integrity": "sha512-RXwGZ/0eCqtCY8FLTM/koR60w+MXyvBUpToXiIyjOcBnC81tAlTUHrRUavCEWPI9zc9VgvpK3+cbumPyR8BSuA==", + "optional": true + }, + "@lmdb/lmdb-darwin-x64": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-x64/-/lmdb-darwin-x64-2.5.3.tgz", + "integrity": "sha512-337dNzh5yCdNCTk8kPfoU7jR3otibSlPDGW0vKZT97rKnQMb9tNdto3RtWoGPsQ8hKmlRZpojOJtmwjncq1MoA==", + "optional": true + }, + "@lmdb/lmdb-linux-arm": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm/-/lmdb-linux-arm-2.5.3.tgz", + "integrity": "sha512-mU2HFJDGwECkoD9dHQEfeTG5mp8hNS2BCfwoiOpVPMeapjYpQz9Uw3FkUjRZ4dGHWKbin40oWHuL0bk2bCx+Sg==", + "optional": true + }, + "@lmdb/lmdb-linux-arm64": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm64/-/lmdb-linux-arm64-2.5.3.tgz", + "integrity": "sha512-VJw60Mdgb4n+L0fO1PqfB0C7TyEQolJAC8qpqvG3JoQwvyOv6LH7Ib/WE3wxEW9nuHmVz9jkK7lk5HfWWgoO1Q==", + "optional": true + }, + "@lmdb/lmdb-linux-x64": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-x64/-/lmdb-linux-x64-2.5.3.tgz", + "integrity": "sha512-qaReO5aV8griBDsBr8uBF/faO3ieGjY1RY4p8JvTL6Mu1ylLrTVvOONqKFlNaCwrmUjWw5jnf7VafxDAeQHTow==", + "optional": true + }, + "@lmdb/lmdb-win32-x64": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-win32-x64/-/lmdb-win32-x64-2.5.3.tgz", + "integrity": "sha512-cK+Elf3RjEzrm3SerAhrFWL5oQAsZSJ/LmjL1joIpTfEP1etJJ9CTRvdaV6XLYAxaEkfdhk/9hOvHLbR9yIhCA==", + "optional": true + }, "babel-plugin-macros": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/babel-plugin-macros/-/babel-plugin-macros-3.1.0.tgz", @@ -5412,9 +5271,9 @@ } }, "gatsby-core-utils": { - "version": "3.18.1", - "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.18.1.tgz", - "integrity": "sha512-sJTxRqizLxYy/tSFk0ydfqEZ3ek1So9HDVUa39F6Oi8XuPCBTFzaAooUvowKGneI5YUbdk5y4VO4ybwVUynntw==", + "version": "3.19.0", + "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.19.0.tgz", + "integrity": "sha512-cjXs9DsXkPZt+UdiLHxtq+rGMGVrcnM0KwkawlruvPchI7lqGNv9CScqlvYPxx1dBhu3zSZS26EBALMlFhyOJA==", "requires": { "@babel/runtime": "^7.15.4", "ci-info": "2.0.0", @@ -5581,6 +5440,11 @@ "unpipe": "1.0.0" }, "dependencies": { + "bytes": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", + "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==" + }, "debug": { "version": "2.6.9", "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", @@ -5758,9 +5622,9 @@ } }, "bytes": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", - "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==" + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz", + "integrity": "sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==" }, "cache-manager": { "version": "2.11.1", @@ -6487,11 +6351,6 @@ "vary": "~1.1.2" }, "dependencies": { - "bytes": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz", - "integrity": "sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==" - }, "debug": { "version": "2.6.9", "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", @@ -6649,9 +6508,9 @@ } }, "core-js-pure": { - "version": "3.23.4", - "resolved": "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.23.4.tgz", - "integrity": "sha512-lizxkcgj3XDmi7TUBFe+bQ1vNpD5E4t76BrBWI3HdUxdw/Mq1VF4CkiHzIKyieECKtcODK2asJttoofEeUKICQ==" + "version": "3.23.5", + "resolved": "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.23.5.tgz", + "integrity": "sha512-8t78LdpKSuCq4pJYCYk8hl7XEkAX+BP16yRIwL3AanTksxuEf7CM83vRyctmiEL8NDZ3jpUcv56fk9/zG3aIuw==" }, "core-util-is": { "version": "1.0.2", @@ -6688,9 +6547,9 @@ } }, "create-gatsby": { - "version": "2.18.1", - "resolved": "https://registry.npmjs.org/create-gatsby/-/create-gatsby-2.18.1.tgz", - "integrity": "sha512-1AZioXKi4COhESSHfsb/6tpkBvyuuXHwAmMAGrcUQpbynsQxYdqonnRqnFhp80bA2cIKxgjtHzzLhyRouDonbQ==", + "version": "2.19.0", + "resolved": "https://registry.npmjs.org/create-gatsby/-/create-gatsby-2.19.0.tgz", + "integrity": "sha512-Esl/qCau3rjpnRkmo31BYOE6l72SJ/5Fq8bF6gmXOf/lnbOh51so8hgRcClfizr1nCihqQQihZn//o4DIgZKeA==", "requires": { "@babel/runtime": "^7.15.4" } @@ -7894,9 +7753,9 @@ }, "dependencies": { "@babel/runtime": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.18.6.tgz", - "integrity": "sha512-t9wi7/AW6XtKahAe20Yw0/mMljKq0B1r2fPdvaAdV/KPDZewFXdaaa6K7lxmZBZ8FBNpCiAT6iHPmd6QO9bKfQ==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.18.9.tgz", + "integrity": "sha512-lkqXDcvlFT5rvEjiu6+QYO+1GXrEHRo2LOtS7E4GtX5ESIZOgepqsZBVIj6Pv+a6zqsya9VCgiK1KAK4BvJDAw==", "requires": { "regenerator-runtime": "^0.13.4" } @@ -8751,9 +8610,9 @@ "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==" }, "gatsby": { - "version": "4.18.2", - "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-4.18.2.tgz", - "integrity": "sha512-ZWdo0TXsSRmwlmOeeuoWwXKQNteHm9VxJWF9Ud+c33r7ZXQgTA5WtRYjiBpjZuNAUwsiONNAe+wKK5jVY8B4LQ==", + "version": "4.19.0", + "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-4.19.0.tgz", + "integrity": "sha512-Bhga6PbDRSL3J7yIcVAWwN76cK0OeFWE4f5ggh4qEjnsL20kxW+LPwAexpZ5dVxbE1gsl1k/VDSX66Wj3vGH3A==", "requires": { "@babel/code-frame": "^7.14.0", "@babel/core": "^7.15.5", @@ -8775,7 +8634,7 @@ "@graphql-tools/load": "^7.5.10", "@jridgewell/trace-mapping": "^0.3.13", "@nodelib/fs.walk": "^1.2.8", - "@parcel/core": "2.6.0", + "@parcel/core": "2.6.2", "@pmmmwh/react-refresh-webpack-plugin": "^0.4.3", "@types/http-proxy": "^1.17.7", "@typescript-eslint/eslint-plugin": "^4.33.0", @@ -8789,11 +8648,10 @@ "babel-plugin-add-module-exports": "^1.0.4", "babel-plugin-dynamic-import-node": "^2.3.3", "babel-plugin-lodash": "^3.3.4", - "babel-plugin-remove-graphql-queries": "^4.18.1", - "babel-preset-gatsby": "^2.18.1", + "babel-plugin-remove-graphql-queries": "^4.19.0", + "babel-preset-gatsby": "^2.19.0", "better-opn": "^2.1.1", "bluebird": "^3.7.2", - "body-parser": "^1.19.0", "browserslist": "^4.17.5", "cache-manager": "^2.11.1", "chalk": "^4.1.2", @@ -8819,7 +8677,7 @@ "eslint-plugin-graphql": "^4.0.0", "eslint-plugin-import": "^2.26.0", "eslint-plugin-jsx-a11y": "^6.5.1", - "eslint-plugin-react": "^7.30.0", + "eslint-plugin-react": "^7.30.1", "eslint-plugin-react-hooks": "^4.5.0", "eslint-webpack-plugin": "^2.6.0", "event-source-polyfill": "1.0.25", @@ -8833,21 +8691,21 @@ "find-cache-dir": "^3.3.2", "fs-exists-cached": "1.0.0", "fs-extra": "^10.1.0", - "gatsby-cli": "^4.18.1", - "gatsby-core-utils": "^3.18.1", - "gatsby-graphiql-explorer": "^2.18.0", - "gatsby-legacy-polyfills": "^2.18.0", - "gatsby-link": "^4.18.1", - "gatsby-page-utils": "^2.18.1", - "gatsby-parcel-config": "^0.9.2", - "gatsby-plugin-page-creator": "^4.18.1", - "gatsby-plugin-typescript": "^4.18.1", - "gatsby-plugin-utils": "^3.12.1", - "gatsby-react-router-scroll": "^5.18.0", - "gatsby-script": "^1.3.0", - "gatsby-sharp": "^0.12.0", - "gatsby-telemetry": "^3.18.1", - "gatsby-worker": "^1.18.0", + "gatsby-cli": "^4.19.0", + "gatsby-core-utils": "^3.19.0", + "gatsby-graphiql-explorer": "^2.19.0", + "gatsby-legacy-polyfills": "^2.19.0", + "gatsby-link": "^4.19.0", + "gatsby-page-utils": "^2.19.0", + "gatsby-parcel-config": "^0.10.0", + "gatsby-plugin-page-creator": "^4.19.0", + "gatsby-plugin-typescript": "^4.19.0", + "gatsby-plugin-utils": "^3.13.0", + "gatsby-react-router-scroll": "^5.19.0", + "gatsby-script": "^1.4.0", + "gatsby-sharp": "^0.13.0", + "gatsby-telemetry": "^3.19.0", + "gatsby-worker": "^1.19.0", "glob": "^7.2.3", "globby": "^11.1.0", "got": "^11.8.2", @@ -8855,7 +8713,6 @@ "graphql-compose": "^9.0.7", "graphql-playground-middleware-express": "^1.7.22", "hasha": "^5.2.2", - "http-proxy": "^1.18.1", "invariant": "^2.2.4", "is-relative": "^1.0.0", "is-relative-url": "^3.0.0", @@ -8874,6 +8731,7 @@ "moment": "^2.29.1", "multer": "^1.4.3", "node-fetch": "^2.6.6", + "node-html-parser": "^5.3.3", "normalize-path": "^3.0.0", "null-loader": "^4.0.1", "opentracing": "^0.14.5", @@ -8928,6 +8786,42 @@ "@jridgewell/sourcemap-codec": "^1.4.10" } }, + "@lmdb/lmdb-darwin-arm64": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-arm64/-/lmdb-darwin-arm64-2.5.3.tgz", + "integrity": "sha512-RXwGZ/0eCqtCY8FLTM/koR60w+MXyvBUpToXiIyjOcBnC81tAlTUHrRUavCEWPI9zc9VgvpK3+cbumPyR8BSuA==", + "optional": true + }, + "@lmdb/lmdb-darwin-x64": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-x64/-/lmdb-darwin-x64-2.5.3.tgz", + "integrity": "sha512-337dNzh5yCdNCTk8kPfoU7jR3otibSlPDGW0vKZT97rKnQMb9tNdto3RtWoGPsQ8hKmlRZpojOJtmwjncq1MoA==", + "optional": true + }, + "@lmdb/lmdb-linux-arm": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm/-/lmdb-linux-arm-2.5.3.tgz", + "integrity": "sha512-mU2HFJDGwECkoD9dHQEfeTG5mp8hNS2BCfwoiOpVPMeapjYpQz9Uw3FkUjRZ4dGHWKbin40oWHuL0bk2bCx+Sg==", + "optional": true + }, + "@lmdb/lmdb-linux-arm64": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm64/-/lmdb-linux-arm64-2.5.3.tgz", + "integrity": "sha512-VJw60Mdgb4n+L0fO1PqfB0C7TyEQolJAC8qpqvG3JoQwvyOv6LH7Ib/WE3wxEW9nuHmVz9jkK7lk5HfWWgoO1Q==", + "optional": true + }, + "@lmdb/lmdb-linux-x64": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-x64/-/lmdb-linux-x64-2.5.3.tgz", + "integrity": "sha512-qaReO5aV8griBDsBr8uBF/faO3ieGjY1RY4p8JvTL6Mu1ylLrTVvOONqKFlNaCwrmUjWw5jnf7VafxDAeQHTow==", + "optional": true + }, + "@lmdb/lmdb-win32-x64": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-win32-x64/-/lmdb-win32-x64-2.5.3.tgz", + "integrity": "sha512-cK+Elf3RjEzrm3SerAhrFWL5oQAsZSJ/LmjL1joIpTfEP1etJJ9CTRvdaV6XLYAxaEkfdhk/9hOvHLbR9yIhCA==", + "optional": true + }, "ansi-styles": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", @@ -8937,12 +8831,12 @@ } }, "babel-plugin-remove-graphql-queries": { - "version": "4.18.1", - "resolved": "https://registry.npmjs.org/babel-plugin-remove-graphql-queries/-/babel-plugin-remove-graphql-queries-4.18.1.tgz", - "integrity": "sha512-2I7qsm3pnyvrS6/Q9YuHK1SpfQLmrgYH/AjpnWpnLHee6SiVb5Te89iphhpBdycpBRVGWh04ram9+z/1rMaRYQ==", + "version": "4.19.0", + "resolved": "https://registry.npmjs.org/babel-plugin-remove-graphql-queries/-/babel-plugin-remove-graphql-queries-4.19.0.tgz", + "integrity": "sha512-VbxC7aZxdqQA0YiAcTD/djIW+6PP/JVODlRmCiqDyTbtI0zhE/Z6je1maCmC6J2LLBsKxhWT3UYTjRfLofK7sQ==", "requires": { "@babel/runtime": "^7.15.4", - "gatsby-core-utils": "^3.18.1" + "gatsby-core-utils": "^3.19.0" } }, "color-convert": { @@ -8968,9 +8862,9 @@ } }, "gatsby-cli": { - "version": "4.18.1", - "resolved": "https://registry.npmjs.org/gatsby-cli/-/gatsby-cli-4.18.1.tgz", - "integrity": "sha512-ceYqm6i39rHY343zUCflwXnGtd25QGccvToTWL8W42/EGToDW8bubLfeBSRCfjXm946yf1gkS/1UAsAgAphYDA==", + "version": "4.19.0", + "resolved": "https://registry.npmjs.org/gatsby-cli/-/gatsby-cli-4.19.0.tgz", + "integrity": "sha512-i1B9ktvOECiOZgyKqf0xdYx9bmrIUeZeiK+EOIvIpvFfFUwBmZR6xSHRHYUGX2JVpQiy4QEG25KcPWgF9mYJ3w==", "requires": { "@babel/code-frame": "^7.14.0", "@babel/core": "^7.15.5", @@ -8989,13 +8883,13 @@ "common-tags": "^1.8.2", "configstore": "^5.0.1", "convert-hrtime": "^3.0.0", - "create-gatsby": "^2.18.1", + "create-gatsby": "^2.19.0", "envinfo": "^7.8.1", "execa": "^5.1.1", "fs-exists-cached": "^1.0.0", "fs-extra": "^10.1.0", - "gatsby-core-utils": "^3.18.1", - "gatsby-telemetry": "^3.18.1", + "gatsby-core-utils": "^3.19.0", + "gatsby-telemetry": "^3.19.0", "hosted-git-info": "^3.0.8", "is-valid-path": "^0.1.1", "joi": "^17.4.2", @@ -9019,9 +8913,9 @@ } }, "gatsby-core-utils": { - "version": "3.18.1", - "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.18.1.tgz", - "integrity": "sha512-sJTxRqizLxYy/tSFk0ydfqEZ3ek1So9HDVUa39F6Oi8XuPCBTFzaAooUvowKGneI5YUbdk5y4VO4ybwVUynntw==", + "version": "3.19.0", + "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.19.0.tgz", + "integrity": "sha512-cjXs9DsXkPZt+UdiLHxtq+rGMGVrcnM0KwkawlruvPchI7lqGNv9CScqlvYPxx1dBhu3zSZS26EBALMlFhyOJA==", "requires": { "@babel/runtime": "^7.15.4", "ci-info": "2.0.0", @@ -9061,15 +8955,15 @@ } }, "gatsby-plugin-utils": { - "version": "3.12.1", - "resolved": "https://registry.npmjs.org/gatsby-plugin-utils/-/gatsby-plugin-utils-3.12.1.tgz", - "integrity": "sha512-Rx7/MFtiJ+pyvPLqCPj5beyMN6qOx3EYMrOqmvrWJaM32nxMfHZqUqxGruufyFNVe6edfRuNuXcKaPXlGlyexA==", + "version": "3.13.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-utils/-/gatsby-plugin-utils-3.13.0.tgz", + "integrity": "sha512-iFFWswld/Nu8IrSCikZXC4/cud9txv3ikjkQiGLccJStS9VH2rSY4XEMNRqsKN9Spe3pFBOr/97yYUaPhZaQWg==", "requires": { "@babel/runtime": "^7.15.4", "@gatsbyjs/potrace": "^2.2.0", "fs-extra": "^10.1.0", - "gatsby-core-utils": "^3.18.1", - "gatsby-sharp": "^0.12.0", + "gatsby-core-utils": "^3.19.0", + "gatsby-sharp": "^0.13.0", "graphql-compose": "^9.0.7", "import-from": "^4.0.0", "joi": "^17.4.2", @@ -9086,18 +8980,18 @@ } }, "gatsby-sharp": { - "version": "0.12.0", - "resolved": "https://registry.npmjs.org/gatsby-sharp/-/gatsby-sharp-0.12.0.tgz", - "integrity": "sha512-dZa/AgxmPzD0vvROEZSuT3IdzAFTxnq1FfLTf9n3mywonvsKYc84zj6nf8TEzBrVrBFAaLvZek4NpVAKWGr4/w==", + "version": "0.13.0", + "resolved": "https://registry.npmjs.org/gatsby-sharp/-/gatsby-sharp-0.13.0.tgz", + "integrity": "sha512-dGuIuWP3rC7hXl/CgkHEY4WQEW+B9Rsg8uo6u+OumuLnLBxD4vTusEIGctVKzlyIxpENEQylQ7w1JKHX9fOy9g==", "requires": { "@types/sharp": "^0.30.0", "sharp": "^0.30.3" } }, "gatsby-telemetry": { - "version": "3.18.1", - "resolved": "https://registry.npmjs.org/gatsby-telemetry/-/gatsby-telemetry-3.18.1.tgz", - "integrity": "sha512-EjjsUv15BZGsmnPrOINRT/s7d18DTKokpp2NDZLm8uOs3MwVoLtUZ/BS7h2NTmgK+WN93q3bNYRkZgKgV9QC1A==", + "version": "3.19.0", + "resolved": "https://registry.npmjs.org/gatsby-telemetry/-/gatsby-telemetry-3.19.0.tgz", + "integrity": "sha512-5JQcTm2zCLWTmnXOdOe0gxuk7aRZSTaVrOrytMlwAR7trvtBC/fKqMhJHsYwl5uW9K06F59ZdkC0apJTAPkGww==", "requires": { "@babel/code-frame": "^7.14.0", "@babel/runtime": "^7.15.4", @@ -9107,7 +9001,7 @@ "boxen": "^4.2.0", "configstore": "^5.0.1", "fs-extra": "^10.1.0", - "gatsby-core-utils": "^3.18.1", + "gatsby-core-utils": "^3.19.0", "git-up": "^4.0.5", "is-docker": "^2.2.1", "lodash": "^4.17.21", @@ -9247,17 +9141,17 @@ } }, "gatsby-graphiql-explorer": { - "version": "2.18.0", - "resolved": "https://registry.npmjs.org/gatsby-graphiql-explorer/-/gatsby-graphiql-explorer-2.18.0.tgz", - "integrity": "sha512-mmY+kHc+axpDO9lfjbCEf/0oEIHTcZmpe2PtQAzkhnQHyti3xd9IIafq/1W3QKIJo5c7f40+tR3sFTERqaBeIA==", + "version": "2.19.0", + "resolved": "https://registry.npmjs.org/gatsby-graphiql-explorer/-/gatsby-graphiql-explorer-2.19.0.tgz", + "integrity": "sha512-wOD1LuWaSbCtZ0E9C2HxMBQj67k8kPnlLMr/VfKHgBh0FfvIavIq5vOq5K9zRIkAzSzYVODGEz2NVdbfVK9Bew==", "requires": { "@babel/runtime": "^7.15.4" } }, "gatsby-legacy-polyfills": { - "version": "2.18.0", - "resolved": "https://registry.npmjs.org/gatsby-legacy-polyfills/-/gatsby-legacy-polyfills-2.18.0.tgz", - "integrity": "sha512-wPnsRUnnab10wyt5VPkIhpJC1k8bVrpn0Sfat1L3JskYwkVIEvquqTmHWkpGMB8SLbXQiJEGCs2TcIrx9riL+w==", + "version": "2.19.0", + "resolved": "https://registry.npmjs.org/gatsby-legacy-polyfills/-/gatsby-legacy-polyfills-2.19.0.tgz", + "integrity": "sha512-WuyN01eiRxhanfnj6UgsCxU+Pxs9B8rtgxbrwXhlEKX+QdAp4XlywDQ8QXvv8i028QDF9h+VnvGlfcZY4tgQrQ==", "requires": { "@babel/runtime": "^7.15.4", "core-js-compat": "3.9.0" @@ -9280,35 +9174,70 @@ } }, "gatsby-link": { - "version": "4.18.1", - "resolved": "https://registry.npmjs.org/gatsby-link/-/gatsby-link-4.18.1.tgz", - "integrity": "sha512-gLFH2iU4WugHU5k+SLu4F0Ar04kDT5KhkyXly99ZVtiIvHpA5DqcuGNIUjIE/lizSCsfa553wGv7dadfghGzrQ==", + "version": "4.19.0", + "resolved": "https://registry.npmjs.org/gatsby-link/-/gatsby-link-4.19.0.tgz", + "integrity": "sha512-snv9blxZR7s/ymRjUUDP2+zrJ/beuyy/k/MeW57EkQ16YfgDyF79JMKNDU3iXFmiFhG9AYBkClIfe4qTSoCO/A==", "requires": { - "@babel/runtime": "^7.15.4", "@types/reach__router": "^1.3.10", - "gatsby-page-utils": "^2.18.1", + "gatsby-page-utils": "^2.19.0", "prop-types": "^15.8.1" } }, "gatsby-page-utils": { - "version": "2.18.1", - "resolved": "https://registry.npmjs.org/gatsby-page-utils/-/gatsby-page-utils-2.18.1.tgz", - "integrity": "sha512-4EM0LNOQgnCndHDQSI/ZKRFWYWG9dtTPuGbBaGlmPquhj3zwjOscws1vfj7g+u3PowKjZQ2Rf92RZd8xt8XLTQ==", + "version": "2.19.0", + "resolved": "https://registry.npmjs.org/gatsby-page-utils/-/gatsby-page-utils-2.19.0.tgz", + "integrity": "sha512-eYStV4jQbuEBKhatH3yzWA+lmoydJBCZVg6w2GG38eSsgcj9pdep8oQqyQdGFU3dy/HizWmWCv+wW9FIUoVQsQ==", "requires": { "@babel/runtime": "^7.15.4", "bluebird": "^3.7.2", "chokidar": "^3.5.3", "fs-exists-cached": "^1.0.0", - "gatsby-core-utils": "^3.18.1", + "gatsby-core-utils": "^3.19.0", "glob": "^7.2.3", "lodash": "^4.17.21", "micromatch": "^4.0.5" }, "dependencies": { + "@lmdb/lmdb-darwin-arm64": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-arm64/-/lmdb-darwin-arm64-2.5.3.tgz", + "integrity": "sha512-RXwGZ/0eCqtCY8FLTM/koR60w+MXyvBUpToXiIyjOcBnC81tAlTUHrRUavCEWPI9zc9VgvpK3+cbumPyR8BSuA==", + "optional": true + }, + "@lmdb/lmdb-darwin-x64": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-x64/-/lmdb-darwin-x64-2.5.3.tgz", + "integrity": "sha512-337dNzh5yCdNCTk8kPfoU7jR3otibSlPDGW0vKZT97rKnQMb9tNdto3RtWoGPsQ8hKmlRZpojOJtmwjncq1MoA==", + "optional": true + }, + "@lmdb/lmdb-linux-arm": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm/-/lmdb-linux-arm-2.5.3.tgz", + "integrity": "sha512-mU2HFJDGwECkoD9dHQEfeTG5mp8hNS2BCfwoiOpVPMeapjYpQz9Uw3FkUjRZ4dGHWKbin40oWHuL0bk2bCx+Sg==", + "optional": true + }, + "@lmdb/lmdb-linux-arm64": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm64/-/lmdb-linux-arm64-2.5.3.tgz", + "integrity": "sha512-VJw60Mdgb4n+L0fO1PqfB0C7TyEQolJAC8qpqvG3JoQwvyOv6LH7Ib/WE3wxEW9nuHmVz9jkK7lk5HfWWgoO1Q==", + "optional": true + }, + "@lmdb/lmdb-linux-x64": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-x64/-/lmdb-linux-x64-2.5.3.tgz", + "integrity": "sha512-qaReO5aV8griBDsBr8uBF/faO3ieGjY1RY4p8JvTL6Mu1ylLrTVvOONqKFlNaCwrmUjWw5jnf7VafxDAeQHTow==", + "optional": true + }, + "@lmdb/lmdb-win32-x64": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-win32-x64/-/lmdb-win32-x64-2.5.3.tgz", + "integrity": "sha512-cK+Elf3RjEzrm3SerAhrFWL5oQAsZSJ/LmjL1joIpTfEP1etJJ9CTRvdaV6XLYAxaEkfdhk/9hOvHLbR9yIhCA==", + "optional": true + }, "gatsby-core-utils": { - "version": "3.18.1", - "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.18.1.tgz", - "integrity": "sha512-sJTxRqizLxYy/tSFk0ydfqEZ3ek1So9HDVUa39F6Oi8XuPCBTFzaAooUvowKGneI5YUbdk5y4VO4ybwVUynntw==", + "version": "3.19.0", + "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.19.0.tgz", + "integrity": "sha512-cjXs9DsXkPZt+UdiLHxtq+rGMGVrcnM0KwkawlruvPchI7lqGNv9CScqlvYPxx1dBhu3zSZS26EBALMlFhyOJA==", "requires": { "@babel/runtime": "^7.15.4", "ci-info": "2.0.0", @@ -9381,27 +9310,27 @@ } }, "gatsby-parcel-config": { - "version": "0.9.2", - "resolved": "https://registry.npmjs.org/gatsby-parcel-config/-/gatsby-parcel-config-0.9.2.tgz", - "integrity": "sha512-ONykPoYCoFs89M8Hio0TSrUQEpwXwbSiV8aCcPH9L6w3eros9RlWrwAwnWb+lPDNJT5BsereBjefoS9cC6mpVA==", - "requires": { - "@gatsbyjs/parcel-namer-relative-to-cwd": "^1.3.2", - "@parcel/bundler-default": "2.6.0", - "@parcel/compressor-raw": "2.6.0", - "@parcel/namer-default": "2.6.0", - "@parcel/optimizer-terser": "2.6.0", - "@parcel/packager-js": "2.6.0", - "@parcel/packager-raw": "2.6.0", - "@parcel/reporter-dev-server": "2.6.0", - "@parcel/resolver-default": "2.6.0", - "@parcel/runtime-browser-hmr": "2.6.0", - "@parcel/runtime-js": "2.6.0", - "@parcel/runtime-react-refresh": "2.6.0", - "@parcel/runtime-service-worker": "2.6.0", - "@parcel/transformer-js": "2.6.0", - "@parcel/transformer-json": "2.6.0", - "@parcel/transformer-raw": "2.6.0", - "@parcel/transformer-react-refresh-wrap": "2.6.0" + "version": "0.10.0", + "resolved": "https://registry.npmjs.org/gatsby-parcel-config/-/gatsby-parcel-config-0.10.0.tgz", + "integrity": "sha512-FV+ccSeWPgicWRtycfUV1L7xyVIr6OSDnUkztnxq3Xj+OEBPC0NO2x07CA4tz16hSRDH1/qXgwY8AsHyenCidg==", + "requires": { + "@gatsbyjs/parcel-namer-relative-to-cwd": "^1.4.0", + "@parcel/bundler-default": "2.6.2", + "@parcel/compressor-raw": "2.6.2", + "@parcel/namer-default": "2.6.2", + "@parcel/optimizer-terser": "2.6.2", + "@parcel/packager-js": "2.6.2", + "@parcel/packager-raw": "2.6.2", + "@parcel/reporter-dev-server": "2.6.2", + "@parcel/resolver-default": "2.6.2", + "@parcel/runtime-browser-hmr": "2.6.2", + "@parcel/runtime-js": "2.6.2", + "@parcel/runtime-react-refresh": "2.6.2", + "@parcel/runtime-service-worker": "2.6.2", + "@parcel/transformer-js": "2.6.2", + "@parcel/transformer-json": "2.6.2", + "@parcel/transformer-raw": "2.6.2", + "@parcel/transformer-react-refresh-wrap": "2.6.2" } }, "gatsby-plugin-emotion": { @@ -9553,23 +9482,59 @@ } }, "gatsby-plugin-page-creator": { - "version": "4.18.1", - "resolved": "https://registry.npmjs.org/gatsby-plugin-page-creator/-/gatsby-plugin-page-creator-4.18.1.tgz", - "integrity": "sha512-XPAglahQ1fDnSdSNJmtAGwVqB7yZDGPOQQBQX7LD74XwYP6uriRo4LyeI+gEXRqW4d63ZL3VMvgdisde9M95LQ==", + "version": "4.19.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-page-creator/-/gatsby-plugin-page-creator-4.19.0.tgz", + "integrity": "sha512-JGclCb2lniTjBdFzoiF0Px9EhVY/3uiWx7mqnvfdVO85VVey5+eCKL60Aqamjovo6C+l/0Uldt4uT1EpNLC3Xw==", "requires": { "@babel/runtime": "^7.15.4", "@babel/traverse": "^7.15.4", "@sindresorhus/slugify": "^1.1.2", "chokidar": "^3.5.3", "fs-exists-cached": "^1.0.0", - "gatsby-core-utils": "^3.18.1", - "gatsby-page-utils": "^2.18.1", - "gatsby-plugin-utils": "^3.12.1", - "gatsby-telemetry": "^3.18.1", + "gatsby-core-utils": "^3.19.0", + "gatsby-page-utils": "^2.19.0", + "gatsby-plugin-utils": "^3.13.0", + "gatsby-telemetry": "^3.19.0", "globby": "^11.1.0", "lodash": "^4.17.21" }, "dependencies": { + "@lmdb/lmdb-darwin-arm64": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-arm64/-/lmdb-darwin-arm64-2.5.3.tgz", + "integrity": "sha512-RXwGZ/0eCqtCY8FLTM/koR60w+MXyvBUpToXiIyjOcBnC81tAlTUHrRUavCEWPI9zc9VgvpK3+cbumPyR8BSuA==", + "optional": true + }, + "@lmdb/lmdb-darwin-x64": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-x64/-/lmdb-darwin-x64-2.5.3.tgz", + "integrity": "sha512-337dNzh5yCdNCTk8kPfoU7jR3otibSlPDGW0vKZT97rKnQMb9tNdto3RtWoGPsQ8hKmlRZpojOJtmwjncq1MoA==", + "optional": true + }, + "@lmdb/lmdb-linux-arm": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm/-/lmdb-linux-arm-2.5.3.tgz", + "integrity": "sha512-mU2HFJDGwECkoD9dHQEfeTG5mp8hNS2BCfwoiOpVPMeapjYpQz9Uw3FkUjRZ4dGHWKbin40oWHuL0bk2bCx+Sg==", + "optional": true + }, + "@lmdb/lmdb-linux-arm64": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm64/-/lmdb-linux-arm64-2.5.3.tgz", + "integrity": "sha512-VJw60Mdgb4n+L0fO1PqfB0C7TyEQolJAC8qpqvG3JoQwvyOv6LH7Ib/WE3wxEW9nuHmVz9jkK7lk5HfWWgoO1Q==", + "optional": true + }, + "@lmdb/lmdb-linux-x64": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-x64/-/lmdb-linux-x64-2.5.3.tgz", + "integrity": "sha512-qaReO5aV8griBDsBr8uBF/faO3ieGjY1RY4p8JvTL6Mu1ylLrTVvOONqKFlNaCwrmUjWw5jnf7VafxDAeQHTow==", + "optional": true + }, + "@lmdb/lmdb-win32-x64": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-win32-x64/-/lmdb-win32-x64-2.5.3.tgz", + "integrity": "sha512-cK+Elf3RjEzrm3SerAhrFWL5oQAsZSJ/LmjL1joIpTfEP1etJJ9CTRvdaV6XLYAxaEkfdhk/9hOvHLbR9yIhCA==", + "optional": true + }, "ansi-styles": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", @@ -9625,9 +9590,9 @@ } }, "gatsby-core-utils": { - "version": "3.18.1", - "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.18.1.tgz", - "integrity": "sha512-sJTxRqizLxYy/tSFk0ydfqEZ3ek1So9HDVUa39F6Oi8XuPCBTFzaAooUvowKGneI5YUbdk5y4VO4ybwVUynntw==", + "version": "3.19.0", + "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.19.0.tgz", + "integrity": "sha512-cjXs9DsXkPZt+UdiLHxtq+rGMGVrcnM0KwkawlruvPchI7lqGNv9CScqlvYPxx1dBhu3zSZS26EBALMlFhyOJA==", "requires": { "@babel/runtime": "^7.15.4", "ci-info": "2.0.0", @@ -9647,15 +9612,15 @@ } }, "gatsby-plugin-utils": { - "version": "3.12.1", - "resolved": "https://registry.npmjs.org/gatsby-plugin-utils/-/gatsby-plugin-utils-3.12.1.tgz", - "integrity": "sha512-Rx7/MFtiJ+pyvPLqCPj5beyMN6qOx3EYMrOqmvrWJaM32nxMfHZqUqxGruufyFNVe6edfRuNuXcKaPXlGlyexA==", + "version": "3.13.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-utils/-/gatsby-plugin-utils-3.13.0.tgz", + "integrity": "sha512-iFFWswld/Nu8IrSCikZXC4/cud9txv3ikjkQiGLccJStS9VH2rSY4XEMNRqsKN9Spe3pFBOr/97yYUaPhZaQWg==", "requires": { "@babel/runtime": "^7.15.4", "@gatsbyjs/potrace": "^2.2.0", "fs-extra": "^10.1.0", - "gatsby-core-utils": "^3.18.1", - "gatsby-sharp": "^0.12.0", + "gatsby-core-utils": "^3.19.0", + "gatsby-sharp": "^0.13.0", "graphql-compose": "^9.0.7", "import-from": "^4.0.0", "joi": "^17.4.2", @@ -9665,18 +9630,18 @@ } }, "gatsby-sharp": { - "version": "0.12.0", - "resolved": "https://registry.npmjs.org/gatsby-sharp/-/gatsby-sharp-0.12.0.tgz", - "integrity": "sha512-dZa/AgxmPzD0vvROEZSuT3IdzAFTxnq1FfLTf9n3mywonvsKYc84zj6nf8TEzBrVrBFAaLvZek4NpVAKWGr4/w==", + "version": "0.13.0", + "resolved": "https://registry.npmjs.org/gatsby-sharp/-/gatsby-sharp-0.13.0.tgz", + "integrity": "sha512-dGuIuWP3rC7hXl/CgkHEY4WQEW+B9Rsg8uo6u+OumuLnLBxD4vTusEIGctVKzlyIxpENEQylQ7w1JKHX9fOy9g==", "requires": { "@types/sharp": "^0.30.0", "sharp": "^0.30.3" } }, "gatsby-telemetry": { - "version": "3.18.1", - "resolved": "https://registry.npmjs.org/gatsby-telemetry/-/gatsby-telemetry-3.18.1.tgz", - "integrity": "sha512-EjjsUv15BZGsmnPrOINRT/s7d18DTKokpp2NDZLm8uOs3MwVoLtUZ/BS7h2NTmgK+WN93q3bNYRkZgKgV9QC1A==", + "version": "3.19.0", + "resolved": "https://registry.npmjs.org/gatsby-telemetry/-/gatsby-telemetry-3.19.0.tgz", + "integrity": "sha512-5JQcTm2zCLWTmnXOdOe0gxuk7aRZSTaVrOrytMlwAR7trvtBC/fKqMhJHsYwl5uW9K06F59ZdkC0apJTAPkGww==", "requires": { "@babel/code-frame": "^7.14.0", "@babel/runtime": "^7.15.4", @@ -9686,7 +9651,7 @@ "boxen": "^4.2.0", "configstore": "^5.0.1", "fs-extra": "^10.1.0", - "gatsby-core-utils": "^3.18.1", + "gatsby-core-utils": "^3.19.0", "git-up": "^4.0.5", "is-docker": "^2.2.1", "lodash": "^4.17.21", @@ -9856,9 +9821,9 @@ } }, "gatsby-plugin-typescript": { - "version": "4.18.1", - "resolved": "https://registry.npmjs.org/gatsby-plugin-typescript/-/gatsby-plugin-typescript-4.18.1.tgz", - "integrity": "sha512-YUZcqL2WWiL2ngKe4A5FpTjCij2pLxiim+QaujeKfMjeWfHJ13uQ74HlxQXNpGAy4vMRBiU4CJH71RXgS1aoaA==", + "version": "4.19.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-typescript/-/gatsby-plugin-typescript-4.19.0.tgz", + "integrity": "sha512-f+aC4g/pTkUqFLTHo3OLdPQgdIFcEdoM5i8H4Pph5O4rmFXYHkkQKimRJmAz9cBb6/1wN7IBqI9m4k3AefaAjA==", "requires": { "@babel/core": "^7.15.5", "@babel/plugin-proposal-nullish-coalescing-operator": "^7.14.5", @@ -9866,22 +9831,58 @@ "@babel/plugin-proposal-optional-chaining": "^7.14.5", "@babel/preset-typescript": "^7.15.0", "@babel/runtime": "^7.15.4", - "babel-plugin-remove-graphql-queries": "^4.18.1" + "babel-plugin-remove-graphql-queries": "^4.19.0" }, "dependencies": { + "@lmdb/lmdb-darwin-arm64": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-arm64/-/lmdb-darwin-arm64-2.5.3.tgz", + "integrity": "sha512-RXwGZ/0eCqtCY8FLTM/koR60w+MXyvBUpToXiIyjOcBnC81tAlTUHrRUavCEWPI9zc9VgvpK3+cbumPyR8BSuA==", + "optional": true + }, + "@lmdb/lmdb-darwin-x64": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-x64/-/lmdb-darwin-x64-2.5.3.tgz", + "integrity": "sha512-337dNzh5yCdNCTk8kPfoU7jR3otibSlPDGW0vKZT97rKnQMb9tNdto3RtWoGPsQ8hKmlRZpojOJtmwjncq1MoA==", + "optional": true + }, + "@lmdb/lmdb-linux-arm": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm/-/lmdb-linux-arm-2.5.3.tgz", + "integrity": "sha512-mU2HFJDGwECkoD9dHQEfeTG5mp8hNS2BCfwoiOpVPMeapjYpQz9Uw3FkUjRZ4dGHWKbin40oWHuL0bk2bCx+Sg==", + "optional": true + }, + "@lmdb/lmdb-linux-arm64": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm64/-/lmdb-linux-arm64-2.5.3.tgz", + "integrity": "sha512-VJw60Mdgb4n+L0fO1PqfB0C7TyEQolJAC8qpqvG3JoQwvyOv6LH7Ib/WE3wxEW9nuHmVz9jkK7lk5HfWWgoO1Q==", + "optional": true + }, + "@lmdb/lmdb-linux-x64": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-x64/-/lmdb-linux-x64-2.5.3.tgz", + "integrity": "sha512-qaReO5aV8griBDsBr8uBF/faO3ieGjY1RY4p8JvTL6Mu1ylLrTVvOONqKFlNaCwrmUjWw5jnf7VafxDAeQHTow==", + "optional": true + }, + "@lmdb/lmdb-win32-x64": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-win32-x64/-/lmdb-win32-x64-2.5.3.tgz", + "integrity": "sha512-cK+Elf3RjEzrm3SerAhrFWL5oQAsZSJ/LmjL1joIpTfEP1etJJ9CTRvdaV6XLYAxaEkfdhk/9hOvHLbR9yIhCA==", + "optional": true + }, "babel-plugin-remove-graphql-queries": { - "version": "4.18.1", - "resolved": "https://registry.npmjs.org/babel-plugin-remove-graphql-queries/-/babel-plugin-remove-graphql-queries-4.18.1.tgz", - "integrity": "sha512-2I7qsm3pnyvrS6/Q9YuHK1SpfQLmrgYH/AjpnWpnLHee6SiVb5Te89iphhpBdycpBRVGWh04ram9+z/1rMaRYQ==", + "version": "4.19.0", + "resolved": "https://registry.npmjs.org/babel-plugin-remove-graphql-queries/-/babel-plugin-remove-graphql-queries-4.19.0.tgz", + "integrity": "sha512-VbxC7aZxdqQA0YiAcTD/djIW+6PP/JVODlRmCiqDyTbtI0zhE/Z6je1maCmC6J2LLBsKxhWT3UYTjRfLofK7sQ==", "requires": { "@babel/runtime": "^7.15.4", - "gatsby-core-utils": "^3.18.1" + "gatsby-core-utils": "^3.19.0" } }, "gatsby-core-utils": { - "version": "3.18.1", - "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.18.1.tgz", - "integrity": "sha512-sJTxRqizLxYy/tSFk0ydfqEZ3ek1So9HDVUa39F6Oi8XuPCBTFzaAooUvowKGneI5YUbdk5y4VO4ybwVUynntw==", + "version": "3.19.0", + "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.19.0.tgz", + "integrity": "sha512-cjXs9DsXkPZt+UdiLHxtq+rGMGVrcnM0KwkawlruvPchI7lqGNv9CScqlvYPxx1dBhu3zSZS26EBALMlFhyOJA==", "requires": { "@babel/runtime": "^7.15.4", "ci-info": "2.0.0", @@ -10022,9 +10023,9 @@ } }, "gatsby-react-router-scroll": { - "version": "5.18.0", - "resolved": "https://registry.npmjs.org/gatsby-react-router-scroll/-/gatsby-react-router-scroll-5.18.0.tgz", - "integrity": "sha512-/A1k468s6g713c8me5DuGiia8rPWLuwjITQ/pKqgJwioJVB6MnD/iBCbHUTzLHlNwZypAVdGHCN8fCIcPcMb6Q==", + "version": "5.19.0", + "resolved": "https://registry.npmjs.org/gatsby-react-router-scroll/-/gatsby-react-router-scroll-5.19.0.tgz", + "integrity": "sha512-tl1E2/ger3Aw5Vb5n53i9wCBePYqb2dBilO05pd6FfgKYJveFidQwGzzOn1F9smdWq+5c3KJSTlKJaNYPwn72w==", "requires": { "@babel/runtime": "^7.15.4", "prop-types": "^15.8.1" @@ -10075,9 +10076,9 @@ } }, "gatsby-script": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/gatsby-script/-/gatsby-script-1.3.0.tgz", - "integrity": "sha512-eCz6mcMFpB7kvpmyM7AtMTxNxzdrzPgt8GiuDKWFOlDgk1il6PUjO99QsL/cCeokmaiH/6egVnm9b33/x+sy9A==" + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/gatsby-script/-/gatsby-script-1.4.0.tgz", + "integrity": "sha512-+GmHTAfFq/sQWPvl1E8QvApRfxqqamhdqjFo4YloOQRAlDc+e3nMzTzvgj8z3IWqDqlvEfHMnlvQg60E5ThO/A==" }, "gatsby-sharp": { "version": "0.9.0", @@ -10396,9 +10397,9 @@ } }, "gatsby-worker": { - "version": "1.18.0", - "resolved": "https://registry.npmjs.org/gatsby-worker/-/gatsby-worker-1.18.0.tgz", - "integrity": "sha512-gNzqDrYFMXlfXCzdClORyDQWQZKTOF6nRUrhZT8PUxzQViO+DvnEKE3EAQvZizYKW1Hgw7cbiTtLG3qshkNepw==", + "version": "1.19.0", + "resolved": "https://registry.npmjs.org/gatsby-worker/-/gatsby-worker-1.19.0.tgz", + "integrity": "sha512-E0I51K5+rSpcUkv3wQ17FHZiicLeMH/Hz7p3oxlPCM43pcvsYJTa68Q0MqI1K6XV6Z8Nf48dERKMvHT0PnY4GQ==", "requires": { "@babel/core": "^7.15.5", "@babel/runtime": "^7.15.4" @@ -10965,6 +10966,11 @@ "space-separated-tokens": "^1.0.0" } }, + "he": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/he/-/he-1.2.0.tgz", + "integrity": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==" + }, "header-case": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/header-case/-/header-case-1.0.1.tgz", @@ -11043,16 +11049,6 @@ "toidentifier": "1.0.1" } }, - "http-proxy": { - "version": "1.18.1", - "resolved": "https://registry.npmjs.org/http-proxy/-/http-proxy-1.18.1.tgz", - "integrity": "sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==", - "requires": { - "eventemitter3": "^4.0.0", - "follow-redirects": "^1.0.0", - "requires-port": "^1.0.0" - } - }, "http2-wrapper": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/http2-wrapper/-/http2-wrapper-1.0.3.tgz", @@ -12662,6 +12658,15 @@ "resolved": "https://registry.npmjs.org/node-gyp-build-optional-packages/-/node-gyp-build-optional-packages-4.3.2.tgz", "integrity": "sha512-P5Ep3ISdmwcCkZIaBaQamQtWAG0facC89phWZgi5Z3hBU//J6S48OIvyZWSPPf6yQMklLZiqoosWAZUj7N+esA==" }, + "node-html-parser": { + "version": "5.3.3", + "resolved": "https://registry.npmjs.org/node-html-parser/-/node-html-parser-5.3.3.tgz", + "integrity": "sha512-ncg1033CaX9UexbyA7e1N0aAoAYRDiV8jkTvzEnfd1GDvzFdrsXLzR4p4ik8mwLgnaKP/jyUFWDy9q3jvRT2Jw==", + "requires": { + "css-select": "^4.2.1", + "he": "1.2.0" + } + }, "node-int64": { "version": "0.4.0", "resolved": "https://registry.npmjs.org/node-int64/-/node-int64-0.4.0.tgz", @@ -13507,14 +13512,14 @@ } }, "caniuse-lite": { - "version": "1.0.30001366", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001366.tgz", - "integrity": "sha512-yy7XLWCubDobokgzudpkKux8e0UOOnLHE6mlNJBzT3lZJz6s5atSEzjoL+fsCPkI0G8MP5uVdDx1ur/fXEWkZA==" + "version": "1.0.30001367", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001367.tgz", + "integrity": "sha512-XDgbeOHfifWV3GEES2B8rtsrADx4Jf+juKX2SICJcaUhjYBO3bR96kvEIHa15VU6ohtOhBZuPGGYGbXMRn0NCw==" }, "electron-to-chromium": { - "version": "1.4.188", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.188.tgz", - "integrity": "sha512-Zpa1+E+BVmD/orkyz1Z2dAT1XNUuVAHB3GrogfyY66dXN0ZWSsygI8+u6QTDai1ZayLcATDJpcv2Z2AZjEcr1A==" + "version": "1.4.194", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.194.tgz", + "integrity": "sha512-ola5UH0xAP1oYY0FFUsPvwtucEzCQHucXnT7PQ1zjHJMccZhCDktEugI++JUR3YuIs7Ff7afz+OVEhVAIMhLAQ==" } } }, @@ -14050,6 +14055,13 @@ "http-errors": "2.0.0", "iconv-lite": "0.4.24", "unpipe": "1.0.0" + }, + "dependencies": { + "bytes": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", + "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==" + } } }, "raw-loader": { @@ -14854,11 +14866,6 @@ "resolved": "https://registry.npmjs.org/require-package-name/-/require-package-name-2.0.1.tgz", "integrity": "sha512-uuoJ1hU/k6M0779t3VMVIYpb2VMJk05cehCaABFhXaibcbvfgR8wKiozLjVFSzJPmQMRqIcO0HMyTFqfV09V6Q==" }, - "requires-port": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz", - "integrity": "sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==" - }, "resolve": { "version": "1.20.0", "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.20.0.tgz", @@ -16797,9 +16804,9 @@ "integrity": "sha1-j97XMk7G6IoP+LkF58CYzcCG1UQ=" }, "update-browserslist-db": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.4.tgz", - "integrity": "sha512-jnmO2BEGUjsMOe/Fg9u0oczOe/ppIDZPebzccl1yDWGLFP16Pa1/RM5wEoKYPG2zstNcDuAStejyxsOuKINdGA==", + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.5.tgz", + "integrity": "sha512-dteFFpCyvuDdr9S/ff1ISkKt/9YZxKjI9WlRR99c180GaztJtRa/fn18FdxGVKVsnPY7/a/FDN68mcvUmP4U7Q==", "requires": { "escalade": "^3.1.1", "picocolors": "^1.0.0" diff --git a/starters/gatsby-starter-blog-theme/package.json b/starters/gatsby-starter-blog-theme/package.json index 7107e4b33ace5..0f64fcdbc89bc 100644 --- a/starters/gatsby-starter-blog-theme/package.json +++ b/starters/gatsby-starter-blog-theme/package.json @@ -13,7 +13,7 @@ "@emotion/react": "^11.9.3", "@emotion/styled": "^11.9.3", "@mdx-js/react": "^1.6.22", - "gatsby": "^4.18.2", + "gatsby": "^4.19.0", "gatsby-theme-blog": "^4.0.0", "react": "^18.1.0", "react-dom": "^18.1.0", diff --git a/starters/gatsby-starter-minimal-ts/package-lock.json b/starters/gatsby-starter-minimal-ts/package-lock.json index f7520b4f9b205..ac81452370a2f 100644 --- a/starters/gatsby-starter-minimal-ts/package-lock.json +++ b/starters/gatsby-starter-minimal-ts/package-lock.json @@ -66,20 +66,20 @@ "integrity": "sha512-HSmX4WZPPK3FUxYp7g2T6EyO8j96HlZJlxmKPSh6KAcqwyDrfx7hKjXpAW/0FhFfTJsR0Yt4lAjLI2coMptIHQ==" }, "@babel/core": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.18.6.tgz", - "integrity": "sha512-cQbWBpxcbbs/IUredIPkHiAGULLV8iwgNRMFzvbhEXISp4f3rUUXE5+TIw6KwUWUR3DwyI6gmBRnmAtYaWehwQ==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.18.9.tgz", + "integrity": "sha512-1LIb1eL8APMy91/IMW+31ckrfBM4yCoLaVzoDhZUKSM4cu1L1nIidyxkCgzPAgrC5WEz36IPEr/eSeSF9pIn+g==", "requires": { "@ampproject/remapping": "^2.1.0", "@babel/code-frame": "^7.18.6", - "@babel/generator": "^7.18.6", - "@babel/helper-compilation-targets": "^7.18.6", - "@babel/helper-module-transforms": "^7.18.6", - "@babel/helpers": "^7.18.6", - "@babel/parser": "^7.18.6", + "@babel/generator": "^7.18.9", + "@babel/helper-compilation-targets": "^7.18.9", + "@babel/helper-module-transforms": "^7.18.9", + "@babel/helpers": "^7.18.9", + "@babel/parser": "^7.18.9", "@babel/template": "^7.18.6", - "@babel/traverse": "^7.18.6", - "@babel/types": "^7.18.6", + "@babel/traverse": "^7.18.9", + "@babel/types": "^7.18.9", "convert-source-map": "^1.7.0", "debug": "^4.1.0", "gensync": "^1.0.0-beta.2", @@ -103,9 +103,9 @@ } }, "@babel/eslint-parser": { - "version": "7.18.2", - "resolved": "https://registry.npmjs.org/@babel/eslint-parser/-/eslint-parser-7.18.2.tgz", - "integrity": "sha512-oFQYkE8SuH14+uR51JVAmdqwKYXGRjEXx7s+WiagVjqQ+HPE+nnwyF2qlVG8evUsUHmPcA+6YXMEDbIhEyQc5A==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/eslint-parser/-/eslint-parser-7.18.9.tgz", + "integrity": "sha512-KzSGpMBggz4fKbRbWLNyPVTuQr6cmCcBhOyXTw/fieOVaw5oYAwcAj4a7UKcDYCPxQq+CG1NCDZH9e2JTXquiQ==", "requires": { "eslint-scope": "^5.1.1", "eslint-visitor-keys": "^2.1.0", @@ -120,11 +120,11 @@ } }, "@babel/generator": { - "version": "7.18.7", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.18.7.tgz", - "integrity": "sha512-shck+7VLlY72a2w9c3zYWuE1pwOKEiQHV7GTUbSnhyl5eu3i04t30tBY82ZRWrDfo3gkakCFtevExnxbkf2a3A==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.18.9.tgz", + "integrity": "sha512-wt5Naw6lJrL1/SGkipMiFxJjtyczUWTP38deiP1PO60HsBjDeKk08CGC3S8iVuvf0FmTdgKwU1KIXzSKL1G0Ug==", "requires": { - "@babel/types": "^7.18.7", + "@babel/types": "^7.18.9", "@jridgewell/gen-mapping": "^0.3.2", "jsesc": "^2.5.1" }, @@ -150,20 +150,20 @@ } }, "@babel/helper-builder-binary-assignment-operator-visitor": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.18.6.tgz", - "integrity": "sha512-KT10c1oWEpmrIRYnthbzHgoOf6B+Xd6a5yhdbNtdhtG7aO1or5HViuf1TQR36xY/QprXA5nvxO6nAjhJ4y38jw==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.18.9.tgz", + "integrity": "sha512-yFQ0YCHoIqarl8BCRwBL8ulYUaZpz3bNsA7oFepAzee+8/+ImtADXNOmO5vJvsPff3qi+hvpkY/NYBTrBQgdNw==", "requires": { "@babel/helper-explode-assignable-expression": "^7.18.6", - "@babel/types": "^7.18.6" + "@babel/types": "^7.18.9" } }, "@babel/helper-compilation-targets": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.18.6.tgz", - "integrity": "sha512-vFjbfhNCzqdeAtZflUFrG5YIFqGTqsctrtkZ1D/NB0mDW9TwW3GmmUepYY4G9wCET5rY5ugz4OGTcLd614IzQg==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.18.9.tgz", + "integrity": "sha512-tzLCyVmqUiFlcFoAPLA/gL9TeYrF61VLNtb+hvkuVaB5SUjW7jcfrglBIX1vUIoT7CLP3bBlIMeyEsIl2eFQNg==", "requires": { - "@babel/compat-data": "^7.18.6", + "@babel/compat-data": "^7.18.8", "@babel/helper-validator-option": "^7.18.6", "browserslist": "^4.20.2", "semver": "^6.3.0" @@ -177,16 +177,16 @@ } }, "@babel/helper-create-class-features-plugin": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.18.6.tgz", - "integrity": "sha512-YfDzdnoxHGV8CzqHGyCbFvXg5QESPFkXlHtvdCkesLjjVMT2Adxe4FGUR5ChIb3DxSaXO12iIOCWoXdsUVwnqw==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.18.9.tgz", + "integrity": "sha512-WvypNAYaVh23QcjpMR24CwZY2Nz6hqdOcFdPbNpV56hL5H6KiFheO7Xm1aPdlLQ7d5emYZX7VZwPp9x3z+2opw==", "requires": { "@babel/helper-annotate-as-pure": "^7.18.6", - "@babel/helper-environment-visitor": "^7.18.6", - "@babel/helper-function-name": "^7.18.6", - "@babel/helper-member-expression-to-functions": "^7.18.6", + "@babel/helper-environment-visitor": "^7.18.9", + "@babel/helper-function-name": "^7.18.9", + "@babel/helper-member-expression-to-functions": "^7.18.9", "@babel/helper-optimise-call-expression": "^7.18.6", - "@babel/helper-replace-supers": "^7.18.6", + "@babel/helper-replace-supers": "^7.18.9", "@babel/helper-split-export-declaration": "^7.18.6" } }, @@ -230,9 +230,9 @@ } }, "@babel/helper-environment-visitor": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.18.6.tgz", - "integrity": "sha512-8n6gSfn2baOY+qlp+VSzsosjCVGFqWKmDF0cCWOybh52Dw3SEyoWR1KrhMJASjLwIEkkAufZ0xvr+SxLHSpy2Q==" + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.18.9.tgz", + "integrity": "sha512-3r/aACDJ3fhQ/EVgFy0hpj8oHyHpQc+LPtJoY9SzTThAsStm4Ptegq92vqKoE3vD706ZVFWITnMnxucw+S9Ipg==" }, "@babel/helper-explode-assignable-expression": { "version": "7.18.6", @@ -243,12 +243,12 @@ } }, "@babel/helper-function-name": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.18.6.tgz", - "integrity": "sha512-0mWMxV1aC97dhjCah5U5Ua7668r5ZmSC2DLfH2EZnf9c3/dHZKiFa5pRLMH5tjSl471tY6496ZWk/kjNONBxhw==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.18.9.tgz", + "integrity": "sha512-fJgWlZt7nxGksJS9a0XdSaI4XvpExnNIgRP+rVefWh5U7BL8pPuir6SJUmFKRfjWQ51OtWSzwOxhaH/EBWWc0A==", "requires": { "@babel/template": "^7.18.6", - "@babel/types": "^7.18.6" + "@babel/types": "^7.18.9" } }, "@babel/helper-hoist-variables": { @@ -260,11 +260,11 @@ } }, "@babel/helper-member-expression-to-functions": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.18.6.tgz", - "integrity": "sha512-CeHxqwwipekotzPDUuJOfIMtcIHBuc7WAzLmTYWctVigqS5RktNMQ5bEwQSuGewzYnCtTWa3BARXeiLxDTv+Ng==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.18.9.tgz", + "integrity": "sha512-RxifAh2ZoVU67PyKIO4AMi1wTenGfMR/O/ae0CCRqwgBAt5v7xjdtRw7UoSbsreKrQn5t7r89eruK/9JjYHuDg==", "requires": { - "@babel/types": "^7.18.6" + "@babel/types": "^7.18.9" } }, "@babel/helper-module-imports": { @@ -276,18 +276,18 @@ } }, "@babel/helper-module-transforms": { - "version": "7.18.8", - "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.18.8.tgz", - "integrity": "sha512-che3jvZwIcZxrwh63VfnFTUzcAM9v/lznYkkRxIBGMPt1SudOKHAEec0SIRCfiuIzTcF7VGj/CaTT6gY4eWxvA==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.18.9.tgz", + "integrity": "sha512-KYNqY0ICwfv19b31XzvmI/mfcylOzbLtowkw+mfvGPAQ3kfCnMLYbED3YecL5tPd8nAYFQFAd6JHp2LxZk/J1g==", "requires": { - "@babel/helper-environment-visitor": "^7.18.6", + "@babel/helper-environment-visitor": "^7.18.9", "@babel/helper-module-imports": "^7.18.6", "@babel/helper-simple-access": "^7.18.6", "@babel/helper-split-export-declaration": "^7.18.6", "@babel/helper-validator-identifier": "^7.18.6", "@babel/template": "^7.18.6", - "@babel/traverse": "^7.18.8", - "@babel/types": "^7.18.8" + "@babel/traverse": "^7.18.9", + "@babel/types": "^7.18.9" } }, "@babel/helper-optimise-call-expression": { @@ -299,31 +299,31 @@ } }, "@babel/helper-plugin-utils": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.18.6.tgz", - "integrity": "sha512-gvZnm1YAAxh13eJdkb9EWHBnF3eAub3XTLCZEehHT2kWxiKVRL64+ae5Y6Ivne0mVHmMYKT+xWgZO+gQhuLUBg==" + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.18.9.tgz", + "integrity": "sha512-aBXPT3bmtLryXaoJLyYPXPlSD4p1ld9aYeR+sJNOZjJJGiOpb+fKfh3NkcCu7J54nUJwCERPBExCCpyCOHnu/w==" }, "@babel/helper-remap-async-to-generator": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.18.6.tgz", - "integrity": "sha512-z5wbmV55TveUPZlCLZvxWHtrjuJd+8inFhk7DG0WW87/oJuGDcjDiu7HIvGcpf5464L6xKCg3vNkmlVVz9hwyQ==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.18.9.tgz", + "integrity": "sha512-dI7q50YKd8BAv3VEfgg7PS7yD3Rtbi2J1XMXaalXO0W0164hYLnh8zpjRS0mte9MfVp/tltvr/cfdXPvJr1opA==", "requires": { "@babel/helper-annotate-as-pure": "^7.18.6", - "@babel/helper-environment-visitor": "^7.18.6", - "@babel/helper-wrap-function": "^7.18.6", - "@babel/types": "^7.18.6" + "@babel/helper-environment-visitor": "^7.18.9", + "@babel/helper-wrap-function": "^7.18.9", + "@babel/types": "^7.18.9" } }, "@babel/helper-replace-supers": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.18.6.tgz", - "integrity": "sha512-fTf7zoXnUGl9gF25fXCWE26t7Tvtyn6H4hkLSYhATwJvw2uYxd3aoXplMSe0g9XbwK7bmxNes7+FGO0rB/xC0g==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.18.9.tgz", + "integrity": "sha512-dNsWibVI4lNT6HiuOIBr1oyxo40HvIVmbwPUm3XZ7wMh4k2WxrxTqZwSqw/eEmXDS9np0ey5M2bz9tBmO9c+YQ==", "requires": { - "@babel/helper-environment-visitor": "^7.18.6", - "@babel/helper-member-expression-to-functions": "^7.18.6", + "@babel/helper-environment-visitor": "^7.18.9", + "@babel/helper-member-expression-to-functions": "^7.18.9", "@babel/helper-optimise-call-expression": "^7.18.6", - "@babel/traverse": "^7.18.6", - "@babel/types": "^7.18.6" + "@babel/traverse": "^7.18.9", + "@babel/types": "^7.18.9" } }, "@babel/helper-simple-access": { @@ -335,11 +335,11 @@ } }, "@babel/helper-skip-transparent-expression-wrappers": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.18.6.tgz", - "integrity": "sha512-4KoLhwGS9vGethZpAhYnMejWkX64wsnHPDwvOsKWU6Fg4+AlK2Jz3TyjQLMEPvz+1zemi/WBdkYxCD0bAfIkiw==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.18.9.tgz", + "integrity": "sha512-imytd2gHi3cJPsybLRbmFrF7u5BIEuI2cNheyKi3/iOBC63kNn3q8Crn2xVuESli0aM4KYsyEqKyS7lFL8YVtw==", "requires": { - "@babel/types": "^7.18.6" + "@babel/types": "^7.18.9" } }, "@babel/helper-split-export-declaration": { @@ -361,24 +361,24 @@ "integrity": "sha512-XO7gESt5ouv/LRJdrVjkShckw6STTaB7l9BrpBaAHDeF5YZT+01PCwmR0SJHnkW6i8OwW/EVWRShfi4j2x+KQw==" }, "@babel/helper-wrap-function": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.18.6.tgz", - "integrity": "sha512-I5/LZfozwMNbwr/b1vhhuYD+J/mU+gfGAj5td7l5Rv9WYmH6i3Om69WGKNmlIpsVW/mF6O5bvTKbvDQZVgjqOw==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.18.9.tgz", + "integrity": "sha512-cG2ru3TRAL6a60tfQflpEfs4ldiPwF6YW3zfJiRgmoFVIaC1vGnBBgatfec+ZUziPHkHSaXAuEck3Cdkf3eRpQ==", "requires": { - "@babel/helper-function-name": "^7.18.6", + "@babel/helper-function-name": "^7.18.9", "@babel/template": "^7.18.6", - "@babel/traverse": "^7.18.6", - "@babel/types": "^7.18.6" + "@babel/traverse": "^7.18.9", + "@babel/types": "^7.18.9" } }, "@babel/helpers": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.18.6.tgz", - "integrity": "sha512-vzSiiqbQOghPngUYt/zWGvK3LAsPhz55vc9XNN0xAl2gV4ieShI2OQli5duxWHD+72PZPTKAcfcZDE1Cwc5zsQ==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.18.9.tgz", + "integrity": "sha512-Jf5a+rbrLoR4eNdUmnFu8cN5eNJT6qdTdOg5IHIzq87WwyRw9PwguLFOWYgktN/60IP4fgDUawJvs7PjQIzELQ==", "requires": { "@babel/template": "^7.18.6", - "@babel/traverse": "^7.18.6", - "@babel/types": "^7.18.6" + "@babel/traverse": "^7.18.9", + "@babel/types": "^7.18.9" } }, "@babel/highlight": { @@ -404,9 +404,9 @@ } }, "@babel/parser": { - "version": "7.18.8", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.18.8.tgz", - "integrity": "sha512-RSKRfYX20dyH+elbJK2uqAkVyucL+xXzhqlMD5/ZXx+dAAwpyB7HsvnHe/ZUGOF+xLr5Wx9/JoXVTj6BQE2/oA==" + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.18.9.tgz", + "integrity": "sha512-9uJveS9eY9DJ0t64YbIBZICtJy8a5QrDEVdiLCG97fVLpDTpGX7t8mMSb6OWw6Lrnjqj4O8zwjELX3dhoMgiBg==" }, "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": { "version": "7.18.6", @@ -417,13 +417,13 @@ } }, "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.18.6.tgz", - "integrity": "sha512-Udgu8ZRgrBrttVz6A0EVL0SJ1z+RLbIeqsu632SA1hf0awEppD6TvdznoH+orIF8wtFFAV/Enmw9Y+9oV8TQcw==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.18.9.tgz", + "integrity": "sha512-AHrP9jadvH7qlOj6PINbgSuphjQUAK7AOT7DPjBo9EHoLhQTnnK5u45e1Hd4DbSQEO9nqPWtQ89r+XEOWFScKg==", "requires": { - "@babel/helper-plugin-utils": "^7.18.6", - "@babel/helper-skip-transparent-expression-wrappers": "^7.18.6", - "@babel/plugin-proposal-optional-chaining": "^7.18.6" + "@babel/helper-plugin-utils": "^7.18.9", + "@babel/helper-skip-transparent-expression-wrappers": "^7.18.9", + "@babel/plugin-proposal-optional-chaining": "^7.18.9" } }, "@babel/plugin-proposal-async-generator-functions": { @@ -466,11 +466,11 @@ } }, "@babel/plugin-proposal-export-namespace-from": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.18.6.tgz", - "integrity": "sha512-zr/QcUlUo7GPo6+X1wC98NJADqmy5QTFWWhqeQWiki4XHafJtLl/YMGkmRB2szDD2IYJCCdBTd4ElwhId9T7Xw==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.18.9.tgz", + "integrity": "sha512-k1NtHyOMvlDDFeb9G5PhUXuGj8m/wiwojgQVEhJ/fsVsMCpLyOP4h0uGEjYJKrRI+EVPlb5Jk+Gt9P97lOGwtA==", "requires": { - "@babel/helper-plugin-utils": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.9", "@babel/plugin-syntax-export-namespace-from": "^7.8.3" } }, @@ -484,11 +484,11 @@ } }, "@babel/plugin-proposal-logical-assignment-operators": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.18.6.tgz", - "integrity": "sha512-zMo66azZth/0tVd7gmkxOkOjs2rpHyhpcFo565PUP37hSp6hSd9uUKIfTDFMz58BwqgQKhJ9YxtM5XddjXVn+Q==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.18.9.tgz", + "integrity": "sha512-128YbMpjCrP35IOExw2Fq+x55LMP42DzhOhX2aNNIdI9avSWl2PI0yuBWarr3RYpZBSPtabfadkH2yeRiMD61Q==", "requires": { - "@babel/helper-plugin-utils": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.9", "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4" } }, @@ -511,15 +511,15 @@ } }, "@babel/plugin-proposal-object-rest-spread": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.18.6.tgz", - "integrity": "sha512-9yuM6wr4rIsKa1wlUAbZEazkCrgw2sMPEXCr4Rnwetu7cEW1NydkCWytLuYletbf8vFxdJxFhwEZqMpOx2eZyw==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.18.9.tgz", + "integrity": "sha512-kDDHQ5rflIeY5xl69CEqGEZ0KY369ehsCIEbTGb4siHG5BE9sga/T0r0OUwyZNLMmZE79E1kbsqAjwFCW4ds6Q==", "requires": { - "@babel/compat-data": "^7.18.6", - "@babel/helper-compilation-targets": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6", + "@babel/compat-data": "^7.18.8", + "@babel/helper-compilation-targets": "^7.18.9", + "@babel/helper-plugin-utils": "^7.18.9", "@babel/plugin-syntax-object-rest-spread": "^7.8.3", - "@babel/plugin-transform-parameters": "^7.18.6" + "@babel/plugin-transform-parameters": "^7.18.8" } }, "@babel/plugin-proposal-optional-catch-binding": { @@ -532,12 +532,12 @@ } }, "@babel/plugin-proposal-optional-chaining": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.18.6.tgz", - "integrity": "sha512-PatI6elL5eMzoypFAiYDpYQyMtXTn+iMhuxxQt5mAXD4fEmKorpSI3PHd+i3JXBJN3xyA6MvJv7at23HffFHwA==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.18.9.tgz", + "integrity": "sha512-v5nwt4IqBXihxGsW2QmCWMDS3B3bzGIk/EQVZz2ei7f3NJl8NzAJVvUmpDW5q1CRNY+Beb/k58UAH1Km1N411w==", "requires": { - "@babel/helper-plugin-utils": "^7.18.6", - "@babel/helper-skip-transparent-expression-wrappers": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.9", + "@babel/helper-skip-transparent-expression-wrappers": "^7.18.9", "@babel/plugin-syntax-optional-chaining": "^7.8.3" } }, @@ -741,42 +741,42 @@ } }, "@babel/plugin-transform-block-scoping": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.18.6.tgz", - "integrity": "sha512-pRqwb91C42vs1ahSAWJkxOxU1RHWDn16XAa6ggQ72wjLlWyYeAcLvTtE0aM8ph3KNydy9CQF2nLYcjq1WysgxQ==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.18.9.tgz", + "integrity": "sha512-5sDIJRV1KtQVEbt/EIBwGy4T01uYIo4KRB3VUqzkhrAIOGx7AoctL9+Ux88btY0zXdDyPJ9mW+bg+v+XEkGmtw==", "requires": { - "@babel/helper-plugin-utils": "^7.18.6" + "@babel/helper-plugin-utils": "^7.18.9" } }, "@babel/plugin-transform-classes": { - "version": "7.18.8", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.18.8.tgz", - "integrity": "sha512-RySDoXdF6hgHSHuAW4aLGyVQdmvEX/iJtjVre52k0pxRq4hzqze+rAVP++NmNv596brBpYmaiKgTZby7ziBnVg==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.18.9.tgz", + "integrity": "sha512-EkRQxsxoytpTlKJmSPYrsOMjCILacAjtSVkd4gChEe2kXjFCun3yohhW5I7plXJhCemM0gKsaGMcO8tinvCA5g==", "requires": { "@babel/helper-annotate-as-pure": "^7.18.6", - "@babel/helper-environment-visitor": "^7.18.6", - "@babel/helper-function-name": "^7.18.6", + "@babel/helper-environment-visitor": "^7.18.9", + "@babel/helper-function-name": "^7.18.9", "@babel/helper-optimise-call-expression": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6", - "@babel/helper-replace-supers": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.9", + "@babel/helper-replace-supers": "^7.18.9", "@babel/helper-split-export-declaration": "^7.18.6", "globals": "^11.1.0" } }, "@babel/plugin-transform-computed-properties": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.18.6.tgz", - "integrity": "sha512-9repI4BhNrR0KenoR9vm3/cIc1tSBIo+u1WVjKCAynahj25O8zfbiE6JtAtHPGQSs4yZ+bA8mRasRP+qc+2R5A==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.18.9.tgz", + "integrity": "sha512-+i0ZU1bCDymKakLxn5srGHrsAPRELC2WIbzwjLhHW9SIE1cPYkLCL0NlnXMZaM1vhfgA2+M7hySk42VBvrkBRw==", "requires": { - "@babel/helper-plugin-utils": "^7.18.6" + "@babel/helper-plugin-utils": "^7.18.9" } }, "@babel/plugin-transform-destructuring": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.18.6.tgz", - "integrity": "sha512-tgy3u6lRp17ilY8r1kP4i2+HDUwxlVqq3RTc943eAWSzGgpU1qhiKpqZ5CMyHReIYPHdo3Kg8v8edKtDqSVEyQ==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.18.9.tgz", + "integrity": "sha512-p5VCYNddPLkZTq4XymQIaIfZNJwT9YsjkPOhkVEqt6QIpQFZVM9IltqqYpOEkJoN1DPznmxUDyZ5CTZs/ZCuHA==", "requires": { - "@babel/helper-plugin-utils": "^7.18.6" + "@babel/helper-plugin-utils": "^7.18.9" } }, "@babel/plugin-transform-dotall-regex": { @@ -789,11 +789,11 @@ } }, "@babel/plugin-transform-duplicate-keys": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.18.6.tgz", - "integrity": "sha512-NJU26U/208+sxYszf82nmGYqVF9QN8py2HFTblPT9hbawi8+1C5a9JubODLTGFuT0qlkqVinmkwOD13s0sZktg==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.18.9.tgz", + "integrity": "sha512-d2bmXCtZXYc59/0SanQKbiWINadaJXqtvIQIzd4+hNwkWBgyCd5F/2t1kXoUdvPMrxzPvhK6EMQRROxsue+mfw==", "requires": { - "@babel/helper-plugin-utils": "^7.18.6" + "@babel/helper-plugin-utils": "^7.18.9" } }, "@babel/plugin-transform-exponentiation-operator": { @@ -806,11 +806,11 @@ } }, "@babel/plugin-transform-flow-strip-types": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.18.6.tgz", - "integrity": "sha512-wE0xtA7csz+hw4fKPwxmu5jnzAsXPIO57XnRwzXP3T19jWh1BODnPGoG9xKYwvAwusP7iUktHayRFbMPGtODaQ==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.18.9.tgz", + "integrity": "sha512-+G6rp2zRuOAInY5wcggsx4+QVao1qPM0osC9fTUVlAV3zOrzTCnrMAFVnR6+a3T8wz1wFIH7KhYMcMB3u1n80A==", "requires": { - "@babel/helper-plugin-utils": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.9", "@babel/plugin-syntax-flow": "^7.18.6" } }, @@ -823,21 +823,21 @@ } }, "@babel/plugin-transform-function-name": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.18.6.tgz", - "integrity": "sha512-kJha/Gbs5RjzIu0CxZwf5e3aTTSlhZnHMT8zPWnJMjNpLOUgqevg+PN5oMH68nMCXnfiMo4Bhgxqj59KHTlAnA==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.18.9.tgz", + "integrity": "sha512-WvIBoRPaJQ5yVHzcnJFor7oS5Ls0PYixlTYE63lCj2RtdQEl15M68FXQlxnG6wdraJIXRdR7KI+hQ7q/9QjrCQ==", "requires": { - "@babel/helper-compilation-targets": "^7.18.6", - "@babel/helper-function-name": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6" + "@babel/helper-compilation-targets": "^7.18.9", + "@babel/helper-function-name": "^7.18.9", + "@babel/helper-plugin-utils": "^7.18.9" } }, "@babel/plugin-transform-literals": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.18.6.tgz", - "integrity": "sha512-x3HEw0cJZVDoENXOp20HlypIHfl0zMIhMVZEBVTfmqbObIpsMxMbmU5nOEO8R7LYT+z5RORKPlTI5Hj4OsO9/Q==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.18.9.tgz", + "integrity": "sha512-IFQDSRoTPnrAIrI5zoZv73IFeZu2dhu6irxQjY9rNjTT53VmKg9fenjvoiOWOkJ6mm4jKVPtdMzBY98Fp4Z4cg==", "requires": { - "@babel/helper-plugin-utils": "^7.18.6" + "@babel/helper-plugin-utils": "^7.18.9" } }, "@babel/plugin-transform-member-expression-literals": { @@ -870,13 +870,13 @@ } }, "@babel/plugin-transform-modules-systemjs": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.18.6.tgz", - "integrity": "sha512-UbPYpXxLjTw6w6yXX2BYNxF3p6QY225wcTkfQCy3OMnSlS/C3xGtwUjEzGkldb/sy6PWLiCQ3NbYfjWUTI3t4g==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.18.9.tgz", + "integrity": "sha512-zY/VSIbbqtoRoJKo2cDTewL364jSlZGvn0LKOf9ntbfxOvjfmyrdtEEOAdswOswhZEb8UH3jDkCKHd1sPgsS0A==", "requires": { "@babel/helper-hoist-variables": "^7.18.6", - "@babel/helper-module-transforms": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6", + "@babel/helper-module-transforms": "^7.18.9", + "@babel/helper-plugin-utils": "^7.18.9", "@babel/helper-validator-identifier": "^7.18.6", "babel-plugin-dynamic-import-node": "^2.3.3" } @@ -987,12 +987,12 @@ } }, "@babel/plugin-transform-runtime": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.18.6.tgz", - "integrity": "sha512-8uRHk9ZmRSnWqUgyae249EJZ94b0yAGLBIqzZzl+0iEdbno55Pmlt/32JZsHwXD9k/uZj18Aqqk35wBX4CBTXA==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.18.9.tgz", + "integrity": "sha512-wS8uJwBt7/b/mzE13ktsJdmS4JP/j7PQSaADtnb4I2wL0zK51MQ0pmF8/Jy0wUIS96fr+fXT6S/ifiPXnvrlSg==", "requires": { "@babel/helper-module-imports": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.9", "babel-plugin-polyfill-corejs2": "^0.3.1", "babel-plugin-polyfill-corejs3": "^0.5.2", "babel-plugin-polyfill-regenerator": "^0.3.1", @@ -1015,12 +1015,12 @@ } }, "@babel/plugin-transform-spread": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.18.6.tgz", - "integrity": "sha512-ayT53rT/ENF8WWexIRg9AiV9h0aIteyWn5ptfZTZQrjk/+f3WdrJGCY4c9wcgl2+MKkKPhzbYp97FTsquZpDCw==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.18.9.tgz", + "integrity": "sha512-39Q814wyoOPtIB/qGopNIL9xDChOE1pNU0ZY5dO0owhiVt/5kFm4li+/bBtwc7QotG0u5EPzqhZdjMtmqBqyQA==", "requires": { - "@babel/helper-plugin-utils": "^7.18.6", - "@babel/helper-skip-transparent-expression-wrappers": "^7.18.6" + "@babel/helper-plugin-utils": "^7.18.9", + "@babel/helper-skip-transparent-expression-wrappers": "^7.18.9" } }, "@babel/plugin-transform-sticky-regex": { @@ -1032,19 +1032,19 @@ } }, "@babel/plugin-transform-template-literals": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.18.6.tgz", - "integrity": "sha512-UuqlRrQmT2SWRvahW46cGSany0uTlcj8NYOS5sRGYi8FxPYPoLd5DDmMd32ZXEj2Jq+06uGVQKHxa/hJx2EzKw==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.18.9.tgz", + "integrity": "sha512-S8cOWfT82gTezpYOiVaGHrCbhlHgKhQt8XH5ES46P2XWmX92yisoZywf5km75wv5sYcXDUCLMmMxOLCtthDgMA==", "requires": { - "@babel/helper-plugin-utils": "^7.18.6" + "@babel/helper-plugin-utils": "^7.18.9" } }, "@babel/plugin-transform-typeof-symbol": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.18.6.tgz", - "integrity": "sha512-7m71iS/QhsPk85xSjFPovHPcH3H9qeyzsujhTc+vcdnsXavoWYJ74zx0lP5RhpC5+iDnVLO+PPMHzC11qels1g==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.18.9.tgz", + "integrity": "sha512-SRfwTtF11G2aemAZWivL7PD+C9z52v9EvMqH9BuYbabyPuKUvSWks3oCg6041pT925L4zVFqaVBeECwsmlguEw==", "requires": { - "@babel/helper-plugin-utils": "^7.18.6" + "@babel/helper-plugin-utils": "^7.18.9" } }, "@babel/plugin-transform-typescript": { @@ -1075,28 +1075,28 @@ } }, "@babel/preset-env": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.18.6.tgz", - "integrity": "sha512-WrthhuIIYKrEFAwttYzgRNQ5hULGmwTj+D6l7Zdfsv5M7IWV/OZbUfbeL++Qrzx1nVJwWROIFhCHRYQV4xbPNw==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.18.9.tgz", + "integrity": "sha512-75pt/q95cMIHWssYtyfjVlvI+QEZQThQbKvR9xH+F/Agtw/s4Wfc2V9Bwd/P39VtixB7oWxGdH4GteTTwYJWMg==", "requires": { - "@babel/compat-data": "^7.18.6", - "@babel/helper-compilation-targets": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6", + "@babel/compat-data": "^7.18.8", + "@babel/helper-compilation-targets": "^7.18.9", + "@babel/helper-plugin-utils": "^7.18.9", "@babel/helper-validator-option": "^7.18.6", "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "^7.18.6", - "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.18.6", + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.18.9", "@babel/plugin-proposal-async-generator-functions": "^7.18.6", "@babel/plugin-proposal-class-properties": "^7.18.6", "@babel/plugin-proposal-class-static-block": "^7.18.6", "@babel/plugin-proposal-dynamic-import": "^7.18.6", - "@babel/plugin-proposal-export-namespace-from": "^7.18.6", + "@babel/plugin-proposal-export-namespace-from": "^7.18.9", "@babel/plugin-proposal-json-strings": "^7.18.6", - "@babel/plugin-proposal-logical-assignment-operators": "^7.18.6", + "@babel/plugin-proposal-logical-assignment-operators": "^7.18.9", "@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6", "@babel/plugin-proposal-numeric-separator": "^7.18.6", - "@babel/plugin-proposal-object-rest-spread": "^7.18.6", + "@babel/plugin-proposal-object-rest-spread": "^7.18.9", "@babel/plugin-proposal-optional-catch-binding": "^7.18.6", - "@babel/plugin-proposal-optional-chaining": "^7.18.6", + "@babel/plugin-proposal-optional-chaining": "^7.18.9", "@babel/plugin-proposal-private-methods": "^7.18.6", "@babel/plugin-proposal-private-property-in-object": "^7.18.6", "@babel/plugin-proposal-unicode-property-regex": "^7.18.6", @@ -1118,37 +1118,37 @@ "@babel/plugin-transform-arrow-functions": "^7.18.6", "@babel/plugin-transform-async-to-generator": "^7.18.6", "@babel/plugin-transform-block-scoped-functions": "^7.18.6", - "@babel/plugin-transform-block-scoping": "^7.18.6", - "@babel/plugin-transform-classes": "^7.18.6", - "@babel/plugin-transform-computed-properties": "^7.18.6", - "@babel/plugin-transform-destructuring": "^7.18.6", + "@babel/plugin-transform-block-scoping": "^7.18.9", + "@babel/plugin-transform-classes": "^7.18.9", + "@babel/plugin-transform-computed-properties": "^7.18.9", + "@babel/plugin-transform-destructuring": "^7.18.9", "@babel/plugin-transform-dotall-regex": "^7.18.6", - "@babel/plugin-transform-duplicate-keys": "^7.18.6", + "@babel/plugin-transform-duplicate-keys": "^7.18.9", "@babel/plugin-transform-exponentiation-operator": "^7.18.6", - "@babel/plugin-transform-for-of": "^7.18.6", - "@babel/plugin-transform-function-name": "^7.18.6", - "@babel/plugin-transform-literals": "^7.18.6", + "@babel/plugin-transform-for-of": "^7.18.8", + "@babel/plugin-transform-function-name": "^7.18.9", + "@babel/plugin-transform-literals": "^7.18.9", "@babel/plugin-transform-member-expression-literals": "^7.18.6", "@babel/plugin-transform-modules-amd": "^7.18.6", "@babel/plugin-transform-modules-commonjs": "^7.18.6", - "@babel/plugin-transform-modules-systemjs": "^7.18.6", + "@babel/plugin-transform-modules-systemjs": "^7.18.9", "@babel/plugin-transform-modules-umd": "^7.18.6", "@babel/plugin-transform-named-capturing-groups-regex": "^7.18.6", "@babel/plugin-transform-new-target": "^7.18.6", "@babel/plugin-transform-object-super": "^7.18.6", - "@babel/plugin-transform-parameters": "^7.18.6", + "@babel/plugin-transform-parameters": "^7.18.8", "@babel/plugin-transform-property-literals": "^7.18.6", "@babel/plugin-transform-regenerator": "^7.18.6", "@babel/plugin-transform-reserved-words": "^7.18.6", "@babel/plugin-transform-shorthand-properties": "^7.18.6", - "@babel/plugin-transform-spread": "^7.18.6", + "@babel/plugin-transform-spread": "^7.18.9", "@babel/plugin-transform-sticky-regex": "^7.18.6", - "@babel/plugin-transform-template-literals": "^7.18.6", - "@babel/plugin-transform-typeof-symbol": "^7.18.6", + "@babel/plugin-transform-template-literals": "^7.18.9", + "@babel/plugin-transform-typeof-symbol": "^7.18.9", "@babel/plugin-transform-unicode-escapes": "^7.18.6", "@babel/plugin-transform-unicode-regex": "^7.18.6", "@babel/preset-modules": "^0.1.5", - "@babel/types": "^7.18.6", + "@babel/types": "^7.18.9", "babel-plugin-polyfill-corejs2": "^0.3.1", "babel-plugin-polyfill-corejs3": "^0.5.2", "babel-plugin-polyfill-regenerator": "^0.3.1", @@ -1199,17 +1199,17 @@ } }, "@babel/runtime": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.18.6.tgz", - "integrity": "sha512-t9wi7/AW6XtKahAe20Yw0/mMljKq0B1r2fPdvaAdV/KPDZewFXdaaa6K7lxmZBZ8FBNpCiAT6iHPmd6QO9bKfQ==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.18.9.tgz", + "integrity": "sha512-lkqXDcvlFT5rvEjiu6+QYO+1GXrEHRo2LOtS7E4GtX5ESIZOgepqsZBVIj6Pv+a6zqsya9VCgiK1KAK4BvJDAw==", "requires": { "regenerator-runtime": "^0.13.4" } }, "@babel/runtime-corejs3": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/runtime-corejs3/-/runtime-corejs3-7.18.6.tgz", - "integrity": "sha512-cOu5wH2JFBgMjje+a+fz2JNIWU4GzYpl05oSob3UDvBEh6EuIn+TXFHMmBbhSb+k/4HMzgKCQfEEDArAWNF9Cw==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/runtime-corejs3/-/runtime-corejs3-7.18.9.tgz", + "integrity": "sha512-qZEWeccZCrHA2Au4/X05QW5CMdm4VjUDCrGq5gf1ZDcM4hRqreKrtwAn7yci9zfgAS9apvnsFXiGBHBAxZdK9A==", "requires": { "core-js-pure": "^3.20.2", "regenerator-runtime": "^0.13.4" @@ -1226,18 +1226,18 @@ } }, "@babel/traverse": { - "version": "7.18.8", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.18.8.tgz", - "integrity": "sha512-UNg/AcSySJYR/+mIcJQDCv00T+AqRO7j/ZEJLzpaYtgM48rMg5MnkJgyNqkzo88+p4tfRvZJCEiwwfG6h4jkRg==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.18.9.tgz", + "integrity": "sha512-LcPAnujXGwBgv3/WHv01pHtb2tihcyW1XuL9wd7jqh1Z8AQkTd+QVjMrMijrln0T7ED3UXLIy36P9Ao7W75rYg==", "requires": { "@babel/code-frame": "^7.18.6", - "@babel/generator": "^7.18.7", - "@babel/helper-environment-visitor": "^7.18.6", - "@babel/helper-function-name": "^7.18.6", + "@babel/generator": "^7.18.9", + "@babel/helper-environment-visitor": "^7.18.9", + "@babel/helper-function-name": "^7.18.9", "@babel/helper-hoist-variables": "^7.18.6", "@babel/helper-split-export-declaration": "^7.18.6", - "@babel/parser": "^7.18.8", - "@babel/types": "^7.18.8", + "@babel/parser": "^7.18.9", + "@babel/types": "^7.18.9", "debug": "^4.1.0", "globals": "^11.1.0" }, @@ -1253,9 +1253,9 @@ } }, "@babel/types": { - "version": "7.18.8", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.8.tgz", - "integrity": "sha512-qwpdsmraq0aJ3osLJRApsc2ouSJCdnMeZwB0DhbtHAtRpZNZCdlbRnHIgcRKzdE1g0iOGg644fzjOBcdOz9cPw==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.9.tgz", + "integrity": "sha512-WwMLAg2MvJmt/rKEVQBBhIVffMmnilX4oe0sRe7iPOHIGsqpruFHHdrfj4O1CMMtgMtCU4oPafZjDPCRgO57Wg==", "requires": { "@babel/helper-validator-identifier": "^7.18.6", "to-fast-properties": "^2.0.0" @@ -1317,239 +1317,14 @@ } }, "@gatsbyjs/parcel-namer-relative-to-cwd": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/@gatsbyjs/parcel-namer-relative-to-cwd/-/parcel-namer-relative-to-cwd-1.3.2.tgz", - "integrity": "sha512-jiYGiq8Zk21x2IIWbsLQ0GqgGJyKjj+/4jYwr5msD5ORB/JAZLk4IDrMKZ9rFXkNPq/bRV57ub0k/NvRMELfLQ==", + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/@gatsbyjs/parcel-namer-relative-to-cwd/-/parcel-namer-relative-to-cwd-1.4.0.tgz", + "integrity": "sha512-oXhiaPtYTGYqGZlazYRUabWVHWx5z6sAyBVLhUnpsKcBsK815cET+mjeWDKpmvJmFTKHC72Bvy1WIEnW3++YxA==", "requires": { "@babel/runtime": "^7.18.0", "@parcel/namer-default": "2.6.2", - "@parcel/plugin": "2.6.0", - "gatsby-core-utils": "^3.18.1" - }, - "dependencies": { - "@lmdb/lmdb-darwin-arm64": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-arm64/-/lmdb-darwin-arm64-2.5.2.tgz", - "integrity": "sha512-+F8ioQIUN68B4UFiIBYu0QQvgb9FmlKw2ctQMSBfW2QBrZIxz9vD9jCGqTCPqZBRbPHAS/vG1zSXnKqnS2ch/A==", - "optional": true - }, - "@lmdb/lmdb-darwin-x64": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-x64/-/lmdb-darwin-x64-2.5.2.tgz", - "integrity": "sha512-KvPH56KRLLx4KSfKBx0m1r7GGGUMXm0jrKmNE7plbHlesZMuPJICtn07HYgQhj1LNsK7Yqwuvnqh1QxhJnF1EA==", - "optional": true - }, - "@lmdb/lmdb-linux-arm": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm/-/lmdb-linux-arm-2.5.2.tgz", - "integrity": "sha512-5kQAP21hAkfW5Bl+e0P57dV4dGYnkNIpR7f/GAh6QHlgXx+vp/teVj4PGRZaKAvt0GX6++N6hF8NnGElLDuIDw==", - "optional": true - }, - "@lmdb/lmdb-linux-arm64": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm64/-/lmdb-linux-arm64-2.5.2.tgz", - "integrity": "sha512-aLl89VHL/wjhievEOlPocoefUyWdvzVrcQ/MHQYZm2JfV1jUsrbr/ZfkPPUFvZBf+VSE+Q0clWs9l29PCX1hTQ==", - "optional": true - }, - "@lmdb/lmdb-linux-x64": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-x64/-/lmdb-linux-x64-2.5.2.tgz", - "integrity": "sha512-xUdUfwDJLGjOUPH3BuPBt0NlIrR7f/QHKgu3GZIXswMMIihAekj2i97oI0iWG5Bok/b+OBjHPfa8IU9velnP/Q==", - "optional": true - }, - "@lmdb/lmdb-win32-x64": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-win32-x64/-/lmdb-win32-x64-2.5.2.tgz", - "integrity": "sha512-zrBczSbXKxEyK2ijtbRdICDygRqWSRPpZMN5dD1T8VMEW5RIhIbwFWw2phDRXuBQdVDpSjalCIUMWMV2h3JaZA==", - "optional": true - }, - "@parcel/cache": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/@parcel/cache/-/cache-2.6.2.tgz", - "integrity": "sha512-hhJ6AsEGybeQZd9c/GYqfcKTgZKQXu3Xih6TlnP3gdR3KZoJOnb40ovHD1yYg4COvfcXThKP1cVJ18J6rcv3IA==", - "requires": { - "@parcel/fs": "2.6.2", - "@parcel/logger": "2.6.2", - "@parcel/utils": "2.6.2", - "lmdb": "2.5.2" - } - }, - "@parcel/codeframe": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/@parcel/codeframe/-/codeframe-2.6.2.tgz", - "integrity": "sha512-oFlHr6HCaYYsB4SHkU+gn9DKtbzvv3/4NdwMX0/6NAKyYVI7inEsXyPGw2Bbd2ZCFatW9QJZUETF0etvh5AEfQ==", - "requires": { - "chalk": "^4.1.0" - } - }, - "@parcel/diagnostic": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/@parcel/diagnostic/-/diagnostic-2.6.2.tgz", - "integrity": "sha512-3ODSBkKVihENU763z1/1DhGAWFhYWRxOCOShC72KXp+GFnSgGiBsxclu8NBa/N948Rzp8lqQI8U1nLcKkh0O/w==", - "requires": { - "@mischnic/json-sourcemap": "^0.1.0", - "nullthrows": "^1.1.1" - } - }, - "@parcel/events": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/@parcel/events/-/events-2.6.2.tgz", - "integrity": "sha512-IaCjOeA5ercdFVi1EZOmUHhGfIysmCUgc2Th9hMugSFO0I3GzRsBcAdP6XPfWm+TV6sQ/qZRfdk/drUxoAupnw==" - }, - "@parcel/fs": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/@parcel/fs/-/fs-2.6.2.tgz", - "integrity": "sha512-mIhqdF3tjgeoIGqW7Nc/xfM2ClID7o8livwUe5lpQEP+ZaIBiMigXs6ckv3WToCACK+3uylrSD2A/HmlhrxMqQ==", - "requires": { - "@parcel/fs-search": "2.6.2", - "@parcel/types": "2.6.2", - "@parcel/utils": "2.6.2", - "@parcel/watcher": "^2.0.0", - "@parcel/workers": "2.6.2" - } - }, - "@parcel/fs-search": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/@parcel/fs-search/-/fs-search-2.6.2.tgz", - "integrity": "sha512-4STid1zqtGnmGjHD/2TG2g/zPDiCTtE3IAS24QYH3eiUAz2uoKGgEqd2tZbZ2yI96jtCuIhC1bzVu8Hbykls7w==", - "requires": { - "detect-libc": "^1.0.3" - } - }, - "@parcel/hash": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/@parcel/hash/-/hash-2.6.2.tgz", - "integrity": "sha512-tFB+cJU1Wqag6WyJgsmx3nx+xhmjcNZqtWh/MtK1lHNnZdDRk6bjr7SapnygBwruz+SmSt5bbdVThcpk2dRCcA==", - "requires": { - "detect-libc": "^1.0.3", - "xxhash-wasm": "^0.4.2" - } - }, - "@parcel/logger": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/@parcel/logger/-/logger-2.6.2.tgz", - "integrity": "sha512-Sz5YGCj1DbEiX0/G8Uw97LLZ0uEK+qtWcRAkHNpJpeMiSqDiRNevxXltz42EcLo+oCh4d4wyiVzwi9mNwzhS/Q==", - "requires": { - "@parcel/diagnostic": "2.6.2", - "@parcel/events": "2.6.2" - } - }, - "@parcel/markdown-ansi": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/@parcel/markdown-ansi/-/markdown-ansi-2.6.2.tgz", - "integrity": "sha512-N/h9J4eibhc+B+krzvPMzFUWL37GudBIZBa7XSLkcuH6MnYYfh6rrMvhIyyESwk6VkcZNVzAeZrGQqxEs0dHDQ==", - "requires": { - "chalk": "^4.1.0" - } - }, - "@parcel/namer-default": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/@parcel/namer-default/-/namer-default-2.6.2.tgz", - "integrity": "sha512-mp7bx/BQaIuohmZP0uE+gAmDBzzH0Yu8F4yCtE611lc6i0mou+nWRhzyKLNC/ieuI8DB3BFh2QQKeTxJn4W0qg==", - "requires": { - "@parcel/diagnostic": "2.6.2", - "@parcel/plugin": "2.6.2", - "nullthrows": "^1.1.1" - }, - "dependencies": { - "@parcel/plugin": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/@parcel/plugin/-/plugin-2.6.2.tgz", - "integrity": "sha512-wbbWsM23Pr+8xtLSvf+UopXdVYlpKCCx6PuuZaZcKo+9IcDCWoGXD4M8Kkz14qBmkFn5uM00mULUqmVdSibB2w==", - "requires": { - "@parcel/types": "2.6.2" - } - } - } - }, - "@parcel/package-manager": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/@parcel/package-manager/-/package-manager-2.6.2.tgz", - "integrity": "sha512-xGMqTgnwTE3rgzYwUZMKxR8fzmP5iSYz/gj2H8FR3pEmwh/8xCMtNjTSth+hPVGuqgRZ6JxwpfdY/fXdZ61ViQ==", - "requires": { - "@parcel/diagnostic": "2.6.2", - "@parcel/fs": "2.6.2", - "@parcel/logger": "2.6.2", - "@parcel/types": "2.6.2", - "@parcel/utils": "2.6.2", - "@parcel/workers": "2.6.2", - "semver": "^5.7.1" - } - }, - "@parcel/types": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/@parcel/types/-/types-2.6.2.tgz", - "integrity": "sha512-MV8BFpCIs2jMUvK2RHqzkoiuOQ//JIbrD1zocA2YRW3zuPL/iABvbAABJoXpoPCKikVWOoCWASgBfWQo26VvJQ==", - "requires": { - "@parcel/cache": "2.6.2", - "@parcel/diagnostic": "2.6.2", - "@parcel/fs": "2.6.2", - "@parcel/package-manager": "2.6.2", - "@parcel/source-map": "^2.0.0", - "@parcel/workers": "2.6.2", - "utility-types": "^3.10.0" - } - }, - "@parcel/utils": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/@parcel/utils/-/utils-2.6.2.tgz", - "integrity": "sha512-Ug7hpRxjgbY5AopW55nY7MmGMVmwmN+ihfCmxJkBUoESTG/3iq8uME7GjyOgW5DkQc2K7q62i8y8N0wCJT1u4Q==", - "requires": { - "@parcel/codeframe": "2.6.2", - "@parcel/diagnostic": "2.6.2", - "@parcel/hash": "2.6.2", - "@parcel/logger": "2.6.2", - "@parcel/markdown-ansi": "2.6.2", - "@parcel/source-map": "^2.0.0", - "chalk": "^4.1.0" - } - }, - "@parcel/workers": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/@parcel/workers/-/workers-2.6.2.tgz", - "integrity": "sha512-wBgUjJQm+lDd12fPRUmk09+ujTA9DgwPdqylSFK0OtI/yT6A+2kArUqjp8IwWo2tCJXoMzXBne2XQIWKqMiN4Q==", - "requires": { - "@parcel/diagnostic": "2.6.2", - "@parcel/logger": "2.6.2", - "@parcel/types": "2.6.2", - "@parcel/utils": "2.6.2", - "chrome-trace-event": "^1.0.2", - "nullthrows": "^1.1.1" - } - }, - "lmdb": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/lmdb/-/lmdb-2.5.2.tgz", - "integrity": "sha512-V5V5Xa2Hp9i2XsbDALkBTeHXnBXh/lEmk9p22zdr7jtuOIY9TGhjK6vAvTpOOx9IKU4hJkRWZxn/HsvR1ELLtA==", - "requires": { - "@lmdb/lmdb-darwin-arm64": "2.5.2", - "@lmdb/lmdb-darwin-x64": "2.5.2", - "@lmdb/lmdb-linux-arm": "2.5.2", - "@lmdb/lmdb-linux-arm64": "2.5.2", - "@lmdb/lmdb-linux-x64": "2.5.2", - "@lmdb/lmdb-win32-x64": "2.5.2", - "msgpackr": "^1.5.4", - "node-addon-api": "^4.3.0", - "node-gyp-build-optional-packages": "5.0.3", - "ordered-binary": "^1.2.4", - "weak-lru-cache": "^1.2.2" - } - }, - "node-addon-api": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-4.3.0.tgz", - "integrity": "sha512-73sE9+3UaLYYFmDsFZnqCInzPyh3MqIwZO9cw58yIqAZhONrrabrYyYe3TuIqtIiOuTXVhsGau8hcrhhwSsDIQ==" - }, - "node-gyp-build-optional-packages": { - "version": "5.0.3", - "resolved": "https://registry.npmjs.org/node-gyp-build-optional-packages/-/node-gyp-build-optional-packages-5.0.3.tgz", - "integrity": "sha512-k75jcVzk5wnnc/FMxsf4udAoTEUv2jY3ycfdSd3yWu6Cnd1oee6/CfZJApyscA4FJOmdoixWwiwOyf16RzD5JA==" - }, - "semver": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", - "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==" - } + "@parcel/plugin": "2.6.2", + "gatsby-core-utils": "^3.19.0" } }, "@gatsbyjs/potrace": { @@ -2450,39 +2225,39 @@ } }, "@lmdb/lmdb-darwin-arm64": { - "version": "2.5.3", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-arm64/-/lmdb-darwin-arm64-2.5.3.tgz", - "integrity": "sha512-RXwGZ/0eCqtCY8FLTM/koR60w+MXyvBUpToXiIyjOcBnC81tAlTUHrRUavCEWPI9zc9VgvpK3+cbumPyR8BSuA==", + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-arm64/-/lmdb-darwin-arm64-2.5.2.tgz", + "integrity": "sha512-+F8ioQIUN68B4UFiIBYu0QQvgb9FmlKw2ctQMSBfW2QBrZIxz9vD9jCGqTCPqZBRbPHAS/vG1zSXnKqnS2ch/A==", "optional": true }, "@lmdb/lmdb-darwin-x64": { - "version": "2.5.3", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-x64/-/lmdb-darwin-x64-2.5.3.tgz", - "integrity": "sha512-337dNzh5yCdNCTk8kPfoU7jR3otibSlPDGW0vKZT97rKnQMb9tNdto3RtWoGPsQ8hKmlRZpojOJtmwjncq1MoA==", + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-x64/-/lmdb-darwin-x64-2.5.2.tgz", + "integrity": "sha512-KvPH56KRLLx4KSfKBx0m1r7GGGUMXm0jrKmNE7plbHlesZMuPJICtn07HYgQhj1LNsK7Yqwuvnqh1QxhJnF1EA==", "optional": true }, "@lmdb/lmdb-linux-arm": { - "version": "2.5.3", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm/-/lmdb-linux-arm-2.5.3.tgz", - "integrity": "sha512-mU2HFJDGwECkoD9dHQEfeTG5mp8hNS2BCfwoiOpVPMeapjYpQz9Uw3FkUjRZ4dGHWKbin40oWHuL0bk2bCx+Sg==", + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm/-/lmdb-linux-arm-2.5.2.tgz", + "integrity": "sha512-5kQAP21hAkfW5Bl+e0P57dV4dGYnkNIpR7f/GAh6QHlgXx+vp/teVj4PGRZaKAvt0GX6++N6hF8NnGElLDuIDw==", "optional": true }, "@lmdb/lmdb-linux-arm64": { - "version": "2.5.3", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm64/-/lmdb-linux-arm64-2.5.3.tgz", - "integrity": "sha512-VJw60Mdgb4n+L0fO1PqfB0C7TyEQolJAC8qpqvG3JoQwvyOv6LH7Ib/WE3wxEW9nuHmVz9jkK7lk5HfWWgoO1Q==", + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm64/-/lmdb-linux-arm64-2.5.2.tgz", + "integrity": "sha512-aLl89VHL/wjhievEOlPocoefUyWdvzVrcQ/MHQYZm2JfV1jUsrbr/ZfkPPUFvZBf+VSE+Q0clWs9l29PCX1hTQ==", "optional": true }, "@lmdb/lmdb-linux-x64": { - "version": "2.5.3", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-x64/-/lmdb-linux-x64-2.5.3.tgz", - "integrity": "sha512-qaReO5aV8griBDsBr8uBF/faO3ieGjY1RY4p8JvTL6Mu1ylLrTVvOONqKFlNaCwrmUjWw5jnf7VafxDAeQHTow==", + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-x64/-/lmdb-linux-x64-2.5.2.tgz", + "integrity": "sha512-xUdUfwDJLGjOUPH3BuPBt0NlIrR7f/QHKgu3GZIXswMMIihAekj2i97oI0iWG5Bok/b+OBjHPfa8IU9velnP/Q==", "optional": true }, "@lmdb/lmdb-win32-x64": { - "version": "2.5.3", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-win32-x64/-/lmdb-win32-x64-2.5.3.tgz", - "integrity": "sha512-cK+Elf3RjEzrm3SerAhrFWL5oQAsZSJ/LmjL1joIpTfEP1etJJ9CTRvdaV6XLYAxaEkfdhk/9hOvHLbR9yIhCA==", + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-win32-x64/-/lmdb-win32-x64-2.5.2.tgz", + "integrity": "sha512-zrBczSbXKxEyK2ijtbRdICDygRqWSRPpZMN5dD1T8VMEW5RIhIbwFWw2phDRXuBQdVDpSjalCIUMWMV2h3JaZA==", "optional": true }, "@microsoft/fetch-event-source": { @@ -2560,43 +2335,42 @@ } }, "@parcel/bundler-default": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/bundler-default/-/bundler-default-2.6.0.tgz", - "integrity": "sha512-AplEdGm/odV7yGmoeOnglxnY31WlNB5EqGLFGxkgs7uwDaTWoTX/9SWPG6xfvirhjDpms8sLSiVuBdFRCCLtNA==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/bundler-default/-/bundler-default-2.6.2.tgz", + "integrity": "sha512-XIa3had/MIaTGgRFkHApXwytYs77k4geaNcmlb6nzmAABcYjW1CLYh83Zt0AbzLFsDT9ZcRY3u2UjhNf6efSaw==", "requires": { - "@parcel/diagnostic": "2.6.0", - "@parcel/hash": "2.6.0", - "@parcel/plugin": "2.6.0", - "@parcel/utils": "2.6.0", + "@parcel/diagnostic": "2.6.2", + "@parcel/hash": "2.6.2", + "@parcel/plugin": "2.6.2", + "@parcel/utils": "2.6.2", "nullthrows": "^1.1.1" } }, "@parcel/cache": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/cache/-/cache-2.6.0.tgz", - "integrity": "sha512-4vbD5uSuf+kRnrFesKhpn0AKnOw8u2UlvCyrplYmp1g9bNAkIooC/nDGdmkb/9SviPEbni9PEanQEHDU2+slpA==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/cache/-/cache-2.6.2.tgz", + "integrity": "sha512-hhJ6AsEGybeQZd9c/GYqfcKTgZKQXu3Xih6TlnP3gdR3KZoJOnb40ovHD1yYg4COvfcXThKP1cVJ18J6rcv3IA==", "requires": { - "@parcel/fs": "2.6.0", - "@parcel/logger": "2.6.0", - "@parcel/utils": "2.6.0", - "lmdb": "2.3.10" + "@parcel/fs": "2.6.2", + "@parcel/logger": "2.6.2", + "@parcel/utils": "2.6.2", + "lmdb": "2.5.2" }, "dependencies": { "lmdb": { - "version": "2.3.10", - "resolved": "https://registry.npmjs.org/lmdb/-/lmdb-2.3.10.tgz", - "integrity": "sha512-GtH+nStn9V59CfYeQ5ddx6YTfuFCmu86UJojIjJAweG+/Fm0PDknuk3ovgYDtY/foMeMdZa8/P7oSljW/d5UPw==", - "requires": { - "lmdb-darwin-arm64": "2.3.10", - "lmdb-darwin-x64": "2.3.10", - "lmdb-linux-arm": "2.3.10", - "lmdb-linux-arm64": "2.3.10", - "lmdb-linux-x64": "2.3.10", - "lmdb-win32-x64": "2.3.10", + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/lmdb/-/lmdb-2.5.2.tgz", + "integrity": "sha512-V5V5Xa2Hp9i2XsbDALkBTeHXnBXh/lEmk9p22zdr7jtuOIY9TGhjK6vAvTpOOx9IKU4hJkRWZxn/HsvR1ELLtA==", + "requires": { + "@lmdb/lmdb-darwin-arm64": "2.5.2", + "@lmdb/lmdb-darwin-x64": "2.5.2", + "@lmdb/lmdb-linux-arm": "2.5.2", + "@lmdb/lmdb-linux-arm64": "2.5.2", + "@lmdb/lmdb-linux-x64": "2.5.2", + "@lmdb/lmdb-win32-x64": "2.5.2", "msgpackr": "^1.5.4", - "nan": "^2.14.2", "node-addon-api": "^4.3.0", - "node-gyp-build-optional-packages": "^4.3.2", + "node-gyp-build-optional-packages": "5.0.3", "ordered-binary": "^1.2.4", "weak-lru-cache": "^1.2.2" } @@ -2609,40 +2383,40 @@ } }, "@parcel/codeframe": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/codeframe/-/codeframe-2.6.0.tgz", - "integrity": "sha512-yXXxrO9yyedHKpTwC+Af0+vPmQm+A9xeEhkt4f0yVg1n4t4yUIxYlTedzbM8ygZEEBtkXU9jJ+PkgXbfMf0dqw==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/codeframe/-/codeframe-2.6.2.tgz", + "integrity": "sha512-oFlHr6HCaYYsB4SHkU+gn9DKtbzvv3/4NdwMX0/6NAKyYVI7inEsXyPGw2Bbd2ZCFatW9QJZUETF0etvh5AEfQ==", "requires": { "chalk": "^4.1.0" } }, "@parcel/compressor-raw": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/compressor-raw/-/compressor-raw-2.6.0.tgz", - "integrity": "sha512-rtMU2mGl88bic6Xbq1u5L49bMK4s5185b0k7h3JRdS6/0rR+Xp4k/o9Wog+hHjK/s82z1eF9WmET779ZpIDIQQ==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/compressor-raw/-/compressor-raw-2.6.2.tgz", + "integrity": "sha512-P3c8jjV5HVs+fNDjhvq7PtHXNm687nit1iwTS5VAt+ScXKhKBhoIJ56q+9opcw0jnXVjAAgZqcRZ50oAJBGdKw==", "requires": { - "@parcel/plugin": "2.6.0" + "@parcel/plugin": "2.6.2" } }, "@parcel/core": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/core/-/core-2.6.0.tgz", - "integrity": "sha512-8OOWbPuxpFydpwNyKoz6d3e3O4DmxNYmMw4DXwrPSj/jyg7oa+SDtMT0/VXEhujE0HYkQPCHt4npRajkSuf99A==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/core/-/core-2.6.2.tgz", + "integrity": "sha512-JlKS3Ux0ngmdooSBbzQLShHJdsapF9E7TGMo1hFaHRquZip/DaqzvysYrgMJlDuCoLArciq5ei7ZKzGeK9zexA==", "requires": { "@mischnic/json-sourcemap": "^0.1.0", - "@parcel/cache": "2.6.0", - "@parcel/diagnostic": "2.6.0", - "@parcel/events": "2.6.0", - "@parcel/fs": "2.6.0", - "@parcel/graph": "2.6.0", - "@parcel/hash": "2.6.0", - "@parcel/logger": "2.6.0", - "@parcel/package-manager": "2.6.0", - "@parcel/plugin": "2.6.0", + "@parcel/cache": "2.6.2", + "@parcel/diagnostic": "2.6.2", + "@parcel/events": "2.6.2", + "@parcel/fs": "2.6.2", + "@parcel/graph": "2.6.2", + "@parcel/hash": "2.6.2", + "@parcel/logger": "2.6.2", + "@parcel/package-manager": "2.6.2", + "@parcel/plugin": "2.6.2", "@parcel/source-map": "^2.0.0", - "@parcel/types": "2.6.0", - "@parcel/utils": "2.6.0", - "@parcel/workers": "2.6.0", + "@parcel/types": "2.6.2", + "@parcel/utils": "2.6.2", + "@parcel/workers": "2.6.2", "abortcontroller-polyfill": "^1.1.9", "base-x": "^3.0.8", "browserslist": "^4.6.6", @@ -2668,118 +2442,126 @@ } }, "@parcel/diagnostic": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/diagnostic/-/diagnostic-2.6.0.tgz", - "integrity": "sha512-+p8gC2FKxSI2veD7SoaNlP572v4kw+nafCQEPDtJuzYYRqywYUGncch25dkpgNApB4W4cXVkZu3ZbtIpCAmjQQ==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/diagnostic/-/diagnostic-2.6.2.tgz", + "integrity": "sha512-3ODSBkKVihENU763z1/1DhGAWFhYWRxOCOShC72KXp+GFnSgGiBsxclu8NBa/N948Rzp8lqQI8U1nLcKkh0O/w==", "requires": { "@mischnic/json-sourcemap": "^0.1.0", "nullthrows": "^1.1.1" } }, "@parcel/events": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/events/-/events-2.6.0.tgz", - "integrity": "sha512-2WaKtBs4iYwS88j4zRdyTJTgh8iuY4E32FMmjzzbheqETs6I05gWuPReGukJYxk8vc0Ir7tbzp12oAfpgo0Y+g==" + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/events/-/events-2.6.2.tgz", + "integrity": "sha512-IaCjOeA5ercdFVi1EZOmUHhGfIysmCUgc2Th9hMugSFO0I3GzRsBcAdP6XPfWm+TV6sQ/qZRfdk/drUxoAupnw==" }, "@parcel/fs": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/fs/-/fs-2.6.0.tgz", - "integrity": "sha512-6vxtx5Zy6MvDvH1EPx9JxjKGF03bR7VE1dUf4HLeX2D8YmpL5hkHJnlRCFdcH08rzOVwaJLzg1QNtblWJXQ9CA==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/fs/-/fs-2.6.2.tgz", + "integrity": "sha512-mIhqdF3tjgeoIGqW7Nc/xfM2ClID7o8livwUe5lpQEP+ZaIBiMigXs6ckv3WToCACK+3uylrSD2A/HmlhrxMqQ==", "requires": { - "@parcel/fs-search": "2.6.0", - "@parcel/types": "2.6.0", - "@parcel/utils": "2.6.0", + "@parcel/fs-search": "2.6.2", + "@parcel/types": "2.6.2", + "@parcel/utils": "2.6.2", "@parcel/watcher": "^2.0.0", - "@parcel/workers": "2.6.0" + "@parcel/workers": "2.6.2" } }, "@parcel/fs-search": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/fs-search/-/fs-search-2.6.0.tgz", - "integrity": "sha512-1nXzM3H/cA4kzLKvDBvwmNisKCdRqlgkLXh+OR1Zu28Kn4W34KuJMcHWW8cC+WIuuKqDh5oo2WPsC5y65GXBKQ==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/fs-search/-/fs-search-2.6.2.tgz", + "integrity": "sha512-4STid1zqtGnmGjHD/2TG2g/zPDiCTtE3IAS24QYH3eiUAz2uoKGgEqd2tZbZ2yI96jtCuIhC1bzVu8Hbykls7w==", "requires": { "detect-libc": "^1.0.3" } }, "@parcel/graph": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/graph/-/graph-2.6.0.tgz", - "integrity": "sha512-rxrAzWm6rwbCRPbu0Z+zwMscpG8omffODniVWPlX2G0jgQGpjKsutBQ6RMfFIcfaQ4MzL3pIQOTf8bkjQOPsbg==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/graph/-/graph-2.6.2.tgz", + "integrity": "sha512-DPH4G/RBFJWayIN2fnhDXqhUw75n7k15YsGzdDKiXuwwz4wMOjoL4cyrI6zOf1SIyh3guRmeTYJ4jjPzwrLYww==", "requires": { - "@parcel/utils": "2.6.0", + "@parcel/utils": "2.6.2", "nullthrows": "^1.1.1" } }, "@parcel/hash": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/hash/-/hash-2.6.0.tgz", - "integrity": "sha512-YugWqhLxqK80Lo++3B3Kr5UPCHOdS8iI2zJ1jkzUeH9v6WUzbwWOnmPf6lN2S5m1BrIFFJd8Jc+CbEXWi8zoJA==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/hash/-/hash-2.6.2.tgz", + "integrity": "sha512-tFB+cJU1Wqag6WyJgsmx3nx+xhmjcNZqtWh/MtK1lHNnZdDRk6bjr7SapnygBwruz+SmSt5bbdVThcpk2dRCcA==", "requires": { "detect-libc": "^1.0.3", "xxhash-wasm": "^0.4.2" } }, "@parcel/logger": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/logger/-/logger-2.6.0.tgz", - "integrity": "sha512-J1/7kPfSGBvMKSZdi0WCNuN0fIeiWxifnDGn7W/K8KhD422YwFJA8N046ps8nkDOPIXf1osnIECNp4GIR9oSYw==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/logger/-/logger-2.6.2.tgz", + "integrity": "sha512-Sz5YGCj1DbEiX0/G8Uw97LLZ0uEK+qtWcRAkHNpJpeMiSqDiRNevxXltz42EcLo+oCh4d4wyiVzwi9mNwzhS/Q==", "requires": { - "@parcel/diagnostic": "2.6.0", - "@parcel/events": "2.6.0" + "@parcel/diagnostic": "2.6.2", + "@parcel/events": "2.6.2" } }, "@parcel/markdown-ansi": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/markdown-ansi/-/markdown-ansi-2.6.0.tgz", - "integrity": "sha512-fyjkrJQQSfKTUFTTasdZ6WrAkDoQ2+DYDjj+3p+RncYyrIa9zArKx4IiRiipsvNdtMvP0/hTdK8F3BOJ3KSU/g==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/markdown-ansi/-/markdown-ansi-2.6.2.tgz", + "integrity": "sha512-N/h9J4eibhc+B+krzvPMzFUWL37GudBIZBa7XSLkcuH6MnYYfh6rrMvhIyyESwk6VkcZNVzAeZrGQqxEs0dHDQ==", "requires": { "chalk": "^4.1.0" } }, "@parcel/namer-default": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/namer-default/-/namer-default-2.6.0.tgz", - "integrity": "sha512-r8O12r7ozJBctnFxVdXbf/fK97GIdNj3hiiUNWlXEmED9sw6ZPcChaLcfot0/443g8i87JDmSTKJ8js2tuz5XA==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/namer-default/-/namer-default-2.6.2.tgz", + "integrity": "sha512-mp7bx/BQaIuohmZP0uE+gAmDBzzH0Yu8F4yCtE611lc6i0mou+nWRhzyKLNC/ieuI8DB3BFh2QQKeTxJn4W0qg==", "requires": { - "@parcel/diagnostic": "2.6.0", - "@parcel/plugin": "2.6.0", + "@parcel/diagnostic": "2.6.2", + "@parcel/plugin": "2.6.2", "nullthrows": "^1.1.1" } }, "@parcel/node-resolver-core": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/node-resolver-core/-/node-resolver-core-2.6.0.tgz", - "integrity": "sha512-AJDj5DZbB58plv0li8bdVSD+zpnkHE36Om3TYyNn1jgXXwgBM64Er/9p8yQn356jBqTQMh7zlJqvbdIyOiMeMg==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/node-resolver-core/-/node-resolver-core-2.6.2.tgz", + "integrity": "sha512-4b2L5QRYlTybvv3+TIRtwg4PPJXy+cRShCBa8eu1K0Fj297Afe8MOZrcVV+RIr2KPMIRXcIJoqDmOhyci/DynA==", "requires": { - "@parcel/diagnostic": "2.6.0", - "@parcel/utils": "2.6.0", - "nullthrows": "^1.1.1" + "@parcel/diagnostic": "2.6.2", + "@parcel/utils": "2.6.2", + "nullthrows": "^1.1.1", + "semver": "^5.7.1" + }, + "dependencies": { + "semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==" + } } }, "@parcel/optimizer-terser": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/optimizer-terser/-/optimizer-terser-2.6.0.tgz", - "integrity": "sha512-oezRt6Lz/QqcVDXyMfFjzQc7n0ThJowLJ4Lyhu8rMh0ZJYzc4UCFCw/19d4nRnzE+Qg0vj3mQCpdkA9/64E44g==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/optimizer-terser/-/optimizer-terser-2.6.2.tgz", + "integrity": "sha512-ZSEVQ3G3zOiVPeHvH+BrHegZybrQj9kWQAaAA92leSqbvf6UaX4xqXbGRg2OttNFtbGYBzIl28Zm4t2SLeUIuA==", "requires": { - "@parcel/diagnostic": "2.6.0", - "@parcel/plugin": "2.6.0", + "@parcel/diagnostic": "2.6.2", + "@parcel/plugin": "2.6.2", "@parcel/source-map": "^2.0.0", - "@parcel/utils": "2.6.0", + "@parcel/utils": "2.6.2", "nullthrows": "^1.1.1", "terser": "^5.2.0" } }, "@parcel/package-manager": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/package-manager/-/package-manager-2.6.0.tgz", - "integrity": "sha512-AqFfdkbOw51q/3ia2mIsFTmrpYEyUb3k+2uYC5GsLMz3go6OGn7/Crz0lZLSclv5EtwpRg3TWr9yL7RekVN/Uw==", - "requires": { - "@parcel/diagnostic": "2.6.0", - "@parcel/fs": "2.6.0", - "@parcel/logger": "2.6.0", - "@parcel/types": "2.6.0", - "@parcel/utils": "2.6.0", - "@parcel/workers": "2.6.0", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/package-manager/-/package-manager-2.6.2.tgz", + "integrity": "sha512-xGMqTgnwTE3rgzYwUZMKxR8fzmP5iSYz/gj2H8FR3pEmwh/8xCMtNjTSth+hPVGuqgRZ6JxwpfdY/fXdZ61ViQ==", + "requires": { + "@parcel/diagnostic": "2.6.2", + "@parcel/fs": "2.6.2", + "@parcel/logger": "2.6.2", + "@parcel/types": "2.6.2", + "@parcel/utils": "2.6.2", + "@parcel/workers": "2.6.2", "semver": "^5.7.1" }, "dependencies": { @@ -2791,15 +2573,15 @@ } }, "@parcel/packager-js": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/packager-js/-/packager-js-2.6.0.tgz", - "integrity": "sha512-Uz3pqIFchFfKszWnNGDgIwM1uwHHJp7Dts6VzS9lf/2RbRgZT0fmce+NPgnVO5MMKBHzdvm32ShT6gFAABF5Vw==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/packager-js/-/packager-js-2.6.2.tgz", + "integrity": "sha512-fm5rKWtaExR0W+UEKWivXNPysRFxuBCdskdxDByb1J1JeGMvp7dJElbi8oXDAQM4MnM5EyG7cg47SlMZNTLm4A==", "requires": { - "@parcel/diagnostic": "2.6.0", - "@parcel/hash": "2.6.0", - "@parcel/plugin": "2.6.0", + "@parcel/diagnostic": "2.6.2", + "@parcel/hash": "2.6.2", + "@parcel/plugin": "2.6.2", "@parcel/source-map": "^2.0.0", - "@parcel/utils": "2.6.0", + "@parcel/utils": "2.6.2", "globals": "^13.2.0", "nullthrows": "^1.1.1" }, @@ -2815,76 +2597,76 @@ } }, "@parcel/packager-raw": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/packager-raw/-/packager-raw-2.6.0.tgz", - "integrity": "sha512-ktT6Qc/GgCq8H1+6y+AXufVzQj1s6KRoKf83qswCD0iY3MwCbJoEfc3IsB4K64FpHIL5Eu0z54IId+INvGbOYA==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/packager-raw/-/packager-raw-2.6.2.tgz", + "integrity": "sha512-Rl3ZkMtMjb+LEvRowijDD8fibUAS6rWK0/vZQMk9cDNYCP2gCpZayLk0HZIGxneeTbosf/0sbngHq4VeRQOnQA==", "requires": { - "@parcel/plugin": "2.6.0" + "@parcel/plugin": "2.6.2" } }, "@parcel/plugin": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/plugin/-/plugin-2.6.0.tgz", - "integrity": "sha512-LzOaiK8R6eFEoov1cb3/W+o0XvXdI/VbDhMDl0L0II+/56M0UeayYtFP5QGTDn/fZqVlYfzPCtt3EMwdG7/dow==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/plugin/-/plugin-2.6.2.tgz", + "integrity": "sha512-wbbWsM23Pr+8xtLSvf+UopXdVYlpKCCx6PuuZaZcKo+9IcDCWoGXD4M8Kkz14qBmkFn5uM00mULUqmVdSibB2w==", "requires": { - "@parcel/types": "2.6.0" + "@parcel/types": "2.6.2" } }, "@parcel/reporter-dev-server": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/reporter-dev-server/-/reporter-dev-server-2.6.0.tgz", - "integrity": "sha512-VvygsCA+uzWyijIV8zqU1gFyhAWknuaY4KIWhV4kCT8afRJwsLSwt/tpdaKDPuPU45h3tTsUdXH1wjaIk+dGeQ==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/reporter-dev-server/-/reporter-dev-server-2.6.2.tgz", + "integrity": "sha512-5QtL3ETMFL161jehlIK6rjBM+Pqk5cMhr60s9yLYqE1GY4M4gMj+Act+FXViyM6gmMA38cPxDvUsxTKBYXpFCw==", "requires": { - "@parcel/plugin": "2.6.0", - "@parcel/utils": "2.6.0" + "@parcel/plugin": "2.6.2", + "@parcel/utils": "2.6.2" } }, "@parcel/resolver-default": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/resolver-default/-/resolver-default-2.6.0.tgz", - "integrity": "sha512-ATk9wXvy5GOHAqyHbnCnU11fUPTtf8dLjpgVqL5XylwugZnyBXbynoTWX4w8h6mffkVtdfmzTJx/o4Lresz9sA==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/resolver-default/-/resolver-default-2.6.2.tgz", + "integrity": "sha512-Lo5sWb5QkjWvdBr+TdmAF6Mszb/sMldBBatc1osQTkHXCy679VMH+lfyiWxHbwK+F1pmdMeBJpYcMxvrgT8EsA==", "requires": { - "@parcel/node-resolver-core": "2.6.0", - "@parcel/plugin": "2.6.0" + "@parcel/node-resolver-core": "2.6.2", + "@parcel/plugin": "2.6.2" } }, "@parcel/runtime-browser-hmr": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/runtime-browser-hmr/-/runtime-browser-hmr-2.6.0.tgz", - "integrity": "sha512-90xvv/10cFML5dAhClBEJZ/ExiBQVPqQsZcvRmVZmc5mpZVJMKattWCQrd7pAf7FDYl4JAcvsK3DTwvRT/oLNA==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/runtime-browser-hmr/-/runtime-browser-hmr-2.6.2.tgz", + "integrity": "sha512-M4X0+7dyfdI6smwGUGjGXb8Ns3HX7ZrTemyq4Gc7zp7P/5gWjR8i9eISz46sXmF9bf01a/4dKZpoCC9un1pH1g==", "requires": { - "@parcel/plugin": "2.6.0", - "@parcel/utils": "2.6.0" + "@parcel/plugin": "2.6.2", + "@parcel/utils": "2.6.2" } }, "@parcel/runtime-js": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/runtime-js/-/runtime-js-2.6.0.tgz", - "integrity": "sha512-R4tJAIT/SX7VBQ+f7WmeekREQzzLsmgP1j486uKhQNyYrpvsN0HnRbg5aqvZjEjkEmSeJR0mOlWtMK5/m+0yTA==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/runtime-js/-/runtime-js-2.6.2.tgz", + "integrity": "sha512-0S3JFwgvs6FmEx2dHta9R0Sfu8vCnFAm4i7Y4efGHtAcTrF2CHjyiz4/hG+RQGJ70eoWW463Q+8qt6EKbkaOBQ==", "requires": { - "@parcel/plugin": "2.6.0", - "@parcel/utils": "2.6.0", + "@parcel/plugin": "2.6.2", + "@parcel/utils": "2.6.2", "nullthrows": "^1.1.1" } }, "@parcel/runtime-react-refresh": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/runtime-react-refresh/-/runtime-react-refresh-2.6.0.tgz", - "integrity": "sha512-2sRd13gc2EbMV/O5n2NPVGGhKBasb1fDTXGEY8y7qi9xDKc+ewok/D83T+w243FhCPS9Pf3ur5GkbPlrJGcenQ==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/runtime-react-refresh/-/runtime-react-refresh-2.6.2.tgz", + "integrity": "sha512-DJTm5D/tUAGZm0o3ndDOPbKwdYrobuvm4jvkPq31LdEUqVvyuzBAMlqQFHc1yJEJDRRWOIQwQP9Y0NQbJmXFfg==", "requires": { - "@parcel/plugin": "2.6.0", - "@parcel/utils": "2.6.0", + "@parcel/plugin": "2.6.2", + "@parcel/utils": "2.6.2", "react-error-overlay": "6.0.9", "react-refresh": "^0.9.0" } }, "@parcel/runtime-service-worker": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/runtime-service-worker/-/runtime-service-worker-2.6.0.tgz", - "integrity": "sha512-nVlknGw5J5Bkd1Wr1TbyWHhUd9CmVVebaRg/lpfVKYhAuE/2r+3N0+J8qbEIgtTRcHaSV7wTNpg4weSWq46VeA==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/runtime-service-worker/-/runtime-service-worker-2.6.2.tgz", + "integrity": "sha512-9jV+RwVEeDUI5+eLy8j1tapTNoHHGOY2+JUprcObQkQ8fux7KltQBJWFhpkUdGtz5LTCNXtj9tdycFtS5lmSzg==", "requires": { - "@parcel/plugin": "2.6.0", - "@parcel/utils": "2.6.0", + "@parcel/plugin": "2.6.2", + "@parcel/utils": "2.6.2", "nullthrows": "^1.1.1" } }, @@ -2897,16 +2679,16 @@ } }, "@parcel/transformer-js": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/transformer-js/-/transformer-js-2.6.0.tgz", - "integrity": "sha512-4v2r3EVdMKowBziVBW9HZqvAv88HaeiezkWyMX4wAfplo9jBtWEp99KEQINzSEdbXROR81M9oJjlGF5+yoVr/w==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/transformer-js/-/transformer-js-2.6.2.tgz", + "integrity": "sha512-uhXAMTjE/Q61amflV8qVpb73mj+mIdXIMH0cSks1/gDIAxcgIvWvrE14P4TvY6zJ1q1iRJRIRUN6cFSXqjjLSA==", "requires": { - "@parcel/diagnostic": "2.6.0", - "@parcel/plugin": "2.6.0", + "@parcel/diagnostic": "2.6.2", + "@parcel/plugin": "2.6.2", "@parcel/source-map": "^2.0.0", - "@parcel/utils": "2.6.0", - "@parcel/workers": "2.6.0", - "@swc/helpers": "^0.3.15", + "@parcel/utils": "2.6.2", + "@parcel/workers": "2.6.2", + "@swc/helpers": "^0.4.2", "browserslist": "^4.6.6", "detect-libc": "^1.0.3", "nullthrows": "^1.1.1", @@ -2922,56 +2704,56 @@ } }, "@parcel/transformer-json": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/transformer-json/-/transformer-json-2.6.0.tgz", - "integrity": "sha512-zb+TQAdHWdXijKcFhLe+5KN1O0IzXwW1gJhPr8DJEA3qhPaCsncsw5RCVjQlP3a7NXr1mMm1eMtO6bhIMqbXeA==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/transformer-json/-/transformer-json-2.6.2.tgz", + "integrity": "sha512-QGcIIvbPF/u10ihYvQhxXqb2QMXWSzcBxJrOSIXIl74TUGrWX05D5LmjDA/rzm/n/kvRnBkFNP60R/smYb8x+Q==", "requires": { - "@parcel/plugin": "2.6.0", + "@parcel/plugin": "2.6.2", "json5": "^2.2.0" } }, "@parcel/transformer-raw": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/transformer-raw/-/transformer-raw-2.6.0.tgz", - "integrity": "sha512-QDirlWCS/qy0DQ3WvDIAnFP52n1TJW/uWH+4PGMNnX4/M3/2UchY8xp9CN0tx4NQ4g09S8o3gLlHvNxQqZxFrQ==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/transformer-raw/-/transformer-raw-2.6.2.tgz", + "integrity": "sha512-CsofYq5g9Zj/FNmhya2R7Xp3WHlzz34mEdN69bds3azRYHCrl/TS33xXcp/9J+74SEIY1Ufh552o1cM3fnSrDQ==", "requires": { - "@parcel/plugin": "2.6.0" + "@parcel/plugin": "2.6.2" } }, "@parcel/transformer-react-refresh-wrap": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/transformer-react-refresh-wrap/-/transformer-react-refresh-wrap-2.6.0.tgz", - "integrity": "sha512-G34orfvLDUTumuerqNmA8T8NUHk+R0jwUjbVPO7gpB6VCVQ5ocTABdE9vN9Uu/cUsHij40TUFwqK4R9TFEBIEQ==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/transformer-react-refresh-wrap/-/transformer-react-refresh-wrap-2.6.2.tgz", + "integrity": "sha512-7EE68ebISz+oAHm64ZJbz6uJQT4aOoB8QiK3PvuY6+RsP7aK4/FEHGM1afW49KrZbP4lWjloEkcJm/88DfBiGw==", "requires": { - "@parcel/plugin": "2.6.0", - "@parcel/utils": "2.6.0", + "@parcel/plugin": "2.6.2", + "@parcel/utils": "2.6.2", "react-refresh": "^0.9.0" } }, "@parcel/types": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/types/-/types-2.6.0.tgz", - "integrity": "sha512-lAMYvOBfNEJMsPJ+plbB50305o0TwNrY1xX5RRIWBqwOa6bYmbW1ZljUk1tQvnkpIE4eAHQwnPR5Z2XWg18wGQ==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/types/-/types-2.6.2.tgz", + "integrity": "sha512-MV8BFpCIs2jMUvK2RHqzkoiuOQ//JIbrD1zocA2YRW3zuPL/iABvbAABJoXpoPCKikVWOoCWASgBfWQo26VvJQ==", "requires": { - "@parcel/cache": "2.6.0", - "@parcel/diagnostic": "2.6.0", - "@parcel/fs": "2.6.0", - "@parcel/package-manager": "2.6.0", + "@parcel/cache": "2.6.2", + "@parcel/diagnostic": "2.6.2", + "@parcel/fs": "2.6.2", + "@parcel/package-manager": "2.6.2", "@parcel/source-map": "^2.0.0", - "@parcel/workers": "2.6.0", + "@parcel/workers": "2.6.2", "utility-types": "^3.10.0" } }, "@parcel/utils": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/utils/-/utils-2.6.0.tgz", - "integrity": "sha512-ElXz+QHtT1JQIucbQJBk7SzAGoOlBp4yodEQVvTKS7GA+hEGrSP/cmibl6qm29Rjtd0zgQsdd+2XmP3xvP2gQQ==", - "requires": { - "@parcel/codeframe": "2.6.0", - "@parcel/diagnostic": "2.6.0", - "@parcel/hash": "2.6.0", - "@parcel/logger": "2.6.0", - "@parcel/markdown-ansi": "2.6.0", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/utils/-/utils-2.6.2.tgz", + "integrity": "sha512-Ug7hpRxjgbY5AopW55nY7MmGMVmwmN+ihfCmxJkBUoESTG/3iq8uME7GjyOgW5DkQc2K7q62i8y8N0wCJT1u4Q==", + "requires": { + "@parcel/codeframe": "2.6.2", + "@parcel/diagnostic": "2.6.2", + "@parcel/hash": "2.6.2", + "@parcel/logger": "2.6.2", + "@parcel/markdown-ansi": "2.6.2", "@parcel/source-map": "^2.0.0", "chalk": "^4.1.0" } @@ -2986,14 +2768,14 @@ } }, "@parcel/workers": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/workers/-/workers-2.6.0.tgz", - "integrity": "sha512-3tcI2LF5fd/WZtSnSjyWdDE+G+FitdNrRgSObzSp+axHKMAM23sO0z7KY8s2SYCF40msdYbFUW8eI6JlYNJoWQ==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/workers/-/workers-2.6.2.tgz", + "integrity": "sha512-wBgUjJQm+lDd12fPRUmk09+ujTA9DgwPdqylSFK0OtI/yT6A+2kArUqjp8IwWo2tCJXoMzXBne2XQIWKqMiN4Q==", "requires": { - "@parcel/diagnostic": "2.6.0", - "@parcel/logger": "2.6.0", - "@parcel/types": "2.6.0", - "@parcel/utils": "2.6.0", + "@parcel/diagnostic": "2.6.2", + "@parcel/logger": "2.6.2", + "@parcel/types": "2.6.2", + "@parcel/utils": "2.6.2", "chrome-trace-event": "^1.0.2", "nullthrows": "^1.1.1" } @@ -3079,9 +2861,9 @@ } }, "@swc/helpers": { - "version": "0.3.17", - "resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.3.17.tgz", - "integrity": "sha512-tb7Iu+oZ+zWJZ3HJqwx8oNwSDIU440hmVMDPhpACWQWnrZHK99Bxs70gT1L2dnr5Hg50ZRWEFkQCAnOVVV0z1Q==", + "version": "0.4.3", + "resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.4.3.tgz", + "integrity": "sha512-6JrF+fdUK2zbGpJIlN7G3v966PQjyx/dPt1T9km2wj+EUBqgrxCk3uX4Kct16MIm9gGxfKRcfax2hVf5jvlTzA==", "requires": { "tslib": "^2.4.0" } @@ -3990,12 +3772,12 @@ } }, "babel-plugin-remove-graphql-queries": { - "version": "4.18.1", - "resolved": "https://registry.npmjs.org/babel-plugin-remove-graphql-queries/-/babel-plugin-remove-graphql-queries-4.18.1.tgz", - "integrity": "sha512-2I7qsm3pnyvrS6/Q9YuHK1SpfQLmrgYH/AjpnWpnLHee6SiVb5Te89iphhpBdycpBRVGWh04ram9+z/1rMaRYQ==", + "version": "4.19.0", + "resolved": "https://registry.npmjs.org/babel-plugin-remove-graphql-queries/-/babel-plugin-remove-graphql-queries-4.19.0.tgz", + "integrity": "sha512-VbxC7aZxdqQA0YiAcTD/djIW+6PP/JVODlRmCiqDyTbtI0zhE/Z6je1maCmC6J2LLBsKxhWT3UYTjRfLofK7sQ==", "requires": { "@babel/runtime": "^7.15.4", - "gatsby-core-utils": "^3.18.1" + "gatsby-core-utils": "^3.19.0" } }, "babel-plugin-syntax-trailing-function-commas": { @@ -4043,9 +3825,9 @@ } }, "babel-preset-gatsby": { - "version": "2.18.1", - "resolved": "https://registry.npmjs.org/babel-preset-gatsby/-/babel-preset-gatsby-2.18.1.tgz", - "integrity": "sha512-oaVV6ULceMjTQKjCA06qvgfLwBNZFJxpacwNZYOJpLygmj+qYiNKDGhJ8vTw/KAIUeDPZAbPMP5P+3wMEPIWYQ==", + "version": "2.19.0", + "resolved": "https://registry.npmjs.org/babel-preset-gatsby/-/babel-preset-gatsby-2.19.0.tgz", + "integrity": "sha512-wjh4lUN1MffsnqHAfRoeOtJFGEObUPR4oxo7fyfx9pZUyqBgXvKXMEoLnwNht5HV5BzT5Xo9dkwNJl0/CNhXHw==", "requires": { "@babel/plugin-proposal-class-properties": "^7.14.0", "@babel/plugin-proposal-nullish-coalescing-operator": "^7.14.5", @@ -4060,8 +3842,8 @@ "babel-plugin-dynamic-import-node": "^2.3.3", "babel-plugin-macros": "^3.1.0", "babel-plugin-transform-react-remove-prop-types": "^0.4.24", - "gatsby-core-utils": "^3.18.1", - "gatsby-legacy-polyfills": "^2.18.0" + "gatsby-core-utils": "^3.19.0", + "gatsby-legacy-polyfills": "^2.19.0" } }, "backo2": { @@ -4154,6 +3936,11 @@ "unpipe": "1.0.0" }, "dependencies": { + "bytes": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", + "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==" + }, "debug": { "version": "2.6.9", "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", @@ -4310,9 +4097,9 @@ } }, "bytes": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", - "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==" + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz", + "integrity": "sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==" }, "cache-manager": { "version": "2.11.1", @@ -4399,9 +4186,9 @@ } }, "caniuse-lite": { - "version": "1.0.30001366", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001366.tgz", - "integrity": "sha512-yy7XLWCubDobokgzudpkKux8e0UOOnLHE6mlNJBzT3lZJz6s5atSEzjoL+fsCPkI0G8MP5uVdDx1ur/fXEWkZA==" + "version": "1.0.30001367", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001367.tgz", + "integrity": "sha512-XDgbeOHfifWV3GEES2B8rtsrADx4Jf+juKX2SICJcaUhjYBO3bR96kvEIHa15VU6ohtOhBZuPGGYGbXMRn0NCw==" }, "capital-case": { "version": "1.0.4", @@ -4620,9 +4407,9 @@ } }, "clone-response": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/clone-response/-/clone-response-1.0.2.tgz", - "integrity": "sha512-yjLXh88P599UOyPTFX0POsd7WxnbsVsGohcwzHOLspIhhpalPw1BcqED8NblyZLKcGrL8dTgMlcaZxV2jAD41Q==", + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/clone-response/-/clone-response-1.0.3.tgz", + "integrity": "sha512-ROoL94jJH2dUVML2Y/5PEDNaSHgeOdSDicUyS7izcF63G6sTc/FTjLub4b8Il9S8S0beOfYt0TaA5qvFK+w0wA==", "requires": { "mimic-response": "^1.0.0" } @@ -4747,11 +4534,6 @@ "vary": "~1.1.2" }, "dependencies": { - "bytes": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz", - "integrity": "sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==" - }, "debug": { "version": "2.6.9", "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", @@ -4884,16 +4666,16 @@ "integrity": "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==" }, "core-js": { - "version": "3.23.4", - "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.23.4.tgz", - "integrity": "sha512-vjsKqRc1RyAJC3Ye2kYqgfdThb3zYnx9CrqoCcjMOENMtQPC7ZViBvlDxwYU/2z2NI/IPuiXw5mT4hWhddqjzQ==" + "version": "3.23.5", + "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.23.5.tgz", + "integrity": "sha512-7Vh11tujtAZy82da4duVreQysIoO2EvVrur7y6IzZkH1IHPSekuDi8Vuw1+YKjkbfWLRD7Nc9ICQ/sIUDutcyg==" }, "core-js-compat": { - "version": "3.23.4", - "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.23.4.tgz", - "integrity": "sha512-RkSRPe+JYEoflcsuxJWaiMPhnZoFS51FcIxm53k4KzhISCBTmaGlto9dTIrYuk0hnJc3G6pKufAKepHnBq6B6Q==", + "version": "3.23.5", + "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.23.5.tgz", + "integrity": "sha512-fHYozIFIxd+91IIbXJgWd/igXIc8Mf9is0fusswjnGIWVG96y2cwyUdlCkGOw6rMLHKAxg7xtCIVaHsyOUnJIg==", "requires": { - "browserslist": "^4.21.1", + "browserslist": "^4.21.2", "semver": "7.0.0" }, "dependencies": { @@ -4905,9 +4687,9 @@ } }, "core-js-pure": { - "version": "3.23.4", - "resolved": "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.23.4.tgz", - "integrity": "sha512-lizxkcgj3XDmi7TUBFe+bQ1vNpD5E4t76BrBWI3HdUxdw/Mq1VF4CkiHzIKyieECKtcODK2asJttoofEeUKICQ==" + "version": "3.23.5", + "resolved": "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.23.5.tgz", + "integrity": "sha512-8t78LdpKSuCq4pJYCYk8hl7XEkAX+BP16yRIwL3AanTksxuEf7CM83vRyctmiEL8NDZ3jpUcv56fk9/zG3aIuw==" }, "core-util-is": { "version": "1.0.3", @@ -4944,9 +4726,9 @@ } }, "create-gatsby": { - "version": "2.18.1", - "resolved": "https://registry.npmjs.org/create-gatsby/-/create-gatsby-2.18.1.tgz", - "integrity": "sha512-1AZioXKi4COhESSHfsb/6tpkBvyuuXHwAmMAGrcUQpbynsQxYdqonnRqnFhp80bA2cIKxgjtHzzLhyRouDonbQ==", + "version": "2.19.0", + "resolved": "https://registry.npmjs.org/create-gatsby/-/create-gatsby-2.19.0.tgz", + "integrity": "sha512-Esl/qCau3rjpnRkmo31BYOE6l72SJ/5Fq8bF6gmXOf/lnbOh51so8hgRcClfizr1nCihqQQihZn//o4DIgZKeA==", "requires": { "@babel/runtime": "^7.15.4" } @@ -5508,9 +5290,9 @@ "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==" }, "electron-to-chromium": { - "version": "1.4.188", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.188.tgz", - "integrity": "sha512-Zpa1+E+BVmD/orkyz1Z2dAT1XNUuVAHB3GrogfyY66dXN0ZWSsygI8+u6QTDai1ZayLcATDJpcv2Z2AZjEcr1A==" + "version": "1.4.194", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.194.tgz", + "integrity": "sha512-ola5UH0xAP1oYY0FFUsPvwtucEzCQHucXnT7PQ1zjHJMccZhCDktEugI++JUR3YuIs7Ff7afz+OVEhVAIMhLAQ==" }, "emoji-regex": { "version": "8.0.0", @@ -6856,9 +6638,9 @@ "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==" }, "gatsby": { - "version": "4.18.2", - "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-4.18.2.tgz", - "integrity": "sha512-ZWdo0TXsSRmwlmOeeuoWwXKQNteHm9VxJWF9Ud+c33r7ZXQgTA5WtRYjiBpjZuNAUwsiONNAe+wKK5jVY8B4LQ==", + "version": "4.19.0", + "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-4.19.0.tgz", + "integrity": "sha512-Bhga6PbDRSL3J7yIcVAWwN76cK0OeFWE4f5ggh4qEjnsL20kxW+LPwAexpZ5dVxbE1gsl1k/VDSX66Wj3vGH3A==", "requires": { "@babel/code-frame": "^7.14.0", "@babel/core": "^7.15.5", @@ -6880,7 +6662,7 @@ "@graphql-tools/load": "^7.5.10", "@jridgewell/trace-mapping": "^0.3.13", "@nodelib/fs.walk": "^1.2.8", - "@parcel/core": "2.6.0", + "@parcel/core": "2.6.2", "@pmmmwh/react-refresh-webpack-plugin": "^0.4.3", "@types/http-proxy": "^1.17.7", "@typescript-eslint/eslint-plugin": "^4.33.0", @@ -6894,11 +6676,10 @@ "babel-plugin-add-module-exports": "^1.0.4", "babel-plugin-dynamic-import-node": "^2.3.3", "babel-plugin-lodash": "^3.3.4", - "babel-plugin-remove-graphql-queries": "^4.18.1", - "babel-preset-gatsby": "^2.18.1", + "babel-plugin-remove-graphql-queries": "^4.19.0", + "babel-preset-gatsby": "^2.19.0", "better-opn": "^2.1.1", "bluebird": "^3.7.2", - "body-parser": "^1.19.0", "browserslist": "^4.17.5", "cache-manager": "^2.11.1", "chalk": "^4.1.2", @@ -6924,7 +6705,7 @@ "eslint-plugin-graphql": "^4.0.0", "eslint-plugin-import": "^2.26.0", "eslint-plugin-jsx-a11y": "^6.5.1", - "eslint-plugin-react": "^7.30.0", + "eslint-plugin-react": "^7.30.1", "eslint-plugin-react-hooks": "^4.5.0", "eslint-webpack-plugin": "^2.6.0", "event-source-polyfill": "1.0.25", @@ -6938,21 +6719,21 @@ "find-cache-dir": "^3.3.2", "fs-exists-cached": "1.0.0", "fs-extra": "^10.1.0", - "gatsby-cli": "^4.18.1", - "gatsby-core-utils": "^3.18.1", - "gatsby-graphiql-explorer": "^2.18.0", - "gatsby-legacy-polyfills": "^2.18.0", - "gatsby-link": "^4.18.1", - "gatsby-page-utils": "^2.18.1", - "gatsby-parcel-config": "^0.9.2", - "gatsby-plugin-page-creator": "^4.18.1", - "gatsby-plugin-typescript": "^4.18.1", - "gatsby-plugin-utils": "^3.12.1", - "gatsby-react-router-scroll": "^5.18.0", - "gatsby-script": "^1.3.0", - "gatsby-sharp": "^0.12.0", - "gatsby-telemetry": "^3.18.1", - "gatsby-worker": "^1.18.0", + "gatsby-cli": "^4.19.0", + "gatsby-core-utils": "^3.19.0", + "gatsby-graphiql-explorer": "^2.19.0", + "gatsby-legacy-polyfills": "^2.19.0", + "gatsby-link": "^4.19.0", + "gatsby-page-utils": "^2.19.0", + "gatsby-parcel-config": "^0.10.0", + "gatsby-plugin-page-creator": "^4.19.0", + "gatsby-plugin-typescript": "^4.19.0", + "gatsby-plugin-utils": "^3.13.0", + "gatsby-react-router-scroll": "^5.19.0", + "gatsby-script": "^1.4.0", + "gatsby-sharp": "^0.13.0", + "gatsby-telemetry": "^3.19.0", + "gatsby-worker": "^1.19.0", "glob": "^7.2.3", "globby": "^11.1.0", "got": "^11.8.2", @@ -6960,7 +6741,6 @@ "graphql-compose": "^9.0.7", "graphql-playground-middleware-express": "^1.7.22", "hasha": "^5.2.2", - "http-proxy": "^1.18.1", "invariant": "^2.2.4", "is-relative": "^1.0.0", "is-relative-url": "^3.0.0", @@ -6979,6 +6759,7 @@ "moment": "^2.29.1", "multer": "^1.4.3", "node-fetch": "^2.6.6", + "node-html-parser": "^5.3.3", "normalize-path": "^3.0.0", "null-loader": "^4.0.1", "opentracing": "^0.14.5", @@ -7025,9 +6806,9 @@ }, "dependencies": { "gatsby-cli": { - "version": "4.18.1", - "resolved": "https://registry.npmjs.org/gatsby-cli/-/gatsby-cli-4.18.1.tgz", - "integrity": "sha512-ceYqm6i39rHY343zUCflwXnGtd25QGccvToTWL8W42/EGToDW8bubLfeBSRCfjXm946yf1gkS/1UAsAgAphYDA==", + "version": "4.19.0", + "resolved": "https://registry.npmjs.org/gatsby-cli/-/gatsby-cli-4.19.0.tgz", + "integrity": "sha512-i1B9ktvOECiOZgyKqf0xdYx9bmrIUeZeiK+EOIvIpvFfFUwBmZR6xSHRHYUGX2JVpQiy4QEG25KcPWgF9mYJ3w==", "requires": { "@babel/code-frame": "^7.14.0", "@babel/core": "^7.15.5", @@ -7046,13 +6827,13 @@ "common-tags": "^1.8.2", "configstore": "^5.0.1", "convert-hrtime": "^3.0.0", - "create-gatsby": "^2.18.1", + "create-gatsby": "^2.19.0", "envinfo": "^7.8.1", "execa": "^5.1.1", "fs-exists-cached": "^1.0.0", "fs-extra": "^10.1.0", - "gatsby-core-utils": "^3.18.1", - "gatsby-telemetry": "^3.18.1", + "gatsby-core-utils": "^3.19.0", + "gatsby-telemetry": "^3.19.0", "hosted-git-info": "^3.0.8", "is-valid-path": "^0.1.1", "joi": "^17.4.2", @@ -7078,9 +6859,9 @@ } }, "gatsby-core-utils": { - "version": "3.18.1", - "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.18.1.tgz", - "integrity": "sha512-sJTxRqizLxYy/tSFk0ydfqEZ3ek1So9HDVUa39F6Oi8XuPCBTFzaAooUvowKGneI5YUbdk5y4VO4ybwVUynntw==", + "version": "3.19.0", + "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.19.0.tgz", + "integrity": "sha512-cjXs9DsXkPZt+UdiLHxtq+rGMGVrcnM0KwkawlruvPchI7lqGNv9CScqlvYPxx1dBhu3zSZS26EBALMlFhyOJA==", "requires": { "@babel/runtime": "^7.15.4", "ci-info": "2.0.0", @@ -7100,17 +6881,17 @@ } }, "gatsby-graphiql-explorer": { - "version": "2.18.0", - "resolved": "https://registry.npmjs.org/gatsby-graphiql-explorer/-/gatsby-graphiql-explorer-2.18.0.tgz", - "integrity": "sha512-mmY+kHc+axpDO9lfjbCEf/0oEIHTcZmpe2PtQAzkhnQHyti3xd9IIafq/1W3QKIJo5c7f40+tR3sFTERqaBeIA==", + "version": "2.19.0", + "resolved": "https://registry.npmjs.org/gatsby-graphiql-explorer/-/gatsby-graphiql-explorer-2.19.0.tgz", + "integrity": "sha512-wOD1LuWaSbCtZ0E9C2HxMBQj67k8kPnlLMr/VfKHgBh0FfvIavIq5vOq5K9zRIkAzSzYVODGEz2NVdbfVK9Bew==", "requires": { "@babel/runtime": "^7.15.4" } }, "gatsby-legacy-polyfills": { - "version": "2.18.0", - "resolved": "https://registry.npmjs.org/gatsby-legacy-polyfills/-/gatsby-legacy-polyfills-2.18.0.tgz", - "integrity": "sha512-wPnsRUnnab10wyt5VPkIhpJC1k8bVrpn0Sfat1L3JskYwkVIEvquqTmHWkpGMB8SLbXQiJEGCs2TcIrx9riL+w==", + "version": "2.19.0", + "resolved": "https://registry.npmjs.org/gatsby-legacy-polyfills/-/gatsby-legacy-polyfills-2.19.0.tgz", + "integrity": "sha512-WuyN01eiRxhanfnj6UgsCxU+Pxs9B8rtgxbrwXhlEKX+QdAp4XlywDQ8QXvv8i028QDF9h+VnvGlfcZY4tgQrQ==", "requires": { "@babel/runtime": "^7.15.4", "core-js-compat": "3.9.0" @@ -7133,77 +6914,76 @@ } }, "gatsby-link": { - "version": "4.18.1", - "resolved": "https://registry.npmjs.org/gatsby-link/-/gatsby-link-4.18.1.tgz", - "integrity": "sha512-gLFH2iU4WugHU5k+SLu4F0Ar04kDT5KhkyXly99ZVtiIvHpA5DqcuGNIUjIE/lizSCsfa553wGv7dadfghGzrQ==", + "version": "4.19.0", + "resolved": "https://registry.npmjs.org/gatsby-link/-/gatsby-link-4.19.0.tgz", + "integrity": "sha512-snv9blxZR7s/ymRjUUDP2+zrJ/beuyy/k/MeW57EkQ16YfgDyF79JMKNDU3iXFmiFhG9AYBkClIfe4qTSoCO/A==", "requires": { - "@babel/runtime": "^7.15.4", "@types/reach__router": "^1.3.10", - "gatsby-page-utils": "^2.18.1", + "gatsby-page-utils": "^2.19.0", "prop-types": "^15.8.1" } }, "gatsby-page-utils": { - "version": "2.18.1", - "resolved": "https://registry.npmjs.org/gatsby-page-utils/-/gatsby-page-utils-2.18.1.tgz", - "integrity": "sha512-4EM0LNOQgnCndHDQSI/ZKRFWYWG9dtTPuGbBaGlmPquhj3zwjOscws1vfj7g+u3PowKjZQ2Rf92RZd8xt8XLTQ==", + "version": "2.19.0", + "resolved": "https://registry.npmjs.org/gatsby-page-utils/-/gatsby-page-utils-2.19.0.tgz", + "integrity": "sha512-eYStV4jQbuEBKhatH3yzWA+lmoydJBCZVg6w2GG38eSsgcj9pdep8oQqyQdGFU3dy/HizWmWCv+wW9FIUoVQsQ==", "requires": { "@babel/runtime": "^7.15.4", "bluebird": "^3.7.2", "chokidar": "^3.5.3", "fs-exists-cached": "^1.0.0", - "gatsby-core-utils": "^3.18.1", + "gatsby-core-utils": "^3.19.0", "glob": "^7.2.3", "lodash": "^4.17.21", "micromatch": "^4.0.5" } }, "gatsby-parcel-config": { - "version": "0.9.2", - "resolved": "https://registry.npmjs.org/gatsby-parcel-config/-/gatsby-parcel-config-0.9.2.tgz", - "integrity": "sha512-ONykPoYCoFs89M8Hio0TSrUQEpwXwbSiV8aCcPH9L6w3eros9RlWrwAwnWb+lPDNJT5BsereBjefoS9cC6mpVA==", - "requires": { - "@gatsbyjs/parcel-namer-relative-to-cwd": "^1.3.2", - "@parcel/bundler-default": "2.6.0", - "@parcel/compressor-raw": "2.6.0", - "@parcel/namer-default": "2.6.0", - "@parcel/optimizer-terser": "2.6.0", - "@parcel/packager-js": "2.6.0", - "@parcel/packager-raw": "2.6.0", - "@parcel/reporter-dev-server": "2.6.0", - "@parcel/resolver-default": "2.6.0", - "@parcel/runtime-browser-hmr": "2.6.0", - "@parcel/runtime-js": "2.6.0", - "@parcel/runtime-react-refresh": "2.6.0", - "@parcel/runtime-service-worker": "2.6.0", - "@parcel/transformer-js": "2.6.0", - "@parcel/transformer-json": "2.6.0", - "@parcel/transformer-raw": "2.6.0", - "@parcel/transformer-react-refresh-wrap": "2.6.0" + "version": "0.10.0", + "resolved": "https://registry.npmjs.org/gatsby-parcel-config/-/gatsby-parcel-config-0.10.0.tgz", + "integrity": "sha512-FV+ccSeWPgicWRtycfUV1L7xyVIr6OSDnUkztnxq3Xj+OEBPC0NO2x07CA4tz16hSRDH1/qXgwY8AsHyenCidg==", + "requires": { + "@gatsbyjs/parcel-namer-relative-to-cwd": "^1.4.0", + "@parcel/bundler-default": "2.6.2", + "@parcel/compressor-raw": "2.6.2", + "@parcel/namer-default": "2.6.2", + "@parcel/optimizer-terser": "2.6.2", + "@parcel/packager-js": "2.6.2", + "@parcel/packager-raw": "2.6.2", + "@parcel/reporter-dev-server": "2.6.2", + "@parcel/resolver-default": "2.6.2", + "@parcel/runtime-browser-hmr": "2.6.2", + "@parcel/runtime-js": "2.6.2", + "@parcel/runtime-react-refresh": "2.6.2", + "@parcel/runtime-service-worker": "2.6.2", + "@parcel/transformer-js": "2.6.2", + "@parcel/transformer-json": "2.6.2", + "@parcel/transformer-raw": "2.6.2", + "@parcel/transformer-react-refresh-wrap": "2.6.2" } }, "gatsby-plugin-page-creator": { - "version": "4.18.1", - "resolved": "https://registry.npmjs.org/gatsby-plugin-page-creator/-/gatsby-plugin-page-creator-4.18.1.tgz", - "integrity": "sha512-XPAglahQ1fDnSdSNJmtAGwVqB7yZDGPOQQBQX7LD74XwYP6uriRo4LyeI+gEXRqW4d63ZL3VMvgdisde9M95LQ==", + "version": "4.19.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-page-creator/-/gatsby-plugin-page-creator-4.19.0.tgz", + "integrity": "sha512-JGclCb2lniTjBdFzoiF0Px9EhVY/3uiWx7mqnvfdVO85VVey5+eCKL60Aqamjovo6C+l/0Uldt4uT1EpNLC3Xw==", "requires": { "@babel/runtime": "^7.15.4", "@babel/traverse": "^7.15.4", "@sindresorhus/slugify": "^1.1.2", "chokidar": "^3.5.3", "fs-exists-cached": "^1.0.0", - "gatsby-core-utils": "^3.18.1", - "gatsby-page-utils": "^2.18.1", - "gatsby-plugin-utils": "^3.12.1", - "gatsby-telemetry": "^3.18.1", + "gatsby-core-utils": "^3.19.0", + "gatsby-page-utils": "^2.19.0", + "gatsby-plugin-utils": "^3.13.0", + "gatsby-telemetry": "^3.19.0", "globby": "^11.1.0", "lodash": "^4.17.21" } }, "gatsby-plugin-typescript": { - "version": "4.18.1", - "resolved": "https://registry.npmjs.org/gatsby-plugin-typescript/-/gatsby-plugin-typescript-4.18.1.tgz", - "integrity": "sha512-YUZcqL2WWiL2ngKe4A5FpTjCij2pLxiim+QaujeKfMjeWfHJ13uQ74HlxQXNpGAy4vMRBiU4CJH71RXgS1aoaA==", + "version": "4.19.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-typescript/-/gatsby-plugin-typescript-4.19.0.tgz", + "integrity": "sha512-f+aC4g/pTkUqFLTHo3OLdPQgdIFcEdoM5i8H4Pph5O4rmFXYHkkQKimRJmAz9cBb6/1wN7IBqI9m4k3AefaAjA==", "requires": { "@babel/core": "^7.15.5", "@babel/plugin-proposal-nullish-coalescing-operator": "^7.14.5", @@ -7211,19 +6991,19 @@ "@babel/plugin-proposal-optional-chaining": "^7.14.5", "@babel/preset-typescript": "^7.15.0", "@babel/runtime": "^7.15.4", - "babel-plugin-remove-graphql-queries": "^4.18.1" + "babel-plugin-remove-graphql-queries": "^4.19.0" } }, "gatsby-plugin-utils": { - "version": "3.12.1", - "resolved": "https://registry.npmjs.org/gatsby-plugin-utils/-/gatsby-plugin-utils-3.12.1.tgz", - "integrity": "sha512-Rx7/MFtiJ+pyvPLqCPj5beyMN6qOx3EYMrOqmvrWJaM32nxMfHZqUqxGruufyFNVe6edfRuNuXcKaPXlGlyexA==", + "version": "3.13.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-utils/-/gatsby-plugin-utils-3.13.0.tgz", + "integrity": "sha512-iFFWswld/Nu8IrSCikZXC4/cud9txv3ikjkQiGLccJStS9VH2rSY4XEMNRqsKN9Spe3pFBOr/97yYUaPhZaQWg==", "requires": { "@babel/runtime": "^7.15.4", "@gatsbyjs/potrace": "^2.2.0", "fs-extra": "^10.1.0", - "gatsby-core-utils": "^3.18.1", - "gatsby-sharp": "^0.12.0", + "gatsby-core-utils": "^3.19.0", + "gatsby-sharp": "^0.13.0", "graphql-compose": "^9.0.7", "import-from": "^4.0.0", "joi": "^17.4.2", @@ -7240,32 +7020,32 @@ } }, "gatsby-react-router-scroll": { - "version": "5.18.0", - "resolved": "https://registry.npmjs.org/gatsby-react-router-scroll/-/gatsby-react-router-scroll-5.18.0.tgz", - "integrity": "sha512-/A1k468s6g713c8me5DuGiia8rPWLuwjITQ/pKqgJwioJVB6MnD/iBCbHUTzLHlNwZypAVdGHCN8fCIcPcMb6Q==", + "version": "5.19.0", + "resolved": "https://registry.npmjs.org/gatsby-react-router-scroll/-/gatsby-react-router-scroll-5.19.0.tgz", + "integrity": "sha512-tl1E2/ger3Aw5Vb5n53i9wCBePYqb2dBilO05pd6FfgKYJveFidQwGzzOn1F9smdWq+5c3KJSTlKJaNYPwn72w==", "requires": { "@babel/runtime": "^7.15.4", "prop-types": "^15.8.1" } }, "gatsby-script": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/gatsby-script/-/gatsby-script-1.3.0.tgz", - "integrity": "sha512-eCz6mcMFpB7kvpmyM7AtMTxNxzdrzPgt8GiuDKWFOlDgk1il6PUjO99QsL/cCeokmaiH/6egVnm9b33/x+sy9A==" + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/gatsby-script/-/gatsby-script-1.4.0.tgz", + "integrity": "sha512-+GmHTAfFq/sQWPvl1E8QvApRfxqqamhdqjFo4YloOQRAlDc+e3nMzTzvgj8z3IWqDqlvEfHMnlvQg60E5ThO/A==" }, "gatsby-sharp": { - "version": "0.12.0", - "resolved": "https://registry.npmjs.org/gatsby-sharp/-/gatsby-sharp-0.12.0.tgz", - "integrity": "sha512-dZa/AgxmPzD0vvROEZSuT3IdzAFTxnq1FfLTf9n3mywonvsKYc84zj6nf8TEzBrVrBFAaLvZek4NpVAKWGr4/w==", + "version": "0.13.0", + "resolved": "https://registry.npmjs.org/gatsby-sharp/-/gatsby-sharp-0.13.0.tgz", + "integrity": "sha512-dGuIuWP3rC7hXl/CgkHEY4WQEW+B9Rsg8uo6u+OumuLnLBxD4vTusEIGctVKzlyIxpENEQylQ7w1JKHX9fOy9g==", "requires": { "@types/sharp": "^0.30.0", "sharp": "^0.30.3" } }, "gatsby-telemetry": { - "version": "3.18.1", - "resolved": "https://registry.npmjs.org/gatsby-telemetry/-/gatsby-telemetry-3.18.1.tgz", - "integrity": "sha512-EjjsUv15BZGsmnPrOINRT/s7d18DTKokpp2NDZLm8uOs3MwVoLtUZ/BS7h2NTmgK+WN93q3bNYRkZgKgV9QC1A==", + "version": "3.19.0", + "resolved": "https://registry.npmjs.org/gatsby-telemetry/-/gatsby-telemetry-3.19.0.tgz", + "integrity": "sha512-5JQcTm2zCLWTmnXOdOe0gxuk7aRZSTaVrOrytMlwAR7trvtBC/fKqMhJHsYwl5uW9K06F59ZdkC0apJTAPkGww==", "requires": { "@babel/code-frame": "^7.14.0", "@babel/runtime": "^7.15.4", @@ -7275,7 +7055,7 @@ "boxen": "^4.2.0", "configstore": "^5.0.1", "fs-extra": "^10.1.0", - "gatsby-core-utils": "^3.18.1", + "gatsby-core-utils": "^3.19.0", "git-up": "^4.0.5", "is-docker": "^2.2.1", "lodash": "^4.17.21", @@ -7348,9 +7128,9 @@ } }, "gatsby-worker": { - "version": "1.18.0", - "resolved": "https://registry.npmjs.org/gatsby-worker/-/gatsby-worker-1.18.0.tgz", - "integrity": "sha512-gNzqDrYFMXlfXCzdClORyDQWQZKTOF6nRUrhZT8PUxzQViO+DvnEKE3EAQvZizYKW1Hgw7cbiTtLG3qshkNepw==", + "version": "1.19.0", + "resolved": "https://registry.npmjs.org/gatsby-worker/-/gatsby-worker-1.19.0.tgz", + "integrity": "sha512-E0I51K5+rSpcUkv3wQ17FHZiicLeMH/Hz7p3oxlPCM43pcvsYJTa68Q0MqI1K6XV6Z8Nf48dERKMvHT0PnY4GQ==", "requires": { "@babel/core": "^7.15.5", "@babel/runtime": "^7.15.4" @@ -7783,6 +7563,11 @@ } } }, + "he": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/he/-/he-1.2.0.tgz", + "integrity": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==" + }, "header-case": { "version": "2.0.4", "resolved": "https://registry.npmjs.org/header-case/-/header-case-2.0.4.tgz", @@ -7833,23 +7618,6 @@ "toidentifier": "1.0.1" } }, - "http-proxy": { - "version": "1.18.1", - "resolved": "https://registry.npmjs.org/http-proxy/-/http-proxy-1.18.1.tgz", - "integrity": "sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==", - "requires": { - "eventemitter3": "^4.0.0", - "follow-redirects": "^1.0.0", - "requires-port": "^1.0.0" - }, - "dependencies": { - "eventemitter3": { - "version": "4.0.7", - "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.7.tgz", - "integrity": "sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==" - } - } - }, "http2-wrapper": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/http2-wrapper/-/http2-wrapper-1.0.3.tgz", @@ -8484,9 +8252,9 @@ } }, "keyv": { - "version": "4.3.2", - "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.3.2.tgz", - "integrity": "sha512-kn8WmodVBe12lmHpA6W8OY7SNh6wVR+Z+wZESF4iF5FCazaVXGWOtnbnvX0tMQ1bO+/TmOD9LziuYMvrIIs0xw==", + "version": "4.3.3", + "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.3.3.tgz", + "integrity": "sha512-AcysI17RvakTh8ir03+a3zJr5r0ovnAH/XTXei/4HIv3bL2K/jzvgivLK9UuI/JbU1aJjM3NSAnVvVVd3n+4DQ==", "requires": { "compress-brotli": "^1.3.8", "json-buffer": "3.0.1" @@ -8565,54 +8333,49 @@ "weak-lru-cache": "^1.2.2" }, "dependencies": { + "@lmdb/lmdb-darwin-arm64": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-arm64/-/lmdb-darwin-arm64-2.5.3.tgz", + "integrity": "sha512-RXwGZ/0eCqtCY8FLTM/koR60w+MXyvBUpToXiIyjOcBnC81tAlTUHrRUavCEWPI9zc9VgvpK3+cbumPyR8BSuA==", + "optional": true + }, + "@lmdb/lmdb-darwin-x64": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-x64/-/lmdb-darwin-x64-2.5.3.tgz", + "integrity": "sha512-337dNzh5yCdNCTk8kPfoU7jR3otibSlPDGW0vKZT97rKnQMb9tNdto3RtWoGPsQ8hKmlRZpojOJtmwjncq1MoA==", + "optional": true + }, + "@lmdb/lmdb-linux-arm": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm/-/lmdb-linux-arm-2.5.3.tgz", + "integrity": "sha512-mU2HFJDGwECkoD9dHQEfeTG5mp8hNS2BCfwoiOpVPMeapjYpQz9Uw3FkUjRZ4dGHWKbin40oWHuL0bk2bCx+Sg==", + "optional": true + }, + "@lmdb/lmdb-linux-arm64": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm64/-/lmdb-linux-arm64-2.5.3.tgz", + "integrity": "sha512-VJw60Mdgb4n+L0fO1PqfB0C7TyEQolJAC8qpqvG3JoQwvyOv6LH7Ib/WE3wxEW9nuHmVz9jkK7lk5HfWWgoO1Q==", + "optional": true + }, + "@lmdb/lmdb-linux-x64": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-x64/-/lmdb-linux-x64-2.5.3.tgz", + "integrity": "sha512-qaReO5aV8griBDsBr8uBF/faO3ieGjY1RY4p8JvTL6Mu1ylLrTVvOONqKFlNaCwrmUjWw5jnf7VafxDAeQHTow==", + "optional": true + }, + "@lmdb/lmdb-win32-x64": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-win32-x64/-/lmdb-win32-x64-2.5.3.tgz", + "integrity": "sha512-cK+Elf3RjEzrm3SerAhrFWL5oQAsZSJ/LmjL1joIpTfEP1etJJ9CTRvdaV6XLYAxaEkfdhk/9hOvHLbR9yIhCA==", + "optional": true + }, "node-addon-api": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-4.3.0.tgz", "integrity": "sha512-73sE9+3UaLYYFmDsFZnqCInzPyh3MqIwZO9cw58yIqAZhONrrabrYyYe3TuIqtIiOuTXVhsGau8hcrhhwSsDIQ==" - }, - "node-gyp-build-optional-packages": { - "version": "5.0.3", - "resolved": "https://registry.npmjs.org/node-gyp-build-optional-packages/-/node-gyp-build-optional-packages-5.0.3.tgz", - "integrity": "sha512-k75jcVzk5wnnc/FMxsf4udAoTEUv2jY3ycfdSd3yWu6Cnd1oee6/CfZJApyscA4FJOmdoixWwiwOyf16RzD5JA==" } } }, - "lmdb-darwin-arm64": { - "version": "2.3.10", - "resolved": "https://registry.npmjs.org/lmdb-darwin-arm64/-/lmdb-darwin-arm64-2.3.10.tgz", - "integrity": "sha512-LVXbH2MYu7/ZuQ8+P9rv+SwNyBKltxo7vHAGJS94HWyfwnCbKEYER9PImBvNBwzvgtaYk6x0RMX3oor6e6KdDQ==", - "optional": true - }, - "lmdb-darwin-x64": { - "version": "2.3.10", - "resolved": "https://registry.npmjs.org/lmdb-darwin-x64/-/lmdb-darwin-x64-2.3.10.tgz", - "integrity": "sha512-gAc/1b/FZOb9yVOT+o0huA+hdW82oxLo5r22dFTLoRUFG1JMzxdTjmnW6ONVOHdqC9a5bt3vBCEY3jmXNqV26A==", - "optional": true - }, - "lmdb-linux-arm": { - "version": "2.3.10", - "resolved": "https://registry.npmjs.org/lmdb-linux-arm/-/lmdb-linux-arm-2.3.10.tgz", - "integrity": "sha512-Rb8+4JjsThuEcJ7GLLwFkCFnoiwv/3hAAbELWITz70buQFF+dCZvCWWgEgmDTxwn5r+wIkdUjmFv4dqqiKQFmQ==", - "optional": true - }, - "lmdb-linux-arm64": { - "version": "2.3.10", - "resolved": "https://registry.npmjs.org/lmdb-linux-arm64/-/lmdb-linux-arm64-2.3.10.tgz", - "integrity": "sha512-Ihr8mdICTK3jA4GXHxrXGK2oekn0mY6zuDSXQDNtyRSH19j3D2Y04A7SEI9S0EP/t5sjKSudYgZbiHDxRCsI5A==", - "optional": true - }, - "lmdb-linux-x64": { - "version": "2.3.10", - "resolved": "https://registry.npmjs.org/lmdb-linux-x64/-/lmdb-linux-x64-2.3.10.tgz", - "integrity": "sha512-E3l3pDiCA9uvnLf+t3qkmBGRO01dp1EHD0x0g0iRnfpAhV7wYbayJGfG93BUt22Tj3fnq4HDo4dQ6ZWaDI1nuw==", - "optional": true - }, - "lmdb-win32-x64": { - "version": "2.3.10", - "resolved": "https://registry.npmjs.org/lmdb-win32-x64/-/lmdb-win32-x64-2.3.10.tgz", - "integrity": "sha512-gspWk34tDANhjn+brdqZstJMptGiwj4qFNVg0Zey9ds+BUlif+Lgf5szrfOVzZ8gVRkk1Lgbz7i78+V7YK7SCA==", - "optional": true - }, "load-bmfont": { "version": "1.4.1", "resolved": "https://registry.npmjs.org/load-bmfont/-/load-bmfont-1.4.1.tgz", @@ -9083,11 +8846,6 @@ "resolved": "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.8.tgz", "integrity": "sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==" }, - "nan": { - "version": "2.16.0", - "resolved": "https://registry.npmjs.org/nan/-/nan-2.16.0.tgz", - "integrity": "sha512-UdAqHyFngu7TfQKsCBgAA6pWDkT8MAO7d0jyOecVhN5354xbLqdn8mV9Tat9gepAupm0bt2DbeaSC8vS52MuFA==" - }, "nanoid": { "version": "3.3.4", "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.4.tgz", @@ -9167,9 +8925,18 @@ "integrity": "sha512-2iGbaQBV+ITgCz76ZEjmhUKAKVf7xfY1sRl4UiKQspfZMH2h06SyhNsnSVy50cwkFQDGLyif6m/6uFXHkOZ6rg==" }, "node-gyp-build-optional-packages": { - "version": "4.3.5", - "resolved": "https://registry.npmjs.org/node-gyp-build-optional-packages/-/node-gyp-build-optional-packages-4.3.5.tgz", - "integrity": "sha512-5ke7D8SiQsTQL7CkHpfR1tLwfqtKc0KYEmlnkwd40jHCASskZeS98qoZ1qDUns2aUQWikcjidRUs6PM/3iyN/w==" + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/node-gyp-build-optional-packages/-/node-gyp-build-optional-packages-5.0.3.tgz", + "integrity": "sha512-k75jcVzk5wnnc/FMxsf4udAoTEUv2jY3ycfdSd3yWu6Cnd1oee6/CfZJApyscA4FJOmdoixWwiwOyf16RzD5JA==" + }, + "node-html-parser": { + "version": "5.3.3", + "resolved": "https://registry.npmjs.org/node-html-parser/-/node-html-parser-5.3.3.tgz", + "integrity": "sha512-ncg1033CaX9UexbyA7e1N0aAoAYRDiV8jkTvzEnfd1GDvzFdrsXLzR4p4ik8mwLgnaKP/jyUFWDy9q3jvRT2Jw==", + "requires": { + "css-select": "^4.2.1", + "he": "1.2.0" + } }, "node-int64": { "version": "0.4.0", @@ -10319,6 +10086,13 @@ "http-errors": "2.0.0", "iconv-lite": "0.4.24", "unpipe": "1.0.0" + }, + "dependencies": { + "bytes": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", + "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==" + } } }, "raw-loader": { @@ -10768,11 +10542,6 @@ "resolved": "https://registry.npmjs.org/require-package-name/-/require-package-name-2.0.1.tgz", "integrity": "sha512-uuoJ1hU/k6M0779t3VMVIYpb2VMJk05cehCaABFhXaibcbvfgR8wKiozLjVFSzJPmQMRqIcO0HMyTFqfV09V6Q==" }, - "requires-port": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz", - "integrity": "sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==" - }, "resolve": { "version": "1.22.1", "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.1.tgz", @@ -10802,9 +10571,9 @@ "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==" }, "responselike": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/responselike/-/responselike-2.0.0.tgz", - "integrity": "sha512-xH48u3FTB9VsZw7R+vvgaKeLKzT6jOogbQhEe/jewwnZgzPcnyWui2Av6JpoYZF/91uueC+lqhWqeURw5/qhCw==", + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/responselike/-/responselike-2.0.1.tgz", + "integrity": "sha512-4gl03wn3hj1HP3yzgdI7d3lCkF95F21Pz4BPGvKHinyQzALR5CapwC8yIi0Rh58DEMQ/SguC03wFj2k0M/mHhw==", "requires": { "lowercase-keys": "^2.0.0" } @@ -11981,9 +11750,9 @@ "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==" }, "update-browserslist-db": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.4.tgz", - "integrity": "sha512-jnmO2BEGUjsMOe/Fg9u0oczOe/ppIDZPebzccl1yDWGLFP16Pa1/RM5wEoKYPG2zstNcDuAStejyxsOuKINdGA==", + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.5.tgz", + "integrity": "sha512-dteFFpCyvuDdr9S/ff1ISkKt/9YZxKjI9WlRR99c180GaztJtRa/fn18FdxGVKVsnPY7/a/FDN68mcvUmP4U7Q==", "requires": { "escalade": "^3.1.1", "picocolors": "^1.0.0" diff --git a/starters/gatsby-starter-minimal-ts/package.json b/starters/gatsby-starter-minimal-ts/package.json index b22a7c972d46d..858c2d5519240 100644 --- a/starters/gatsby-starter-minimal-ts/package.json +++ b/starters/gatsby-starter-minimal-ts/package.json @@ -17,7 +17,7 @@ }, "license": "0BSD", "dependencies": { - "gatsby": "^4.18.2", + "gatsby": "^4.19.0", "react": "^18.1.0", "react-dom": "^18.1.0" }, diff --git a/starters/gatsby-starter-minimal/package-lock.json b/starters/gatsby-starter-minimal/package-lock.json index 5f5d9376ae4d4..210ed74de60e4 100644 --- a/starters/gatsby-starter-minimal/package-lock.json +++ b/starters/gatsby-starter-minimal/package-lock.json @@ -66,20 +66,20 @@ "integrity": "sha512-HSmX4WZPPK3FUxYp7g2T6EyO8j96HlZJlxmKPSh6KAcqwyDrfx7hKjXpAW/0FhFfTJsR0Yt4lAjLI2coMptIHQ==" }, "@babel/core": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.18.6.tgz", - "integrity": "sha512-cQbWBpxcbbs/IUredIPkHiAGULLV8iwgNRMFzvbhEXISp4f3rUUXE5+TIw6KwUWUR3DwyI6gmBRnmAtYaWehwQ==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.18.9.tgz", + "integrity": "sha512-1LIb1eL8APMy91/IMW+31ckrfBM4yCoLaVzoDhZUKSM4cu1L1nIidyxkCgzPAgrC5WEz36IPEr/eSeSF9pIn+g==", "requires": { "@ampproject/remapping": "^2.1.0", "@babel/code-frame": "^7.18.6", - "@babel/generator": "^7.18.6", - "@babel/helper-compilation-targets": "^7.18.6", - "@babel/helper-module-transforms": "^7.18.6", - "@babel/helpers": "^7.18.6", - "@babel/parser": "^7.18.6", + "@babel/generator": "^7.18.9", + "@babel/helper-compilation-targets": "^7.18.9", + "@babel/helper-module-transforms": "^7.18.9", + "@babel/helpers": "^7.18.9", + "@babel/parser": "^7.18.9", "@babel/template": "^7.18.6", - "@babel/traverse": "^7.18.6", - "@babel/types": "^7.18.6", + "@babel/traverse": "^7.18.9", + "@babel/types": "^7.18.9", "convert-source-map": "^1.7.0", "debug": "^4.1.0", "gensync": "^1.0.0-beta.2", @@ -103,9 +103,9 @@ } }, "@babel/eslint-parser": { - "version": "7.18.2", - "resolved": "https://registry.npmjs.org/@babel/eslint-parser/-/eslint-parser-7.18.2.tgz", - "integrity": "sha512-oFQYkE8SuH14+uR51JVAmdqwKYXGRjEXx7s+WiagVjqQ+HPE+nnwyF2qlVG8evUsUHmPcA+6YXMEDbIhEyQc5A==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/eslint-parser/-/eslint-parser-7.18.9.tgz", + "integrity": "sha512-KzSGpMBggz4fKbRbWLNyPVTuQr6cmCcBhOyXTw/fieOVaw5oYAwcAj4a7UKcDYCPxQq+CG1NCDZH9e2JTXquiQ==", "requires": { "eslint-scope": "^5.1.1", "eslint-visitor-keys": "^2.1.0", @@ -120,11 +120,11 @@ } }, "@babel/generator": { - "version": "7.18.7", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.18.7.tgz", - "integrity": "sha512-shck+7VLlY72a2w9c3zYWuE1pwOKEiQHV7GTUbSnhyl5eu3i04t30tBY82ZRWrDfo3gkakCFtevExnxbkf2a3A==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.18.9.tgz", + "integrity": "sha512-wt5Naw6lJrL1/SGkipMiFxJjtyczUWTP38deiP1PO60HsBjDeKk08CGC3S8iVuvf0FmTdgKwU1KIXzSKL1G0Ug==", "requires": { - "@babel/types": "^7.18.7", + "@babel/types": "^7.18.9", "@jridgewell/gen-mapping": "^0.3.2", "jsesc": "^2.5.1" }, @@ -150,20 +150,20 @@ } }, "@babel/helper-builder-binary-assignment-operator-visitor": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.18.6.tgz", - "integrity": "sha512-KT10c1oWEpmrIRYnthbzHgoOf6B+Xd6a5yhdbNtdhtG7aO1or5HViuf1TQR36xY/QprXA5nvxO6nAjhJ4y38jw==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.18.9.tgz", + "integrity": "sha512-yFQ0YCHoIqarl8BCRwBL8ulYUaZpz3bNsA7oFepAzee+8/+ImtADXNOmO5vJvsPff3qi+hvpkY/NYBTrBQgdNw==", "requires": { "@babel/helper-explode-assignable-expression": "^7.18.6", - "@babel/types": "^7.18.6" + "@babel/types": "^7.18.9" } }, "@babel/helper-compilation-targets": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.18.6.tgz", - "integrity": "sha512-vFjbfhNCzqdeAtZflUFrG5YIFqGTqsctrtkZ1D/NB0mDW9TwW3GmmUepYY4G9wCET5rY5ugz4OGTcLd614IzQg==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.18.9.tgz", + "integrity": "sha512-tzLCyVmqUiFlcFoAPLA/gL9TeYrF61VLNtb+hvkuVaB5SUjW7jcfrglBIX1vUIoT7CLP3bBlIMeyEsIl2eFQNg==", "requires": { - "@babel/compat-data": "^7.18.6", + "@babel/compat-data": "^7.18.8", "@babel/helper-validator-option": "^7.18.6", "browserslist": "^4.20.2", "semver": "^6.3.0" @@ -177,16 +177,16 @@ } }, "@babel/helper-create-class-features-plugin": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.18.6.tgz", - "integrity": "sha512-YfDzdnoxHGV8CzqHGyCbFvXg5QESPFkXlHtvdCkesLjjVMT2Adxe4FGUR5ChIb3DxSaXO12iIOCWoXdsUVwnqw==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.18.9.tgz", + "integrity": "sha512-WvypNAYaVh23QcjpMR24CwZY2Nz6hqdOcFdPbNpV56hL5H6KiFheO7Xm1aPdlLQ7d5emYZX7VZwPp9x3z+2opw==", "requires": { "@babel/helper-annotate-as-pure": "^7.18.6", - "@babel/helper-environment-visitor": "^7.18.6", - "@babel/helper-function-name": "^7.18.6", - "@babel/helper-member-expression-to-functions": "^7.18.6", + "@babel/helper-environment-visitor": "^7.18.9", + "@babel/helper-function-name": "^7.18.9", + "@babel/helper-member-expression-to-functions": "^7.18.9", "@babel/helper-optimise-call-expression": "^7.18.6", - "@babel/helper-replace-supers": "^7.18.6", + "@babel/helper-replace-supers": "^7.18.9", "@babel/helper-split-export-declaration": "^7.18.6" } }, @@ -230,9 +230,9 @@ } }, "@babel/helper-environment-visitor": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.18.6.tgz", - "integrity": "sha512-8n6gSfn2baOY+qlp+VSzsosjCVGFqWKmDF0cCWOybh52Dw3SEyoWR1KrhMJASjLwIEkkAufZ0xvr+SxLHSpy2Q==" + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.18.9.tgz", + "integrity": "sha512-3r/aACDJ3fhQ/EVgFy0hpj8oHyHpQc+LPtJoY9SzTThAsStm4Ptegq92vqKoE3vD706ZVFWITnMnxucw+S9Ipg==" }, "@babel/helper-explode-assignable-expression": { "version": "7.18.6", @@ -243,12 +243,12 @@ } }, "@babel/helper-function-name": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.18.6.tgz", - "integrity": "sha512-0mWMxV1aC97dhjCah5U5Ua7668r5ZmSC2DLfH2EZnf9c3/dHZKiFa5pRLMH5tjSl471tY6496ZWk/kjNONBxhw==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.18.9.tgz", + "integrity": "sha512-fJgWlZt7nxGksJS9a0XdSaI4XvpExnNIgRP+rVefWh5U7BL8pPuir6SJUmFKRfjWQ51OtWSzwOxhaH/EBWWc0A==", "requires": { "@babel/template": "^7.18.6", - "@babel/types": "^7.18.6" + "@babel/types": "^7.18.9" } }, "@babel/helper-hoist-variables": { @@ -260,11 +260,11 @@ } }, "@babel/helper-member-expression-to-functions": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.18.6.tgz", - "integrity": "sha512-CeHxqwwipekotzPDUuJOfIMtcIHBuc7WAzLmTYWctVigqS5RktNMQ5bEwQSuGewzYnCtTWa3BARXeiLxDTv+Ng==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.18.9.tgz", + "integrity": "sha512-RxifAh2ZoVU67PyKIO4AMi1wTenGfMR/O/ae0CCRqwgBAt5v7xjdtRw7UoSbsreKrQn5t7r89eruK/9JjYHuDg==", "requires": { - "@babel/types": "^7.18.6" + "@babel/types": "^7.18.9" } }, "@babel/helper-module-imports": { @@ -276,18 +276,18 @@ } }, "@babel/helper-module-transforms": { - "version": "7.18.8", - "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.18.8.tgz", - "integrity": "sha512-che3jvZwIcZxrwh63VfnFTUzcAM9v/lznYkkRxIBGMPt1SudOKHAEec0SIRCfiuIzTcF7VGj/CaTT6gY4eWxvA==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.18.9.tgz", + "integrity": "sha512-KYNqY0ICwfv19b31XzvmI/mfcylOzbLtowkw+mfvGPAQ3kfCnMLYbED3YecL5tPd8nAYFQFAd6JHp2LxZk/J1g==", "requires": { - "@babel/helper-environment-visitor": "^7.18.6", + "@babel/helper-environment-visitor": "^7.18.9", "@babel/helper-module-imports": "^7.18.6", "@babel/helper-simple-access": "^7.18.6", "@babel/helper-split-export-declaration": "^7.18.6", "@babel/helper-validator-identifier": "^7.18.6", "@babel/template": "^7.18.6", - "@babel/traverse": "^7.18.8", - "@babel/types": "^7.18.8" + "@babel/traverse": "^7.18.9", + "@babel/types": "^7.18.9" } }, "@babel/helper-optimise-call-expression": { @@ -299,31 +299,31 @@ } }, "@babel/helper-plugin-utils": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.18.6.tgz", - "integrity": "sha512-gvZnm1YAAxh13eJdkb9EWHBnF3eAub3XTLCZEehHT2kWxiKVRL64+ae5Y6Ivne0mVHmMYKT+xWgZO+gQhuLUBg==" + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.18.9.tgz", + "integrity": "sha512-aBXPT3bmtLryXaoJLyYPXPlSD4p1ld9aYeR+sJNOZjJJGiOpb+fKfh3NkcCu7J54nUJwCERPBExCCpyCOHnu/w==" }, "@babel/helper-remap-async-to-generator": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.18.6.tgz", - "integrity": "sha512-z5wbmV55TveUPZlCLZvxWHtrjuJd+8inFhk7DG0WW87/oJuGDcjDiu7HIvGcpf5464L6xKCg3vNkmlVVz9hwyQ==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.18.9.tgz", + "integrity": "sha512-dI7q50YKd8BAv3VEfgg7PS7yD3Rtbi2J1XMXaalXO0W0164hYLnh8zpjRS0mte9MfVp/tltvr/cfdXPvJr1opA==", "requires": { "@babel/helper-annotate-as-pure": "^7.18.6", - "@babel/helper-environment-visitor": "^7.18.6", - "@babel/helper-wrap-function": "^7.18.6", - "@babel/types": "^7.18.6" + "@babel/helper-environment-visitor": "^7.18.9", + "@babel/helper-wrap-function": "^7.18.9", + "@babel/types": "^7.18.9" } }, "@babel/helper-replace-supers": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.18.6.tgz", - "integrity": "sha512-fTf7zoXnUGl9gF25fXCWE26t7Tvtyn6H4hkLSYhATwJvw2uYxd3aoXplMSe0g9XbwK7bmxNes7+FGO0rB/xC0g==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.18.9.tgz", + "integrity": "sha512-dNsWibVI4lNT6HiuOIBr1oyxo40HvIVmbwPUm3XZ7wMh4k2WxrxTqZwSqw/eEmXDS9np0ey5M2bz9tBmO9c+YQ==", "requires": { - "@babel/helper-environment-visitor": "^7.18.6", - "@babel/helper-member-expression-to-functions": "^7.18.6", + "@babel/helper-environment-visitor": "^7.18.9", + "@babel/helper-member-expression-to-functions": "^7.18.9", "@babel/helper-optimise-call-expression": "^7.18.6", - "@babel/traverse": "^7.18.6", - "@babel/types": "^7.18.6" + "@babel/traverse": "^7.18.9", + "@babel/types": "^7.18.9" } }, "@babel/helper-simple-access": { @@ -335,11 +335,11 @@ } }, "@babel/helper-skip-transparent-expression-wrappers": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.18.6.tgz", - "integrity": "sha512-4KoLhwGS9vGethZpAhYnMejWkX64wsnHPDwvOsKWU6Fg4+AlK2Jz3TyjQLMEPvz+1zemi/WBdkYxCD0bAfIkiw==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.18.9.tgz", + "integrity": "sha512-imytd2gHi3cJPsybLRbmFrF7u5BIEuI2cNheyKi3/iOBC63kNn3q8Crn2xVuESli0aM4KYsyEqKyS7lFL8YVtw==", "requires": { - "@babel/types": "^7.18.6" + "@babel/types": "^7.18.9" } }, "@babel/helper-split-export-declaration": { @@ -361,24 +361,24 @@ "integrity": "sha512-XO7gESt5ouv/LRJdrVjkShckw6STTaB7l9BrpBaAHDeF5YZT+01PCwmR0SJHnkW6i8OwW/EVWRShfi4j2x+KQw==" }, "@babel/helper-wrap-function": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.18.6.tgz", - "integrity": "sha512-I5/LZfozwMNbwr/b1vhhuYD+J/mU+gfGAj5td7l5Rv9WYmH6i3Om69WGKNmlIpsVW/mF6O5bvTKbvDQZVgjqOw==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.18.9.tgz", + "integrity": "sha512-cG2ru3TRAL6a60tfQflpEfs4ldiPwF6YW3zfJiRgmoFVIaC1vGnBBgatfec+ZUziPHkHSaXAuEck3Cdkf3eRpQ==", "requires": { - "@babel/helper-function-name": "^7.18.6", + "@babel/helper-function-name": "^7.18.9", "@babel/template": "^7.18.6", - "@babel/traverse": "^7.18.6", - "@babel/types": "^7.18.6" + "@babel/traverse": "^7.18.9", + "@babel/types": "^7.18.9" } }, "@babel/helpers": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.18.6.tgz", - "integrity": "sha512-vzSiiqbQOghPngUYt/zWGvK3LAsPhz55vc9XNN0xAl2gV4ieShI2OQli5duxWHD+72PZPTKAcfcZDE1Cwc5zsQ==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.18.9.tgz", + "integrity": "sha512-Jf5a+rbrLoR4eNdUmnFu8cN5eNJT6qdTdOg5IHIzq87WwyRw9PwguLFOWYgktN/60IP4fgDUawJvs7PjQIzELQ==", "requires": { "@babel/template": "^7.18.6", - "@babel/traverse": "^7.18.6", - "@babel/types": "^7.18.6" + "@babel/traverse": "^7.18.9", + "@babel/types": "^7.18.9" } }, "@babel/highlight": { @@ -404,9 +404,9 @@ } }, "@babel/parser": { - "version": "7.18.8", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.18.8.tgz", - "integrity": "sha512-RSKRfYX20dyH+elbJK2uqAkVyucL+xXzhqlMD5/ZXx+dAAwpyB7HsvnHe/ZUGOF+xLr5Wx9/JoXVTj6BQE2/oA==" + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.18.9.tgz", + "integrity": "sha512-9uJveS9eY9DJ0t64YbIBZICtJy8a5QrDEVdiLCG97fVLpDTpGX7t8mMSb6OWw6Lrnjqj4O8zwjELX3dhoMgiBg==" }, "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": { "version": "7.18.6", @@ -417,13 +417,13 @@ } }, "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.18.6.tgz", - "integrity": "sha512-Udgu8ZRgrBrttVz6A0EVL0SJ1z+RLbIeqsu632SA1hf0awEppD6TvdznoH+orIF8wtFFAV/Enmw9Y+9oV8TQcw==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.18.9.tgz", + "integrity": "sha512-AHrP9jadvH7qlOj6PINbgSuphjQUAK7AOT7DPjBo9EHoLhQTnnK5u45e1Hd4DbSQEO9nqPWtQ89r+XEOWFScKg==", "requires": { - "@babel/helper-plugin-utils": "^7.18.6", - "@babel/helper-skip-transparent-expression-wrappers": "^7.18.6", - "@babel/plugin-proposal-optional-chaining": "^7.18.6" + "@babel/helper-plugin-utils": "^7.18.9", + "@babel/helper-skip-transparent-expression-wrappers": "^7.18.9", + "@babel/plugin-proposal-optional-chaining": "^7.18.9" } }, "@babel/plugin-proposal-async-generator-functions": { @@ -466,11 +466,11 @@ } }, "@babel/plugin-proposal-export-namespace-from": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.18.6.tgz", - "integrity": "sha512-zr/QcUlUo7GPo6+X1wC98NJADqmy5QTFWWhqeQWiki4XHafJtLl/YMGkmRB2szDD2IYJCCdBTd4ElwhId9T7Xw==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.18.9.tgz", + "integrity": "sha512-k1NtHyOMvlDDFeb9G5PhUXuGj8m/wiwojgQVEhJ/fsVsMCpLyOP4h0uGEjYJKrRI+EVPlb5Jk+Gt9P97lOGwtA==", "requires": { - "@babel/helper-plugin-utils": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.9", "@babel/plugin-syntax-export-namespace-from": "^7.8.3" } }, @@ -484,11 +484,11 @@ } }, "@babel/plugin-proposal-logical-assignment-operators": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.18.6.tgz", - "integrity": "sha512-zMo66azZth/0tVd7gmkxOkOjs2rpHyhpcFo565PUP37hSp6hSd9uUKIfTDFMz58BwqgQKhJ9YxtM5XddjXVn+Q==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.18.9.tgz", + "integrity": "sha512-128YbMpjCrP35IOExw2Fq+x55LMP42DzhOhX2aNNIdI9avSWl2PI0yuBWarr3RYpZBSPtabfadkH2yeRiMD61Q==", "requires": { - "@babel/helper-plugin-utils": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.9", "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4" } }, @@ -511,15 +511,15 @@ } }, "@babel/plugin-proposal-object-rest-spread": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.18.6.tgz", - "integrity": "sha512-9yuM6wr4rIsKa1wlUAbZEazkCrgw2sMPEXCr4Rnwetu7cEW1NydkCWytLuYletbf8vFxdJxFhwEZqMpOx2eZyw==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.18.9.tgz", + "integrity": "sha512-kDDHQ5rflIeY5xl69CEqGEZ0KY369ehsCIEbTGb4siHG5BE9sga/T0r0OUwyZNLMmZE79E1kbsqAjwFCW4ds6Q==", "requires": { - "@babel/compat-data": "^7.18.6", - "@babel/helper-compilation-targets": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6", + "@babel/compat-data": "^7.18.8", + "@babel/helper-compilation-targets": "^7.18.9", + "@babel/helper-plugin-utils": "^7.18.9", "@babel/plugin-syntax-object-rest-spread": "^7.8.3", - "@babel/plugin-transform-parameters": "^7.18.6" + "@babel/plugin-transform-parameters": "^7.18.8" } }, "@babel/plugin-proposal-optional-catch-binding": { @@ -532,12 +532,12 @@ } }, "@babel/plugin-proposal-optional-chaining": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.18.6.tgz", - "integrity": "sha512-PatI6elL5eMzoypFAiYDpYQyMtXTn+iMhuxxQt5mAXD4fEmKorpSI3PHd+i3JXBJN3xyA6MvJv7at23HffFHwA==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.18.9.tgz", + "integrity": "sha512-v5nwt4IqBXihxGsW2QmCWMDS3B3bzGIk/EQVZz2ei7f3NJl8NzAJVvUmpDW5q1CRNY+Beb/k58UAH1Km1N411w==", "requires": { - "@babel/helper-plugin-utils": "^7.18.6", - "@babel/helper-skip-transparent-expression-wrappers": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.9", + "@babel/helper-skip-transparent-expression-wrappers": "^7.18.9", "@babel/plugin-syntax-optional-chaining": "^7.8.3" } }, @@ -741,42 +741,42 @@ } }, "@babel/plugin-transform-block-scoping": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.18.6.tgz", - "integrity": "sha512-pRqwb91C42vs1ahSAWJkxOxU1RHWDn16XAa6ggQ72wjLlWyYeAcLvTtE0aM8ph3KNydy9CQF2nLYcjq1WysgxQ==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.18.9.tgz", + "integrity": "sha512-5sDIJRV1KtQVEbt/EIBwGy4T01uYIo4KRB3VUqzkhrAIOGx7AoctL9+Ux88btY0zXdDyPJ9mW+bg+v+XEkGmtw==", "requires": { - "@babel/helper-plugin-utils": "^7.18.6" + "@babel/helper-plugin-utils": "^7.18.9" } }, "@babel/plugin-transform-classes": { - "version": "7.18.8", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.18.8.tgz", - "integrity": "sha512-RySDoXdF6hgHSHuAW4aLGyVQdmvEX/iJtjVre52k0pxRq4hzqze+rAVP++NmNv596brBpYmaiKgTZby7ziBnVg==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.18.9.tgz", + "integrity": "sha512-EkRQxsxoytpTlKJmSPYrsOMjCILacAjtSVkd4gChEe2kXjFCun3yohhW5I7plXJhCemM0gKsaGMcO8tinvCA5g==", "requires": { "@babel/helper-annotate-as-pure": "^7.18.6", - "@babel/helper-environment-visitor": "^7.18.6", - "@babel/helper-function-name": "^7.18.6", + "@babel/helper-environment-visitor": "^7.18.9", + "@babel/helper-function-name": "^7.18.9", "@babel/helper-optimise-call-expression": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6", - "@babel/helper-replace-supers": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.9", + "@babel/helper-replace-supers": "^7.18.9", "@babel/helper-split-export-declaration": "^7.18.6", "globals": "^11.1.0" } }, "@babel/plugin-transform-computed-properties": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.18.6.tgz", - "integrity": "sha512-9repI4BhNrR0KenoR9vm3/cIc1tSBIo+u1WVjKCAynahj25O8zfbiE6JtAtHPGQSs4yZ+bA8mRasRP+qc+2R5A==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.18.9.tgz", + "integrity": "sha512-+i0ZU1bCDymKakLxn5srGHrsAPRELC2WIbzwjLhHW9SIE1cPYkLCL0NlnXMZaM1vhfgA2+M7hySk42VBvrkBRw==", "requires": { - "@babel/helper-plugin-utils": "^7.18.6" + "@babel/helper-plugin-utils": "^7.18.9" } }, "@babel/plugin-transform-destructuring": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.18.6.tgz", - "integrity": "sha512-tgy3u6lRp17ilY8r1kP4i2+HDUwxlVqq3RTc943eAWSzGgpU1qhiKpqZ5CMyHReIYPHdo3Kg8v8edKtDqSVEyQ==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.18.9.tgz", + "integrity": "sha512-p5VCYNddPLkZTq4XymQIaIfZNJwT9YsjkPOhkVEqt6QIpQFZVM9IltqqYpOEkJoN1DPznmxUDyZ5CTZs/ZCuHA==", "requires": { - "@babel/helper-plugin-utils": "^7.18.6" + "@babel/helper-plugin-utils": "^7.18.9" } }, "@babel/plugin-transform-dotall-regex": { @@ -789,11 +789,11 @@ } }, "@babel/plugin-transform-duplicate-keys": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.18.6.tgz", - "integrity": "sha512-NJU26U/208+sxYszf82nmGYqVF9QN8py2HFTblPT9hbawi8+1C5a9JubODLTGFuT0qlkqVinmkwOD13s0sZktg==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.18.9.tgz", + "integrity": "sha512-d2bmXCtZXYc59/0SanQKbiWINadaJXqtvIQIzd4+hNwkWBgyCd5F/2t1kXoUdvPMrxzPvhK6EMQRROxsue+mfw==", "requires": { - "@babel/helper-plugin-utils": "^7.18.6" + "@babel/helper-plugin-utils": "^7.18.9" } }, "@babel/plugin-transform-exponentiation-operator": { @@ -806,11 +806,11 @@ } }, "@babel/plugin-transform-flow-strip-types": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.18.6.tgz", - "integrity": "sha512-wE0xtA7csz+hw4fKPwxmu5jnzAsXPIO57XnRwzXP3T19jWh1BODnPGoG9xKYwvAwusP7iUktHayRFbMPGtODaQ==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.18.9.tgz", + "integrity": "sha512-+G6rp2zRuOAInY5wcggsx4+QVao1qPM0osC9fTUVlAV3zOrzTCnrMAFVnR6+a3T8wz1wFIH7KhYMcMB3u1n80A==", "requires": { - "@babel/helper-plugin-utils": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.9", "@babel/plugin-syntax-flow": "^7.18.6" } }, @@ -823,21 +823,21 @@ } }, "@babel/plugin-transform-function-name": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.18.6.tgz", - "integrity": "sha512-kJha/Gbs5RjzIu0CxZwf5e3aTTSlhZnHMT8zPWnJMjNpLOUgqevg+PN5oMH68nMCXnfiMo4Bhgxqj59KHTlAnA==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.18.9.tgz", + "integrity": "sha512-WvIBoRPaJQ5yVHzcnJFor7oS5Ls0PYixlTYE63lCj2RtdQEl15M68FXQlxnG6wdraJIXRdR7KI+hQ7q/9QjrCQ==", "requires": { - "@babel/helper-compilation-targets": "^7.18.6", - "@babel/helper-function-name": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6" + "@babel/helper-compilation-targets": "^7.18.9", + "@babel/helper-function-name": "^7.18.9", + "@babel/helper-plugin-utils": "^7.18.9" } }, "@babel/plugin-transform-literals": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.18.6.tgz", - "integrity": "sha512-x3HEw0cJZVDoENXOp20HlypIHfl0zMIhMVZEBVTfmqbObIpsMxMbmU5nOEO8R7LYT+z5RORKPlTI5Hj4OsO9/Q==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.18.9.tgz", + "integrity": "sha512-IFQDSRoTPnrAIrI5zoZv73IFeZu2dhu6irxQjY9rNjTT53VmKg9fenjvoiOWOkJ6mm4jKVPtdMzBY98Fp4Z4cg==", "requires": { - "@babel/helper-plugin-utils": "^7.18.6" + "@babel/helper-plugin-utils": "^7.18.9" } }, "@babel/plugin-transform-member-expression-literals": { @@ -870,13 +870,13 @@ } }, "@babel/plugin-transform-modules-systemjs": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.18.6.tgz", - "integrity": "sha512-UbPYpXxLjTw6w6yXX2BYNxF3p6QY225wcTkfQCy3OMnSlS/C3xGtwUjEzGkldb/sy6PWLiCQ3NbYfjWUTI3t4g==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.18.9.tgz", + "integrity": "sha512-zY/VSIbbqtoRoJKo2cDTewL364jSlZGvn0LKOf9ntbfxOvjfmyrdtEEOAdswOswhZEb8UH3jDkCKHd1sPgsS0A==", "requires": { "@babel/helper-hoist-variables": "^7.18.6", - "@babel/helper-module-transforms": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6", + "@babel/helper-module-transforms": "^7.18.9", + "@babel/helper-plugin-utils": "^7.18.9", "@babel/helper-validator-identifier": "^7.18.6", "babel-plugin-dynamic-import-node": "^2.3.3" } @@ -987,12 +987,12 @@ } }, "@babel/plugin-transform-runtime": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.18.6.tgz", - "integrity": "sha512-8uRHk9ZmRSnWqUgyae249EJZ94b0yAGLBIqzZzl+0iEdbno55Pmlt/32JZsHwXD9k/uZj18Aqqk35wBX4CBTXA==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.18.9.tgz", + "integrity": "sha512-wS8uJwBt7/b/mzE13ktsJdmS4JP/j7PQSaADtnb4I2wL0zK51MQ0pmF8/Jy0wUIS96fr+fXT6S/ifiPXnvrlSg==", "requires": { "@babel/helper-module-imports": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.9", "babel-plugin-polyfill-corejs2": "^0.3.1", "babel-plugin-polyfill-corejs3": "^0.5.2", "babel-plugin-polyfill-regenerator": "^0.3.1", @@ -1015,12 +1015,12 @@ } }, "@babel/plugin-transform-spread": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.18.6.tgz", - "integrity": "sha512-ayT53rT/ENF8WWexIRg9AiV9h0aIteyWn5ptfZTZQrjk/+f3WdrJGCY4c9wcgl2+MKkKPhzbYp97FTsquZpDCw==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.18.9.tgz", + "integrity": "sha512-39Q814wyoOPtIB/qGopNIL9xDChOE1pNU0ZY5dO0owhiVt/5kFm4li+/bBtwc7QotG0u5EPzqhZdjMtmqBqyQA==", "requires": { - "@babel/helper-plugin-utils": "^7.18.6", - "@babel/helper-skip-transparent-expression-wrappers": "^7.18.6" + "@babel/helper-plugin-utils": "^7.18.9", + "@babel/helper-skip-transparent-expression-wrappers": "^7.18.9" } }, "@babel/plugin-transform-sticky-regex": { @@ -1032,19 +1032,19 @@ } }, "@babel/plugin-transform-template-literals": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.18.6.tgz", - "integrity": "sha512-UuqlRrQmT2SWRvahW46cGSany0uTlcj8NYOS5sRGYi8FxPYPoLd5DDmMd32ZXEj2Jq+06uGVQKHxa/hJx2EzKw==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.18.9.tgz", + "integrity": "sha512-S8cOWfT82gTezpYOiVaGHrCbhlHgKhQt8XH5ES46P2XWmX92yisoZywf5km75wv5sYcXDUCLMmMxOLCtthDgMA==", "requires": { - "@babel/helper-plugin-utils": "^7.18.6" + "@babel/helper-plugin-utils": "^7.18.9" } }, "@babel/plugin-transform-typeof-symbol": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.18.6.tgz", - "integrity": "sha512-7m71iS/QhsPk85xSjFPovHPcH3H9qeyzsujhTc+vcdnsXavoWYJ74zx0lP5RhpC5+iDnVLO+PPMHzC11qels1g==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.18.9.tgz", + "integrity": "sha512-SRfwTtF11G2aemAZWivL7PD+C9z52v9EvMqH9BuYbabyPuKUvSWks3oCg6041pT925L4zVFqaVBeECwsmlguEw==", "requires": { - "@babel/helper-plugin-utils": "^7.18.6" + "@babel/helper-plugin-utils": "^7.18.9" } }, "@babel/plugin-transform-typescript": { @@ -1075,28 +1075,28 @@ } }, "@babel/preset-env": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.18.6.tgz", - "integrity": "sha512-WrthhuIIYKrEFAwttYzgRNQ5hULGmwTj+D6l7Zdfsv5M7IWV/OZbUfbeL++Qrzx1nVJwWROIFhCHRYQV4xbPNw==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.18.9.tgz", + "integrity": "sha512-75pt/q95cMIHWssYtyfjVlvI+QEZQThQbKvR9xH+F/Agtw/s4Wfc2V9Bwd/P39VtixB7oWxGdH4GteTTwYJWMg==", "requires": { - "@babel/compat-data": "^7.18.6", - "@babel/helper-compilation-targets": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6", + "@babel/compat-data": "^7.18.8", + "@babel/helper-compilation-targets": "^7.18.9", + "@babel/helper-plugin-utils": "^7.18.9", "@babel/helper-validator-option": "^7.18.6", "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "^7.18.6", - "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.18.6", + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.18.9", "@babel/plugin-proposal-async-generator-functions": "^7.18.6", "@babel/plugin-proposal-class-properties": "^7.18.6", "@babel/plugin-proposal-class-static-block": "^7.18.6", "@babel/plugin-proposal-dynamic-import": "^7.18.6", - "@babel/plugin-proposal-export-namespace-from": "^7.18.6", + "@babel/plugin-proposal-export-namespace-from": "^7.18.9", "@babel/plugin-proposal-json-strings": "^7.18.6", - "@babel/plugin-proposal-logical-assignment-operators": "^7.18.6", + "@babel/plugin-proposal-logical-assignment-operators": "^7.18.9", "@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6", "@babel/plugin-proposal-numeric-separator": "^7.18.6", - "@babel/plugin-proposal-object-rest-spread": "^7.18.6", + "@babel/plugin-proposal-object-rest-spread": "^7.18.9", "@babel/plugin-proposal-optional-catch-binding": "^7.18.6", - "@babel/plugin-proposal-optional-chaining": "^7.18.6", + "@babel/plugin-proposal-optional-chaining": "^7.18.9", "@babel/plugin-proposal-private-methods": "^7.18.6", "@babel/plugin-proposal-private-property-in-object": "^7.18.6", "@babel/plugin-proposal-unicode-property-regex": "^7.18.6", @@ -1118,37 +1118,37 @@ "@babel/plugin-transform-arrow-functions": "^7.18.6", "@babel/plugin-transform-async-to-generator": "^7.18.6", "@babel/plugin-transform-block-scoped-functions": "^7.18.6", - "@babel/plugin-transform-block-scoping": "^7.18.6", - "@babel/plugin-transform-classes": "^7.18.6", - "@babel/plugin-transform-computed-properties": "^7.18.6", - "@babel/plugin-transform-destructuring": "^7.18.6", + "@babel/plugin-transform-block-scoping": "^7.18.9", + "@babel/plugin-transform-classes": "^7.18.9", + "@babel/plugin-transform-computed-properties": "^7.18.9", + "@babel/plugin-transform-destructuring": "^7.18.9", "@babel/plugin-transform-dotall-regex": "^7.18.6", - "@babel/plugin-transform-duplicate-keys": "^7.18.6", + "@babel/plugin-transform-duplicate-keys": "^7.18.9", "@babel/plugin-transform-exponentiation-operator": "^7.18.6", - "@babel/plugin-transform-for-of": "^7.18.6", - "@babel/plugin-transform-function-name": "^7.18.6", - "@babel/plugin-transform-literals": "^7.18.6", + "@babel/plugin-transform-for-of": "^7.18.8", + "@babel/plugin-transform-function-name": "^7.18.9", + "@babel/plugin-transform-literals": "^7.18.9", "@babel/plugin-transform-member-expression-literals": "^7.18.6", "@babel/plugin-transform-modules-amd": "^7.18.6", "@babel/plugin-transform-modules-commonjs": "^7.18.6", - "@babel/plugin-transform-modules-systemjs": "^7.18.6", + "@babel/plugin-transform-modules-systemjs": "^7.18.9", "@babel/plugin-transform-modules-umd": "^7.18.6", "@babel/plugin-transform-named-capturing-groups-regex": "^7.18.6", "@babel/plugin-transform-new-target": "^7.18.6", "@babel/plugin-transform-object-super": "^7.18.6", - "@babel/plugin-transform-parameters": "^7.18.6", + "@babel/plugin-transform-parameters": "^7.18.8", "@babel/plugin-transform-property-literals": "^7.18.6", "@babel/plugin-transform-regenerator": "^7.18.6", "@babel/plugin-transform-reserved-words": "^7.18.6", "@babel/plugin-transform-shorthand-properties": "^7.18.6", - "@babel/plugin-transform-spread": "^7.18.6", + "@babel/plugin-transform-spread": "^7.18.9", "@babel/plugin-transform-sticky-regex": "^7.18.6", - "@babel/plugin-transform-template-literals": "^7.18.6", - "@babel/plugin-transform-typeof-symbol": "^7.18.6", + "@babel/plugin-transform-template-literals": "^7.18.9", + "@babel/plugin-transform-typeof-symbol": "^7.18.9", "@babel/plugin-transform-unicode-escapes": "^7.18.6", "@babel/plugin-transform-unicode-regex": "^7.18.6", "@babel/preset-modules": "^0.1.5", - "@babel/types": "^7.18.6", + "@babel/types": "^7.18.9", "babel-plugin-polyfill-corejs2": "^0.3.1", "babel-plugin-polyfill-corejs3": "^0.5.2", "babel-plugin-polyfill-regenerator": "^0.3.1", @@ -1199,17 +1199,17 @@ } }, "@babel/runtime": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.18.6.tgz", - "integrity": "sha512-t9wi7/AW6XtKahAe20Yw0/mMljKq0B1r2fPdvaAdV/KPDZewFXdaaa6K7lxmZBZ8FBNpCiAT6iHPmd6QO9bKfQ==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.18.9.tgz", + "integrity": "sha512-lkqXDcvlFT5rvEjiu6+QYO+1GXrEHRo2LOtS7E4GtX5ESIZOgepqsZBVIj6Pv+a6zqsya9VCgiK1KAK4BvJDAw==", "requires": { "regenerator-runtime": "^0.13.4" } }, "@babel/runtime-corejs3": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/runtime-corejs3/-/runtime-corejs3-7.18.6.tgz", - "integrity": "sha512-cOu5wH2JFBgMjje+a+fz2JNIWU4GzYpl05oSob3UDvBEh6EuIn+TXFHMmBbhSb+k/4HMzgKCQfEEDArAWNF9Cw==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/runtime-corejs3/-/runtime-corejs3-7.18.9.tgz", + "integrity": "sha512-qZEWeccZCrHA2Au4/X05QW5CMdm4VjUDCrGq5gf1ZDcM4hRqreKrtwAn7yci9zfgAS9apvnsFXiGBHBAxZdK9A==", "requires": { "core-js-pure": "^3.20.2", "regenerator-runtime": "^0.13.4" @@ -1226,18 +1226,18 @@ } }, "@babel/traverse": { - "version": "7.18.8", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.18.8.tgz", - "integrity": "sha512-UNg/AcSySJYR/+mIcJQDCv00T+AqRO7j/ZEJLzpaYtgM48rMg5MnkJgyNqkzo88+p4tfRvZJCEiwwfG6h4jkRg==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.18.9.tgz", + "integrity": "sha512-LcPAnujXGwBgv3/WHv01pHtb2tihcyW1XuL9wd7jqh1Z8AQkTd+QVjMrMijrln0T7ED3UXLIy36P9Ao7W75rYg==", "requires": { "@babel/code-frame": "^7.18.6", - "@babel/generator": "^7.18.7", - "@babel/helper-environment-visitor": "^7.18.6", - "@babel/helper-function-name": "^7.18.6", + "@babel/generator": "^7.18.9", + "@babel/helper-environment-visitor": "^7.18.9", + "@babel/helper-function-name": "^7.18.9", "@babel/helper-hoist-variables": "^7.18.6", "@babel/helper-split-export-declaration": "^7.18.6", - "@babel/parser": "^7.18.8", - "@babel/types": "^7.18.8", + "@babel/parser": "^7.18.9", + "@babel/types": "^7.18.9", "debug": "^4.1.0", "globals": "^11.1.0" }, @@ -1253,9 +1253,9 @@ } }, "@babel/types": { - "version": "7.18.8", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.8.tgz", - "integrity": "sha512-qwpdsmraq0aJ3osLJRApsc2ouSJCdnMeZwB0DhbtHAtRpZNZCdlbRnHIgcRKzdE1g0iOGg644fzjOBcdOz9cPw==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.9.tgz", + "integrity": "sha512-WwMLAg2MvJmt/rKEVQBBhIVffMmnilX4oe0sRe7iPOHIGsqpruFHHdrfj4O1CMMtgMtCU4oPafZjDPCRgO57Wg==", "requires": { "@babel/helper-validator-identifier": "^7.18.6", "to-fast-properties": "^2.0.0" @@ -1317,239 +1317,14 @@ } }, "@gatsbyjs/parcel-namer-relative-to-cwd": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/@gatsbyjs/parcel-namer-relative-to-cwd/-/parcel-namer-relative-to-cwd-1.3.2.tgz", - "integrity": "sha512-jiYGiq8Zk21x2IIWbsLQ0GqgGJyKjj+/4jYwr5msD5ORB/JAZLk4IDrMKZ9rFXkNPq/bRV57ub0k/NvRMELfLQ==", + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/@gatsbyjs/parcel-namer-relative-to-cwd/-/parcel-namer-relative-to-cwd-1.4.0.tgz", + "integrity": "sha512-oXhiaPtYTGYqGZlazYRUabWVHWx5z6sAyBVLhUnpsKcBsK815cET+mjeWDKpmvJmFTKHC72Bvy1WIEnW3++YxA==", "requires": { "@babel/runtime": "^7.18.0", "@parcel/namer-default": "2.6.2", - "@parcel/plugin": "2.6.0", - "gatsby-core-utils": "^3.18.1" - }, - "dependencies": { - "@lmdb/lmdb-darwin-arm64": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-arm64/-/lmdb-darwin-arm64-2.5.2.tgz", - "integrity": "sha512-+F8ioQIUN68B4UFiIBYu0QQvgb9FmlKw2ctQMSBfW2QBrZIxz9vD9jCGqTCPqZBRbPHAS/vG1zSXnKqnS2ch/A==", - "optional": true - }, - "@lmdb/lmdb-darwin-x64": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-x64/-/lmdb-darwin-x64-2.5.2.tgz", - "integrity": "sha512-KvPH56KRLLx4KSfKBx0m1r7GGGUMXm0jrKmNE7plbHlesZMuPJICtn07HYgQhj1LNsK7Yqwuvnqh1QxhJnF1EA==", - "optional": true - }, - "@lmdb/lmdb-linux-arm": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm/-/lmdb-linux-arm-2.5.2.tgz", - "integrity": "sha512-5kQAP21hAkfW5Bl+e0P57dV4dGYnkNIpR7f/GAh6QHlgXx+vp/teVj4PGRZaKAvt0GX6++N6hF8NnGElLDuIDw==", - "optional": true - }, - "@lmdb/lmdb-linux-arm64": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm64/-/lmdb-linux-arm64-2.5.2.tgz", - "integrity": "sha512-aLl89VHL/wjhievEOlPocoefUyWdvzVrcQ/MHQYZm2JfV1jUsrbr/ZfkPPUFvZBf+VSE+Q0clWs9l29PCX1hTQ==", - "optional": true - }, - "@lmdb/lmdb-linux-x64": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-x64/-/lmdb-linux-x64-2.5.2.tgz", - "integrity": "sha512-xUdUfwDJLGjOUPH3BuPBt0NlIrR7f/QHKgu3GZIXswMMIihAekj2i97oI0iWG5Bok/b+OBjHPfa8IU9velnP/Q==", - "optional": true - }, - "@lmdb/lmdb-win32-x64": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-win32-x64/-/lmdb-win32-x64-2.5.2.tgz", - "integrity": "sha512-zrBczSbXKxEyK2ijtbRdICDygRqWSRPpZMN5dD1T8VMEW5RIhIbwFWw2phDRXuBQdVDpSjalCIUMWMV2h3JaZA==", - "optional": true - }, - "@parcel/cache": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/@parcel/cache/-/cache-2.6.2.tgz", - "integrity": "sha512-hhJ6AsEGybeQZd9c/GYqfcKTgZKQXu3Xih6TlnP3gdR3KZoJOnb40ovHD1yYg4COvfcXThKP1cVJ18J6rcv3IA==", - "requires": { - "@parcel/fs": "2.6.2", - "@parcel/logger": "2.6.2", - "@parcel/utils": "2.6.2", - "lmdb": "2.5.2" - } - }, - "@parcel/codeframe": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/@parcel/codeframe/-/codeframe-2.6.2.tgz", - "integrity": "sha512-oFlHr6HCaYYsB4SHkU+gn9DKtbzvv3/4NdwMX0/6NAKyYVI7inEsXyPGw2Bbd2ZCFatW9QJZUETF0etvh5AEfQ==", - "requires": { - "chalk": "^4.1.0" - } - }, - "@parcel/diagnostic": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/@parcel/diagnostic/-/diagnostic-2.6.2.tgz", - "integrity": "sha512-3ODSBkKVihENU763z1/1DhGAWFhYWRxOCOShC72KXp+GFnSgGiBsxclu8NBa/N948Rzp8lqQI8U1nLcKkh0O/w==", - "requires": { - "@mischnic/json-sourcemap": "^0.1.0", - "nullthrows": "^1.1.1" - } - }, - "@parcel/events": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/@parcel/events/-/events-2.6.2.tgz", - "integrity": "sha512-IaCjOeA5ercdFVi1EZOmUHhGfIysmCUgc2Th9hMugSFO0I3GzRsBcAdP6XPfWm+TV6sQ/qZRfdk/drUxoAupnw==" - }, - "@parcel/fs": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/@parcel/fs/-/fs-2.6.2.tgz", - "integrity": "sha512-mIhqdF3tjgeoIGqW7Nc/xfM2ClID7o8livwUe5lpQEP+ZaIBiMigXs6ckv3WToCACK+3uylrSD2A/HmlhrxMqQ==", - "requires": { - "@parcel/fs-search": "2.6.2", - "@parcel/types": "2.6.2", - "@parcel/utils": "2.6.2", - "@parcel/watcher": "^2.0.0", - "@parcel/workers": "2.6.2" - } - }, - "@parcel/fs-search": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/@parcel/fs-search/-/fs-search-2.6.2.tgz", - "integrity": "sha512-4STid1zqtGnmGjHD/2TG2g/zPDiCTtE3IAS24QYH3eiUAz2uoKGgEqd2tZbZ2yI96jtCuIhC1bzVu8Hbykls7w==", - "requires": { - "detect-libc": "^1.0.3" - } - }, - "@parcel/hash": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/@parcel/hash/-/hash-2.6.2.tgz", - "integrity": "sha512-tFB+cJU1Wqag6WyJgsmx3nx+xhmjcNZqtWh/MtK1lHNnZdDRk6bjr7SapnygBwruz+SmSt5bbdVThcpk2dRCcA==", - "requires": { - "detect-libc": "^1.0.3", - "xxhash-wasm": "^0.4.2" - } - }, - "@parcel/logger": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/@parcel/logger/-/logger-2.6.2.tgz", - "integrity": "sha512-Sz5YGCj1DbEiX0/G8Uw97LLZ0uEK+qtWcRAkHNpJpeMiSqDiRNevxXltz42EcLo+oCh4d4wyiVzwi9mNwzhS/Q==", - "requires": { - "@parcel/diagnostic": "2.6.2", - "@parcel/events": "2.6.2" - } - }, - "@parcel/markdown-ansi": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/@parcel/markdown-ansi/-/markdown-ansi-2.6.2.tgz", - "integrity": "sha512-N/h9J4eibhc+B+krzvPMzFUWL37GudBIZBa7XSLkcuH6MnYYfh6rrMvhIyyESwk6VkcZNVzAeZrGQqxEs0dHDQ==", - "requires": { - "chalk": "^4.1.0" - } - }, - "@parcel/namer-default": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/@parcel/namer-default/-/namer-default-2.6.2.tgz", - "integrity": "sha512-mp7bx/BQaIuohmZP0uE+gAmDBzzH0Yu8F4yCtE611lc6i0mou+nWRhzyKLNC/ieuI8DB3BFh2QQKeTxJn4W0qg==", - "requires": { - "@parcel/diagnostic": "2.6.2", - "@parcel/plugin": "2.6.2", - "nullthrows": "^1.1.1" - }, - "dependencies": { - "@parcel/plugin": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/@parcel/plugin/-/plugin-2.6.2.tgz", - "integrity": "sha512-wbbWsM23Pr+8xtLSvf+UopXdVYlpKCCx6PuuZaZcKo+9IcDCWoGXD4M8Kkz14qBmkFn5uM00mULUqmVdSibB2w==", - "requires": { - "@parcel/types": "2.6.2" - } - } - } - }, - "@parcel/package-manager": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/@parcel/package-manager/-/package-manager-2.6.2.tgz", - "integrity": "sha512-xGMqTgnwTE3rgzYwUZMKxR8fzmP5iSYz/gj2H8FR3pEmwh/8xCMtNjTSth+hPVGuqgRZ6JxwpfdY/fXdZ61ViQ==", - "requires": { - "@parcel/diagnostic": "2.6.2", - "@parcel/fs": "2.6.2", - "@parcel/logger": "2.6.2", - "@parcel/types": "2.6.2", - "@parcel/utils": "2.6.2", - "@parcel/workers": "2.6.2", - "semver": "^5.7.1" - } - }, - "@parcel/types": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/@parcel/types/-/types-2.6.2.tgz", - "integrity": "sha512-MV8BFpCIs2jMUvK2RHqzkoiuOQ//JIbrD1zocA2YRW3zuPL/iABvbAABJoXpoPCKikVWOoCWASgBfWQo26VvJQ==", - "requires": { - "@parcel/cache": "2.6.2", - "@parcel/diagnostic": "2.6.2", - "@parcel/fs": "2.6.2", - "@parcel/package-manager": "2.6.2", - "@parcel/source-map": "^2.0.0", - "@parcel/workers": "2.6.2", - "utility-types": "^3.10.0" - } - }, - "@parcel/utils": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/@parcel/utils/-/utils-2.6.2.tgz", - "integrity": "sha512-Ug7hpRxjgbY5AopW55nY7MmGMVmwmN+ihfCmxJkBUoESTG/3iq8uME7GjyOgW5DkQc2K7q62i8y8N0wCJT1u4Q==", - "requires": { - "@parcel/codeframe": "2.6.2", - "@parcel/diagnostic": "2.6.2", - "@parcel/hash": "2.6.2", - "@parcel/logger": "2.6.2", - "@parcel/markdown-ansi": "2.6.2", - "@parcel/source-map": "^2.0.0", - "chalk": "^4.1.0" - } - }, - "@parcel/workers": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/@parcel/workers/-/workers-2.6.2.tgz", - "integrity": "sha512-wBgUjJQm+lDd12fPRUmk09+ujTA9DgwPdqylSFK0OtI/yT6A+2kArUqjp8IwWo2tCJXoMzXBne2XQIWKqMiN4Q==", - "requires": { - "@parcel/diagnostic": "2.6.2", - "@parcel/logger": "2.6.2", - "@parcel/types": "2.6.2", - "@parcel/utils": "2.6.2", - "chrome-trace-event": "^1.0.2", - "nullthrows": "^1.1.1" - } - }, - "lmdb": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/lmdb/-/lmdb-2.5.2.tgz", - "integrity": "sha512-V5V5Xa2Hp9i2XsbDALkBTeHXnBXh/lEmk9p22zdr7jtuOIY9TGhjK6vAvTpOOx9IKU4hJkRWZxn/HsvR1ELLtA==", - "requires": { - "@lmdb/lmdb-darwin-arm64": "2.5.2", - "@lmdb/lmdb-darwin-x64": "2.5.2", - "@lmdb/lmdb-linux-arm": "2.5.2", - "@lmdb/lmdb-linux-arm64": "2.5.2", - "@lmdb/lmdb-linux-x64": "2.5.2", - "@lmdb/lmdb-win32-x64": "2.5.2", - "msgpackr": "^1.5.4", - "node-addon-api": "^4.3.0", - "node-gyp-build-optional-packages": "5.0.3", - "ordered-binary": "^1.2.4", - "weak-lru-cache": "^1.2.2" - } - }, - "node-addon-api": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-4.3.0.tgz", - "integrity": "sha512-73sE9+3UaLYYFmDsFZnqCInzPyh3MqIwZO9cw58yIqAZhONrrabrYyYe3TuIqtIiOuTXVhsGau8hcrhhwSsDIQ==" - }, - "node-gyp-build-optional-packages": { - "version": "5.0.3", - "resolved": "https://registry.npmjs.org/node-gyp-build-optional-packages/-/node-gyp-build-optional-packages-5.0.3.tgz", - "integrity": "sha512-k75jcVzk5wnnc/FMxsf4udAoTEUv2jY3ycfdSd3yWu6Cnd1oee6/CfZJApyscA4FJOmdoixWwiwOyf16RzD5JA==" - }, - "semver": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", - "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==" - } + "@parcel/plugin": "2.6.2", + "gatsby-core-utils": "^3.19.0" } }, "@gatsbyjs/potrace": { @@ -2450,39 +2225,39 @@ } }, "@lmdb/lmdb-darwin-arm64": { - "version": "2.5.3", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-arm64/-/lmdb-darwin-arm64-2.5.3.tgz", - "integrity": "sha512-RXwGZ/0eCqtCY8FLTM/koR60w+MXyvBUpToXiIyjOcBnC81tAlTUHrRUavCEWPI9zc9VgvpK3+cbumPyR8BSuA==", + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-arm64/-/lmdb-darwin-arm64-2.5.2.tgz", + "integrity": "sha512-+F8ioQIUN68B4UFiIBYu0QQvgb9FmlKw2ctQMSBfW2QBrZIxz9vD9jCGqTCPqZBRbPHAS/vG1zSXnKqnS2ch/A==", "optional": true }, "@lmdb/lmdb-darwin-x64": { - "version": "2.5.3", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-x64/-/lmdb-darwin-x64-2.5.3.tgz", - "integrity": "sha512-337dNzh5yCdNCTk8kPfoU7jR3otibSlPDGW0vKZT97rKnQMb9tNdto3RtWoGPsQ8hKmlRZpojOJtmwjncq1MoA==", + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-x64/-/lmdb-darwin-x64-2.5.2.tgz", + "integrity": "sha512-KvPH56KRLLx4KSfKBx0m1r7GGGUMXm0jrKmNE7plbHlesZMuPJICtn07HYgQhj1LNsK7Yqwuvnqh1QxhJnF1EA==", "optional": true }, "@lmdb/lmdb-linux-arm": { - "version": "2.5.3", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm/-/lmdb-linux-arm-2.5.3.tgz", - "integrity": "sha512-mU2HFJDGwECkoD9dHQEfeTG5mp8hNS2BCfwoiOpVPMeapjYpQz9Uw3FkUjRZ4dGHWKbin40oWHuL0bk2bCx+Sg==", + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm/-/lmdb-linux-arm-2.5.2.tgz", + "integrity": "sha512-5kQAP21hAkfW5Bl+e0P57dV4dGYnkNIpR7f/GAh6QHlgXx+vp/teVj4PGRZaKAvt0GX6++N6hF8NnGElLDuIDw==", "optional": true }, "@lmdb/lmdb-linux-arm64": { - "version": "2.5.3", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm64/-/lmdb-linux-arm64-2.5.3.tgz", - "integrity": "sha512-VJw60Mdgb4n+L0fO1PqfB0C7TyEQolJAC8qpqvG3JoQwvyOv6LH7Ib/WE3wxEW9nuHmVz9jkK7lk5HfWWgoO1Q==", + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm64/-/lmdb-linux-arm64-2.5.2.tgz", + "integrity": "sha512-aLl89VHL/wjhievEOlPocoefUyWdvzVrcQ/MHQYZm2JfV1jUsrbr/ZfkPPUFvZBf+VSE+Q0clWs9l29PCX1hTQ==", "optional": true }, "@lmdb/lmdb-linux-x64": { - "version": "2.5.3", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-x64/-/lmdb-linux-x64-2.5.3.tgz", - "integrity": "sha512-qaReO5aV8griBDsBr8uBF/faO3ieGjY1RY4p8JvTL6Mu1ylLrTVvOONqKFlNaCwrmUjWw5jnf7VafxDAeQHTow==", + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-x64/-/lmdb-linux-x64-2.5.2.tgz", + "integrity": "sha512-xUdUfwDJLGjOUPH3BuPBt0NlIrR7f/QHKgu3GZIXswMMIihAekj2i97oI0iWG5Bok/b+OBjHPfa8IU9velnP/Q==", "optional": true }, "@lmdb/lmdb-win32-x64": { - "version": "2.5.3", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-win32-x64/-/lmdb-win32-x64-2.5.3.tgz", - "integrity": "sha512-cK+Elf3RjEzrm3SerAhrFWL5oQAsZSJ/LmjL1joIpTfEP1etJJ9CTRvdaV6XLYAxaEkfdhk/9hOvHLbR9yIhCA==", + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-win32-x64/-/lmdb-win32-x64-2.5.2.tgz", + "integrity": "sha512-zrBczSbXKxEyK2ijtbRdICDygRqWSRPpZMN5dD1T8VMEW5RIhIbwFWw2phDRXuBQdVDpSjalCIUMWMV2h3JaZA==", "optional": true }, "@microsoft/fetch-event-source": { @@ -2560,43 +2335,42 @@ } }, "@parcel/bundler-default": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/bundler-default/-/bundler-default-2.6.0.tgz", - "integrity": "sha512-AplEdGm/odV7yGmoeOnglxnY31WlNB5EqGLFGxkgs7uwDaTWoTX/9SWPG6xfvirhjDpms8sLSiVuBdFRCCLtNA==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/bundler-default/-/bundler-default-2.6.2.tgz", + "integrity": "sha512-XIa3had/MIaTGgRFkHApXwytYs77k4geaNcmlb6nzmAABcYjW1CLYh83Zt0AbzLFsDT9ZcRY3u2UjhNf6efSaw==", "requires": { - "@parcel/diagnostic": "2.6.0", - "@parcel/hash": "2.6.0", - "@parcel/plugin": "2.6.0", - "@parcel/utils": "2.6.0", + "@parcel/diagnostic": "2.6.2", + "@parcel/hash": "2.6.2", + "@parcel/plugin": "2.6.2", + "@parcel/utils": "2.6.2", "nullthrows": "^1.1.1" } }, "@parcel/cache": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/cache/-/cache-2.6.0.tgz", - "integrity": "sha512-4vbD5uSuf+kRnrFesKhpn0AKnOw8u2UlvCyrplYmp1g9bNAkIooC/nDGdmkb/9SviPEbni9PEanQEHDU2+slpA==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/cache/-/cache-2.6.2.tgz", + "integrity": "sha512-hhJ6AsEGybeQZd9c/GYqfcKTgZKQXu3Xih6TlnP3gdR3KZoJOnb40ovHD1yYg4COvfcXThKP1cVJ18J6rcv3IA==", "requires": { - "@parcel/fs": "2.6.0", - "@parcel/logger": "2.6.0", - "@parcel/utils": "2.6.0", - "lmdb": "2.3.10" + "@parcel/fs": "2.6.2", + "@parcel/logger": "2.6.2", + "@parcel/utils": "2.6.2", + "lmdb": "2.5.2" }, "dependencies": { "lmdb": { - "version": "2.3.10", - "resolved": "https://registry.npmjs.org/lmdb/-/lmdb-2.3.10.tgz", - "integrity": "sha512-GtH+nStn9V59CfYeQ5ddx6YTfuFCmu86UJojIjJAweG+/Fm0PDknuk3ovgYDtY/foMeMdZa8/P7oSljW/d5UPw==", - "requires": { - "lmdb-darwin-arm64": "2.3.10", - "lmdb-darwin-x64": "2.3.10", - "lmdb-linux-arm": "2.3.10", - "lmdb-linux-arm64": "2.3.10", - "lmdb-linux-x64": "2.3.10", - "lmdb-win32-x64": "2.3.10", + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/lmdb/-/lmdb-2.5.2.tgz", + "integrity": "sha512-V5V5Xa2Hp9i2XsbDALkBTeHXnBXh/lEmk9p22zdr7jtuOIY9TGhjK6vAvTpOOx9IKU4hJkRWZxn/HsvR1ELLtA==", + "requires": { + "@lmdb/lmdb-darwin-arm64": "2.5.2", + "@lmdb/lmdb-darwin-x64": "2.5.2", + "@lmdb/lmdb-linux-arm": "2.5.2", + "@lmdb/lmdb-linux-arm64": "2.5.2", + "@lmdb/lmdb-linux-x64": "2.5.2", + "@lmdb/lmdb-win32-x64": "2.5.2", "msgpackr": "^1.5.4", - "nan": "^2.14.2", "node-addon-api": "^4.3.0", - "node-gyp-build-optional-packages": "^4.3.2", + "node-gyp-build-optional-packages": "5.0.3", "ordered-binary": "^1.2.4", "weak-lru-cache": "^1.2.2" } @@ -2609,40 +2383,40 @@ } }, "@parcel/codeframe": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/codeframe/-/codeframe-2.6.0.tgz", - "integrity": "sha512-yXXxrO9yyedHKpTwC+Af0+vPmQm+A9xeEhkt4f0yVg1n4t4yUIxYlTedzbM8ygZEEBtkXU9jJ+PkgXbfMf0dqw==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/codeframe/-/codeframe-2.6.2.tgz", + "integrity": "sha512-oFlHr6HCaYYsB4SHkU+gn9DKtbzvv3/4NdwMX0/6NAKyYVI7inEsXyPGw2Bbd2ZCFatW9QJZUETF0etvh5AEfQ==", "requires": { "chalk": "^4.1.0" } }, "@parcel/compressor-raw": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/compressor-raw/-/compressor-raw-2.6.0.tgz", - "integrity": "sha512-rtMU2mGl88bic6Xbq1u5L49bMK4s5185b0k7h3JRdS6/0rR+Xp4k/o9Wog+hHjK/s82z1eF9WmET779ZpIDIQQ==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/compressor-raw/-/compressor-raw-2.6.2.tgz", + "integrity": "sha512-P3c8jjV5HVs+fNDjhvq7PtHXNm687nit1iwTS5VAt+ScXKhKBhoIJ56q+9opcw0jnXVjAAgZqcRZ50oAJBGdKw==", "requires": { - "@parcel/plugin": "2.6.0" + "@parcel/plugin": "2.6.2" } }, "@parcel/core": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/core/-/core-2.6.0.tgz", - "integrity": "sha512-8OOWbPuxpFydpwNyKoz6d3e3O4DmxNYmMw4DXwrPSj/jyg7oa+SDtMT0/VXEhujE0HYkQPCHt4npRajkSuf99A==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/core/-/core-2.6.2.tgz", + "integrity": "sha512-JlKS3Ux0ngmdooSBbzQLShHJdsapF9E7TGMo1hFaHRquZip/DaqzvysYrgMJlDuCoLArciq5ei7ZKzGeK9zexA==", "requires": { "@mischnic/json-sourcemap": "^0.1.0", - "@parcel/cache": "2.6.0", - "@parcel/diagnostic": "2.6.0", - "@parcel/events": "2.6.0", - "@parcel/fs": "2.6.0", - "@parcel/graph": "2.6.0", - "@parcel/hash": "2.6.0", - "@parcel/logger": "2.6.0", - "@parcel/package-manager": "2.6.0", - "@parcel/plugin": "2.6.0", + "@parcel/cache": "2.6.2", + "@parcel/diagnostic": "2.6.2", + "@parcel/events": "2.6.2", + "@parcel/fs": "2.6.2", + "@parcel/graph": "2.6.2", + "@parcel/hash": "2.6.2", + "@parcel/logger": "2.6.2", + "@parcel/package-manager": "2.6.2", + "@parcel/plugin": "2.6.2", "@parcel/source-map": "^2.0.0", - "@parcel/types": "2.6.0", - "@parcel/utils": "2.6.0", - "@parcel/workers": "2.6.0", + "@parcel/types": "2.6.2", + "@parcel/utils": "2.6.2", + "@parcel/workers": "2.6.2", "abortcontroller-polyfill": "^1.1.9", "base-x": "^3.0.8", "browserslist": "^4.6.6", @@ -2668,118 +2442,126 @@ } }, "@parcel/diagnostic": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/diagnostic/-/diagnostic-2.6.0.tgz", - "integrity": "sha512-+p8gC2FKxSI2veD7SoaNlP572v4kw+nafCQEPDtJuzYYRqywYUGncch25dkpgNApB4W4cXVkZu3ZbtIpCAmjQQ==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/diagnostic/-/diagnostic-2.6.2.tgz", + "integrity": "sha512-3ODSBkKVihENU763z1/1DhGAWFhYWRxOCOShC72KXp+GFnSgGiBsxclu8NBa/N948Rzp8lqQI8U1nLcKkh0O/w==", "requires": { "@mischnic/json-sourcemap": "^0.1.0", "nullthrows": "^1.1.1" } }, "@parcel/events": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/events/-/events-2.6.0.tgz", - "integrity": "sha512-2WaKtBs4iYwS88j4zRdyTJTgh8iuY4E32FMmjzzbheqETs6I05gWuPReGukJYxk8vc0Ir7tbzp12oAfpgo0Y+g==" + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/events/-/events-2.6.2.tgz", + "integrity": "sha512-IaCjOeA5ercdFVi1EZOmUHhGfIysmCUgc2Th9hMugSFO0I3GzRsBcAdP6XPfWm+TV6sQ/qZRfdk/drUxoAupnw==" }, "@parcel/fs": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/fs/-/fs-2.6.0.tgz", - "integrity": "sha512-6vxtx5Zy6MvDvH1EPx9JxjKGF03bR7VE1dUf4HLeX2D8YmpL5hkHJnlRCFdcH08rzOVwaJLzg1QNtblWJXQ9CA==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/fs/-/fs-2.6.2.tgz", + "integrity": "sha512-mIhqdF3tjgeoIGqW7Nc/xfM2ClID7o8livwUe5lpQEP+ZaIBiMigXs6ckv3WToCACK+3uylrSD2A/HmlhrxMqQ==", "requires": { - "@parcel/fs-search": "2.6.0", - "@parcel/types": "2.6.0", - "@parcel/utils": "2.6.0", + "@parcel/fs-search": "2.6.2", + "@parcel/types": "2.6.2", + "@parcel/utils": "2.6.2", "@parcel/watcher": "^2.0.0", - "@parcel/workers": "2.6.0" + "@parcel/workers": "2.6.2" } }, "@parcel/fs-search": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/fs-search/-/fs-search-2.6.0.tgz", - "integrity": "sha512-1nXzM3H/cA4kzLKvDBvwmNisKCdRqlgkLXh+OR1Zu28Kn4W34KuJMcHWW8cC+WIuuKqDh5oo2WPsC5y65GXBKQ==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/fs-search/-/fs-search-2.6.2.tgz", + "integrity": "sha512-4STid1zqtGnmGjHD/2TG2g/zPDiCTtE3IAS24QYH3eiUAz2uoKGgEqd2tZbZ2yI96jtCuIhC1bzVu8Hbykls7w==", "requires": { "detect-libc": "^1.0.3" } }, "@parcel/graph": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/graph/-/graph-2.6.0.tgz", - "integrity": "sha512-rxrAzWm6rwbCRPbu0Z+zwMscpG8omffODniVWPlX2G0jgQGpjKsutBQ6RMfFIcfaQ4MzL3pIQOTf8bkjQOPsbg==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/graph/-/graph-2.6.2.tgz", + "integrity": "sha512-DPH4G/RBFJWayIN2fnhDXqhUw75n7k15YsGzdDKiXuwwz4wMOjoL4cyrI6zOf1SIyh3guRmeTYJ4jjPzwrLYww==", "requires": { - "@parcel/utils": "2.6.0", + "@parcel/utils": "2.6.2", "nullthrows": "^1.1.1" } }, "@parcel/hash": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/hash/-/hash-2.6.0.tgz", - "integrity": "sha512-YugWqhLxqK80Lo++3B3Kr5UPCHOdS8iI2zJ1jkzUeH9v6WUzbwWOnmPf6lN2S5m1BrIFFJd8Jc+CbEXWi8zoJA==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/hash/-/hash-2.6.2.tgz", + "integrity": "sha512-tFB+cJU1Wqag6WyJgsmx3nx+xhmjcNZqtWh/MtK1lHNnZdDRk6bjr7SapnygBwruz+SmSt5bbdVThcpk2dRCcA==", "requires": { "detect-libc": "^1.0.3", "xxhash-wasm": "^0.4.2" } }, "@parcel/logger": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/logger/-/logger-2.6.0.tgz", - "integrity": "sha512-J1/7kPfSGBvMKSZdi0WCNuN0fIeiWxifnDGn7W/K8KhD422YwFJA8N046ps8nkDOPIXf1osnIECNp4GIR9oSYw==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/logger/-/logger-2.6.2.tgz", + "integrity": "sha512-Sz5YGCj1DbEiX0/G8Uw97LLZ0uEK+qtWcRAkHNpJpeMiSqDiRNevxXltz42EcLo+oCh4d4wyiVzwi9mNwzhS/Q==", "requires": { - "@parcel/diagnostic": "2.6.0", - "@parcel/events": "2.6.0" + "@parcel/diagnostic": "2.6.2", + "@parcel/events": "2.6.2" } }, "@parcel/markdown-ansi": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/markdown-ansi/-/markdown-ansi-2.6.0.tgz", - "integrity": "sha512-fyjkrJQQSfKTUFTTasdZ6WrAkDoQ2+DYDjj+3p+RncYyrIa9zArKx4IiRiipsvNdtMvP0/hTdK8F3BOJ3KSU/g==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/markdown-ansi/-/markdown-ansi-2.6.2.tgz", + "integrity": "sha512-N/h9J4eibhc+B+krzvPMzFUWL37GudBIZBa7XSLkcuH6MnYYfh6rrMvhIyyESwk6VkcZNVzAeZrGQqxEs0dHDQ==", "requires": { "chalk": "^4.1.0" } }, "@parcel/namer-default": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/namer-default/-/namer-default-2.6.0.tgz", - "integrity": "sha512-r8O12r7ozJBctnFxVdXbf/fK97GIdNj3hiiUNWlXEmED9sw6ZPcChaLcfot0/443g8i87JDmSTKJ8js2tuz5XA==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/namer-default/-/namer-default-2.6.2.tgz", + "integrity": "sha512-mp7bx/BQaIuohmZP0uE+gAmDBzzH0Yu8F4yCtE611lc6i0mou+nWRhzyKLNC/ieuI8DB3BFh2QQKeTxJn4W0qg==", "requires": { - "@parcel/diagnostic": "2.6.0", - "@parcel/plugin": "2.6.0", + "@parcel/diagnostic": "2.6.2", + "@parcel/plugin": "2.6.2", "nullthrows": "^1.1.1" } }, "@parcel/node-resolver-core": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/node-resolver-core/-/node-resolver-core-2.6.0.tgz", - "integrity": "sha512-AJDj5DZbB58plv0li8bdVSD+zpnkHE36Om3TYyNn1jgXXwgBM64Er/9p8yQn356jBqTQMh7zlJqvbdIyOiMeMg==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/node-resolver-core/-/node-resolver-core-2.6.2.tgz", + "integrity": "sha512-4b2L5QRYlTybvv3+TIRtwg4PPJXy+cRShCBa8eu1K0Fj297Afe8MOZrcVV+RIr2KPMIRXcIJoqDmOhyci/DynA==", "requires": { - "@parcel/diagnostic": "2.6.0", - "@parcel/utils": "2.6.0", - "nullthrows": "^1.1.1" + "@parcel/diagnostic": "2.6.2", + "@parcel/utils": "2.6.2", + "nullthrows": "^1.1.1", + "semver": "^5.7.1" + }, + "dependencies": { + "semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==" + } } }, "@parcel/optimizer-terser": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/optimizer-terser/-/optimizer-terser-2.6.0.tgz", - "integrity": "sha512-oezRt6Lz/QqcVDXyMfFjzQc7n0ThJowLJ4Lyhu8rMh0ZJYzc4UCFCw/19d4nRnzE+Qg0vj3mQCpdkA9/64E44g==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/optimizer-terser/-/optimizer-terser-2.6.2.tgz", + "integrity": "sha512-ZSEVQ3G3zOiVPeHvH+BrHegZybrQj9kWQAaAA92leSqbvf6UaX4xqXbGRg2OttNFtbGYBzIl28Zm4t2SLeUIuA==", "requires": { - "@parcel/diagnostic": "2.6.0", - "@parcel/plugin": "2.6.0", + "@parcel/diagnostic": "2.6.2", + "@parcel/plugin": "2.6.2", "@parcel/source-map": "^2.0.0", - "@parcel/utils": "2.6.0", + "@parcel/utils": "2.6.2", "nullthrows": "^1.1.1", "terser": "^5.2.0" } }, "@parcel/package-manager": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/package-manager/-/package-manager-2.6.0.tgz", - "integrity": "sha512-AqFfdkbOw51q/3ia2mIsFTmrpYEyUb3k+2uYC5GsLMz3go6OGn7/Crz0lZLSclv5EtwpRg3TWr9yL7RekVN/Uw==", - "requires": { - "@parcel/diagnostic": "2.6.0", - "@parcel/fs": "2.6.0", - "@parcel/logger": "2.6.0", - "@parcel/types": "2.6.0", - "@parcel/utils": "2.6.0", - "@parcel/workers": "2.6.0", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/package-manager/-/package-manager-2.6.2.tgz", + "integrity": "sha512-xGMqTgnwTE3rgzYwUZMKxR8fzmP5iSYz/gj2H8FR3pEmwh/8xCMtNjTSth+hPVGuqgRZ6JxwpfdY/fXdZ61ViQ==", + "requires": { + "@parcel/diagnostic": "2.6.2", + "@parcel/fs": "2.6.2", + "@parcel/logger": "2.6.2", + "@parcel/types": "2.6.2", + "@parcel/utils": "2.6.2", + "@parcel/workers": "2.6.2", "semver": "^5.7.1" }, "dependencies": { @@ -2791,15 +2573,15 @@ } }, "@parcel/packager-js": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/packager-js/-/packager-js-2.6.0.tgz", - "integrity": "sha512-Uz3pqIFchFfKszWnNGDgIwM1uwHHJp7Dts6VzS9lf/2RbRgZT0fmce+NPgnVO5MMKBHzdvm32ShT6gFAABF5Vw==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/packager-js/-/packager-js-2.6.2.tgz", + "integrity": "sha512-fm5rKWtaExR0W+UEKWivXNPysRFxuBCdskdxDByb1J1JeGMvp7dJElbi8oXDAQM4MnM5EyG7cg47SlMZNTLm4A==", "requires": { - "@parcel/diagnostic": "2.6.0", - "@parcel/hash": "2.6.0", - "@parcel/plugin": "2.6.0", + "@parcel/diagnostic": "2.6.2", + "@parcel/hash": "2.6.2", + "@parcel/plugin": "2.6.2", "@parcel/source-map": "^2.0.0", - "@parcel/utils": "2.6.0", + "@parcel/utils": "2.6.2", "globals": "^13.2.0", "nullthrows": "^1.1.1" }, @@ -2815,76 +2597,76 @@ } }, "@parcel/packager-raw": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/packager-raw/-/packager-raw-2.6.0.tgz", - "integrity": "sha512-ktT6Qc/GgCq8H1+6y+AXufVzQj1s6KRoKf83qswCD0iY3MwCbJoEfc3IsB4K64FpHIL5Eu0z54IId+INvGbOYA==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/packager-raw/-/packager-raw-2.6.2.tgz", + "integrity": "sha512-Rl3ZkMtMjb+LEvRowijDD8fibUAS6rWK0/vZQMk9cDNYCP2gCpZayLk0HZIGxneeTbosf/0sbngHq4VeRQOnQA==", "requires": { - "@parcel/plugin": "2.6.0" + "@parcel/plugin": "2.6.2" } }, "@parcel/plugin": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/plugin/-/plugin-2.6.0.tgz", - "integrity": "sha512-LzOaiK8R6eFEoov1cb3/W+o0XvXdI/VbDhMDl0L0II+/56M0UeayYtFP5QGTDn/fZqVlYfzPCtt3EMwdG7/dow==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/plugin/-/plugin-2.6.2.tgz", + "integrity": "sha512-wbbWsM23Pr+8xtLSvf+UopXdVYlpKCCx6PuuZaZcKo+9IcDCWoGXD4M8Kkz14qBmkFn5uM00mULUqmVdSibB2w==", "requires": { - "@parcel/types": "2.6.0" + "@parcel/types": "2.6.2" } }, "@parcel/reporter-dev-server": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/reporter-dev-server/-/reporter-dev-server-2.6.0.tgz", - "integrity": "sha512-VvygsCA+uzWyijIV8zqU1gFyhAWknuaY4KIWhV4kCT8afRJwsLSwt/tpdaKDPuPU45h3tTsUdXH1wjaIk+dGeQ==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/reporter-dev-server/-/reporter-dev-server-2.6.2.tgz", + "integrity": "sha512-5QtL3ETMFL161jehlIK6rjBM+Pqk5cMhr60s9yLYqE1GY4M4gMj+Act+FXViyM6gmMA38cPxDvUsxTKBYXpFCw==", "requires": { - "@parcel/plugin": "2.6.0", - "@parcel/utils": "2.6.0" + "@parcel/plugin": "2.6.2", + "@parcel/utils": "2.6.2" } }, "@parcel/resolver-default": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/resolver-default/-/resolver-default-2.6.0.tgz", - "integrity": "sha512-ATk9wXvy5GOHAqyHbnCnU11fUPTtf8dLjpgVqL5XylwugZnyBXbynoTWX4w8h6mffkVtdfmzTJx/o4Lresz9sA==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/resolver-default/-/resolver-default-2.6.2.tgz", + "integrity": "sha512-Lo5sWb5QkjWvdBr+TdmAF6Mszb/sMldBBatc1osQTkHXCy679VMH+lfyiWxHbwK+F1pmdMeBJpYcMxvrgT8EsA==", "requires": { - "@parcel/node-resolver-core": "2.6.0", - "@parcel/plugin": "2.6.0" + "@parcel/node-resolver-core": "2.6.2", + "@parcel/plugin": "2.6.2" } }, "@parcel/runtime-browser-hmr": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/runtime-browser-hmr/-/runtime-browser-hmr-2.6.0.tgz", - "integrity": "sha512-90xvv/10cFML5dAhClBEJZ/ExiBQVPqQsZcvRmVZmc5mpZVJMKattWCQrd7pAf7FDYl4JAcvsK3DTwvRT/oLNA==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/runtime-browser-hmr/-/runtime-browser-hmr-2.6.2.tgz", + "integrity": "sha512-M4X0+7dyfdI6smwGUGjGXb8Ns3HX7ZrTemyq4Gc7zp7P/5gWjR8i9eISz46sXmF9bf01a/4dKZpoCC9un1pH1g==", "requires": { - "@parcel/plugin": "2.6.0", - "@parcel/utils": "2.6.0" + "@parcel/plugin": "2.6.2", + "@parcel/utils": "2.6.2" } }, "@parcel/runtime-js": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/runtime-js/-/runtime-js-2.6.0.tgz", - "integrity": "sha512-R4tJAIT/SX7VBQ+f7WmeekREQzzLsmgP1j486uKhQNyYrpvsN0HnRbg5aqvZjEjkEmSeJR0mOlWtMK5/m+0yTA==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/runtime-js/-/runtime-js-2.6.2.tgz", + "integrity": "sha512-0S3JFwgvs6FmEx2dHta9R0Sfu8vCnFAm4i7Y4efGHtAcTrF2CHjyiz4/hG+RQGJ70eoWW463Q+8qt6EKbkaOBQ==", "requires": { - "@parcel/plugin": "2.6.0", - "@parcel/utils": "2.6.0", + "@parcel/plugin": "2.6.2", + "@parcel/utils": "2.6.2", "nullthrows": "^1.1.1" } }, "@parcel/runtime-react-refresh": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/runtime-react-refresh/-/runtime-react-refresh-2.6.0.tgz", - "integrity": "sha512-2sRd13gc2EbMV/O5n2NPVGGhKBasb1fDTXGEY8y7qi9xDKc+ewok/D83T+w243FhCPS9Pf3ur5GkbPlrJGcenQ==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/runtime-react-refresh/-/runtime-react-refresh-2.6.2.tgz", + "integrity": "sha512-DJTm5D/tUAGZm0o3ndDOPbKwdYrobuvm4jvkPq31LdEUqVvyuzBAMlqQFHc1yJEJDRRWOIQwQP9Y0NQbJmXFfg==", "requires": { - "@parcel/plugin": "2.6.0", - "@parcel/utils": "2.6.0", + "@parcel/plugin": "2.6.2", + "@parcel/utils": "2.6.2", "react-error-overlay": "6.0.9", "react-refresh": "^0.9.0" } }, "@parcel/runtime-service-worker": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/runtime-service-worker/-/runtime-service-worker-2.6.0.tgz", - "integrity": "sha512-nVlknGw5J5Bkd1Wr1TbyWHhUd9CmVVebaRg/lpfVKYhAuE/2r+3N0+J8qbEIgtTRcHaSV7wTNpg4weSWq46VeA==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/runtime-service-worker/-/runtime-service-worker-2.6.2.tgz", + "integrity": "sha512-9jV+RwVEeDUI5+eLy8j1tapTNoHHGOY2+JUprcObQkQ8fux7KltQBJWFhpkUdGtz5LTCNXtj9tdycFtS5lmSzg==", "requires": { - "@parcel/plugin": "2.6.0", - "@parcel/utils": "2.6.0", + "@parcel/plugin": "2.6.2", + "@parcel/utils": "2.6.2", "nullthrows": "^1.1.1" } }, @@ -2897,16 +2679,16 @@ } }, "@parcel/transformer-js": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/transformer-js/-/transformer-js-2.6.0.tgz", - "integrity": "sha512-4v2r3EVdMKowBziVBW9HZqvAv88HaeiezkWyMX4wAfplo9jBtWEp99KEQINzSEdbXROR81M9oJjlGF5+yoVr/w==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/transformer-js/-/transformer-js-2.6.2.tgz", + "integrity": "sha512-uhXAMTjE/Q61amflV8qVpb73mj+mIdXIMH0cSks1/gDIAxcgIvWvrE14P4TvY6zJ1q1iRJRIRUN6cFSXqjjLSA==", "requires": { - "@parcel/diagnostic": "2.6.0", - "@parcel/plugin": "2.6.0", + "@parcel/diagnostic": "2.6.2", + "@parcel/plugin": "2.6.2", "@parcel/source-map": "^2.0.0", - "@parcel/utils": "2.6.0", - "@parcel/workers": "2.6.0", - "@swc/helpers": "^0.3.15", + "@parcel/utils": "2.6.2", + "@parcel/workers": "2.6.2", + "@swc/helpers": "^0.4.2", "browserslist": "^4.6.6", "detect-libc": "^1.0.3", "nullthrows": "^1.1.1", @@ -2922,56 +2704,56 @@ } }, "@parcel/transformer-json": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/transformer-json/-/transformer-json-2.6.0.tgz", - "integrity": "sha512-zb+TQAdHWdXijKcFhLe+5KN1O0IzXwW1gJhPr8DJEA3qhPaCsncsw5RCVjQlP3a7NXr1mMm1eMtO6bhIMqbXeA==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/transformer-json/-/transformer-json-2.6.2.tgz", + "integrity": "sha512-QGcIIvbPF/u10ihYvQhxXqb2QMXWSzcBxJrOSIXIl74TUGrWX05D5LmjDA/rzm/n/kvRnBkFNP60R/smYb8x+Q==", "requires": { - "@parcel/plugin": "2.6.0", + "@parcel/plugin": "2.6.2", "json5": "^2.2.0" } }, "@parcel/transformer-raw": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/transformer-raw/-/transformer-raw-2.6.0.tgz", - "integrity": "sha512-QDirlWCS/qy0DQ3WvDIAnFP52n1TJW/uWH+4PGMNnX4/M3/2UchY8xp9CN0tx4NQ4g09S8o3gLlHvNxQqZxFrQ==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/transformer-raw/-/transformer-raw-2.6.2.tgz", + "integrity": "sha512-CsofYq5g9Zj/FNmhya2R7Xp3WHlzz34mEdN69bds3azRYHCrl/TS33xXcp/9J+74SEIY1Ufh552o1cM3fnSrDQ==", "requires": { - "@parcel/plugin": "2.6.0" + "@parcel/plugin": "2.6.2" } }, "@parcel/transformer-react-refresh-wrap": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/transformer-react-refresh-wrap/-/transformer-react-refresh-wrap-2.6.0.tgz", - "integrity": "sha512-G34orfvLDUTumuerqNmA8T8NUHk+R0jwUjbVPO7gpB6VCVQ5ocTABdE9vN9Uu/cUsHij40TUFwqK4R9TFEBIEQ==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/transformer-react-refresh-wrap/-/transformer-react-refresh-wrap-2.6.2.tgz", + "integrity": "sha512-7EE68ebISz+oAHm64ZJbz6uJQT4aOoB8QiK3PvuY6+RsP7aK4/FEHGM1afW49KrZbP4lWjloEkcJm/88DfBiGw==", "requires": { - "@parcel/plugin": "2.6.0", - "@parcel/utils": "2.6.0", + "@parcel/plugin": "2.6.2", + "@parcel/utils": "2.6.2", "react-refresh": "^0.9.0" } }, "@parcel/types": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/types/-/types-2.6.0.tgz", - "integrity": "sha512-lAMYvOBfNEJMsPJ+plbB50305o0TwNrY1xX5RRIWBqwOa6bYmbW1ZljUk1tQvnkpIE4eAHQwnPR5Z2XWg18wGQ==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/types/-/types-2.6.2.tgz", + "integrity": "sha512-MV8BFpCIs2jMUvK2RHqzkoiuOQ//JIbrD1zocA2YRW3zuPL/iABvbAABJoXpoPCKikVWOoCWASgBfWQo26VvJQ==", "requires": { - "@parcel/cache": "2.6.0", - "@parcel/diagnostic": "2.6.0", - "@parcel/fs": "2.6.0", - "@parcel/package-manager": "2.6.0", + "@parcel/cache": "2.6.2", + "@parcel/diagnostic": "2.6.2", + "@parcel/fs": "2.6.2", + "@parcel/package-manager": "2.6.2", "@parcel/source-map": "^2.0.0", - "@parcel/workers": "2.6.0", + "@parcel/workers": "2.6.2", "utility-types": "^3.10.0" } }, "@parcel/utils": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/utils/-/utils-2.6.0.tgz", - "integrity": "sha512-ElXz+QHtT1JQIucbQJBk7SzAGoOlBp4yodEQVvTKS7GA+hEGrSP/cmibl6qm29Rjtd0zgQsdd+2XmP3xvP2gQQ==", - "requires": { - "@parcel/codeframe": "2.6.0", - "@parcel/diagnostic": "2.6.0", - "@parcel/hash": "2.6.0", - "@parcel/logger": "2.6.0", - "@parcel/markdown-ansi": "2.6.0", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/utils/-/utils-2.6.2.tgz", + "integrity": "sha512-Ug7hpRxjgbY5AopW55nY7MmGMVmwmN+ihfCmxJkBUoESTG/3iq8uME7GjyOgW5DkQc2K7q62i8y8N0wCJT1u4Q==", + "requires": { + "@parcel/codeframe": "2.6.2", + "@parcel/diagnostic": "2.6.2", + "@parcel/hash": "2.6.2", + "@parcel/logger": "2.6.2", + "@parcel/markdown-ansi": "2.6.2", "@parcel/source-map": "^2.0.0", "chalk": "^4.1.0" } @@ -2986,14 +2768,14 @@ } }, "@parcel/workers": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/workers/-/workers-2.6.0.tgz", - "integrity": "sha512-3tcI2LF5fd/WZtSnSjyWdDE+G+FitdNrRgSObzSp+axHKMAM23sO0z7KY8s2SYCF40msdYbFUW8eI6JlYNJoWQ==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/workers/-/workers-2.6.2.tgz", + "integrity": "sha512-wBgUjJQm+lDd12fPRUmk09+ujTA9DgwPdqylSFK0OtI/yT6A+2kArUqjp8IwWo2tCJXoMzXBne2XQIWKqMiN4Q==", "requires": { - "@parcel/diagnostic": "2.6.0", - "@parcel/logger": "2.6.0", - "@parcel/types": "2.6.0", - "@parcel/utils": "2.6.0", + "@parcel/diagnostic": "2.6.2", + "@parcel/logger": "2.6.2", + "@parcel/types": "2.6.2", + "@parcel/utils": "2.6.2", "chrome-trace-event": "^1.0.2", "nullthrows": "^1.1.1" } @@ -3079,9 +2861,9 @@ } }, "@swc/helpers": { - "version": "0.3.17", - "resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.3.17.tgz", - "integrity": "sha512-tb7Iu+oZ+zWJZ3HJqwx8oNwSDIU440hmVMDPhpACWQWnrZHK99Bxs70gT1L2dnr5Hg50ZRWEFkQCAnOVVV0z1Q==", + "version": "0.4.3", + "resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.4.3.tgz", + "integrity": "sha512-6JrF+fdUK2zbGpJIlN7G3v966PQjyx/dPt1T9km2wj+EUBqgrxCk3uX4Kct16MIm9gGxfKRcfax2hVf5jvlTzA==", "requires": { "tslib": "^2.4.0" } @@ -3250,9 +3032,9 @@ } }, "@types/node": { - "version": "18.0.3", - "resolved": "https://registry.npmjs.org/@types/node/-/node-18.0.3.tgz", - "integrity": "sha512-HzNRZtp4eepNitP+BD6k2L6DROIDG4Q0fm4x+dwfsr6LGmROENnok75VGw40628xf+iR24WeMFcHuuBDUAzzsQ==" + "version": "18.0.6", + "resolved": "https://registry.npmjs.org/@types/node/-/node-18.0.6.tgz", + "integrity": "sha512-/xUq6H2aQm261exT6iZTMifUySEt4GR5KX8eYyY+C4MSNPqSh9oNIP7tz2GLKTlFaiBbgZNxffoR3CVRG+cljw==" }, "@types/node-fetch": { "version": "2.6.2", @@ -3981,12 +3763,12 @@ } }, "babel-plugin-remove-graphql-queries": { - "version": "4.18.1", - "resolved": "https://registry.npmjs.org/babel-plugin-remove-graphql-queries/-/babel-plugin-remove-graphql-queries-4.18.1.tgz", - "integrity": "sha512-2I7qsm3pnyvrS6/Q9YuHK1SpfQLmrgYH/AjpnWpnLHee6SiVb5Te89iphhpBdycpBRVGWh04ram9+z/1rMaRYQ==", + "version": "4.19.0", + "resolved": "https://registry.npmjs.org/babel-plugin-remove-graphql-queries/-/babel-plugin-remove-graphql-queries-4.19.0.tgz", + "integrity": "sha512-VbxC7aZxdqQA0YiAcTD/djIW+6PP/JVODlRmCiqDyTbtI0zhE/Z6je1maCmC6J2LLBsKxhWT3UYTjRfLofK7sQ==", "requires": { "@babel/runtime": "^7.15.4", - "gatsby-core-utils": "^3.18.1" + "gatsby-core-utils": "^3.19.0" } }, "babel-plugin-syntax-trailing-function-commas": { @@ -4034,9 +3816,9 @@ } }, "babel-preset-gatsby": { - "version": "2.18.1", - "resolved": "https://registry.npmjs.org/babel-preset-gatsby/-/babel-preset-gatsby-2.18.1.tgz", - "integrity": "sha512-oaVV6ULceMjTQKjCA06qvgfLwBNZFJxpacwNZYOJpLygmj+qYiNKDGhJ8vTw/KAIUeDPZAbPMP5P+3wMEPIWYQ==", + "version": "2.19.0", + "resolved": "https://registry.npmjs.org/babel-preset-gatsby/-/babel-preset-gatsby-2.19.0.tgz", + "integrity": "sha512-wjh4lUN1MffsnqHAfRoeOtJFGEObUPR4oxo7fyfx9pZUyqBgXvKXMEoLnwNht5HV5BzT5Xo9dkwNJl0/CNhXHw==", "requires": { "@babel/plugin-proposal-class-properties": "^7.14.0", "@babel/plugin-proposal-nullish-coalescing-operator": "^7.14.5", @@ -4051,8 +3833,8 @@ "babel-plugin-dynamic-import-node": "^2.3.3", "babel-plugin-macros": "^3.1.0", "babel-plugin-transform-react-remove-prop-types": "^0.4.24", - "gatsby-core-utils": "^3.18.1", - "gatsby-legacy-polyfills": "^2.18.0" + "gatsby-core-utils": "^3.19.0", + "gatsby-legacy-polyfills": "^2.19.0" } }, "backo2": { @@ -4145,6 +3927,11 @@ "unpipe": "1.0.0" }, "dependencies": { + "bytes": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", + "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==" + }, "debug": { "version": "2.6.9", "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", @@ -4301,9 +4088,9 @@ } }, "bytes": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", - "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==" + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz", + "integrity": "sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==" }, "cache-manager": { "version": "2.11.1", @@ -4390,9 +4177,9 @@ } }, "caniuse-lite": { - "version": "1.0.30001366", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001366.tgz", - "integrity": "sha512-yy7XLWCubDobokgzudpkKux8e0UOOnLHE6mlNJBzT3lZJz6s5atSEzjoL+fsCPkI0G8MP5uVdDx1ur/fXEWkZA==" + "version": "1.0.30001367", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001367.tgz", + "integrity": "sha512-XDgbeOHfifWV3GEES2B8rtsrADx4Jf+juKX2SICJcaUhjYBO3bR96kvEIHa15VU6ohtOhBZuPGGYGbXMRn0NCw==" }, "capital-case": { "version": "1.0.4", @@ -4611,9 +4398,9 @@ } }, "clone-response": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/clone-response/-/clone-response-1.0.2.tgz", - "integrity": "sha512-yjLXh88P599UOyPTFX0POsd7WxnbsVsGohcwzHOLspIhhpalPw1BcqED8NblyZLKcGrL8dTgMlcaZxV2jAD41Q==", + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/clone-response/-/clone-response-1.0.3.tgz", + "integrity": "sha512-ROoL94jJH2dUVML2Y/5PEDNaSHgeOdSDicUyS7izcF63G6sTc/FTjLub4b8Il9S8S0beOfYt0TaA5qvFK+w0wA==", "requires": { "mimic-response": "^1.0.0" } @@ -4738,11 +4525,6 @@ "vary": "~1.1.2" }, "dependencies": { - "bytes": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz", - "integrity": "sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==" - }, "debug": { "version": "2.6.9", "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", @@ -4875,16 +4657,16 @@ "integrity": "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==" }, "core-js": { - "version": "3.23.4", - "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.23.4.tgz", - "integrity": "sha512-vjsKqRc1RyAJC3Ye2kYqgfdThb3zYnx9CrqoCcjMOENMtQPC7ZViBvlDxwYU/2z2NI/IPuiXw5mT4hWhddqjzQ==" + "version": "3.23.5", + "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.23.5.tgz", + "integrity": "sha512-7Vh11tujtAZy82da4duVreQysIoO2EvVrur7y6IzZkH1IHPSekuDi8Vuw1+YKjkbfWLRD7Nc9ICQ/sIUDutcyg==" }, "core-js-compat": { - "version": "3.23.4", - "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.23.4.tgz", - "integrity": "sha512-RkSRPe+JYEoflcsuxJWaiMPhnZoFS51FcIxm53k4KzhISCBTmaGlto9dTIrYuk0hnJc3G6pKufAKepHnBq6B6Q==", + "version": "3.23.5", + "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.23.5.tgz", + "integrity": "sha512-fHYozIFIxd+91IIbXJgWd/igXIc8Mf9is0fusswjnGIWVG96y2cwyUdlCkGOw6rMLHKAxg7xtCIVaHsyOUnJIg==", "requires": { - "browserslist": "^4.21.1", + "browserslist": "^4.21.2", "semver": "7.0.0" }, "dependencies": { @@ -4896,9 +4678,9 @@ } }, "core-js-pure": { - "version": "3.23.4", - "resolved": "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.23.4.tgz", - "integrity": "sha512-lizxkcgj3XDmi7TUBFe+bQ1vNpD5E4t76BrBWI3HdUxdw/Mq1VF4CkiHzIKyieECKtcODK2asJttoofEeUKICQ==" + "version": "3.23.5", + "resolved": "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.23.5.tgz", + "integrity": "sha512-8t78LdpKSuCq4pJYCYk8hl7XEkAX+BP16yRIwL3AanTksxuEf7CM83vRyctmiEL8NDZ3jpUcv56fk9/zG3aIuw==" }, "core-util-is": { "version": "1.0.3", @@ -4935,9 +4717,9 @@ } }, "create-gatsby": { - "version": "2.18.1", - "resolved": "https://registry.npmjs.org/create-gatsby/-/create-gatsby-2.18.1.tgz", - "integrity": "sha512-1AZioXKi4COhESSHfsb/6tpkBvyuuXHwAmMAGrcUQpbynsQxYdqonnRqnFhp80bA2cIKxgjtHzzLhyRouDonbQ==", + "version": "2.19.0", + "resolved": "https://registry.npmjs.org/create-gatsby/-/create-gatsby-2.19.0.tgz", + "integrity": "sha512-Esl/qCau3rjpnRkmo31BYOE6l72SJ/5Fq8bF6gmXOf/lnbOh51so8hgRcClfizr1nCihqQQihZn//o4DIgZKeA==", "requires": { "@babel/runtime": "^7.15.4" } @@ -5499,9 +5281,9 @@ "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==" }, "electron-to-chromium": { - "version": "1.4.188", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.188.tgz", - "integrity": "sha512-Zpa1+E+BVmD/orkyz1Z2dAT1XNUuVAHB3GrogfyY66dXN0ZWSsygI8+u6QTDai1ZayLcATDJpcv2Z2AZjEcr1A==" + "version": "1.4.194", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.194.tgz", + "integrity": "sha512-ola5UH0xAP1oYY0FFUsPvwtucEzCQHucXnT7PQ1zjHJMccZhCDktEugI++JUR3YuIs7Ff7afz+OVEhVAIMhLAQ==" }, "emoji-regex": { "version": "8.0.0", @@ -6847,9 +6629,9 @@ "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==" }, "gatsby": { - "version": "4.18.2", - "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-4.18.2.tgz", - "integrity": "sha512-ZWdo0TXsSRmwlmOeeuoWwXKQNteHm9VxJWF9Ud+c33r7ZXQgTA5WtRYjiBpjZuNAUwsiONNAe+wKK5jVY8B4LQ==", + "version": "4.19.0", + "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-4.19.0.tgz", + "integrity": "sha512-Bhga6PbDRSL3J7yIcVAWwN76cK0OeFWE4f5ggh4qEjnsL20kxW+LPwAexpZ5dVxbE1gsl1k/VDSX66Wj3vGH3A==", "requires": { "@babel/code-frame": "^7.14.0", "@babel/core": "^7.15.5", @@ -6871,7 +6653,7 @@ "@graphql-tools/load": "^7.5.10", "@jridgewell/trace-mapping": "^0.3.13", "@nodelib/fs.walk": "^1.2.8", - "@parcel/core": "2.6.0", + "@parcel/core": "2.6.2", "@pmmmwh/react-refresh-webpack-plugin": "^0.4.3", "@types/http-proxy": "^1.17.7", "@typescript-eslint/eslint-plugin": "^4.33.0", @@ -6885,11 +6667,10 @@ "babel-plugin-add-module-exports": "^1.0.4", "babel-plugin-dynamic-import-node": "^2.3.3", "babel-plugin-lodash": "^3.3.4", - "babel-plugin-remove-graphql-queries": "^4.18.1", - "babel-preset-gatsby": "^2.18.1", + "babel-plugin-remove-graphql-queries": "^4.19.0", + "babel-preset-gatsby": "^2.19.0", "better-opn": "^2.1.1", "bluebird": "^3.7.2", - "body-parser": "^1.19.0", "browserslist": "^4.17.5", "cache-manager": "^2.11.1", "chalk": "^4.1.2", @@ -6915,7 +6696,7 @@ "eslint-plugin-graphql": "^4.0.0", "eslint-plugin-import": "^2.26.0", "eslint-plugin-jsx-a11y": "^6.5.1", - "eslint-plugin-react": "^7.30.0", + "eslint-plugin-react": "^7.30.1", "eslint-plugin-react-hooks": "^4.5.0", "eslint-webpack-plugin": "^2.6.0", "event-source-polyfill": "1.0.25", @@ -6929,21 +6710,21 @@ "find-cache-dir": "^3.3.2", "fs-exists-cached": "1.0.0", "fs-extra": "^10.1.0", - "gatsby-cli": "^4.18.1", - "gatsby-core-utils": "^3.18.1", - "gatsby-graphiql-explorer": "^2.18.0", - "gatsby-legacy-polyfills": "^2.18.0", - "gatsby-link": "^4.18.1", - "gatsby-page-utils": "^2.18.1", - "gatsby-parcel-config": "^0.9.2", - "gatsby-plugin-page-creator": "^4.18.1", - "gatsby-plugin-typescript": "^4.18.1", - "gatsby-plugin-utils": "^3.12.1", - "gatsby-react-router-scroll": "^5.18.0", - "gatsby-script": "^1.3.0", - "gatsby-sharp": "^0.12.0", - "gatsby-telemetry": "^3.18.1", - "gatsby-worker": "^1.18.0", + "gatsby-cli": "^4.19.0", + "gatsby-core-utils": "^3.19.0", + "gatsby-graphiql-explorer": "^2.19.0", + "gatsby-legacy-polyfills": "^2.19.0", + "gatsby-link": "^4.19.0", + "gatsby-page-utils": "^2.19.0", + "gatsby-parcel-config": "^0.10.0", + "gatsby-plugin-page-creator": "^4.19.0", + "gatsby-plugin-typescript": "^4.19.0", + "gatsby-plugin-utils": "^3.13.0", + "gatsby-react-router-scroll": "^5.19.0", + "gatsby-script": "^1.4.0", + "gatsby-sharp": "^0.13.0", + "gatsby-telemetry": "^3.19.0", + "gatsby-worker": "^1.19.0", "glob": "^7.2.3", "globby": "^11.1.0", "got": "^11.8.2", @@ -6951,7 +6732,6 @@ "graphql-compose": "^9.0.7", "graphql-playground-middleware-express": "^1.7.22", "hasha": "^5.2.2", - "http-proxy": "^1.18.1", "invariant": "^2.2.4", "is-relative": "^1.0.0", "is-relative-url": "^3.0.0", @@ -6970,6 +6750,7 @@ "moment": "^2.29.1", "multer": "^1.4.3", "node-fetch": "^2.6.6", + "node-html-parser": "^5.3.3", "normalize-path": "^3.0.0", "null-loader": "^4.0.1", "opentracing": "^0.14.5", @@ -7016,9 +6797,9 @@ }, "dependencies": { "gatsby-cli": { - "version": "4.18.1", - "resolved": "https://registry.npmjs.org/gatsby-cli/-/gatsby-cli-4.18.1.tgz", - "integrity": "sha512-ceYqm6i39rHY343zUCflwXnGtd25QGccvToTWL8W42/EGToDW8bubLfeBSRCfjXm946yf1gkS/1UAsAgAphYDA==", + "version": "4.19.0", + "resolved": "https://registry.npmjs.org/gatsby-cli/-/gatsby-cli-4.19.0.tgz", + "integrity": "sha512-i1B9ktvOECiOZgyKqf0xdYx9bmrIUeZeiK+EOIvIpvFfFUwBmZR6xSHRHYUGX2JVpQiy4QEG25KcPWgF9mYJ3w==", "requires": { "@babel/code-frame": "^7.14.0", "@babel/core": "^7.15.5", @@ -7037,13 +6818,13 @@ "common-tags": "^1.8.2", "configstore": "^5.0.1", "convert-hrtime": "^3.0.0", - "create-gatsby": "^2.18.1", + "create-gatsby": "^2.19.0", "envinfo": "^7.8.1", "execa": "^5.1.1", "fs-exists-cached": "^1.0.0", "fs-extra": "^10.1.0", - "gatsby-core-utils": "^3.18.1", - "gatsby-telemetry": "^3.18.1", + "gatsby-core-utils": "^3.19.0", + "gatsby-telemetry": "^3.19.0", "hosted-git-info": "^3.0.8", "is-valid-path": "^0.1.1", "joi": "^17.4.2", @@ -7069,9 +6850,9 @@ } }, "gatsby-core-utils": { - "version": "3.18.1", - "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.18.1.tgz", - "integrity": "sha512-sJTxRqizLxYy/tSFk0ydfqEZ3ek1So9HDVUa39F6Oi8XuPCBTFzaAooUvowKGneI5YUbdk5y4VO4ybwVUynntw==", + "version": "3.19.0", + "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.19.0.tgz", + "integrity": "sha512-cjXs9DsXkPZt+UdiLHxtq+rGMGVrcnM0KwkawlruvPchI7lqGNv9CScqlvYPxx1dBhu3zSZS26EBALMlFhyOJA==", "requires": { "@babel/runtime": "^7.15.4", "ci-info": "2.0.0", @@ -7091,17 +6872,17 @@ } }, "gatsby-graphiql-explorer": { - "version": "2.18.0", - "resolved": "https://registry.npmjs.org/gatsby-graphiql-explorer/-/gatsby-graphiql-explorer-2.18.0.tgz", - "integrity": "sha512-mmY+kHc+axpDO9lfjbCEf/0oEIHTcZmpe2PtQAzkhnQHyti3xd9IIafq/1W3QKIJo5c7f40+tR3sFTERqaBeIA==", + "version": "2.19.0", + "resolved": "https://registry.npmjs.org/gatsby-graphiql-explorer/-/gatsby-graphiql-explorer-2.19.0.tgz", + "integrity": "sha512-wOD1LuWaSbCtZ0E9C2HxMBQj67k8kPnlLMr/VfKHgBh0FfvIavIq5vOq5K9zRIkAzSzYVODGEz2NVdbfVK9Bew==", "requires": { "@babel/runtime": "^7.15.4" } }, "gatsby-legacy-polyfills": { - "version": "2.18.0", - "resolved": "https://registry.npmjs.org/gatsby-legacy-polyfills/-/gatsby-legacy-polyfills-2.18.0.tgz", - "integrity": "sha512-wPnsRUnnab10wyt5VPkIhpJC1k8bVrpn0Sfat1L3JskYwkVIEvquqTmHWkpGMB8SLbXQiJEGCs2TcIrx9riL+w==", + "version": "2.19.0", + "resolved": "https://registry.npmjs.org/gatsby-legacy-polyfills/-/gatsby-legacy-polyfills-2.19.0.tgz", + "integrity": "sha512-WuyN01eiRxhanfnj6UgsCxU+Pxs9B8rtgxbrwXhlEKX+QdAp4XlywDQ8QXvv8i028QDF9h+VnvGlfcZY4tgQrQ==", "requires": { "@babel/runtime": "^7.15.4", "core-js-compat": "3.9.0" @@ -7124,77 +6905,76 @@ } }, "gatsby-link": { - "version": "4.18.1", - "resolved": "https://registry.npmjs.org/gatsby-link/-/gatsby-link-4.18.1.tgz", - "integrity": "sha512-gLFH2iU4WugHU5k+SLu4F0Ar04kDT5KhkyXly99ZVtiIvHpA5DqcuGNIUjIE/lizSCsfa553wGv7dadfghGzrQ==", + "version": "4.19.0", + "resolved": "https://registry.npmjs.org/gatsby-link/-/gatsby-link-4.19.0.tgz", + "integrity": "sha512-snv9blxZR7s/ymRjUUDP2+zrJ/beuyy/k/MeW57EkQ16YfgDyF79JMKNDU3iXFmiFhG9AYBkClIfe4qTSoCO/A==", "requires": { - "@babel/runtime": "^7.15.4", "@types/reach__router": "^1.3.10", - "gatsby-page-utils": "^2.18.1", + "gatsby-page-utils": "^2.19.0", "prop-types": "^15.8.1" } }, "gatsby-page-utils": { - "version": "2.18.1", - "resolved": "https://registry.npmjs.org/gatsby-page-utils/-/gatsby-page-utils-2.18.1.tgz", - "integrity": "sha512-4EM0LNOQgnCndHDQSI/ZKRFWYWG9dtTPuGbBaGlmPquhj3zwjOscws1vfj7g+u3PowKjZQ2Rf92RZd8xt8XLTQ==", + "version": "2.19.0", + "resolved": "https://registry.npmjs.org/gatsby-page-utils/-/gatsby-page-utils-2.19.0.tgz", + "integrity": "sha512-eYStV4jQbuEBKhatH3yzWA+lmoydJBCZVg6w2GG38eSsgcj9pdep8oQqyQdGFU3dy/HizWmWCv+wW9FIUoVQsQ==", "requires": { "@babel/runtime": "^7.15.4", "bluebird": "^3.7.2", "chokidar": "^3.5.3", "fs-exists-cached": "^1.0.0", - "gatsby-core-utils": "^3.18.1", + "gatsby-core-utils": "^3.19.0", "glob": "^7.2.3", "lodash": "^4.17.21", "micromatch": "^4.0.5" } }, "gatsby-parcel-config": { - "version": "0.9.2", - "resolved": "https://registry.npmjs.org/gatsby-parcel-config/-/gatsby-parcel-config-0.9.2.tgz", - "integrity": "sha512-ONykPoYCoFs89M8Hio0TSrUQEpwXwbSiV8aCcPH9L6w3eros9RlWrwAwnWb+lPDNJT5BsereBjefoS9cC6mpVA==", - "requires": { - "@gatsbyjs/parcel-namer-relative-to-cwd": "^1.3.2", - "@parcel/bundler-default": "2.6.0", - "@parcel/compressor-raw": "2.6.0", - "@parcel/namer-default": "2.6.0", - "@parcel/optimizer-terser": "2.6.0", - "@parcel/packager-js": "2.6.0", - "@parcel/packager-raw": "2.6.0", - "@parcel/reporter-dev-server": "2.6.0", - "@parcel/resolver-default": "2.6.0", - "@parcel/runtime-browser-hmr": "2.6.0", - "@parcel/runtime-js": "2.6.0", - "@parcel/runtime-react-refresh": "2.6.0", - "@parcel/runtime-service-worker": "2.6.0", - "@parcel/transformer-js": "2.6.0", - "@parcel/transformer-json": "2.6.0", - "@parcel/transformer-raw": "2.6.0", - "@parcel/transformer-react-refresh-wrap": "2.6.0" + "version": "0.10.0", + "resolved": "https://registry.npmjs.org/gatsby-parcel-config/-/gatsby-parcel-config-0.10.0.tgz", + "integrity": "sha512-FV+ccSeWPgicWRtycfUV1L7xyVIr6OSDnUkztnxq3Xj+OEBPC0NO2x07CA4tz16hSRDH1/qXgwY8AsHyenCidg==", + "requires": { + "@gatsbyjs/parcel-namer-relative-to-cwd": "^1.4.0", + "@parcel/bundler-default": "2.6.2", + "@parcel/compressor-raw": "2.6.2", + "@parcel/namer-default": "2.6.2", + "@parcel/optimizer-terser": "2.6.2", + "@parcel/packager-js": "2.6.2", + "@parcel/packager-raw": "2.6.2", + "@parcel/reporter-dev-server": "2.6.2", + "@parcel/resolver-default": "2.6.2", + "@parcel/runtime-browser-hmr": "2.6.2", + "@parcel/runtime-js": "2.6.2", + "@parcel/runtime-react-refresh": "2.6.2", + "@parcel/runtime-service-worker": "2.6.2", + "@parcel/transformer-js": "2.6.2", + "@parcel/transformer-json": "2.6.2", + "@parcel/transformer-raw": "2.6.2", + "@parcel/transformer-react-refresh-wrap": "2.6.2" } }, "gatsby-plugin-page-creator": { - "version": "4.18.1", - "resolved": "https://registry.npmjs.org/gatsby-plugin-page-creator/-/gatsby-plugin-page-creator-4.18.1.tgz", - "integrity": "sha512-XPAglahQ1fDnSdSNJmtAGwVqB7yZDGPOQQBQX7LD74XwYP6uriRo4LyeI+gEXRqW4d63ZL3VMvgdisde9M95LQ==", + "version": "4.19.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-page-creator/-/gatsby-plugin-page-creator-4.19.0.tgz", + "integrity": "sha512-JGclCb2lniTjBdFzoiF0Px9EhVY/3uiWx7mqnvfdVO85VVey5+eCKL60Aqamjovo6C+l/0Uldt4uT1EpNLC3Xw==", "requires": { "@babel/runtime": "^7.15.4", "@babel/traverse": "^7.15.4", "@sindresorhus/slugify": "^1.1.2", "chokidar": "^3.5.3", "fs-exists-cached": "^1.0.0", - "gatsby-core-utils": "^3.18.1", - "gatsby-page-utils": "^2.18.1", - "gatsby-plugin-utils": "^3.12.1", - "gatsby-telemetry": "^3.18.1", + "gatsby-core-utils": "^3.19.0", + "gatsby-page-utils": "^2.19.0", + "gatsby-plugin-utils": "^3.13.0", + "gatsby-telemetry": "^3.19.0", "globby": "^11.1.0", "lodash": "^4.17.21" } }, "gatsby-plugin-typescript": { - "version": "4.18.1", - "resolved": "https://registry.npmjs.org/gatsby-plugin-typescript/-/gatsby-plugin-typescript-4.18.1.tgz", - "integrity": "sha512-YUZcqL2WWiL2ngKe4A5FpTjCij2pLxiim+QaujeKfMjeWfHJ13uQ74HlxQXNpGAy4vMRBiU4CJH71RXgS1aoaA==", + "version": "4.19.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-typescript/-/gatsby-plugin-typescript-4.19.0.tgz", + "integrity": "sha512-f+aC4g/pTkUqFLTHo3OLdPQgdIFcEdoM5i8H4Pph5O4rmFXYHkkQKimRJmAz9cBb6/1wN7IBqI9m4k3AefaAjA==", "requires": { "@babel/core": "^7.15.5", "@babel/plugin-proposal-nullish-coalescing-operator": "^7.14.5", @@ -7202,19 +6982,19 @@ "@babel/plugin-proposal-optional-chaining": "^7.14.5", "@babel/preset-typescript": "^7.15.0", "@babel/runtime": "^7.15.4", - "babel-plugin-remove-graphql-queries": "^4.18.1" + "babel-plugin-remove-graphql-queries": "^4.19.0" } }, "gatsby-plugin-utils": { - "version": "3.12.1", - "resolved": "https://registry.npmjs.org/gatsby-plugin-utils/-/gatsby-plugin-utils-3.12.1.tgz", - "integrity": "sha512-Rx7/MFtiJ+pyvPLqCPj5beyMN6qOx3EYMrOqmvrWJaM32nxMfHZqUqxGruufyFNVe6edfRuNuXcKaPXlGlyexA==", + "version": "3.13.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-utils/-/gatsby-plugin-utils-3.13.0.tgz", + "integrity": "sha512-iFFWswld/Nu8IrSCikZXC4/cud9txv3ikjkQiGLccJStS9VH2rSY4XEMNRqsKN9Spe3pFBOr/97yYUaPhZaQWg==", "requires": { "@babel/runtime": "^7.15.4", "@gatsbyjs/potrace": "^2.2.0", "fs-extra": "^10.1.0", - "gatsby-core-utils": "^3.18.1", - "gatsby-sharp": "^0.12.0", + "gatsby-core-utils": "^3.19.0", + "gatsby-sharp": "^0.13.0", "graphql-compose": "^9.0.7", "import-from": "^4.0.0", "joi": "^17.4.2", @@ -7231,32 +7011,32 @@ } }, "gatsby-react-router-scroll": { - "version": "5.18.0", - "resolved": "https://registry.npmjs.org/gatsby-react-router-scroll/-/gatsby-react-router-scroll-5.18.0.tgz", - "integrity": "sha512-/A1k468s6g713c8me5DuGiia8rPWLuwjITQ/pKqgJwioJVB6MnD/iBCbHUTzLHlNwZypAVdGHCN8fCIcPcMb6Q==", + "version": "5.19.0", + "resolved": "https://registry.npmjs.org/gatsby-react-router-scroll/-/gatsby-react-router-scroll-5.19.0.tgz", + "integrity": "sha512-tl1E2/ger3Aw5Vb5n53i9wCBePYqb2dBilO05pd6FfgKYJveFidQwGzzOn1F9smdWq+5c3KJSTlKJaNYPwn72w==", "requires": { "@babel/runtime": "^7.15.4", "prop-types": "^15.8.1" } }, "gatsby-script": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/gatsby-script/-/gatsby-script-1.3.0.tgz", - "integrity": "sha512-eCz6mcMFpB7kvpmyM7AtMTxNxzdrzPgt8GiuDKWFOlDgk1il6PUjO99QsL/cCeokmaiH/6egVnm9b33/x+sy9A==" + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/gatsby-script/-/gatsby-script-1.4.0.tgz", + "integrity": "sha512-+GmHTAfFq/sQWPvl1E8QvApRfxqqamhdqjFo4YloOQRAlDc+e3nMzTzvgj8z3IWqDqlvEfHMnlvQg60E5ThO/A==" }, "gatsby-sharp": { - "version": "0.12.0", - "resolved": "https://registry.npmjs.org/gatsby-sharp/-/gatsby-sharp-0.12.0.tgz", - "integrity": "sha512-dZa/AgxmPzD0vvROEZSuT3IdzAFTxnq1FfLTf9n3mywonvsKYc84zj6nf8TEzBrVrBFAaLvZek4NpVAKWGr4/w==", + "version": "0.13.0", + "resolved": "https://registry.npmjs.org/gatsby-sharp/-/gatsby-sharp-0.13.0.tgz", + "integrity": "sha512-dGuIuWP3rC7hXl/CgkHEY4WQEW+B9Rsg8uo6u+OumuLnLBxD4vTusEIGctVKzlyIxpENEQylQ7w1JKHX9fOy9g==", "requires": { "@types/sharp": "^0.30.0", "sharp": "^0.30.3" } }, "gatsby-telemetry": { - "version": "3.18.1", - "resolved": "https://registry.npmjs.org/gatsby-telemetry/-/gatsby-telemetry-3.18.1.tgz", - "integrity": "sha512-EjjsUv15BZGsmnPrOINRT/s7d18DTKokpp2NDZLm8uOs3MwVoLtUZ/BS7h2NTmgK+WN93q3bNYRkZgKgV9QC1A==", + "version": "3.19.0", + "resolved": "https://registry.npmjs.org/gatsby-telemetry/-/gatsby-telemetry-3.19.0.tgz", + "integrity": "sha512-5JQcTm2zCLWTmnXOdOe0gxuk7aRZSTaVrOrytMlwAR7trvtBC/fKqMhJHsYwl5uW9K06F59ZdkC0apJTAPkGww==", "requires": { "@babel/code-frame": "^7.14.0", "@babel/runtime": "^7.15.4", @@ -7266,7 +7046,7 @@ "boxen": "^4.2.0", "configstore": "^5.0.1", "fs-extra": "^10.1.0", - "gatsby-core-utils": "^3.18.1", + "gatsby-core-utils": "^3.19.0", "git-up": "^4.0.5", "is-docker": "^2.2.1", "lodash": "^4.17.21", @@ -7339,9 +7119,9 @@ } }, "gatsby-worker": { - "version": "1.18.0", - "resolved": "https://registry.npmjs.org/gatsby-worker/-/gatsby-worker-1.18.0.tgz", - "integrity": "sha512-gNzqDrYFMXlfXCzdClORyDQWQZKTOF6nRUrhZT8PUxzQViO+DvnEKE3EAQvZizYKW1Hgw7cbiTtLG3qshkNepw==", + "version": "1.19.0", + "resolved": "https://registry.npmjs.org/gatsby-worker/-/gatsby-worker-1.19.0.tgz", + "integrity": "sha512-E0I51K5+rSpcUkv3wQ17FHZiicLeMH/Hz7p3oxlPCM43pcvsYJTa68Q0MqI1K6XV6Z8Nf48dERKMvHT0PnY4GQ==", "requires": { "@babel/core": "^7.15.5", "@babel/runtime": "^7.15.4" @@ -7774,6 +7554,11 @@ } } }, + "he": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/he/-/he-1.2.0.tgz", + "integrity": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==" + }, "header-case": { "version": "2.0.4", "resolved": "https://registry.npmjs.org/header-case/-/header-case-2.0.4.tgz", @@ -7824,23 +7609,6 @@ "toidentifier": "1.0.1" } }, - "http-proxy": { - "version": "1.18.1", - "resolved": "https://registry.npmjs.org/http-proxy/-/http-proxy-1.18.1.tgz", - "integrity": "sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==", - "requires": { - "eventemitter3": "^4.0.0", - "follow-redirects": "^1.0.0", - "requires-port": "^1.0.0" - }, - "dependencies": { - "eventemitter3": { - "version": "4.0.7", - "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.7.tgz", - "integrity": "sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==" - } - } - }, "http2-wrapper": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/http2-wrapper/-/http2-wrapper-1.0.3.tgz", @@ -8475,9 +8243,9 @@ } }, "keyv": { - "version": "4.3.2", - "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.3.2.tgz", - "integrity": "sha512-kn8WmodVBe12lmHpA6W8OY7SNh6wVR+Z+wZESF4iF5FCazaVXGWOtnbnvX0tMQ1bO+/TmOD9LziuYMvrIIs0xw==", + "version": "4.3.3", + "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.3.3.tgz", + "integrity": "sha512-AcysI17RvakTh8ir03+a3zJr5r0ovnAH/XTXei/4HIv3bL2K/jzvgivLK9UuI/JbU1aJjM3NSAnVvVVd3n+4DQ==", "requires": { "compress-brotli": "^1.3.8", "json-buffer": "3.0.1" @@ -8556,54 +8324,49 @@ "weak-lru-cache": "^1.2.2" }, "dependencies": { + "@lmdb/lmdb-darwin-arm64": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-arm64/-/lmdb-darwin-arm64-2.5.3.tgz", + "integrity": "sha512-RXwGZ/0eCqtCY8FLTM/koR60w+MXyvBUpToXiIyjOcBnC81tAlTUHrRUavCEWPI9zc9VgvpK3+cbumPyR8BSuA==", + "optional": true + }, + "@lmdb/lmdb-darwin-x64": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-x64/-/lmdb-darwin-x64-2.5.3.tgz", + "integrity": "sha512-337dNzh5yCdNCTk8kPfoU7jR3otibSlPDGW0vKZT97rKnQMb9tNdto3RtWoGPsQ8hKmlRZpojOJtmwjncq1MoA==", + "optional": true + }, + "@lmdb/lmdb-linux-arm": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm/-/lmdb-linux-arm-2.5.3.tgz", + "integrity": "sha512-mU2HFJDGwECkoD9dHQEfeTG5mp8hNS2BCfwoiOpVPMeapjYpQz9Uw3FkUjRZ4dGHWKbin40oWHuL0bk2bCx+Sg==", + "optional": true + }, + "@lmdb/lmdb-linux-arm64": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm64/-/lmdb-linux-arm64-2.5.3.tgz", + "integrity": "sha512-VJw60Mdgb4n+L0fO1PqfB0C7TyEQolJAC8qpqvG3JoQwvyOv6LH7Ib/WE3wxEW9nuHmVz9jkK7lk5HfWWgoO1Q==", + "optional": true + }, + "@lmdb/lmdb-linux-x64": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-x64/-/lmdb-linux-x64-2.5.3.tgz", + "integrity": "sha512-qaReO5aV8griBDsBr8uBF/faO3ieGjY1RY4p8JvTL6Mu1ylLrTVvOONqKFlNaCwrmUjWw5jnf7VafxDAeQHTow==", + "optional": true + }, + "@lmdb/lmdb-win32-x64": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-win32-x64/-/lmdb-win32-x64-2.5.3.tgz", + "integrity": "sha512-cK+Elf3RjEzrm3SerAhrFWL5oQAsZSJ/LmjL1joIpTfEP1etJJ9CTRvdaV6XLYAxaEkfdhk/9hOvHLbR9yIhCA==", + "optional": true + }, "node-addon-api": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-4.3.0.tgz", "integrity": "sha512-73sE9+3UaLYYFmDsFZnqCInzPyh3MqIwZO9cw58yIqAZhONrrabrYyYe3TuIqtIiOuTXVhsGau8hcrhhwSsDIQ==" - }, - "node-gyp-build-optional-packages": { - "version": "5.0.3", - "resolved": "https://registry.npmjs.org/node-gyp-build-optional-packages/-/node-gyp-build-optional-packages-5.0.3.tgz", - "integrity": "sha512-k75jcVzk5wnnc/FMxsf4udAoTEUv2jY3ycfdSd3yWu6Cnd1oee6/CfZJApyscA4FJOmdoixWwiwOyf16RzD5JA==" } } }, - "lmdb-darwin-arm64": { - "version": "2.3.10", - "resolved": "https://registry.npmjs.org/lmdb-darwin-arm64/-/lmdb-darwin-arm64-2.3.10.tgz", - "integrity": "sha512-LVXbH2MYu7/ZuQ8+P9rv+SwNyBKltxo7vHAGJS94HWyfwnCbKEYER9PImBvNBwzvgtaYk6x0RMX3oor6e6KdDQ==", - "optional": true - }, - "lmdb-darwin-x64": { - "version": "2.3.10", - "resolved": "https://registry.npmjs.org/lmdb-darwin-x64/-/lmdb-darwin-x64-2.3.10.tgz", - "integrity": "sha512-gAc/1b/FZOb9yVOT+o0huA+hdW82oxLo5r22dFTLoRUFG1JMzxdTjmnW6ONVOHdqC9a5bt3vBCEY3jmXNqV26A==", - "optional": true - }, - "lmdb-linux-arm": { - "version": "2.3.10", - "resolved": "https://registry.npmjs.org/lmdb-linux-arm/-/lmdb-linux-arm-2.3.10.tgz", - "integrity": "sha512-Rb8+4JjsThuEcJ7GLLwFkCFnoiwv/3hAAbELWITz70buQFF+dCZvCWWgEgmDTxwn5r+wIkdUjmFv4dqqiKQFmQ==", - "optional": true - }, - "lmdb-linux-arm64": { - "version": "2.3.10", - "resolved": "https://registry.npmjs.org/lmdb-linux-arm64/-/lmdb-linux-arm64-2.3.10.tgz", - "integrity": "sha512-Ihr8mdICTK3jA4GXHxrXGK2oekn0mY6zuDSXQDNtyRSH19j3D2Y04A7SEI9S0EP/t5sjKSudYgZbiHDxRCsI5A==", - "optional": true - }, - "lmdb-linux-x64": { - "version": "2.3.10", - "resolved": "https://registry.npmjs.org/lmdb-linux-x64/-/lmdb-linux-x64-2.3.10.tgz", - "integrity": "sha512-E3l3pDiCA9uvnLf+t3qkmBGRO01dp1EHD0x0g0iRnfpAhV7wYbayJGfG93BUt22Tj3fnq4HDo4dQ6ZWaDI1nuw==", - "optional": true - }, - "lmdb-win32-x64": { - "version": "2.3.10", - "resolved": "https://registry.npmjs.org/lmdb-win32-x64/-/lmdb-win32-x64-2.3.10.tgz", - "integrity": "sha512-gspWk34tDANhjn+brdqZstJMptGiwj4qFNVg0Zey9ds+BUlif+Lgf5szrfOVzZ8gVRkk1Lgbz7i78+V7YK7SCA==", - "optional": true - }, "load-bmfont": { "version": "1.4.1", "resolved": "https://registry.npmjs.org/load-bmfont/-/load-bmfont-1.4.1.tgz", @@ -9074,11 +8837,6 @@ "resolved": "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.8.tgz", "integrity": "sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==" }, - "nan": { - "version": "2.16.0", - "resolved": "https://registry.npmjs.org/nan/-/nan-2.16.0.tgz", - "integrity": "sha512-UdAqHyFngu7TfQKsCBgAA6pWDkT8MAO7d0jyOecVhN5354xbLqdn8mV9Tat9gepAupm0bt2DbeaSC8vS52MuFA==" - }, "nanoid": { "version": "3.3.4", "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.4.tgz", @@ -9158,9 +8916,18 @@ "integrity": "sha512-2iGbaQBV+ITgCz76ZEjmhUKAKVf7xfY1sRl4UiKQspfZMH2h06SyhNsnSVy50cwkFQDGLyif6m/6uFXHkOZ6rg==" }, "node-gyp-build-optional-packages": { - "version": "4.3.5", - "resolved": "https://registry.npmjs.org/node-gyp-build-optional-packages/-/node-gyp-build-optional-packages-4.3.5.tgz", - "integrity": "sha512-5ke7D8SiQsTQL7CkHpfR1tLwfqtKc0KYEmlnkwd40jHCASskZeS98qoZ1qDUns2aUQWikcjidRUs6PM/3iyN/w==" + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/node-gyp-build-optional-packages/-/node-gyp-build-optional-packages-5.0.3.tgz", + "integrity": "sha512-k75jcVzk5wnnc/FMxsf4udAoTEUv2jY3ycfdSd3yWu6Cnd1oee6/CfZJApyscA4FJOmdoixWwiwOyf16RzD5JA==" + }, + "node-html-parser": { + "version": "5.3.3", + "resolved": "https://registry.npmjs.org/node-html-parser/-/node-html-parser-5.3.3.tgz", + "integrity": "sha512-ncg1033CaX9UexbyA7e1N0aAoAYRDiV8jkTvzEnfd1GDvzFdrsXLzR4p4ik8mwLgnaKP/jyUFWDy9q3jvRT2Jw==", + "requires": { + "css-select": "^4.2.1", + "he": "1.2.0" + } }, "node-int64": { "version": "0.4.0", @@ -10310,6 +10077,13 @@ "http-errors": "2.0.0", "iconv-lite": "0.4.24", "unpipe": "1.0.0" + }, + "dependencies": { + "bytes": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", + "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==" + } } }, "raw-loader": { @@ -10759,11 +10533,6 @@ "resolved": "https://registry.npmjs.org/require-package-name/-/require-package-name-2.0.1.tgz", "integrity": "sha512-uuoJ1hU/k6M0779t3VMVIYpb2VMJk05cehCaABFhXaibcbvfgR8wKiozLjVFSzJPmQMRqIcO0HMyTFqfV09V6Q==" }, - "requires-port": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz", - "integrity": "sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==" - }, "resolve": { "version": "1.22.1", "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.1.tgz", @@ -10793,9 +10562,9 @@ "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==" }, "responselike": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/responselike/-/responselike-2.0.0.tgz", - "integrity": "sha512-xH48u3FTB9VsZw7R+vvgaKeLKzT6jOogbQhEe/jewwnZgzPcnyWui2Av6JpoYZF/91uueC+lqhWqeURw5/qhCw==", + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/responselike/-/responselike-2.0.1.tgz", + "integrity": "sha512-4gl03wn3hj1HP3yzgdI7d3lCkF95F21Pz4BPGvKHinyQzALR5CapwC8yIi0Rh58DEMQ/SguC03wFj2k0M/mHhw==", "requires": { "lowercase-keys": "^2.0.0" } @@ -11966,9 +11735,9 @@ "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==" }, "update-browserslist-db": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.4.tgz", - "integrity": "sha512-jnmO2BEGUjsMOe/Fg9u0oczOe/ppIDZPebzccl1yDWGLFP16Pa1/RM5wEoKYPG2zstNcDuAStejyxsOuKINdGA==", + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.5.tgz", + "integrity": "sha512-dteFFpCyvuDdr9S/ff1ISkKt/9YZxKjI9WlRR99c180GaztJtRa/fn18FdxGVKVsnPY7/a/FDN68mcvUmP4U7Q==", "requires": { "escalade": "^3.1.1", "picocolors": "^1.0.0" diff --git a/starters/gatsby-starter-minimal/package.json b/starters/gatsby-starter-minimal/package.json index ebd2175dcce81..24ed6a62bf13b 100644 --- a/starters/gatsby-starter-minimal/package.json +++ b/starters/gatsby-starter-minimal/package.json @@ -16,7 +16,7 @@ }, "license": "0BSD", "dependencies": { - "gatsby": "^4.18.2", + "gatsby": "^4.19.0", "react": "^18.1.0", "react-dom": "^18.1.0" } diff --git a/starters/gatsby-starter-notes-theme/package-lock.json b/starters/gatsby-starter-notes-theme/package-lock.json index dac2d5cdc410d..26613243c9f93 100644 --- a/starters/gatsby-starter-notes-theme/package-lock.json +++ b/starters/gatsby-starter-notes-theme/package-lock.json @@ -102,9 +102,9 @@ } }, "@babel/eslint-parser": { - "version": "7.18.2", - "resolved": "https://registry.npmjs.org/@babel/eslint-parser/-/eslint-parser-7.18.2.tgz", - "integrity": "sha512-oFQYkE8SuH14+uR51JVAmdqwKYXGRjEXx7s+WiagVjqQ+HPE+nnwyF2qlVG8evUsUHmPcA+6YXMEDbIhEyQc5A==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/eslint-parser/-/eslint-parser-7.18.9.tgz", + "integrity": "sha512-KzSGpMBggz4fKbRbWLNyPVTuQr6cmCcBhOyXTw/fieOVaw5oYAwcAj4a7UKcDYCPxQq+CG1NCDZH9e2JTXquiQ==", "requires": { "eslint-scope": "^5.1.1", "eslint-visitor-keys": "^2.1.0", @@ -623,9 +623,9 @@ }, "dependencies": { "@babel/helper-plugin-utils": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.18.6.tgz", - "integrity": "sha512-gvZnm1YAAxh13eJdkb9EWHBnF3eAub3XTLCZEehHT2kWxiKVRL64+ae5Y6Ivne0mVHmMYKT+xWgZO+gQhuLUBg==" + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.18.9.tgz", + "integrity": "sha512-aBXPT3bmtLryXaoJLyYPXPlSD4p1ld9aYeR+sJNOZjJJGiOpb+fKfh3NkcCu7J54nUJwCERPBExCCpyCOHnu/w==" } } }, @@ -718,9 +718,9 @@ }, "dependencies": { "@babel/helper-plugin-utils": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.18.6.tgz", - "integrity": "sha512-gvZnm1YAAxh13eJdkb9EWHBnF3eAub3XTLCZEehHT2kWxiKVRL64+ae5Y6Ivne0mVHmMYKT+xWgZO+gQhuLUBg==" + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.18.9.tgz", + "integrity": "sha512-aBXPT3bmtLryXaoJLyYPXPlSD4p1ld9aYeR+sJNOZjJJGiOpb+fKfh3NkcCu7J54nUJwCERPBExCCpyCOHnu/w==" } } }, @@ -816,18 +816,18 @@ } }, "@babel/plugin-transform-flow-strip-types": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.18.6.tgz", - "integrity": "sha512-wE0xtA7csz+hw4fKPwxmu5jnzAsXPIO57XnRwzXP3T19jWh1BODnPGoG9xKYwvAwusP7iUktHayRFbMPGtODaQ==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.18.9.tgz", + "integrity": "sha512-+G6rp2zRuOAInY5wcggsx4+QVao1qPM0osC9fTUVlAV3zOrzTCnrMAFVnR6+a3T8wz1wFIH7KhYMcMB3u1n80A==", "requires": { - "@babel/helper-plugin-utils": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.9", "@babel/plugin-syntax-flow": "^7.18.6" }, "dependencies": { "@babel/helper-plugin-utils": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.18.6.tgz", - "integrity": "sha512-gvZnm1YAAxh13eJdkb9EWHBnF3eAub3XTLCZEehHT2kWxiKVRL64+ae5Y6Ivne0mVHmMYKT+xWgZO+gQhuLUBg==" + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.18.9.tgz", + "integrity": "sha512-aBXPT3bmtLryXaoJLyYPXPlSD4p1ld9aYeR+sJNOZjJJGiOpb+fKfh3NkcCu7J54nUJwCERPBExCCpyCOHnu/w==" } } }, @@ -1002,12 +1002,12 @@ } }, "@babel/plugin-transform-runtime": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.18.6.tgz", - "integrity": "sha512-8uRHk9ZmRSnWqUgyae249EJZ94b0yAGLBIqzZzl+0iEdbno55Pmlt/32JZsHwXD9k/uZj18Aqqk35wBX4CBTXA==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.18.9.tgz", + "integrity": "sha512-wS8uJwBt7/b/mzE13ktsJdmS4JP/j7PQSaADtnb4I2wL0zK51MQ0pmF8/Jy0wUIS96fr+fXT6S/ifiPXnvrlSg==", "requires": { "@babel/helper-module-imports": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.9", "babel-plugin-polyfill-corejs2": "^0.3.1", "babel-plugin-polyfill-corejs3": "^0.5.2", "babel-plugin-polyfill-regenerator": "^0.3.1", @@ -1023,9 +1023,9 @@ } }, "@babel/helper-plugin-utils": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.18.6.tgz", - "integrity": "sha512-gvZnm1YAAxh13eJdkb9EWHBnF3eAub3XTLCZEehHT2kWxiKVRL64+ae5Y6Ivne0mVHmMYKT+xWgZO+gQhuLUBg==" + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.18.9.tgz", + "integrity": "sha512-aBXPT3bmtLryXaoJLyYPXPlSD4p1ld9aYeR+sJNOZjJJGiOpb+fKfh3NkcCu7J54nUJwCERPBExCCpyCOHnu/w==" }, "@babel/helper-validator-identifier": { "version": "7.18.6", @@ -1033,9 +1033,9 @@ "integrity": "sha512-MmetCkz9ej86nJQV+sFCxoGGrUbU3q02kgLciwkrt9QqEB7cP39oKEY0PakknEO0Gu20SskMRi+AYZ3b1TpN9g==" }, "@babel/types": { - "version": "7.18.8", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.8.tgz", - "integrity": "sha512-qwpdsmraq0aJ3osLJRApsc2ouSJCdnMeZwB0DhbtHAtRpZNZCdlbRnHIgcRKzdE1g0iOGg644fzjOBcdOz9cPw==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.9.tgz", + "integrity": "sha512-WwMLAg2MvJmt/rKEVQBBhIVffMmnilX4oe0sRe7iPOHIGsqpruFHHdrfj4O1CMMtgMtCU4oPafZjDPCRgO57Wg==", "requires": { "@babel/helper-validator-identifier": "^7.18.6", "to-fast-properties": "^2.0.0" @@ -1108,11 +1108,11 @@ } }, "@babel/generator": { - "version": "7.18.7", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.18.7.tgz", - "integrity": "sha512-shck+7VLlY72a2w9c3zYWuE1pwOKEiQHV7GTUbSnhyl5eu3i04t30tBY82ZRWrDfo3gkakCFtevExnxbkf2a3A==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.18.9.tgz", + "integrity": "sha512-wt5Naw6lJrL1/SGkipMiFxJjtyczUWTP38deiP1PO60HsBjDeKk08CGC3S8iVuvf0FmTdgKwU1KIXzSKL1G0Ug==", "requires": { - "@babel/types": "^7.18.7", + "@babel/types": "^7.18.9", "@jridgewell/gen-mapping": "^0.3.2", "jsesc": "^2.5.1" } @@ -1126,31 +1126,31 @@ } }, "@babel/helper-create-class-features-plugin": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.18.6.tgz", - "integrity": "sha512-YfDzdnoxHGV8CzqHGyCbFvXg5QESPFkXlHtvdCkesLjjVMT2Adxe4FGUR5ChIb3DxSaXO12iIOCWoXdsUVwnqw==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.18.9.tgz", + "integrity": "sha512-WvypNAYaVh23QcjpMR24CwZY2Nz6hqdOcFdPbNpV56hL5H6KiFheO7Xm1aPdlLQ7d5emYZX7VZwPp9x3z+2opw==", "requires": { "@babel/helper-annotate-as-pure": "^7.18.6", - "@babel/helper-environment-visitor": "^7.18.6", - "@babel/helper-function-name": "^7.18.6", - "@babel/helper-member-expression-to-functions": "^7.18.6", + "@babel/helper-environment-visitor": "^7.18.9", + "@babel/helper-function-name": "^7.18.9", + "@babel/helper-member-expression-to-functions": "^7.18.9", "@babel/helper-optimise-call-expression": "^7.18.6", - "@babel/helper-replace-supers": "^7.18.6", + "@babel/helper-replace-supers": "^7.18.9", "@babel/helper-split-export-declaration": "^7.18.6" } }, "@babel/helper-environment-visitor": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.18.6.tgz", - "integrity": "sha512-8n6gSfn2baOY+qlp+VSzsosjCVGFqWKmDF0cCWOybh52Dw3SEyoWR1KrhMJASjLwIEkkAufZ0xvr+SxLHSpy2Q==" + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.18.9.tgz", + "integrity": "sha512-3r/aACDJ3fhQ/EVgFy0hpj8oHyHpQc+LPtJoY9SzTThAsStm4Ptegq92vqKoE3vD706ZVFWITnMnxucw+S9Ipg==" }, "@babel/helper-function-name": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.18.6.tgz", - "integrity": "sha512-0mWMxV1aC97dhjCah5U5Ua7668r5ZmSC2DLfH2EZnf9c3/dHZKiFa5pRLMH5tjSl471tY6496ZWk/kjNONBxhw==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.18.9.tgz", + "integrity": "sha512-fJgWlZt7nxGksJS9a0XdSaI4XvpExnNIgRP+rVefWh5U7BL8pPuir6SJUmFKRfjWQ51OtWSzwOxhaH/EBWWc0A==", "requires": { "@babel/template": "^7.18.6", - "@babel/types": "^7.18.6" + "@babel/types": "^7.18.9" } }, "@babel/helper-hoist-variables": { @@ -1162,11 +1162,11 @@ } }, "@babel/helper-member-expression-to-functions": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.18.6.tgz", - "integrity": "sha512-CeHxqwwipekotzPDUuJOfIMtcIHBuc7WAzLmTYWctVigqS5RktNMQ5bEwQSuGewzYnCtTWa3BARXeiLxDTv+Ng==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.18.9.tgz", + "integrity": "sha512-RxifAh2ZoVU67PyKIO4AMi1wTenGfMR/O/ae0CCRqwgBAt5v7xjdtRw7UoSbsreKrQn5t7r89eruK/9JjYHuDg==", "requires": { - "@babel/types": "^7.18.6" + "@babel/types": "^7.18.9" } }, "@babel/helper-optimise-call-expression": { @@ -1178,20 +1178,20 @@ } }, "@babel/helper-plugin-utils": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.18.6.tgz", - "integrity": "sha512-gvZnm1YAAxh13eJdkb9EWHBnF3eAub3XTLCZEehHT2kWxiKVRL64+ae5Y6Ivne0mVHmMYKT+xWgZO+gQhuLUBg==" + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.18.9.tgz", + "integrity": "sha512-aBXPT3bmtLryXaoJLyYPXPlSD4p1ld9aYeR+sJNOZjJJGiOpb+fKfh3NkcCu7J54nUJwCERPBExCCpyCOHnu/w==" }, "@babel/helper-replace-supers": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.18.6.tgz", - "integrity": "sha512-fTf7zoXnUGl9gF25fXCWE26t7Tvtyn6H4hkLSYhATwJvw2uYxd3aoXplMSe0g9XbwK7bmxNes7+FGO0rB/xC0g==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.18.9.tgz", + "integrity": "sha512-dNsWibVI4lNT6HiuOIBr1oyxo40HvIVmbwPUm3XZ7wMh4k2WxrxTqZwSqw/eEmXDS9np0ey5M2bz9tBmO9c+YQ==", "requires": { - "@babel/helper-environment-visitor": "^7.18.6", - "@babel/helper-member-expression-to-functions": "^7.18.6", + "@babel/helper-environment-visitor": "^7.18.9", + "@babel/helper-member-expression-to-functions": "^7.18.9", "@babel/helper-optimise-call-expression": "^7.18.6", - "@babel/traverse": "^7.18.6", - "@babel/types": "^7.18.6" + "@babel/traverse": "^7.18.9", + "@babel/types": "^7.18.9" } }, "@babel/helper-split-export-declaration": { @@ -1218,9 +1218,9 @@ } }, "@babel/parser": { - "version": "7.18.8", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.18.8.tgz", - "integrity": "sha512-RSKRfYX20dyH+elbJK2uqAkVyucL+xXzhqlMD5/ZXx+dAAwpyB7HsvnHe/ZUGOF+xLr5Wx9/JoXVTj6BQE2/oA==" + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.18.9.tgz", + "integrity": "sha512-9uJveS9eY9DJ0t64YbIBZICtJy8a5QrDEVdiLCG97fVLpDTpGX7t8mMSb6OWw6Lrnjqj4O8zwjELX3dhoMgiBg==" }, "@babel/template": { "version": "7.18.6", @@ -1233,26 +1233,26 @@ } }, "@babel/traverse": { - "version": "7.18.8", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.18.8.tgz", - "integrity": "sha512-UNg/AcSySJYR/+mIcJQDCv00T+AqRO7j/ZEJLzpaYtgM48rMg5MnkJgyNqkzo88+p4tfRvZJCEiwwfG6h4jkRg==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.18.9.tgz", + "integrity": "sha512-LcPAnujXGwBgv3/WHv01pHtb2tihcyW1XuL9wd7jqh1Z8AQkTd+QVjMrMijrln0T7ED3UXLIy36P9Ao7W75rYg==", "requires": { "@babel/code-frame": "^7.18.6", - "@babel/generator": "^7.18.7", - "@babel/helper-environment-visitor": "^7.18.6", - "@babel/helper-function-name": "^7.18.6", + "@babel/generator": "^7.18.9", + "@babel/helper-environment-visitor": "^7.18.9", + "@babel/helper-function-name": "^7.18.9", "@babel/helper-hoist-variables": "^7.18.6", "@babel/helper-split-export-declaration": "^7.18.6", - "@babel/parser": "^7.18.8", - "@babel/types": "^7.18.8", + "@babel/parser": "^7.18.9", + "@babel/types": "^7.18.9", "debug": "^4.1.0", "globals": "^11.1.0" } }, "@babel/types": { - "version": "7.18.8", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.8.tgz", - "integrity": "sha512-qwpdsmraq0aJ3osLJRApsc2ouSJCdnMeZwB0DhbtHAtRpZNZCdlbRnHIgcRKzdE1g0iOGg644fzjOBcdOz9cPw==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.9.tgz", + "integrity": "sha512-WwMLAg2MvJmt/rKEVQBBhIVffMmnilX4oe0sRe7iPOHIGsqpruFHHdrfj4O1CMMtgMtCU4oPafZjDPCRgO57Wg==", "requires": { "@babel/helper-validator-identifier": "^7.18.6", "to-fast-properties": "^2.0.0" @@ -1419,9 +1419,9 @@ }, "dependencies": { "@babel/helper-plugin-utils": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.18.6.tgz", - "integrity": "sha512-gvZnm1YAAxh13eJdkb9EWHBnF3eAub3XTLCZEehHT2kWxiKVRL64+ae5Y6Ivne0mVHmMYKT+xWgZO+gQhuLUBg==" + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.18.9.tgz", + "integrity": "sha512-aBXPT3bmtLryXaoJLyYPXPlSD4p1ld9aYeR+sJNOZjJJGiOpb+fKfh3NkcCu7J54nUJwCERPBExCCpyCOHnu/w==" }, "@babel/helper-validator-option": { "version": "7.18.6", @@ -1439,9 +1439,9 @@ } }, "@babel/runtime-corejs3": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/runtime-corejs3/-/runtime-corejs3-7.18.6.tgz", - "integrity": "sha512-cOu5wH2JFBgMjje+a+fz2JNIWU4GzYpl05oSob3UDvBEh6EuIn+TXFHMmBbhSb+k/4HMzgKCQfEEDArAWNF9Cw==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/runtime-corejs3/-/runtime-corejs3-7.18.9.tgz", + "integrity": "sha512-qZEWeccZCrHA2Au4/X05QW5CMdm4VjUDCrGq5gf1ZDcM4hRqreKrtwAn7yci9zfgAS9apvnsFXiGBHBAxZdK9A==", "requires": { "core-js-pure": "^3.20.2", "regenerator-runtime": "^0.13.4" @@ -1687,214 +1687,60 @@ } }, "@gatsbyjs/parcel-namer-relative-to-cwd": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/@gatsbyjs/parcel-namer-relative-to-cwd/-/parcel-namer-relative-to-cwd-1.3.2.tgz", - "integrity": "sha512-jiYGiq8Zk21x2IIWbsLQ0GqgGJyKjj+/4jYwr5msD5ORB/JAZLk4IDrMKZ9rFXkNPq/bRV57ub0k/NvRMELfLQ==", + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/@gatsbyjs/parcel-namer-relative-to-cwd/-/parcel-namer-relative-to-cwd-1.4.0.tgz", + "integrity": "sha512-oXhiaPtYTGYqGZlazYRUabWVHWx5z6sAyBVLhUnpsKcBsK815cET+mjeWDKpmvJmFTKHC72Bvy1WIEnW3++YxA==", "requires": { "@babel/runtime": "^7.18.0", "@parcel/namer-default": "2.6.2", - "@parcel/plugin": "2.6.0", - "gatsby-core-utils": "^3.18.1" + "@parcel/plugin": "2.6.2", + "gatsby-core-utils": "^3.19.0" }, "dependencies": { "@babel/runtime": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.18.6.tgz", - "integrity": "sha512-t9wi7/AW6XtKahAe20Yw0/mMljKq0B1r2fPdvaAdV/KPDZewFXdaaa6K7lxmZBZ8FBNpCiAT6iHPmd6QO9bKfQ==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.18.9.tgz", + "integrity": "sha512-lkqXDcvlFT5rvEjiu6+QYO+1GXrEHRo2LOtS7E4GtX5ESIZOgepqsZBVIj6Pv+a6zqsya9VCgiK1KAK4BvJDAw==", "requires": { "regenerator-runtime": "^0.13.4" } }, "@lmdb/lmdb-darwin-arm64": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-arm64/-/lmdb-darwin-arm64-2.5.2.tgz", - "integrity": "sha512-+F8ioQIUN68B4UFiIBYu0QQvgb9FmlKw2ctQMSBfW2QBrZIxz9vD9jCGqTCPqZBRbPHAS/vG1zSXnKqnS2ch/A==", + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-arm64/-/lmdb-darwin-arm64-2.5.3.tgz", + "integrity": "sha512-RXwGZ/0eCqtCY8FLTM/koR60w+MXyvBUpToXiIyjOcBnC81tAlTUHrRUavCEWPI9zc9VgvpK3+cbumPyR8BSuA==", "optional": true }, "@lmdb/lmdb-darwin-x64": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-x64/-/lmdb-darwin-x64-2.5.2.tgz", - "integrity": "sha512-KvPH56KRLLx4KSfKBx0m1r7GGGUMXm0jrKmNE7plbHlesZMuPJICtn07HYgQhj1LNsK7Yqwuvnqh1QxhJnF1EA==", + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-x64/-/lmdb-darwin-x64-2.5.3.tgz", + "integrity": "sha512-337dNzh5yCdNCTk8kPfoU7jR3otibSlPDGW0vKZT97rKnQMb9tNdto3RtWoGPsQ8hKmlRZpojOJtmwjncq1MoA==", "optional": true }, "@lmdb/lmdb-linux-arm": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm/-/lmdb-linux-arm-2.5.2.tgz", - "integrity": "sha512-5kQAP21hAkfW5Bl+e0P57dV4dGYnkNIpR7f/GAh6QHlgXx+vp/teVj4PGRZaKAvt0GX6++N6hF8NnGElLDuIDw==", + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm/-/lmdb-linux-arm-2.5.3.tgz", + "integrity": "sha512-mU2HFJDGwECkoD9dHQEfeTG5mp8hNS2BCfwoiOpVPMeapjYpQz9Uw3FkUjRZ4dGHWKbin40oWHuL0bk2bCx+Sg==", "optional": true }, "@lmdb/lmdb-linux-arm64": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm64/-/lmdb-linux-arm64-2.5.2.tgz", - "integrity": "sha512-aLl89VHL/wjhievEOlPocoefUyWdvzVrcQ/MHQYZm2JfV1jUsrbr/ZfkPPUFvZBf+VSE+Q0clWs9l29PCX1hTQ==", + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm64/-/lmdb-linux-arm64-2.5.3.tgz", + "integrity": "sha512-VJw60Mdgb4n+L0fO1PqfB0C7TyEQolJAC8qpqvG3JoQwvyOv6LH7Ib/WE3wxEW9nuHmVz9jkK7lk5HfWWgoO1Q==", "optional": true }, "@lmdb/lmdb-linux-x64": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-x64/-/lmdb-linux-x64-2.5.2.tgz", - "integrity": "sha512-xUdUfwDJLGjOUPH3BuPBt0NlIrR7f/QHKgu3GZIXswMMIihAekj2i97oI0iWG5Bok/b+OBjHPfa8IU9velnP/Q==", + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-x64/-/lmdb-linux-x64-2.5.3.tgz", + "integrity": "sha512-qaReO5aV8griBDsBr8uBF/faO3ieGjY1RY4p8JvTL6Mu1ylLrTVvOONqKFlNaCwrmUjWw5jnf7VafxDAeQHTow==", "optional": true }, "@lmdb/lmdb-win32-x64": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-win32-x64/-/lmdb-win32-x64-2.5.2.tgz", - "integrity": "sha512-zrBczSbXKxEyK2ijtbRdICDygRqWSRPpZMN5dD1T8VMEW5RIhIbwFWw2phDRXuBQdVDpSjalCIUMWMV2h3JaZA==", + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-win32-x64/-/lmdb-win32-x64-2.5.3.tgz", + "integrity": "sha512-cK+Elf3RjEzrm3SerAhrFWL5oQAsZSJ/LmjL1joIpTfEP1etJJ9CTRvdaV6XLYAxaEkfdhk/9hOvHLbR9yIhCA==", "optional": true }, - "@parcel/cache": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/@parcel/cache/-/cache-2.6.2.tgz", - "integrity": "sha512-hhJ6AsEGybeQZd9c/GYqfcKTgZKQXu3Xih6TlnP3gdR3KZoJOnb40ovHD1yYg4COvfcXThKP1cVJ18J6rcv3IA==", - "requires": { - "@parcel/fs": "2.6.2", - "@parcel/logger": "2.6.2", - "@parcel/utils": "2.6.2", - "lmdb": "2.5.2" - } - }, - "@parcel/codeframe": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/@parcel/codeframe/-/codeframe-2.6.2.tgz", - "integrity": "sha512-oFlHr6HCaYYsB4SHkU+gn9DKtbzvv3/4NdwMX0/6NAKyYVI7inEsXyPGw2Bbd2ZCFatW9QJZUETF0etvh5AEfQ==", - "requires": { - "chalk": "^4.1.0" - } - }, - "@parcel/diagnostic": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/@parcel/diagnostic/-/diagnostic-2.6.2.tgz", - "integrity": "sha512-3ODSBkKVihENU763z1/1DhGAWFhYWRxOCOShC72KXp+GFnSgGiBsxclu8NBa/N948Rzp8lqQI8U1nLcKkh0O/w==", - "requires": { - "@mischnic/json-sourcemap": "^0.1.0", - "nullthrows": "^1.1.1" - } - }, - "@parcel/events": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/@parcel/events/-/events-2.6.2.tgz", - "integrity": "sha512-IaCjOeA5ercdFVi1EZOmUHhGfIysmCUgc2Th9hMugSFO0I3GzRsBcAdP6XPfWm+TV6sQ/qZRfdk/drUxoAupnw==" - }, - "@parcel/fs": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/@parcel/fs/-/fs-2.6.2.tgz", - "integrity": "sha512-mIhqdF3tjgeoIGqW7Nc/xfM2ClID7o8livwUe5lpQEP+ZaIBiMigXs6ckv3WToCACK+3uylrSD2A/HmlhrxMqQ==", - "requires": { - "@parcel/fs-search": "2.6.2", - "@parcel/types": "2.6.2", - "@parcel/utils": "2.6.2", - "@parcel/watcher": "^2.0.0", - "@parcel/workers": "2.6.2" - } - }, - "@parcel/fs-search": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/@parcel/fs-search/-/fs-search-2.6.2.tgz", - "integrity": "sha512-4STid1zqtGnmGjHD/2TG2g/zPDiCTtE3IAS24QYH3eiUAz2uoKGgEqd2tZbZ2yI96jtCuIhC1bzVu8Hbykls7w==", - "requires": { - "detect-libc": "^1.0.3" - } - }, - "@parcel/hash": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/@parcel/hash/-/hash-2.6.2.tgz", - "integrity": "sha512-tFB+cJU1Wqag6WyJgsmx3nx+xhmjcNZqtWh/MtK1lHNnZdDRk6bjr7SapnygBwruz+SmSt5bbdVThcpk2dRCcA==", - "requires": { - "detect-libc": "^1.0.3", - "xxhash-wasm": "^0.4.2" - } - }, - "@parcel/logger": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/@parcel/logger/-/logger-2.6.2.tgz", - "integrity": "sha512-Sz5YGCj1DbEiX0/G8Uw97LLZ0uEK+qtWcRAkHNpJpeMiSqDiRNevxXltz42EcLo+oCh4d4wyiVzwi9mNwzhS/Q==", - "requires": { - "@parcel/diagnostic": "2.6.2", - "@parcel/events": "2.6.2" - } - }, - "@parcel/markdown-ansi": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/@parcel/markdown-ansi/-/markdown-ansi-2.6.2.tgz", - "integrity": "sha512-N/h9J4eibhc+B+krzvPMzFUWL37GudBIZBa7XSLkcuH6MnYYfh6rrMvhIyyESwk6VkcZNVzAeZrGQqxEs0dHDQ==", - "requires": { - "chalk": "^4.1.0" - } - }, - "@parcel/namer-default": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/@parcel/namer-default/-/namer-default-2.6.2.tgz", - "integrity": "sha512-mp7bx/BQaIuohmZP0uE+gAmDBzzH0Yu8F4yCtE611lc6i0mou+nWRhzyKLNC/ieuI8DB3BFh2QQKeTxJn4W0qg==", - "requires": { - "@parcel/diagnostic": "2.6.2", - "@parcel/plugin": "2.6.2", - "nullthrows": "^1.1.1" - }, - "dependencies": { - "@parcel/plugin": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/@parcel/plugin/-/plugin-2.6.2.tgz", - "integrity": "sha512-wbbWsM23Pr+8xtLSvf+UopXdVYlpKCCx6PuuZaZcKo+9IcDCWoGXD4M8Kkz14qBmkFn5uM00mULUqmVdSibB2w==", - "requires": { - "@parcel/types": "2.6.2" - } - } - } - }, - "@parcel/package-manager": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/@parcel/package-manager/-/package-manager-2.6.2.tgz", - "integrity": "sha512-xGMqTgnwTE3rgzYwUZMKxR8fzmP5iSYz/gj2H8FR3pEmwh/8xCMtNjTSth+hPVGuqgRZ6JxwpfdY/fXdZ61ViQ==", - "requires": { - "@parcel/diagnostic": "2.6.2", - "@parcel/fs": "2.6.2", - "@parcel/logger": "2.6.2", - "@parcel/types": "2.6.2", - "@parcel/utils": "2.6.2", - "@parcel/workers": "2.6.2", - "semver": "^5.7.1" - } - }, - "@parcel/types": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/@parcel/types/-/types-2.6.2.tgz", - "integrity": "sha512-MV8BFpCIs2jMUvK2RHqzkoiuOQ//JIbrD1zocA2YRW3zuPL/iABvbAABJoXpoPCKikVWOoCWASgBfWQo26VvJQ==", - "requires": { - "@parcel/cache": "2.6.2", - "@parcel/diagnostic": "2.6.2", - "@parcel/fs": "2.6.2", - "@parcel/package-manager": "2.6.2", - "@parcel/source-map": "^2.0.0", - "@parcel/workers": "2.6.2", - "utility-types": "^3.10.0" - } - }, - "@parcel/utils": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/@parcel/utils/-/utils-2.6.2.tgz", - "integrity": "sha512-Ug7hpRxjgbY5AopW55nY7MmGMVmwmN+ihfCmxJkBUoESTG/3iq8uME7GjyOgW5DkQc2K7q62i8y8N0wCJT1u4Q==", - "requires": { - "@parcel/codeframe": "2.6.2", - "@parcel/diagnostic": "2.6.2", - "@parcel/hash": "2.6.2", - "@parcel/logger": "2.6.2", - "@parcel/markdown-ansi": "2.6.2", - "@parcel/source-map": "^2.0.0", - "chalk": "^4.1.0" - } - }, - "@parcel/workers": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/@parcel/workers/-/workers-2.6.2.tgz", - "integrity": "sha512-wBgUjJQm+lDd12fPRUmk09+ujTA9DgwPdqylSFK0OtI/yT6A+2kArUqjp8IwWo2tCJXoMzXBne2XQIWKqMiN4Q==", - "requires": { - "@parcel/diagnostic": "2.6.2", - "@parcel/logger": "2.6.2", - "@parcel/types": "2.6.2", - "@parcel/utils": "2.6.2", - "chrome-trace-event": "^1.0.2", - "nullthrows": "^1.1.1" - } - }, "fs-extra": { "version": "10.1.0", "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz", @@ -1906,9 +1752,9 @@ } }, "gatsby-core-utils": { - "version": "3.18.1", - "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.18.1.tgz", - "integrity": "sha512-sJTxRqizLxYy/tSFk0ydfqEZ3ek1So9HDVUa39F6Oi8XuPCBTFzaAooUvowKGneI5YUbdk5y4VO4ybwVUynntw==", + "version": "3.19.0", + "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.19.0.tgz", + "integrity": "sha512-cjXs9DsXkPZt+UdiLHxtq+rGMGVrcnM0KwkawlruvPchI7lqGNv9CScqlvYPxx1dBhu3zSZS26EBALMlFhyOJA==", "requires": { "@babel/runtime": "^7.15.4", "ci-info": "2.0.0", @@ -1925,62 +1771,6 @@ "resolve-from": "^5.0.0", "tmp": "^0.2.1", "xdg-basedir": "^4.0.0" - }, - "dependencies": { - "@lmdb/lmdb-darwin-arm64": { - "version": "2.5.3", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-arm64/-/lmdb-darwin-arm64-2.5.3.tgz", - "integrity": "sha512-RXwGZ/0eCqtCY8FLTM/koR60w+MXyvBUpToXiIyjOcBnC81tAlTUHrRUavCEWPI9zc9VgvpK3+cbumPyR8BSuA==", - "optional": true - }, - "@lmdb/lmdb-darwin-x64": { - "version": "2.5.3", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-x64/-/lmdb-darwin-x64-2.5.3.tgz", - "integrity": "sha512-337dNzh5yCdNCTk8kPfoU7jR3otibSlPDGW0vKZT97rKnQMb9tNdto3RtWoGPsQ8hKmlRZpojOJtmwjncq1MoA==", - "optional": true - }, - "@lmdb/lmdb-linux-arm": { - "version": "2.5.3", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm/-/lmdb-linux-arm-2.5.3.tgz", - "integrity": "sha512-mU2HFJDGwECkoD9dHQEfeTG5mp8hNS2BCfwoiOpVPMeapjYpQz9Uw3FkUjRZ4dGHWKbin40oWHuL0bk2bCx+Sg==", - "optional": true - }, - "@lmdb/lmdb-linux-arm64": { - "version": "2.5.3", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm64/-/lmdb-linux-arm64-2.5.3.tgz", - "integrity": "sha512-VJw60Mdgb4n+L0fO1PqfB0C7TyEQolJAC8qpqvG3JoQwvyOv6LH7Ib/WE3wxEW9nuHmVz9jkK7lk5HfWWgoO1Q==", - "optional": true - }, - "@lmdb/lmdb-linux-x64": { - "version": "2.5.3", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-x64/-/lmdb-linux-x64-2.5.3.tgz", - "integrity": "sha512-qaReO5aV8griBDsBr8uBF/faO3ieGjY1RY4p8JvTL6Mu1ylLrTVvOONqKFlNaCwrmUjWw5jnf7VafxDAeQHTow==", - "optional": true - }, - "@lmdb/lmdb-win32-x64": { - "version": "2.5.3", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-win32-x64/-/lmdb-win32-x64-2.5.3.tgz", - "integrity": "sha512-cK+Elf3RjEzrm3SerAhrFWL5oQAsZSJ/LmjL1joIpTfEP1etJJ9CTRvdaV6XLYAxaEkfdhk/9hOvHLbR9yIhCA==", - "optional": true - }, - "lmdb": { - "version": "2.5.3", - "resolved": "https://registry.npmjs.org/lmdb/-/lmdb-2.5.3.tgz", - "integrity": "sha512-iBA0cb13CobBSoGJLfZgnrykLlfJipDAnvtf+YwIqqzBEsTeQYsXrHaSBkaHd5wCWeabwrNvhjZoFMUrlo+eLw==", - "requires": { - "@lmdb/lmdb-darwin-arm64": "2.5.3", - "@lmdb/lmdb-darwin-x64": "2.5.3", - "@lmdb/lmdb-linux-arm": "2.5.3", - "@lmdb/lmdb-linux-arm64": "2.5.3", - "@lmdb/lmdb-linux-x64": "2.5.3", - "@lmdb/lmdb-win32-x64": "2.5.3", - "msgpackr": "^1.5.4", - "node-addon-api": "^4.3.0", - "node-gyp-build-optional-packages": "5.0.3", - "ordered-binary": "^1.2.4", - "weak-lru-cache": "^1.2.2" - } - } } }, "got": { @@ -2011,16 +1801,16 @@ } }, "lmdb": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/lmdb/-/lmdb-2.5.2.tgz", - "integrity": "sha512-V5V5Xa2Hp9i2XsbDALkBTeHXnBXh/lEmk9p22zdr7jtuOIY9TGhjK6vAvTpOOx9IKU4hJkRWZxn/HsvR1ELLtA==", + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/lmdb/-/lmdb-2.5.3.tgz", + "integrity": "sha512-iBA0cb13CobBSoGJLfZgnrykLlfJipDAnvtf+YwIqqzBEsTeQYsXrHaSBkaHd5wCWeabwrNvhjZoFMUrlo+eLw==", "requires": { - "@lmdb/lmdb-darwin-arm64": "2.5.2", - "@lmdb/lmdb-darwin-x64": "2.5.2", - "@lmdb/lmdb-linux-arm": "2.5.2", - "@lmdb/lmdb-linux-arm64": "2.5.2", - "@lmdb/lmdb-linux-x64": "2.5.2", - "@lmdb/lmdb-win32-x64": "2.5.2", + "@lmdb/lmdb-darwin-arm64": "2.5.3", + "@lmdb/lmdb-darwin-x64": "2.5.3", + "@lmdb/lmdb-linux-arm": "2.5.3", + "@lmdb/lmdb-linux-arm64": "2.5.3", + "@lmdb/lmdb-linux-x64": "2.5.3", + "@lmdb/lmdb-win32-x64": "2.5.3", "msgpackr": "^1.5.4", "node-addon-api": "^4.3.0", "node-gyp-build-optional-packages": "5.0.3", @@ -2033,21 +1823,11 @@ "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-4.3.0.tgz", "integrity": "sha512-73sE9+3UaLYYFmDsFZnqCInzPyh3MqIwZO9cw58yIqAZhONrrabrYyYe3TuIqtIiOuTXVhsGau8hcrhhwSsDIQ==" }, - "node-gyp-build-optional-packages": { - "version": "5.0.3", - "resolved": "https://registry.npmjs.org/node-gyp-build-optional-packages/-/node-gyp-build-optional-packages-5.0.3.tgz", - "integrity": "sha512-k75jcVzk5wnnc/FMxsf4udAoTEUv2jY3ycfdSd3yWu6Cnd1oee6/CfZJApyscA4FJOmdoixWwiwOyf16RzD5JA==" - }, "resolve-from": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==" }, - "semver": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", - "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==" - }, "universalify": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz", @@ -2971,39 +2751,39 @@ } }, "@lmdb/lmdb-darwin-arm64": { - "version": "2.5.3", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-arm64/-/lmdb-darwin-arm64-2.5.3.tgz", - "integrity": "sha512-RXwGZ/0eCqtCY8FLTM/koR60w+MXyvBUpToXiIyjOcBnC81tAlTUHrRUavCEWPI9zc9VgvpK3+cbumPyR8BSuA==", + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-arm64/-/lmdb-darwin-arm64-2.5.2.tgz", + "integrity": "sha512-+F8ioQIUN68B4UFiIBYu0QQvgb9FmlKw2ctQMSBfW2QBrZIxz9vD9jCGqTCPqZBRbPHAS/vG1zSXnKqnS2ch/A==", "optional": true }, "@lmdb/lmdb-darwin-x64": { - "version": "2.5.3", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-x64/-/lmdb-darwin-x64-2.5.3.tgz", - "integrity": "sha512-337dNzh5yCdNCTk8kPfoU7jR3otibSlPDGW0vKZT97rKnQMb9tNdto3RtWoGPsQ8hKmlRZpojOJtmwjncq1MoA==", + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-x64/-/lmdb-darwin-x64-2.5.2.tgz", + "integrity": "sha512-KvPH56KRLLx4KSfKBx0m1r7GGGUMXm0jrKmNE7plbHlesZMuPJICtn07HYgQhj1LNsK7Yqwuvnqh1QxhJnF1EA==", "optional": true }, "@lmdb/lmdb-linux-arm": { - "version": "2.5.3", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm/-/lmdb-linux-arm-2.5.3.tgz", - "integrity": "sha512-mU2HFJDGwECkoD9dHQEfeTG5mp8hNS2BCfwoiOpVPMeapjYpQz9Uw3FkUjRZ4dGHWKbin40oWHuL0bk2bCx+Sg==", + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm/-/lmdb-linux-arm-2.5.2.tgz", + "integrity": "sha512-5kQAP21hAkfW5Bl+e0P57dV4dGYnkNIpR7f/GAh6QHlgXx+vp/teVj4PGRZaKAvt0GX6++N6hF8NnGElLDuIDw==", "optional": true }, "@lmdb/lmdb-linux-arm64": { - "version": "2.5.3", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm64/-/lmdb-linux-arm64-2.5.3.tgz", - "integrity": "sha512-VJw60Mdgb4n+L0fO1PqfB0C7TyEQolJAC8qpqvG3JoQwvyOv6LH7Ib/WE3wxEW9nuHmVz9jkK7lk5HfWWgoO1Q==", + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm64/-/lmdb-linux-arm64-2.5.2.tgz", + "integrity": "sha512-aLl89VHL/wjhievEOlPocoefUyWdvzVrcQ/MHQYZm2JfV1jUsrbr/ZfkPPUFvZBf+VSE+Q0clWs9l29PCX1hTQ==", "optional": true }, "@lmdb/lmdb-linux-x64": { - "version": "2.5.3", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-x64/-/lmdb-linux-x64-2.5.3.tgz", - "integrity": "sha512-qaReO5aV8griBDsBr8uBF/faO3ieGjY1RY4p8JvTL6Mu1ylLrTVvOONqKFlNaCwrmUjWw5jnf7VafxDAeQHTow==", + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-x64/-/lmdb-linux-x64-2.5.2.tgz", + "integrity": "sha512-xUdUfwDJLGjOUPH3BuPBt0NlIrR7f/QHKgu3GZIXswMMIihAekj2i97oI0iWG5Bok/b+OBjHPfa8IU9velnP/Q==", "optional": true }, "@lmdb/lmdb-win32-x64": { - "version": "2.5.3", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-win32-x64/-/lmdb-win32-x64-2.5.3.tgz", - "integrity": "sha512-cK+Elf3RjEzrm3SerAhrFWL5oQAsZSJ/LmjL1joIpTfEP1etJJ9CTRvdaV6XLYAxaEkfdhk/9hOvHLbR9yIhCA==", + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-win32-x64/-/lmdb-win32-x64-2.5.2.tgz", + "integrity": "sha512-zrBczSbXKxEyK2ijtbRdICDygRqWSRPpZMN5dD1T8VMEW5RIhIbwFWw2phDRXuBQdVDpSjalCIUMWMV2h3JaZA==", "optional": true }, "@mdx-js/mdx": { @@ -3220,43 +3000,42 @@ } }, "@parcel/bundler-default": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/bundler-default/-/bundler-default-2.6.0.tgz", - "integrity": "sha512-AplEdGm/odV7yGmoeOnglxnY31WlNB5EqGLFGxkgs7uwDaTWoTX/9SWPG6xfvirhjDpms8sLSiVuBdFRCCLtNA==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/bundler-default/-/bundler-default-2.6.2.tgz", + "integrity": "sha512-XIa3had/MIaTGgRFkHApXwytYs77k4geaNcmlb6nzmAABcYjW1CLYh83Zt0AbzLFsDT9ZcRY3u2UjhNf6efSaw==", "requires": { - "@parcel/diagnostic": "2.6.0", - "@parcel/hash": "2.6.0", - "@parcel/plugin": "2.6.0", - "@parcel/utils": "2.6.0", + "@parcel/diagnostic": "2.6.2", + "@parcel/hash": "2.6.2", + "@parcel/plugin": "2.6.2", + "@parcel/utils": "2.6.2", "nullthrows": "^1.1.1" } }, "@parcel/cache": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/cache/-/cache-2.6.0.tgz", - "integrity": "sha512-4vbD5uSuf+kRnrFesKhpn0AKnOw8u2UlvCyrplYmp1g9bNAkIooC/nDGdmkb/9SviPEbni9PEanQEHDU2+slpA==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/cache/-/cache-2.6.2.tgz", + "integrity": "sha512-hhJ6AsEGybeQZd9c/GYqfcKTgZKQXu3Xih6TlnP3gdR3KZoJOnb40ovHD1yYg4COvfcXThKP1cVJ18J6rcv3IA==", "requires": { - "@parcel/fs": "2.6.0", - "@parcel/logger": "2.6.0", - "@parcel/utils": "2.6.0", - "lmdb": "2.3.10" + "@parcel/fs": "2.6.2", + "@parcel/logger": "2.6.2", + "@parcel/utils": "2.6.2", + "lmdb": "2.5.2" }, "dependencies": { "lmdb": { - "version": "2.3.10", - "resolved": "https://registry.npmjs.org/lmdb/-/lmdb-2.3.10.tgz", - "integrity": "sha512-GtH+nStn9V59CfYeQ5ddx6YTfuFCmu86UJojIjJAweG+/Fm0PDknuk3ovgYDtY/foMeMdZa8/P7oSljW/d5UPw==", - "requires": { - "lmdb-darwin-arm64": "2.3.10", - "lmdb-darwin-x64": "2.3.10", - "lmdb-linux-arm": "2.3.10", - "lmdb-linux-arm64": "2.3.10", - "lmdb-linux-x64": "2.3.10", - "lmdb-win32-x64": "2.3.10", + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/lmdb/-/lmdb-2.5.2.tgz", + "integrity": "sha512-V5V5Xa2Hp9i2XsbDALkBTeHXnBXh/lEmk9p22zdr7jtuOIY9TGhjK6vAvTpOOx9IKU4hJkRWZxn/HsvR1ELLtA==", + "requires": { + "@lmdb/lmdb-darwin-arm64": "2.5.2", + "@lmdb/lmdb-darwin-x64": "2.5.2", + "@lmdb/lmdb-linux-arm": "2.5.2", + "@lmdb/lmdb-linux-arm64": "2.5.2", + "@lmdb/lmdb-linux-x64": "2.5.2", + "@lmdb/lmdb-win32-x64": "2.5.2", "msgpackr": "^1.5.4", - "nan": "^2.14.2", "node-addon-api": "^4.3.0", - "node-gyp-build-optional-packages": "^4.3.2", + "node-gyp-build-optional-packages": "5.0.3", "ordered-binary": "^1.2.4", "weak-lru-cache": "^1.2.2" } @@ -3269,40 +3048,40 @@ } }, "@parcel/codeframe": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/codeframe/-/codeframe-2.6.0.tgz", - "integrity": "sha512-yXXxrO9yyedHKpTwC+Af0+vPmQm+A9xeEhkt4f0yVg1n4t4yUIxYlTedzbM8ygZEEBtkXU9jJ+PkgXbfMf0dqw==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/codeframe/-/codeframe-2.6.2.tgz", + "integrity": "sha512-oFlHr6HCaYYsB4SHkU+gn9DKtbzvv3/4NdwMX0/6NAKyYVI7inEsXyPGw2Bbd2ZCFatW9QJZUETF0etvh5AEfQ==", "requires": { "chalk": "^4.1.0" } }, "@parcel/compressor-raw": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/compressor-raw/-/compressor-raw-2.6.0.tgz", - "integrity": "sha512-rtMU2mGl88bic6Xbq1u5L49bMK4s5185b0k7h3JRdS6/0rR+Xp4k/o9Wog+hHjK/s82z1eF9WmET779ZpIDIQQ==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/compressor-raw/-/compressor-raw-2.6.2.tgz", + "integrity": "sha512-P3c8jjV5HVs+fNDjhvq7PtHXNm687nit1iwTS5VAt+ScXKhKBhoIJ56q+9opcw0jnXVjAAgZqcRZ50oAJBGdKw==", "requires": { - "@parcel/plugin": "2.6.0" + "@parcel/plugin": "2.6.2" } }, "@parcel/core": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/core/-/core-2.6.0.tgz", - "integrity": "sha512-8OOWbPuxpFydpwNyKoz6d3e3O4DmxNYmMw4DXwrPSj/jyg7oa+SDtMT0/VXEhujE0HYkQPCHt4npRajkSuf99A==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/core/-/core-2.6.2.tgz", + "integrity": "sha512-JlKS3Ux0ngmdooSBbzQLShHJdsapF9E7TGMo1hFaHRquZip/DaqzvysYrgMJlDuCoLArciq5ei7ZKzGeK9zexA==", "requires": { "@mischnic/json-sourcemap": "^0.1.0", - "@parcel/cache": "2.6.0", - "@parcel/diagnostic": "2.6.0", - "@parcel/events": "2.6.0", - "@parcel/fs": "2.6.0", - "@parcel/graph": "2.6.0", - "@parcel/hash": "2.6.0", - "@parcel/logger": "2.6.0", - "@parcel/package-manager": "2.6.0", - "@parcel/plugin": "2.6.0", + "@parcel/cache": "2.6.2", + "@parcel/diagnostic": "2.6.2", + "@parcel/events": "2.6.2", + "@parcel/fs": "2.6.2", + "@parcel/graph": "2.6.2", + "@parcel/hash": "2.6.2", + "@parcel/logger": "2.6.2", + "@parcel/package-manager": "2.6.2", + "@parcel/plugin": "2.6.2", "@parcel/source-map": "^2.0.0", - "@parcel/types": "2.6.0", - "@parcel/utils": "2.6.0", - "@parcel/workers": "2.6.0", + "@parcel/types": "2.6.2", + "@parcel/utils": "2.6.2", + "@parcel/workers": "2.6.2", "abortcontroller-polyfill": "^1.1.9", "base-x": "^3.0.8", "browserslist": "^4.6.6", @@ -3328,118 +3107,126 @@ } }, "@parcel/diagnostic": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/diagnostic/-/diagnostic-2.6.0.tgz", - "integrity": "sha512-+p8gC2FKxSI2veD7SoaNlP572v4kw+nafCQEPDtJuzYYRqywYUGncch25dkpgNApB4W4cXVkZu3ZbtIpCAmjQQ==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/diagnostic/-/diagnostic-2.6.2.tgz", + "integrity": "sha512-3ODSBkKVihENU763z1/1DhGAWFhYWRxOCOShC72KXp+GFnSgGiBsxclu8NBa/N948Rzp8lqQI8U1nLcKkh0O/w==", "requires": { "@mischnic/json-sourcemap": "^0.1.0", "nullthrows": "^1.1.1" } }, "@parcel/events": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/events/-/events-2.6.0.tgz", - "integrity": "sha512-2WaKtBs4iYwS88j4zRdyTJTgh8iuY4E32FMmjzzbheqETs6I05gWuPReGukJYxk8vc0Ir7tbzp12oAfpgo0Y+g==" + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/events/-/events-2.6.2.tgz", + "integrity": "sha512-IaCjOeA5ercdFVi1EZOmUHhGfIysmCUgc2Th9hMugSFO0I3GzRsBcAdP6XPfWm+TV6sQ/qZRfdk/drUxoAupnw==" }, "@parcel/fs": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/fs/-/fs-2.6.0.tgz", - "integrity": "sha512-6vxtx5Zy6MvDvH1EPx9JxjKGF03bR7VE1dUf4HLeX2D8YmpL5hkHJnlRCFdcH08rzOVwaJLzg1QNtblWJXQ9CA==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/fs/-/fs-2.6.2.tgz", + "integrity": "sha512-mIhqdF3tjgeoIGqW7Nc/xfM2ClID7o8livwUe5lpQEP+ZaIBiMigXs6ckv3WToCACK+3uylrSD2A/HmlhrxMqQ==", "requires": { - "@parcel/fs-search": "2.6.0", - "@parcel/types": "2.6.0", - "@parcel/utils": "2.6.0", + "@parcel/fs-search": "2.6.2", + "@parcel/types": "2.6.2", + "@parcel/utils": "2.6.2", "@parcel/watcher": "^2.0.0", - "@parcel/workers": "2.6.0" + "@parcel/workers": "2.6.2" } }, "@parcel/fs-search": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/fs-search/-/fs-search-2.6.0.tgz", - "integrity": "sha512-1nXzM3H/cA4kzLKvDBvwmNisKCdRqlgkLXh+OR1Zu28Kn4W34KuJMcHWW8cC+WIuuKqDh5oo2WPsC5y65GXBKQ==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/fs-search/-/fs-search-2.6.2.tgz", + "integrity": "sha512-4STid1zqtGnmGjHD/2TG2g/zPDiCTtE3IAS24QYH3eiUAz2uoKGgEqd2tZbZ2yI96jtCuIhC1bzVu8Hbykls7w==", "requires": { "detect-libc": "^1.0.3" } }, "@parcel/graph": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/graph/-/graph-2.6.0.tgz", - "integrity": "sha512-rxrAzWm6rwbCRPbu0Z+zwMscpG8omffODniVWPlX2G0jgQGpjKsutBQ6RMfFIcfaQ4MzL3pIQOTf8bkjQOPsbg==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/graph/-/graph-2.6.2.tgz", + "integrity": "sha512-DPH4G/RBFJWayIN2fnhDXqhUw75n7k15YsGzdDKiXuwwz4wMOjoL4cyrI6zOf1SIyh3guRmeTYJ4jjPzwrLYww==", "requires": { - "@parcel/utils": "2.6.0", + "@parcel/utils": "2.6.2", "nullthrows": "^1.1.1" } }, "@parcel/hash": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/hash/-/hash-2.6.0.tgz", - "integrity": "sha512-YugWqhLxqK80Lo++3B3Kr5UPCHOdS8iI2zJ1jkzUeH9v6WUzbwWOnmPf6lN2S5m1BrIFFJd8Jc+CbEXWi8zoJA==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/hash/-/hash-2.6.2.tgz", + "integrity": "sha512-tFB+cJU1Wqag6WyJgsmx3nx+xhmjcNZqtWh/MtK1lHNnZdDRk6bjr7SapnygBwruz+SmSt5bbdVThcpk2dRCcA==", "requires": { "detect-libc": "^1.0.3", "xxhash-wasm": "^0.4.2" } }, "@parcel/logger": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/logger/-/logger-2.6.0.tgz", - "integrity": "sha512-J1/7kPfSGBvMKSZdi0WCNuN0fIeiWxifnDGn7W/K8KhD422YwFJA8N046ps8nkDOPIXf1osnIECNp4GIR9oSYw==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/logger/-/logger-2.6.2.tgz", + "integrity": "sha512-Sz5YGCj1DbEiX0/G8Uw97LLZ0uEK+qtWcRAkHNpJpeMiSqDiRNevxXltz42EcLo+oCh4d4wyiVzwi9mNwzhS/Q==", "requires": { - "@parcel/diagnostic": "2.6.0", - "@parcel/events": "2.6.0" + "@parcel/diagnostic": "2.6.2", + "@parcel/events": "2.6.2" } }, "@parcel/markdown-ansi": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/markdown-ansi/-/markdown-ansi-2.6.0.tgz", - "integrity": "sha512-fyjkrJQQSfKTUFTTasdZ6WrAkDoQ2+DYDjj+3p+RncYyrIa9zArKx4IiRiipsvNdtMvP0/hTdK8F3BOJ3KSU/g==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/markdown-ansi/-/markdown-ansi-2.6.2.tgz", + "integrity": "sha512-N/h9J4eibhc+B+krzvPMzFUWL37GudBIZBa7XSLkcuH6MnYYfh6rrMvhIyyESwk6VkcZNVzAeZrGQqxEs0dHDQ==", "requires": { "chalk": "^4.1.0" } }, "@parcel/namer-default": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/namer-default/-/namer-default-2.6.0.tgz", - "integrity": "sha512-r8O12r7ozJBctnFxVdXbf/fK97GIdNj3hiiUNWlXEmED9sw6ZPcChaLcfot0/443g8i87JDmSTKJ8js2tuz5XA==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/namer-default/-/namer-default-2.6.2.tgz", + "integrity": "sha512-mp7bx/BQaIuohmZP0uE+gAmDBzzH0Yu8F4yCtE611lc6i0mou+nWRhzyKLNC/ieuI8DB3BFh2QQKeTxJn4W0qg==", "requires": { - "@parcel/diagnostic": "2.6.0", - "@parcel/plugin": "2.6.0", + "@parcel/diagnostic": "2.6.2", + "@parcel/plugin": "2.6.2", "nullthrows": "^1.1.1" } }, "@parcel/node-resolver-core": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/node-resolver-core/-/node-resolver-core-2.6.0.tgz", - "integrity": "sha512-AJDj5DZbB58plv0li8bdVSD+zpnkHE36Om3TYyNn1jgXXwgBM64Er/9p8yQn356jBqTQMh7zlJqvbdIyOiMeMg==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/node-resolver-core/-/node-resolver-core-2.6.2.tgz", + "integrity": "sha512-4b2L5QRYlTybvv3+TIRtwg4PPJXy+cRShCBa8eu1K0Fj297Afe8MOZrcVV+RIr2KPMIRXcIJoqDmOhyci/DynA==", "requires": { - "@parcel/diagnostic": "2.6.0", - "@parcel/utils": "2.6.0", - "nullthrows": "^1.1.1" + "@parcel/diagnostic": "2.6.2", + "@parcel/utils": "2.6.2", + "nullthrows": "^1.1.1", + "semver": "^5.7.1" + }, + "dependencies": { + "semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==" + } } }, "@parcel/optimizer-terser": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/optimizer-terser/-/optimizer-terser-2.6.0.tgz", - "integrity": "sha512-oezRt6Lz/QqcVDXyMfFjzQc7n0ThJowLJ4Lyhu8rMh0ZJYzc4UCFCw/19d4nRnzE+Qg0vj3mQCpdkA9/64E44g==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/optimizer-terser/-/optimizer-terser-2.6.2.tgz", + "integrity": "sha512-ZSEVQ3G3zOiVPeHvH+BrHegZybrQj9kWQAaAA92leSqbvf6UaX4xqXbGRg2OttNFtbGYBzIl28Zm4t2SLeUIuA==", "requires": { - "@parcel/diagnostic": "2.6.0", - "@parcel/plugin": "2.6.0", + "@parcel/diagnostic": "2.6.2", + "@parcel/plugin": "2.6.2", "@parcel/source-map": "^2.0.0", - "@parcel/utils": "2.6.0", + "@parcel/utils": "2.6.2", "nullthrows": "^1.1.1", "terser": "^5.2.0" } }, "@parcel/package-manager": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/package-manager/-/package-manager-2.6.0.tgz", - "integrity": "sha512-AqFfdkbOw51q/3ia2mIsFTmrpYEyUb3k+2uYC5GsLMz3go6OGn7/Crz0lZLSclv5EtwpRg3TWr9yL7RekVN/Uw==", - "requires": { - "@parcel/diagnostic": "2.6.0", - "@parcel/fs": "2.6.0", - "@parcel/logger": "2.6.0", - "@parcel/types": "2.6.0", - "@parcel/utils": "2.6.0", - "@parcel/workers": "2.6.0", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/package-manager/-/package-manager-2.6.2.tgz", + "integrity": "sha512-xGMqTgnwTE3rgzYwUZMKxR8fzmP5iSYz/gj2H8FR3pEmwh/8xCMtNjTSth+hPVGuqgRZ6JxwpfdY/fXdZ61ViQ==", + "requires": { + "@parcel/diagnostic": "2.6.2", + "@parcel/fs": "2.6.2", + "@parcel/logger": "2.6.2", + "@parcel/types": "2.6.2", + "@parcel/utils": "2.6.2", + "@parcel/workers": "2.6.2", "semver": "^5.7.1" }, "dependencies": { @@ -3451,15 +3238,15 @@ } }, "@parcel/packager-js": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/packager-js/-/packager-js-2.6.0.tgz", - "integrity": "sha512-Uz3pqIFchFfKszWnNGDgIwM1uwHHJp7Dts6VzS9lf/2RbRgZT0fmce+NPgnVO5MMKBHzdvm32ShT6gFAABF5Vw==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/packager-js/-/packager-js-2.6.2.tgz", + "integrity": "sha512-fm5rKWtaExR0W+UEKWivXNPysRFxuBCdskdxDByb1J1JeGMvp7dJElbi8oXDAQM4MnM5EyG7cg47SlMZNTLm4A==", "requires": { - "@parcel/diagnostic": "2.6.0", - "@parcel/hash": "2.6.0", - "@parcel/plugin": "2.6.0", + "@parcel/diagnostic": "2.6.2", + "@parcel/hash": "2.6.2", + "@parcel/plugin": "2.6.2", "@parcel/source-map": "^2.0.0", - "@parcel/utils": "2.6.0", + "@parcel/utils": "2.6.2", "globals": "^13.2.0", "nullthrows": "^1.1.1" }, @@ -3475,76 +3262,76 @@ } }, "@parcel/packager-raw": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/packager-raw/-/packager-raw-2.6.0.tgz", - "integrity": "sha512-ktT6Qc/GgCq8H1+6y+AXufVzQj1s6KRoKf83qswCD0iY3MwCbJoEfc3IsB4K64FpHIL5Eu0z54IId+INvGbOYA==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/packager-raw/-/packager-raw-2.6.2.tgz", + "integrity": "sha512-Rl3ZkMtMjb+LEvRowijDD8fibUAS6rWK0/vZQMk9cDNYCP2gCpZayLk0HZIGxneeTbosf/0sbngHq4VeRQOnQA==", "requires": { - "@parcel/plugin": "2.6.0" + "@parcel/plugin": "2.6.2" } }, "@parcel/plugin": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/plugin/-/plugin-2.6.0.tgz", - "integrity": "sha512-LzOaiK8R6eFEoov1cb3/W+o0XvXdI/VbDhMDl0L0II+/56M0UeayYtFP5QGTDn/fZqVlYfzPCtt3EMwdG7/dow==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/plugin/-/plugin-2.6.2.tgz", + "integrity": "sha512-wbbWsM23Pr+8xtLSvf+UopXdVYlpKCCx6PuuZaZcKo+9IcDCWoGXD4M8Kkz14qBmkFn5uM00mULUqmVdSibB2w==", "requires": { - "@parcel/types": "2.6.0" + "@parcel/types": "2.6.2" } }, "@parcel/reporter-dev-server": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/reporter-dev-server/-/reporter-dev-server-2.6.0.tgz", - "integrity": "sha512-VvygsCA+uzWyijIV8zqU1gFyhAWknuaY4KIWhV4kCT8afRJwsLSwt/tpdaKDPuPU45h3tTsUdXH1wjaIk+dGeQ==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/reporter-dev-server/-/reporter-dev-server-2.6.2.tgz", + "integrity": "sha512-5QtL3ETMFL161jehlIK6rjBM+Pqk5cMhr60s9yLYqE1GY4M4gMj+Act+FXViyM6gmMA38cPxDvUsxTKBYXpFCw==", "requires": { - "@parcel/plugin": "2.6.0", - "@parcel/utils": "2.6.0" + "@parcel/plugin": "2.6.2", + "@parcel/utils": "2.6.2" } }, "@parcel/resolver-default": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/resolver-default/-/resolver-default-2.6.0.tgz", - "integrity": "sha512-ATk9wXvy5GOHAqyHbnCnU11fUPTtf8dLjpgVqL5XylwugZnyBXbynoTWX4w8h6mffkVtdfmzTJx/o4Lresz9sA==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/resolver-default/-/resolver-default-2.6.2.tgz", + "integrity": "sha512-Lo5sWb5QkjWvdBr+TdmAF6Mszb/sMldBBatc1osQTkHXCy679VMH+lfyiWxHbwK+F1pmdMeBJpYcMxvrgT8EsA==", "requires": { - "@parcel/node-resolver-core": "2.6.0", - "@parcel/plugin": "2.6.0" + "@parcel/node-resolver-core": "2.6.2", + "@parcel/plugin": "2.6.2" } }, "@parcel/runtime-browser-hmr": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/runtime-browser-hmr/-/runtime-browser-hmr-2.6.0.tgz", - "integrity": "sha512-90xvv/10cFML5dAhClBEJZ/ExiBQVPqQsZcvRmVZmc5mpZVJMKattWCQrd7pAf7FDYl4JAcvsK3DTwvRT/oLNA==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/runtime-browser-hmr/-/runtime-browser-hmr-2.6.2.tgz", + "integrity": "sha512-M4X0+7dyfdI6smwGUGjGXb8Ns3HX7ZrTemyq4Gc7zp7P/5gWjR8i9eISz46sXmF9bf01a/4dKZpoCC9un1pH1g==", "requires": { - "@parcel/plugin": "2.6.0", - "@parcel/utils": "2.6.0" + "@parcel/plugin": "2.6.2", + "@parcel/utils": "2.6.2" } }, "@parcel/runtime-js": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/runtime-js/-/runtime-js-2.6.0.tgz", - "integrity": "sha512-R4tJAIT/SX7VBQ+f7WmeekREQzzLsmgP1j486uKhQNyYrpvsN0HnRbg5aqvZjEjkEmSeJR0mOlWtMK5/m+0yTA==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/runtime-js/-/runtime-js-2.6.2.tgz", + "integrity": "sha512-0S3JFwgvs6FmEx2dHta9R0Sfu8vCnFAm4i7Y4efGHtAcTrF2CHjyiz4/hG+RQGJ70eoWW463Q+8qt6EKbkaOBQ==", "requires": { - "@parcel/plugin": "2.6.0", - "@parcel/utils": "2.6.0", + "@parcel/plugin": "2.6.2", + "@parcel/utils": "2.6.2", "nullthrows": "^1.1.1" } }, "@parcel/runtime-react-refresh": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/runtime-react-refresh/-/runtime-react-refresh-2.6.0.tgz", - "integrity": "sha512-2sRd13gc2EbMV/O5n2NPVGGhKBasb1fDTXGEY8y7qi9xDKc+ewok/D83T+w243FhCPS9Pf3ur5GkbPlrJGcenQ==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/runtime-react-refresh/-/runtime-react-refresh-2.6.2.tgz", + "integrity": "sha512-DJTm5D/tUAGZm0o3ndDOPbKwdYrobuvm4jvkPq31LdEUqVvyuzBAMlqQFHc1yJEJDRRWOIQwQP9Y0NQbJmXFfg==", "requires": { - "@parcel/plugin": "2.6.0", - "@parcel/utils": "2.6.0", + "@parcel/plugin": "2.6.2", + "@parcel/utils": "2.6.2", "react-error-overlay": "6.0.9", "react-refresh": "^0.9.0" } }, "@parcel/runtime-service-worker": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/runtime-service-worker/-/runtime-service-worker-2.6.0.tgz", - "integrity": "sha512-nVlknGw5J5Bkd1Wr1TbyWHhUd9CmVVebaRg/lpfVKYhAuE/2r+3N0+J8qbEIgtTRcHaSV7wTNpg4weSWq46VeA==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/runtime-service-worker/-/runtime-service-worker-2.6.2.tgz", + "integrity": "sha512-9jV+RwVEeDUI5+eLy8j1tapTNoHHGOY2+JUprcObQkQ8fux7KltQBJWFhpkUdGtz5LTCNXtj9tdycFtS5lmSzg==", "requires": { - "@parcel/plugin": "2.6.0", - "@parcel/utils": "2.6.0", + "@parcel/plugin": "2.6.2", + "@parcel/utils": "2.6.2", "nullthrows": "^1.1.1" } }, @@ -3557,16 +3344,16 @@ } }, "@parcel/transformer-js": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/transformer-js/-/transformer-js-2.6.0.tgz", - "integrity": "sha512-4v2r3EVdMKowBziVBW9HZqvAv88HaeiezkWyMX4wAfplo9jBtWEp99KEQINzSEdbXROR81M9oJjlGF5+yoVr/w==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/transformer-js/-/transformer-js-2.6.2.tgz", + "integrity": "sha512-uhXAMTjE/Q61amflV8qVpb73mj+mIdXIMH0cSks1/gDIAxcgIvWvrE14P4TvY6zJ1q1iRJRIRUN6cFSXqjjLSA==", "requires": { - "@parcel/diagnostic": "2.6.0", - "@parcel/plugin": "2.6.0", + "@parcel/diagnostic": "2.6.2", + "@parcel/plugin": "2.6.2", "@parcel/source-map": "^2.0.0", - "@parcel/utils": "2.6.0", - "@parcel/workers": "2.6.0", - "@swc/helpers": "^0.3.15", + "@parcel/utils": "2.6.2", + "@parcel/workers": "2.6.2", + "@swc/helpers": "^0.4.2", "browserslist": "^4.6.6", "detect-libc": "^1.0.3", "nullthrows": "^1.1.1", @@ -3582,56 +3369,56 @@ } }, "@parcel/transformer-json": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/transformer-json/-/transformer-json-2.6.0.tgz", - "integrity": "sha512-zb+TQAdHWdXijKcFhLe+5KN1O0IzXwW1gJhPr8DJEA3qhPaCsncsw5RCVjQlP3a7NXr1mMm1eMtO6bhIMqbXeA==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/transformer-json/-/transformer-json-2.6.2.tgz", + "integrity": "sha512-QGcIIvbPF/u10ihYvQhxXqb2QMXWSzcBxJrOSIXIl74TUGrWX05D5LmjDA/rzm/n/kvRnBkFNP60R/smYb8x+Q==", "requires": { - "@parcel/plugin": "2.6.0", + "@parcel/plugin": "2.6.2", "json5": "^2.2.0" } }, "@parcel/transformer-raw": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/transformer-raw/-/transformer-raw-2.6.0.tgz", - "integrity": "sha512-QDirlWCS/qy0DQ3WvDIAnFP52n1TJW/uWH+4PGMNnX4/M3/2UchY8xp9CN0tx4NQ4g09S8o3gLlHvNxQqZxFrQ==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/transformer-raw/-/transformer-raw-2.6.2.tgz", + "integrity": "sha512-CsofYq5g9Zj/FNmhya2R7Xp3WHlzz34mEdN69bds3azRYHCrl/TS33xXcp/9J+74SEIY1Ufh552o1cM3fnSrDQ==", "requires": { - "@parcel/plugin": "2.6.0" + "@parcel/plugin": "2.6.2" } }, "@parcel/transformer-react-refresh-wrap": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/transformer-react-refresh-wrap/-/transformer-react-refresh-wrap-2.6.0.tgz", - "integrity": "sha512-G34orfvLDUTumuerqNmA8T8NUHk+R0jwUjbVPO7gpB6VCVQ5ocTABdE9vN9Uu/cUsHij40TUFwqK4R9TFEBIEQ==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/transformer-react-refresh-wrap/-/transformer-react-refresh-wrap-2.6.2.tgz", + "integrity": "sha512-7EE68ebISz+oAHm64ZJbz6uJQT4aOoB8QiK3PvuY6+RsP7aK4/FEHGM1afW49KrZbP4lWjloEkcJm/88DfBiGw==", "requires": { - "@parcel/plugin": "2.6.0", - "@parcel/utils": "2.6.0", + "@parcel/plugin": "2.6.2", + "@parcel/utils": "2.6.2", "react-refresh": "^0.9.0" } }, "@parcel/types": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/types/-/types-2.6.0.tgz", - "integrity": "sha512-lAMYvOBfNEJMsPJ+plbB50305o0TwNrY1xX5RRIWBqwOa6bYmbW1ZljUk1tQvnkpIE4eAHQwnPR5Z2XWg18wGQ==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/types/-/types-2.6.2.tgz", + "integrity": "sha512-MV8BFpCIs2jMUvK2RHqzkoiuOQ//JIbrD1zocA2YRW3zuPL/iABvbAABJoXpoPCKikVWOoCWASgBfWQo26VvJQ==", "requires": { - "@parcel/cache": "2.6.0", - "@parcel/diagnostic": "2.6.0", - "@parcel/fs": "2.6.0", - "@parcel/package-manager": "2.6.0", + "@parcel/cache": "2.6.2", + "@parcel/diagnostic": "2.6.2", + "@parcel/fs": "2.6.2", + "@parcel/package-manager": "2.6.2", "@parcel/source-map": "^2.0.0", - "@parcel/workers": "2.6.0", + "@parcel/workers": "2.6.2", "utility-types": "^3.10.0" } }, "@parcel/utils": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/utils/-/utils-2.6.0.tgz", - "integrity": "sha512-ElXz+QHtT1JQIucbQJBk7SzAGoOlBp4yodEQVvTKS7GA+hEGrSP/cmibl6qm29Rjtd0zgQsdd+2XmP3xvP2gQQ==", - "requires": { - "@parcel/codeframe": "2.6.0", - "@parcel/diagnostic": "2.6.0", - "@parcel/hash": "2.6.0", - "@parcel/logger": "2.6.0", - "@parcel/markdown-ansi": "2.6.0", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/utils/-/utils-2.6.2.tgz", + "integrity": "sha512-Ug7hpRxjgbY5AopW55nY7MmGMVmwmN+ihfCmxJkBUoESTG/3iq8uME7GjyOgW5DkQc2K7q62i8y8N0wCJT1u4Q==", + "requires": { + "@parcel/codeframe": "2.6.2", + "@parcel/diagnostic": "2.6.2", + "@parcel/hash": "2.6.2", + "@parcel/logger": "2.6.2", + "@parcel/markdown-ansi": "2.6.2", "@parcel/source-map": "^2.0.0", "chalk": "^4.1.0" } @@ -3646,14 +3433,14 @@ } }, "@parcel/workers": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/workers/-/workers-2.6.0.tgz", - "integrity": "sha512-3tcI2LF5fd/WZtSnSjyWdDE+G+FitdNrRgSObzSp+axHKMAM23sO0z7KY8s2SYCF40msdYbFUW8eI6JlYNJoWQ==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/workers/-/workers-2.6.2.tgz", + "integrity": "sha512-wBgUjJQm+lDd12fPRUmk09+ujTA9DgwPdqylSFK0OtI/yT6A+2kArUqjp8IwWo2tCJXoMzXBne2XQIWKqMiN4Q==", "requires": { - "@parcel/diagnostic": "2.6.0", - "@parcel/logger": "2.6.0", - "@parcel/types": "2.6.0", - "@parcel/utils": "2.6.0", + "@parcel/diagnostic": "2.6.2", + "@parcel/logger": "2.6.2", + "@parcel/types": "2.6.2", + "@parcel/utils": "2.6.2", "chrome-trace-event": "^1.0.2", "nullthrows": "^1.1.1" } @@ -3868,9 +3655,9 @@ } }, "@swc/helpers": { - "version": "0.3.17", - "resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.3.17.tgz", - "integrity": "sha512-tb7Iu+oZ+zWJZ3HJqwx8oNwSDIU440hmVMDPhpACWQWnrZHK99Bxs70gT1L2dnr5Hg50ZRWEFkQCAnOVVV0z1Q==", + "version": "0.4.3", + "resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.4.3.tgz", + "integrity": "sha512-6JrF+fdUK2zbGpJIlN7G3v966PQjyx/dPt1T9km2wj+EUBqgrxCk3uX4Kct16MIm9gGxfKRcfax2hVf5jvlTzA==", "requires": { "tslib": "^2.4.0" } @@ -4824,14 +4611,14 @@ } }, "caniuse-lite": { - "version": "1.0.30001366", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001366.tgz", - "integrity": "sha512-yy7XLWCubDobokgzudpkKux8e0UOOnLHE6mlNJBzT3lZJz6s5atSEzjoL+fsCPkI0G8MP5uVdDx1ur/fXEWkZA==" + "version": "1.0.30001367", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001367.tgz", + "integrity": "sha512-XDgbeOHfifWV3GEES2B8rtsrADx4Jf+juKX2SICJcaUhjYBO3bR96kvEIHa15VU6ohtOhBZuPGGYGbXMRn0NCw==" }, "electron-to-chromium": { - "version": "1.4.188", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.188.tgz", - "integrity": "sha512-Zpa1+E+BVmD/orkyz1Z2dAT1XNUuVAHB3GrogfyY66dXN0ZWSsygI8+u6QTDai1ZayLcATDJpcv2Z2AZjEcr1A==" + "version": "1.4.194", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.194.tgz", + "integrity": "sha512-ola5UH0xAP1oYY0FFUsPvwtucEzCQHucXnT7PQ1zjHJMccZhCDktEugI++JUR3YuIs7Ff7afz+OVEhVAIMhLAQ==" } } }, @@ -4982,14 +4769,50 @@ } }, "babel-plugin-remove-graphql-queries": { - "version": "4.18.1", - "resolved": "https://registry.npmjs.org/babel-plugin-remove-graphql-queries/-/babel-plugin-remove-graphql-queries-4.18.1.tgz", - "integrity": "sha512-2I7qsm3pnyvrS6/Q9YuHK1SpfQLmrgYH/AjpnWpnLHee6SiVb5Te89iphhpBdycpBRVGWh04ram9+z/1rMaRYQ==", + "version": "4.19.0", + "resolved": "https://registry.npmjs.org/babel-plugin-remove-graphql-queries/-/babel-plugin-remove-graphql-queries-4.19.0.tgz", + "integrity": "sha512-VbxC7aZxdqQA0YiAcTD/djIW+6PP/JVODlRmCiqDyTbtI0zhE/Z6je1maCmC6J2LLBsKxhWT3UYTjRfLofK7sQ==", "requires": { "@babel/runtime": "^7.15.4", - "gatsby-core-utils": "^3.18.1" + "gatsby-core-utils": "^3.19.0" }, "dependencies": { + "@lmdb/lmdb-darwin-arm64": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-arm64/-/lmdb-darwin-arm64-2.5.3.tgz", + "integrity": "sha512-RXwGZ/0eCqtCY8FLTM/koR60w+MXyvBUpToXiIyjOcBnC81tAlTUHrRUavCEWPI9zc9VgvpK3+cbumPyR8BSuA==", + "optional": true + }, + "@lmdb/lmdb-darwin-x64": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-x64/-/lmdb-darwin-x64-2.5.3.tgz", + "integrity": "sha512-337dNzh5yCdNCTk8kPfoU7jR3otibSlPDGW0vKZT97rKnQMb9tNdto3RtWoGPsQ8hKmlRZpojOJtmwjncq1MoA==", + "optional": true + }, + "@lmdb/lmdb-linux-arm": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm/-/lmdb-linux-arm-2.5.3.tgz", + "integrity": "sha512-mU2HFJDGwECkoD9dHQEfeTG5mp8hNS2BCfwoiOpVPMeapjYpQz9Uw3FkUjRZ4dGHWKbin40oWHuL0bk2bCx+Sg==", + "optional": true + }, + "@lmdb/lmdb-linux-arm64": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm64/-/lmdb-linux-arm64-2.5.3.tgz", + "integrity": "sha512-VJw60Mdgb4n+L0fO1PqfB0C7TyEQolJAC8qpqvG3JoQwvyOv6LH7Ib/WE3wxEW9nuHmVz9jkK7lk5HfWWgoO1Q==", + "optional": true + }, + "@lmdb/lmdb-linux-x64": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-x64/-/lmdb-linux-x64-2.5.3.tgz", + "integrity": "sha512-qaReO5aV8griBDsBr8uBF/faO3ieGjY1RY4p8JvTL6Mu1ylLrTVvOONqKFlNaCwrmUjWw5jnf7VafxDAeQHTow==", + "optional": true + }, + "@lmdb/lmdb-win32-x64": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-win32-x64/-/lmdb-win32-x64-2.5.3.tgz", + "integrity": "sha512-cK+Elf3RjEzrm3SerAhrFWL5oQAsZSJ/LmjL1joIpTfEP1etJJ9CTRvdaV6XLYAxaEkfdhk/9hOvHLbR9yIhCA==", + "optional": true + }, "fs-extra": { "version": "10.1.0", "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz", @@ -5001,9 +4824,9 @@ } }, "gatsby-core-utils": { - "version": "3.18.1", - "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.18.1.tgz", - "integrity": "sha512-sJTxRqizLxYy/tSFk0ydfqEZ3ek1So9HDVUa39F6Oi8XuPCBTFzaAooUvowKGneI5YUbdk5y4VO4ybwVUynntw==", + "version": "3.19.0", + "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.19.0.tgz", + "integrity": "sha512-cjXs9DsXkPZt+UdiLHxtq+rGMGVrcnM0KwkawlruvPchI7lqGNv9CScqlvYPxx1dBhu3zSZS26EBALMlFhyOJA==", "requires": { "@babel/runtime": "^7.15.4", "ci-info": "2.0.0", @@ -5072,11 +4895,6 @@ "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-4.3.0.tgz", "integrity": "sha512-73sE9+3UaLYYFmDsFZnqCInzPyh3MqIwZO9cw58yIqAZhONrrabrYyYe3TuIqtIiOuTXVhsGau8hcrhhwSsDIQ==" }, - "node-gyp-build-optional-packages": { - "version": "5.0.3", - "resolved": "https://registry.npmjs.org/node-gyp-build-optional-packages/-/node-gyp-build-optional-packages-5.0.3.tgz", - "integrity": "sha512-k75jcVzk5wnnc/FMxsf4udAoTEUv2jY3ycfdSd3yWu6Cnd1oee6/CfZJApyscA4FJOmdoixWwiwOyf16RzD5JA==" - }, "resolve-from": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", @@ -5134,9 +4952,9 @@ } }, "babel-preset-gatsby": { - "version": "2.18.1", - "resolved": "https://registry.npmjs.org/babel-preset-gatsby/-/babel-preset-gatsby-2.18.1.tgz", - "integrity": "sha512-oaVV6ULceMjTQKjCA06qvgfLwBNZFJxpacwNZYOJpLygmj+qYiNKDGhJ8vTw/KAIUeDPZAbPMP5P+3wMEPIWYQ==", + "version": "2.19.0", + "resolved": "https://registry.npmjs.org/babel-preset-gatsby/-/babel-preset-gatsby-2.19.0.tgz", + "integrity": "sha512-wjh4lUN1MffsnqHAfRoeOtJFGEObUPR4oxo7fyfx9pZUyqBgXvKXMEoLnwNht5HV5BzT5Xo9dkwNJl0/CNhXHw==", "requires": { "@babel/plugin-proposal-class-properties": "^7.14.0", "@babel/plugin-proposal-nullish-coalescing-operator": "^7.14.5", @@ -5151,10 +4969,46 @@ "babel-plugin-dynamic-import-node": "^2.3.3", "babel-plugin-macros": "^3.1.0", "babel-plugin-transform-react-remove-prop-types": "^0.4.24", - "gatsby-core-utils": "^3.18.1", - "gatsby-legacy-polyfills": "^2.18.0" + "gatsby-core-utils": "^3.19.0", + "gatsby-legacy-polyfills": "^2.19.0" }, "dependencies": { + "@lmdb/lmdb-darwin-arm64": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-arm64/-/lmdb-darwin-arm64-2.5.3.tgz", + "integrity": "sha512-RXwGZ/0eCqtCY8FLTM/koR60w+MXyvBUpToXiIyjOcBnC81tAlTUHrRUavCEWPI9zc9VgvpK3+cbumPyR8BSuA==", + "optional": true + }, + "@lmdb/lmdb-darwin-x64": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-x64/-/lmdb-darwin-x64-2.5.3.tgz", + "integrity": "sha512-337dNzh5yCdNCTk8kPfoU7jR3otibSlPDGW0vKZT97rKnQMb9tNdto3RtWoGPsQ8hKmlRZpojOJtmwjncq1MoA==", + "optional": true + }, + "@lmdb/lmdb-linux-arm": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm/-/lmdb-linux-arm-2.5.3.tgz", + "integrity": "sha512-mU2HFJDGwECkoD9dHQEfeTG5mp8hNS2BCfwoiOpVPMeapjYpQz9Uw3FkUjRZ4dGHWKbin40oWHuL0bk2bCx+Sg==", + "optional": true + }, + "@lmdb/lmdb-linux-arm64": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm64/-/lmdb-linux-arm64-2.5.3.tgz", + "integrity": "sha512-VJw60Mdgb4n+L0fO1PqfB0C7TyEQolJAC8qpqvG3JoQwvyOv6LH7Ib/WE3wxEW9nuHmVz9jkK7lk5HfWWgoO1Q==", + "optional": true + }, + "@lmdb/lmdb-linux-x64": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-x64/-/lmdb-linux-x64-2.5.3.tgz", + "integrity": "sha512-qaReO5aV8griBDsBr8uBF/faO3ieGjY1RY4p8JvTL6Mu1ylLrTVvOONqKFlNaCwrmUjWw5jnf7VafxDAeQHTow==", + "optional": true + }, + "@lmdb/lmdb-win32-x64": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-win32-x64/-/lmdb-win32-x64-2.5.3.tgz", + "integrity": "sha512-cK+Elf3RjEzrm3SerAhrFWL5oQAsZSJ/LmjL1joIpTfEP1etJJ9CTRvdaV6XLYAxaEkfdhk/9hOvHLbR9yIhCA==", + "optional": true + }, "babel-plugin-macros": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/babel-plugin-macros/-/babel-plugin-macros-3.1.0.tgz", @@ -5188,9 +5042,9 @@ } }, "gatsby-core-utils": { - "version": "3.18.1", - "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.18.1.tgz", - "integrity": "sha512-sJTxRqizLxYy/tSFk0ydfqEZ3ek1So9HDVUa39F6Oi8XuPCBTFzaAooUvowKGneI5YUbdk5y4VO4ybwVUynntw==", + "version": "3.19.0", + "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.19.0.tgz", + "integrity": "sha512-cjXs9DsXkPZt+UdiLHxtq+rGMGVrcnM0KwkawlruvPchI7lqGNv9CScqlvYPxx1dBhu3zSZS26EBALMlFhyOJA==", "requires": { "@babel/runtime": "^7.15.4", "ci-info": "2.0.0", @@ -5259,11 +5113,6 @@ "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-4.3.0.tgz", "integrity": "sha512-73sE9+3UaLYYFmDsFZnqCInzPyh3MqIwZO9cw58yIqAZhONrrabrYyYe3TuIqtIiOuTXVhsGau8hcrhhwSsDIQ==" }, - "node-gyp-build-optional-packages": { - "version": "5.0.3", - "resolved": "https://registry.npmjs.org/node-gyp-build-optional-packages/-/node-gyp-build-optional-packages-5.0.3.tgz", - "integrity": "sha512-k75jcVzk5wnnc/FMxsf4udAoTEUv2jY3ycfdSd3yWu6Cnd1oee6/CfZJApyscA4FJOmdoixWwiwOyf16RzD5JA==" - }, "resolve-from": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", @@ -5371,6 +5220,11 @@ "unpipe": "1.0.0" }, "dependencies": { + "bytes": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", + "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==" + }, "debug": { "version": "2.6.9", "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", @@ -5535,9 +5389,9 @@ } }, "bytes": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", - "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==" + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz", + "integrity": "sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==" }, "cache-manager": { "version": "2.11.1", @@ -6294,11 +6148,6 @@ "vary": "~1.1.2" }, "dependencies": { - "bytes": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz", - "integrity": "sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==" - }, "debug": { "version": "2.6.9", "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", @@ -6451,9 +6300,9 @@ } }, "core-js-pure": { - "version": "3.23.4", - "resolved": "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.23.4.tgz", - "integrity": "sha512-lizxkcgj3XDmi7TUBFe+bQ1vNpD5E4t76BrBWI3HdUxdw/Mq1VF4CkiHzIKyieECKtcODK2asJttoofEeUKICQ==" + "version": "3.23.5", + "resolved": "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.23.5.tgz", + "integrity": "sha512-8t78LdpKSuCq4pJYCYk8hl7XEkAX+BP16yRIwL3AanTksxuEf7CM83vRyctmiEL8NDZ3jpUcv56fk9/zG3aIuw==" }, "core-util-is": { "version": "1.0.3", @@ -6490,9 +6339,9 @@ } }, "create-gatsby": { - "version": "2.18.1", - "resolved": "https://registry.npmjs.org/create-gatsby/-/create-gatsby-2.18.1.tgz", - "integrity": "sha512-1AZioXKi4COhESSHfsb/6tpkBvyuuXHwAmMAGrcUQpbynsQxYdqonnRqnFhp80bA2cIKxgjtHzzLhyRouDonbQ==", + "version": "2.19.0", + "resolved": "https://registry.npmjs.org/create-gatsby/-/create-gatsby-2.19.0.tgz", + "integrity": "sha512-Esl/qCau3rjpnRkmo31BYOE6l72SJ/5Fq8bF6gmXOf/lnbOh51so8hgRcClfizr1nCihqQQihZn//o4DIgZKeA==", "requires": { "@babel/runtime": "^7.15.4" } @@ -7684,9 +7533,9 @@ }, "dependencies": { "@babel/runtime": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.18.6.tgz", - "integrity": "sha512-t9wi7/AW6XtKahAe20Yw0/mMljKq0B1r2fPdvaAdV/KPDZewFXdaaa6K7lxmZBZ8FBNpCiAT6iHPmd6QO9bKfQ==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.18.9.tgz", + "integrity": "sha512-lkqXDcvlFT5rvEjiu6+QYO+1GXrEHRo2LOtS7E4GtX5ESIZOgepqsZBVIj6Pv+a6zqsya9VCgiK1KAK4BvJDAw==", "requires": { "regenerator-runtime": "^0.13.4" } @@ -8569,9 +8418,9 @@ "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==" }, "gatsby": { - "version": "4.18.2", - "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-4.18.2.tgz", - "integrity": "sha512-ZWdo0TXsSRmwlmOeeuoWwXKQNteHm9VxJWF9Ud+c33r7ZXQgTA5WtRYjiBpjZuNAUwsiONNAe+wKK5jVY8B4LQ==", + "version": "4.19.0", + "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-4.19.0.tgz", + "integrity": "sha512-Bhga6PbDRSL3J7yIcVAWwN76cK0OeFWE4f5ggh4qEjnsL20kxW+LPwAexpZ5dVxbE1gsl1k/VDSX66Wj3vGH3A==", "requires": { "@babel/code-frame": "^7.14.0", "@babel/core": "^7.15.5", @@ -8593,7 +8442,7 @@ "@graphql-tools/load": "^7.5.10", "@jridgewell/trace-mapping": "^0.3.13", "@nodelib/fs.walk": "^1.2.8", - "@parcel/core": "2.6.0", + "@parcel/core": "2.6.2", "@pmmmwh/react-refresh-webpack-plugin": "^0.4.3", "@types/http-proxy": "^1.17.7", "@typescript-eslint/eslint-plugin": "^4.33.0", @@ -8607,11 +8456,10 @@ "babel-plugin-add-module-exports": "^1.0.4", "babel-plugin-dynamic-import-node": "^2.3.3", "babel-plugin-lodash": "^3.3.4", - "babel-plugin-remove-graphql-queries": "^4.18.1", - "babel-preset-gatsby": "^2.18.1", + "babel-plugin-remove-graphql-queries": "^4.19.0", + "babel-preset-gatsby": "^2.19.0", "better-opn": "^2.1.1", "bluebird": "^3.7.2", - "body-parser": "^1.19.0", "browserslist": "^4.17.5", "cache-manager": "^2.11.1", "chalk": "^4.1.2", @@ -8637,7 +8485,7 @@ "eslint-plugin-graphql": "^4.0.0", "eslint-plugin-import": "^2.26.0", "eslint-plugin-jsx-a11y": "^6.5.1", - "eslint-plugin-react": "^7.30.0", + "eslint-plugin-react": "^7.30.1", "eslint-plugin-react-hooks": "^4.5.0", "eslint-webpack-plugin": "^2.6.0", "event-source-polyfill": "1.0.25", @@ -8651,21 +8499,21 @@ "find-cache-dir": "^3.3.2", "fs-exists-cached": "1.0.0", "fs-extra": "^10.1.0", - "gatsby-cli": "^4.18.1", - "gatsby-core-utils": "^3.18.1", - "gatsby-graphiql-explorer": "^2.18.0", - "gatsby-legacy-polyfills": "^2.18.0", - "gatsby-link": "^4.18.1", - "gatsby-page-utils": "^2.18.1", - "gatsby-parcel-config": "^0.9.2", - "gatsby-plugin-page-creator": "^4.18.1", - "gatsby-plugin-typescript": "^4.18.1", - "gatsby-plugin-utils": "^3.12.1", - "gatsby-react-router-scroll": "^5.18.0", - "gatsby-script": "^1.3.0", - "gatsby-sharp": "^0.12.0", - "gatsby-telemetry": "^3.18.1", - "gatsby-worker": "^1.18.0", + "gatsby-cli": "^4.19.0", + "gatsby-core-utils": "^3.19.0", + "gatsby-graphiql-explorer": "^2.19.0", + "gatsby-legacy-polyfills": "^2.19.0", + "gatsby-link": "^4.19.0", + "gatsby-page-utils": "^2.19.0", + "gatsby-parcel-config": "^0.10.0", + "gatsby-plugin-page-creator": "^4.19.0", + "gatsby-plugin-typescript": "^4.19.0", + "gatsby-plugin-utils": "^3.13.0", + "gatsby-react-router-scroll": "^5.19.0", + "gatsby-script": "^1.4.0", + "gatsby-sharp": "^0.13.0", + "gatsby-telemetry": "^3.19.0", + "gatsby-worker": "^1.19.0", "glob": "^7.2.3", "globby": "^11.1.0", "got": "^11.8.2", @@ -8673,7 +8521,6 @@ "graphql-compose": "^9.0.7", "graphql-playground-middleware-express": "^1.7.22", "hasha": "^5.2.2", - "http-proxy": "^1.18.1", "invariant": "^2.2.4", "is-relative": "^1.0.0", "is-relative-url": "^3.0.0", @@ -8692,6 +8539,7 @@ "moment": "^2.29.1", "multer": "^1.4.3", "node-fetch": "^2.6.6", + "node-html-parser": "^5.3.3", "normalize-path": "^3.0.0", "null-loader": "^4.0.1", "opentracing": "^0.14.5", @@ -8746,10 +8594,46 @@ "@jridgewell/sourcemap-codec": "^1.4.10" } }, + "@lmdb/lmdb-darwin-arm64": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-arm64/-/lmdb-darwin-arm64-2.5.3.tgz", + "integrity": "sha512-RXwGZ/0eCqtCY8FLTM/koR60w+MXyvBUpToXiIyjOcBnC81tAlTUHrRUavCEWPI9zc9VgvpK3+cbumPyR8BSuA==", + "optional": true + }, + "@lmdb/lmdb-darwin-x64": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-x64/-/lmdb-darwin-x64-2.5.3.tgz", + "integrity": "sha512-337dNzh5yCdNCTk8kPfoU7jR3otibSlPDGW0vKZT97rKnQMb9tNdto3RtWoGPsQ8hKmlRZpojOJtmwjncq1MoA==", + "optional": true + }, + "@lmdb/lmdb-linux-arm": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm/-/lmdb-linux-arm-2.5.3.tgz", + "integrity": "sha512-mU2HFJDGwECkoD9dHQEfeTG5mp8hNS2BCfwoiOpVPMeapjYpQz9Uw3FkUjRZ4dGHWKbin40oWHuL0bk2bCx+Sg==", + "optional": true + }, + "@lmdb/lmdb-linux-arm64": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm64/-/lmdb-linux-arm64-2.5.3.tgz", + "integrity": "sha512-VJw60Mdgb4n+L0fO1PqfB0C7TyEQolJAC8qpqvG3JoQwvyOv6LH7Ib/WE3wxEW9nuHmVz9jkK7lk5HfWWgoO1Q==", + "optional": true + }, + "@lmdb/lmdb-linux-x64": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-x64/-/lmdb-linux-x64-2.5.3.tgz", + "integrity": "sha512-qaReO5aV8griBDsBr8uBF/faO3ieGjY1RY4p8JvTL6Mu1ylLrTVvOONqKFlNaCwrmUjWw5jnf7VafxDAeQHTow==", + "optional": true + }, + "@lmdb/lmdb-win32-x64": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-win32-x64/-/lmdb-win32-x64-2.5.3.tgz", + "integrity": "sha512-cK+Elf3RjEzrm3SerAhrFWL5oQAsZSJ/LmjL1joIpTfEP1etJJ9CTRvdaV6XLYAxaEkfdhk/9hOvHLbR9yIhCA==", + "optional": true + }, "core-js": { - "version": "3.23.4", - "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.23.4.tgz", - "integrity": "sha512-vjsKqRc1RyAJC3Ye2kYqgfdThb3zYnx9CrqoCcjMOENMtQPC7ZViBvlDxwYU/2z2NI/IPuiXw5mT4hWhddqjzQ==" + "version": "3.23.5", + "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.23.5.tgz", + "integrity": "sha512-7Vh11tujtAZy82da4duVreQysIoO2EvVrur7y6IzZkH1IHPSekuDi8Vuw1+YKjkbfWLRD7Nc9ICQ/sIUDutcyg==" }, "fs-extra": { "version": "10.1.0", @@ -8762,9 +8646,9 @@ } }, "gatsby-cli": { - "version": "4.18.1", - "resolved": "https://registry.npmjs.org/gatsby-cli/-/gatsby-cli-4.18.1.tgz", - "integrity": "sha512-ceYqm6i39rHY343zUCflwXnGtd25QGccvToTWL8W42/EGToDW8bubLfeBSRCfjXm946yf1gkS/1UAsAgAphYDA==", + "version": "4.19.0", + "resolved": "https://registry.npmjs.org/gatsby-cli/-/gatsby-cli-4.19.0.tgz", + "integrity": "sha512-i1B9ktvOECiOZgyKqf0xdYx9bmrIUeZeiK+EOIvIpvFfFUwBmZR6xSHRHYUGX2JVpQiy4QEG25KcPWgF9mYJ3w==", "requires": { "@babel/code-frame": "^7.14.0", "@babel/core": "^7.15.5", @@ -8783,13 +8667,13 @@ "common-tags": "^1.8.2", "configstore": "^5.0.1", "convert-hrtime": "^3.0.0", - "create-gatsby": "^2.18.1", + "create-gatsby": "^2.19.0", "envinfo": "^7.8.1", "execa": "^5.1.1", "fs-exists-cached": "^1.0.0", "fs-extra": "^10.1.0", - "gatsby-core-utils": "^3.18.1", - "gatsby-telemetry": "^3.18.1", + "gatsby-core-utils": "^3.19.0", + "gatsby-telemetry": "^3.19.0", "hosted-git-info": "^3.0.8", "is-valid-path": "^0.1.1", "joi": "^17.4.2", @@ -8813,9 +8697,9 @@ } }, "gatsby-core-utils": { - "version": "3.18.1", - "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.18.1.tgz", - "integrity": "sha512-sJTxRqizLxYy/tSFk0ydfqEZ3ek1So9HDVUa39F6Oi8XuPCBTFzaAooUvowKGneI5YUbdk5y4VO4ybwVUynntw==", + "version": "3.19.0", + "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.19.0.tgz", + "integrity": "sha512-cjXs9DsXkPZt+UdiLHxtq+rGMGVrcnM0KwkawlruvPchI7lqGNv9CScqlvYPxx1dBhu3zSZS26EBALMlFhyOJA==", "requires": { "@babel/runtime": "^7.15.4", "ci-info": "2.0.0", @@ -8907,11 +8791,6 @@ "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-4.3.0.tgz", "integrity": "sha512-73sE9+3UaLYYFmDsFZnqCInzPyh3MqIwZO9cw58yIqAZhONrrabrYyYe3TuIqtIiOuTXVhsGau8hcrhhwSsDIQ==" }, - "node-gyp-build-optional-packages": { - "version": "5.0.3", - "resolved": "https://registry.npmjs.org/node-gyp-build-optional-packages/-/node-gyp-build-optional-packages-5.0.3.tgz", - "integrity": "sha512-k75jcVzk5wnnc/FMxsf4udAoTEUv2jY3ycfdSd3yWu6Cnd1oee6/CfZJApyscA4FJOmdoixWwiwOyf16RzD5JA==" - }, "resolve-from": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", @@ -8959,17 +8838,17 @@ } }, "gatsby-graphiql-explorer": { - "version": "2.18.0", - "resolved": "https://registry.npmjs.org/gatsby-graphiql-explorer/-/gatsby-graphiql-explorer-2.18.0.tgz", - "integrity": "sha512-mmY+kHc+axpDO9lfjbCEf/0oEIHTcZmpe2PtQAzkhnQHyti3xd9IIafq/1W3QKIJo5c7f40+tR3sFTERqaBeIA==", + "version": "2.19.0", + "resolved": "https://registry.npmjs.org/gatsby-graphiql-explorer/-/gatsby-graphiql-explorer-2.19.0.tgz", + "integrity": "sha512-wOD1LuWaSbCtZ0E9C2HxMBQj67k8kPnlLMr/VfKHgBh0FfvIavIq5vOq5K9zRIkAzSzYVODGEz2NVdbfVK9Bew==", "requires": { "@babel/runtime": "^7.15.4" } }, "gatsby-legacy-polyfills": { - "version": "2.18.0", - "resolved": "https://registry.npmjs.org/gatsby-legacy-polyfills/-/gatsby-legacy-polyfills-2.18.0.tgz", - "integrity": "sha512-wPnsRUnnab10wyt5VPkIhpJC1k8bVrpn0Sfat1L3JskYwkVIEvquqTmHWkpGMB8SLbXQiJEGCs2TcIrx9riL+w==", + "version": "2.19.0", + "resolved": "https://registry.npmjs.org/gatsby-legacy-polyfills/-/gatsby-legacy-polyfills-2.19.0.tgz", + "integrity": "sha512-WuyN01eiRxhanfnj6UgsCxU+Pxs9B8rtgxbrwXhlEKX+QdAp4XlywDQ8QXvv8i028QDF9h+VnvGlfcZY4tgQrQ==", "requires": { "@babel/runtime": "^7.15.4", "core-js-compat": "3.9.0" @@ -8992,31 +8871,66 @@ } }, "gatsby-link": { - "version": "4.18.1", - "resolved": "https://registry.npmjs.org/gatsby-link/-/gatsby-link-4.18.1.tgz", - "integrity": "sha512-gLFH2iU4WugHU5k+SLu4F0Ar04kDT5KhkyXly99ZVtiIvHpA5DqcuGNIUjIE/lizSCsfa553wGv7dadfghGzrQ==", + "version": "4.19.0", + "resolved": "https://registry.npmjs.org/gatsby-link/-/gatsby-link-4.19.0.tgz", + "integrity": "sha512-snv9blxZR7s/ymRjUUDP2+zrJ/beuyy/k/MeW57EkQ16YfgDyF79JMKNDU3iXFmiFhG9AYBkClIfe4qTSoCO/A==", "requires": { - "@babel/runtime": "^7.15.4", "@types/reach__router": "^1.3.10", - "gatsby-page-utils": "^2.18.1", + "gatsby-page-utils": "^2.19.0", "prop-types": "^15.8.1" } }, "gatsby-page-utils": { - "version": "2.18.1", - "resolved": "https://registry.npmjs.org/gatsby-page-utils/-/gatsby-page-utils-2.18.1.tgz", - "integrity": "sha512-4EM0LNOQgnCndHDQSI/ZKRFWYWG9dtTPuGbBaGlmPquhj3zwjOscws1vfj7g+u3PowKjZQ2Rf92RZd8xt8XLTQ==", + "version": "2.19.0", + "resolved": "https://registry.npmjs.org/gatsby-page-utils/-/gatsby-page-utils-2.19.0.tgz", + "integrity": "sha512-eYStV4jQbuEBKhatH3yzWA+lmoydJBCZVg6w2GG38eSsgcj9pdep8oQqyQdGFU3dy/HizWmWCv+wW9FIUoVQsQ==", "requires": { "@babel/runtime": "^7.15.4", "bluebird": "^3.7.2", "chokidar": "^3.5.3", "fs-exists-cached": "^1.0.0", - "gatsby-core-utils": "^3.18.1", + "gatsby-core-utils": "^3.19.0", "glob": "^7.2.3", "lodash": "^4.17.21", "micromatch": "^4.0.5" }, "dependencies": { + "@lmdb/lmdb-darwin-arm64": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-arm64/-/lmdb-darwin-arm64-2.5.3.tgz", + "integrity": "sha512-RXwGZ/0eCqtCY8FLTM/koR60w+MXyvBUpToXiIyjOcBnC81tAlTUHrRUavCEWPI9zc9VgvpK3+cbumPyR8BSuA==", + "optional": true + }, + "@lmdb/lmdb-darwin-x64": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-x64/-/lmdb-darwin-x64-2.5.3.tgz", + "integrity": "sha512-337dNzh5yCdNCTk8kPfoU7jR3otibSlPDGW0vKZT97rKnQMb9tNdto3RtWoGPsQ8hKmlRZpojOJtmwjncq1MoA==", + "optional": true + }, + "@lmdb/lmdb-linux-arm": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm/-/lmdb-linux-arm-2.5.3.tgz", + "integrity": "sha512-mU2HFJDGwECkoD9dHQEfeTG5mp8hNS2BCfwoiOpVPMeapjYpQz9Uw3FkUjRZ4dGHWKbin40oWHuL0bk2bCx+Sg==", + "optional": true + }, + "@lmdb/lmdb-linux-arm64": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm64/-/lmdb-linux-arm64-2.5.3.tgz", + "integrity": "sha512-VJw60Mdgb4n+L0fO1PqfB0C7TyEQolJAC8qpqvG3JoQwvyOv6LH7Ib/WE3wxEW9nuHmVz9jkK7lk5HfWWgoO1Q==", + "optional": true + }, + "@lmdb/lmdb-linux-x64": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-x64/-/lmdb-linux-x64-2.5.3.tgz", + "integrity": "sha512-qaReO5aV8griBDsBr8uBF/faO3ieGjY1RY4p8JvTL6Mu1ylLrTVvOONqKFlNaCwrmUjWw5jnf7VafxDAeQHTow==", + "optional": true + }, + "@lmdb/lmdb-win32-x64": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-win32-x64/-/lmdb-win32-x64-2.5.3.tgz", + "integrity": "sha512-cK+Elf3RjEzrm3SerAhrFWL5oQAsZSJ/LmjL1joIpTfEP1etJJ9CTRvdaV6XLYAxaEkfdhk/9hOvHLbR9yIhCA==", + "optional": true + }, "fs-extra": { "version": "10.1.0", "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz", @@ -9028,9 +8942,9 @@ } }, "gatsby-core-utils": { - "version": "3.18.1", - "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.18.1.tgz", - "integrity": "sha512-sJTxRqizLxYy/tSFk0ydfqEZ3ek1So9HDVUa39F6Oi8XuPCBTFzaAooUvowKGneI5YUbdk5y4VO4ybwVUynntw==", + "version": "3.19.0", + "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.19.0.tgz", + "integrity": "sha512-cjXs9DsXkPZt+UdiLHxtq+rGMGVrcnM0KwkawlruvPchI7lqGNv9CScqlvYPxx1dBhu3zSZS26EBALMlFhyOJA==", "requires": { "@babel/runtime": "^7.15.4", "ci-info": "2.0.0", @@ -9120,11 +9034,6 @@ "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-4.3.0.tgz", "integrity": "sha512-73sE9+3UaLYYFmDsFZnqCInzPyh3MqIwZO9cw58yIqAZhONrrabrYyYe3TuIqtIiOuTXVhsGau8hcrhhwSsDIQ==" }, - "node-gyp-build-optional-packages": { - "version": "5.0.3", - "resolved": "https://registry.npmjs.org/node-gyp-build-optional-packages/-/node-gyp-build-optional-packages-5.0.3.tgz", - "integrity": "sha512-k75jcVzk5wnnc/FMxsf4udAoTEUv2jY3ycfdSd3yWu6Cnd1oee6/CfZJApyscA4FJOmdoixWwiwOyf16RzD5JA==" - }, "resolve-from": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", @@ -9138,27 +9047,27 @@ } }, "gatsby-parcel-config": { - "version": "0.9.2", - "resolved": "https://registry.npmjs.org/gatsby-parcel-config/-/gatsby-parcel-config-0.9.2.tgz", - "integrity": "sha512-ONykPoYCoFs89M8Hio0TSrUQEpwXwbSiV8aCcPH9L6w3eros9RlWrwAwnWb+lPDNJT5BsereBjefoS9cC6mpVA==", - "requires": { - "@gatsbyjs/parcel-namer-relative-to-cwd": "^1.3.2", - "@parcel/bundler-default": "2.6.0", - "@parcel/compressor-raw": "2.6.0", - "@parcel/namer-default": "2.6.0", - "@parcel/optimizer-terser": "2.6.0", - "@parcel/packager-js": "2.6.0", - "@parcel/packager-raw": "2.6.0", - "@parcel/reporter-dev-server": "2.6.0", - "@parcel/resolver-default": "2.6.0", - "@parcel/runtime-browser-hmr": "2.6.0", - "@parcel/runtime-js": "2.6.0", - "@parcel/runtime-react-refresh": "2.6.0", - "@parcel/runtime-service-worker": "2.6.0", - "@parcel/transformer-js": "2.6.0", - "@parcel/transformer-json": "2.6.0", - "@parcel/transformer-raw": "2.6.0", - "@parcel/transformer-react-refresh-wrap": "2.6.0" + "version": "0.10.0", + "resolved": "https://registry.npmjs.org/gatsby-parcel-config/-/gatsby-parcel-config-0.10.0.tgz", + "integrity": "sha512-FV+ccSeWPgicWRtycfUV1L7xyVIr6OSDnUkztnxq3Xj+OEBPC0NO2x07CA4tz16hSRDH1/qXgwY8AsHyenCidg==", + "requires": { + "@gatsbyjs/parcel-namer-relative-to-cwd": "^1.4.0", + "@parcel/bundler-default": "2.6.2", + "@parcel/compressor-raw": "2.6.2", + "@parcel/namer-default": "2.6.2", + "@parcel/optimizer-terser": "2.6.2", + "@parcel/packager-js": "2.6.2", + "@parcel/packager-raw": "2.6.2", + "@parcel/reporter-dev-server": "2.6.2", + "@parcel/resolver-default": "2.6.2", + "@parcel/runtime-browser-hmr": "2.6.2", + "@parcel/runtime-js": "2.6.2", + "@parcel/runtime-react-refresh": "2.6.2", + "@parcel/runtime-service-worker": "2.6.2", + "@parcel/transformer-js": "2.6.2", + "@parcel/transformer-json": "2.6.2", + "@parcel/transformer-raw": "2.6.2", + "@parcel/transformer-react-refresh-wrap": "2.6.2" } }, "gatsby-plugin-emotion": { @@ -9285,23 +9194,59 @@ } }, "gatsby-plugin-page-creator": { - "version": "4.18.1", - "resolved": "https://registry.npmjs.org/gatsby-plugin-page-creator/-/gatsby-plugin-page-creator-4.18.1.tgz", - "integrity": "sha512-XPAglahQ1fDnSdSNJmtAGwVqB7yZDGPOQQBQX7LD74XwYP6uriRo4LyeI+gEXRqW4d63ZL3VMvgdisde9M95LQ==", + "version": "4.19.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-page-creator/-/gatsby-plugin-page-creator-4.19.0.tgz", + "integrity": "sha512-JGclCb2lniTjBdFzoiF0Px9EhVY/3uiWx7mqnvfdVO85VVey5+eCKL60Aqamjovo6C+l/0Uldt4uT1EpNLC3Xw==", "requires": { "@babel/runtime": "^7.15.4", "@babel/traverse": "^7.15.4", "@sindresorhus/slugify": "^1.1.2", "chokidar": "^3.5.3", "fs-exists-cached": "^1.0.0", - "gatsby-core-utils": "^3.18.1", - "gatsby-page-utils": "^2.18.1", - "gatsby-plugin-utils": "^3.12.1", - "gatsby-telemetry": "^3.18.1", + "gatsby-core-utils": "^3.19.0", + "gatsby-page-utils": "^2.19.0", + "gatsby-plugin-utils": "^3.13.0", + "gatsby-telemetry": "^3.19.0", "globby": "^11.1.0", "lodash": "^4.17.21" }, "dependencies": { + "@lmdb/lmdb-darwin-arm64": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-arm64/-/lmdb-darwin-arm64-2.5.3.tgz", + "integrity": "sha512-RXwGZ/0eCqtCY8FLTM/koR60w+MXyvBUpToXiIyjOcBnC81tAlTUHrRUavCEWPI9zc9VgvpK3+cbumPyR8BSuA==", + "optional": true + }, + "@lmdb/lmdb-darwin-x64": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-x64/-/lmdb-darwin-x64-2.5.3.tgz", + "integrity": "sha512-337dNzh5yCdNCTk8kPfoU7jR3otibSlPDGW0vKZT97rKnQMb9tNdto3RtWoGPsQ8hKmlRZpojOJtmwjncq1MoA==", + "optional": true + }, + "@lmdb/lmdb-linux-arm": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm/-/lmdb-linux-arm-2.5.3.tgz", + "integrity": "sha512-mU2HFJDGwECkoD9dHQEfeTG5mp8hNS2BCfwoiOpVPMeapjYpQz9Uw3FkUjRZ4dGHWKbin40oWHuL0bk2bCx+Sg==", + "optional": true + }, + "@lmdb/lmdb-linux-arm64": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm64/-/lmdb-linux-arm64-2.5.3.tgz", + "integrity": "sha512-VJw60Mdgb4n+L0fO1PqfB0C7TyEQolJAC8qpqvG3JoQwvyOv6LH7Ib/WE3wxEW9nuHmVz9jkK7lk5HfWWgoO1Q==", + "optional": true + }, + "@lmdb/lmdb-linux-x64": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-x64/-/lmdb-linux-x64-2.5.3.tgz", + "integrity": "sha512-qaReO5aV8griBDsBr8uBF/faO3ieGjY1RY4p8JvTL6Mu1ylLrTVvOONqKFlNaCwrmUjWw5jnf7VafxDAeQHTow==", + "optional": true + }, + "@lmdb/lmdb-win32-x64": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-win32-x64/-/lmdb-win32-x64-2.5.3.tgz", + "integrity": "sha512-cK+Elf3RjEzrm3SerAhrFWL5oQAsZSJ/LmjL1joIpTfEP1etJJ9CTRvdaV6XLYAxaEkfdhk/9hOvHLbR9yIhCA==", + "optional": true + }, "fs-extra": { "version": "10.1.0", "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz", @@ -9313,9 +9258,9 @@ } }, "gatsby-core-utils": { - "version": "3.18.1", - "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.18.1.tgz", - "integrity": "sha512-sJTxRqizLxYy/tSFk0ydfqEZ3ek1So9HDVUa39F6Oi8XuPCBTFzaAooUvowKGneI5YUbdk5y4VO4ybwVUynntw==", + "version": "3.19.0", + "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.19.0.tgz", + "integrity": "sha512-cjXs9DsXkPZt+UdiLHxtq+rGMGVrcnM0KwkawlruvPchI7lqGNv9CScqlvYPxx1dBhu3zSZS26EBALMlFhyOJA==", "requires": { "@babel/runtime": "^7.15.4", "ci-info": "2.0.0", @@ -9384,11 +9329,6 @@ "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-4.3.0.tgz", "integrity": "sha512-73sE9+3UaLYYFmDsFZnqCInzPyh3MqIwZO9cw58yIqAZhONrrabrYyYe3TuIqtIiOuTXVhsGau8hcrhhwSsDIQ==" }, - "node-gyp-build-optional-packages": { - "version": "5.0.3", - "resolved": "https://registry.npmjs.org/node-gyp-build-optional-packages/-/node-gyp-build-optional-packages-5.0.3.tgz", - "integrity": "sha512-k75jcVzk5wnnc/FMxsf4udAoTEUv2jY3ycfdSd3yWu6Cnd1oee6/CfZJApyscA4FJOmdoixWwiwOyf16RzD5JA==" - }, "resolve-from": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", @@ -9415,9 +9355,9 @@ "integrity": "sha512-G92tnNZyViyP/wMd6ps1KhXuG48qlInZ3aUqCrgMNpsX9Hb6rSet0mWmpgj8T8dSRw7Ll7byI0DfKXL5gScgjA==" }, "gatsby-plugin-typescript": { - "version": "4.18.1", - "resolved": "https://registry.npmjs.org/gatsby-plugin-typescript/-/gatsby-plugin-typescript-4.18.1.tgz", - "integrity": "sha512-YUZcqL2WWiL2ngKe4A5FpTjCij2pLxiim+QaujeKfMjeWfHJ13uQ74HlxQXNpGAy4vMRBiU4CJH71RXgS1aoaA==", + "version": "4.19.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-typescript/-/gatsby-plugin-typescript-4.19.0.tgz", + "integrity": "sha512-f+aC4g/pTkUqFLTHo3OLdPQgdIFcEdoM5i8H4Pph5O4rmFXYHkkQKimRJmAz9cBb6/1wN7IBqI9m4k3AefaAjA==", "requires": { "@babel/core": "^7.15.5", "@babel/plugin-proposal-nullish-coalescing-operator": "^7.14.5", @@ -9425,19 +9365,19 @@ "@babel/plugin-proposal-optional-chaining": "^7.14.5", "@babel/preset-typescript": "^7.15.0", "@babel/runtime": "^7.15.4", - "babel-plugin-remove-graphql-queries": "^4.18.1" + "babel-plugin-remove-graphql-queries": "^4.19.0" } }, "gatsby-plugin-utils": { - "version": "3.12.1", - "resolved": "https://registry.npmjs.org/gatsby-plugin-utils/-/gatsby-plugin-utils-3.12.1.tgz", - "integrity": "sha512-Rx7/MFtiJ+pyvPLqCPj5beyMN6qOx3EYMrOqmvrWJaM32nxMfHZqUqxGruufyFNVe6edfRuNuXcKaPXlGlyexA==", + "version": "3.13.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-utils/-/gatsby-plugin-utils-3.13.0.tgz", + "integrity": "sha512-iFFWswld/Nu8IrSCikZXC4/cud9txv3ikjkQiGLccJStS9VH2rSY4XEMNRqsKN9Spe3pFBOr/97yYUaPhZaQWg==", "requires": { "@babel/runtime": "^7.15.4", "@gatsbyjs/potrace": "^2.2.0", "fs-extra": "^10.1.0", - "gatsby-core-utils": "^3.18.1", - "gatsby-sharp": "^0.12.0", + "gatsby-core-utils": "^3.19.0", + "gatsby-sharp": "^0.13.0", "graphql-compose": "^9.0.7", "import-from": "^4.0.0", "joi": "^17.4.2", @@ -9446,6 +9386,42 @@ "svgo": "^2.8.0" }, "dependencies": { + "@lmdb/lmdb-darwin-arm64": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-arm64/-/lmdb-darwin-arm64-2.5.3.tgz", + "integrity": "sha512-RXwGZ/0eCqtCY8FLTM/koR60w+MXyvBUpToXiIyjOcBnC81tAlTUHrRUavCEWPI9zc9VgvpK3+cbumPyR8BSuA==", + "optional": true + }, + "@lmdb/lmdb-darwin-x64": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-x64/-/lmdb-darwin-x64-2.5.3.tgz", + "integrity": "sha512-337dNzh5yCdNCTk8kPfoU7jR3otibSlPDGW0vKZT97rKnQMb9tNdto3RtWoGPsQ8hKmlRZpojOJtmwjncq1MoA==", + "optional": true + }, + "@lmdb/lmdb-linux-arm": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm/-/lmdb-linux-arm-2.5.3.tgz", + "integrity": "sha512-mU2HFJDGwECkoD9dHQEfeTG5mp8hNS2BCfwoiOpVPMeapjYpQz9Uw3FkUjRZ4dGHWKbin40oWHuL0bk2bCx+Sg==", + "optional": true + }, + "@lmdb/lmdb-linux-arm64": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm64/-/lmdb-linux-arm64-2.5.3.tgz", + "integrity": "sha512-VJw60Mdgb4n+L0fO1PqfB0C7TyEQolJAC8qpqvG3JoQwvyOv6LH7Ib/WE3wxEW9nuHmVz9jkK7lk5HfWWgoO1Q==", + "optional": true + }, + "@lmdb/lmdb-linux-x64": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-x64/-/lmdb-linux-x64-2.5.3.tgz", + "integrity": "sha512-qaReO5aV8griBDsBr8uBF/faO3ieGjY1RY4p8JvTL6Mu1ylLrTVvOONqKFlNaCwrmUjWw5jnf7VafxDAeQHTow==", + "optional": true + }, + "@lmdb/lmdb-win32-x64": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-win32-x64/-/lmdb-win32-x64-2.5.3.tgz", + "integrity": "sha512-cK+Elf3RjEzrm3SerAhrFWL5oQAsZSJ/LmjL1joIpTfEP1etJJ9CTRvdaV6XLYAxaEkfdhk/9hOvHLbR9yIhCA==", + "optional": true + }, "fs-extra": { "version": "10.1.0", "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz", @@ -9457,9 +9433,9 @@ } }, "gatsby-core-utils": { - "version": "3.18.1", - "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.18.1.tgz", - "integrity": "sha512-sJTxRqizLxYy/tSFk0ydfqEZ3ek1So9HDVUa39F6Oi8XuPCBTFzaAooUvowKGneI5YUbdk5y4VO4ybwVUynntw==", + "version": "3.19.0", + "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.19.0.tgz", + "integrity": "sha512-cjXs9DsXkPZt+UdiLHxtq+rGMGVrcnM0KwkawlruvPchI7lqGNv9CScqlvYPxx1dBhu3zSZS26EBALMlFhyOJA==", "requires": { "@babel/runtime": "^7.15.4", "ci-info": "2.0.0", @@ -9533,11 +9509,6 @@ "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-4.3.0.tgz", "integrity": "sha512-73sE9+3UaLYYFmDsFZnqCInzPyh3MqIwZO9cw58yIqAZhONrrabrYyYe3TuIqtIiOuTXVhsGau8hcrhhwSsDIQ==" }, - "node-gyp-build-optional-packages": { - "version": "5.0.3", - "resolved": "https://registry.npmjs.org/node-gyp-build-optional-packages/-/node-gyp-build-optional-packages-5.0.3.tgz", - "integrity": "sha512-k75jcVzk5wnnc/FMxsf4udAoTEUv2jY3ycfdSd3yWu6Cnd1oee6/CfZJApyscA4FJOmdoixWwiwOyf16RzD5JA==" - }, "resolve-from": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", @@ -9551,23 +9522,23 @@ } }, "gatsby-react-router-scroll": { - "version": "5.18.0", - "resolved": "https://registry.npmjs.org/gatsby-react-router-scroll/-/gatsby-react-router-scroll-5.18.0.tgz", - "integrity": "sha512-/A1k468s6g713c8me5DuGiia8rPWLuwjITQ/pKqgJwioJVB6MnD/iBCbHUTzLHlNwZypAVdGHCN8fCIcPcMb6Q==", + "version": "5.19.0", + "resolved": "https://registry.npmjs.org/gatsby-react-router-scroll/-/gatsby-react-router-scroll-5.19.0.tgz", + "integrity": "sha512-tl1E2/ger3Aw5Vb5n53i9wCBePYqb2dBilO05pd6FfgKYJveFidQwGzzOn1F9smdWq+5c3KJSTlKJaNYPwn72w==", "requires": { "@babel/runtime": "^7.15.4", "prop-types": "^15.8.1" } }, "gatsby-script": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/gatsby-script/-/gatsby-script-1.3.0.tgz", - "integrity": "sha512-eCz6mcMFpB7kvpmyM7AtMTxNxzdrzPgt8GiuDKWFOlDgk1il6PUjO99QsL/cCeokmaiH/6egVnm9b33/x+sy9A==" + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/gatsby-script/-/gatsby-script-1.4.0.tgz", + "integrity": "sha512-+GmHTAfFq/sQWPvl1E8QvApRfxqqamhdqjFo4YloOQRAlDc+e3nMzTzvgj8z3IWqDqlvEfHMnlvQg60E5ThO/A==" }, "gatsby-sharp": { - "version": "0.12.0", - "resolved": "https://registry.npmjs.org/gatsby-sharp/-/gatsby-sharp-0.12.0.tgz", - "integrity": "sha512-dZa/AgxmPzD0vvROEZSuT3IdzAFTxnq1FfLTf9n3mywonvsKYc84zj6nf8TEzBrVrBFAaLvZek4NpVAKWGr4/w==", + "version": "0.13.0", + "resolved": "https://registry.npmjs.org/gatsby-sharp/-/gatsby-sharp-0.13.0.tgz", + "integrity": "sha512-dGuIuWP3rC7hXl/CgkHEY4WQEW+B9Rsg8uo6u+OumuLnLBxD4vTusEIGctVKzlyIxpENEQylQ7w1JKHX9fOy9g==", "requires": { "@types/sharp": "^0.30.0", "sharp": "^0.30.3" @@ -9716,9 +9687,9 @@ } }, "gatsby-telemetry": { - "version": "3.18.1", - "resolved": "https://registry.npmjs.org/gatsby-telemetry/-/gatsby-telemetry-3.18.1.tgz", - "integrity": "sha512-EjjsUv15BZGsmnPrOINRT/s7d18DTKokpp2NDZLm8uOs3MwVoLtUZ/BS7h2NTmgK+WN93q3bNYRkZgKgV9QC1A==", + "version": "3.19.0", + "resolved": "https://registry.npmjs.org/gatsby-telemetry/-/gatsby-telemetry-3.19.0.tgz", + "integrity": "sha512-5JQcTm2zCLWTmnXOdOe0gxuk7aRZSTaVrOrytMlwAR7trvtBC/fKqMhJHsYwl5uW9K06F59ZdkC0apJTAPkGww==", "requires": { "@babel/code-frame": "^7.14.0", "@babel/runtime": "^7.15.4", @@ -9728,13 +9699,49 @@ "boxen": "^4.2.0", "configstore": "^5.0.1", "fs-extra": "^10.1.0", - "gatsby-core-utils": "^3.18.1", + "gatsby-core-utils": "^3.19.0", "git-up": "^4.0.5", "is-docker": "^2.2.1", "lodash": "^4.17.21", "node-fetch": "^2.6.7" }, "dependencies": { + "@lmdb/lmdb-darwin-arm64": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-arm64/-/lmdb-darwin-arm64-2.5.3.tgz", + "integrity": "sha512-RXwGZ/0eCqtCY8FLTM/koR60w+MXyvBUpToXiIyjOcBnC81tAlTUHrRUavCEWPI9zc9VgvpK3+cbumPyR8BSuA==", + "optional": true + }, + "@lmdb/lmdb-darwin-x64": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-x64/-/lmdb-darwin-x64-2.5.3.tgz", + "integrity": "sha512-337dNzh5yCdNCTk8kPfoU7jR3otibSlPDGW0vKZT97rKnQMb9tNdto3RtWoGPsQ8hKmlRZpojOJtmwjncq1MoA==", + "optional": true + }, + "@lmdb/lmdb-linux-arm": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm/-/lmdb-linux-arm-2.5.3.tgz", + "integrity": "sha512-mU2HFJDGwECkoD9dHQEfeTG5mp8hNS2BCfwoiOpVPMeapjYpQz9Uw3FkUjRZ4dGHWKbin40oWHuL0bk2bCx+Sg==", + "optional": true + }, + "@lmdb/lmdb-linux-arm64": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm64/-/lmdb-linux-arm64-2.5.3.tgz", + "integrity": "sha512-VJw60Mdgb4n+L0fO1PqfB0C7TyEQolJAC8qpqvG3JoQwvyOv6LH7Ib/WE3wxEW9nuHmVz9jkK7lk5HfWWgoO1Q==", + "optional": true + }, + "@lmdb/lmdb-linux-x64": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-x64/-/lmdb-linux-x64-2.5.3.tgz", + "integrity": "sha512-qaReO5aV8griBDsBr8uBF/faO3ieGjY1RY4p8JvTL6Mu1ylLrTVvOONqKFlNaCwrmUjWw5jnf7VafxDAeQHTow==", + "optional": true + }, + "@lmdb/lmdb-win32-x64": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-win32-x64/-/lmdb-win32-x64-2.5.3.tgz", + "integrity": "sha512-cK+Elf3RjEzrm3SerAhrFWL5oQAsZSJ/LmjL1joIpTfEP1etJJ9CTRvdaV6XLYAxaEkfdhk/9hOvHLbR9yIhCA==", + "optional": true + }, "ansi-styles": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", @@ -9791,9 +9798,9 @@ } }, "gatsby-core-utils": { - "version": "3.18.1", - "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.18.1.tgz", - "integrity": "sha512-sJTxRqizLxYy/tSFk0ydfqEZ3ek1So9HDVUa39F6Oi8XuPCBTFzaAooUvowKGneI5YUbdk5y4VO4ybwVUynntw==", + "version": "3.19.0", + "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.19.0.tgz", + "integrity": "sha512-cjXs9DsXkPZt+UdiLHxtq+rGMGVrcnM0KwkawlruvPchI7lqGNv9CScqlvYPxx1dBhu3zSZS26EBALMlFhyOJA==", "requires": { "@babel/runtime": "^7.15.4", "ci-info": "2.0.0", @@ -9867,11 +9874,6 @@ "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-4.3.0.tgz", "integrity": "sha512-73sE9+3UaLYYFmDsFZnqCInzPyh3MqIwZO9cw58yIqAZhONrrabrYyYe3TuIqtIiOuTXVhsGau8hcrhhwSsDIQ==" }, - "node-gyp-build-optional-packages": { - "version": "5.0.3", - "resolved": "https://registry.npmjs.org/node-gyp-build-optional-packages/-/node-gyp-build-optional-packages-5.0.3.tgz", - "integrity": "sha512-k75jcVzk5wnnc/FMxsf4udAoTEUv2jY3ycfdSd3yWu6Cnd1oee6/CfZJApyscA4FJOmdoixWwiwOyf16RzD5JA==" - }, "resolve-from": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", @@ -9922,9 +9924,9 @@ "integrity": "sha512-vU2ynpSniobb+NbTDyQv9bvtJMEnTzcj+8tCBOUw6XuZ0ajI8o4UDM6vpW4kkwYmy6qllgzqC99xkklQkkVlXw==" }, "gatsby-worker": { - "version": "1.18.0", - "resolved": "https://registry.npmjs.org/gatsby-worker/-/gatsby-worker-1.18.0.tgz", - "integrity": "sha512-gNzqDrYFMXlfXCzdClORyDQWQZKTOF6nRUrhZT8PUxzQViO+DvnEKE3EAQvZizYKW1Hgw7cbiTtLG3qshkNepw==", + "version": "1.19.0", + "resolved": "https://registry.npmjs.org/gatsby-worker/-/gatsby-worker-1.19.0.tgz", + "integrity": "sha512-E0I51K5+rSpcUkv3wQ17FHZiicLeMH/Hz7p3oxlPCM43pcvsYJTa68Q0MqI1K6XV6Z8Nf48dERKMvHT0PnY4GQ==", "requires": { "@babel/core": "^7.15.5", "@babel/runtime": "^7.15.4" @@ -10439,6 +10441,11 @@ "space-separated-tokens": "^1.0.0" } }, + "he": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/he/-/he-1.2.0.tgz", + "integrity": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==" + }, "header-case": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/header-case/-/header-case-1.0.1.tgz", @@ -10517,16 +10524,6 @@ "toidentifier": "1.0.1" } }, - "http-proxy": { - "version": "1.18.1", - "resolved": "https://registry.npmjs.org/http-proxy/-/http-proxy-1.18.1.tgz", - "integrity": "sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==", - "requires": { - "eventemitter3": "^4.0.0", - "follow-redirects": "^1.0.0", - "requires-port": "^1.0.0" - } - }, "http2-wrapper": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/http2-wrapper/-/http2-wrapper-1.0.3.tgz", @@ -11323,42 +11320,6 @@ "weak-lru-cache": "^1.2.2" } }, - "lmdb-darwin-arm64": { - "version": "2.3.10", - "resolved": "https://registry.npmjs.org/lmdb-darwin-arm64/-/lmdb-darwin-arm64-2.3.10.tgz", - "integrity": "sha512-LVXbH2MYu7/ZuQ8+P9rv+SwNyBKltxo7vHAGJS94HWyfwnCbKEYER9PImBvNBwzvgtaYk6x0RMX3oor6e6KdDQ==", - "optional": true - }, - "lmdb-darwin-x64": { - "version": "2.3.10", - "resolved": "https://registry.npmjs.org/lmdb-darwin-x64/-/lmdb-darwin-x64-2.3.10.tgz", - "integrity": "sha512-gAc/1b/FZOb9yVOT+o0huA+hdW82oxLo5r22dFTLoRUFG1JMzxdTjmnW6ONVOHdqC9a5bt3vBCEY3jmXNqV26A==", - "optional": true - }, - "lmdb-linux-arm": { - "version": "2.3.10", - "resolved": "https://registry.npmjs.org/lmdb-linux-arm/-/lmdb-linux-arm-2.3.10.tgz", - "integrity": "sha512-Rb8+4JjsThuEcJ7GLLwFkCFnoiwv/3hAAbELWITz70buQFF+dCZvCWWgEgmDTxwn5r+wIkdUjmFv4dqqiKQFmQ==", - "optional": true - }, - "lmdb-linux-arm64": { - "version": "2.3.10", - "resolved": "https://registry.npmjs.org/lmdb-linux-arm64/-/lmdb-linux-arm64-2.3.10.tgz", - "integrity": "sha512-Ihr8mdICTK3jA4GXHxrXGK2oekn0mY6zuDSXQDNtyRSH19j3D2Y04A7SEI9S0EP/t5sjKSudYgZbiHDxRCsI5A==", - "optional": true - }, - "lmdb-linux-x64": { - "version": "2.3.10", - "resolved": "https://registry.npmjs.org/lmdb-linux-x64/-/lmdb-linux-x64-2.3.10.tgz", - "integrity": "sha512-E3l3pDiCA9uvnLf+t3qkmBGRO01dp1EHD0x0g0iRnfpAhV7wYbayJGfG93BUt22Tj3fnq4HDo4dQ6ZWaDI1nuw==", - "optional": true - }, - "lmdb-win32-x64": { - "version": "2.3.10", - "resolved": "https://registry.npmjs.org/lmdb-win32-x64/-/lmdb-win32-x64-2.3.10.tgz", - "integrity": "sha512-gspWk34tDANhjn+brdqZstJMptGiwj4qFNVg0Zey9ds+BUlif+Lgf5szrfOVzZ8gVRkk1Lgbz7i78+V7YK7SCA==", - "optional": true - }, "load-bmfont": { "version": "1.4.1", "resolved": "https://registry.npmjs.org/load-bmfont/-/load-bmfont-1.4.1.tgz", @@ -12125,9 +12086,18 @@ "integrity": "sha512-iWjXZvmboq0ja1pUGULQBexmxq8CV4xBhX7VDOTbL7ZR4FOowwY/VOtRxBN/yKxmdGoIp4j5ysNT4u3S2pDQ3Q==" }, "node-gyp-build-optional-packages": { - "version": "4.3.5", - "resolved": "https://registry.npmjs.org/node-gyp-build-optional-packages/-/node-gyp-build-optional-packages-4.3.5.tgz", - "integrity": "sha512-5ke7D8SiQsTQL7CkHpfR1tLwfqtKc0KYEmlnkwd40jHCASskZeS98qoZ1qDUns2aUQWikcjidRUs6PM/3iyN/w==" + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/node-gyp-build-optional-packages/-/node-gyp-build-optional-packages-5.0.3.tgz", + "integrity": "sha512-k75jcVzk5wnnc/FMxsf4udAoTEUv2jY3ycfdSd3yWu6Cnd1oee6/CfZJApyscA4FJOmdoixWwiwOyf16RzD5JA==" + }, + "node-html-parser": { + "version": "5.3.3", + "resolved": "https://registry.npmjs.org/node-html-parser/-/node-html-parser-5.3.3.tgz", + "integrity": "sha512-ncg1033CaX9UexbyA7e1N0aAoAYRDiV8jkTvzEnfd1GDvzFdrsXLzR4p4ik8mwLgnaKP/jyUFWDy9q3jvRT2Jw==", + "requires": { + "css-select": "^4.2.1", + "he": "1.2.0" + } }, "node-int64": { "version": "0.4.0", @@ -12950,14 +12920,14 @@ } }, "caniuse-lite": { - "version": "1.0.30001366", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001366.tgz", - "integrity": "sha512-yy7XLWCubDobokgzudpkKux8e0UOOnLHE6mlNJBzT3lZJz6s5atSEzjoL+fsCPkI0G8MP5uVdDx1ur/fXEWkZA==" + "version": "1.0.30001367", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001367.tgz", + "integrity": "sha512-XDgbeOHfifWV3GEES2B8rtsrADx4Jf+juKX2SICJcaUhjYBO3bR96kvEIHa15VU6ohtOhBZuPGGYGbXMRn0NCw==" }, "electron-to-chromium": { - "version": "1.4.188", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.188.tgz", - "integrity": "sha512-Zpa1+E+BVmD/orkyz1Z2dAT1XNUuVAHB3GrogfyY66dXN0ZWSsygI8+u6QTDai1ZayLcATDJpcv2Z2AZjEcr1A==" + "version": "1.4.194", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.194.tgz", + "integrity": "sha512-ola5UH0xAP1oYY0FFUsPvwtucEzCQHucXnT7PQ1zjHJMccZhCDktEugI++JUR3YuIs7Ff7afz+OVEhVAIMhLAQ==" } } }, @@ -13432,6 +13402,13 @@ "http-errors": "2.0.0", "iconv-lite": "0.4.24", "unpipe": "1.0.0" + }, + "dependencies": { + "bytes": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", + "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==" + } } }, "raw-loader": { @@ -14056,11 +14033,6 @@ "resolved": "https://registry.npmjs.org/require-package-name/-/require-package-name-2.0.1.tgz", "integrity": "sha512-uuoJ1hU/k6M0779t3VMVIYpb2VMJk05cehCaABFhXaibcbvfgR8wKiozLjVFSzJPmQMRqIcO0HMyTFqfV09V6Q==" }, - "requires-port": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz", - "integrity": "sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==" - }, "resolve": { "version": "1.20.0", "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.20.0.tgz", @@ -15681,9 +15653,9 @@ "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==" }, "update-browserslist-db": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.4.tgz", - "integrity": "sha512-jnmO2BEGUjsMOe/Fg9u0oczOe/ppIDZPebzccl1yDWGLFP16Pa1/RM5wEoKYPG2zstNcDuAStejyxsOuKINdGA==", + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.5.tgz", + "integrity": "sha512-dteFFpCyvuDdr9S/ff1ISkKt/9YZxKjI9WlRR99c180GaztJtRa/fn18FdxGVKVsnPY7/a/FDN68mcvUmP4U7Q==", "requires": { "escalade": "^3.1.1", "picocolors": "^1.0.0" diff --git a/starters/gatsby-starter-notes-theme/package.json b/starters/gatsby-starter-notes-theme/package.json index 14dd354e691a9..5e8e8029b43f3 100644 --- a/starters/gatsby-starter-notes-theme/package.json +++ b/starters/gatsby-starter-notes-theme/package.json @@ -10,7 +10,7 @@ }, "license": "0BSD", "dependencies": { - "gatsby": "^4.18.2", + "gatsby": "^4.19.0", "gatsby-theme-notes": "^4.0.0", "react": "^17.0.2", "react-dom": "^17.0.2" diff --git a/starters/gatsby-starter-theme-workspace/example/package.json b/starters/gatsby-starter-theme-workspace/example/package.json index 3c1d225fb54ae..867c98715289d 100644 --- a/starters/gatsby-starter-theme-workspace/example/package.json +++ b/starters/gatsby-starter-theme-workspace/example/package.json @@ -8,7 +8,7 @@ "build": "gatsby build" }, "dependencies": { - "gatsby": "^4.18.2", + "gatsby": "^4.19.0", "gatsby-theme-minimal": "^1.0.0", "react": "^18.1.0", "react-dom": "^18.1.0" diff --git a/starters/gatsby-starter-theme/package-lock.json b/starters/gatsby-starter-theme/package-lock.json index b7c408f078da3..6187601737db8 100644 --- a/starters/gatsby-starter-theme/package-lock.json +++ b/starters/gatsby-starter-theme/package-lock.json @@ -102,9 +102,9 @@ } }, "@babel/eslint-parser": { - "version": "7.18.2", - "resolved": "https://registry.npmjs.org/@babel/eslint-parser/-/eslint-parser-7.18.2.tgz", - "integrity": "sha512-oFQYkE8SuH14+uR51JVAmdqwKYXGRjEXx7s+WiagVjqQ+HPE+nnwyF2qlVG8evUsUHmPcA+6YXMEDbIhEyQc5A==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/eslint-parser/-/eslint-parser-7.18.9.tgz", + "integrity": "sha512-KzSGpMBggz4fKbRbWLNyPVTuQr6cmCcBhOyXTw/fieOVaw5oYAwcAj4a7UKcDYCPxQq+CG1NCDZH9e2JTXquiQ==", "requires": { "eslint-scope": "^5.1.1", "eslint-visitor-keys": "^2.1.0", @@ -623,9 +623,9 @@ }, "dependencies": { "@babel/helper-plugin-utils": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.18.6.tgz", - "integrity": "sha512-gvZnm1YAAxh13eJdkb9EWHBnF3eAub3XTLCZEehHT2kWxiKVRL64+ae5Y6Ivne0mVHmMYKT+xWgZO+gQhuLUBg==" + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.18.9.tgz", + "integrity": "sha512-aBXPT3bmtLryXaoJLyYPXPlSD4p1ld9aYeR+sJNOZjJJGiOpb+fKfh3NkcCu7J54nUJwCERPBExCCpyCOHnu/w==" } } }, @@ -718,9 +718,9 @@ }, "dependencies": { "@babel/helper-plugin-utils": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.18.6.tgz", - "integrity": "sha512-gvZnm1YAAxh13eJdkb9EWHBnF3eAub3XTLCZEehHT2kWxiKVRL64+ae5Y6Ivne0mVHmMYKT+xWgZO+gQhuLUBg==" + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.18.9.tgz", + "integrity": "sha512-aBXPT3bmtLryXaoJLyYPXPlSD4p1ld9aYeR+sJNOZjJJGiOpb+fKfh3NkcCu7J54nUJwCERPBExCCpyCOHnu/w==" } } }, @@ -816,18 +816,18 @@ } }, "@babel/plugin-transform-flow-strip-types": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.18.6.tgz", - "integrity": "sha512-wE0xtA7csz+hw4fKPwxmu5jnzAsXPIO57XnRwzXP3T19jWh1BODnPGoG9xKYwvAwusP7iUktHayRFbMPGtODaQ==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.18.9.tgz", + "integrity": "sha512-+G6rp2zRuOAInY5wcggsx4+QVao1qPM0osC9fTUVlAV3zOrzTCnrMAFVnR6+a3T8wz1wFIH7KhYMcMB3u1n80A==", "requires": { - "@babel/helper-plugin-utils": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.9", "@babel/plugin-syntax-flow": "^7.18.6" }, "dependencies": { "@babel/helper-plugin-utils": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.18.6.tgz", - "integrity": "sha512-gvZnm1YAAxh13eJdkb9EWHBnF3eAub3XTLCZEehHT2kWxiKVRL64+ae5Y6Ivne0mVHmMYKT+xWgZO+gQhuLUBg==" + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.18.9.tgz", + "integrity": "sha512-aBXPT3bmtLryXaoJLyYPXPlSD4p1ld9aYeR+sJNOZjJJGiOpb+fKfh3NkcCu7J54nUJwCERPBExCCpyCOHnu/w==" } } }, @@ -1002,12 +1002,12 @@ } }, "@babel/plugin-transform-runtime": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.18.6.tgz", - "integrity": "sha512-8uRHk9ZmRSnWqUgyae249EJZ94b0yAGLBIqzZzl+0iEdbno55Pmlt/32JZsHwXD9k/uZj18Aqqk35wBX4CBTXA==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.18.9.tgz", + "integrity": "sha512-wS8uJwBt7/b/mzE13ktsJdmS4JP/j7PQSaADtnb4I2wL0zK51MQ0pmF8/Jy0wUIS96fr+fXT6S/ifiPXnvrlSg==", "requires": { "@babel/helper-module-imports": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.9", "babel-plugin-polyfill-corejs2": "^0.3.1", "babel-plugin-polyfill-corejs3": "^0.5.2", "babel-plugin-polyfill-regenerator": "^0.3.1", @@ -1023,9 +1023,9 @@ } }, "@babel/helper-plugin-utils": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.18.6.tgz", - "integrity": "sha512-gvZnm1YAAxh13eJdkb9EWHBnF3eAub3XTLCZEehHT2kWxiKVRL64+ae5Y6Ivne0mVHmMYKT+xWgZO+gQhuLUBg==" + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.18.9.tgz", + "integrity": "sha512-aBXPT3bmtLryXaoJLyYPXPlSD4p1ld9aYeR+sJNOZjJJGiOpb+fKfh3NkcCu7J54nUJwCERPBExCCpyCOHnu/w==" }, "@babel/helper-validator-identifier": { "version": "7.18.6", @@ -1033,9 +1033,9 @@ "integrity": "sha512-MmetCkz9ej86nJQV+sFCxoGGrUbU3q02kgLciwkrt9QqEB7cP39oKEY0PakknEO0Gu20SskMRi+AYZ3b1TpN9g==" }, "@babel/types": { - "version": "7.18.8", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.8.tgz", - "integrity": "sha512-qwpdsmraq0aJ3osLJRApsc2ouSJCdnMeZwB0DhbtHAtRpZNZCdlbRnHIgcRKzdE1g0iOGg644fzjOBcdOz9cPw==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.9.tgz", + "integrity": "sha512-WwMLAg2MvJmt/rKEVQBBhIVffMmnilX4oe0sRe7iPOHIGsqpruFHHdrfj4O1CMMtgMtCU4oPafZjDPCRgO57Wg==", "requires": { "@babel/helper-validator-identifier": "^7.18.6", "to-fast-properties": "^2.0.0" @@ -1108,11 +1108,11 @@ } }, "@babel/generator": { - "version": "7.18.7", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.18.7.tgz", - "integrity": "sha512-shck+7VLlY72a2w9c3zYWuE1pwOKEiQHV7GTUbSnhyl5eu3i04t30tBY82ZRWrDfo3gkakCFtevExnxbkf2a3A==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.18.9.tgz", + "integrity": "sha512-wt5Naw6lJrL1/SGkipMiFxJjtyczUWTP38deiP1PO60HsBjDeKk08CGC3S8iVuvf0FmTdgKwU1KIXzSKL1G0Ug==", "requires": { - "@babel/types": "^7.18.7", + "@babel/types": "^7.18.9", "@jridgewell/gen-mapping": "^0.3.2", "jsesc": "^2.5.1" } @@ -1126,31 +1126,31 @@ } }, "@babel/helper-create-class-features-plugin": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.18.6.tgz", - "integrity": "sha512-YfDzdnoxHGV8CzqHGyCbFvXg5QESPFkXlHtvdCkesLjjVMT2Adxe4FGUR5ChIb3DxSaXO12iIOCWoXdsUVwnqw==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.18.9.tgz", + "integrity": "sha512-WvypNAYaVh23QcjpMR24CwZY2Nz6hqdOcFdPbNpV56hL5H6KiFheO7Xm1aPdlLQ7d5emYZX7VZwPp9x3z+2opw==", "requires": { "@babel/helper-annotate-as-pure": "^7.18.6", - "@babel/helper-environment-visitor": "^7.18.6", - "@babel/helper-function-name": "^7.18.6", - "@babel/helper-member-expression-to-functions": "^7.18.6", + "@babel/helper-environment-visitor": "^7.18.9", + "@babel/helper-function-name": "^7.18.9", + "@babel/helper-member-expression-to-functions": "^7.18.9", "@babel/helper-optimise-call-expression": "^7.18.6", - "@babel/helper-replace-supers": "^7.18.6", + "@babel/helper-replace-supers": "^7.18.9", "@babel/helper-split-export-declaration": "^7.18.6" } }, "@babel/helper-environment-visitor": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.18.6.tgz", - "integrity": "sha512-8n6gSfn2baOY+qlp+VSzsosjCVGFqWKmDF0cCWOybh52Dw3SEyoWR1KrhMJASjLwIEkkAufZ0xvr+SxLHSpy2Q==" + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.18.9.tgz", + "integrity": "sha512-3r/aACDJ3fhQ/EVgFy0hpj8oHyHpQc+LPtJoY9SzTThAsStm4Ptegq92vqKoE3vD706ZVFWITnMnxucw+S9Ipg==" }, "@babel/helper-function-name": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.18.6.tgz", - "integrity": "sha512-0mWMxV1aC97dhjCah5U5Ua7668r5ZmSC2DLfH2EZnf9c3/dHZKiFa5pRLMH5tjSl471tY6496ZWk/kjNONBxhw==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.18.9.tgz", + "integrity": "sha512-fJgWlZt7nxGksJS9a0XdSaI4XvpExnNIgRP+rVefWh5U7BL8pPuir6SJUmFKRfjWQ51OtWSzwOxhaH/EBWWc0A==", "requires": { "@babel/template": "^7.18.6", - "@babel/types": "^7.18.6" + "@babel/types": "^7.18.9" } }, "@babel/helper-hoist-variables": { @@ -1162,11 +1162,11 @@ } }, "@babel/helper-member-expression-to-functions": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.18.6.tgz", - "integrity": "sha512-CeHxqwwipekotzPDUuJOfIMtcIHBuc7WAzLmTYWctVigqS5RktNMQ5bEwQSuGewzYnCtTWa3BARXeiLxDTv+Ng==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.18.9.tgz", + "integrity": "sha512-RxifAh2ZoVU67PyKIO4AMi1wTenGfMR/O/ae0CCRqwgBAt5v7xjdtRw7UoSbsreKrQn5t7r89eruK/9JjYHuDg==", "requires": { - "@babel/types": "^7.18.6" + "@babel/types": "^7.18.9" } }, "@babel/helper-optimise-call-expression": { @@ -1178,20 +1178,20 @@ } }, "@babel/helper-plugin-utils": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.18.6.tgz", - "integrity": "sha512-gvZnm1YAAxh13eJdkb9EWHBnF3eAub3XTLCZEehHT2kWxiKVRL64+ae5Y6Ivne0mVHmMYKT+xWgZO+gQhuLUBg==" + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.18.9.tgz", + "integrity": "sha512-aBXPT3bmtLryXaoJLyYPXPlSD4p1ld9aYeR+sJNOZjJJGiOpb+fKfh3NkcCu7J54nUJwCERPBExCCpyCOHnu/w==" }, "@babel/helper-replace-supers": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.18.6.tgz", - "integrity": "sha512-fTf7zoXnUGl9gF25fXCWE26t7Tvtyn6H4hkLSYhATwJvw2uYxd3aoXplMSe0g9XbwK7bmxNes7+FGO0rB/xC0g==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.18.9.tgz", + "integrity": "sha512-dNsWibVI4lNT6HiuOIBr1oyxo40HvIVmbwPUm3XZ7wMh4k2WxrxTqZwSqw/eEmXDS9np0ey5M2bz9tBmO9c+YQ==", "requires": { - "@babel/helper-environment-visitor": "^7.18.6", - "@babel/helper-member-expression-to-functions": "^7.18.6", + "@babel/helper-environment-visitor": "^7.18.9", + "@babel/helper-member-expression-to-functions": "^7.18.9", "@babel/helper-optimise-call-expression": "^7.18.6", - "@babel/traverse": "^7.18.6", - "@babel/types": "^7.18.6" + "@babel/traverse": "^7.18.9", + "@babel/types": "^7.18.9" } }, "@babel/helper-split-export-declaration": { @@ -1218,9 +1218,9 @@ } }, "@babel/parser": { - "version": "7.18.8", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.18.8.tgz", - "integrity": "sha512-RSKRfYX20dyH+elbJK2uqAkVyucL+xXzhqlMD5/ZXx+dAAwpyB7HsvnHe/ZUGOF+xLr5Wx9/JoXVTj6BQE2/oA==" + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.18.9.tgz", + "integrity": "sha512-9uJveS9eY9DJ0t64YbIBZICtJy8a5QrDEVdiLCG97fVLpDTpGX7t8mMSb6OWw6Lrnjqj4O8zwjELX3dhoMgiBg==" }, "@babel/template": { "version": "7.18.6", @@ -1233,26 +1233,26 @@ } }, "@babel/traverse": { - "version": "7.18.8", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.18.8.tgz", - "integrity": "sha512-UNg/AcSySJYR/+mIcJQDCv00T+AqRO7j/ZEJLzpaYtgM48rMg5MnkJgyNqkzo88+p4tfRvZJCEiwwfG6h4jkRg==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.18.9.tgz", + "integrity": "sha512-LcPAnujXGwBgv3/WHv01pHtb2tihcyW1XuL9wd7jqh1Z8AQkTd+QVjMrMijrln0T7ED3UXLIy36P9Ao7W75rYg==", "requires": { "@babel/code-frame": "^7.18.6", - "@babel/generator": "^7.18.7", - "@babel/helper-environment-visitor": "^7.18.6", - "@babel/helper-function-name": "^7.18.6", + "@babel/generator": "^7.18.9", + "@babel/helper-environment-visitor": "^7.18.9", + "@babel/helper-function-name": "^7.18.9", "@babel/helper-hoist-variables": "^7.18.6", "@babel/helper-split-export-declaration": "^7.18.6", - "@babel/parser": "^7.18.8", - "@babel/types": "^7.18.8", + "@babel/parser": "^7.18.9", + "@babel/types": "^7.18.9", "debug": "^4.1.0", "globals": "^11.1.0" } }, "@babel/types": { - "version": "7.18.8", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.8.tgz", - "integrity": "sha512-qwpdsmraq0aJ3osLJRApsc2ouSJCdnMeZwB0DhbtHAtRpZNZCdlbRnHIgcRKzdE1g0iOGg644fzjOBcdOz9cPw==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.9.tgz", + "integrity": "sha512-WwMLAg2MvJmt/rKEVQBBhIVffMmnilX4oe0sRe7iPOHIGsqpruFHHdrfj4O1CMMtgMtCU4oPafZjDPCRgO57Wg==", "requires": { "@babel/helper-validator-identifier": "^7.18.6", "to-fast-properties": "^2.0.0" @@ -1419,9 +1419,9 @@ }, "dependencies": { "@babel/helper-plugin-utils": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.18.6.tgz", - "integrity": "sha512-gvZnm1YAAxh13eJdkb9EWHBnF3eAub3XTLCZEehHT2kWxiKVRL64+ae5Y6Ivne0mVHmMYKT+xWgZO+gQhuLUBg==" + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.18.9.tgz", + "integrity": "sha512-aBXPT3bmtLryXaoJLyYPXPlSD4p1ld9aYeR+sJNOZjJJGiOpb+fKfh3NkcCu7J54nUJwCERPBExCCpyCOHnu/w==" }, "@babel/helper-validator-option": { "version": "7.18.6", @@ -1439,9 +1439,9 @@ } }, "@babel/runtime-corejs3": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/runtime-corejs3/-/runtime-corejs3-7.18.6.tgz", - "integrity": "sha512-cOu5wH2JFBgMjje+a+fz2JNIWU4GzYpl05oSob3UDvBEh6EuIn+TXFHMmBbhSb+k/4HMzgKCQfEEDArAWNF9Cw==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/runtime-corejs3/-/runtime-corejs3-7.18.9.tgz", + "integrity": "sha512-qZEWeccZCrHA2Au4/X05QW5CMdm4VjUDCrGq5gf1ZDcM4hRqreKrtwAn7yci9zfgAS9apvnsFXiGBHBAxZdK9A==", "requires": { "core-js-pure": "^3.20.2", "regenerator-runtime": "^0.13.4" @@ -1692,214 +1692,60 @@ } }, "@gatsbyjs/parcel-namer-relative-to-cwd": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/@gatsbyjs/parcel-namer-relative-to-cwd/-/parcel-namer-relative-to-cwd-1.3.2.tgz", - "integrity": "sha512-jiYGiq8Zk21x2IIWbsLQ0GqgGJyKjj+/4jYwr5msD5ORB/JAZLk4IDrMKZ9rFXkNPq/bRV57ub0k/NvRMELfLQ==", + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/@gatsbyjs/parcel-namer-relative-to-cwd/-/parcel-namer-relative-to-cwd-1.4.0.tgz", + "integrity": "sha512-oXhiaPtYTGYqGZlazYRUabWVHWx5z6sAyBVLhUnpsKcBsK815cET+mjeWDKpmvJmFTKHC72Bvy1WIEnW3++YxA==", "requires": { "@babel/runtime": "^7.18.0", "@parcel/namer-default": "2.6.2", - "@parcel/plugin": "2.6.0", - "gatsby-core-utils": "^3.18.1" + "@parcel/plugin": "2.6.2", + "gatsby-core-utils": "^3.19.0" }, "dependencies": { "@babel/runtime": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.18.6.tgz", - "integrity": "sha512-t9wi7/AW6XtKahAe20Yw0/mMljKq0B1r2fPdvaAdV/KPDZewFXdaaa6K7lxmZBZ8FBNpCiAT6iHPmd6QO9bKfQ==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.18.9.tgz", + "integrity": "sha512-lkqXDcvlFT5rvEjiu6+QYO+1GXrEHRo2LOtS7E4GtX5ESIZOgepqsZBVIj6Pv+a6zqsya9VCgiK1KAK4BvJDAw==", "requires": { "regenerator-runtime": "^0.13.4" } }, "@lmdb/lmdb-darwin-arm64": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-arm64/-/lmdb-darwin-arm64-2.5.2.tgz", - "integrity": "sha512-+F8ioQIUN68B4UFiIBYu0QQvgb9FmlKw2ctQMSBfW2QBrZIxz9vD9jCGqTCPqZBRbPHAS/vG1zSXnKqnS2ch/A==", + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-arm64/-/lmdb-darwin-arm64-2.5.3.tgz", + "integrity": "sha512-RXwGZ/0eCqtCY8FLTM/koR60w+MXyvBUpToXiIyjOcBnC81tAlTUHrRUavCEWPI9zc9VgvpK3+cbumPyR8BSuA==", "optional": true }, "@lmdb/lmdb-darwin-x64": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-x64/-/lmdb-darwin-x64-2.5.2.tgz", - "integrity": "sha512-KvPH56KRLLx4KSfKBx0m1r7GGGUMXm0jrKmNE7plbHlesZMuPJICtn07HYgQhj1LNsK7Yqwuvnqh1QxhJnF1EA==", + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-x64/-/lmdb-darwin-x64-2.5.3.tgz", + "integrity": "sha512-337dNzh5yCdNCTk8kPfoU7jR3otibSlPDGW0vKZT97rKnQMb9tNdto3RtWoGPsQ8hKmlRZpojOJtmwjncq1MoA==", "optional": true }, "@lmdb/lmdb-linux-arm": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm/-/lmdb-linux-arm-2.5.2.tgz", - "integrity": "sha512-5kQAP21hAkfW5Bl+e0P57dV4dGYnkNIpR7f/GAh6QHlgXx+vp/teVj4PGRZaKAvt0GX6++N6hF8NnGElLDuIDw==", + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm/-/lmdb-linux-arm-2.5.3.tgz", + "integrity": "sha512-mU2HFJDGwECkoD9dHQEfeTG5mp8hNS2BCfwoiOpVPMeapjYpQz9Uw3FkUjRZ4dGHWKbin40oWHuL0bk2bCx+Sg==", "optional": true }, "@lmdb/lmdb-linux-arm64": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm64/-/lmdb-linux-arm64-2.5.2.tgz", - "integrity": "sha512-aLl89VHL/wjhievEOlPocoefUyWdvzVrcQ/MHQYZm2JfV1jUsrbr/ZfkPPUFvZBf+VSE+Q0clWs9l29PCX1hTQ==", + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm64/-/lmdb-linux-arm64-2.5.3.tgz", + "integrity": "sha512-VJw60Mdgb4n+L0fO1PqfB0C7TyEQolJAC8qpqvG3JoQwvyOv6LH7Ib/WE3wxEW9nuHmVz9jkK7lk5HfWWgoO1Q==", "optional": true }, "@lmdb/lmdb-linux-x64": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-x64/-/lmdb-linux-x64-2.5.2.tgz", - "integrity": "sha512-xUdUfwDJLGjOUPH3BuPBt0NlIrR7f/QHKgu3GZIXswMMIihAekj2i97oI0iWG5Bok/b+OBjHPfa8IU9velnP/Q==", + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-x64/-/lmdb-linux-x64-2.5.3.tgz", + "integrity": "sha512-qaReO5aV8griBDsBr8uBF/faO3ieGjY1RY4p8JvTL6Mu1ylLrTVvOONqKFlNaCwrmUjWw5jnf7VafxDAeQHTow==", "optional": true }, "@lmdb/lmdb-win32-x64": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-win32-x64/-/lmdb-win32-x64-2.5.2.tgz", - "integrity": "sha512-zrBczSbXKxEyK2ijtbRdICDygRqWSRPpZMN5dD1T8VMEW5RIhIbwFWw2phDRXuBQdVDpSjalCIUMWMV2h3JaZA==", + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-win32-x64/-/lmdb-win32-x64-2.5.3.tgz", + "integrity": "sha512-cK+Elf3RjEzrm3SerAhrFWL5oQAsZSJ/LmjL1joIpTfEP1etJJ9CTRvdaV6XLYAxaEkfdhk/9hOvHLbR9yIhCA==", "optional": true }, - "@parcel/cache": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/@parcel/cache/-/cache-2.6.2.tgz", - "integrity": "sha512-hhJ6AsEGybeQZd9c/GYqfcKTgZKQXu3Xih6TlnP3gdR3KZoJOnb40ovHD1yYg4COvfcXThKP1cVJ18J6rcv3IA==", - "requires": { - "@parcel/fs": "2.6.2", - "@parcel/logger": "2.6.2", - "@parcel/utils": "2.6.2", - "lmdb": "2.5.2" - } - }, - "@parcel/codeframe": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/@parcel/codeframe/-/codeframe-2.6.2.tgz", - "integrity": "sha512-oFlHr6HCaYYsB4SHkU+gn9DKtbzvv3/4NdwMX0/6NAKyYVI7inEsXyPGw2Bbd2ZCFatW9QJZUETF0etvh5AEfQ==", - "requires": { - "chalk": "^4.1.0" - } - }, - "@parcel/diagnostic": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/@parcel/diagnostic/-/diagnostic-2.6.2.tgz", - "integrity": "sha512-3ODSBkKVihENU763z1/1DhGAWFhYWRxOCOShC72KXp+GFnSgGiBsxclu8NBa/N948Rzp8lqQI8U1nLcKkh0O/w==", - "requires": { - "@mischnic/json-sourcemap": "^0.1.0", - "nullthrows": "^1.1.1" - } - }, - "@parcel/events": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/@parcel/events/-/events-2.6.2.tgz", - "integrity": "sha512-IaCjOeA5ercdFVi1EZOmUHhGfIysmCUgc2Th9hMugSFO0I3GzRsBcAdP6XPfWm+TV6sQ/qZRfdk/drUxoAupnw==" - }, - "@parcel/fs": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/@parcel/fs/-/fs-2.6.2.tgz", - "integrity": "sha512-mIhqdF3tjgeoIGqW7Nc/xfM2ClID7o8livwUe5lpQEP+ZaIBiMigXs6ckv3WToCACK+3uylrSD2A/HmlhrxMqQ==", - "requires": { - "@parcel/fs-search": "2.6.2", - "@parcel/types": "2.6.2", - "@parcel/utils": "2.6.2", - "@parcel/watcher": "^2.0.0", - "@parcel/workers": "2.6.2" - } - }, - "@parcel/fs-search": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/@parcel/fs-search/-/fs-search-2.6.2.tgz", - "integrity": "sha512-4STid1zqtGnmGjHD/2TG2g/zPDiCTtE3IAS24QYH3eiUAz2uoKGgEqd2tZbZ2yI96jtCuIhC1bzVu8Hbykls7w==", - "requires": { - "detect-libc": "^1.0.3" - } - }, - "@parcel/hash": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/@parcel/hash/-/hash-2.6.2.tgz", - "integrity": "sha512-tFB+cJU1Wqag6WyJgsmx3nx+xhmjcNZqtWh/MtK1lHNnZdDRk6bjr7SapnygBwruz+SmSt5bbdVThcpk2dRCcA==", - "requires": { - "detect-libc": "^1.0.3", - "xxhash-wasm": "^0.4.2" - } - }, - "@parcel/logger": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/@parcel/logger/-/logger-2.6.2.tgz", - "integrity": "sha512-Sz5YGCj1DbEiX0/G8Uw97LLZ0uEK+qtWcRAkHNpJpeMiSqDiRNevxXltz42EcLo+oCh4d4wyiVzwi9mNwzhS/Q==", - "requires": { - "@parcel/diagnostic": "2.6.2", - "@parcel/events": "2.6.2" - } - }, - "@parcel/markdown-ansi": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/@parcel/markdown-ansi/-/markdown-ansi-2.6.2.tgz", - "integrity": "sha512-N/h9J4eibhc+B+krzvPMzFUWL37GudBIZBa7XSLkcuH6MnYYfh6rrMvhIyyESwk6VkcZNVzAeZrGQqxEs0dHDQ==", - "requires": { - "chalk": "^4.1.0" - } - }, - "@parcel/namer-default": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/@parcel/namer-default/-/namer-default-2.6.2.tgz", - "integrity": "sha512-mp7bx/BQaIuohmZP0uE+gAmDBzzH0Yu8F4yCtE611lc6i0mou+nWRhzyKLNC/ieuI8DB3BFh2QQKeTxJn4W0qg==", - "requires": { - "@parcel/diagnostic": "2.6.2", - "@parcel/plugin": "2.6.2", - "nullthrows": "^1.1.1" - }, - "dependencies": { - "@parcel/plugin": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/@parcel/plugin/-/plugin-2.6.2.tgz", - "integrity": "sha512-wbbWsM23Pr+8xtLSvf+UopXdVYlpKCCx6PuuZaZcKo+9IcDCWoGXD4M8Kkz14qBmkFn5uM00mULUqmVdSibB2w==", - "requires": { - "@parcel/types": "2.6.2" - } - } - } - }, - "@parcel/package-manager": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/@parcel/package-manager/-/package-manager-2.6.2.tgz", - "integrity": "sha512-xGMqTgnwTE3rgzYwUZMKxR8fzmP5iSYz/gj2H8FR3pEmwh/8xCMtNjTSth+hPVGuqgRZ6JxwpfdY/fXdZ61ViQ==", - "requires": { - "@parcel/diagnostic": "2.6.2", - "@parcel/fs": "2.6.2", - "@parcel/logger": "2.6.2", - "@parcel/types": "2.6.2", - "@parcel/utils": "2.6.2", - "@parcel/workers": "2.6.2", - "semver": "^5.7.1" - } - }, - "@parcel/types": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/@parcel/types/-/types-2.6.2.tgz", - "integrity": "sha512-MV8BFpCIs2jMUvK2RHqzkoiuOQ//JIbrD1zocA2YRW3zuPL/iABvbAABJoXpoPCKikVWOoCWASgBfWQo26VvJQ==", - "requires": { - "@parcel/cache": "2.6.2", - "@parcel/diagnostic": "2.6.2", - "@parcel/fs": "2.6.2", - "@parcel/package-manager": "2.6.2", - "@parcel/source-map": "^2.0.0", - "@parcel/workers": "2.6.2", - "utility-types": "^3.10.0" - } - }, - "@parcel/utils": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/@parcel/utils/-/utils-2.6.2.tgz", - "integrity": "sha512-Ug7hpRxjgbY5AopW55nY7MmGMVmwmN+ihfCmxJkBUoESTG/3iq8uME7GjyOgW5DkQc2K7q62i8y8N0wCJT1u4Q==", - "requires": { - "@parcel/codeframe": "2.6.2", - "@parcel/diagnostic": "2.6.2", - "@parcel/hash": "2.6.2", - "@parcel/logger": "2.6.2", - "@parcel/markdown-ansi": "2.6.2", - "@parcel/source-map": "^2.0.0", - "chalk": "^4.1.0" - } - }, - "@parcel/workers": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/@parcel/workers/-/workers-2.6.2.tgz", - "integrity": "sha512-wBgUjJQm+lDd12fPRUmk09+ujTA9DgwPdqylSFK0OtI/yT6A+2kArUqjp8IwWo2tCJXoMzXBne2XQIWKqMiN4Q==", - "requires": { - "@parcel/diagnostic": "2.6.2", - "@parcel/logger": "2.6.2", - "@parcel/types": "2.6.2", - "@parcel/utils": "2.6.2", - "chrome-trace-event": "^1.0.2", - "nullthrows": "^1.1.1" - } - }, "fs-extra": { "version": "10.1.0", "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz", @@ -1911,9 +1757,9 @@ } }, "gatsby-core-utils": { - "version": "3.18.1", - "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.18.1.tgz", - "integrity": "sha512-sJTxRqizLxYy/tSFk0ydfqEZ3ek1So9HDVUa39F6Oi8XuPCBTFzaAooUvowKGneI5YUbdk5y4VO4ybwVUynntw==", + "version": "3.19.0", + "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.19.0.tgz", + "integrity": "sha512-cjXs9DsXkPZt+UdiLHxtq+rGMGVrcnM0KwkawlruvPchI7lqGNv9CScqlvYPxx1dBhu3zSZS26EBALMlFhyOJA==", "requires": { "@babel/runtime": "^7.15.4", "ci-info": "2.0.0", @@ -1930,62 +1776,6 @@ "resolve-from": "^5.0.0", "tmp": "^0.2.1", "xdg-basedir": "^4.0.0" - }, - "dependencies": { - "@lmdb/lmdb-darwin-arm64": { - "version": "2.5.3", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-arm64/-/lmdb-darwin-arm64-2.5.3.tgz", - "integrity": "sha512-RXwGZ/0eCqtCY8FLTM/koR60w+MXyvBUpToXiIyjOcBnC81tAlTUHrRUavCEWPI9zc9VgvpK3+cbumPyR8BSuA==", - "optional": true - }, - "@lmdb/lmdb-darwin-x64": { - "version": "2.5.3", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-x64/-/lmdb-darwin-x64-2.5.3.tgz", - "integrity": "sha512-337dNzh5yCdNCTk8kPfoU7jR3otibSlPDGW0vKZT97rKnQMb9tNdto3RtWoGPsQ8hKmlRZpojOJtmwjncq1MoA==", - "optional": true - }, - "@lmdb/lmdb-linux-arm": { - "version": "2.5.3", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm/-/lmdb-linux-arm-2.5.3.tgz", - "integrity": "sha512-mU2HFJDGwECkoD9dHQEfeTG5mp8hNS2BCfwoiOpVPMeapjYpQz9Uw3FkUjRZ4dGHWKbin40oWHuL0bk2bCx+Sg==", - "optional": true - }, - "@lmdb/lmdb-linux-arm64": { - "version": "2.5.3", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm64/-/lmdb-linux-arm64-2.5.3.tgz", - "integrity": "sha512-VJw60Mdgb4n+L0fO1PqfB0C7TyEQolJAC8qpqvG3JoQwvyOv6LH7Ib/WE3wxEW9nuHmVz9jkK7lk5HfWWgoO1Q==", - "optional": true - }, - "@lmdb/lmdb-linux-x64": { - "version": "2.5.3", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-x64/-/lmdb-linux-x64-2.5.3.tgz", - "integrity": "sha512-qaReO5aV8griBDsBr8uBF/faO3ieGjY1RY4p8JvTL6Mu1ylLrTVvOONqKFlNaCwrmUjWw5jnf7VafxDAeQHTow==", - "optional": true - }, - "@lmdb/lmdb-win32-x64": { - "version": "2.5.3", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-win32-x64/-/lmdb-win32-x64-2.5.3.tgz", - "integrity": "sha512-cK+Elf3RjEzrm3SerAhrFWL5oQAsZSJ/LmjL1joIpTfEP1etJJ9CTRvdaV6XLYAxaEkfdhk/9hOvHLbR9yIhCA==", - "optional": true - }, - "lmdb": { - "version": "2.5.3", - "resolved": "https://registry.npmjs.org/lmdb/-/lmdb-2.5.3.tgz", - "integrity": "sha512-iBA0cb13CobBSoGJLfZgnrykLlfJipDAnvtf+YwIqqzBEsTeQYsXrHaSBkaHd5wCWeabwrNvhjZoFMUrlo+eLw==", - "requires": { - "@lmdb/lmdb-darwin-arm64": "2.5.3", - "@lmdb/lmdb-darwin-x64": "2.5.3", - "@lmdb/lmdb-linux-arm": "2.5.3", - "@lmdb/lmdb-linux-arm64": "2.5.3", - "@lmdb/lmdb-linux-x64": "2.5.3", - "@lmdb/lmdb-win32-x64": "2.5.3", - "msgpackr": "^1.5.4", - "node-addon-api": "^4.3.0", - "node-gyp-build-optional-packages": "5.0.3", - "ordered-binary": "^1.2.4", - "weak-lru-cache": "^1.2.2" - } - } } }, "got": { @@ -2016,16 +1806,16 @@ } }, "lmdb": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/lmdb/-/lmdb-2.5.2.tgz", - "integrity": "sha512-V5V5Xa2Hp9i2XsbDALkBTeHXnBXh/lEmk9p22zdr7jtuOIY9TGhjK6vAvTpOOx9IKU4hJkRWZxn/HsvR1ELLtA==", + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/lmdb/-/lmdb-2.5.3.tgz", + "integrity": "sha512-iBA0cb13CobBSoGJLfZgnrykLlfJipDAnvtf+YwIqqzBEsTeQYsXrHaSBkaHd5wCWeabwrNvhjZoFMUrlo+eLw==", "requires": { - "@lmdb/lmdb-darwin-arm64": "2.5.2", - "@lmdb/lmdb-darwin-x64": "2.5.2", - "@lmdb/lmdb-linux-arm": "2.5.2", - "@lmdb/lmdb-linux-arm64": "2.5.2", - "@lmdb/lmdb-linux-x64": "2.5.2", - "@lmdb/lmdb-win32-x64": "2.5.2", + "@lmdb/lmdb-darwin-arm64": "2.5.3", + "@lmdb/lmdb-darwin-x64": "2.5.3", + "@lmdb/lmdb-linux-arm": "2.5.3", + "@lmdb/lmdb-linux-arm64": "2.5.3", + "@lmdb/lmdb-linux-x64": "2.5.3", + "@lmdb/lmdb-win32-x64": "2.5.3", "msgpackr": "^1.5.4", "node-addon-api": "^4.3.0", "node-gyp-build-optional-packages": "5.0.3", @@ -2038,21 +1828,11 @@ "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-4.3.0.tgz", "integrity": "sha512-73sE9+3UaLYYFmDsFZnqCInzPyh3MqIwZO9cw58yIqAZhONrrabrYyYe3TuIqtIiOuTXVhsGau8hcrhhwSsDIQ==" }, - "node-gyp-build-optional-packages": { - "version": "5.0.3", - "resolved": "https://registry.npmjs.org/node-gyp-build-optional-packages/-/node-gyp-build-optional-packages-5.0.3.tgz", - "integrity": "sha512-k75jcVzk5wnnc/FMxsf4udAoTEUv2jY3ycfdSd3yWu6Cnd1oee6/CfZJApyscA4FJOmdoixWwiwOyf16RzD5JA==" - }, "resolve-from": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==" }, - "semver": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", - "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==" - }, "universalify": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz", @@ -3342,39 +3122,39 @@ } }, "@lmdb/lmdb-darwin-arm64": { - "version": "2.5.3", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-arm64/-/lmdb-darwin-arm64-2.5.3.tgz", - "integrity": "sha512-RXwGZ/0eCqtCY8FLTM/koR60w+MXyvBUpToXiIyjOcBnC81tAlTUHrRUavCEWPI9zc9VgvpK3+cbumPyR8BSuA==", + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-arm64/-/lmdb-darwin-arm64-2.5.2.tgz", + "integrity": "sha512-+F8ioQIUN68B4UFiIBYu0QQvgb9FmlKw2ctQMSBfW2QBrZIxz9vD9jCGqTCPqZBRbPHAS/vG1zSXnKqnS2ch/A==", "optional": true }, "@lmdb/lmdb-darwin-x64": { - "version": "2.5.3", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-x64/-/lmdb-darwin-x64-2.5.3.tgz", - "integrity": "sha512-337dNzh5yCdNCTk8kPfoU7jR3otibSlPDGW0vKZT97rKnQMb9tNdto3RtWoGPsQ8hKmlRZpojOJtmwjncq1MoA==", + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-x64/-/lmdb-darwin-x64-2.5.2.tgz", + "integrity": "sha512-KvPH56KRLLx4KSfKBx0m1r7GGGUMXm0jrKmNE7plbHlesZMuPJICtn07HYgQhj1LNsK7Yqwuvnqh1QxhJnF1EA==", "optional": true }, "@lmdb/lmdb-linux-arm": { - "version": "2.5.3", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm/-/lmdb-linux-arm-2.5.3.tgz", - "integrity": "sha512-mU2HFJDGwECkoD9dHQEfeTG5mp8hNS2BCfwoiOpVPMeapjYpQz9Uw3FkUjRZ4dGHWKbin40oWHuL0bk2bCx+Sg==", + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm/-/lmdb-linux-arm-2.5.2.tgz", + "integrity": "sha512-5kQAP21hAkfW5Bl+e0P57dV4dGYnkNIpR7f/GAh6QHlgXx+vp/teVj4PGRZaKAvt0GX6++N6hF8NnGElLDuIDw==", "optional": true }, "@lmdb/lmdb-linux-arm64": { - "version": "2.5.3", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm64/-/lmdb-linux-arm64-2.5.3.tgz", - "integrity": "sha512-VJw60Mdgb4n+L0fO1PqfB0C7TyEQolJAC8qpqvG3JoQwvyOv6LH7Ib/WE3wxEW9nuHmVz9jkK7lk5HfWWgoO1Q==", + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm64/-/lmdb-linux-arm64-2.5.2.tgz", + "integrity": "sha512-aLl89VHL/wjhievEOlPocoefUyWdvzVrcQ/MHQYZm2JfV1jUsrbr/ZfkPPUFvZBf+VSE+Q0clWs9l29PCX1hTQ==", "optional": true }, "@lmdb/lmdb-linux-x64": { - "version": "2.5.3", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-x64/-/lmdb-linux-x64-2.5.3.tgz", - "integrity": "sha512-qaReO5aV8griBDsBr8uBF/faO3ieGjY1RY4p8JvTL6Mu1ylLrTVvOONqKFlNaCwrmUjWw5jnf7VafxDAeQHTow==", + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-x64/-/lmdb-linux-x64-2.5.2.tgz", + "integrity": "sha512-xUdUfwDJLGjOUPH3BuPBt0NlIrR7f/QHKgu3GZIXswMMIihAekj2i97oI0iWG5Bok/b+OBjHPfa8IU9velnP/Q==", "optional": true }, "@lmdb/lmdb-win32-x64": { - "version": "2.5.3", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-win32-x64/-/lmdb-win32-x64-2.5.3.tgz", - "integrity": "sha512-cK+Elf3RjEzrm3SerAhrFWL5oQAsZSJ/LmjL1joIpTfEP1etJJ9CTRvdaV6XLYAxaEkfdhk/9hOvHLbR9yIhCA==", + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-win32-x64/-/lmdb-win32-x64-2.5.2.tgz", + "integrity": "sha512-zrBczSbXKxEyK2ijtbRdICDygRqWSRPpZMN5dD1T8VMEW5RIhIbwFWw2phDRXuBQdVDpSjalCIUMWMV2h3JaZA==", "optional": true }, "@mdx-js/mdx": { @@ -3591,43 +3371,42 @@ } }, "@parcel/bundler-default": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/bundler-default/-/bundler-default-2.6.0.tgz", - "integrity": "sha512-AplEdGm/odV7yGmoeOnglxnY31WlNB5EqGLFGxkgs7uwDaTWoTX/9SWPG6xfvirhjDpms8sLSiVuBdFRCCLtNA==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/bundler-default/-/bundler-default-2.6.2.tgz", + "integrity": "sha512-XIa3had/MIaTGgRFkHApXwytYs77k4geaNcmlb6nzmAABcYjW1CLYh83Zt0AbzLFsDT9ZcRY3u2UjhNf6efSaw==", "requires": { - "@parcel/diagnostic": "2.6.0", - "@parcel/hash": "2.6.0", - "@parcel/plugin": "2.6.0", - "@parcel/utils": "2.6.0", + "@parcel/diagnostic": "2.6.2", + "@parcel/hash": "2.6.2", + "@parcel/plugin": "2.6.2", + "@parcel/utils": "2.6.2", "nullthrows": "^1.1.1" } }, "@parcel/cache": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/cache/-/cache-2.6.0.tgz", - "integrity": "sha512-4vbD5uSuf+kRnrFesKhpn0AKnOw8u2UlvCyrplYmp1g9bNAkIooC/nDGdmkb/9SviPEbni9PEanQEHDU2+slpA==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/cache/-/cache-2.6.2.tgz", + "integrity": "sha512-hhJ6AsEGybeQZd9c/GYqfcKTgZKQXu3Xih6TlnP3gdR3KZoJOnb40ovHD1yYg4COvfcXThKP1cVJ18J6rcv3IA==", "requires": { - "@parcel/fs": "2.6.0", - "@parcel/logger": "2.6.0", - "@parcel/utils": "2.6.0", - "lmdb": "2.3.10" + "@parcel/fs": "2.6.2", + "@parcel/logger": "2.6.2", + "@parcel/utils": "2.6.2", + "lmdb": "2.5.2" }, "dependencies": { "lmdb": { - "version": "2.3.10", - "resolved": "https://registry.npmjs.org/lmdb/-/lmdb-2.3.10.tgz", - "integrity": "sha512-GtH+nStn9V59CfYeQ5ddx6YTfuFCmu86UJojIjJAweG+/Fm0PDknuk3ovgYDtY/foMeMdZa8/P7oSljW/d5UPw==", - "requires": { - "lmdb-darwin-arm64": "2.3.10", - "lmdb-darwin-x64": "2.3.10", - "lmdb-linux-arm": "2.3.10", - "lmdb-linux-arm64": "2.3.10", - "lmdb-linux-x64": "2.3.10", - "lmdb-win32-x64": "2.3.10", + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/lmdb/-/lmdb-2.5.2.tgz", + "integrity": "sha512-V5V5Xa2Hp9i2XsbDALkBTeHXnBXh/lEmk9p22zdr7jtuOIY9TGhjK6vAvTpOOx9IKU4hJkRWZxn/HsvR1ELLtA==", + "requires": { + "@lmdb/lmdb-darwin-arm64": "2.5.2", + "@lmdb/lmdb-darwin-x64": "2.5.2", + "@lmdb/lmdb-linux-arm": "2.5.2", + "@lmdb/lmdb-linux-arm64": "2.5.2", + "@lmdb/lmdb-linux-x64": "2.5.2", + "@lmdb/lmdb-win32-x64": "2.5.2", "msgpackr": "^1.5.4", - "nan": "^2.14.2", "node-addon-api": "^4.3.0", - "node-gyp-build-optional-packages": "^4.3.2", + "node-gyp-build-optional-packages": "5.0.3", "ordered-binary": "^1.2.4", "weak-lru-cache": "^1.2.2" } @@ -3640,40 +3419,40 @@ } }, "@parcel/codeframe": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/codeframe/-/codeframe-2.6.0.tgz", - "integrity": "sha512-yXXxrO9yyedHKpTwC+Af0+vPmQm+A9xeEhkt4f0yVg1n4t4yUIxYlTedzbM8ygZEEBtkXU9jJ+PkgXbfMf0dqw==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/codeframe/-/codeframe-2.6.2.tgz", + "integrity": "sha512-oFlHr6HCaYYsB4SHkU+gn9DKtbzvv3/4NdwMX0/6NAKyYVI7inEsXyPGw2Bbd2ZCFatW9QJZUETF0etvh5AEfQ==", "requires": { "chalk": "^4.1.0" } }, "@parcel/compressor-raw": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/compressor-raw/-/compressor-raw-2.6.0.tgz", - "integrity": "sha512-rtMU2mGl88bic6Xbq1u5L49bMK4s5185b0k7h3JRdS6/0rR+Xp4k/o9Wog+hHjK/s82z1eF9WmET779ZpIDIQQ==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/compressor-raw/-/compressor-raw-2.6.2.tgz", + "integrity": "sha512-P3c8jjV5HVs+fNDjhvq7PtHXNm687nit1iwTS5VAt+ScXKhKBhoIJ56q+9opcw0jnXVjAAgZqcRZ50oAJBGdKw==", "requires": { - "@parcel/plugin": "2.6.0" + "@parcel/plugin": "2.6.2" } }, "@parcel/core": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/core/-/core-2.6.0.tgz", - "integrity": "sha512-8OOWbPuxpFydpwNyKoz6d3e3O4DmxNYmMw4DXwrPSj/jyg7oa+SDtMT0/VXEhujE0HYkQPCHt4npRajkSuf99A==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/core/-/core-2.6.2.tgz", + "integrity": "sha512-JlKS3Ux0ngmdooSBbzQLShHJdsapF9E7TGMo1hFaHRquZip/DaqzvysYrgMJlDuCoLArciq5ei7ZKzGeK9zexA==", "requires": { "@mischnic/json-sourcemap": "^0.1.0", - "@parcel/cache": "2.6.0", - "@parcel/diagnostic": "2.6.0", - "@parcel/events": "2.6.0", - "@parcel/fs": "2.6.0", - "@parcel/graph": "2.6.0", - "@parcel/hash": "2.6.0", - "@parcel/logger": "2.6.0", - "@parcel/package-manager": "2.6.0", - "@parcel/plugin": "2.6.0", + "@parcel/cache": "2.6.2", + "@parcel/diagnostic": "2.6.2", + "@parcel/events": "2.6.2", + "@parcel/fs": "2.6.2", + "@parcel/graph": "2.6.2", + "@parcel/hash": "2.6.2", + "@parcel/logger": "2.6.2", + "@parcel/package-manager": "2.6.2", + "@parcel/plugin": "2.6.2", "@parcel/source-map": "^2.0.0", - "@parcel/types": "2.6.0", - "@parcel/utils": "2.6.0", - "@parcel/workers": "2.6.0", + "@parcel/types": "2.6.2", + "@parcel/utils": "2.6.2", + "@parcel/workers": "2.6.2", "abortcontroller-polyfill": "^1.1.9", "base-x": "^3.0.8", "browserslist": "^4.6.6", @@ -3699,118 +3478,126 @@ } }, "@parcel/diagnostic": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/diagnostic/-/diagnostic-2.6.0.tgz", - "integrity": "sha512-+p8gC2FKxSI2veD7SoaNlP572v4kw+nafCQEPDtJuzYYRqywYUGncch25dkpgNApB4W4cXVkZu3ZbtIpCAmjQQ==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/diagnostic/-/diagnostic-2.6.2.tgz", + "integrity": "sha512-3ODSBkKVihENU763z1/1DhGAWFhYWRxOCOShC72KXp+GFnSgGiBsxclu8NBa/N948Rzp8lqQI8U1nLcKkh0O/w==", "requires": { "@mischnic/json-sourcemap": "^0.1.0", "nullthrows": "^1.1.1" } }, "@parcel/events": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/events/-/events-2.6.0.tgz", - "integrity": "sha512-2WaKtBs4iYwS88j4zRdyTJTgh8iuY4E32FMmjzzbheqETs6I05gWuPReGukJYxk8vc0Ir7tbzp12oAfpgo0Y+g==" + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/events/-/events-2.6.2.tgz", + "integrity": "sha512-IaCjOeA5ercdFVi1EZOmUHhGfIysmCUgc2Th9hMugSFO0I3GzRsBcAdP6XPfWm+TV6sQ/qZRfdk/drUxoAupnw==" }, "@parcel/fs": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/fs/-/fs-2.6.0.tgz", - "integrity": "sha512-6vxtx5Zy6MvDvH1EPx9JxjKGF03bR7VE1dUf4HLeX2D8YmpL5hkHJnlRCFdcH08rzOVwaJLzg1QNtblWJXQ9CA==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/fs/-/fs-2.6.2.tgz", + "integrity": "sha512-mIhqdF3tjgeoIGqW7Nc/xfM2ClID7o8livwUe5lpQEP+ZaIBiMigXs6ckv3WToCACK+3uylrSD2A/HmlhrxMqQ==", "requires": { - "@parcel/fs-search": "2.6.0", - "@parcel/types": "2.6.0", - "@parcel/utils": "2.6.0", + "@parcel/fs-search": "2.6.2", + "@parcel/types": "2.6.2", + "@parcel/utils": "2.6.2", "@parcel/watcher": "^2.0.0", - "@parcel/workers": "2.6.0" + "@parcel/workers": "2.6.2" } }, "@parcel/fs-search": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/fs-search/-/fs-search-2.6.0.tgz", - "integrity": "sha512-1nXzM3H/cA4kzLKvDBvwmNisKCdRqlgkLXh+OR1Zu28Kn4W34KuJMcHWW8cC+WIuuKqDh5oo2WPsC5y65GXBKQ==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/fs-search/-/fs-search-2.6.2.tgz", + "integrity": "sha512-4STid1zqtGnmGjHD/2TG2g/zPDiCTtE3IAS24QYH3eiUAz2uoKGgEqd2tZbZ2yI96jtCuIhC1bzVu8Hbykls7w==", "requires": { "detect-libc": "^1.0.3" } }, "@parcel/graph": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/graph/-/graph-2.6.0.tgz", - "integrity": "sha512-rxrAzWm6rwbCRPbu0Z+zwMscpG8omffODniVWPlX2G0jgQGpjKsutBQ6RMfFIcfaQ4MzL3pIQOTf8bkjQOPsbg==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/graph/-/graph-2.6.2.tgz", + "integrity": "sha512-DPH4G/RBFJWayIN2fnhDXqhUw75n7k15YsGzdDKiXuwwz4wMOjoL4cyrI6zOf1SIyh3guRmeTYJ4jjPzwrLYww==", "requires": { - "@parcel/utils": "2.6.0", + "@parcel/utils": "2.6.2", "nullthrows": "^1.1.1" } }, "@parcel/hash": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/hash/-/hash-2.6.0.tgz", - "integrity": "sha512-YugWqhLxqK80Lo++3B3Kr5UPCHOdS8iI2zJ1jkzUeH9v6WUzbwWOnmPf6lN2S5m1BrIFFJd8Jc+CbEXWi8zoJA==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/hash/-/hash-2.6.2.tgz", + "integrity": "sha512-tFB+cJU1Wqag6WyJgsmx3nx+xhmjcNZqtWh/MtK1lHNnZdDRk6bjr7SapnygBwruz+SmSt5bbdVThcpk2dRCcA==", "requires": { "detect-libc": "^1.0.3", "xxhash-wasm": "^0.4.2" } }, "@parcel/logger": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/logger/-/logger-2.6.0.tgz", - "integrity": "sha512-J1/7kPfSGBvMKSZdi0WCNuN0fIeiWxifnDGn7W/K8KhD422YwFJA8N046ps8nkDOPIXf1osnIECNp4GIR9oSYw==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/logger/-/logger-2.6.2.tgz", + "integrity": "sha512-Sz5YGCj1DbEiX0/G8Uw97LLZ0uEK+qtWcRAkHNpJpeMiSqDiRNevxXltz42EcLo+oCh4d4wyiVzwi9mNwzhS/Q==", "requires": { - "@parcel/diagnostic": "2.6.0", - "@parcel/events": "2.6.0" + "@parcel/diagnostic": "2.6.2", + "@parcel/events": "2.6.2" } }, "@parcel/markdown-ansi": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/markdown-ansi/-/markdown-ansi-2.6.0.tgz", - "integrity": "sha512-fyjkrJQQSfKTUFTTasdZ6WrAkDoQ2+DYDjj+3p+RncYyrIa9zArKx4IiRiipsvNdtMvP0/hTdK8F3BOJ3KSU/g==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/markdown-ansi/-/markdown-ansi-2.6.2.tgz", + "integrity": "sha512-N/h9J4eibhc+B+krzvPMzFUWL37GudBIZBa7XSLkcuH6MnYYfh6rrMvhIyyESwk6VkcZNVzAeZrGQqxEs0dHDQ==", "requires": { "chalk": "^4.1.0" } }, "@parcel/namer-default": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/namer-default/-/namer-default-2.6.0.tgz", - "integrity": "sha512-r8O12r7ozJBctnFxVdXbf/fK97GIdNj3hiiUNWlXEmED9sw6ZPcChaLcfot0/443g8i87JDmSTKJ8js2tuz5XA==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/namer-default/-/namer-default-2.6.2.tgz", + "integrity": "sha512-mp7bx/BQaIuohmZP0uE+gAmDBzzH0Yu8F4yCtE611lc6i0mou+nWRhzyKLNC/ieuI8DB3BFh2QQKeTxJn4W0qg==", "requires": { - "@parcel/diagnostic": "2.6.0", - "@parcel/plugin": "2.6.0", + "@parcel/diagnostic": "2.6.2", + "@parcel/plugin": "2.6.2", "nullthrows": "^1.1.1" } }, "@parcel/node-resolver-core": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/node-resolver-core/-/node-resolver-core-2.6.0.tgz", - "integrity": "sha512-AJDj5DZbB58plv0li8bdVSD+zpnkHE36Om3TYyNn1jgXXwgBM64Er/9p8yQn356jBqTQMh7zlJqvbdIyOiMeMg==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/node-resolver-core/-/node-resolver-core-2.6.2.tgz", + "integrity": "sha512-4b2L5QRYlTybvv3+TIRtwg4PPJXy+cRShCBa8eu1K0Fj297Afe8MOZrcVV+RIr2KPMIRXcIJoqDmOhyci/DynA==", "requires": { - "@parcel/diagnostic": "2.6.0", - "@parcel/utils": "2.6.0", - "nullthrows": "^1.1.1" + "@parcel/diagnostic": "2.6.2", + "@parcel/utils": "2.6.2", + "nullthrows": "^1.1.1", + "semver": "^5.7.1" + }, + "dependencies": { + "semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==" + } } }, "@parcel/optimizer-terser": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/optimizer-terser/-/optimizer-terser-2.6.0.tgz", - "integrity": "sha512-oezRt6Lz/QqcVDXyMfFjzQc7n0ThJowLJ4Lyhu8rMh0ZJYzc4UCFCw/19d4nRnzE+Qg0vj3mQCpdkA9/64E44g==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/optimizer-terser/-/optimizer-terser-2.6.2.tgz", + "integrity": "sha512-ZSEVQ3G3zOiVPeHvH+BrHegZybrQj9kWQAaAA92leSqbvf6UaX4xqXbGRg2OttNFtbGYBzIl28Zm4t2SLeUIuA==", "requires": { - "@parcel/diagnostic": "2.6.0", - "@parcel/plugin": "2.6.0", + "@parcel/diagnostic": "2.6.2", + "@parcel/plugin": "2.6.2", "@parcel/source-map": "^2.0.0", - "@parcel/utils": "2.6.0", + "@parcel/utils": "2.6.2", "nullthrows": "^1.1.1", "terser": "^5.2.0" } }, "@parcel/package-manager": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/package-manager/-/package-manager-2.6.0.tgz", - "integrity": "sha512-AqFfdkbOw51q/3ia2mIsFTmrpYEyUb3k+2uYC5GsLMz3go6OGn7/Crz0lZLSclv5EtwpRg3TWr9yL7RekVN/Uw==", - "requires": { - "@parcel/diagnostic": "2.6.0", - "@parcel/fs": "2.6.0", - "@parcel/logger": "2.6.0", - "@parcel/types": "2.6.0", - "@parcel/utils": "2.6.0", - "@parcel/workers": "2.6.0", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/package-manager/-/package-manager-2.6.2.tgz", + "integrity": "sha512-xGMqTgnwTE3rgzYwUZMKxR8fzmP5iSYz/gj2H8FR3pEmwh/8xCMtNjTSth+hPVGuqgRZ6JxwpfdY/fXdZ61ViQ==", + "requires": { + "@parcel/diagnostic": "2.6.2", + "@parcel/fs": "2.6.2", + "@parcel/logger": "2.6.2", + "@parcel/types": "2.6.2", + "@parcel/utils": "2.6.2", + "@parcel/workers": "2.6.2", "semver": "^5.7.1" }, "dependencies": { @@ -3822,15 +3609,15 @@ } }, "@parcel/packager-js": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/packager-js/-/packager-js-2.6.0.tgz", - "integrity": "sha512-Uz3pqIFchFfKszWnNGDgIwM1uwHHJp7Dts6VzS9lf/2RbRgZT0fmce+NPgnVO5MMKBHzdvm32ShT6gFAABF5Vw==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/packager-js/-/packager-js-2.6.2.tgz", + "integrity": "sha512-fm5rKWtaExR0W+UEKWivXNPysRFxuBCdskdxDByb1J1JeGMvp7dJElbi8oXDAQM4MnM5EyG7cg47SlMZNTLm4A==", "requires": { - "@parcel/diagnostic": "2.6.0", - "@parcel/hash": "2.6.0", - "@parcel/plugin": "2.6.0", + "@parcel/diagnostic": "2.6.2", + "@parcel/hash": "2.6.2", + "@parcel/plugin": "2.6.2", "@parcel/source-map": "^2.0.0", - "@parcel/utils": "2.6.0", + "@parcel/utils": "2.6.2", "globals": "^13.2.0", "nullthrows": "^1.1.1" }, @@ -3851,76 +3638,76 @@ } }, "@parcel/packager-raw": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/packager-raw/-/packager-raw-2.6.0.tgz", - "integrity": "sha512-ktT6Qc/GgCq8H1+6y+AXufVzQj1s6KRoKf83qswCD0iY3MwCbJoEfc3IsB4K64FpHIL5Eu0z54IId+INvGbOYA==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/packager-raw/-/packager-raw-2.6.2.tgz", + "integrity": "sha512-Rl3ZkMtMjb+LEvRowijDD8fibUAS6rWK0/vZQMk9cDNYCP2gCpZayLk0HZIGxneeTbosf/0sbngHq4VeRQOnQA==", "requires": { - "@parcel/plugin": "2.6.0" + "@parcel/plugin": "2.6.2" } }, "@parcel/plugin": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/plugin/-/plugin-2.6.0.tgz", - "integrity": "sha512-LzOaiK8R6eFEoov1cb3/W+o0XvXdI/VbDhMDl0L0II+/56M0UeayYtFP5QGTDn/fZqVlYfzPCtt3EMwdG7/dow==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/plugin/-/plugin-2.6.2.tgz", + "integrity": "sha512-wbbWsM23Pr+8xtLSvf+UopXdVYlpKCCx6PuuZaZcKo+9IcDCWoGXD4M8Kkz14qBmkFn5uM00mULUqmVdSibB2w==", "requires": { - "@parcel/types": "2.6.0" + "@parcel/types": "2.6.2" } }, "@parcel/reporter-dev-server": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/reporter-dev-server/-/reporter-dev-server-2.6.0.tgz", - "integrity": "sha512-VvygsCA+uzWyijIV8zqU1gFyhAWknuaY4KIWhV4kCT8afRJwsLSwt/tpdaKDPuPU45h3tTsUdXH1wjaIk+dGeQ==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/reporter-dev-server/-/reporter-dev-server-2.6.2.tgz", + "integrity": "sha512-5QtL3ETMFL161jehlIK6rjBM+Pqk5cMhr60s9yLYqE1GY4M4gMj+Act+FXViyM6gmMA38cPxDvUsxTKBYXpFCw==", "requires": { - "@parcel/plugin": "2.6.0", - "@parcel/utils": "2.6.0" + "@parcel/plugin": "2.6.2", + "@parcel/utils": "2.6.2" } }, "@parcel/resolver-default": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/resolver-default/-/resolver-default-2.6.0.tgz", - "integrity": "sha512-ATk9wXvy5GOHAqyHbnCnU11fUPTtf8dLjpgVqL5XylwugZnyBXbynoTWX4w8h6mffkVtdfmzTJx/o4Lresz9sA==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/resolver-default/-/resolver-default-2.6.2.tgz", + "integrity": "sha512-Lo5sWb5QkjWvdBr+TdmAF6Mszb/sMldBBatc1osQTkHXCy679VMH+lfyiWxHbwK+F1pmdMeBJpYcMxvrgT8EsA==", "requires": { - "@parcel/node-resolver-core": "2.6.0", - "@parcel/plugin": "2.6.0" + "@parcel/node-resolver-core": "2.6.2", + "@parcel/plugin": "2.6.2" } }, "@parcel/runtime-browser-hmr": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/runtime-browser-hmr/-/runtime-browser-hmr-2.6.0.tgz", - "integrity": "sha512-90xvv/10cFML5dAhClBEJZ/ExiBQVPqQsZcvRmVZmc5mpZVJMKattWCQrd7pAf7FDYl4JAcvsK3DTwvRT/oLNA==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/runtime-browser-hmr/-/runtime-browser-hmr-2.6.2.tgz", + "integrity": "sha512-M4X0+7dyfdI6smwGUGjGXb8Ns3HX7ZrTemyq4Gc7zp7P/5gWjR8i9eISz46sXmF9bf01a/4dKZpoCC9un1pH1g==", "requires": { - "@parcel/plugin": "2.6.0", - "@parcel/utils": "2.6.0" + "@parcel/plugin": "2.6.2", + "@parcel/utils": "2.6.2" } }, "@parcel/runtime-js": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/runtime-js/-/runtime-js-2.6.0.tgz", - "integrity": "sha512-R4tJAIT/SX7VBQ+f7WmeekREQzzLsmgP1j486uKhQNyYrpvsN0HnRbg5aqvZjEjkEmSeJR0mOlWtMK5/m+0yTA==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/runtime-js/-/runtime-js-2.6.2.tgz", + "integrity": "sha512-0S3JFwgvs6FmEx2dHta9R0Sfu8vCnFAm4i7Y4efGHtAcTrF2CHjyiz4/hG+RQGJ70eoWW463Q+8qt6EKbkaOBQ==", "requires": { - "@parcel/plugin": "2.6.0", - "@parcel/utils": "2.6.0", + "@parcel/plugin": "2.6.2", + "@parcel/utils": "2.6.2", "nullthrows": "^1.1.1" } }, "@parcel/runtime-react-refresh": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/runtime-react-refresh/-/runtime-react-refresh-2.6.0.tgz", - "integrity": "sha512-2sRd13gc2EbMV/O5n2NPVGGhKBasb1fDTXGEY8y7qi9xDKc+ewok/D83T+w243FhCPS9Pf3ur5GkbPlrJGcenQ==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/runtime-react-refresh/-/runtime-react-refresh-2.6.2.tgz", + "integrity": "sha512-DJTm5D/tUAGZm0o3ndDOPbKwdYrobuvm4jvkPq31LdEUqVvyuzBAMlqQFHc1yJEJDRRWOIQwQP9Y0NQbJmXFfg==", "requires": { - "@parcel/plugin": "2.6.0", - "@parcel/utils": "2.6.0", + "@parcel/plugin": "2.6.2", + "@parcel/utils": "2.6.2", "react-error-overlay": "6.0.9", "react-refresh": "^0.9.0" } }, "@parcel/runtime-service-worker": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/runtime-service-worker/-/runtime-service-worker-2.6.0.tgz", - "integrity": "sha512-nVlknGw5J5Bkd1Wr1TbyWHhUd9CmVVebaRg/lpfVKYhAuE/2r+3N0+J8qbEIgtTRcHaSV7wTNpg4weSWq46VeA==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/runtime-service-worker/-/runtime-service-worker-2.6.2.tgz", + "integrity": "sha512-9jV+RwVEeDUI5+eLy8j1tapTNoHHGOY2+JUprcObQkQ8fux7KltQBJWFhpkUdGtz5LTCNXtj9tdycFtS5lmSzg==", "requires": { - "@parcel/plugin": "2.6.0", - "@parcel/utils": "2.6.0", + "@parcel/plugin": "2.6.2", + "@parcel/utils": "2.6.2", "nullthrows": "^1.1.1" } }, @@ -3933,16 +3720,16 @@ } }, "@parcel/transformer-js": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/transformer-js/-/transformer-js-2.6.0.tgz", - "integrity": "sha512-4v2r3EVdMKowBziVBW9HZqvAv88HaeiezkWyMX4wAfplo9jBtWEp99KEQINzSEdbXROR81M9oJjlGF5+yoVr/w==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/transformer-js/-/transformer-js-2.6.2.tgz", + "integrity": "sha512-uhXAMTjE/Q61amflV8qVpb73mj+mIdXIMH0cSks1/gDIAxcgIvWvrE14P4TvY6zJ1q1iRJRIRUN6cFSXqjjLSA==", "requires": { - "@parcel/diagnostic": "2.6.0", - "@parcel/plugin": "2.6.0", + "@parcel/diagnostic": "2.6.2", + "@parcel/plugin": "2.6.2", "@parcel/source-map": "^2.0.0", - "@parcel/utils": "2.6.0", - "@parcel/workers": "2.6.0", - "@swc/helpers": "^0.3.15", + "@parcel/utils": "2.6.2", + "@parcel/workers": "2.6.2", + "@swc/helpers": "^0.4.2", "browserslist": "^4.6.6", "detect-libc": "^1.0.3", "nullthrows": "^1.1.1", @@ -3958,56 +3745,56 @@ } }, "@parcel/transformer-json": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/transformer-json/-/transformer-json-2.6.0.tgz", - "integrity": "sha512-zb+TQAdHWdXijKcFhLe+5KN1O0IzXwW1gJhPr8DJEA3qhPaCsncsw5RCVjQlP3a7NXr1mMm1eMtO6bhIMqbXeA==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/transformer-json/-/transformer-json-2.6.2.tgz", + "integrity": "sha512-QGcIIvbPF/u10ihYvQhxXqb2QMXWSzcBxJrOSIXIl74TUGrWX05D5LmjDA/rzm/n/kvRnBkFNP60R/smYb8x+Q==", "requires": { - "@parcel/plugin": "2.6.0", + "@parcel/plugin": "2.6.2", "json5": "^2.2.0" } }, "@parcel/transformer-raw": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/transformer-raw/-/transformer-raw-2.6.0.tgz", - "integrity": "sha512-QDirlWCS/qy0DQ3WvDIAnFP52n1TJW/uWH+4PGMNnX4/M3/2UchY8xp9CN0tx4NQ4g09S8o3gLlHvNxQqZxFrQ==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/transformer-raw/-/transformer-raw-2.6.2.tgz", + "integrity": "sha512-CsofYq5g9Zj/FNmhya2R7Xp3WHlzz34mEdN69bds3azRYHCrl/TS33xXcp/9J+74SEIY1Ufh552o1cM3fnSrDQ==", "requires": { - "@parcel/plugin": "2.6.0" + "@parcel/plugin": "2.6.2" } }, "@parcel/transformer-react-refresh-wrap": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/transformer-react-refresh-wrap/-/transformer-react-refresh-wrap-2.6.0.tgz", - "integrity": "sha512-G34orfvLDUTumuerqNmA8T8NUHk+R0jwUjbVPO7gpB6VCVQ5ocTABdE9vN9Uu/cUsHij40TUFwqK4R9TFEBIEQ==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/transformer-react-refresh-wrap/-/transformer-react-refresh-wrap-2.6.2.tgz", + "integrity": "sha512-7EE68ebISz+oAHm64ZJbz6uJQT4aOoB8QiK3PvuY6+RsP7aK4/FEHGM1afW49KrZbP4lWjloEkcJm/88DfBiGw==", "requires": { - "@parcel/plugin": "2.6.0", - "@parcel/utils": "2.6.0", + "@parcel/plugin": "2.6.2", + "@parcel/utils": "2.6.2", "react-refresh": "^0.9.0" } }, "@parcel/types": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/types/-/types-2.6.0.tgz", - "integrity": "sha512-lAMYvOBfNEJMsPJ+plbB50305o0TwNrY1xX5RRIWBqwOa6bYmbW1ZljUk1tQvnkpIE4eAHQwnPR5Z2XWg18wGQ==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/types/-/types-2.6.2.tgz", + "integrity": "sha512-MV8BFpCIs2jMUvK2RHqzkoiuOQ//JIbrD1zocA2YRW3zuPL/iABvbAABJoXpoPCKikVWOoCWASgBfWQo26VvJQ==", "requires": { - "@parcel/cache": "2.6.0", - "@parcel/diagnostic": "2.6.0", - "@parcel/fs": "2.6.0", - "@parcel/package-manager": "2.6.0", + "@parcel/cache": "2.6.2", + "@parcel/diagnostic": "2.6.2", + "@parcel/fs": "2.6.2", + "@parcel/package-manager": "2.6.2", "@parcel/source-map": "^2.0.0", - "@parcel/workers": "2.6.0", + "@parcel/workers": "2.6.2", "utility-types": "^3.10.0" } }, "@parcel/utils": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/utils/-/utils-2.6.0.tgz", - "integrity": "sha512-ElXz+QHtT1JQIucbQJBk7SzAGoOlBp4yodEQVvTKS7GA+hEGrSP/cmibl6qm29Rjtd0zgQsdd+2XmP3xvP2gQQ==", - "requires": { - "@parcel/codeframe": "2.6.0", - "@parcel/diagnostic": "2.6.0", - "@parcel/hash": "2.6.0", - "@parcel/logger": "2.6.0", - "@parcel/markdown-ansi": "2.6.0", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/utils/-/utils-2.6.2.tgz", + "integrity": "sha512-Ug7hpRxjgbY5AopW55nY7MmGMVmwmN+ihfCmxJkBUoESTG/3iq8uME7GjyOgW5DkQc2K7q62i8y8N0wCJT1u4Q==", + "requires": { + "@parcel/codeframe": "2.6.2", + "@parcel/diagnostic": "2.6.2", + "@parcel/hash": "2.6.2", + "@parcel/logger": "2.6.2", + "@parcel/markdown-ansi": "2.6.2", "@parcel/source-map": "^2.0.0", "chalk": "^4.1.0" } @@ -4022,14 +3809,14 @@ } }, "@parcel/workers": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/workers/-/workers-2.6.0.tgz", - "integrity": "sha512-3tcI2LF5fd/WZtSnSjyWdDE+G+FitdNrRgSObzSp+axHKMAM23sO0z7KY8s2SYCF40msdYbFUW8eI6JlYNJoWQ==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/workers/-/workers-2.6.2.tgz", + "integrity": "sha512-wBgUjJQm+lDd12fPRUmk09+ujTA9DgwPdqylSFK0OtI/yT6A+2kArUqjp8IwWo2tCJXoMzXBne2XQIWKqMiN4Q==", "requires": { - "@parcel/diagnostic": "2.6.0", - "@parcel/logger": "2.6.0", - "@parcel/types": "2.6.0", - "@parcel/utils": "2.6.0", + "@parcel/diagnostic": "2.6.2", + "@parcel/logger": "2.6.2", + "@parcel/types": "2.6.2", + "@parcel/utils": "2.6.2", "chrome-trace-event": "^1.0.2", "nullthrows": "^1.1.1" } @@ -4283,9 +4070,9 @@ } }, "@swc/helpers": { - "version": "0.3.17", - "resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.3.17.tgz", - "integrity": "sha512-tb7Iu+oZ+zWJZ3HJqwx8oNwSDIU440hmVMDPhpACWQWnrZHK99Bxs70gT1L2dnr5Hg50ZRWEFkQCAnOVVV0z1Q==", + "version": "0.4.3", + "resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.4.3.tgz", + "integrity": "sha512-6JrF+fdUK2zbGpJIlN7G3v966PQjyx/dPt1T9km2wj+EUBqgrxCk3uX4Kct16MIm9gGxfKRcfax2hVf5jvlTzA==", "requires": { "tslib": "^2.4.0" } @@ -5619,14 +5406,14 @@ } }, "caniuse-lite": { - "version": "1.0.30001366", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001366.tgz", - "integrity": "sha512-yy7XLWCubDobokgzudpkKux8e0UOOnLHE6mlNJBzT3lZJz6s5atSEzjoL+fsCPkI0G8MP5uVdDx1ur/fXEWkZA==" + "version": "1.0.30001367", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001367.tgz", + "integrity": "sha512-XDgbeOHfifWV3GEES2B8rtsrADx4Jf+juKX2SICJcaUhjYBO3bR96kvEIHa15VU6ohtOhBZuPGGYGbXMRn0NCw==" }, "electron-to-chromium": { - "version": "1.4.188", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.188.tgz", - "integrity": "sha512-Zpa1+E+BVmD/orkyz1Z2dAT1XNUuVAHB3GrogfyY66dXN0ZWSsygI8+u6QTDai1ZayLcATDJpcv2Z2AZjEcr1A==" + "version": "1.4.194", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.194.tgz", + "integrity": "sha512-ola5UH0xAP1oYY0FFUsPvwtucEzCQHucXnT7PQ1zjHJMccZhCDktEugI++JUR3YuIs7Ff7afz+OVEhVAIMhLAQ==" } } }, @@ -5835,9 +5622,9 @@ } }, "babel-preset-gatsby": { - "version": "2.18.1", - "resolved": "https://registry.npmjs.org/babel-preset-gatsby/-/babel-preset-gatsby-2.18.1.tgz", - "integrity": "sha512-oaVV6ULceMjTQKjCA06qvgfLwBNZFJxpacwNZYOJpLygmj+qYiNKDGhJ8vTw/KAIUeDPZAbPMP5P+3wMEPIWYQ==", + "version": "2.19.0", + "resolved": "https://registry.npmjs.org/babel-preset-gatsby/-/babel-preset-gatsby-2.19.0.tgz", + "integrity": "sha512-wjh4lUN1MffsnqHAfRoeOtJFGEObUPR4oxo7fyfx9pZUyqBgXvKXMEoLnwNht5HV5BzT5Xo9dkwNJl0/CNhXHw==", "requires": { "@babel/plugin-proposal-class-properties": "^7.14.0", "@babel/plugin-proposal-nullish-coalescing-operator": "^7.14.5", @@ -5852,10 +5639,46 @@ "babel-plugin-dynamic-import-node": "^2.3.3", "babel-plugin-macros": "^3.1.0", "babel-plugin-transform-react-remove-prop-types": "^0.4.24", - "gatsby-core-utils": "^3.18.1", - "gatsby-legacy-polyfills": "^2.18.0" + "gatsby-core-utils": "^3.19.0", + "gatsby-legacy-polyfills": "^2.19.0" }, "dependencies": { + "@lmdb/lmdb-darwin-arm64": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-arm64/-/lmdb-darwin-arm64-2.5.3.tgz", + "integrity": "sha512-RXwGZ/0eCqtCY8FLTM/koR60w+MXyvBUpToXiIyjOcBnC81tAlTUHrRUavCEWPI9zc9VgvpK3+cbumPyR8BSuA==", + "optional": true + }, + "@lmdb/lmdb-darwin-x64": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-x64/-/lmdb-darwin-x64-2.5.3.tgz", + "integrity": "sha512-337dNzh5yCdNCTk8kPfoU7jR3otibSlPDGW0vKZT97rKnQMb9tNdto3RtWoGPsQ8hKmlRZpojOJtmwjncq1MoA==", + "optional": true + }, + "@lmdb/lmdb-linux-arm": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm/-/lmdb-linux-arm-2.5.3.tgz", + "integrity": "sha512-mU2HFJDGwECkoD9dHQEfeTG5mp8hNS2BCfwoiOpVPMeapjYpQz9Uw3FkUjRZ4dGHWKbin40oWHuL0bk2bCx+Sg==", + "optional": true + }, + "@lmdb/lmdb-linux-arm64": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm64/-/lmdb-linux-arm64-2.5.3.tgz", + "integrity": "sha512-VJw60Mdgb4n+L0fO1PqfB0C7TyEQolJAC8qpqvG3JoQwvyOv6LH7Ib/WE3wxEW9nuHmVz9jkK7lk5HfWWgoO1Q==", + "optional": true + }, + "@lmdb/lmdb-linux-x64": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-x64/-/lmdb-linux-x64-2.5.3.tgz", + "integrity": "sha512-qaReO5aV8griBDsBr8uBF/faO3ieGjY1RY4p8JvTL6Mu1ylLrTVvOONqKFlNaCwrmUjWw5jnf7VafxDAeQHTow==", + "optional": true + }, + "@lmdb/lmdb-win32-x64": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-win32-x64/-/lmdb-win32-x64-2.5.3.tgz", + "integrity": "sha512-cK+Elf3RjEzrm3SerAhrFWL5oQAsZSJ/LmjL1joIpTfEP1etJJ9CTRvdaV6XLYAxaEkfdhk/9hOvHLbR9yIhCA==", + "optional": true + }, "babel-plugin-macros": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/babel-plugin-macros/-/babel-plugin-macros-3.1.0.tgz", @@ -5889,9 +5712,9 @@ } }, "gatsby-core-utils": { - "version": "3.18.1", - "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.18.1.tgz", - "integrity": "sha512-sJTxRqizLxYy/tSFk0ydfqEZ3ek1So9HDVUa39F6Oi8XuPCBTFzaAooUvowKGneI5YUbdk5y4VO4ybwVUynntw==", + "version": "3.19.0", + "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.19.0.tgz", + "integrity": "sha512-cjXs9DsXkPZt+UdiLHxtq+rGMGVrcnM0KwkawlruvPchI7lqGNv9CScqlvYPxx1dBhu3zSZS26EBALMlFhyOJA==", "requires": { "@babel/runtime": "^7.15.4", "ci-info": "2.0.0", @@ -5960,11 +5783,6 @@ "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-4.3.0.tgz", "integrity": "sha512-73sE9+3UaLYYFmDsFZnqCInzPyh3MqIwZO9cw58yIqAZhONrrabrYyYe3TuIqtIiOuTXVhsGau8hcrhhwSsDIQ==" }, - "node-gyp-build-optional-packages": { - "version": "5.0.3", - "resolved": "https://registry.npmjs.org/node-gyp-build-optional-packages/-/node-gyp-build-optional-packages-5.0.3.tgz", - "integrity": "sha512-k75jcVzk5wnnc/FMxsf4udAoTEUv2jY3ycfdSd3yWu6Cnd1oee6/CfZJApyscA4FJOmdoixWwiwOyf16RzD5JA==" - }, "resolve-from": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", @@ -6072,6 +5890,11 @@ "unpipe": "1.0.0" }, "dependencies": { + "bytes": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", + "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==" + }, "debug": { "version": "2.6.9", "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", @@ -6249,9 +6072,9 @@ } }, "bytes": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", - "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==" + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz", + "integrity": "sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==" }, "cache-manager": { "version": "2.11.1", @@ -6978,11 +6801,6 @@ "vary": "~1.1.2" }, "dependencies": { - "bytes": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz", - "integrity": "sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==" - }, "debug": { "version": "2.6.9", "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", @@ -7140,9 +6958,9 @@ } }, "core-js-pure": { - "version": "3.23.4", - "resolved": "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.23.4.tgz", - "integrity": "sha512-lizxkcgj3XDmi7TUBFe+bQ1vNpD5E4t76BrBWI3HdUxdw/Mq1VF4CkiHzIKyieECKtcODK2asJttoofEeUKICQ==" + "version": "3.23.5", + "resolved": "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.23.5.tgz", + "integrity": "sha512-8t78LdpKSuCq4pJYCYk8hl7XEkAX+BP16yRIwL3AanTksxuEf7CM83vRyctmiEL8NDZ3jpUcv56fk9/zG3aIuw==" }, "core-util-is": { "version": "1.0.2", @@ -7179,9 +6997,9 @@ } }, "create-gatsby": { - "version": "2.18.1", - "resolved": "https://registry.npmjs.org/create-gatsby/-/create-gatsby-2.18.1.tgz", - "integrity": "sha512-1AZioXKi4COhESSHfsb/6tpkBvyuuXHwAmMAGrcUQpbynsQxYdqonnRqnFhp80bA2cIKxgjtHzzLhyRouDonbQ==", + "version": "2.19.0", + "resolved": "https://registry.npmjs.org/create-gatsby/-/create-gatsby-2.19.0.tgz", + "integrity": "sha512-Esl/qCau3rjpnRkmo31BYOE6l72SJ/5Fq8bF6gmXOf/lnbOh51so8hgRcClfizr1nCihqQQihZn//o4DIgZKeA==", "requires": { "@babel/runtime": "^7.15.4" } @@ -8394,9 +8212,9 @@ }, "dependencies": { "@babel/runtime": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.18.6.tgz", - "integrity": "sha512-t9wi7/AW6XtKahAe20Yw0/mMljKq0B1r2fPdvaAdV/KPDZewFXdaaa6K7lxmZBZ8FBNpCiAT6iHPmd6QO9bKfQ==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.18.9.tgz", + "integrity": "sha512-lkqXDcvlFT5rvEjiu6+QYO+1GXrEHRo2LOtS7E4GtX5ESIZOgepqsZBVIj6Pv+a6zqsya9VCgiK1KAK4BvJDAw==", "requires": { "regenerator-runtime": "^0.13.4" } @@ -9302,9 +9120,9 @@ "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==" }, "gatsby": { - "version": "4.18.2", - "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-4.18.2.tgz", - "integrity": "sha512-ZWdo0TXsSRmwlmOeeuoWwXKQNteHm9VxJWF9Ud+c33r7ZXQgTA5WtRYjiBpjZuNAUwsiONNAe+wKK5jVY8B4LQ==", + "version": "4.19.0", + "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-4.19.0.tgz", + "integrity": "sha512-Bhga6PbDRSL3J7yIcVAWwN76cK0OeFWE4f5ggh4qEjnsL20kxW+LPwAexpZ5dVxbE1gsl1k/VDSX66Wj3vGH3A==", "requires": { "@babel/code-frame": "^7.14.0", "@babel/core": "^7.15.5", @@ -9326,7 +9144,7 @@ "@graphql-tools/load": "^7.5.10", "@jridgewell/trace-mapping": "^0.3.13", "@nodelib/fs.walk": "^1.2.8", - "@parcel/core": "2.6.0", + "@parcel/core": "2.6.2", "@pmmmwh/react-refresh-webpack-plugin": "^0.4.3", "@types/http-proxy": "^1.17.7", "@typescript-eslint/eslint-plugin": "^4.33.0", @@ -9340,11 +9158,10 @@ "babel-plugin-add-module-exports": "^1.0.4", "babel-plugin-dynamic-import-node": "^2.3.3", "babel-plugin-lodash": "^3.3.4", - "babel-plugin-remove-graphql-queries": "^4.18.1", - "babel-preset-gatsby": "^2.18.1", + "babel-plugin-remove-graphql-queries": "^4.19.0", + "babel-preset-gatsby": "^2.19.0", "better-opn": "^2.1.1", "bluebird": "^3.7.2", - "body-parser": "^1.19.0", "browserslist": "^4.17.5", "cache-manager": "^2.11.1", "chalk": "^4.1.2", @@ -9370,7 +9187,7 @@ "eslint-plugin-graphql": "^4.0.0", "eslint-plugin-import": "^2.26.0", "eslint-plugin-jsx-a11y": "^6.5.1", - "eslint-plugin-react": "^7.30.0", + "eslint-plugin-react": "^7.30.1", "eslint-plugin-react-hooks": "^4.5.0", "eslint-webpack-plugin": "^2.6.0", "event-source-polyfill": "1.0.25", @@ -9384,21 +9201,21 @@ "find-cache-dir": "^3.3.2", "fs-exists-cached": "1.0.0", "fs-extra": "^10.1.0", - "gatsby-cli": "^4.18.1", - "gatsby-core-utils": "^3.18.1", - "gatsby-graphiql-explorer": "^2.18.0", - "gatsby-legacy-polyfills": "^2.18.0", - "gatsby-link": "^4.18.1", - "gatsby-page-utils": "^2.18.1", - "gatsby-parcel-config": "^0.9.2", - "gatsby-plugin-page-creator": "^4.18.1", - "gatsby-plugin-typescript": "^4.18.1", - "gatsby-plugin-utils": "^3.12.1", - "gatsby-react-router-scroll": "^5.18.0", - "gatsby-script": "^1.3.0", - "gatsby-sharp": "^0.12.0", - "gatsby-telemetry": "^3.18.1", - "gatsby-worker": "^1.18.0", + "gatsby-cli": "^4.19.0", + "gatsby-core-utils": "^3.19.0", + "gatsby-graphiql-explorer": "^2.19.0", + "gatsby-legacy-polyfills": "^2.19.0", + "gatsby-link": "^4.19.0", + "gatsby-page-utils": "^2.19.0", + "gatsby-parcel-config": "^0.10.0", + "gatsby-plugin-page-creator": "^4.19.0", + "gatsby-plugin-typescript": "^4.19.0", + "gatsby-plugin-utils": "^3.13.0", + "gatsby-react-router-scroll": "^5.19.0", + "gatsby-script": "^1.4.0", + "gatsby-sharp": "^0.13.0", + "gatsby-telemetry": "^3.19.0", + "gatsby-worker": "^1.19.0", "glob": "^7.2.3", "globby": "^11.1.0", "got": "^11.8.2", @@ -9406,7 +9223,6 @@ "graphql-compose": "^9.0.7", "graphql-playground-middleware-express": "^1.7.22", "hasha": "^5.2.2", - "http-proxy": "^1.18.1", "invariant": "^2.2.4", "is-relative": "^1.0.0", "is-relative-url": "^3.0.0", @@ -9425,6 +9241,7 @@ "moment": "^2.29.1", "multer": "^1.4.3", "node-fetch": "^2.6.6", + "node-html-parser": "^5.3.3", "normalize-path": "^3.0.0", "null-loader": "^4.0.1", "opentracing": "^0.14.5", @@ -9479,6 +9296,42 @@ "@jridgewell/sourcemap-codec": "^1.4.10" } }, + "@lmdb/lmdb-darwin-arm64": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-arm64/-/lmdb-darwin-arm64-2.5.3.tgz", + "integrity": "sha512-RXwGZ/0eCqtCY8FLTM/koR60w+MXyvBUpToXiIyjOcBnC81tAlTUHrRUavCEWPI9zc9VgvpK3+cbumPyR8BSuA==", + "optional": true + }, + "@lmdb/lmdb-darwin-x64": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-x64/-/lmdb-darwin-x64-2.5.3.tgz", + "integrity": "sha512-337dNzh5yCdNCTk8kPfoU7jR3otibSlPDGW0vKZT97rKnQMb9tNdto3RtWoGPsQ8hKmlRZpojOJtmwjncq1MoA==", + "optional": true + }, + "@lmdb/lmdb-linux-arm": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm/-/lmdb-linux-arm-2.5.3.tgz", + "integrity": "sha512-mU2HFJDGwECkoD9dHQEfeTG5mp8hNS2BCfwoiOpVPMeapjYpQz9Uw3FkUjRZ4dGHWKbin40oWHuL0bk2bCx+Sg==", + "optional": true + }, + "@lmdb/lmdb-linux-arm64": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm64/-/lmdb-linux-arm64-2.5.3.tgz", + "integrity": "sha512-VJw60Mdgb4n+L0fO1PqfB0C7TyEQolJAC8qpqvG3JoQwvyOv6LH7Ib/WE3wxEW9nuHmVz9jkK7lk5HfWWgoO1Q==", + "optional": true + }, + "@lmdb/lmdb-linux-x64": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-x64/-/lmdb-linux-x64-2.5.3.tgz", + "integrity": "sha512-qaReO5aV8griBDsBr8uBF/faO3ieGjY1RY4p8JvTL6Mu1ylLrTVvOONqKFlNaCwrmUjWw5jnf7VafxDAeQHTow==", + "optional": true + }, + "@lmdb/lmdb-win32-x64": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-win32-x64/-/lmdb-win32-x64-2.5.3.tgz", + "integrity": "sha512-cK+Elf3RjEzrm3SerAhrFWL5oQAsZSJ/LmjL1joIpTfEP1etJJ9CTRvdaV6XLYAxaEkfdhk/9hOvHLbR9yIhCA==", + "optional": true + }, "ansi-styles": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", @@ -9488,12 +9341,12 @@ } }, "babel-plugin-remove-graphql-queries": { - "version": "4.18.1", - "resolved": "https://registry.npmjs.org/babel-plugin-remove-graphql-queries/-/babel-plugin-remove-graphql-queries-4.18.1.tgz", - "integrity": "sha512-2I7qsm3pnyvrS6/Q9YuHK1SpfQLmrgYH/AjpnWpnLHee6SiVb5Te89iphhpBdycpBRVGWh04ram9+z/1rMaRYQ==", + "version": "4.19.0", + "resolved": "https://registry.npmjs.org/babel-plugin-remove-graphql-queries/-/babel-plugin-remove-graphql-queries-4.19.0.tgz", + "integrity": "sha512-VbxC7aZxdqQA0YiAcTD/djIW+6PP/JVODlRmCiqDyTbtI0zhE/Z6je1maCmC6J2LLBsKxhWT3UYTjRfLofK7sQ==", "requires": { "@babel/runtime": "^7.15.4", - "gatsby-core-utils": "^3.18.1" + "gatsby-core-utils": "^3.19.0" } }, "color-convert": { @@ -9510,9 +9363,9 @@ "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" }, "core-js": { - "version": "3.23.4", - "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.23.4.tgz", - "integrity": "sha512-vjsKqRc1RyAJC3Ye2kYqgfdThb3zYnx9CrqoCcjMOENMtQPC7ZViBvlDxwYU/2z2NI/IPuiXw5mT4hWhddqjzQ==" + "version": "3.23.5", + "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.23.5.tgz", + "integrity": "sha512-7Vh11tujtAZy82da4duVreQysIoO2EvVrur7y6IzZkH1IHPSekuDi8Vuw1+YKjkbfWLRD7Nc9ICQ/sIUDutcyg==" }, "css-tree": { "version": "1.1.3", @@ -9534,9 +9387,9 @@ } }, "gatsby-cli": { - "version": "4.18.1", - "resolved": "https://registry.npmjs.org/gatsby-cli/-/gatsby-cli-4.18.1.tgz", - "integrity": "sha512-ceYqm6i39rHY343zUCflwXnGtd25QGccvToTWL8W42/EGToDW8bubLfeBSRCfjXm946yf1gkS/1UAsAgAphYDA==", + "version": "4.19.0", + "resolved": "https://registry.npmjs.org/gatsby-cli/-/gatsby-cli-4.19.0.tgz", + "integrity": "sha512-i1B9ktvOECiOZgyKqf0xdYx9bmrIUeZeiK+EOIvIpvFfFUwBmZR6xSHRHYUGX2JVpQiy4QEG25KcPWgF9mYJ3w==", "requires": { "@babel/code-frame": "^7.14.0", "@babel/core": "^7.15.5", @@ -9555,13 +9408,13 @@ "common-tags": "^1.8.2", "configstore": "^5.0.1", "convert-hrtime": "^3.0.0", - "create-gatsby": "^2.18.1", + "create-gatsby": "^2.19.0", "envinfo": "^7.8.1", "execa": "^5.1.1", "fs-exists-cached": "^1.0.0", "fs-extra": "^10.1.0", - "gatsby-core-utils": "^3.18.1", - "gatsby-telemetry": "^3.18.1", + "gatsby-core-utils": "^3.19.0", + "gatsby-telemetry": "^3.19.0", "hosted-git-info": "^3.0.8", "is-valid-path": "^0.1.1", "joi": "^17.4.2", @@ -9585,9 +9438,9 @@ } }, "gatsby-core-utils": { - "version": "3.18.1", - "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.18.1.tgz", - "integrity": "sha512-sJTxRqizLxYy/tSFk0ydfqEZ3ek1So9HDVUa39F6Oi8XuPCBTFzaAooUvowKGneI5YUbdk5y4VO4ybwVUynntw==", + "version": "3.19.0", + "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.19.0.tgz", + "integrity": "sha512-cjXs9DsXkPZt+UdiLHxtq+rGMGVrcnM0KwkawlruvPchI7lqGNv9CScqlvYPxx1dBhu3zSZS26EBALMlFhyOJA==", "requires": { "@babel/runtime": "^7.15.4", "ci-info": "2.0.0", @@ -9627,15 +9480,15 @@ } }, "gatsby-plugin-utils": { - "version": "3.12.1", - "resolved": "https://registry.npmjs.org/gatsby-plugin-utils/-/gatsby-plugin-utils-3.12.1.tgz", - "integrity": "sha512-Rx7/MFtiJ+pyvPLqCPj5beyMN6qOx3EYMrOqmvrWJaM32nxMfHZqUqxGruufyFNVe6edfRuNuXcKaPXlGlyexA==", + "version": "3.13.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-utils/-/gatsby-plugin-utils-3.13.0.tgz", + "integrity": "sha512-iFFWswld/Nu8IrSCikZXC4/cud9txv3ikjkQiGLccJStS9VH2rSY4XEMNRqsKN9Spe3pFBOr/97yYUaPhZaQWg==", "requires": { "@babel/runtime": "^7.15.4", "@gatsbyjs/potrace": "^2.2.0", "fs-extra": "^10.1.0", - "gatsby-core-utils": "^3.18.1", - "gatsby-sharp": "^0.12.0", + "gatsby-core-utils": "^3.19.0", + "gatsby-sharp": "^0.13.0", "graphql-compose": "^9.0.7", "import-from": "^4.0.0", "joi": "^17.4.2", @@ -9652,9 +9505,9 @@ } }, "gatsby-telemetry": { - "version": "3.18.1", - "resolved": "https://registry.npmjs.org/gatsby-telemetry/-/gatsby-telemetry-3.18.1.tgz", - "integrity": "sha512-EjjsUv15BZGsmnPrOINRT/s7d18DTKokpp2NDZLm8uOs3MwVoLtUZ/BS7h2NTmgK+WN93q3bNYRkZgKgV9QC1A==", + "version": "3.19.0", + "resolved": "https://registry.npmjs.org/gatsby-telemetry/-/gatsby-telemetry-3.19.0.tgz", + "integrity": "sha512-5JQcTm2zCLWTmnXOdOe0gxuk7aRZSTaVrOrytMlwAR7trvtBC/fKqMhJHsYwl5uW9K06F59ZdkC0apJTAPkGww==", "requires": { "@babel/code-frame": "^7.14.0", "@babel/runtime": "^7.15.4", @@ -9664,7 +9517,7 @@ "boxen": "^4.2.0", "configstore": "^5.0.1", "fs-extra": "^10.1.0", - "gatsby-core-utils": "^3.18.1", + "gatsby-core-utils": "^3.19.0", "git-up": "^4.0.5", "is-docker": "^2.2.1", "lodash": "^4.17.21", @@ -9765,11 +9618,6 @@ "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-4.3.0.tgz", "integrity": "sha512-73sE9+3UaLYYFmDsFZnqCInzPyh3MqIwZO9cw58yIqAZhONrrabrYyYe3TuIqtIiOuTXVhsGau8hcrhhwSsDIQ==" }, - "node-gyp-build-optional-packages": { - "version": "5.0.3", - "resolved": "https://registry.npmjs.org/node-gyp-build-optional-packages/-/node-gyp-build-optional-packages-5.0.3.tgz", - "integrity": "sha512-k75jcVzk5wnnc/FMxsf4udAoTEUv2jY3ycfdSd3yWu6Cnd1oee6/CfZJApyscA4FJOmdoixWwiwOyf16RzD5JA==" - }, "resolve-from": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", @@ -9852,17 +9700,17 @@ } }, "gatsby-graphiql-explorer": { - "version": "2.18.0", - "resolved": "https://registry.npmjs.org/gatsby-graphiql-explorer/-/gatsby-graphiql-explorer-2.18.0.tgz", - "integrity": "sha512-mmY+kHc+axpDO9lfjbCEf/0oEIHTcZmpe2PtQAzkhnQHyti3xd9IIafq/1W3QKIJo5c7f40+tR3sFTERqaBeIA==", + "version": "2.19.0", + "resolved": "https://registry.npmjs.org/gatsby-graphiql-explorer/-/gatsby-graphiql-explorer-2.19.0.tgz", + "integrity": "sha512-wOD1LuWaSbCtZ0E9C2HxMBQj67k8kPnlLMr/VfKHgBh0FfvIavIq5vOq5K9zRIkAzSzYVODGEz2NVdbfVK9Bew==", "requires": { "@babel/runtime": "^7.15.4" } }, "gatsby-legacy-polyfills": { - "version": "2.18.0", - "resolved": "https://registry.npmjs.org/gatsby-legacy-polyfills/-/gatsby-legacy-polyfills-2.18.0.tgz", - "integrity": "sha512-wPnsRUnnab10wyt5VPkIhpJC1k8bVrpn0Sfat1L3JskYwkVIEvquqTmHWkpGMB8SLbXQiJEGCs2TcIrx9riL+w==", + "version": "2.19.0", + "resolved": "https://registry.npmjs.org/gatsby-legacy-polyfills/-/gatsby-legacy-polyfills-2.19.0.tgz", + "integrity": "sha512-WuyN01eiRxhanfnj6UgsCxU+Pxs9B8rtgxbrwXhlEKX+QdAp4XlywDQ8QXvv8i028QDF9h+VnvGlfcZY4tgQrQ==", "requires": { "@babel/runtime": "^7.15.4", "core-js-compat": "3.9.0" @@ -9885,31 +9733,66 @@ } }, "gatsby-link": { - "version": "4.18.1", - "resolved": "https://registry.npmjs.org/gatsby-link/-/gatsby-link-4.18.1.tgz", - "integrity": "sha512-gLFH2iU4WugHU5k+SLu4F0Ar04kDT5KhkyXly99ZVtiIvHpA5DqcuGNIUjIE/lizSCsfa553wGv7dadfghGzrQ==", + "version": "4.19.0", + "resolved": "https://registry.npmjs.org/gatsby-link/-/gatsby-link-4.19.0.tgz", + "integrity": "sha512-snv9blxZR7s/ymRjUUDP2+zrJ/beuyy/k/MeW57EkQ16YfgDyF79JMKNDU3iXFmiFhG9AYBkClIfe4qTSoCO/A==", "requires": { - "@babel/runtime": "^7.15.4", "@types/reach__router": "^1.3.10", - "gatsby-page-utils": "^2.18.1", + "gatsby-page-utils": "^2.19.0", "prop-types": "^15.8.1" } }, "gatsby-page-utils": { - "version": "2.18.1", - "resolved": "https://registry.npmjs.org/gatsby-page-utils/-/gatsby-page-utils-2.18.1.tgz", - "integrity": "sha512-4EM0LNOQgnCndHDQSI/ZKRFWYWG9dtTPuGbBaGlmPquhj3zwjOscws1vfj7g+u3PowKjZQ2Rf92RZd8xt8XLTQ==", + "version": "2.19.0", + "resolved": "https://registry.npmjs.org/gatsby-page-utils/-/gatsby-page-utils-2.19.0.tgz", + "integrity": "sha512-eYStV4jQbuEBKhatH3yzWA+lmoydJBCZVg6w2GG38eSsgcj9pdep8oQqyQdGFU3dy/HizWmWCv+wW9FIUoVQsQ==", "requires": { "@babel/runtime": "^7.15.4", "bluebird": "^3.7.2", "chokidar": "^3.5.3", "fs-exists-cached": "^1.0.0", - "gatsby-core-utils": "^3.18.1", + "gatsby-core-utils": "^3.19.0", "glob": "^7.2.3", "lodash": "^4.17.21", "micromatch": "^4.0.5" }, "dependencies": { + "@lmdb/lmdb-darwin-arm64": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-arm64/-/lmdb-darwin-arm64-2.5.3.tgz", + "integrity": "sha512-RXwGZ/0eCqtCY8FLTM/koR60w+MXyvBUpToXiIyjOcBnC81tAlTUHrRUavCEWPI9zc9VgvpK3+cbumPyR8BSuA==", + "optional": true + }, + "@lmdb/lmdb-darwin-x64": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-x64/-/lmdb-darwin-x64-2.5.3.tgz", + "integrity": "sha512-337dNzh5yCdNCTk8kPfoU7jR3otibSlPDGW0vKZT97rKnQMb9tNdto3RtWoGPsQ8hKmlRZpojOJtmwjncq1MoA==", + "optional": true + }, + "@lmdb/lmdb-linux-arm": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm/-/lmdb-linux-arm-2.5.3.tgz", + "integrity": "sha512-mU2HFJDGwECkoD9dHQEfeTG5mp8hNS2BCfwoiOpVPMeapjYpQz9Uw3FkUjRZ4dGHWKbin40oWHuL0bk2bCx+Sg==", + "optional": true + }, + "@lmdb/lmdb-linux-arm64": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm64/-/lmdb-linux-arm64-2.5.3.tgz", + "integrity": "sha512-VJw60Mdgb4n+L0fO1PqfB0C7TyEQolJAC8qpqvG3JoQwvyOv6LH7Ib/WE3wxEW9nuHmVz9jkK7lk5HfWWgoO1Q==", + "optional": true + }, + "@lmdb/lmdb-linux-x64": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-x64/-/lmdb-linux-x64-2.5.3.tgz", + "integrity": "sha512-qaReO5aV8griBDsBr8uBF/faO3ieGjY1RY4p8JvTL6Mu1ylLrTVvOONqKFlNaCwrmUjWw5jnf7VafxDAeQHTow==", + "optional": true + }, + "@lmdb/lmdb-win32-x64": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-win32-x64/-/lmdb-win32-x64-2.5.3.tgz", + "integrity": "sha512-cK+Elf3RjEzrm3SerAhrFWL5oQAsZSJ/LmjL1joIpTfEP1etJJ9CTRvdaV6XLYAxaEkfdhk/9hOvHLbR9yIhCA==", + "optional": true + }, "fs-extra": { "version": "10.1.0", "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz", @@ -9921,9 +9804,9 @@ } }, "gatsby-core-utils": { - "version": "3.18.1", - "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.18.1.tgz", - "integrity": "sha512-sJTxRqizLxYy/tSFk0ydfqEZ3ek1So9HDVUa39F6Oi8XuPCBTFzaAooUvowKGneI5YUbdk5y4VO4ybwVUynntw==", + "version": "3.19.0", + "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.19.0.tgz", + "integrity": "sha512-cjXs9DsXkPZt+UdiLHxtq+rGMGVrcnM0KwkawlruvPchI7lqGNv9CScqlvYPxx1dBhu3zSZS26EBALMlFhyOJA==", "requires": { "@babel/runtime": "^7.15.4", "ci-info": "2.0.0", @@ -10013,11 +9896,6 @@ "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-4.3.0.tgz", "integrity": "sha512-73sE9+3UaLYYFmDsFZnqCInzPyh3MqIwZO9cw58yIqAZhONrrabrYyYe3TuIqtIiOuTXVhsGau8hcrhhwSsDIQ==" }, - "node-gyp-build-optional-packages": { - "version": "5.0.3", - "resolved": "https://registry.npmjs.org/node-gyp-build-optional-packages/-/node-gyp-build-optional-packages-5.0.3.tgz", - "integrity": "sha512-k75jcVzk5wnnc/FMxsf4udAoTEUv2jY3ycfdSd3yWu6Cnd1oee6/CfZJApyscA4FJOmdoixWwiwOyf16RzD5JA==" - }, "resolve-from": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", @@ -10031,27 +9909,27 @@ } }, "gatsby-parcel-config": { - "version": "0.9.2", - "resolved": "https://registry.npmjs.org/gatsby-parcel-config/-/gatsby-parcel-config-0.9.2.tgz", - "integrity": "sha512-ONykPoYCoFs89M8Hio0TSrUQEpwXwbSiV8aCcPH9L6w3eros9RlWrwAwnWb+lPDNJT5BsereBjefoS9cC6mpVA==", - "requires": { - "@gatsbyjs/parcel-namer-relative-to-cwd": "^1.3.2", - "@parcel/bundler-default": "2.6.0", - "@parcel/compressor-raw": "2.6.0", - "@parcel/namer-default": "2.6.0", - "@parcel/optimizer-terser": "2.6.0", - "@parcel/packager-js": "2.6.0", - "@parcel/packager-raw": "2.6.0", - "@parcel/reporter-dev-server": "2.6.0", - "@parcel/resolver-default": "2.6.0", - "@parcel/runtime-browser-hmr": "2.6.0", - "@parcel/runtime-js": "2.6.0", - "@parcel/runtime-react-refresh": "2.6.0", - "@parcel/runtime-service-worker": "2.6.0", - "@parcel/transformer-js": "2.6.0", - "@parcel/transformer-json": "2.6.0", - "@parcel/transformer-raw": "2.6.0", - "@parcel/transformer-react-refresh-wrap": "2.6.0" + "version": "0.10.0", + "resolved": "https://registry.npmjs.org/gatsby-parcel-config/-/gatsby-parcel-config-0.10.0.tgz", + "integrity": "sha512-FV+ccSeWPgicWRtycfUV1L7xyVIr6OSDnUkztnxq3Xj+OEBPC0NO2x07CA4tz16hSRDH1/qXgwY8AsHyenCidg==", + "requires": { + "@gatsbyjs/parcel-namer-relative-to-cwd": "^1.4.0", + "@parcel/bundler-default": "2.6.2", + "@parcel/compressor-raw": "2.6.2", + "@parcel/namer-default": "2.6.2", + "@parcel/optimizer-terser": "2.6.2", + "@parcel/packager-js": "2.6.2", + "@parcel/packager-raw": "2.6.2", + "@parcel/reporter-dev-server": "2.6.2", + "@parcel/resolver-default": "2.6.2", + "@parcel/runtime-browser-hmr": "2.6.2", + "@parcel/runtime-js": "2.6.2", + "@parcel/runtime-react-refresh": "2.6.2", + "@parcel/runtime-service-worker": "2.6.2", + "@parcel/transformer-js": "2.6.2", + "@parcel/transformer-json": "2.6.2", + "@parcel/transformer-raw": "2.6.2", + "@parcel/transformer-react-refresh-wrap": "2.6.2" } }, "gatsby-plugin-emotion": { @@ -10219,23 +10097,59 @@ } }, "gatsby-plugin-page-creator": { - "version": "4.18.1", - "resolved": "https://registry.npmjs.org/gatsby-plugin-page-creator/-/gatsby-plugin-page-creator-4.18.1.tgz", - "integrity": "sha512-XPAglahQ1fDnSdSNJmtAGwVqB7yZDGPOQQBQX7LD74XwYP6uriRo4LyeI+gEXRqW4d63ZL3VMvgdisde9M95LQ==", + "version": "4.19.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-page-creator/-/gatsby-plugin-page-creator-4.19.0.tgz", + "integrity": "sha512-JGclCb2lniTjBdFzoiF0Px9EhVY/3uiWx7mqnvfdVO85VVey5+eCKL60Aqamjovo6C+l/0Uldt4uT1EpNLC3Xw==", "requires": { "@babel/runtime": "^7.15.4", "@babel/traverse": "^7.15.4", "@sindresorhus/slugify": "^1.1.2", "chokidar": "^3.5.3", "fs-exists-cached": "^1.0.0", - "gatsby-core-utils": "^3.18.1", - "gatsby-page-utils": "^2.18.1", - "gatsby-plugin-utils": "^3.12.1", - "gatsby-telemetry": "^3.18.1", + "gatsby-core-utils": "^3.19.0", + "gatsby-page-utils": "^2.19.0", + "gatsby-plugin-utils": "^3.13.0", + "gatsby-telemetry": "^3.19.0", "globby": "^11.1.0", "lodash": "^4.17.21" }, "dependencies": { + "@lmdb/lmdb-darwin-arm64": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-arm64/-/lmdb-darwin-arm64-2.5.3.tgz", + "integrity": "sha512-RXwGZ/0eCqtCY8FLTM/koR60w+MXyvBUpToXiIyjOcBnC81tAlTUHrRUavCEWPI9zc9VgvpK3+cbumPyR8BSuA==", + "optional": true + }, + "@lmdb/lmdb-darwin-x64": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-x64/-/lmdb-darwin-x64-2.5.3.tgz", + "integrity": "sha512-337dNzh5yCdNCTk8kPfoU7jR3otibSlPDGW0vKZT97rKnQMb9tNdto3RtWoGPsQ8hKmlRZpojOJtmwjncq1MoA==", + "optional": true + }, + "@lmdb/lmdb-linux-arm": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm/-/lmdb-linux-arm-2.5.3.tgz", + "integrity": "sha512-mU2HFJDGwECkoD9dHQEfeTG5mp8hNS2BCfwoiOpVPMeapjYpQz9Uw3FkUjRZ4dGHWKbin40oWHuL0bk2bCx+Sg==", + "optional": true + }, + "@lmdb/lmdb-linux-arm64": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm64/-/lmdb-linux-arm64-2.5.3.tgz", + "integrity": "sha512-VJw60Mdgb4n+L0fO1PqfB0C7TyEQolJAC8qpqvG3JoQwvyOv6LH7Ib/WE3wxEW9nuHmVz9jkK7lk5HfWWgoO1Q==", + "optional": true + }, + "@lmdb/lmdb-linux-x64": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-x64/-/lmdb-linux-x64-2.5.3.tgz", + "integrity": "sha512-qaReO5aV8griBDsBr8uBF/faO3ieGjY1RY4p8JvTL6Mu1ylLrTVvOONqKFlNaCwrmUjWw5jnf7VafxDAeQHTow==", + "optional": true + }, + "@lmdb/lmdb-win32-x64": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-win32-x64/-/lmdb-win32-x64-2.5.3.tgz", + "integrity": "sha512-cK+Elf3RjEzrm3SerAhrFWL5oQAsZSJ/LmjL1joIpTfEP1etJJ9CTRvdaV6XLYAxaEkfdhk/9hOvHLbR9yIhCA==", + "optional": true + }, "ansi-styles": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", @@ -10301,9 +10215,9 @@ } }, "gatsby-core-utils": { - "version": "3.18.1", - "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.18.1.tgz", - "integrity": "sha512-sJTxRqizLxYy/tSFk0ydfqEZ3ek1So9HDVUa39F6Oi8XuPCBTFzaAooUvowKGneI5YUbdk5y4VO4ybwVUynntw==", + "version": "3.19.0", + "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.19.0.tgz", + "integrity": "sha512-cjXs9DsXkPZt+UdiLHxtq+rGMGVrcnM0KwkawlruvPchI7lqGNv9CScqlvYPxx1dBhu3zSZS26EBALMlFhyOJA==", "requires": { "@babel/runtime": "^7.15.4", "ci-info": "2.0.0", @@ -10323,15 +10237,15 @@ } }, "gatsby-plugin-utils": { - "version": "3.12.1", - "resolved": "https://registry.npmjs.org/gatsby-plugin-utils/-/gatsby-plugin-utils-3.12.1.tgz", - "integrity": "sha512-Rx7/MFtiJ+pyvPLqCPj5beyMN6qOx3EYMrOqmvrWJaM32nxMfHZqUqxGruufyFNVe6edfRuNuXcKaPXlGlyexA==", + "version": "3.13.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-utils/-/gatsby-plugin-utils-3.13.0.tgz", + "integrity": "sha512-iFFWswld/Nu8IrSCikZXC4/cud9txv3ikjkQiGLccJStS9VH2rSY4XEMNRqsKN9Spe3pFBOr/97yYUaPhZaQWg==", "requires": { "@babel/runtime": "^7.15.4", "@gatsbyjs/potrace": "^2.2.0", "fs-extra": "^10.1.0", - "gatsby-core-utils": "^3.18.1", - "gatsby-sharp": "^0.12.0", + "gatsby-core-utils": "^3.19.0", + "gatsby-sharp": "^0.13.0", "graphql-compose": "^9.0.7", "import-from": "^4.0.0", "joi": "^17.4.2", @@ -10341,9 +10255,9 @@ } }, "gatsby-telemetry": { - "version": "3.18.1", - "resolved": "https://registry.npmjs.org/gatsby-telemetry/-/gatsby-telemetry-3.18.1.tgz", - "integrity": "sha512-EjjsUv15BZGsmnPrOINRT/s7d18DTKokpp2NDZLm8uOs3MwVoLtUZ/BS7h2NTmgK+WN93q3bNYRkZgKgV9QC1A==", + "version": "3.19.0", + "resolved": "https://registry.npmjs.org/gatsby-telemetry/-/gatsby-telemetry-3.19.0.tgz", + "integrity": "sha512-5JQcTm2zCLWTmnXOdOe0gxuk7aRZSTaVrOrytMlwAR7trvtBC/fKqMhJHsYwl5uW9K06F59ZdkC0apJTAPkGww==", "requires": { "@babel/code-frame": "^7.14.0", "@babel/runtime": "^7.15.4", @@ -10353,7 +10267,7 @@ "boxen": "^4.2.0", "configstore": "^5.0.1", "fs-extra": "^10.1.0", - "gatsby-core-utils": "^3.18.1", + "gatsby-core-utils": "^3.19.0", "git-up": "^4.0.5", "is-docker": "^2.2.1", "lodash": "^4.17.21", @@ -10430,11 +10344,6 @@ "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-4.3.0.tgz", "integrity": "sha512-73sE9+3UaLYYFmDsFZnqCInzPyh3MqIwZO9cw58yIqAZhONrrabrYyYe3TuIqtIiOuTXVhsGau8hcrhhwSsDIQ==" }, - "node-gyp-build-optional-packages": { - "version": "5.0.3", - "resolved": "https://registry.npmjs.org/node-gyp-build-optional-packages/-/node-gyp-build-optional-packages-5.0.3.tgz", - "integrity": "sha512-k75jcVzk5wnnc/FMxsf4udAoTEUv2jY3ycfdSd3yWu6Cnd1oee6/CfZJApyscA4FJOmdoixWwiwOyf16RzD5JA==" - }, "resolve-from": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", @@ -10550,9 +10459,9 @@ } }, "gatsby-plugin-typescript": { - "version": "4.18.1", - "resolved": "https://registry.npmjs.org/gatsby-plugin-typescript/-/gatsby-plugin-typescript-4.18.1.tgz", - "integrity": "sha512-YUZcqL2WWiL2ngKe4A5FpTjCij2pLxiim+QaujeKfMjeWfHJ13uQ74HlxQXNpGAy4vMRBiU4CJH71RXgS1aoaA==", + "version": "4.19.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-typescript/-/gatsby-plugin-typescript-4.19.0.tgz", + "integrity": "sha512-f+aC4g/pTkUqFLTHo3OLdPQgdIFcEdoM5i8H4Pph5O4rmFXYHkkQKimRJmAz9cBb6/1wN7IBqI9m4k3AefaAjA==", "requires": { "@babel/core": "^7.15.5", "@babel/plugin-proposal-nullish-coalescing-operator": "^7.14.5", @@ -10560,16 +10469,52 @@ "@babel/plugin-proposal-optional-chaining": "^7.14.5", "@babel/preset-typescript": "^7.15.0", "@babel/runtime": "^7.15.4", - "babel-plugin-remove-graphql-queries": "^4.18.1" + "babel-plugin-remove-graphql-queries": "^4.19.0" }, "dependencies": { + "@lmdb/lmdb-darwin-arm64": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-arm64/-/lmdb-darwin-arm64-2.5.3.tgz", + "integrity": "sha512-RXwGZ/0eCqtCY8FLTM/koR60w+MXyvBUpToXiIyjOcBnC81tAlTUHrRUavCEWPI9zc9VgvpK3+cbumPyR8BSuA==", + "optional": true + }, + "@lmdb/lmdb-darwin-x64": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-x64/-/lmdb-darwin-x64-2.5.3.tgz", + "integrity": "sha512-337dNzh5yCdNCTk8kPfoU7jR3otibSlPDGW0vKZT97rKnQMb9tNdto3RtWoGPsQ8hKmlRZpojOJtmwjncq1MoA==", + "optional": true + }, + "@lmdb/lmdb-linux-arm": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm/-/lmdb-linux-arm-2.5.3.tgz", + "integrity": "sha512-mU2HFJDGwECkoD9dHQEfeTG5mp8hNS2BCfwoiOpVPMeapjYpQz9Uw3FkUjRZ4dGHWKbin40oWHuL0bk2bCx+Sg==", + "optional": true + }, + "@lmdb/lmdb-linux-arm64": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm64/-/lmdb-linux-arm64-2.5.3.tgz", + "integrity": "sha512-VJw60Mdgb4n+L0fO1PqfB0C7TyEQolJAC8qpqvG3JoQwvyOv6LH7Ib/WE3wxEW9nuHmVz9jkK7lk5HfWWgoO1Q==", + "optional": true + }, + "@lmdb/lmdb-linux-x64": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-x64/-/lmdb-linux-x64-2.5.3.tgz", + "integrity": "sha512-qaReO5aV8griBDsBr8uBF/faO3ieGjY1RY4p8JvTL6Mu1ylLrTVvOONqKFlNaCwrmUjWw5jnf7VafxDAeQHTow==", + "optional": true + }, + "@lmdb/lmdb-win32-x64": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-win32-x64/-/lmdb-win32-x64-2.5.3.tgz", + "integrity": "sha512-cK+Elf3RjEzrm3SerAhrFWL5oQAsZSJ/LmjL1joIpTfEP1etJJ9CTRvdaV6XLYAxaEkfdhk/9hOvHLbR9yIhCA==", + "optional": true + }, "babel-plugin-remove-graphql-queries": { - "version": "4.18.1", - "resolved": "https://registry.npmjs.org/babel-plugin-remove-graphql-queries/-/babel-plugin-remove-graphql-queries-4.18.1.tgz", - "integrity": "sha512-2I7qsm3pnyvrS6/Q9YuHK1SpfQLmrgYH/AjpnWpnLHee6SiVb5Te89iphhpBdycpBRVGWh04ram9+z/1rMaRYQ==", + "version": "4.19.0", + "resolved": "https://registry.npmjs.org/babel-plugin-remove-graphql-queries/-/babel-plugin-remove-graphql-queries-4.19.0.tgz", + "integrity": "sha512-VbxC7aZxdqQA0YiAcTD/djIW+6PP/JVODlRmCiqDyTbtI0zhE/Z6je1maCmC6J2LLBsKxhWT3UYTjRfLofK7sQ==", "requires": { "@babel/runtime": "^7.15.4", - "gatsby-core-utils": "^3.18.1" + "gatsby-core-utils": "^3.19.0" } }, "fs-extra": { @@ -10583,9 +10528,9 @@ } }, "gatsby-core-utils": { - "version": "3.18.1", - "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.18.1.tgz", - "integrity": "sha512-sJTxRqizLxYy/tSFk0ydfqEZ3ek1So9HDVUa39F6Oi8XuPCBTFzaAooUvowKGneI5YUbdk5y4VO4ybwVUynntw==", + "version": "3.19.0", + "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.19.0.tgz", + "integrity": "sha512-cjXs9DsXkPZt+UdiLHxtq+rGMGVrcnM0KwkawlruvPchI7lqGNv9CScqlvYPxx1dBhu3zSZS26EBALMlFhyOJA==", "requires": { "@babel/runtime": "^7.15.4", "ci-info": "2.0.0", @@ -10654,11 +10599,6 @@ "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-4.3.0.tgz", "integrity": "sha512-73sE9+3UaLYYFmDsFZnqCInzPyh3MqIwZO9cw58yIqAZhONrrabrYyYe3TuIqtIiOuTXVhsGau8hcrhhwSsDIQ==" }, - "node-gyp-build-optional-packages": { - "version": "5.0.3", - "resolved": "https://registry.npmjs.org/node-gyp-build-optional-packages/-/node-gyp-build-optional-packages-5.0.3.tgz", - "integrity": "sha512-k75jcVzk5wnnc/FMxsf4udAoTEUv2jY3ycfdSd3yWu6Cnd1oee6/CfZJApyscA4FJOmdoixWwiwOyf16RzD5JA==" - }, "resolve-from": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", @@ -10681,9 +10621,9 @@ } }, "gatsby-react-router-scroll": { - "version": "5.18.0", - "resolved": "https://registry.npmjs.org/gatsby-react-router-scroll/-/gatsby-react-router-scroll-5.18.0.tgz", - "integrity": "sha512-/A1k468s6g713c8me5DuGiia8rPWLuwjITQ/pKqgJwioJVB6MnD/iBCbHUTzLHlNwZypAVdGHCN8fCIcPcMb6Q==", + "version": "5.19.0", + "resolved": "https://registry.npmjs.org/gatsby-react-router-scroll/-/gatsby-react-router-scroll-5.19.0.tgz", + "integrity": "sha512-tl1E2/ger3Aw5Vb5n53i9wCBePYqb2dBilO05pd6FfgKYJveFidQwGzzOn1F9smdWq+5c3KJSTlKJaNYPwn72w==", "requires": { "@babel/runtime": "^7.15.4", "prop-types": "^15.8.1" @@ -10734,14 +10674,14 @@ } }, "gatsby-script": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/gatsby-script/-/gatsby-script-1.3.0.tgz", - "integrity": "sha512-eCz6mcMFpB7kvpmyM7AtMTxNxzdrzPgt8GiuDKWFOlDgk1il6PUjO99QsL/cCeokmaiH/6egVnm9b33/x+sy9A==" + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/gatsby-script/-/gatsby-script-1.4.0.tgz", + "integrity": "sha512-+GmHTAfFq/sQWPvl1E8QvApRfxqqamhdqjFo4YloOQRAlDc+e3nMzTzvgj8z3IWqDqlvEfHMnlvQg60E5ThO/A==" }, "gatsby-sharp": { - "version": "0.12.0", - "resolved": "https://registry.npmjs.org/gatsby-sharp/-/gatsby-sharp-0.12.0.tgz", - "integrity": "sha512-dZa/AgxmPzD0vvROEZSuT3IdzAFTxnq1FfLTf9n3mywonvsKYc84zj6nf8TEzBrVrBFAaLvZek4NpVAKWGr4/w==", + "version": "0.13.0", + "resolved": "https://registry.npmjs.org/gatsby-sharp/-/gatsby-sharp-0.13.0.tgz", + "integrity": "sha512-dGuIuWP3rC7hXl/CgkHEY4WQEW+B9Rsg8uo6u+OumuLnLBxD4vTusEIGctVKzlyIxpENEQylQ7w1JKHX9fOy9g==", "requires": { "@types/sharp": "^0.30.0", "sharp": "^0.30.3" @@ -11135,9 +11075,9 @@ } }, "gatsby-worker": { - "version": "1.18.0", - "resolved": "https://registry.npmjs.org/gatsby-worker/-/gatsby-worker-1.18.0.tgz", - "integrity": "sha512-gNzqDrYFMXlfXCzdClORyDQWQZKTOF6nRUrhZT8PUxzQViO+DvnEKE3EAQvZizYKW1Hgw7cbiTtLG3qshkNepw==", + "version": "1.19.0", + "resolved": "https://registry.npmjs.org/gatsby-worker/-/gatsby-worker-1.19.0.tgz", + "integrity": "sha512-E0I51K5+rSpcUkv3wQ17FHZiicLeMH/Hz7p3oxlPCM43pcvsYJTa68Q0MqI1K6XV6Z8Nf48dERKMvHT0PnY4GQ==", "requires": { "@babel/core": "^7.15.5", "@babel/runtime": "^7.15.4" @@ -11698,6 +11638,11 @@ "space-separated-tokens": "^1.0.0" } }, + "he": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/he/-/he-1.2.0.tgz", + "integrity": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==" + }, "header-case": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/header-case/-/header-case-1.0.1.tgz", @@ -11776,16 +11721,6 @@ "toidentifier": "1.0.1" } }, - "http-proxy": { - "version": "1.18.1", - "resolved": "https://registry.npmjs.org/http-proxy/-/http-proxy-1.18.1.tgz", - "integrity": "sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==", - "requires": { - "eventemitter3": "^4.0.0", - "follow-redirects": "^1.0.0", - "requires-port": "^1.0.0" - } - }, "http2-wrapper": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/http2-wrapper/-/http2-wrapper-1.0.3.tgz", @@ -12576,42 +12511,6 @@ "weak-lru-cache": "^1.2.2" } }, - "lmdb-darwin-arm64": { - "version": "2.3.10", - "resolved": "https://registry.npmjs.org/lmdb-darwin-arm64/-/lmdb-darwin-arm64-2.3.10.tgz", - "integrity": "sha512-LVXbH2MYu7/ZuQ8+P9rv+SwNyBKltxo7vHAGJS94HWyfwnCbKEYER9PImBvNBwzvgtaYk6x0RMX3oor6e6KdDQ==", - "optional": true - }, - "lmdb-darwin-x64": { - "version": "2.3.10", - "resolved": "https://registry.npmjs.org/lmdb-darwin-x64/-/lmdb-darwin-x64-2.3.10.tgz", - "integrity": "sha512-gAc/1b/FZOb9yVOT+o0huA+hdW82oxLo5r22dFTLoRUFG1JMzxdTjmnW6ONVOHdqC9a5bt3vBCEY3jmXNqV26A==", - "optional": true - }, - "lmdb-linux-arm": { - "version": "2.3.10", - "resolved": "https://registry.npmjs.org/lmdb-linux-arm/-/lmdb-linux-arm-2.3.10.tgz", - "integrity": "sha512-Rb8+4JjsThuEcJ7GLLwFkCFnoiwv/3hAAbELWITz70buQFF+dCZvCWWgEgmDTxwn5r+wIkdUjmFv4dqqiKQFmQ==", - "optional": true - }, - "lmdb-linux-arm64": { - "version": "2.3.10", - "resolved": "https://registry.npmjs.org/lmdb-linux-arm64/-/lmdb-linux-arm64-2.3.10.tgz", - "integrity": "sha512-Ihr8mdICTK3jA4GXHxrXGK2oekn0mY6zuDSXQDNtyRSH19j3D2Y04A7SEI9S0EP/t5sjKSudYgZbiHDxRCsI5A==", - "optional": true - }, - "lmdb-linux-x64": { - "version": "2.3.10", - "resolved": "https://registry.npmjs.org/lmdb-linux-x64/-/lmdb-linux-x64-2.3.10.tgz", - "integrity": "sha512-E3l3pDiCA9uvnLf+t3qkmBGRO01dp1EHD0x0g0iRnfpAhV7wYbayJGfG93BUt22Tj3fnq4HDo4dQ6ZWaDI1nuw==", - "optional": true - }, - "lmdb-win32-x64": { - "version": "2.3.10", - "resolved": "https://registry.npmjs.org/lmdb-win32-x64/-/lmdb-win32-x64-2.3.10.tgz", - "integrity": "sha512-gspWk34tDANhjn+brdqZstJMptGiwj4qFNVg0Zey9ds+BUlif+Lgf5szrfOVzZ8gVRkk1Lgbz7i78+V7YK7SCA==", - "optional": true - }, "load-bmfont": { "version": "1.4.1", "resolved": "https://registry.npmjs.org/load-bmfont/-/load-bmfont-1.4.1.tgz", @@ -13386,9 +13285,18 @@ "integrity": "sha512-iWjXZvmboq0ja1pUGULQBexmxq8CV4xBhX7VDOTbL7ZR4FOowwY/VOtRxBN/yKxmdGoIp4j5ysNT4u3S2pDQ3Q==" }, "node-gyp-build-optional-packages": { - "version": "4.3.5", - "resolved": "https://registry.npmjs.org/node-gyp-build-optional-packages/-/node-gyp-build-optional-packages-4.3.5.tgz", - "integrity": "sha512-5ke7D8SiQsTQL7CkHpfR1tLwfqtKc0KYEmlnkwd40jHCASskZeS98qoZ1qDUns2aUQWikcjidRUs6PM/3iyN/w==" + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/node-gyp-build-optional-packages/-/node-gyp-build-optional-packages-5.0.3.tgz", + "integrity": "sha512-k75jcVzk5wnnc/FMxsf4udAoTEUv2jY3ycfdSd3yWu6Cnd1oee6/CfZJApyscA4FJOmdoixWwiwOyf16RzD5JA==" + }, + "node-html-parser": { + "version": "5.3.3", + "resolved": "https://registry.npmjs.org/node-html-parser/-/node-html-parser-5.3.3.tgz", + "integrity": "sha512-ncg1033CaX9UexbyA7e1N0aAoAYRDiV8jkTvzEnfd1GDvzFdrsXLzR4p4ik8mwLgnaKP/jyUFWDy9q3jvRT2Jw==", + "requires": { + "css-select": "^4.2.1", + "he": "1.2.0" + } }, "node-int64": { "version": "0.4.0", @@ -14338,14 +14246,14 @@ } }, "caniuse-lite": { - "version": "1.0.30001366", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001366.tgz", - "integrity": "sha512-yy7XLWCubDobokgzudpkKux8e0UOOnLHE6mlNJBzT3lZJz6s5atSEzjoL+fsCPkI0G8MP5uVdDx1ur/fXEWkZA==" + "version": "1.0.30001367", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001367.tgz", + "integrity": "sha512-XDgbeOHfifWV3GEES2B8rtsrADx4Jf+juKX2SICJcaUhjYBO3bR96kvEIHa15VU6ohtOhBZuPGGYGbXMRn0NCw==" }, "electron-to-chromium": { - "version": "1.4.188", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.188.tgz", - "integrity": "sha512-Zpa1+E+BVmD/orkyz1Z2dAT1XNUuVAHB3GrogfyY66dXN0ZWSsygI8+u6QTDai1ZayLcATDJpcv2Z2AZjEcr1A==" + "version": "1.4.194", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.194.tgz", + "integrity": "sha512-ola5UH0xAP1oYY0FFUsPvwtucEzCQHucXnT7PQ1zjHJMccZhCDktEugI++JUR3YuIs7Ff7afz+OVEhVAIMhLAQ==" } } }, @@ -14881,6 +14789,13 @@ "http-errors": "2.0.0", "iconv-lite": "0.4.24", "unpipe": "1.0.0" + }, + "dependencies": { + "bytes": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", + "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==" + } } }, "raw-loader": { @@ -15549,11 +15464,6 @@ "resolved": "https://registry.npmjs.org/require-package-name/-/require-package-name-2.0.1.tgz", "integrity": "sha512-uuoJ1hU/k6M0779t3VMVIYpb2VMJk05cehCaABFhXaibcbvfgR8wKiozLjVFSzJPmQMRqIcO0HMyTFqfV09V6Q==" }, - "requires-port": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz", - "integrity": "sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==" - }, "resolve": { "version": "1.20.0", "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.20.0.tgz", @@ -17434,9 +17344,9 @@ "integrity": "sha1-j97XMk7G6IoP+LkF58CYzcCG1UQ=" }, "update-browserslist-db": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.4.tgz", - "integrity": "sha512-jnmO2BEGUjsMOe/Fg9u0oczOe/ppIDZPebzccl1yDWGLFP16Pa1/RM5wEoKYPG2zstNcDuAStejyxsOuKINdGA==", + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.5.tgz", + "integrity": "sha512-dteFFpCyvuDdr9S/ff1ISkKt/9YZxKjI9WlRR99c180GaztJtRa/fn18FdxGVKVsnPY7/a/FDN68mcvUmP4U7Q==", "requires": { "escalade": "^3.1.1", "picocolors": "^1.0.0" diff --git a/starters/gatsby-starter-theme/package.json b/starters/gatsby-starter-theme/package.json index 420e44434c12a..57d41f5853943 100644 --- a/starters/gatsby-starter-theme/package.json +++ b/starters/gatsby-starter-theme/package.json @@ -10,7 +10,7 @@ }, "license": "0BSD", "dependencies": { - "gatsby": "^4.18.2", + "gatsby": "^4.19.0", "gatsby-theme-blog": "^4.0.0", "gatsby-theme-notes": "^4.0.0", "react": "^17.0.2", diff --git a/starters/gatsby-starter-wordpress-blog/package-lock.json b/starters/gatsby-starter-wordpress-blog/package-lock.json index 24d1bdba22d2d..480e9f6f079cb 100644 --- a/starters/gatsby-starter-wordpress-blog/package-lock.json +++ b/starters/gatsby-starter-wordpress-blog/package-lock.json @@ -66,20 +66,20 @@ "integrity": "sha512-HSmX4WZPPK3FUxYp7g2T6EyO8j96HlZJlxmKPSh6KAcqwyDrfx7hKjXpAW/0FhFfTJsR0Yt4lAjLI2coMptIHQ==" }, "@babel/core": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.18.6.tgz", - "integrity": "sha512-cQbWBpxcbbs/IUredIPkHiAGULLV8iwgNRMFzvbhEXISp4f3rUUXE5+TIw6KwUWUR3DwyI6gmBRnmAtYaWehwQ==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.18.9.tgz", + "integrity": "sha512-1LIb1eL8APMy91/IMW+31ckrfBM4yCoLaVzoDhZUKSM4cu1L1nIidyxkCgzPAgrC5WEz36IPEr/eSeSF9pIn+g==", "requires": { "@ampproject/remapping": "^2.1.0", "@babel/code-frame": "^7.18.6", - "@babel/generator": "^7.18.6", - "@babel/helper-compilation-targets": "^7.18.6", - "@babel/helper-module-transforms": "^7.18.6", - "@babel/helpers": "^7.18.6", - "@babel/parser": "^7.18.6", + "@babel/generator": "^7.18.9", + "@babel/helper-compilation-targets": "^7.18.9", + "@babel/helper-module-transforms": "^7.18.9", + "@babel/helpers": "^7.18.9", + "@babel/parser": "^7.18.9", "@babel/template": "^7.18.6", - "@babel/traverse": "^7.18.6", - "@babel/types": "^7.18.6", + "@babel/traverse": "^7.18.9", + "@babel/types": "^7.18.9", "convert-source-map": "^1.7.0", "debug": "^4.1.0", "gensync": "^1.0.0-beta.2", @@ -111,9 +111,9 @@ } }, "@babel/types": { - "version": "7.18.8", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.8.tgz", - "integrity": "sha512-qwpdsmraq0aJ3osLJRApsc2ouSJCdnMeZwB0DhbtHAtRpZNZCdlbRnHIgcRKzdE1g0iOGg644fzjOBcdOz9cPw==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.9.tgz", + "integrity": "sha512-WwMLAg2MvJmt/rKEVQBBhIVffMmnilX4oe0sRe7iPOHIGsqpruFHHdrfj4O1CMMtgMtCU4oPafZjDPCRgO57Wg==", "requires": { "@babel/helper-validator-identifier": "^7.18.6", "to-fast-properties": "^2.0.0" @@ -145,9 +145,9 @@ } }, "@babel/eslint-parser": { - "version": "7.18.2", - "resolved": "https://registry.npmjs.org/@babel/eslint-parser/-/eslint-parser-7.18.2.tgz", - "integrity": "sha512-oFQYkE8SuH14+uR51JVAmdqwKYXGRjEXx7s+WiagVjqQ+HPE+nnwyF2qlVG8evUsUHmPcA+6YXMEDbIhEyQc5A==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/eslint-parser/-/eslint-parser-7.18.9.tgz", + "integrity": "sha512-KzSGpMBggz4fKbRbWLNyPVTuQr6cmCcBhOyXTw/fieOVaw5oYAwcAj4a7UKcDYCPxQq+CG1NCDZH9e2JTXquiQ==", "requires": { "eslint-scope": "^5.1.1", "eslint-visitor-keys": "^2.1.0", @@ -162,11 +162,11 @@ } }, "@babel/generator": { - "version": "7.18.7", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.18.7.tgz", - "integrity": "sha512-shck+7VLlY72a2w9c3zYWuE1pwOKEiQHV7GTUbSnhyl5eu3i04t30tBY82ZRWrDfo3gkakCFtevExnxbkf2a3A==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.18.9.tgz", + "integrity": "sha512-wt5Naw6lJrL1/SGkipMiFxJjtyczUWTP38deiP1PO60HsBjDeKk08CGC3S8iVuvf0FmTdgKwU1KIXzSKL1G0Ug==", "requires": { - "@babel/types": "^7.18.7", + "@babel/types": "^7.18.9", "@jridgewell/gen-mapping": "^0.3.2", "jsesc": "^2.5.1" }, @@ -177,9 +177,9 @@ "integrity": "sha512-MmetCkz9ej86nJQV+sFCxoGGrUbU3q02kgLciwkrt9QqEB7cP39oKEY0PakknEO0Gu20SskMRi+AYZ3b1TpN9g==" }, "@babel/types": { - "version": "7.18.8", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.8.tgz", - "integrity": "sha512-qwpdsmraq0aJ3osLJRApsc2ouSJCdnMeZwB0DhbtHAtRpZNZCdlbRnHIgcRKzdE1g0iOGg644fzjOBcdOz9cPw==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.9.tgz", + "integrity": "sha512-WwMLAg2MvJmt/rKEVQBBhIVffMmnilX4oe0sRe7iPOHIGsqpruFHHdrfj4O1CMMtgMtCU4oPafZjDPCRgO57Wg==", "requires": { "@babel/helper-validator-identifier": "^7.18.6", "to-fast-properties": "^2.0.0" @@ -211,9 +211,9 @@ "integrity": "sha512-MmetCkz9ej86nJQV+sFCxoGGrUbU3q02kgLciwkrt9QqEB7cP39oKEY0PakknEO0Gu20SskMRi+AYZ3b1TpN9g==" }, "@babel/types": { - "version": "7.18.8", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.8.tgz", - "integrity": "sha512-qwpdsmraq0aJ3osLJRApsc2ouSJCdnMeZwB0DhbtHAtRpZNZCdlbRnHIgcRKzdE1g0iOGg644fzjOBcdOz9cPw==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.9.tgz", + "integrity": "sha512-WwMLAg2MvJmt/rKEVQBBhIVffMmnilX4oe0sRe7iPOHIGsqpruFHHdrfj4O1CMMtgMtCU4oPafZjDPCRgO57Wg==", "requires": { "@babel/helper-validator-identifier": "^7.18.6", "to-fast-properties": "^2.0.0" @@ -222,12 +222,12 @@ } }, "@babel/helper-builder-binary-assignment-operator-visitor": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.18.6.tgz", - "integrity": "sha512-KT10c1oWEpmrIRYnthbzHgoOf6B+Xd6a5yhdbNtdhtG7aO1or5HViuf1TQR36xY/QprXA5nvxO6nAjhJ4y38jw==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.18.9.tgz", + "integrity": "sha512-yFQ0YCHoIqarl8BCRwBL8ulYUaZpz3bNsA7oFepAzee+8/+ImtADXNOmO5vJvsPff3qi+hvpkY/NYBTrBQgdNw==", "requires": { "@babel/helper-explode-assignable-expression": "^7.18.6", - "@babel/types": "^7.18.6" + "@babel/types": "^7.18.9" }, "dependencies": { "@babel/helper-validator-identifier": { @@ -236,9 +236,9 @@ "integrity": "sha512-MmetCkz9ej86nJQV+sFCxoGGrUbU3q02kgLciwkrt9QqEB7cP39oKEY0PakknEO0Gu20SskMRi+AYZ3b1TpN9g==" }, "@babel/types": { - "version": "7.18.8", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.8.tgz", - "integrity": "sha512-qwpdsmraq0aJ3osLJRApsc2ouSJCdnMeZwB0DhbtHAtRpZNZCdlbRnHIgcRKzdE1g0iOGg644fzjOBcdOz9cPw==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.9.tgz", + "integrity": "sha512-WwMLAg2MvJmt/rKEVQBBhIVffMmnilX4oe0sRe7iPOHIGsqpruFHHdrfj4O1CMMtgMtCU4oPafZjDPCRgO57Wg==", "requires": { "@babel/helper-validator-identifier": "^7.18.6", "to-fast-properties": "^2.0.0" @@ -247,11 +247,11 @@ } }, "@babel/helper-compilation-targets": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.18.6.tgz", - "integrity": "sha512-vFjbfhNCzqdeAtZflUFrG5YIFqGTqsctrtkZ1D/NB0mDW9TwW3GmmUepYY4G9wCET5rY5ugz4OGTcLd614IzQg==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.18.9.tgz", + "integrity": "sha512-tzLCyVmqUiFlcFoAPLA/gL9TeYrF61VLNtb+hvkuVaB5SUjW7jcfrglBIX1vUIoT7CLP3bBlIMeyEsIl2eFQNg==", "requires": { - "@babel/compat-data": "^7.18.6", + "@babel/compat-data": "^7.18.8", "@babel/helper-validator-option": "^7.18.6", "browserslist": "^4.20.2", "semver": "^6.3.0" @@ -265,16 +265,16 @@ } }, "@babel/helper-create-class-features-plugin": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.18.6.tgz", - "integrity": "sha512-YfDzdnoxHGV8CzqHGyCbFvXg5QESPFkXlHtvdCkesLjjVMT2Adxe4FGUR5ChIb3DxSaXO12iIOCWoXdsUVwnqw==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.18.9.tgz", + "integrity": "sha512-WvypNAYaVh23QcjpMR24CwZY2Nz6hqdOcFdPbNpV56hL5H6KiFheO7Xm1aPdlLQ7d5emYZX7VZwPp9x3z+2opw==", "requires": { "@babel/helper-annotate-as-pure": "^7.18.6", - "@babel/helper-environment-visitor": "^7.18.6", - "@babel/helper-function-name": "^7.18.6", - "@babel/helper-member-expression-to-functions": "^7.18.6", + "@babel/helper-environment-visitor": "^7.18.9", + "@babel/helper-function-name": "^7.18.9", + "@babel/helper-member-expression-to-functions": "^7.18.9", "@babel/helper-optimise-call-expression": "^7.18.6", - "@babel/helper-replace-supers": "^7.18.6", + "@babel/helper-replace-supers": "^7.18.9", "@babel/helper-split-export-declaration": "^7.18.6" } }, @@ -318,9 +318,9 @@ } }, "@babel/helper-environment-visitor": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.18.6.tgz", - "integrity": "sha512-8n6gSfn2baOY+qlp+VSzsosjCVGFqWKmDF0cCWOybh52Dw3SEyoWR1KrhMJASjLwIEkkAufZ0xvr+SxLHSpy2Q==" + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.18.9.tgz", + "integrity": "sha512-3r/aACDJ3fhQ/EVgFy0hpj8oHyHpQc+LPtJoY9SzTThAsStm4Ptegq92vqKoE3vD706ZVFWITnMnxucw+S9Ipg==" }, "@babel/helper-explode-assignable-expression": { "version": "7.18.6", @@ -336,9 +336,9 @@ "integrity": "sha512-MmetCkz9ej86nJQV+sFCxoGGrUbU3q02kgLciwkrt9QqEB7cP39oKEY0PakknEO0Gu20SskMRi+AYZ3b1TpN9g==" }, "@babel/types": { - "version": "7.18.8", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.8.tgz", - "integrity": "sha512-qwpdsmraq0aJ3osLJRApsc2ouSJCdnMeZwB0DhbtHAtRpZNZCdlbRnHIgcRKzdE1g0iOGg644fzjOBcdOz9cPw==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.9.tgz", + "integrity": "sha512-WwMLAg2MvJmt/rKEVQBBhIVffMmnilX4oe0sRe7iPOHIGsqpruFHHdrfj4O1CMMtgMtCU4oPafZjDPCRgO57Wg==", "requires": { "@babel/helper-validator-identifier": "^7.18.6", "to-fast-properties": "^2.0.0" @@ -347,12 +347,12 @@ } }, "@babel/helper-function-name": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.18.6.tgz", - "integrity": "sha512-0mWMxV1aC97dhjCah5U5Ua7668r5ZmSC2DLfH2EZnf9c3/dHZKiFa5pRLMH5tjSl471tY6496ZWk/kjNONBxhw==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.18.9.tgz", + "integrity": "sha512-fJgWlZt7nxGksJS9a0XdSaI4XvpExnNIgRP+rVefWh5U7BL8pPuir6SJUmFKRfjWQ51OtWSzwOxhaH/EBWWc0A==", "requires": { "@babel/template": "^7.18.6", - "@babel/types": "^7.18.6" + "@babel/types": "^7.18.9" }, "dependencies": { "@babel/helper-validator-identifier": { @@ -361,9 +361,9 @@ "integrity": "sha512-MmetCkz9ej86nJQV+sFCxoGGrUbU3q02kgLciwkrt9QqEB7cP39oKEY0PakknEO0Gu20SskMRi+AYZ3b1TpN9g==" }, "@babel/types": { - "version": "7.18.8", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.8.tgz", - "integrity": "sha512-qwpdsmraq0aJ3osLJRApsc2ouSJCdnMeZwB0DhbtHAtRpZNZCdlbRnHIgcRKzdE1g0iOGg644fzjOBcdOz9cPw==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.9.tgz", + "integrity": "sha512-WwMLAg2MvJmt/rKEVQBBhIVffMmnilX4oe0sRe7iPOHIGsqpruFHHdrfj4O1CMMtgMtCU4oPafZjDPCRgO57Wg==", "requires": { "@babel/helper-validator-identifier": "^7.18.6", "to-fast-properties": "^2.0.0" @@ -385,9 +385,9 @@ "integrity": "sha512-MmetCkz9ej86nJQV+sFCxoGGrUbU3q02kgLciwkrt9QqEB7cP39oKEY0PakknEO0Gu20SskMRi+AYZ3b1TpN9g==" }, "@babel/types": { - "version": "7.18.8", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.8.tgz", - "integrity": "sha512-qwpdsmraq0aJ3osLJRApsc2ouSJCdnMeZwB0DhbtHAtRpZNZCdlbRnHIgcRKzdE1g0iOGg644fzjOBcdOz9cPw==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.9.tgz", + "integrity": "sha512-WwMLAg2MvJmt/rKEVQBBhIVffMmnilX4oe0sRe7iPOHIGsqpruFHHdrfj4O1CMMtgMtCU4oPafZjDPCRgO57Wg==", "requires": { "@babel/helper-validator-identifier": "^7.18.6", "to-fast-properties": "^2.0.0" @@ -396,11 +396,11 @@ } }, "@babel/helper-member-expression-to-functions": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.18.6.tgz", - "integrity": "sha512-CeHxqwwipekotzPDUuJOfIMtcIHBuc7WAzLmTYWctVigqS5RktNMQ5bEwQSuGewzYnCtTWa3BARXeiLxDTv+Ng==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.18.9.tgz", + "integrity": "sha512-RxifAh2ZoVU67PyKIO4AMi1wTenGfMR/O/ae0CCRqwgBAt5v7xjdtRw7UoSbsreKrQn5t7r89eruK/9JjYHuDg==", "requires": { - "@babel/types": "^7.18.6" + "@babel/types": "^7.18.9" }, "dependencies": { "@babel/helper-validator-identifier": { @@ -409,9 +409,9 @@ "integrity": "sha512-MmetCkz9ej86nJQV+sFCxoGGrUbU3q02kgLciwkrt9QqEB7cP39oKEY0PakknEO0Gu20SskMRi+AYZ3b1TpN9g==" }, "@babel/types": { - "version": "7.18.8", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.8.tgz", - "integrity": "sha512-qwpdsmraq0aJ3osLJRApsc2ouSJCdnMeZwB0DhbtHAtRpZNZCdlbRnHIgcRKzdE1g0iOGg644fzjOBcdOz9cPw==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.9.tgz", + "integrity": "sha512-WwMLAg2MvJmt/rKEVQBBhIVffMmnilX4oe0sRe7iPOHIGsqpruFHHdrfj4O1CMMtgMtCU4oPafZjDPCRgO57Wg==", "requires": { "@babel/helper-validator-identifier": "^7.18.6", "to-fast-properties": "^2.0.0" @@ -428,18 +428,18 @@ } }, "@babel/helper-module-transforms": { - "version": "7.18.8", - "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.18.8.tgz", - "integrity": "sha512-che3jvZwIcZxrwh63VfnFTUzcAM9v/lznYkkRxIBGMPt1SudOKHAEec0SIRCfiuIzTcF7VGj/CaTT6gY4eWxvA==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.18.9.tgz", + "integrity": "sha512-KYNqY0ICwfv19b31XzvmI/mfcylOzbLtowkw+mfvGPAQ3kfCnMLYbED3YecL5tPd8nAYFQFAd6JHp2LxZk/J1g==", "requires": { - "@babel/helper-environment-visitor": "^7.18.6", + "@babel/helper-environment-visitor": "^7.18.9", "@babel/helper-module-imports": "^7.18.6", "@babel/helper-simple-access": "^7.18.6", "@babel/helper-split-export-declaration": "^7.18.6", "@babel/helper-validator-identifier": "^7.18.6", "@babel/template": "^7.18.6", - "@babel/traverse": "^7.18.8", - "@babel/types": "^7.18.8" + "@babel/traverse": "^7.18.9", + "@babel/types": "^7.18.9" }, "dependencies": { "@babel/helper-module-imports": { @@ -456,9 +456,9 @@ "integrity": "sha512-MmetCkz9ej86nJQV+sFCxoGGrUbU3q02kgLciwkrt9QqEB7cP39oKEY0PakknEO0Gu20SskMRi+AYZ3b1TpN9g==" }, "@babel/types": { - "version": "7.18.8", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.8.tgz", - "integrity": "sha512-qwpdsmraq0aJ3osLJRApsc2ouSJCdnMeZwB0DhbtHAtRpZNZCdlbRnHIgcRKzdE1g0iOGg644fzjOBcdOz9cPw==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.9.tgz", + "integrity": "sha512-WwMLAg2MvJmt/rKEVQBBhIVffMmnilX4oe0sRe7iPOHIGsqpruFHHdrfj4O1CMMtgMtCU4oPafZjDPCRgO57Wg==", "requires": { "@babel/helper-validator-identifier": "^7.18.6", "to-fast-properties": "^2.0.0" @@ -480,9 +480,9 @@ "integrity": "sha512-MmetCkz9ej86nJQV+sFCxoGGrUbU3q02kgLciwkrt9QqEB7cP39oKEY0PakknEO0Gu20SskMRi+AYZ3b1TpN9g==" }, "@babel/types": { - "version": "7.18.8", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.8.tgz", - "integrity": "sha512-qwpdsmraq0aJ3osLJRApsc2ouSJCdnMeZwB0DhbtHAtRpZNZCdlbRnHIgcRKzdE1g0iOGg644fzjOBcdOz9cPw==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.9.tgz", + "integrity": "sha512-WwMLAg2MvJmt/rKEVQBBhIVffMmnilX4oe0sRe7iPOHIGsqpruFHHdrfj4O1CMMtgMtCU4oPafZjDPCRgO57Wg==", "requires": { "@babel/helper-validator-identifier": "^7.18.6", "to-fast-properties": "^2.0.0" @@ -491,19 +491,19 @@ } }, "@babel/helper-plugin-utils": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.18.6.tgz", - "integrity": "sha512-gvZnm1YAAxh13eJdkb9EWHBnF3eAub3XTLCZEehHT2kWxiKVRL64+ae5Y6Ivne0mVHmMYKT+xWgZO+gQhuLUBg==" + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.18.9.tgz", + "integrity": "sha512-aBXPT3bmtLryXaoJLyYPXPlSD4p1ld9aYeR+sJNOZjJJGiOpb+fKfh3NkcCu7J54nUJwCERPBExCCpyCOHnu/w==" }, "@babel/helper-remap-async-to-generator": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.18.6.tgz", - "integrity": "sha512-z5wbmV55TveUPZlCLZvxWHtrjuJd+8inFhk7DG0WW87/oJuGDcjDiu7HIvGcpf5464L6xKCg3vNkmlVVz9hwyQ==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.18.9.tgz", + "integrity": "sha512-dI7q50YKd8BAv3VEfgg7PS7yD3Rtbi2J1XMXaalXO0W0164hYLnh8zpjRS0mte9MfVp/tltvr/cfdXPvJr1opA==", "requires": { "@babel/helper-annotate-as-pure": "^7.18.6", - "@babel/helper-environment-visitor": "^7.18.6", - "@babel/helper-wrap-function": "^7.18.6", - "@babel/types": "^7.18.6" + "@babel/helper-environment-visitor": "^7.18.9", + "@babel/helper-wrap-function": "^7.18.9", + "@babel/types": "^7.18.9" }, "dependencies": { "@babel/helper-validator-identifier": { @@ -512,9 +512,9 @@ "integrity": "sha512-MmetCkz9ej86nJQV+sFCxoGGrUbU3q02kgLciwkrt9QqEB7cP39oKEY0PakknEO0Gu20SskMRi+AYZ3b1TpN9g==" }, "@babel/types": { - "version": "7.18.8", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.8.tgz", - "integrity": "sha512-qwpdsmraq0aJ3osLJRApsc2ouSJCdnMeZwB0DhbtHAtRpZNZCdlbRnHIgcRKzdE1g0iOGg644fzjOBcdOz9cPw==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.9.tgz", + "integrity": "sha512-WwMLAg2MvJmt/rKEVQBBhIVffMmnilX4oe0sRe7iPOHIGsqpruFHHdrfj4O1CMMtgMtCU4oPafZjDPCRgO57Wg==", "requires": { "@babel/helper-validator-identifier": "^7.18.6", "to-fast-properties": "^2.0.0" @@ -523,15 +523,15 @@ } }, "@babel/helper-replace-supers": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.18.6.tgz", - "integrity": "sha512-fTf7zoXnUGl9gF25fXCWE26t7Tvtyn6H4hkLSYhATwJvw2uYxd3aoXplMSe0g9XbwK7bmxNes7+FGO0rB/xC0g==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.18.9.tgz", + "integrity": "sha512-dNsWibVI4lNT6HiuOIBr1oyxo40HvIVmbwPUm3XZ7wMh4k2WxrxTqZwSqw/eEmXDS9np0ey5M2bz9tBmO9c+YQ==", "requires": { - "@babel/helper-environment-visitor": "^7.18.6", - "@babel/helper-member-expression-to-functions": "^7.18.6", + "@babel/helper-environment-visitor": "^7.18.9", + "@babel/helper-member-expression-to-functions": "^7.18.9", "@babel/helper-optimise-call-expression": "^7.18.6", - "@babel/traverse": "^7.18.6", - "@babel/types": "^7.18.6" + "@babel/traverse": "^7.18.9", + "@babel/types": "^7.18.9" }, "dependencies": { "@babel/helper-validator-identifier": { @@ -540,9 +540,9 @@ "integrity": "sha512-MmetCkz9ej86nJQV+sFCxoGGrUbU3q02kgLciwkrt9QqEB7cP39oKEY0PakknEO0Gu20SskMRi+AYZ3b1TpN9g==" }, "@babel/types": { - "version": "7.18.8", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.8.tgz", - "integrity": "sha512-qwpdsmraq0aJ3osLJRApsc2ouSJCdnMeZwB0DhbtHAtRpZNZCdlbRnHIgcRKzdE1g0iOGg644fzjOBcdOz9cPw==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.9.tgz", + "integrity": "sha512-WwMLAg2MvJmt/rKEVQBBhIVffMmnilX4oe0sRe7iPOHIGsqpruFHHdrfj4O1CMMtgMtCU4oPafZjDPCRgO57Wg==", "requires": { "@babel/helper-validator-identifier": "^7.18.6", "to-fast-properties": "^2.0.0" @@ -564,9 +564,9 @@ "integrity": "sha512-MmetCkz9ej86nJQV+sFCxoGGrUbU3q02kgLciwkrt9QqEB7cP39oKEY0PakknEO0Gu20SskMRi+AYZ3b1TpN9g==" }, "@babel/types": { - "version": "7.18.8", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.8.tgz", - "integrity": "sha512-qwpdsmraq0aJ3osLJRApsc2ouSJCdnMeZwB0DhbtHAtRpZNZCdlbRnHIgcRKzdE1g0iOGg644fzjOBcdOz9cPw==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.9.tgz", + "integrity": "sha512-WwMLAg2MvJmt/rKEVQBBhIVffMmnilX4oe0sRe7iPOHIGsqpruFHHdrfj4O1CMMtgMtCU4oPafZjDPCRgO57Wg==", "requires": { "@babel/helper-validator-identifier": "^7.18.6", "to-fast-properties": "^2.0.0" @@ -575,11 +575,11 @@ } }, "@babel/helper-skip-transparent-expression-wrappers": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.18.6.tgz", - "integrity": "sha512-4KoLhwGS9vGethZpAhYnMejWkX64wsnHPDwvOsKWU6Fg4+AlK2Jz3TyjQLMEPvz+1zemi/WBdkYxCD0bAfIkiw==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.18.9.tgz", + "integrity": "sha512-imytd2gHi3cJPsybLRbmFrF7u5BIEuI2cNheyKi3/iOBC63kNn3q8Crn2xVuESli0aM4KYsyEqKyS7lFL8YVtw==", "requires": { - "@babel/types": "^7.18.6" + "@babel/types": "^7.18.9" }, "dependencies": { "@babel/helper-validator-identifier": { @@ -588,9 +588,9 @@ "integrity": "sha512-MmetCkz9ej86nJQV+sFCxoGGrUbU3q02kgLciwkrt9QqEB7cP39oKEY0PakknEO0Gu20SskMRi+AYZ3b1TpN9g==" }, "@babel/types": { - "version": "7.18.8", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.8.tgz", - "integrity": "sha512-qwpdsmraq0aJ3osLJRApsc2ouSJCdnMeZwB0DhbtHAtRpZNZCdlbRnHIgcRKzdE1g0iOGg644fzjOBcdOz9cPw==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.9.tgz", + "integrity": "sha512-WwMLAg2MvJmt/rKEVQBBhIVffMmnilX4oe0sRe7iPOHIGsqpruFHHdrfj4O1CMMtgMtCU4oPafZjDPCRgO57Wg==", "requires": { "@babel/helper-validator-identifier": "^7.18.6", "to-fast-properties": "^2.0.0" @@ -612,9 +612,9 @@ "integrity": "sha512-MmetCkz9ej86nJQV+sFCxoGGrUbU3q02kgLciwkrt9QqEB7cP39oKEY0PakknEO0Gu20SskMRi+AYZ3b1TpN9g==" }, "@babel/types": { - "version": "7.18.8", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.8.tgz", - "integrity": "sha512-qwpdsmraq0aJ3osLJRApsc2ouSJCdnMeZwB0DhbtHAtRpZNZCdlbRnHIgcRKzdE1g0iOGg644fzjOBcdOz9cPw==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.9.tgz", + "integrity": "sha512-WwMLAg2MvJmt/rKEVQBBhIVffMmnilX4oe0sRe7iPOHIGsqpruFHHdrfj4O1CMMtgMtCU4oPafZjDPCRgO57Wg==", "requires": { "@babel/helper-validator-identifier": "^7.18.6", "to-fast-properties": "^2.0.0" @@ -633,14 +633,14 @@ "integrity": "sha512-XO7gESt5ouv/LRJdrVjkShckw6STTaB7l9BrpBaAHDeF5YZT+01PCwmR0SJHnkW6i8OwW/EVWRShfi4j2x+KQw==" }, "@babel/helper-wrap-function": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.18.6.tgz", - "integrity": "sha512-I5/LZfozwMNbwr/b1vhhuYD+J/mU+gfGAj5td7l5Rv9WYmH6i3Om69WGKNmlIpsVW/mF6O5bvTKbvDQZVgjqOw==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.18.9.tgz", + "integrity": "sha512-cG2ru3TRAL6a60tfQflpEfs4ldiPwF6YW3zfJiRgmoFVIaC1vGnBBgatfec+ZUziPHkHSaXAuEck3Cdkf3eRpQ==", "requires": { - "@babel/helper-function-name": "^7.18.6", + "@babel/helper-function-name": "^7.18.9", "@babel/template": "^7.18.6", - "@babel/traverse": "^7.18.6", - "@babel/types": "^7.18.6" + "@babel/traverse": "^7.18.9", + "@babel/types": "^7.18.9" }, "dependencies": { "@babel/helper-validator-identifier": { @@ -649,9 +649,9 @@ "integrity": "sha512-MmetCkz9ej86nJQV+sFCxoGGrUbU3q02kgLciwkrt9QqEB7cP39oKEY0PakknEO0Gu20SskMRi+AYZ3b1TpN9g==" }, "@babel/types": { - "version": "7.18.8", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.8.tgz", - "integrity": "sha512-qwpdsmraq0aJ3osLJRApsc2ouSJCdnMeZwB0DhbtHAtRpZNZCdlbRnHIgcRKzdE1g0iOGg644fzjOBcdOz9cPw==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.9.tgz", + "integrity": "sha512-WwMLAg2MvJmt/rKEVQBBhIVffMmnilX4oe0sRe7iPOHIGsqpruFHHdrfj4O1CMMtgMtCU4oPafZjDPCRgO57Wg==", "requires": { "@babel/helper-validator-identifier": "^7.18.6", "to-fast-properties": "^2.0.0" @@ -660,13 +660,13 @@ } }, "@babel/helpers": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.18.6.tgz", - "integrity": "sha512-vzSiiqbQOghPngUYt/zWGvK3LAsPhz55vc9XNN0xAl2gV4ieShI2OQli5duxWHD+72PZPTKAcfcZDE1Cwc5zsQ==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.18.9.tgz", + "integrity": "sha512-Jf5a+rbrLoR4eNdUmnFu8cN5eNJT6qdTdOg5IHIzq87WwyRw9PwguLFOWYgktN/60IP4fgDUawJvs7PjQIzELQ==", "requires": { "@babel/template": "^7.18.6", - "@babel/traverse": "^7.18.6", - "@babel/types": "^7.18.6" + "@babel/traverse": "^7.18.9", + "@babel/types": "^7.18.9" }, "dependencies": { "@babel/helper-validator-identifier": { @@ -675,9 +675,9 @@ "integrity": "sha512-MmetCkz9ej86nJQV+sFCxoGGrUbU3q02kgLciwkrt9QqEB7cP39oKEY0PakknEO0Gu20SskMRi+AYZ3b1TpN9g==" }, "@babel/types": { - "version": "7.18.8", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.8.tgz", - "integrity": "sha512-qwpdsmraq0aJ3osLJRApsc2ouSJCdnMeZwB0DhbtHAtRpZNZCdlbRnHIgcRKzdE1g0iOGg644fzjOBcdOz9cPw==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.9.tgz", + "integrity": "sha512-WwMLAg2MvJmt/rKEVQBBhIVffMmnilX4oe0sRe7iPOHIGsqpruFHHdrfj4O1CMMtgMtCU4oPafZjDPCRgO57Wg==", "requires": { "@babel/helper-validator-identifier": "^7.18.6", "to-fast-properties": "^2.0.0" @@ -742,9 +742,9 @@ } }, "@babel/parser": { - "version": "7.18.8", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.18.8.tgz", - "integrity": "sha512-RSKRfYX20dyH+elbJK2uqAkVyucL+xXzhqlMD5/ZXx+dAAwpyB7HsvnHe/ZUGOF+xLr5Wx9/JoXVTj6BQE2/oA==" + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.18.9.tgz", + "integrity": "sha512-9uJveS9eY9DJ0t64YbIBZICtJy8a5QrDEVdiLCG97fVLpDTpGX7t8mMSb6OWw6Lrnjqj4O8zwjELX3dhoMgiBg==" }, "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": { "version": "7.18.6", @@ -755,13 +755,13 @@ } }, "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.18.6.tgz", - "integrity": "sha512-Udgu8ZRgrBrttVz6A0EVL0SJ1z+RLbIeqsu632SA1hf0awEppD6TvdznoH+orIF8wtFFAV/Enmw9Y+9oV8TQcw==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.18.9.tgz", + "integrity": "sha512-AHrP9jadvH7qlOj6PINbgSuphjQUAK7AOT7DPjBo9EHoLhQTnnK5u45e1Hd4DbSQEO9nqPWtQ89r+XEOWFScKg==", "requires": { - "@babel/helper-plugin-utils": "^7.18.6", - "@babel/helper-skip-transparent-expression-wrappers": "^7.18.6", - "@babel/plugin-proposal-optional-chaining": "^7.18.6" + "@babel/helper-plugin-utils": "^7.18.9", + "@babel/helper-skip-transparent-expression-wrappers": "^7.18.9", + "@babel/plugin-proposal-optional-chaining": "^7.18.9" } }, "@babel/plugin-proposal-async-generator-functions": { @@ -804,11 +804,11 @@ } }, "@babel/plugin-proposal-export-namespace-from": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.18.6.tgz", - "integrity": "sha512-zr/QcUlUo7GPo6+X1wC98NJADqmy5QTFWWhqeQWiki4XHafJtLl/YMGkmRB2szDD2IYJCCdBTd4ElwhId9T7Xw==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.18.9.tgz", + "integrity": "sha512-k1NtHyOMvlDDFeb9G5PhUXuGj8m/wiwojgQVEhJ/fsVsMCpLyOP4h0uGEjYJKrRI+EVPlb5Jk+Gt9P97lOGwtA==", "requires": { - "@babel/helper-plugin-utils": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.9", "@babel/plugin-syntax-export-namespace-from": "^7.8.3" } }, @@ -822,11 +822,11 @@ } }, "@babel/plugin-proposal-logical-assignment-operators": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.18.6.tgz", - "integrity": "sha512-zMo66azZth/0tVd7gmkxOkOjs2rpHyhpcFo565PUP37hSp6hSd9uUKIfTDFMz58BwqgQKhJ9YxtM5XddjXVn+Q==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.18.9.tgz", + "integrity": "sha512-128YbMpjCrP35IOExw2Fq+x55LMP42DzhOhX2aNNIdI9avSWl2PI0yuBWarr3RYpZBSPtabfadkH2yeRiMD61Q==", "requires": { - "@babel/helper-plugin-utils": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.9", "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4" } }, @@ -849,15 +849,15 @@ } }, "@babel/plugin-proposal-object-rest-spread": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.18.6.tgz", - "integrity": "sha512-9yuM6wr4rIsKa1wlUAbZEazkCrgw2sMPEXCr4Rnwetu7cEW1NydkCWytLuYletbf8vFxdJxFhwEZqMpOx2eZyw==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.18.9.tgz", + "integrity": "sha512-kDDHQ5rflIeY5xl69CEqGEZ0KY369ehsCIEbTGb4siHG5BE9sga/T0r0OUwyZNLMmZE79E1kbsqAjwFCW4ds6Q==", "requires": { - "@babel/compat-data": "^7.18.6", - "@babel/helper-compilation-targets": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6", + "@babel/compat-data": "^7.18.8", + "@babel/helper-compilation-targets": "^7.18.9", + "@babel/helper-plugin-utils": "^7.18.9", "@babel/plugin-syntax-object-rest-spread": "^7.8.3", - "@babel/plugin-transform-parameters": "^7.18.6" + "@babel/plugin-transform-parameters": "^7.18.8" } }, "@babel/plugin-proposal-optional-catch-binding": { @@ -870,12 +870,12 @@ } }, "@babel/plugin-proposal-optional-chaining": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.18.6.tgz", - "integrity": "sha512-PatI6elL5eMzoypFAiYDpYQyMtXTn+iMhuxxQt5mAXD4fEmKorpSI3PHd+i3JXBJN3xyA6MvJv7at23HffFHwA==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.18.9.tgz", + "integrity": "sha512-v5nwt4IqBXihxGsW2QmCWMDS3B3bzGIk/EQVZz2ei7f3NJl8NzAJVvUmpDW5q1CRNY+Beb/k58UAH1Km1N411w==", "requires": { - "@babel/helper-plugin-utils": "^7.18.6", - "@babel/helper-skip-transparent-expression-wrappers": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.9", + "@babel/helper-skip-transparent-expression-wrappers": "^7.18.9", "@babel/plugin-syntax-optional-chaining": "^7.8.3" } }, @@ -1084,9 +1084,9 @@ "integrity": "sha512-MmetCkz9ej86nJQV+sFCxoGGrUbU3q02kgLciwkrt9QqEB7cP39oKEY0PakknEO0Gu20SskMRi+AYZ3b1TpN9g==" }, "@babel/types": { - "version": "7.18.8", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.8.tgz", - "integrity": "sha512-qwpdsmraq0aJ3osLJRApsc2ouSJCdnMeZwB0DhbtHAtRpZNZCdlbRnHIgcRKzdE1g0iOGg644fzjOBcdOz9cPw==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.9.tgz", + "integrity": "sha512-WwMLAg2MvJmt/rKEVQBBhIVffMmnilX4oe0sRe7iPOHIGsqpruFHHdrfj4O1CMMtgMtCU4oPafZjDPCRgO57Wg==", "requires": { "@babel/helper-validator-identifier": "^7.18.6", "to-fast-properties": "^2.0.0" @@ -1103,42 +1103,42 @@ } }, "@babel/plugin-transform-block-scoping": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.18.6.tgz", - "integrity": "sha512-pRqwb91C42vs1ahSAWJkxOxU1RHWDn16XAa6ggQ72wjLlWyYeAcLvTtE0aM8ph3KNydy9CQF2nLYcjq1WysgxQ==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.18.9.tgz", + "integrity": "sha512-5sDIJRV1KtQVEbt/EIBwGy4T01uYIo4KRB3VUqzkhrAIOGx7AoctL9+Ux88btY0zXdDyPJ9mW+bg+v+XEkGmtw==", "requires": { - "@babel/helper-plugin-utils": "^7.18.6" + "@babel/helper-plugin-utils": "^7.18.9" } }, "@babel/plugin-transform-classes": { - "version": "7.18.8", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.18.8.tgz", - "integrity": "sha512-RySDoXdF6hgHSHuAW4aLGyVQdmvEX/iJtjVre52k0pxRq4hzqze+rAVP++NmNv596brBpYmaiKgTZby7ziBnVg==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.18.9.tgz", + "integrity": "sha512-EkRQxsxoytpTlKJmSPYrsOMjCILacAjtSVkd4gChEe2kXjFCun3yohhW5I7plXJhCemM0gKsaGMcO8tinvCA5g==", "requires": { "@babel/helper-annotate-as-pure": "^7.18.6", - "@babel/helper-environment-visitor": "^7.18.6", - "@babel/helper-function-name": "^7.18.6", + "@babel/helper-environment-visitor": "^7.18.9", + "@babel/helper-function-name": "^7.18.9", "@babel/helper-optimise-call-expression": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6", - "@babel/helper-replace-supers": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.9", + "@babel/helper-replace-supers": "^7.18.9", "@babel/helper-split-export-declaration": "^7.18.6", "globals": "^11.1.0" } }, "@babel/plugin-transform-computed-properties": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.18.6.tgz", - "integrity": "sha512-9repI4BhNrR0KenoR9vm3/cIc1tSBIo+u1WVjKCAynahj25O8zfbiE6JtAtHPGQSs4yZ+bA8mRasRP+qc+2R5A==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.18.9.tgz", + "integrity": "sha512-+i0ZU1bCDymKakLxn5srGHrsAPRELC2WIbzwjLhHW9SIE1cPYkLCL0NlnXMZaM1vhfgA2+M7hySk42VBvrkBRw==", "requires": { - "@babel/helper-plugin-utils": "^7.18.6" + "@babel/helper-plugin-utils": "^7.18.9" } }, "@babel/plugin-transform-destructuring": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.18.6.tgz", - "integrity": "sha512-tgy3u6lRp17ilY8r1kP4i2+HDUwxlVqq3RTc943eAWSzGgpU1qhiKpqZ5CMyHReIYPHdo3Kg8v8edKtDqSVEyQ==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.18.9.tgz", + "integrity": "sha512-p5VCYNddPLkZTq4XymQIaIfZNJwT9YsjkPOhkVEqt6QIpQFZVM9IltqqYpOEkJoN1DPznmxUDyZ5CTZs/ZCuHA==", "requires": { - "@babel/helper-plugin-utils": "^7.18.6" + "@babel/helper-plugin-utils": "^7.18.9" } }, "@babel/plugin-transform-dotall-regex": { @@ -1151,11 +1151,11 @@ } }, "@babel/plugin-transform-duplicate-keys": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.18.6.tgz", - "integrity": "sha512-NJU26U/208+sxYszf82nmGYqVF9QN8py2HFTblPT9hbawi8+1C5a9JubODLTGFuT0qlkqVinmkwOD13s0sZktg==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.18.9.tgz", + "integrity": "sha512-d2bmXCtZXYc59/0SanQKbiWINadaJXqtvIQIzd4+hNwkWBgyCd5F/2t1kXoUdvPMrxzPvhK6EMQRROxsue+mfw==", "requires": { - "@babel/helper-plugin-utils": "^7.18.6" + "@babel/helper-plugin-utils": "^7.18.9" } }, "@babel/plugin-transform-exponentiation-operator": { @@ -1168,11 +1168,11 @@ } }, "@babel/plugin-transform-flow-strip-types": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.18.6.tgz", - "integrity": "sha512-wE0xtA7csz+hw4fKPwxmu5jnzAsXPIO57XnRwzXP3T19jWh1BODnPGoG9xKYwvAwusP7iUktHayRFbMPGtODaQ==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.18.9.tgz", + "integrity": "sha512-+G6rp2zRuOAInY5wcggsx4+QVao1qPM0osC9fTUVlAV3zOrzTCnrMAFVnR6+a3T8wz1wFIH7KhYMcMB3u1n80A==", "requires": { - "@babel/helper-plugin-utils": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.9", "@babel/plugin-syntax-flow": "^7.18.6" } }, @@ -1185,21 +1185,21 @@ } }, "@babel/plugin-transform-function-name": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.18.6.tgz", - "integrity": "sha512-kJha/Gbs5RjzIu0CxZwf5e3aTTSlhZnHMT8zPWnJMjNpLOUgqevg+PN5oMH68nMCXnfiMo4Bhgxqj59KHTlAnA==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.18.9.tgz", + "integrity": "sha512-WvIBoRPaJQ5yVHzcnJFor7oS5Ls0PYixlTYE63lCj2RtdQEl15M68FXQlxnG6wdraJIXRdR7KI+hQ7q/9QjrCQ==", "requires": { - "@babel/helper-compilation-targets": "^7.18.6", - "@babel/helper-function-name": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6" + "@babel/helper-compilation-targets": "^7.18.9", + "@babel/helper-function-name": "^7.18.9", + "@babel/helper-plugin-utils": "^7.18.9" } }, "@babel/plugin-transform-literals": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.18.6.tgz", - "integrity": "sha512-x3HEw0cJZVDoENXOp20HlypIHfl0zMIhMVZEBVTfmqbObIpsMxMbmU5nOEO8R7LYT+z5RORKPlTI5Hj4OsO9/Q==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.18.9.tgz", + "integrity": "sha512-IFQDSRoTPnrAIrI5zoZv73IFeZu2dhu6irxQjY9rNjTT53VmKg9fenjvoiOWOkJ6mm4jKVPtdMzBY98Fp4Z4cg==", "requires": { - "@babel/helper-plugin-utils": "^7.18.6" + "@babel/helper-plugin-utils": "^7.18.9" } }, "@babel/plugin-transform-member-expression-literals": { @@ -1232,13 +1232,13 @@ } }, "@babel/plugin-transform-modules-systemjs": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.18.6.tgz", - "integrity": "sha512-UbPYpXxLjTw6w6yXX2BYNxF3p6QY225wcTkfQCy3OMnSlS/C3xGtwUjEzGkldb/sy6PWLiCQ3NbYfjWUTI3t4g==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.18.9.tgz", + "integrity": "sha512-zY/VSIbbqtoRoJKo2cDTewL364jSlZGvn0LKOf9ntbfxOvjfmyrdtEEOAdswOswhZEb8UH3jDkCKHd1sPgsS0A==", "requires": { "@babel/helper-hoist-variables": "^7.18.6", - "@babel/helper-module-transforms": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6", + "@babel/helper-module-transforms": "^7.18.9", + "@babel/helper-plugin-utils": "^7.18.9", "@babel/helper-validator-identifier": "^7.18.6", "babel-plugin-dynamic-import-node": "^2.3.3" }, @@ -1335,9 +1335,9 @@ "integrity": "sha512-MmetCkz9ej86nJQV+sFCxoGGrUbU3q02kgLciwkrt9QqEB7cP39oKEY0PakknEO0Gu20SskMRi+AYZ3b1TpN9g==" }, "@babel/types": { - "version": "7.18.8", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.8.tgz", - "integrity": "sha512-qwpdsmraq0aJ3osLJRApsc2ouSJCdnMeZwB0DhbtHAtRpZNZCdlbRnHIgcRKzdE1g0iOGg644fzjOBcdOz9cPw==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.9.tgz", + "integrity": "sha512-WwMLAg2MvJmt/rKEVQBBhIVffMmnilX4oe0sRe7iPOHIGsqpruFHHdrfj4O1CMMtgMtCU4oPafZjDPCRgO57Wg==", "requires": { "@babel/helper-validator-identifier": "^7.18.6", "to-fast-properties": "^2.0.0" @@ -1380,12 +1380,12 @@ } }, "@babel/plugin-transform-runtime": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.18.6.tgz", - "integrity": "sha512-8uRHk9ZmRSnWqUgyae249EJZ94b0yAGLBIqzZzl+0iEdbno55Pmlt/32JZsHwXD9k/uZj18Aqqk35wBX4CBTXA==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.18.9.tgz", + "integrity": "sha512-wS8uJwBt7/b/mzE13ktsJdmS4JP/j7PQSaADtnb4I2wL0zK51MQ0pmF8/Jy0wUIS96fr+fXT6S/ifiPXnvrlSg==", "requires": { "@babel/helper-module-imports": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.9", "babel-plugin-polyfill-corejs2": "^0.3.1", "babel-plugin-polyfill-corejs3": "^0.5.2", "babel-plugin-polyfill-regenerator": "^0.3.1", @@ -1406,9 +1406,9 @@ "integrity": "sha512-MmetCkz9ej86nJQV+sFCxoGGrUbU3q02kgLciwkrt9QqEB7cP39oKEY0PakknEO0Gu20SskMRi+AYZ3b1TpN9g==" }, "@babel/types": { - "version": "7.18.8", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.8.tgz", - "integrity": "sha512-qwpdsmraq0aJ3osLJRApsc2ouSJCdnMeZwB0DhbtHAtRpZNZCdlbRnHIgcRKzdE1g0iOGg644fzjOBcdOz9cPw==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.9.tgz", + "integrity": "sha512-WwMLAg2MvJmt/rKEVQBBhIVffMmnilX4oe0sRe7iPOHIGsqpruFHHdrfj4O1CMMtgMtCU4oPafZjDPCRgO57Wg==", "requires": { "@babel/helper-validator-identifier": "^7.18.6", "to-fast-properties": "^2.0.0" @@ -1430,12 +1430,12 @@ } }, "@babel/plugin-transform-spread": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.18.6.tgz", - "integrity": "sha512-ayT53rT/ENF8WWexIRg9AiV9h0aIteyWn5ptfZTZQrjk/+f3WdrJGCY4c9wcgl2+MKkKPhzbYp97FTsquZpDCw==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.18.9.tgz", + "integrity": "sha512-39Q814wyoOPtIB/qGopNIL9xDChOE1pNU0ZY5dO0owhiVt/5kFm4li+/bBtwc7QotG0u5EPzqhZdjMtmqBqyQA==", "requires": { - "@babel/helper-plugin-utils": "^7.18.6", - "@babel/helper-skip-transparent-expression-wrappers": "^7.18.6" + "@babel/helper-plugin-utils": "^7.18.9", + "@babel/helper-skip-transparent-expression-wrappers": "^7.18.9" } }, "@babel/plugin-transform-sticky-regex": { @@ -1447,19 +1447,19 @@ } }, "@babel/plugin-transform-template-literals": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.18.6.tgz", - "integrity": "sha512-UuqlRrQmT2SWRvahW46cGSany0uTlcj8NYOS5sRGYi8FxPYPoLd5DDmMd32ZXEj2Jq+06uGVQKHxa/hJx2EzKw==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.18.9.tgz", + "integrity": "sha512-S8cOWfT82gTezpYOiVaGHrCbhlHgKhQt8XH5ES46P2XWmX92yisoZywf5km75wv5sYcXDUCLMmMxOLCtthDgMA==", "requires": { - "@babel/helper-plugin-utils": "^7.18.6" + "@babel/helper-plugin-utils": "^7.18.9" } }, "@babel/plugin-transform-typeof-symbol": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.18.6.tgz", - "integrity": "sha512-7m71iS/QhsPk85xSjFPovHPcH3H9qeyzsujhTc+vcdnsXavoWYJ74zx0lP5RhpC5+iDnVLO+PPMHzC11qels1g==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.18.9.tgz", + "integrity": "sha512-SRfwTtF11G2aemAZWivL7PD+C9z52v9EvMqH9BuYbabyPuKUvSWks3oCg6041pT925L4zVFqaVBeECwsmlguEw==", "requires": { - "@babel/helper-plugin-utils": "^7.18.6" + "@babel/helper-plugin-utils": "^7.18.9" } }, "@babel/plugin-transform-typescript": { @@ -1490,28 +1490,28 @@ } }, "@babel/preset-env": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.18.6.tgz", - "integrity": "sha512-WrthhuIIYKrEFAwttYzgRNQ5hULGmwTj+D6l7Zdfsv5M7IWV/OZbUfbeL++Qrzx1nVJwWROIFhCHRYQV4xbPNw==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.18.9.tgz", + "integrity": "sha512-75pt/q95cMIHWssYtyfjVlvI+QEZQThQbKvR9xH+F/Agtw/s4Wfc2V9Bwd/P39VtixB7oWxGdH4GteTTwYJWMg==", "requires": { - "@babel/compat-data": "^7.18.6", - "@babel/helper-compilation-targets": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6", + "@babel/compat-data": "^7.18.8", + "@babel/helper-compilation-targets": "^7.18.9", + "@babel/helper-plugin-utils": "^7.18.9", "@babel/helper-validator-option": "^7.18.6", "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "^7.18.6", - "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.18.6", + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.18.9", "@babel/plugin-proposal-async-generator-functions": "^7.18.6", "@babel/plugin-proposal-class-properties": "^7.18.6", "@babel/plugin-proposal-class-static-block": "^7.18.6", "@babel/plugin-proposal-dynamic-import": "^7.18.6", - "@babel/plugin-proposal-export-namespace-from": "^7.18.6", + "@babel/plugin-proposal-export-namespace-from": "^7.18.9", "@babel/plugin-proposal-json-strings": "^7.18.6", - "@babel/plugin-proposal-logical-assignment-operators": "^7.18.6", + "@babel/plugin-proposal-logical-assignment-operators": "^7.18.9", "@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6", "@babel/plugin-proposal-numeric-separator": "^7.18.6", - "@babel/plugin-proposal-object-rest-spread": "^7.18.6", + "@babel/plugin-proposal-object-rest-spread": "^7.18.9", "@babel/plugin-proposal-optional-catch-binding": "^7.18.6", - "@babel/plugin-proposal-optional-chaining": "^7.18.6", + "@babel/plugin-proposal-optional-chaining": "^7.18.9", "@babel/plugin-proposal-private-methods": "^7.18.6", "@babel/plugin-proposal-private-property-in-object": "^7.18.6", "@babel/plugin-proposal-unicode-property-regex": "^7.18.6", @@ -1533,37 +1533,37 @@ "@babel/plugin-transform-arrow-functions": "^7.18.6", "@babel/plugin-transform-async-to-generator": "^7.18.6", "@babel/plugin-transform-block-scoped-functions": "^7.18.6", - "@babel/plugin-transform-block-scoping": "^7.18.6", - "@babel/plugin-transform-classes": "^7.18.6", - "@babel/plugin-transform-computed-properties": "^7.18.6", - "@babel/plugin-transform-destructuring": "^7.18.6", + "@babel/plugin-transform-block-scoping": "^7.18.9", + "@babel/plugin-transform-classes": "^7.18.9", + "@babel/plugin-transform-computed-properties": "^7.18.9", + "@babel/plugin-transform-destructuring": "^7.18.9", "@babel/plugin-transform-dotall-regex": "^7.18.6", - "@babel/plugin-transform-duplicate-keys": "^7.18.6", + "@babel/plugin-transform-duplicate-keys": "^7.18.9", "@babel/plugin-transform-exponentiation-operator": "^7.18.6", - "@babel/plugin-transform-for-of": "^7.18.6", - "@babel/plugin-transform-function-name": "^7.18.6", - "@babel/plugin-transform-literals": "^7.18.6", + "@babel/plugin-transform-for-of": "^7.18.8", + "@babel/plugin-transform-function-name": "^7.18.9", + "@babel/plugin-transform-literals": "^7.18.9", "@babel/plugin-transform-member-expression-literals": "^7.18.6", "@babel/plugin-transform-modules-amd": "^7.18.6", "@babel/plugin-transform-modules-commonjs": "^7.18.6", - "@babel/plugin-transform-modules-systemjs": "^7.18.6", + "@babel/plugin-transform-modules-systemjs": "^7.18.9", "@babel/plugin-transform-modules-umd": "^7.18.6", "@babel/plugin-transform-named-capturing-groups-regex": "^7.18.6", "@babel/plugin-transform-new-target": "^7.18.6", "@babel/plugin-transform-object-super": "^7.18.6", - "@babel/plugin-transform-parameters": "^7.18.6", + "@babel/plugin-transform-parameters": "^7.18.8", "@babel/plugin-transform-property-literals": "^7.18.6", "@babel/plugin-transform-regenerator": "^7.18.6", "@babel/plugin-transform-reserved-words": "^7.18.6", "@babel/plugin-transform-shorthand-properties": "^7.18.6", - "@babel/plugin-transform-spread": "^7.18.6", + "@babel/plugin-transform-spread": "^7.18.9", "@babel/plugin-transform-sticky-regex": "^7.18.6", - "@babel/plugin-transform-template-literals": "^7.18.6", - "@babel/plugin-transform-typeof-symbol": "^7.18.6", + "@babel/plugin-transform-template-literals": "^7.18.9", + "@babel/plugin-transform-typeof-symbol": "^7.18.9", "@babel/plugin-transform-unicode-escapes": "^7.18.6", "@babel/plugin-transform-unicode-regex": "^7.18.6", "@babel/preset-modules": "^0.1.5", - "@babel/types": "^7.18.6", + "@babel/types": "^7.18.9", "babel-plugin-polyfill-corejs2": "^0.3.1", "babel-plugin-polyfill-corejs3": "^0.5.2", "babel-plugin-polyfill-regenerator": "^0.3.1", @@ -1577,9 +1577,9 @@ "integrity": "sha512-MmetCkz9ej86nJQV+sFCxoGGrUbU3q02kgLciwkrt9QqEB7cP39oKEY0PakknEO0Gu20SskMRi+AYZ3b1TpN9g==" }, "@babel/types": { - "version": "7.18.8", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.8.tgz", - "integrity": "sha512-qwpdsmraq0aJ3osLJRApsc2ouSJCdnMeZwB0DhbtHAtRpZNZCdlbRnHIgcRKzdE1g0iOGg644fzjOBcdOz9cPw==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.9.tgz", + "integrity": "sha512-WwMLAg2MvJmt/rKEVQBBhIVffMmnilX4oe0sRe7iPOHIGsqpruFHHdrfj4O1CMMtgMtCU4oPafZjDPCRgO57Wg==", "requires": { "@babel/helper-validator-identifier": "^7.18.6", "to-fast-properties": "^2.0.0" @@ -1636,9 +1636,9 @@ } }, "@babel/runtime-corejs3": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/runtime-corejs3/-/runtime-corejs3-7.18.6.tgz", - "integrity": "sha512-cOu5wH2JFBgMjje+a+fz2JNIWU4GzYpl05oSob3UDvBEh6EuIn+TXFHMmBbhSb+k/4HMzgKCQfEEDArAWNF9Cw==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/runtime-corejs3/-/runtime-corejs3-7.18.9.tgz", + "integrity": "sha512-qZEWeccZCrHA2Au4/X05QW5CMdm4VjUDCrGq5gf1ZDcM4hRqreKrtwAn7yci9zfgAS9apvnsFXiGBHBAxZdK9A==", "requires": { "core-js-pure": "^3.20.2", "regenerator-runtime": "^0.13.4" @@ -1678,9 +1678,9 @@ } }, "@babel/types": { - "version": "7.18.8", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.8.tgz", - "integrity": "sha512-qwpdsmraq0aJ3osLJRApsc2ouSJCdnMeZwB0DhbtHAtRpZNZCdlbRnHIgcRKzdE1g0iOGg644fzjOBcdOz9cPw==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.9.tgz", + "integrity": "sha512-WwMLAg2MvJmt/rKEVQBBhIVffMmnilX4oe0sRe7iPOHIGsqpruFHHdrfj4O1CMMtgMtCU4oPafZjDPCRgO57Wg==", "requires": { "@babel/helper-validator-identifier": "^7.18.6", "to-fast-properties": "^2.0.0" @@ -1699,18 +1699,18 @@ } }, "@babel/traverse": { - "version": "7.18.8", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.18.8.tgz", - "integrity": "sha512-UNg/AcSySJYR/+mIcJQDCv00T+AqRO7j/ZEJLzpaYtgM48rMg5MnkJgyNqkzo88+p4tfRvZJCEiwwfG6h4jkRg==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.18.9.tgz", + "integrity": "sha512-LcPAnujXGwBgv3/WHv01pHtb2tihcyW1XuL9wd7jqh1Z8AQkTd+QVjMrMijrln0T7ED3UXLIy36P9Ao7W75rYg==", "requires": { "@babel/code-frame": "^7.18.6", - "@babel/generator": "^7.18.7", - "@babel/helper-environment-visitor": "^7.18.6", - "@babel/helper-function-name": "^7.18.6", + "@babel/generator": "^7.18.9", + "@babel/helper-environment-visitor": "^7.18.9", + "@babel/helper-function-name": "^7.18.9", "@babel/helper-hoist-variables": "^7.18.6", "@babel/helper-split-export-declaration": "^7.18.6", - "@babel/parser": "^7.18.8", - "@babel/types": "^7.18.8", + "@babel/parser": "^7.18.9", + "@babel/types": "^7.18.9", "debug": "^4.1.0", "globals": "^11.1.0" }, @@ -1739,9 +1739,9 @@ } }, "@babel/types": { - "version": "7.18.8", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.8.tgz", - "integrity": "sha512-qwpdsmraq0aJ3osLJRApsc2ouSJCdnMeZwB0DhbtHAtRpZNZCdlbRnHIgcRKzdE1g0iOGg644fzjOBcdOz9cPw==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.9.tgz", + "integrity": "sha512-WwMLAg2MvJmt/rKEVQBBhIVffMmnilX4oe0sRe7iPOHIGsqpruFHHdrfj4O1CMMtgMtCU4oPafZjDPCRgO57Wg==", "requires": { "@babel/helper-validator-identifier": "^7.18.6", "to-fast-properties": "^2.0.0" @@ -1957,238 +1957,37 @@ } }, "@gatsbyjs/parcel-namer-relative-to-cwd": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/@gatsbyjs/parcel-namer-relative-to-cwd/-/parcel-namer-relative-to-cwd-1.3.2.tgz", - "integrity": "sha512-jiYGiq8Zk21x2IIWbsLQ0GqgGJyKjj+/4jYwr5msD5ORB/JAZLk4IDrMKZ9rFXkNPq/bRV57ub0k/NvRMELfLQ==", + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/@gatsbyjs/parcel-namer-relative-to-cwd/-/parcel-namer-relative-to-cwd-1.4.0.tgz", + "integrity": "sha512-oXhiaPtYTGYqGZlazYRUabWVHWx5z6sAyBVLhUnpsKcBsK815cET+mjeWDKpmvJmFTKHC72Bvy1WIEnW3++YxA==", "requires": { "@babel/runtime": "^7.18.0", "@parcel/namer-default": "2.6.2", - "@parcel/plugin": "2.6.0", - "gatsby-core-utils": "^3.18.1" + "@parcel/plugin": "2.6.2", + "gatsby-core-utils": "^3.19.0" }, "dependencies": { - "@lmdb/lmdb-darwin-arm64": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-arm64/-/lmdb-darwin-arm64-2.5.2.tgz", - "integrity": "sha512-+F8ioQIUN68B4UFiIBYu0QQvgb9FmlKw2ctQMSBfW2QBrZIxz9vD9jCGqTCPqZBRbPHAS/vG1zSXnKqnS2ch/A==", - "optional": true - }, - "@lmdb/lmdb-darwin-x64": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-x64/-/lmdb-darwin-x64-2.5.2.tgz", - "integrity": "sha512-KvPH56KRLLx4KSfKBx0m1r7GGGUMXm0jrKmNE7plbHlesZMuPJICtn07HYgQhj1LNsK7Yqwuvnqh1QxhJnF1EA==", - "optional": true - }, - "@lmdb/lmdb-linux-arm": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm/-/lmdb-linux-arm-2.5.2.tgz", - "integrity": "sha512-5kQAP21hAkfW5Bl+e0P57dV4dGYnkNIpR7f/GAh6QHlgXx+vp/teVj4PGRZaKAvt0GX6++N6hF8NnGElLDuIDw==", - "optional": true - }, - "@lmdb/lmdb-linux-arm64": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm64/-/lmdb-linux-arm64-2.5.2.tgz", - "integrity": "sha512-aLl89VHL/wjhievEOlPocoefUyWdvzVrcQ/MHQYZm2JfV1jUsrbr/ZfkPPUFvZBf+VSE+Q0clWs9l29PCX1hTQ==", - "optional": true - }, - "@lmdb/lmdb-linux-x64": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-x64/-/lmdb-linux-x64-2.5.2.tgz", - "integrity": "sha512-xUdUfwDJLGjOUPH3BuPBt0NlIrR7f/QHKgu3GZIXswMMIihAekj2i97oI0iWG5Bok/b+OBjHPfa8IU9velnP/Q==", - "optional": true - }, - "@lmdb/lmdb-win32-x64": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-win32-x64/-/lmdb-win32-x64-2.5.2.tgz", - "integrity": "sha512-zrBczSbXKxEyK2ijtbRdICDygRqWSRPpZMN5dD1T8VMEW5RIhIbwFWw2phDRXuBQdVDpSjalCIUMWMV2h3JaZA==", - "optional": true - }, - "@parcel/cache": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/@parcel/cache/-/cache-2.6.2.tgz", - "integrity": "sha512-hhJ6AsEGybeQZd9c/GYqfcKTgZKQXu3Xih6TlnP3gdR3KZoJOnb40ovHD1yYg4COvfcXThKP1cVJ18J6rcv3IA==", - "requires": { - "@parcel/fs": "2.6.2", - "@parcel/logger": "2.6.2", - "@parcel/utils": "2.6.2", - "lmdb": "2.5.2" - } - }, - "@parcel/codeframe": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/@parcel/codeframe/-/codeframe-2.6.2.tgz", - "integrity": "sha512-oFlHr6HCaYYsB4SHkU+gn9DKtbzvv3/4NdwMX0/6NAKyYVI7inEsXyPGw2Bbd2ZCFatW9QJZUETF0etvh5AEfQ==", - "requires": { - "chalk": "^4.1.0" - } - }, - "@parcel/diagnostic": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/@parcel/diagnostic/-/diagnostic-2.6.2.tgz", - "integrity": "sha512-3ODSBkKVihENU763z1/1DhGAWFhYWRxOCOShC72KXp+GFnSgGiBsxclu8NBa/N948Rzp8lqQI8U1nLcKkh0O/w==", - "requires": { - "@mischnic/json-sourcemap": "^0.1.0", - "nullthrows": "^1.1.1" - } - }, - "@parcel/events": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/@parcel/events/-/events-2.6.2.tgz", - "integrity": "sha512-IaCjOeA5ercdFVi1EZOmUHhGfIysmCUgc2Th9hMugSFO0I3GzRsBcAdP6XPfWm+TV6sQ/qZRfdk/drUxoAupnw==" - }, - "@parcel/fs": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/@parcel/fs/-/fs-2.6.2.tgz", - "integrity": "sha512-mIhqdF3tjgeoIGqW7Nc/xfM2ClID7o8livwUe5lpQEP+ZaIBiMigXs6ckv3WToCACK+3uylrSD2A/HmlhrxMqQ==", - "requires": { - "@parcel/fs-search": "2.6.2", - "@parcel/types": "2.6.2", - "@parcel/utils": "2.6.2", - "@parcel/watcher": "^2.0.0", - "@parcel/workers": "2.6.2" - } - }, - "@parcel/fs-search": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/@parcel/fs-search/-/fs-search-2.6.2.tgz", - "integrity": "sha512-4STid1zqtGnmGjHD/2TG2g/zPDiCTtE3IAS24QYH3eiUAz2uoKGgEqd2tZbZ2yI96jtCuIhC1bzVu8Hbykls7w==", - "requires": { - "detect-libc": "^1.0.3" - } - }, - "@parcel/hash": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/@parcel/hash/-/hash-2.6.2.tgz", - "integrity": "sha512-tFB+cJU1Wqag6WyJgsmx3nx+xhmjcNZqtWh/MtK1lHNnZdDRk6bjr7SapnygBwruz+SmSt5bbdVThcpk2dRCcA==", - "requires": { - "detect-libc": "^1.0.3", - "xxhash-wasm": "^0.4.2" - } - }, - "@parcel/logger": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/@parcel/logger/-/logger-2.6.2.tgz", - "integrity": "sha512-Sz5YGCj1DbEiX0/G8Uw97LLZ0uEK+qtWcRAkHNpJpeMiSqDiRNevxXltz42EcLo+oCh4d4wyiVzwi9mNwzhS/Q==", - "requires": { - "@parcel/diagnostic": "2.6.2", - "@parcel/events": "2.6.2" - } - }, - "@parcel/markdown-ansi": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/@parcel/markdown-ansi/-/markdown-ansi-2.6.2.tgz", - "integrity": "sha512-N/h9J4eibhc+B+krzvPMzFUWL37GudBIZBa7XSLkcuH6MnYYfh6rrMvhIyyESwk6VkcZNVzAeZrGQqxEs0dHDQ==", - "requires": { - "chalk": "^4.1.0" - } - }, - "@parcel/namer-default": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/@parcel/namer-default/-/namer-default-2.6.2.tgz", - "integrity": "sha512-mp7bx/BQaIuohmZP0uE+gAmDBzzH0Yu8F4yCtE611lc6i0mou+nWRhzyKLNC/ieuI8DB3BFh2QQKeTxJn4W0qg==", - "requires": { - "@parcel/diagnostic": "2.6.2", - "@parcel/plugin": "2.6.2", - "nullthrows": "^1.1.1" - }, - "dependencies": { - "@parcel/plugin": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/@parcel/plugin/-/plugin-2.6.2.tgz", - "integrity": "sha512-wbbWsM23Pr+8xtLSvf+UopXdVYlpKCCx6PuuZaZcKo+9IcDCWoGXD4M8Kkz14qBmkFn5uM00mULUqmVdSibB2w==", - "requires": { - "@parcel/types": "2.6.2" - } - } - } - }, - "@parcel/package-manager": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/@parcel/package-manager/-/package-manager-2.6.2.tgz", - "integrity": "sha512-xGMqTgnwTE3rgzYwUZMKxR8fzmP5iSYz/gj2H8FR3pEmwh/8xCMtNjTSth+hPVGuqgRZ6JxwpfdY/fXdZ61ViQ==", - "requires": { - "@parcel/diagnostic": "2.6.2", - "@parcel/fs": "2.6.2", - "@parcel/logger": "2.6.2", - "@parcel/types": "2.6.2", - "@parcel/utils": "2.6.2", - "@parcel/workers": "2.6.2", - "semver": "^5.7.1" - } - }, - "@parcel/types": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/@parcel/types/-/types-2.6.2.tgz", - "integrity": "sha512-MV8BFpCIs2jMUvK2RHqzkoiuOQ//JIbrD1zocA2YRW3zuPL/iABvbAABJoXpoPCKikVWOoCWASgBfWQo26VvJQ==", - "requires": { - "@parcel/cache": "2.6.2", - "@parcel/diagnostic": "2.6.2", - "@parcel/fs": "2.6.2", - "@parcel/package-manager": "2.6.2", - "@parcel/source-map": "^2.0.0", - "@parcel/workers": "2.6.2", - "utility-types": "^3.10.0" - } - }, - "@parcel/utils": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/@parcel/utils/-/utils-2.6.2.tgz", - "integrity": "sha512-Ug7hpRxjgbY5AopW55nY7MmGMVmwmN+ihfCmxJkBUoESTG/3iq8uME7GjyOgW5DkQc2K7q62i8y8N0wCJT1u4Q==", - "requires": { - "@parcel/codeframe": "2.6.2", - "@parcel/diagnostic": "2.6.2", - "@parcel/hash": "2.6.2", - "@parcel/logger": "2.6.2", - "@parcel/markdown-ansi": "2.6.2", - "@parcel/source-map": "^2.0.0", - "chalk": "^4.1.0" - } - }, - "@parcel/workers": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/@parcel/workers/-/workers-2.6.2.tgz", - "integrity": "sha512-wBgUjJQm+lDd12fPRUmk09+ujTA9DgwPdqylSFK0OtI/yT6A+2kArUqjp8IwWo2tCJXoMzXBne2XQIWKqMiN4Q==", + "gatsby-core-utils": { + "version": "3.19.0", + "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.19.0.tgz", + "integrity": "sha512-cjXs9DsXkPZt+UdiLHxtq+rGMGVrcnM0KwkawlruvPchI7lqGNv9CScqlvYPxx1dBhu3zSZS26EBALMlFhyOJA==", "requires": { - "@parcel/diagnostic": "2.6.2", - "@parcel/logger": "2.6.2", - "@parcel/types": "2.6.2", - "@parcel/utils": "2.6.2", - "chrome-trace-event": "^1.0.2", - "nullthrows": "^1.1.1" - } - }, - "lmdb": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/lmdb/-/lmdb-2.5.2.tgz", - "integrity": "sha512-V5V5Xa2Hp9i2XsbDALkBTeHXnBXh/lEmk9p22zdr7jtuOIY9TGhjK6vAvTpOOx9IKU4hJkRWZxn/HsvR1ELLtA==", - "requires": { - "@lmdb/lmdb-darwin-arm64": "2.5.2", - "@lmdb/lmdb-darwin-x64": "2.5.2", - "@lmdb/lmdb-linux-arm": "2.5.2", - "@lmdb/lmdb-linux-arm64": "2.5.2", - "@lmdb/lmdb-linux-x64": "2.5.2", - "@lmdb/lmdb-win32-x64": "2.5.2", - "msgpackr": "^1.5.4", - "node-addon-api": "^4.3.0", - "node-gyp-build-optional-packages": "5.0.3", - "ordered-binary": "^1.2.4", - "weak-lru-cache": "^1.2.2" + "@babel/runtime": "^7.15.4", + "ci-info": "2.0.0", + "configstore": "^5.0.1", + "fastq": "^1.13.0", + "file-type": "^16.5.3", + "fs-extra": "^10.1.0", + "got": "^11.8.5", + "import-from": "^4.0.0", + "lmdb": "2.5.3", + "lock": "^1.1.0", + "node-object-hash": "^2.3.10", + "proper-lockfile": "^4.1.2", + "resolve-from": "^5.0.0", + "tmp": "^0.2.1", + "xdg-basedir": "^4.0.0" } - }, - "node-addon-api": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-4.3.0.tgz", - "integrity": "sha512-73sE9+3UaLYYFmDsFZnqCInzPyh3MqIwZO9cw58yIqAZhONrrabrYyYe3TuIqtIiOuTXVhsGau8hcrhhwSsDIQ==" - }, - "node-gyp-build-optional-packages": { - "version": "5.0.3", - "resolved": "https://registry.npmjs.org/node-gyp-build-optional-packages/-/node-gyp-build-optional-packages-5.0.3.tgz", - "integrity": "sha512-k75jcVzk5wnnc/FMxsf4udAoTEUv2jY3ycfdSd3yWu6Cnd1oee6/CfZJApyscA4FJOmdoixWwiwOyf16RzD5JA==" - }, - "semver": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", - "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==" } } }, @@ -3241,43 +3040,78 @@ } }, "@parcel/bundler-default": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/bundler-default/-/bundler-default-2.6.0.tgz", - "integrity": "sha512-AplEdGm/odV7yGmoeOnglxnY31WlNB5EqGLFGxkgs7uwDaTWoTX/9SWPG6xfvirhjDpms8sLSiVuBdFRCCLtNA==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/bundler-default/-/bundler-default-2.6.2.tgz", + "integrity": "sha512-XIa3had/MIaTGgRFkHApXwytYs77k4geaNcmlb6nzmAABcYjW1CLYh83Zt0AbzLFsDT9ZcRY3u2UjhNf6efSaw==", "requires": { - "@parcel/diagnostic": "2.6.0", - "@parcel/hash": "2.6.0", - "@parcel/plugin": "2.6.0", - "@parcel/utils": "2.6.0", + "@parcel/diagnostic": "2.6.2", + "@parcel/hash": "2.6.2", + "@parcel/plugin": "2.6.2", + "@parcel/utils": "2.6.2", "nullthrows": "^1.1.1" } }, "@parcel/cache": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/cache/-/cache-2.6.0.tgz", - "integrity": "sha512-4vbD5uSuf+kRnrFesKhpn0AKnOw8u2UlvCyrplYmp1g9bNAkIooC/nDGdmkb/9SviPEbni9PEanQEHDU2+slpA==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/cache/-/cache-2.6.2.tgz", + "integrity": "sha512-hhJ6AsEGybeQZd9c/GYqfcKTgZKQXu3Xih6TlnP3gdR3KZoJOnb40ovHD1yYg4COvfcXThKP1cVJ18J6rcv3IA==", "requires": { - "@parcel/fs": "2.6.0", - "@parcel/logger": "2.6.0", - "@parcel/utils": "2.6.0", - "lmdb": "2.3.10" + "@parcel/fs": "2.6.2", + "@parcel/logger": "2.6.2", + "@parcel/utils": "2.6.2", + "lmdb": "2.5.2" }, "dependencies": { + "@lmdb/lmdb-darwin-arm64": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-arm64/-/lmdb-darwin-arm64-2.5.2.tgz", + "integrity": "sha512-+F8ioQIUN68B4UFiIBYu0QQvgb9FmlKw2ctQMSBfW2QBrZIxz9vD9jCGqTCPqZBRbPHAS/vG1zSXnKqnS2ch/A==", + "optional": true + }, + "@lmdb/lmdb-darwin-x64": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-x64/-/lmdb-darwin-x64-2.5.2.tgz", + "integrity": "sha512-KvPH56KRLLx4KSfKBx0m1r7GGGUMXm0jrKmNE7plbHlesZMuPJICtn07HYgQhj1LNsK7Yqwuvnqh1QxhJnF1EA==", + "optional": true + }, + "@lmdb/lmdb-linux-arm": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm/-/lmdb-linux-arm-2.5.2.tgz", + "integrity": "sha512-5kQAP21hAkfW5Bl+e0P57dV4dGYnkNIpR7f/GAh6QHlgXx+vp/teVj4PGRZaKAvt0GX6++N6hF8NnGElLDuIDw==", + "optional": true + }, + "@lmdb/lmdb-linux-arm64": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm64/-/lmdb-linux-arm64-2.5.2.tgz", + "integrity": "sha512-aLl89VHL/wjhievEOlPocoefUyWdvzVrcQ/MHQYZm2JfV1jUsrbr/ZfkPPUFvZBf+VSE+Q0clWs9l29PCX1hTQ==", + "optional": true + }, + "@lmdb/lmdb-linux-x64": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-x64/-/lmdb-linux-x64-2.5.2.tgz", + "integrity": "sha512-xUdUfwDJLGjOUPH3BuPBt0NlIrR7f/QHKgu3GZIXswMMIihAekj2i97oI0iWG5Bok/b+OBjHPfa8IU9velnP/Q==", + "optional": true + }, + "@lmdb/lmdb-win32-x64": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-win32-x64/-/lmdb-win32-x64-2.5.2.tgz", + "integrity": "sha512-zrBczSbXKxEyK2ijtbRdICDygRqWSRPpZMN5dD1T8VMEW5RIhIbwFWw2phDRXuBQdVDpSjalCIUMWMV2h3JaZA==", + "optional": true + }, "lmdb": { - "version": "2.3.10", - "resolved": "https://registry.npmjs.org/lmdb/-/lmdb-2.3.10.tgz", - "integrity": "sha512-GtH+nStn9V59CfYeQ5ddx6YTfuFCmu86UJojIjJAweG+/Fm0PDknuk3ovgYDtY/foMeMdZa8/P7oSljW/d5UPw==", - "requires": { - "lmdb-darwin-arm64": "2.3.10", - "lmdb-darwin-x64": "2.3.10", - "lmdb-linux-arm": "2.3.10", - "lmdb-linux-arm64": "2.3.10", - "lmdb-linux-x64": "2.3.10", - "lmdb-win32-x64": "2.3.10", + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/lmdb/-/lmdb-2.5.2.tgz", + "integrity": "sha512-V5V5Xa2Hp9i2XsbDALkBTeHXnBXh/lEmk9p22zdr7jtuOIY9TGhjK6vAvTpOOx9IKU4hJkRWZxn/HsvR1ELLtA==", + "requires": { + "@lmdb/lmdb-darwin-arm64": "2.5.2", + "@lmdb/lmdb-darwin-x64": "2.5.2", + "@lmdb/lmdb-linux-arm": "2.5.2", + "@lmdb/lmdb-linux-arm64": "2.5.2", + "@lmdb/lmdb-linux-x64": "2.5.2", + "@lmdb/lmdb-win32-x64": "2.5.2", "msgpackr": "^1.5.4", - "nan": "^2.14.2", "node-addon-api": "^4.3.0", - "node-gyp-build-optional-packages": "^4.3.2", + "node-gyp-build-optional-packages": "5.0.3", "ordered-binary": "^1.2.4", "weak-lru-cache": "^1.2.2" } @@ -3290,40 +3124,40 @@ } }, "@parcel/codeframe": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/codeframe/-/codeframe-2.6.0.tgz", - "integrity": "sha512-yXXxrO9yyedHKpTwC+Af0+vPmQm+A9xeEhkt4f0yVg1n4t4yUIxYlTedzbM8ygZEEBtkXU9jJ+PkgXbfMf0dqw==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/codeframe/-/codeframe-2.6.2.tgz", + "integrity": "sha512-oFlHr6HCaYYsB4SHkU+gn9DKtbzvv3/4NdwMX0/6NAKyYVI7inEsXyPGw2Bbd2ZCFatW9QJZUETF0etvh5AEfQ==", "requires": { "chalk": "^4.1.0" } }, "@parcel/compressor-raw": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/compressor-raw/-/compressor-raw-2.6.0.tgz", - "integrity": "sha512-rtMU2mGl88bic6Xbq1u5L49bMK4s5185b0k7h3JRdS6/0rR+Xp4k/o9Wog+hHjK/s82z1eF9WmET779ZpIDIQQ==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/compressor-raw/-/compressor-raw-2.6.2.tgz", + "integrity": "sha512-P3c8jjV5HVs+fNDjhvq7PtHXNm687nit1iwTS5VAt+ScXKhKBhoIJ56q+9opcw0jnXVjAAgZqcRZ50oAJBGdKw==", "requires": { - "@parcel/plugin": "2.6.0" + "@parcel/plugin": "2.6.2" } }, "@parcel/core": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/core/-/core-2.6.0.tgz", - "integrity": "sha512-8OOWbPuxpFydpwNyKoz6d3e3O4DmxNYmMw4DXwrPSj/jyg7oa+SDtMT0/VXEhujE0HYkQPCHt4npRajkSuf99A==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/core/-/core-2.6.2.tgz", + "integrity": "sha512-JlKS3Ux0ngmdooSBbzQLShHJdsapF9E7TGMo1hFaHRquZip/DaqzvysYrgMJlDuCoLArciq5ei7ZKzGeK9zexA==", "requires": { "@mischnic/json-sourcemap": "^0.1.0", - "@parcel/cache": "2.6.0", - "@parcel/diagnostic": "2.6.0", - "@parcel/events": "2.6.0", - "@parcel/fs": "2.6.0", - "@parcel/graph": "2.6.0", - "@parcel/hash": "2.6.0", - "@parcel/logger": "2.6.0", - "@parcel/package-manager": "2.6.0", - "@parcel/plugin": "2.6.0", + "@parcel/cache": "2.6.2", + "@parcel/diagnostic": "2.6.2", + "@parcel/events": "2.6.2", + "@parcel/fs": "2.6.2", + "@parcel/graph": "2.6.2", + "@parcel/hash": "2.6.2", + "@parcel/logger": "2.6.2", + "@parcel/package-manager": "2.6.2", + "@parcel/plugin": "2.6.2", "@parcel/source-map": "^2.0.0", - "@parcel/types": "2.6.0", - "@parcel/utils": "2.6.0", - "@parcel/workers": "2.6.0", + "@parcel/types": "2.6.2", + "@parcel/utils": "2.6.2", + "@parcel/workers": "2.6.2", "abortcontroller-polyfill": "^1.1.9", "base-x": "^3.0.8", "browserslist": "^4.6.6", @@ -3349,118 +3183,126 @@ } }, "@parcel/diagnostic": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/diagnostic/-/diagnostic-2.6.0.tgz", - "integrity": "sha512-+p8gC2FKxSI2veD7SoaNlP572v4kw+nafCQEPDtJuzYYRqywYUGncch25dkpgNApB4W4cXVkZu3ZbtIpCAmjQQ==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/diagnostic/-/diagnostic-2.6.2.tgz", + "integrity": "sha512-3ODSBkKVihENU763z1/1DhGAWFhYWRxOCOShC72KXp+GFnSgGiBsxclu8NBa/N948Rzp8lqQI8U1nLcKkh0O/w==", "requires": { "@mischnic/json-sourcemap": "^0.1.0", "nullthrows": "^1.1.1" } }, "@parcel/events": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/events/-/events-2.6.0.tgz", - "integrity": "sha512-2WaKtBs4iYwS88j4zRdyTJTgh8iuY4E32FMmjzzbheqETs6I05gWuPReGukJYxk8vc0Ir7tbzp12oAfpgo0Y+g==" + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/events/-/events-2.6.2.tgz", + "integrity": "sha512-IaCjOeA5ercdFVi1EZOmUHhGfIysmCUgc2Th9hMugSFO0I3GzRsBcAdP6XPfWm+TV6sQ/qZRfdk/drUxoAupnw==" }, "@parcel/fs": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/fs/-/fs-2.6.0.tgz", - "integrity": "sha512-6vxtx5Zy6MvDvH1EPx9JxjKGF03bR7VE1dUf4HLeX2D8YmpL5hkHJnlRCFdcH08rzOVwaJLzg1QNtblWJXQ9CA==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/fs/-/fs-2.6.2.tgz", + "integrity": "sha512-mIhqdF3tjgeoIGqW7Nc/xfM2ClID7o8livwUe5lpQEP+ZaIBiMigXs6ckv3WToCACK+3uylrSD2A/HmlhrxMqQ==", "requires": { - "@parcel/fs-search": "2.6.0", - "@parcel/types": "2.6.0", - "@parcel/utils": "2.6.0", + "@parcel/fs-search": "2.6.2", + "@parcel/types": "2.6.2", + "@parcel/utils": "2.6.2", "@parcel/watcher": "^2.0.0", - "@parcel/workers": "2.6.0" + "@parcel/workers": "2.6.2" } }, "@parcel/fs-search": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/fs-search/-/fs-search-2.6.0.tgz", - "integrity": "sha512-1nXzM3H/cA4kzLKvDBvwmNisKCdRqlgkLXh+OR1Zu28Kn4W34KuJMcHWW8cC+WIuuKqDh5oo2WPsC5y65GXBKQ==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/fs-search/-/fs-search-2.6.2.tgz", + "integrity": "sha512-4STid1zqtGnmGjHD/2TG2g/zPDiCTtE3IAS24QYH3eiUAz2uoKGgEqd2tZbZ2yI96jtCuIhC1bzVu8Hbykls7w==", "requires": { "detect-libc": "^1.0.3" } }, "@parcel/graph": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/graph/-/graph-2.6.0.tgz", - "integrity": "sha512-rxrAzWm6rwbCRPbu0Z+zwMscpG8omffODniVWPlX2G0jgQGpjKsutBQ6RMfFIcfaQ4MzL3pIQOTf8bkjQOPsbg==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/graph/-/graph-2.6.2.tgz", + "integrity": "sha512-DPH4G/RBFJWayIN2fnhDXqhUw75n7k15YsGzdDKiXuwwz4wMOjoL4cyrI6zOf1SIyh3guRmeTYJ4jjPzwrLYww==", "requires": { - "@parcel/utils": "2.6.0", + "@parcel/utils": "2.6.2", "nullthrows": "^1.1.1" } }, "@parcel/hash": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/hash/-/hash-2.6.0.tgz", - "integrity": "sha512-YugWqhLxqK80Lo++3B3Kr5UPCHOdS8iI2zJ1jkzUeH9v6WUzbwWOnmPf6lN2S5m1BrIFFJd8Jc+CbEXWi8zoJA==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/hash/-/hash-2.6.2.tgz", + "integrity": "sha512-tFB+cJU1Wqag6WyJgsmx3nx+xhmjcNZqtWh/MtK1lHNnZdDRk6bjr7SapnygBwruz+SmSt5bbdVThcpk2dRCcA==", "requires": { "detect-libc": "^1.0.3", "xxhash-wasm": "^0.4.2" } }, "@parcel/logger": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/logger/-/logger-2.6.0.tgz", - "integrity": "sha512-J1/7kPfSGBvMKSZdi0WCNuN0fIeiWxifnDGn7W/K8KhD422YwFJA8N046ps8nkDOPIXf1osnIECNp4GIR9oSYw==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/logger/-/logger-2.6.2.tgz", + "integrity": "sha512-Sz5YGCj1DbEiX0/G8Uw97LLZ0uEK+qtWcRAkHNpJpeMiSqDiRNevxXltz42EcLo+oCh4d4wyiVzwi9mNwzhS/Q==", "requires": { - "@parcel/diagnostic": "2.6.0", - "@parcel/events": "2.6.0" + "@parcel/diagnostic": "2.6.2", + "@parcel/events": "2.6.2" } }, "@parcel/markdown-ansi": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/markdown-ansi/-/markdown-ansi-2.6.0.tgz", - "integrity": "sha512-fyjkrJQQSfKTUFTTasdZ6WrAkDoQ2+DYDjj+3p+RncYyrIa9zArKx4IiRiipsvNdtMvP0/hTdK8F3BOJ3KSU/g==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/markdown-ansi/-/markdown-ansi-2.6.2.tgz", + "integrity": "sha512-N/h9J4eibhc+B+krzvPMzFUWL37GudBIZBa7XSLkcuH6MnYYfh6rrMvhIyyESwk6VkcZNVzAeZrGQqxEs0dHDQ==", "requires": { "chalk": "^4.1.0" } }, "@parcel/namer-default": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/namer-default/-/namer-default-2.6.0.tgz", - "integrity": "sha512-r8O12r7ozJBctnFxVdXbf/fK97GIdNj3hiiUNWlXEmED9sw6ZPcChaLcfot0/443g8i87JDmSTKJ8js2tuz5XA==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/namer-default/-/namer-default-2.6.2.tgz", + "integrity": "sha512-mp7bx/BQaIuohmZP0uE+gAmDBzzH0Yu8F4yCtE611lc6i0mou+nWRhzyKLNC/ieuI8DB3BFh2QQKeTxJn4W0qg==", "requires": { - "@parcel/diagnostic": "2.6.0", - "@parcel/plugin": "2.6.0", + "@parcel/diagnostic": "2.6.2", + "@parcel/plugin": "2.6.2", "nullthrows": "^1.1.1" } }, "@parcel/node-resolver-core": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/node-resolver-core/-/node-resolver-core-2.6.0.tgz", - "integrity": "sha512-AJDj5DZbB58plv0li8bdVSD+zpnkHE36Om3TYyNn1jgXXwgBM64Er/9p8yQn356jBqTQMh7zlJqvbdIyOiMeMg==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/node-resolver-core/-/node-resolver-core-2.6.2.tgz", + "integrity": "sha512-4b2L5QRYlTybvv3+TIRtwg4PPJXy+cRShCBa8eu1K0Fj297Afe8MOZrcVV+RIr2KPMIRXcIJoqDmOhyci/DynA==", "requires": { - "@parcel/diagnostic": "2.6.0", - "@parcel/utils": "2.6.0", - "nullthrows": "^1.1.1" + "@parcel/diagnostic": "2.6.2", + "@parcel/utils": "2.6.2", + "nullthrows": "^1.1.1", + "semver": "^5.7.1" + }, + "dependencies": { + "semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==" + } } }, "@parcel/optimizer-terser": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/optimizer-terser/-/optimizer-terser-2.6.0.tgz", - "integrity": "sha512-oezRt6Lz/QqcVDXyMfFjzQc7n0ThJowLJ4Lyhu8rMh0ZJYzc4UCFCw/19d4nRnzE+Qg0vj3mQCpdkA9/64E44g==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/optimizer-terser/-/optimizer-terser-2.6.2.tgz", + "integrity": "sha512-ZSEVQ3G3zOiVPeHvH+BrHegZybrQj9kWQAaAA92leSqbvf6UaX4xqXbGRg2OttNFtbGYBzIl28Zm4t2SLeUIuA==", "requires": { - "@parcel/diagnostic": "2.6.0", - "@parcel/plugin": "2.6.0", + "@parcel/diagnostic": "2.6.2", + "@parcel/plugin": "2.6.2", "@parcel/source-map": "^2.0.0", - "@parcel/utils": "2.6.0", + "@parcel/utils": "2.6.2", "nullthrows": "^1.1.1", "terser": "^5.2.0" } }, "@parcel/package-manager": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/package-manager/-/package-manager-2.6.0.tgz", - "integrity": "sha512-AqFfdkbOw51q/3ia2mIsFTmrpYEyUb3k+2uYC5GsLMz3go6OGn7/Crz0lZLSclv5EtwpRg3TWr9yL7RekVN/Uw==", - "requires": { - "@parcel/diagnostic": "2.6.0", - "@parcel/fs": "2.6.0", - "@parcel/logger": "2.6.0", - "@parcel/types": "2.6.0", - "@parcel/utils": "2.6.0", - "@parcel/workers": "2.6.0", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/package-manager/-/package-manager-2.6.2.tgz", + "integrity": "sha512-xGMqTgnwTE3rgzYwUZMKxR8fzmP5iSYz/gj2H8FR3pEmwh/8xCMtNjTSth+hPVGuqgRZ6JxwpfdY/fXdZ61ViQ==", + "requires": { + "@parcel/diagnostic": "2.6.2", + "@parcel/fs": "2.6.2", + "@parcel/logger": "2.6.2", + "@parcel/types": "2.6.2", + "@parcel/utils": "2.6.2", + "@parcel/workers": "2.6.2", "semver": "^5.7.1" }, "dependencies": { @@ -3472,15 +3314,15 @@ } }, "@parcel/packager-js": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/packager-js/-/packager-js-2.6.0.tgz", - "integrity": "sha512-Uz3pqIFchFfKszWnNGDgIwM1uwHHJp7Dts6VzS9lf/2RbRgZT0fmce+NPgnVO5MMKBHzdvm32ShT6gFAABF5Vw==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/packager-js/-/packager-js-2.6.2.tgz", + "integrity": "sha512-fm5rKWtaExR0W+UEKWivXNPysRFxuBCdskdxDByb1J1JeGMvp7dJElbi8oXDAQM4MnM5EyG7cg47SlMZNTLm4A==", "requires": { - "@parcel/diagnostic": "2.6.0", - "@parcel/hash": "2.6.0", - "@parcel/plugin": "2.6.0", + "@parcel/diagnostic": "2.6.2", + "@parcel/hash": "2.6.2", + "@parcel/plugin": "2.6.2", "@parcel/source-map": "^2.0.0", - "@parcel/utils": "2.6.0", + "@parcel/utils": "2.6.2", "globals": "^13.2.0", "nullthrows": "^1.1.1" }, @@ -3496,76 +3338,76 @@ } }, "@parcel/packager-raw": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/packager-raw/-/packager-raw-2.6.0.tgz", - "integrity": "sha512-ktT6Qc/GgCq8H1+6y+AXufVzQj1s6KRoKf83qswCD0iY3MwCbJoEfc3IsB4K64FpHIL5Eu0z54IId+INvGbOYA==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/packager-raw/-/packager-raw-2.6.2.tgz", + "integrity": "sha512-Rl3ZkMtMjb+LEvRowijDD8fibUAS6rWK0/vZQMk9cDNYCP2gCpZayLk0HZIGxneeTbosf/0sbngHq4VeRQOnQA==", "requires": { - "@parcel/plugin": "2.6.0" + "@parcel/plugin": "2.6.2" } }, "@parcel/plugin": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/plugin/-/plugin-2.6.0.tgz", - "integrity": "sha512-LzOaiK8R6eFEoov1cb3/W+o0XvXdI/VbDhMDl0L0II+/56M0UeayYtFP5QGTDn/fZqVlYfzPCtt3EMwdG7/dow==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/plugin/-/plugin-2.6.2.tgz", + "integrity": "sha512-wbbWsM23Pr+8xtLSvf+UopXdVYlpKCCx6PuuZaZcKo+9IcDCWoGXD4M8Kkz14qBmkFn5uM00mULUqmVdSibB2w==", "requires": { - "@parcel/types": "2.6.0" + "@parcel/types": "2.6.2" } }, "@parcel/reporter-dev-server": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/reporter-dev-server/-/reporter-dev-server-2.6.0.tgz", - "integrity": "sha512-VvygsCA+uzWyijIV8zqU1gFyhAWknuaY4KIWhV4kCT8afRJwsLSwt/tpdaKDPuPU45h3tTsUdXH1wjaIk+dGeQ==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/reporter-dev-server/-/reporter-dev-server-2.6.2.tgz", + "integrity": "sha512-5QtL3ETMFL161jehlIK6rjBM+Pqk5cMhr60s9yLYqE1GY4M4gMj+Act+FXViyM6gmMA38cPxDvUsxTKBYXpFCw==", "requires": { - "@parcel/plugin": "2.6.0", - "@parcel/utils": "2.6.0" + "@parcel/plugin": "2.6.2", + "@parcel/utils": "2.6.2" } }, "@parcel/resolver-default": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/resolver-default/-/resolver-default-2.6.0.tgz", - "integrity": "sha512-ATk9wXvy5GOHAqyHbnCnU11fUPTtf8dLjpgVqL5XylwugZnyBXbynoTWX4w8h6mffkVtdfmzTJx/o4Lresz9sA==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/resolver-default/-/resolver-default-2.6.2.tgz", + "integrity": "sha512-Lo5sWb5QkjWvdBr+TdmAF6Mszb/sMldBBatc1osQTkHXCy679VMH+lfyiWxHbwK+F1pmdMeBJpYcMxvrgT8EsA==", "requires": { - "@parcel/node-resolver-core": "2.6.0", - "@parcel/plugin": "2.6.0" + "@parcel/node-resolver-core": "2.6.2", + "@parcel/plugin": "2.6.2" } }, "@parcel/runtime-browser-hmr": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/runtime-browser-hmr/-/runtime-browser-hmr-2.6.0.tgz", - "integrity": "sha512-90xvv/10cFML5dAhClBEJZ/ExiBQVPqQsZcvRmVZmc5mpZVJMKattWCQrd7pAf7FDYl4JAcvsK3DTwvRT/oLNA==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/runtime-browser-hmr/-/runtime-browser-hmr-2.6.2.tgz", + "integrity": "sha512-M4X0+7dyfdI6smwGUGjGXb8Ns3HX7ZrTemyq4Gc7zp7P/5gWjR8i9eISz46sXmF9bf01a/4dKZpoCC9un1pH1g==", "requires": { - "@parcel/plugin": "2.6.0", - "@parcel/utils": "2.6.0" + "@parcel/plugin": "2.6.2", + "@parcel/utils": "2.6.2" } }, "@parcel/runtime-js": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/runtime-js/-/runtime-js-2.6.0.tgz", - "integrity": "sha512-R4tJAIT/SX7VBQ+f7WmeekREQzzLsmgP1j486uKhQNyYrpvsN0HnRbg5aqvZjEjkEmSeJR0mOlWtMK5/m+0yTA==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/runtime-js/-/runtime-js-2.6.2.tgz", + "integrity": "sha512-0S3JFwgvs6FmEx2dHta9R0Sfu8vCnFAm4i7Y4efGHtAcTrF2CHjyiz4/hG+RQGJ70eoWW463Q+8qt6EKbkaOBQ==", "requires": { - "@parcel/plugin": "2.6.0", - "@parcel/utils": "2.6.0", + "@parcel/plugin": "2.6.2", + "@parcel/utils": "2.6.2", "nullthrows": "^1.1.1" } }, "@parcel/runtime-react-refresh": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/runtime-react-refresh/-/runtime-react-refresh-2.6.0.tgz", - "integrity": "sha512-2sRd13gc2EbMV/O5n2NPVGGhKBasb1fDTXGEY8y7qi9xDKc+ewok/D83T+w243FhCPS9Pf3ur5GkbPlrJGcenQ==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/runtime-react-refresh/-/runtime-react-refresh-2.6.2.tgz", + "integrity": "sha512-DJTm5D/tUAGZm0o3ndDOPbKwdYrobuvm4jvkPq31LdEUqVvyuzBAMlqQFHc1yJEJDRRWOIQwQP9Y0NQbJmXFfg==", "requires": { - "@parcel/plugin": "2.6.0", - "@parcel/utils": "2.6.0", + "@parcel/plugin": "2.6.2", + "@parcel/utils": "2.6.2", "react-error-overlay": "6.0.9", "react-refresh": "^0.9.0" } }, "@parcel/runtime-service-worker": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/runtime-service-worker/-/runtime-service-worker-2.6.0.tgz", - "integrity": "sha512-nVlknGw5J5Bkd1Wr1TbyWHhUd9CmVVebaRg/lpfVKYhAuE/2r+3N0+J8qbEIgtTRcHaSV7wTNpg4weSWq46VeA==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/runtime-service-worker/-/runtime-service-worker-2.6.2.tgz", + "integrity": "sha512-9jV+RwVEeDUI5+eLy8j1tapTNoHHGOY2+JUprcObQkQ8fux7KltQBJWFhpkUdGtz5LTCNXtj9tdycFtS5lmSzg==", "requires": { - "@parcel/plugin": "2.6.0", - "@parcel/utils": "2.6.0", + "@parcel/plugin": "2.6.2", + "@parcel/utils": "2.6.2", "nullthrows": "^1.1.1" } }, @@ -3578,16 +3420,16 @@ } }, "@parcel/transformer-js": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/transformer-js/-/transformer-js-2.6.0.tgz", - "integrity": "sha512-4v2r3EVdMKowBziVBW9HZqvAv88HaeiezkWyMX4wAfplo9jBtWEp99KEQINzSEdbXROR81M9oJjlGF5+yoVr/w==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/transformer-js/-/transformer-js-2.6.2.tgz", + "integrity": "sha512-uhXAMTjE/Q61amflV8qVpb73mj+mIdXIMH0cSks1/gDIAxcgIvWvrE14P4TvY6zJ1q1iRJRIRUN6cFSXqjjLSA==", "requires": { - "@parcel/diagnostic": "2.6.0", - "@parcel/plugin": "2.6.0", + "@parcel/diagnostic": "2.6.2", + "@parcel/plugin": "2.6.2", "@parcel/source-map": "^2.0.0", - "@parcel/utils": "2.6.0", - "@parcel/workers": "2.6.0", - "@swc/helpers": "^0.3.15", + "@parcel/utils": "2.6.2", + "@parcel/workers": "2.6.2", + "@swc/helpers": "^0.4.2", "browserslist": "^4.6.6", "detect-libc": "^1.0.3", "nullthrows": "^1.1.1", @@ -3603,56 +3445,56 @@ } }, "@parcel/transformer-json": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/transformer-json/-/transformer-json-2.6.0.tgz", - "integrity": "sha512-zb+TQAdHWdXijKcFhLe+5KN1O0IzXwW1gJhPr8DJEA3qhPaCsncsw5RCVjQlP3a7NXr1mMm1eMtO6bhIMqbXeA==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/transformer-json/-/transformer-json-2.6.2.tgz", + "integrity": "sha512-QGcIIvbPF/u10ihYvQhxXqb2QMXWSzcBxJrOSIXIl74TUGrWX05D5LmjDA/rzm/n/kvRnBkFNP60R/smYb8x+Q==", "requires": { - "@parcel/plugin": "2.6.0", + "@parcel/plugin": "2.6.2", "json5": "^2.2.0" } }, "@parcel/transformer-raw": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/transformer-raw/-/transformer-raw-2.6.0.tgz", - "integrity": "sha512-QDirlWCS/qy0DQ3WvDIAnFP52n1TJW/uWH+4PGMNnX4/M3/2UchY8xp9CN0tx4NQ4g09S8o3gLlHvNxQqZxFrQ==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/transformer-raw/-/transformer-raw-2.6.2.tgz", + "integrity": "sha512-CsofYq5g9Zj/FNmhya2R7Xp3WHlzz34mEdN69bds3azRYHCrl/TS33xXcp/9J+74SEIY1Ufh552o1cM3fnSrDQ==", "requires": { - "@parcel/plugin": "2.6.0" + "@parcel/plugin": "2.6.2" } }, "@parcel/transformer-react-refresh-wrap": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/transformer-react-refresh-wrap/-/transformer-react-refresh-wrap-2.6.0.tgz", - "integrity": "sha512-G34orfvLDUTumuerqNmA8T8NUHk+R0jwUjbVPO7gpB6VCVQ5ocTABdE9vN9Uu/cUsHij40TUFwqK4R9TFEBIEQ==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/transformer-react-refresh-wrap/-/transformer-react-refresh-wrap-2.6.2.tgz", + "integrity": "sha512-7EE68ebISz+oAHm64ZJbz6uJQT4aOoB8QiK3PvuY6+RsP7aK4/FEHGM1afW49KrZbP4lWjloEkcJm/88DfBiGw==", "requires": { - "@parcel/plugin": "2.6.0", - "@parcel/utils": "2.6.0", + "@parcel/plugin": "2.6.2", + "@parcel/utils": "2.6.2", "react-refresh": "^0.9.0" } }, "@parcel/types": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/types/-/types-2.6.0.tgz", - "integrity": "sha512-lAMYvOBfNEJMsPJ+plbB50305o0TwNrY1xX5RRIWBqwOa6bYmbW1ZljUk1tQvnkpIE4eAHQwnPR5Z2XWg18wGQ==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/types/-/types-2.6.2.tgz", + "integrity": "sha512-MV8BFpCIs2jMUvK2RHqzkoiuOQ//JIbrD1zocA2YRW3zuPL/iABvbAABJoXpoPCKikVWOoCWASgBfWQo26VvJQ==", "requires": { - "@parcel/cache": "2.6.0", - "@parcel/diagnostic": "2.6.0", - "@parcel/fs": "2.6.0", - "@parcel/package-manager": "2.6.0", + "@parcel/cache": "2.6.2", + "@parcel/diagnostic": "2.6.2", + "@parcel/fs": "2.6.2", + "@parcel/package-manager": "2.6.2", "@parcel/source-map": "^2.0.0", - "@parcel/workers": "2.6.0", + "@parcel/workers": "2.6.2", "utility-types": "^3.10.0" } }, "@parcel/utils": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/utils/-/utils-2.6.0.tgz", - "integrity": "sha512-ElXz+QHtT1JQIucbQJBk7SzAGoOlBp4yodEQVvTKS7GA+hEGrSP/cmibl6qm29Rjtd0zgQsdd+2XmP3xvP2gQQ==", - "requires": { - "@parcel/codeframe": "2.6.0", - "@parcel/diagnostic": "2.6.0", - "@parcel/hash": "2.6.0", - "@parcel/logger": "2.6.0", - "@parcel/markdown-ansi": "2.6.0", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/utils/-/utils-2.6.2.tgz", + "integrity": "sha512-Ug7hpRxjgbY5AopW55nY7MmGMVmwmN+ihfCmxJkBUoESTG/3iq8uME7GjyOgW5DkQc2K7q62i8y8N0wCJT1u4Q==", + "requires": { + "@parcel/codeframe": "2.6.2", + "@parcel/diagnostic": "2.6.2", + "@parcel/hash": "2.6.2", + "@parcel/logger": "2.6.2", + "@parcel/markdown-ansi": "2.6.2", "@parcel/source-map": "^2.0.0", "chalk": "^4.1.0" } @@ -3667,14 +3509,14 @@ } }, "@parcel/workers": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/workers/-/workers-2.6.0.tgz", - "integrity": "sha512-3tcI2LF5fd/WZtSnSjyWdDE+G+FitdNrRgSObzSp+axHKMAM23sO0z7KY8s2SYCF40msdYbFUW8eI6JlYNJoWQ==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/workers/-/workers-2.6.2.tgz", + "integrity": "sha512-wBgUjJQm+lDd12fPRUmk09+ujTA9DgwPdqylSFK0OtI/yT6A+2kArUqjp8IwWo2tCJXoMzXBne2XQIWKqMiN4Q==", "requires": { - "@parcel/diagnostic": "2.6.0", - "@parcel/logger": "2.6.0", - "@parcel/types": "2.6.0", - "@parcel/utils": "2.6.0", + "@parcel/diagnostic": "2.6.2", + "@parcel/logger": "2.6.2", + "@parcel/types": "2.6.2", + "@parcel/utils": "2.6.2", "chrome-trace-event": "^1.0.2", "nullthrows": "^1.1.1" } @@ -3793,9 +3635,9 @@ } }, "@swc/helpers": { - "version": "0.3.17", - "resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.3.17.tgz", - "integrity": "sha512-tb7Iu+oZ+zWJZ3HJqwx8oNwSDIU440hmVMDPhpACWQWnrZHK99Bxs70gT1L2dnr5Hg50ZRWEFkQCAnOVVV0z1Q==", + "version": "0.4.3", + "resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.4.3.tgz", + "integrity": "sha512-6JrF+fdUK2zbGpJIlN7G3v966PQjyx/dPt1T9km2wj+EUBqgrxCk3uX4Kct16MIm9gGxfKRcfax2hVf5jvlTzA==", "requires": { "tslib": "^2.4.0" } @@ -6586,12 +6428,36 @@ } }, "babel-plugin-remove-graphql-queries": { - "version": "4.18.1", - "resolved": "https://registry.npmjs.org/babel-plugin-remove-graphql-queries/-/babel-plugin-remove-graphql-queries-4.18.1.tgz", - "integrity": "sha512-2I7qsm3pnyvrS6/Q9YuHK1SpfQLmrgYH/AjpnWpnLHee6SiVb5Te89iphhpBdycpBRVGWh04ram9+z/1rMaRYQ==", + "version": "4.19.0", + "resolved": "https://registry.npmjs.org/babel-plugin-remove-graphql-queries/-/babel-plugin-remove-graphql-queries-4.19.0.tgz", + "integrity": "sha512-VbxC7aZxdqQA0YiAcTD/djIW+6PP/JVODlRmCiqDyTbtI0zhE/Z6je1maCmC6J2LLBsKxhWT3UYTjRfLofK7sQ==", "requires": { "@babel/runtime": "^7.15.4", - "gatsby-core-utils": "^3.18.1" + "gatsby-core-utils": "^3.19.0" + }, + "dependencies": { + "gatsby-core-utils": { + "version": "3.19.0", + "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.19.0.tgz", + "integrity": "sha512-cjXs9DsXkPZt+UdiLHxtq+rGMGVrcnM0KwkawlruvPchI7lqGNv9CScqlvYPxx1dBhu3zSZS26EBALMlFhyOJA==", + "requires": { + "@babel/runtime": "^7.15.4", + "ci-info": "2.0.0", + "configstore": "^5.0.1", + "fastq": "^1.13.0", + "file-type": "^16.5.3", + "fs-extra": "^10.1.0", + "got": "^11.8.5", + "import-from": "^4.0.0", + "lmdb": "2.5.3", + "lock": "^1.1.0", + "node-object-hash": "^2.3.10", + "proper-lockfile": "^4.1.2", + "resolve-from": "^5.0.0", + "tmp": "^0.2.1", + "xdg-basedir": "^4.0.0" + } + } } }, "babel-plugin-syntax-jsx": { @@ -6658,9 +6524,9 @@ } }, "babel-preset-gatsby": { - "version": "2.18.1", - "resolved": "https://registry.npmjs.org/babel-preset-gatsby/-/babel-preset-gatsby-2.18.1.tgz", - "integrity": "sha512-oaVV6ULceMjTQKjCA06qvgfLwBNZFJxpacwNZYOJpLygmj+qYiNKDGhJ8vTw/KAIUeDPZAbPMP5P+3wMEPIWYQ==", + "version": "2.19.0", + "resolved": "https://registry.npmjs.org/babel-preset-gatsby/-/babel-preset-gatsby-2.19.0.tgz", + "integrity": "sha512-wjh4lUN1MffsnqHAfRoeOtJFGEObUPR4oxo7fyfx9pZUyqBgXvKXMEoLnwNht5HV5BzT5Xo9dkwNJl0/CNhXHw==", "requires": { "@babel/plugin-proposal-class-properties": "^7.14.0", "@babel/plugin-proposal-nullish-coalescing-operator": "^7.14.5", @@ -6675,8 +6541,8 @@ "babel-plugin-dynamic-import-node": "^2.3.3", "babel-plugin-macros": "^3.1.0", "babel-plugin-transform-react-remove-prop-types": "^0.4.24", - "gatsby-core-utils": "^3.18.1", - "gatsby-legacy-polyfills": "^2.18.0" + "gatsby-core-utils": "^3.19.0", + "gatsby-legacy-polyfills": "^2.19.0" }, "dependencies": { "babel-plugin-macros": { @@ -6700,6 +6566,28 @@ "path-type": "^4.0.0", "yaml": "^1.10.0" } + }, + "gatsby-core-utils": { + "version": "3.19.0", + "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.19.0.tgz", + "integrity": "sha512-cjXs9DsXkPZt+UdiLHxtq+rGMGVrcnM0KwkawlruvPchI7lqGNv9CScqlvYPxx1dBhu3zSZS26EBALMlFhyOJA==", + "requires": { + "@babel/runtime": "^7.15.4", + "ci-info": "2.0.0", + "configstore": "^5.0.1", + "fastq": "^1.13.0", + "file-type": "^16.5.3", + "fs-extra": "^10.1.0", + "got": "^11.8.5", + "import-from": "^4.0.0", + "lmdb": "2.5.3", + "lock": "^1.1.0", + "node-object-hash": "^2.3.10", + "proper-lockfile": "^4.1.2", + "resolve-from": "^5.0.0", + "tmp": "^0.2.1", + "xdg-basedir": "^4.0.0" + } } } }, @@ -6841,6 +6729,11 @@ "unpipe": "1.0.0" }, "dependencies": { + "bytes": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", + "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==" + }, "debug": { "version": "2.6.9", "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", @@ -7007,9 +6900,9 @@ } }, "bytes": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", - "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==" + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz", + "integrity": "sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==" }, "cache-manager": { "version": "2.11.1", @@ -7117,9 +7010,9 @@ } }, "caniuse-lite": { - "version": "1.0.30001366", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001366.tgz", - "integrity": "sha512-yy7XLWCubDobokgzudpkKux8e0UOOnLHE6mlNJBzT3lZJz6s5atSEzjoL+fsCPkI0G8MP5uVdDx1ur/fXEWkZA==" + "version": "1.0.30001367", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001367.tgz", + "integrity": "sha512-XDgbeOHfifWV3GEES2B8rtsrADx4Jf+juKX2SICJcaUhjYBO3bR96kvEIHa15VU6ohtOhBZuPGGYGbXMRn0NCw==" }, "capital-case": { "version": "1.0.4", @@ -7637,11 +7530,6 @@ "vary": "~1.1.2" }, "dependencies": { - "bytes": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz", - "integrity": "sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==" - }, "debug": { "version": "2.6.9", "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", @@ -7797,16 +7685,16 @@ } }, "core-js": { - "version": "3.23.4", - "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.23.4.tgz", - "integrity": "sha512-vjsKqRc1RyAJC3Ye2kYqgfdThb3zYnx9CrqoCcjMOENMtQPC7ZViBvlDxwYU/2z2NI/IPuiXw5mT4hWhddqjzQ==" + "version": "3.23.5", + "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.23.5.tgz", + "integrity": "sha512-7Vh11tujtAZy82da4duVreQysIoO2EvVrur7y6IzZkH1IHPSekuDi8Vuw1+YKjkbfWLRD7Nc9ICQ/sIUDutcyg==" }, "core-js-compat": { - "version": "3.23.4", - "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.23.4.tgz", - "integrity": "sha512-RkSRPe+JYEoflcsuxJWaiMPhnZoFS51FcIxm53k4KzhISCBTmaGlto9dTIrYuk0hnJc3G6pKufAKepHnBq6B6Q==", + "version": "3.23.5", + "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.23.5.tgz", + "integrity": "sha512-fHYozIFIxd+91IIbXJgWd/igXIc8Mf9is0fusswjnGIWVG96y2cwyUdlCkGOw6rMLHKAxg7xtCIVaHsyOUnJIg==", "requires": { - "browserslist": "^4.21.1", + "browserslist": "^4.21.2", "semver": "7.0.0" }, "dependencies": { @@ -7818,9 +7706,9 @@ } }, "core-js-pure": { - "version": "3.23.4", - "resolved": "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.23.4.tgz", - "integrity": "sha512-lizxkcgj3XDmi7TUBFe+bQ1vNpD5E4t76BrBWI3HdUxdw/Mq1VF4CkiHzIKyieECKtcODK2asJttoofEeUKICQ==" + "version": "3.23.5", + "resolved": "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.23.5.tgz", + "integrity": "sha512-8t78LdpKSuCq4pJYCYk8hl7XEkAX+BP16yRIwL3AanTksxuEf7CM83vRyctmiEL8NDZ3jpUcv56fk9/zG3aIuw==" }, "core-util-is": { "version": "1.0.3", @@ -7868,9 +7756,9 @@ } }, "create-gatsby": { - "version": "2.18.1", - "resolved": "https://registry.npmjs.org/create-gatsby/-/create-gatsby-2.18.1.tgz", - "integrity": "sha512-1AZioXKi4COhESSHfsb/6tpkBvyuuXHwAmMAGrcUQpbynsQxYdqonnRqnFhp80bA2cIKxgjtHzzLhyRouDonbQ==", + "version": "2.19.0", + "resolved": "https://registry.npmjs.org/create-gatsby/-/create-gatsby-2.19.0.tgz", + "integrity": "sha512-Esl/qCau3rjpnRkmo31BYOE6l72SJ/5Fq8bF6gmXOf/lnbOh51so8hgRcClfizr1nCihqQQihZn//o4DIgZKeA==", "requires": { "@babel/runtime": "^7.15.4" } @@ -8515,9 +8403,9 @@ "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==" }, "electron-to-chromium": { - "version": "1.4.188", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.188.tgz", - "integrity": "sha512-Zpa1+E+BVmD/orkyz1Z2dAT1XNUuVAHB3GrogfyY66dXN0ZWSsygI8+u6QTDai1ZayLcATDJpcv2Z2AZjEcr1A==" + "version": "1.4.194", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.194.tgz", + "integrity": "sha512-ola5UH0xAP1oYY0FFUsPvwtucEzCQHucXnT7PQ1zjHJMccZhCDktEugI++JUR3YuIs7Ff7afz+OVEhVAIMhLAQ==" }, "emoji-regex": { "version": "8.0.0", @@ -9941,9 +9829,9 @@ "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==" }, "gatsby": { - "version": "4.18.2", - "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-4.18.2.tgz", - "integrity": "sha512-ZWdo0TXsSRmwlmOeeuoWwXKQNteHm9VxJWF9Ud+c33r7ZXQgTA5WtRYjiBpjZuNAUwsiONNAe+wKK5jVY8B4LQ==", + "version": "4.19.0", + "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-4.19.0.tgz", + "integrity": "sha512-Bhga6PbDRSL3J7yIcVAWwN76cK0OeFWE4f5ggh4qEjnsL20kxW+LPwAexpZ5dVxbE1gsl1k/VDSX66Wj3vGH3A==", "requires": { "@babel/code-frame": "^7.14.0", "@babel/core": "^7.15.5", @@ -9965,7 +9853,7 @@ "@graphql-tools/load": "^7.5.10", "@jridgewell/trace-mapping": "^0.3.13", "@nodelib/fs.walk": "^1.2.8", - "@parcel/core": "2.6.0", + "@parcel/core": "2.6.2", "@pmmmwh/react-refresh-webpack-plugin": "^0.4.3", "@types/http-proxy": "^1.17.7", "@typescript-eslint/eslint-plugin": "^4.33.0", @@ -9979,11 +9867,10 @@ "babel-plugin-add-module-exports": "^1.0.4", "babel-plugin-dynamic-import-node": "^2.3.3", "babel-plugin-lodash": "^3.3.4", - "babel-plugin-remove-graphql-queries": "^4.18.1", - "babel-preset-gatsby": "^2.18.1", + "babel-plugin-remove-graphql-queries": "^4.19.0", + "babel-preset-gatsby": "^2.19.0", "better-opn": "^2.1.1", "bluebird": "^3.7.2", - "body-parser": "^1.19.0", "browserslist": "^4.17.5", "cache-manager": "^2.11.1", "chalk": "^4.1.2", @@ -10009,7 +9896,7 @@ "eslint-plugin-graphql": "^4.0.0", "eslint-plugin-import": "^2.26.0", "eslint-plugin-jsx-a11y": "^6.5.1", - "eslint-plugin-react": "^7.30.0", + "eslint-plugin-react": "^7.30.1", "eslint-plugin-react-hooks": "^4.5.0", "eslint-webpack-plugin": "^2.6.0", "event-source-polyfill": "1.0.25", @@ -10023,21 +9910,21 @@ "find-cache-dir": "^3.3.2", "fs-exists-cached": "1.0.0", "fs-extra": "^10.1.0", - "gatsby-cli": "^4.18.1", - "gatsby-core-utils": "^3.18.1", - "gatsby-graphiql-explorer": "^2.18.0", - "gatsby-legacy-polyfills": "^2.18.0", - "gatsby-link": "^4.18.1", - "gatsby-page-utils": "^2.18.1", - "gatsby-parcel-config": "^0.9.2", - "gatsby-plugin-page-creator": "^4.18.1", - "gatsby-plugin-typescript": "^4.18.1", - "gatsby-plugin-utils": "^3.12.1", - "gatsby-react-router-scroll": "^5.18.0", - "gatsby-script": "^1.3.0", - "gatsby-sharp": "^0.12.0", - "gatsby-telemetry": "^3.18.1", - "gatsby-worker": "^1.18.0", + "gatsby-cli": "^4.19.0", + "gatsby-core-utils": "^3.19.0", + "gatsby-graphiql-explorer": "^2.19.0", + "gatsby-legacy-polyfills": "^2.19.0", + "gatsby-link": "^4.19.0", + "gatsby-page-utils": "^2.19.0", + "gatsby-parcel-config": "^0.10.0", + "gatsby-plugin-page-creator": "^4.19.0", + "gatsby-plugin-typescript": "^4.19.0", + "gatsby-plugin-utils": "^3.13.0", + "gatsby-react-router-scroll": "^5.19.0", + "gatsby-script": "^1.4.0", + "gatsby-sharp": "^0.13.0", + "gatsby-telemetry": "^3.19.0", + "gatsby-worker": "^1.19.0", "glob": "^7.2.3", "globby": "^11.1.0", "got": "^11.8.2", @@ -10045,7 +9932,6 @@ "graphql-compose": "^9.0.7", "graphql-playground-middleware-express": "^1.7.22", "hasha": "^5.2.2", - "http-proxy": "^1.18.1", "invariant": "^2.2.4", "is-relative": "^1.0.0", "is-relative-url": "^3.0.0", @@ -10064,6 +9950,7 @@ "moment": "^2.29.1", "multer": "^1.4.3", "node-fetch": "^2.6.6", + "node-html-parser": "^5.3.3", "normalize-path": "^3.0.0", "null-loader": "^4.0.1", "opentracing": "^0.14.5", @@ -10110,9 +9997,9 @@ }, "dependencies": { "gatsby-cli": { - "version": "4.18.1", - "resolved": "https://registry.npmjs.org/gatsby-cli/-/gatsby-cli-4.18.1.tgz", - "integrity": "sha512-ceYqm6i39rHY343zUCflwXnGtd25QGccvToTWL8W42/EGToDW8bubLfeBSRCfjXm946yf1gkS/1UAsAgAphYDA==", + "version": "4.19.0", + "resolved": "https://registry.npmjs.org/gatsby-cli/-/gatsby-cli-4.19.0.tgz", + "integrity": "sha512-i1B9ktvOECiOZgyKqf0xdYx9bmrIUeZeiK+EOIvIpvFfFUwBmZR6xSHRHYUGX2JVpQiy4QEG25KcPWgF9mYJ3w==", "requires": { "@babel/code-frame": "^7.14.0", "@babel/core": "^7.15.5", @@ -10131,13 +10018,13 @@ "common-tags": "^1.8.2", "configstore": "^5.0.1", "convert-hrtime": "^3.0.0", - "create-gatsby": "^2.18.1", + "create-gatsby": "^2.19.0", "envinfo": "^7.8.1", "execa": "^5.1.1", "fs-exists-cached": "^1.0.0", "fs-extra": "^10.1.0", - "gatsby-core-utils": "^3.18.1", - "gatsby-telemetry": "^3.18.1", + "gatsby-core-utils": "^3.19.0", + "gatsby-telemetry": "^3.19.0", "hosted-git-info": "^3.0.8", "is-valid-path": "^0.1.1", "joi": "^17.4.2", @@ -10160,6 +10047,62 @@ "yurnalist": "^2.1.0" } }, + "gatsby-core-utils": { + "version": "3.19.0", + "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.19.0.tgz", + "integrity": "sha512-cjXs9DsXkPZt+UdiLHxtq+rGMGVrcnM0KwkawlruvPchI7lqGNv9CScqlvYPxx1dBhu3zSZS26EBALMlFhyOJA==", + "requires": { + "@babel/runtime": "^7.15.4", + "ci-info": "2.0.0", + "configstore": "^5.0.1", + "fastq": "^1.13.0", + "file-type": "^16.5.3", + "fs-extra": "^10.1.0", + "got": "^11.8.5", + "import-from": "^4.0.0", + "lmdb": "2.5.3", + "lock": "^1.1.0", + "node-object-hash": "^2.3.10", + "proper-lockfile": "^4.1.2", + "resolve-from": "^5.0.0", + "tmp": "^0.2.1", + "xdg-basedir": "^4.0.0" + } + }, + "gatsby-plugin-utils": { + "version": "3.13.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-utils/-/gatsby-plugin-utils-3.13.0.tgz", + "integrity": "sha512-iFFWswld/Nu8IrSCikZXC4/cud9txv3ikjkQiGLccJStS9VH2rSY4XEMNRqsKN9Spe3pFBOr/97yYUaPhZaQWg==", + "requires": { + "@babel/runtime": "^7.15.4", + "@gatsbyjs/potrace": "^2.2.0", + "fs-extra": "^10.1.0", + "gatsby-core-utils": "^3.19.0", + "gatsby-sharp": "^0.13.0", + "graphql-compose": "^9.0.7", + "import-from": "^4.0.0", + "joi": "^17.4.2", + "mime": "^3.0.0", + "mini-svg-data-uri": "^1.4.4", + "svgo": "^2.8.0" + }, + "dependencies": { + "mime": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-3.0.0.tgz", + "integrity": "sha512-jSCU7/VB1loIWBZe14aEYHU/+1UMEHoaO7qxCOVJOw9GgH72VAWppxNcjU+x9a2k3GSIBXNKxXQFqRvvZ7vr3A==" + } + } + }, + "gatsby-sharp": { + "version": "0.13.0", + "resolved": "https://registry.npmjs.org/gatsby-sharp/-/gatsby-sharp-0.13.0.tgz", + "integrity": "sha512-dGuIuWP3rC7hXl/CgkHEY4WQEW+B9Rsg8uo6u+OumuLnLBxD4vTusEIGctVKzlyIxpENEQylQ7w1JKHX9fOy9g==", + "requires": { + "@types/sharp": "^0.30.0", + "sharp": "^0.30.3" + } + }, "mitt": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/mitt/-/mitt-1.2.0.tgz", @@ -10198,9 +10141,9 @@ } }, "gatsby-graphiql-explorer": { - "version": "2.18.0", - "resolved": "https://registry.npmjs.org/gatsby-graphiql-explorer/-/gatsby-graphiql-explorer-2.18.0.tgz", - "integrity": "sha512-mmY+kHc+axpDO9lfjbCEf/0oEIHTcZmpe2PtQAzkhnQHyti3xd9IIafq/1W3QKIJo5c7f40+tR3sFTERqaBeIA==", + "version": "2.19.0", + "resolved": "https://registry.npmjs.org/gatsby-graphiql-explorer/-/gatsby-graphiql-explorer-2.19.0.tgz", + "integrity": "sha512-wOD1LuWaSbCtZ0E9C2HxMBQj67k8kPnlLMr/VfKHgBh0FfvIavIq5vOq5K9zRIkAzSzYVODGEz2NVdbfVK9Bew==", "requires": { "@babel/runtime": "^7.15.4" } @@ -10216,9 +10159,9 @@ } }, "gatsby-legacy-polyfills": { - "version": "2.18.0", - "resolved": "https://registry.npmjs.org/gatsby-legacy-polyfills/-/gatsby-legacy-polyfills-2.18.0.tgz", - "integrity": "sha512-wPnsRUnnab10wyt5VPkIhpJC1k8bVrpn0Sfat1L3JskYwkVIEvquqTmHWkpGMB8SLbXQiJEGCs2TcIrx9riL+w==", + "version": "2.19.0", + "resolved": "https://registry.npmjs.org/gatsby-legacy-polyfills/-/gatsby-legacy-polyfills-2.19.0.tgz", + "integrity": "sha512-WuyN01eiRxhanfnj6UgsCxU+Pxs9B8rtgxbrwXhlEKX+QdAp4XlywDQ8QXvv8i028QDF9h+VnvGlfcZY4tgQrQ==", "requires": { "@babel/runtime": "^7.15.4", "core-js-compat": "3.9.0" @@ -10241,83 +10184,162 @@ } }, "gatsby-link": { - "version": "4.18.1", - "resolved": "https://registry.npmjs.org/gatsby-link/-/gatsby-link-4.18.1.tgz", - "integrity": "sha512-gLFH2iU4WugHU5k+SLu4F0Ar04kDT5KhkyXly99ZVtiIvHpA5DqcuGNIUjIE/lizSCsfa553wGv7dadfghGzrQ==", + "version": "4.19.0", + "resolved": "https://registry.npmjs.org/gatsby-link/-/gatsby-link-4.19.0.tgz", + "integrity": "sha512-snv9blxZR7s/ymRjUUDP2+zrJ/beuyy/k/MeW57EkQ16YfgDyF79JMKNDU3iXFmiFhG9AYBkClIfe4qTSoCO/A==", "requires": { - "@babel/runtime": "^7.15.4", "@types/reach__router": "^1.3.10", - "gatsby-page-utils": "^2.18.1", + "gatsby-page-utils": "^2.19.0", "prop-types": "^15.8.1" } }, "gatsby-page-utils": { - "version": "2.18.1", - "resolved": "https://registry.npmjs.org/gatsby-page-utils/-/gatsby-page-utils-2.18.1.tgz", - "integrity": "sha512-4EM0LNOQgnCndHDQSI/ZKRFWYWG9dtTPuGbBaGlmPquhj3zwjOscws1vfj7g+u3PowKjZQ2Rf92RZd8xt8XLTQ==", + "version": "2.19.0", + "resolved": "https://registry.npmjs.org/gatsby-page-utils/-/gatsby-page-utils-2.19.0.tgz", + "integrity": "sha512-eYStV4jQbuEBKhatH3yzWA+lmoydJBCZVg6w2GG38eSsgcj9pdep8oQqyQdGFU3dy/HizWmWCv+wW9FIUoVQsQ==", "requires": { "@babel/runtime": "^7.15.4", "bluebird": "^3.7.2", "chokidar": "^3.5.3", "fs-exists-cached": "^1.0.0", - "gatsby-core-utils": "^3.18.1", + "gatsby-core-utils": "^3.19.0", "glob": "^7.2.3", "lodash": "^4.17.21", "micromatch": "^4.0.5" + }, + "dependencies": { + "gatsby-core-utils": { + "version": "3.19.0", + "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.19.0.tgz", + "integrity": "sha512-cjXs9DsXkPZt+UdiLHxtq+rGMGVrcnM0KwkawlruvPchI7lqGNv9CScqlvYPxx1dBhu3zSZS26EBALMlFhyOJA==", + "requires": { + "@babel/runtime": "^7.15.4", + "ci-info": "2.0.0", + "configstore": "^5.0.1", + "fastq": "^1.13.0", + "file-type": "^16.5.3", + "fs-extra": "^10.1.0", + "got": "^11.8.5", + "import-from": "^4.0.0", + "lmdb": "2.5.3", + "lock": "^1.1.0", + "node-object-hash": "^2.3.10", + "proper-lockfile": "^4.1.2", + "resolve-from": "^5.0.0", + "tmp": "^0.2.1", + "xdg-basedir": "^4.0.0" + } + } } }, "gatsby-parcel-config": { - "version": "0.9.2", - "resolved": "https://registry.npmjs.org/gatsby-parcel-config/-/gatsby-parcel-config-0.9.2.tgz", - "integrity": "sha512-ONykPoYCoFs89M8Hio0TSrUQEpwXwbSiV8aCcPH9L6w3eros9RlWrwAwnWb+lPDNJT5BsereBjefoS9cC6mpVA==", - "requires": { - "@gatsbyjs/parcel-namer-relative-to-cwd": "^1.3.2", - "@parcel/bundler-default": "2.6.0", - "@parcel/compressor-raw": "2.6.0", - "@parcel/namer-default": "2.6.0", - "@parcel/optimizer-terser": "2.6.0", - "@parcel/packager-js": "2.6.0", - "@parcel/packager-raw": "2.6.0", - "@parcel/reporter-dev-server": "2.6.0", - "@parcel/resolver-default": "2.6.0", - "@parcel/runtime-browser-hmr": "2.6.0", - "@parcel/runtime-js": "2.6.0", - "@parcel/runtime-react-refresh": "2.6.0", - "@parcel/runtime-service-worker": "2.6.0", - "@parcel/transformer-js": "2.6.0", - "@parcel/transformer-json": "2.6.0", - "@parcel/transformer-raw": "2.6.0", - "@parcel/transformer-react-refresh-wrap": "2.6.0" + "version": "0.10.0", + "resolved": "https://registry.npmjs.org/gatsby-parcel-config/-/gatsby-parcel-config-0.10.0.tgz", + "integrity": "sha512-FV+ccSeWPgicWRtycfUV1L7xyVIr6OSDnUkztnxq3Xj+OEBPC0NO2x07CA4tz16hSRDH1/qXgwY8AsHyenCidg==", + "requires": { + "@gatsbyjs/parcel-namer-relative-to-cwd": "^1.4.0", + "@parcel/bundler-default": "2.6.2", + "@parcel/compressor-raw": "2.6.2", + "@parcel/namer-default": "2.6.2", + "@parcel/optimizer-terser": "2.6.2", + "@parcel/packager-js": "2.6.2", + "@parcel/packager-raw": "2.6.2", + "@parcel/reporter-dev-server": "2.6.2", + "@parcel/resolver-default": "2.6.2", + "@parcel/runtime-browser-hmr": "2.6.2", + "@parcel/runtime-js": "2.6.2", + "@parcel/runtime-react-refresh": "2.6.2", + "@parcel/runtime-service-worker": "2.6.2", + "@parcel/transformer-js": "2.6.2", + "@parcel/transformer-json": "2.6.2", + "@parcel/transformer-raw": "2.6.2", + "@parcel/transformer-react-refresh-wrap": "2.6.2" } }, "gatsby-plugin-catch-links": { - "version": "4.18.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-catch-links/-/gatsby-plugin-catch-links-4.18.0.tgz", - "integrity": "sha512-BhrK//cvOuBKhKZ+P8GW/PrjQjo2Vx2fiiZbIuV4/tVWMx76vbdR1tzija2OHBts4mq3ngVNJOknLpaxRk6JAg==", + "version": "4.19.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-catch-links/-/gatsby-plugin-catch-links-4.19.0.tgz", + "integrity": "sha512-3eRRobMRRQr/NPvdZt3zPXJEwgw5mRZ8XirnABdryyCOOZZW7+Vk+ejB8S4FdX7Qt/4M2zJM+MjOiT4M4iQnKw==", "requires": { "@babel/runtime": "^7.15.4", "escape-string-regexp": "^1.0.5" } }, "gatsby-plugin-image": { - "version": "2.18.1", - "resolved": "https://registry.npmjs.org/gatsby-plugin-image/-/gatsby-plugin-image-2.18.1.tgz", - "integrity": "sha512-PsNIWq5bVALRRshbKOL97tqZTT2r0iILlP+K26YHfd+54DOUPqjESGZ/x7rnv2WMBVFd+Xtkmrx6M1rW86g1Rw==", + "version": "2.19.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-image/-/gatsby-plugin-image-2.19.0.tgz", + "integrity": "sha512-Eu2LY1nfkTdr5hJip5TcZNUqzWQps2Zq4KnPJmgmxpGOYIbrgu8B2kEKQM5hKoe5flu4Xu5gj+CObEMlBj5K1w==", "requires": { "@babel/code-frame": "^7.14.0", "@babel/parser": "^7.15.5", "@babel/runtime": "^7.15.4", "@babel/traverse": "^7.15.4", "babel-jsx-utils": "^1.1.0", - "babel-plugin-remove-graphql-queries": "^4.18.1", + "babel-plugin-remove-graphql-queries": "^4.19.0", "camelcase": "^5.3.1", "chokidar": "^3.5.3", "common-tags": "^1.8.2", "fs-extra": "^10.1.0", - "gatsby-core-utils": "^3.18.1", - "gatsby-plugin-utils": "^3.12.1", + "gatsby-core-utils": "^3.19.0", + "gatsby-plugin-utils": "^3.13.0", "objectFitPolyfill": "^2.3.5", "prop-types": "^15.8.1" + }, + "dependencies": { + "gatsby-core-utils": { + "version": "3.19.0", + "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.19.0.tgz", + "integrity": "sha512-cjXs9DsXkPZt+UdiLHxtq+rGMGVrcnM0KwkawlruvPchI7lqGNv9CScqlvYPxx1dBhu3zSZS26EBALMlFhyOJA==", + "requires": { + "@babel/runtime": "^7.15.4", + "ci-info": "2.0.0", + "configstore": "^5.0.1", + "fastq": "^1.13.0", + "file-type": "^16.5.3", + "fs-extra": "^10.1.0", + "got": "^11.8.5", + "import-from": "^4.0.0", + "lmdb": "2.5.3", + "lock": "^1.1.0", + "node-object-hash": "^2.3.10", + "proper-lockfile": "^4.1.2", + "resolve-from": "^5.0.0", + "tmp": "^0.2.1", + "xdg-basedir": "^4.0.0" + } + }, + "gatsby-plugin-utils": { + "version": "3.13.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-utils/-/gatsby-plugin-utils-3.13.0.tgz", + "integrity": "sha512-iFFWswld/Nu8IrSCikZXC4/cud9txv3ikjkQiGLccJStS9VH2rSY4XEMNRqsKN9Spe3pFBOr/97yYUaPhZaQWg==", + "requires": { + "@babel/runtime": "^7.15.4", + "@gatsbyjs/potrace": "^2.2.0", + "fs-extra": "^10.1.0", + "gatsby-core-utils": "^3.19.0", + "gatsby-sharp": "^0.13.0", + "graphql-compose": "^9.0.7", + "import-from": "^4.0.0", + "joi": "^17.4.2", + "mime": "^3.0.0", + "mini-svg-data-uri": "^1.4.4", + "svgo": "^2.8.0" + } + }, + "gatsby-sharp": { + "version": "0.13.0", + "resolved": "https://registry.npmjs.org/gatsby-sharp/-/gatsby-sharp-0.13.0.tgz", + "integrity": "sha512-dGuIuWP3rC7hXl/CgkHEY4WQEW+B9Rsg8uo6u+OumuLnLBxD4vTusEIGctVKzlyIxpENEQylQ7w1JKHX9fOy9g==", + "requires": { + "@types/sharp": "^0.30.0", + "sharp": "^0.30.3" + } + }, + "mime": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-3.0.0.tgz", + "integrity": "sha512-jSCU7/VB1loIWBZe14aEYHU/+1UMEHoaO7qxCOVJOw9GgH72VAWppxNcjU+x9a2k3GSIBXNKxXQFqRvvZ7vr3A==" + } } }, "gatsby-plugin-manifest": { @@ -10333,35 +10355,115 @@ } }, "gatsby-plugin-offline": { - "version": "5.18.1", - "resolved": "https://registry.npmjs.org/gatsby-plugin-offline/-/gatsby-plugin-offline-5.18.1.tgz", - "integrity": "sha512-Gbk3bNPPCGWgZluXtmW2FUOBmLoxShuXeInCZlYz+p+Vz9jnNUIWk2SFZO1oeo7SFzuQpdkcy0oClOCYVZ9ClA==", + "version": "5.19.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-offline/-/gatsby-plugin-offline-5.19.0.tgz", + "integrity": "sha512-bTouKG26tqlKMCc8q9Fq3+agSv1gO7raEVdjhmtWrbLMPK1RKUv8alOnNc0inMCT/so+vSb7VBKRz0nQSv+O8A==", "requires": { "@babel/runtime": "^7.15.4", "cheerio": "^1.0.0-rc.10", - "gatsby-core-utils": "^3.18.1", + "gatsby-core-utils": "^3.19.0", "glob": "^7.2.3", "idb-keyval": "^3.2.0", "lodash": "^4.17.21", "workbox-build": "^4.3.1" + }, + "dependencies": { + "gatsby-core-utils": { + "version": "3.19.0", + "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.19.0.tgz", + "integrity": "sha512-cjXs9DsXkPZt+UdiLHxtq+rGMGVrcnM0KwkawlruvPchI7lqGNv9CScqlvYPxx1dBhu3zSZS26EBALMlFhyOJA==", + "requires": { + "@babel/runtime": "^7.15.4", + "ci-info": "2.0.0", + "configstore": "^5.0.1", + "fastq": "^1.13.0", + "file-type": "^16.5.3", + "fs-extra": "^10.1.0", + "got": "^11.8.5", + "import-from": "^4.0.0", + "lmdb": "2.5.3", + "lock": "^1.1.0", + "node-object-hash": "^2.3.10", + "proper-lockfile": "^4.1.2", + "resolve-from": "^5.0.0", + "tmp": "^0.2.1", + "xdg-basedir": "^4.0.0" + } + } } }, "gatsby-plugin-page-creator": { - "version": "4.18.1", - "resolved": "https://registry.npmjs.org/gatsby-plugin-page-creator/-/gatsby-plugin-page-creator-4.18.1.tgz", - "integrity": "sha512-XPAglahQ1fDnSdSNJmtAGwVqB7yZDGPOQQBQX7LD74XwYP6uriRo4LyeI+gEXRqW4d63ZL3VMvgdisde9M95LQ==", + "version": "4.19.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-page-creator/-/gatsby-plugin-page-creator-4.19.0.tgz", + "integrity": "sha512-JGclCb2lniTjBdFzoiF0Px9EhVY/3uiWx7mqnvfdVO85VVey5+eCKL60Aqamjovo6C+l/0Uldt4uT1EpNLC3Xw==", "requires": { "@babel/runtime": "^7.15.4", "@babel/traverse": "^7.15.4", "@sindresorhus/slugify": "^1.1.2", "chokidar": "^3.5.3", "fs-exists-cached": "^1.0.0", - "gatsby-core-utils": "^3.18.1", - "gatsby-page-utils": "^2.18.1", - "gatsby-plugin-utils": "^3.12.1", - "gatsby-telemetry": "^3.18.1", + "gatsby-core-utils": "^3.19.0", + "gatsby-page-utils": "^2.19.0", + "gatsby-plugin-utils": "^3.13.0", + "gatsby-telemetry": "^3.19.0", "globby": "^11.1.0", "lodash": "^4.17.21" + }, + "dependencies": { + "gatsby-core-utils": { + "version": "3.19.0", + "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.19.0.tgz", + "integrity": "sha512-cjXs9DsXkPZt+UdiLHxtq+rGMGVrcnM0KwkawlruvPchI7lqGNv9CScqlvYPxx1dBhu3zSZS26EBALMlFhyOJA==", + "requires": { + "@babel/runtime": "^7.15.4", + "ci-info": "2.0.0", + "configstore": "^5.0.1", + "fastq": "^1.13.0", + "file-type": "^16.5.3", + "fs-extra": "^10.1.0", + "got": "^11.8.5", + "import-from": "^4.0.0", + "lmdb": "2.5.3", + "lock": "^1.1.0", + "node-object-hash": "^2.3.10", + "proper-lockfile": "^4.1.2", + "resolve-from": "^5.0.0", + "tmp": "^0.2.1", + "xdg-basedir": "^4.0.0" + } + }, + "gatsby-plugin-utils": { + "version": "3.13.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-utils/-/gatsby-plugin-utils-3.13.0.tgz", + "integrity": "sha512-iFFWswld/Nu8IrSCikZXC4/cud9txv3ikjkQiGLccJStS9VH2rSY4XEMNRqsKN9Spe3pFBOr/97yYUaPhZaQWg==", + "requires": { + "@babel/runtime": "^7.15.4", + "@gatsbyjs/potrace": "^2.2.0", + "fs-extra": "^10.1.0", + "gatsby-core-utils": "^3.19.0", + "gatsby-sharp": "^0.13.0", + "graphql-compose": "^9.0.7", + "import-from": "^4.0.0", + "joi": "^17.4.2", + "mime": "^3.0.0", + "mini-svg-data-uri": "^1.4.4", + "svgo": "^2.8.0" + } + }, + "gatsby-sharp": { + "version": "0.13.0", + "resolved": "https://registry.npmjs.org/gatsby-sharp/-/gatsby-sharp-0.13.0.tgz", + "integrity": "sha512-dGuIuWP3rC7hXl/CgkHEY4WQEW+B9Rsg8uo6u+OumuLnLBxD4vTusEIGctVKzlyIxpENEQylQ7w1JKHX9fOy9g==", + "requires": { + "@types/sharp": "^0.30.0", + "sharp": "^0.30.3" + } + }, + "mime": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-3.0.0.tgz", + "integrity": "sha512-jSCU7/VB1loIWBZe14aEYHU/+1UMEHoaO7qxCOVJOw9GgH72VAWppxNcjU+x9a2k3GSIBXNKxXQFqRvvZ7vr3A==" + } } }, "gatsby-plugin-react-helmet": { @@ -10373,20 +10475,20 @@ } }, "gatsby-plugin-sharp": { - "version": "4.18.1", - "resolved": "https://registry.npmjs.org/gatsby-plugin-sharp/-/gatsby-plugin-sharp-4.18.1.tgz", - "integrity": "sha512-oUAy+1Ey8/HKSYwY9W+LkO8BT7nVk6it2n9QympS8BzGgnFXY8695flmaPtQySMES+OwYGtlh0JhU+p9caVZAQ==", + "version": "4.19.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-sharp/-/gatsby-plugin-sharp-4.19.0.tgz", + "integrity": "sha512-2wIxbCoJmZMeCw+V9ht90tmwoSF2eaEKj6j5QMLe+NlLpLOXwmsHjrauMpqd8ILmcKpZTOJr9yEplzbjxlD36A==", "requires": { "@babel/runtime": "^7.15.4", "@gatsbyjs/potrace": "^2.2.0", - "async": "^3.2.3", + "async": "^3.2.4", "bluebird": "^3.7.2", "debug": "^4.3.4", "filenamify": "^4.3.0", "fs-extra": "^10.1.0", - "gatsby-core-utils": "^3.18.1", - "gatsby-plugin-utils": "^3.12.1", - "gatsby-telemetry": "^3.18.1", + "gatsby-core-utils": "^3.19.0", + "gatsby-plugin-utils": "^3.13.0", + "gatsby-telemetry": "^3.19.0", "got": "^11.8.5", "lodash": "^4.17.21", "mini-svg-data-uri": "^1.4.4", @@ -10412,25 +10514,10 @@ "supports-color": "^5.3.0" } }, - "css-select": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/css-select/-/css-select-2.1.0.tgz", - "integrity": "sha512-Dqk7LQKpwLoH3VovzZnkzegqNSuAziQyNZUcrdDM401iY+R5NkGBXGmtO05/yaXQziALuPogeG0b7UAgjnTJTQ==", - "requires": { - "boolbase": "^1.0.0", - "css-what": "^3.2.1", - "domutils": "^1.7.0", - "nth-check": "^1.0.2" - } - }, - "css-tree": { - "version": "1.0.0-alpha.37", - "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-1.0.0-alpha.37.tgz", - "integrity": "sha512-DMxWJg0rnz7UgxKT0Q1HU/L9BeJI0M6ksor0OgqOnF+aRCDWg/N2641HmVyU9KVIu0OVVWOb2IpC9A+BJRnejg==", - "requires": { - "mdn-data": "2.0.4", - "source-map": "^0.6.1" - } + "commander": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz", + "integrity": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==" }, "css-what": { "version": "3.4.2", @@ -10475,11 +10562,81 @@ "domelementtype": "1" } }, + "gatsby-core-utils": { + "version": "3.19.0", + "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.19.0.tgz", + "integrity": "sha512-cjXs9DsXkPZt+UdiLHxtq+rGMGVrcnM0KwkawlruvPchI7lqGNv9CScqlvYPxx1dBhu3zSZS26EBALMlFhyOJA==", + "requires": { + "@babel/runtime": "^7.15.4", + "ci-info": "2.0.0", + "configstore": "^5.0.1", + "fastq": "^1.13.0", + "file-type": "^16.5.3", + "fs-extra": "^10.1.0", + "got": "^11.8.5", + "import-from": "^4.0.0", + "lmdb": "2.5.3", + "lock": "^1.1.0", + "node-object-hash": "^2.3.10", + "proper-lockfile": "^4.1.2", + "resolve-from": "^5.0.0", + "tmp": "^0.2.1", + "xdg-basedir": "^4.0.0" + } + }, + "gatsby-plugin-utils": { + "version": "3.13.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-utils/-/gatsby-plugin-utils-3.13.0.tgz", + "integrity": "sha512-iFFWswld/Nu8IrSCikZXC4/cud9txv3ikjkQiGLccJStS9VH2rSY4XEMNRqsKN9Spe3pFBOr/97yYUaPhZaQWg==", + "requires": { + "@babel/runtime": "^7.15.4", + "@gatsbyjs/potrace": "^2.2.0", + "fs-extra": "^10.1.0", + "gatsby-core-utils": "^3.19.0", + "gatsby-sharp": "^0.13.0", + "graphql-compose": "^9.0.7", + "import-from": "^4.0.0", + "joi": "^17.4.2", + "mime": "^3.0.0", + "mini-svg-data-uri": "^1.4.4", + "svgo": "^2.8.0" + }, + "dependencies": { + "svgo": { + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/svgo/-/svgo-2.8.0.tgz", + "integrity": "sha512-+N/Q9kV1+F+UeWYoSiULYo4xYSDQlTgb+ayMobAXPwMnLvop7oxKMo9OzIrX5x3eS4L4f2UHhc9axXwY8DpChg==", + "requires": { + "@trysound/sax": "0.2.0", + "commander": "^7.2.0", + "css-select": "^4.1.3", + "css-tree": "^1.1.3", + "csso": "^4.2.0", + "picocolors": "^1.0.0", + "stable": "^0.1.8" + } + } + } + }, + "gatsby-sharp": { + "version": "0.13.0", + "resolved": "https://registry.npmjs.org/gatsby-sharp/-/gatsby-sharp-0.13.0.tgz", + "integrity": "sha512-dGuIuWP3rC7hXl/CgkHEY4WQEW+B9Rsg8uo6u+OumuLnLBxD4vTusEIGctVKzlyIxpENEQylQ7w1JKHX9fOy9g==", + "requires": { + "@types/sharp": "^0.30.0", + "sharp": "^0.30.3" + } + }, "mdn-data": { "version": "2.0.4", "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.4.tgz", "integrity": "sha512-iV3XNKw06j5Q7mi6h+9vbx23Tv7JkjEVgKHW4pimwyDGWm0OIQntJJ+u1C6mg6mK1EaTv42XQ7w76yuzH7M2cA==" }, + "mime": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-3.0.0.tgz", + "integrity": "sha512-jSCU7/VB1loIWBZe14aEYHU/+1UMEHoaO7qxCOVJOw9GgH72VAWppxNcjU+x9a2k3GSIBXNKxXQFqRvvZ7vr3A==" + }, "nth-check": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-1.0.2.tgz", @@ -10511,14 +10668,36 @@ "stable": "^0.1.8", "unquote": "~1.1.1", "util.promisify": "~1.0.0" + }, + "dependencies": { + "css-select": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/css-select/-/css-select-2.1.0.tgz", + "integrity": "sha512-Dqk7LQKpwLoH3VovzZnkzegqNSuAziQyNZUcrdDM401iY+R5NkGBXGmtO05/yaXQziALuPogeG0b7UAgjnTJTQ==", + "requires": { + "boolbase": "^1.0.0", + "css-what": "^3.2.1", + "domutils": "^1.7.0", + "nth-check": "^1.0.2" + } + }, + "css-tree": { + "version": "1.0.0-alpha.37", + "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-1.0.0-alpha.37.tgz", + "integrity": "sha512-DMxWJg0rnz7UgxKT0Q1HU/L9BeJI0M6ksor0OgqOnF+aRCDWg/N2641HmVyU9KVIu0OVVWOb2IpC9A+BJRnejg==", + "requires": { + "mdn-data": "2.0.4", + "source-map": "^0.6.1" + } + } } } } }, "gatsby-plugin-typescript": { - "version": "4.18.1", - "resolved": "https://registry.npmjs.org/gatsby-plugin-typescript/-/gatsby-plugin-typescript-4.18.1.tgz", - "integrity": "sha512-YUZcqL2WWiL2ngKe4A5FpTjCij2pLxiim+QaujeKfMjeWfHJ13uQ74HlxQXNpGAy4vMRBiU4CJH71RXgS1aoaA==", + "version": "4.19.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-typescript/-/gatsby-plugin-typescript-4.19.0.tgz", + "integrity": "sha512-f+aC4g/pTkUqFLTHo3OLdPQgdIFcEdoM5i8H4Pph5O4rmFXYHkkQKimRJmAz9cBb6/1wN7IBqI9m4k3AefaAjA==", "requires": { "@babel/core": "^7.15.5", "@babel/plugin-proposal-nullish-coalescing-operator": "^7.14.5", @@ -10526,7 +10705,7 @@ "@babel/plugin-proposal-optional-chaining": "^7.14.5", "@babel/preset-typescript": "^7.15.0", "@babel/runtime": "^7.15.4", - "babel-plugin-remove-graphql-queries": "^4.18.1" + "babel-plugin-remove-graphql-queries": "^4.19.0" } }, "gatsby-plugin-utils": { @@ -10555,18 +10734,18 @@ } }, "gatsby-react-router-scroll": { - "version": "5.18.0", - "resolved": "https://registry.npmjs.org/gatsby-react-router-scroll/-/gatsby-react-router-scroll-5.18.0.tgz", - "integrity": "sha512-/A1k468s6g713c8me5DuGiia8rPWLuwjITQ/pKqgJwioJVB6MnD/iBCbHUTzLHlNwZypAVdGHCN8fCIcPcMb6Q==", + "version": "5.19.0", + "resolved": "https://registry.npmjs.org/gatsby-react-router-scroll/-/gatsby-react-router-scroll-5.19.0.tgz", + "integrity": "sha512-tl1E2/ger3Aw5Vb5n53i9wCBePYqb2dBilO05pd6FfgKYJveFidQwGzzOn1F9smdWq+5c3KJSTlKJaNYPwn72w==", "requires": { "@babel/runtime": "^7.15.4", "prop-types": "^15.8.1" } }, "gatsby-script": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/gatsby-script/-/gatsby-script-1.3.0.tgz", - "integrity": "sha512-eCz6mcMFpB7kvpmyM7AtMTxNxzdrzPgt8GiuDKWFOlDgk1il6PUjO99QsL/cCeokmaiH/6egVnm9b33/x+sy9A==" + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/gatsby-script/-/gatsby-script-1.4.0.tgz", + "integrity": "sha512-+GmHTAfFq/sQWPvl1E8QvApRfxqqamhdqjFo4YloOQRAlDc+e3nMzTzvgj8z3IWqDqlvEfHMnlvQg60E5ThO/A==" }, "gatsby-sharp": { "version": "0.12.0", @@ -10578,15 +10757,15 @@ } }, "gatsby-source-filesystem": { - "version": "4.18.1", - "resolved": "https://registry.npmjs.org/gatsby-source-filesystem/-/gatsby-source-filesystem-4.18.1.tgz", - "integrity": "sha512-b1sZB0ziLJEGZOi2+ieUKWJXn3X1hK+F3nN5joaI3A+ptz75GpNuv04tFoq9oICzOHyuNuSGN5YgO8kMpmoaGQ==", + "version": "4.19.0", + "resolved": "https://registry.npmjs.org/gatsby-source-filesystem/-/gatsby-source-filesystem-4.19.0.tgz", + "integrity": "sha512-UUBEqRCKpq/rWX5K8Kizmoi2Cls9oOTEtZRUrhdtMqpz5Y6VAmd7Pwina03r0fej+AoebZWOEzPTOh+WhpIDFw==", "requires": { "@babel/runtime": "^7.15.4", "chokidar": "^3.5.3", "file-type": "^16.5.3", "fs-extra": "^10.1.0", - "gatsby-core-utils": "^3.18.1", + "gatsby-core-utils": "^3.19.0", "got": "^9.6.0", "md5-file": "^5.0.0", "mime": "^2.5.2", @@ -10596,61 +10775,53 @@ "xstate": "^4.26.1" }, "dependencies": { - "@sindresorhus/is": { - "version": "0.14.0", - "resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-0.14.0.tgz", - "integrity": "sha512-9NET910DNaIPngYnLLPeg+Ogzqsi9uM4mSboU5y6p8S5DzMTVEsJZrawi+BoDNUVBa2DhJqQYUFvMDfgU062LQ==" - }, - "@szmarczak/http-timer": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/@szmarczak/http-timer/-/http-timer-1.1.2.tgz", - "integrity": "sha512-XIB2XbzHTN6ieIjfIMV9hlVcfPU26s2vafYWQcZHWXHOxiaRZYEDKEwdl129Zyg50+foYV2jCgtrqSA6qNuNSA==", - "requires": { - "defer-to-connect": "^1.0.1" - } + "defer-to-connect": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/defer-to-connect/-/defer-to-connect-1.1.3.tgz", + "integrity": "sha512-0ISdNousHvZT2EiFlZeZAHBUvSxmKswVCEf8hW7KWgG4a8MVEu/3Vb6uWYozkjylyCxe0JBIiRB1jV45S70WVQ==" }, - "cacheable-request": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/cacheable-request/-/cacheable-request-6.1.0.tgz", - "integrity": "sha512-Oj3cAGPCqOZX7Rz64Uny2GYAZNliQSqfbePrgAQ1wKAihYmCUnraBtJtKcGR4xz7wF+LoJC+ssFZvv5BgF9Igg==", + "gatsby-core-utils": { + "version": "3.19.0", + "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.19.0.tgz", + "integrity": "sha512-cjXs9DsXkPZt+UdiLHxtq+rGMGVrcnM0KwkawlruvPchI7lqGNv9CScqlvYPxx1dBhu3zSZS26EBALMlFhyOJA==", "requires": { - "clone-response": "^1.0.2", - "get-stream": "^5.1.0", - "http-cache-semantics": "^4.0.0", - "keyv": "^3.0.0", - "lowercase-keys": "^2.0.0", - "normalize-url": "^4.1.0", - "responselike": "^1.0.2" + "@babel/runtime": "^7.15.4", + "ci-info": "2.0.0", + "configstore": "^5.0.1", + "fastq": "^1.13.0", + "file-type": "^16.5.3", + "fs-extra": "^10.1.0", + "got": "^11.8.5", + "import-from": "^4.0.0", + "lmdb": "2.5.3", + "lock": "^1.1.0", + "node-object-hash": "^2.3.10", + "proper-lockfile": "^4.1.2", + "resolve-from": "^5.0.0", + "tmp": "^0.2.1", + "xdg-basedir": "^4.0.0" }, "dependencies": { - "get-stream": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz", - "integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==", + "got": { + "version": "11.8.5", + "resolved": "https://registry.npmjs.org/got/-/got-11.8.5.tgz", + "integrity": "sha512-o0Je4NvQObAuZPHLFoRSkdG2lTgtcynqymzg2Vupdx6PorhaT5MCbIyXG6d4D94kk8ZG57QeosgdiqfJWhEhlQ==", "requires": { - "pump": "^3.0.0" + "@sindresorhus/is": "^4.0.0", + "@szmarczak/http-timer": "^4.0.5", + "@types/cacheable-request": "^6.0.1", + "@types/responselike": "^1.0.0", + "cacheable-lookup": "^5.0.3", + "cacheable-request": "^7.0.2", + "decompress-response": "^6.0.0", + "http2-wrapper": "^1.0.0-beta.5.2", + "lowercase-keys": "^2.0.0", + "p-cancelable": "^2.0.0", + "responselike": "^2.0.0" } - }, - "lowercase-keys": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-2.0.0.tgz", - "integrity": "sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA==" } } }, - "decompress-response": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-3.3.0.tgz", - "integrity": "sha512-BzRPQuY1ip+qDonAOz42gRm/pg9F768C+npV/4JOsxRC2sq+Rlk+Q4ZCAsOhnIaMrgarILY+RMUIvMmmX1qAEA==", - "requires": { - "mimic-response": "^1.0.0" - } - }, - "defer-to-connect": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/defer-to-connect/-/defer-to-connect-1.1.3.tgz", - "integrity": "sha512-0ISdNousHvZT2EiFlZeZAHBUvSxmKswVCEf8hW7KWgG4a8MVEu/3Vb6uWYozkjylyCxe0JBIiRB1jV45S70WVQ==" - }, "get-stream": { "version": "4.1.0", "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz", @@ -10675,6 +10846,76 @@ "p-cancelable": "^1.0.0", "to-readable-stream": "^1.0.0", "url-parse-lax": "^3.0.0" + }, + "dependencies": { + "@sindresorhus/is": { + "version": "0.14.0", + "resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-0.14.0.tgz", + "integrity": "sha512-9NET910DNaIPngYnLLPeg+Ogzqsi9uM4mSboU5y6p8S5DzMTVEsJZrawi+BoDNUVBa2DhJqQYUFvMDfgU062LQ==" + }, + "@szmarczak/http-timer": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@szmarczak/http-timer/-/http-timer-1.1.2.tgz", + "integrity": "sha512-XIB2XbzHTN6ieIjfIMV9hlVcfPU26s2vafYWQcZHWXHOxiaRZYEDKEwdl129Zyg50+foYV2jCgtrqSA6qNuNSA==", + "requires": { + "defer-to-connect": "^1.0.1" + } + }, + "cacheable-request": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/cacheable-request/-/cacheable-request-6.1.0.tgz", + "integrity": "sha512-Oj3cAGPCqOZX7Rz64Uny2GYAZNliQSqfbePrgAQ1wKAihYmCUnraBtJtKcGR4xz7wF+LoJC+ssFZvv5BgF9Igg==", + "requires": { + "clone-response": "^1.0.2", + "get-stream": "^5.1.0", + "http-cache-semantics": "^4.0.0", + "keyv": "^3.0.0", + "lowercase-keys": "^2.0.0", + "normalize-url": "^4.1.0", + "responselike": "^1.0.2" + }, + "dependencies": { + "get-stream": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz", + "integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==", + "requires": { + "pump": "^3.0.0" + } + }, + "lowercase-keys": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-2.0.0.tgz", + "integrity": "sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA==" + } + } + }, + "decompress-response": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-3.3.0.tgz", + "integrity": "sha512-BzRPQuY1ip+qDonAOz42gRm/pg9F768C+npV/4JOsxRC2sq+Rlk+Q4ZCAsOhnIaMrgarILY+RMUIvMmmX1qAEA==", + "requires": { + "mimic-response": "^1.0.0" + } + }, + "lowercase-keys": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-1.0.1.tgz", + "integrity": "sha512-G2Lj61tXDnVFFOi8VZds+SoQjtQC3dgokKdDG2mTm1tx4m50NUHBOZSBwQQHyy0V12A0JTG4icfZQH+xPyh8VA==" + }, + "p-cancelable": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/p-cancelable/-/p-cancelable-1.1.0.tgz", + "integrity": "sha512-s73XxOZ4zpt1edZYZzvhqFa6uvQc1vwUa0K0BdtIZgQMAJj9IbebH+JkgKZc9h+B05PKHLOTl4ajG1BmNrVZlw==" + }, + "responselike": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/responselike/-/responselike-1.0.2.tgz", + "integrity": "sha512-/Fpe5guzJk1gPqdJLJR5u7eG/gNY4nImjbRDaVWVMRhne55TCmj2i9Q+54PBRfatRC8v/rIiv9BN0pMd9OV5EQ==", + "requires": { + "lowercase-keys": "^1.0.0" + } + } } }, "json-buffer": { @@ -10690,35 +10931,17 @@ "json-buffer": "3.0.0" } }, - "lowercase-keys": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-1.0.1.tgz", - "integrity": "sha512-G2Lj61tXDnVFFOi8VZds+SoQjtQC3dgokKdDG2mTm1tx4m50NUHBOZSBwQQHyy0V12A0JTG4icfZQH+xPyh8VA==" - }, "normalize-url": { "version": "4.5.1", "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-4.5.1.tgz", "integrity": "sha512-9UZCFRHQdNrfTpGg8+1INIg93B6zE0aXMVFkw1WFwvO4SlZywU6aLg5Of0Ap/PgcbSw4LNxvMWXMeugwMCX0AA==" - }, - "p-cancelable": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/p-cancelable/-/p-cancelable-1.1.0.tgz", - "integrity": "sha512-s73XxOZ4zpt1edZYZzvhqFa6uvQc1vwUa0K0BdtIZgQMAJj9IbebH+JkgKZc9h+B05PKHLOTl4ajG1BmNrVZlw==" - }, - "responselike": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/responselike/-/responselike-1.0.2.tgz", - "integrity": "sha512-/Fpe5guzJk1gPqdJLJR5u7eG/gNY4nImjbRDaVWVMRhne55TCmj2i9Q+54PBRfatRC8v/rIiv9BN0pMd9OV5EQ==", - "requires": { - "lowercase-keys": "^1.0.0" - } } } }, "gatsby-source-wordpress": { - "version": "6.18.1", - "resolved": "https://registry.npmjs.org/gatsby-source-wordpress/-/gatsby-source-wordpress-6.18.1.tgz", - "integrity": "sha512-yWVKCnIsZ6vburzkv3SiXKJn8NaA7zzEp5VK0W7/VWj852BWO+VsozK5sOpIt7hBeWCLwsgR+Z/G+0S5Hvbl8Q==", + "version": "6.19.0", + "resolved": "https://registry.npmjs.org/gatsby-source-wordpress/-/gatsby-source-wordpress-6.19.0.tgz", + "integrity": "sha512-z+YyXVmVrK0rI+54hFG+RSSSP2ndhUKBRjhj29iMP8TSyhLz54s3/3Uvp16KfZOnhRWo4MDUsfz0EA+OY2bNdQ==", "requires": { "@babel/runtime": "^7.15.4", "@rematch/core": "^1.4.0", @@ -10740,10 +10963,10 @@ "file-type": "^15.0.1", "filesize": "^6.4.0", "fs-extra": "^10.1.0", - "gatsby-core-utils": "^3.18.1", - "gatsby-plugin-catch-links": "^4.18.0", - "gatsby-plugin-utils": "^3.12.1", - "gatsby-source-filesystem": "^4.18.1", + "gatsby-core-utils": "^3.19.0", + "gatsby-plugin-catch-links": "^4.19.0", + "gatsby-plugin-utils": "^3.13.0", + "gatsby-source-filesystem": "^4.19.0", "glob": "^7.2.3", "got": "^11.8.5", "lodash": "^4.17.21", @@ -10798,6 +11021,94 @@ "resolved": "https://registry.npmjs.org/filesize/-/filesize-6.4.0.tgz", "integrity": "sha512-mjFIpOHC4jbfcTfoh4rkWpI31mF7viw9ikj/JyLoKzqlwG/YsefKfvYlYhdYdg/9mtK2z1AzgN/0LvVQ3zdlSQ==" }, + "gatsby-core-utils": { + "version": "3.19.0", + "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.19.0.tgz", + "integrity": "sha512-cjXs9DsXkPZt+UdiLHxtq+rGMGVrcnM0KwkawlruvPchI7lqGNv9CScqlvYPxx1dBhu3zSZS26EBALMlFhyOJA==", + "requires": { + "@babel/runtime": "^7.15.4", + "ci-info": "2.0.0", + "configstore": "^5.0.1", + "fastq": "^1.13.0", + "file-type": "^16.5.3", + "fs-extra": "^10.1.0", + "got": "^11.8.5", + "import-from": "^4.0.0", + "lmdb": "2.5.3", + "lock": "^1.1.0", + "node-object-hash": "^2.3.10", + "proper-lockfile": "^4.1.2", + "resolve-from": "^5.0.0", + "tmp": "^0.2.1", + "xdg-basedir": "^4.0.0" + }, + "dependencies": { + "@tokenizer/token": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/@tokenizer/token/-/token-0.3.0.tgz", + "integrity": "sha512-OvjF+z51L3ov0OyAU0duzsYuvO01PH7x4t6DJx+guahgTnBHkhJdG7soQeTSFLWN3efnHyibZ4Z8l2EuWwJN3A==" + }, + "file-type": { + "version": "16.5.3", + "resolved": "https://registry.npmjs.org/file-type/-/file-type-16.5.3.tgz", + "integrity": "sha512-uVsl7iFhHSOY4bEONLlTK47iAHtNsFHWP5YE4xJfZ4rnX7S1Q3wce09XgqSC7E/xh8Ncv/be1lNoyprlUH/x6A==", + "requires": { + "readable-web-to-node-stream": "^3.0.0", + "strtok3": "^6.2.4", + "token-types": "^4.1.1" + } + }, + "readable-web-to-node-stream": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/readable-web-to-node-stream/-/readable-web-to-node-stream-3.0.2.tgz", + "integrity": "sha512-ePeK6cc1EcKLEhJFt/AebMCLL+GgSKhuygrZ/GLaKZYEecIgIECf4UaUuaByiGtzckwR4ain9VzUh95T1exYGw==", + "requires": { + "readable-stream": "^3.6.0" + } + }, + "token-types": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/token-types/-/token-types-4.2.0.tgz", + "integrity": "sha512-P0rrp4wUpefLncNamWIef62J0v0kQR/GfDVji9WKY7GDCWy5YbVSrKUTam07iWPZQGy0zWNOfstYTykMmPNR7w==", + "requires": { + "@tokenizer/token": "^0.3.0", + "ieee754": "^1.2.1" + } + } + } + }, + "gatsby-plugin-utils": { + "version": "3.13.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-utils/-/gatsby-plugin-utils-3.13.0.tgz", + "integrity": "sha512-iFFWswld/Nu8IrSCikZXC4/cud9txv3ikjkQiGLccJStS9VH2rSY4XEMNRqsKN9Spe3pFBOr/97yYUaPhZaQWg==", + "requires": { + "@babel/runtime": "^7.15.4", + "@gatsbyjs/potrace": "^2.2.0", + "fs-extra": "^10.1.0", + "gatsby-core-utils": "^3.19.0", + "gatsby-sharp": "^0.13.0", + "graphql-compose": "^9.0.7", + "import-from": "^4.0.0", + "joi": "^17.4.2", + "mime": "^3.0.0", + "mini-svg-data-uri": "^1.4.4", + "svgo": "^2.8.0" + } + }, + "gatsby-sharp": { + "version": "0.13.0", + "resolved": "https://registry.npmjs.org/gatsby-sharp/-/gatsby-sharp-0.13.0.tgz", + "integrity": "sha512-dGuIuWP3rC7hXl/CgkHEY4WQEW+B9Rsg8uo6u+OumuLnLBxD4vTusEIGctVKzlyIxpENEQylQ7w1JKHX9fOy9g==", + "requires": { + "@types/sharp": "^0.30.0", + "sharp": "^0.30.3" + } + }, + "mime": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-3.0.0.tgz", + "integrity": "sha512-jSCU7/VB1loIWBZe14aEYHU/+1UMEHoaO7qxCOVJOw9GgH72VAWppxNcjU+x9a2k3GSIBXNKxXQFqRvvZ7vr3A==" + }, "readable-web-to-node-stream": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/readable-web-to-node-stream/-/readable-web-to-node-stream-2.0.0.tgz", @@ -10815,9 +11126,9 @@ } }, "gatsby-telemetry": { - "version": "3.18.1", - "resolved": "https://registry.npmjs.org/gatsby-telemetry/-/gatsby-telemetry-3.18.1.tgz", - "integrity": "sha512-EjjsUv15BZGsmnPrOINRT/s7d18DTKokpp2NDZLm8uOs3MwVoLtUZ/BS7h2NTmgK+WN93q3bNYRkZgKgV9QC1A==", + "version": "3.19.0", + "resolved": "https://registry.npmjs.org/gatsby-telemetry/-/gatsby-telemetry-3.19.0.tgz", + "integrity": "sha512-5JQcTm2zCLWTmnXOdOe0gxuk7aRZSTaVrOrytMlwAR7trvtBC/fKqMhJHsYwl5uW9K06F59ZdkC0apJTAPkGww==", "requires": { "@babel/code-frame": "^7.14.0", "@babel/runtime": "^7.15.4", @@ -10827,7 +11138,7 @@ "boxen": "^4.2.0", "configstore": "^5.0.1", "fs-extra": "^10.1.0", - "gatsby-core-utils": "^3.18.1", + "gatsby-core-utils": "^3.19.0", "git-up": "^4.0.5", "is-docker": "^2.2.1", "lodash": "^4.17.21", @@ -10879,6 +11190,28 @@ "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" }, + "gatsby-core-utils": { + "version": "3.19.0", + "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.19.0.tgz", + "integrity": "sha512-cjXs9DsXkPZt+UdiLHxtq+rGMGVrcnM0KwkawlruvPchI7lqGNv9CScqlvYPxx1dBhu3zSZS26EBALMlFhyOJA==", + "requires": { + "@babel/runtime": "^7.15.4", + "ci-info": "2.0.0", + "configstore": "^5.0.1", + "fastq": "^1.13.0", + "file-type": "^16.5.3", + "fs-extra": "^10.1.0", + "got": "^11.8.5", + "import-from": "^4.0.0", + "lmdb": "2.5.3", + "lock": "^1.1.0", + "node-object-hash": "^2.3.10", + "proper-lockfile": "^4.1.2", + "resolve-from": "^5.0.0", + "tmp": "^0.2.1", + "xdg-basedir": "^4.0.0" + } + }, "has-flag": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", @@ -10916,9 +11249,9 @@ } }, "gatsby-worker": { - "version": "1.18.0", - "resolved": "https://registry.npmjs.org/gatsby-worker/-/gatsby-worker-1.18.0.tgz", - "integrity": "sha512-gNzqDrYFMXlfXCzdClORyDQWQZKTOF6nRUrhZT8PUxzQViO+DvnEKE3EAQvZizYKW1Hgw7cbiTtLG3qshkNepw==", + "version": "1.19.0", + "resolved": "https://registry.npmjs.org/gatsby-worker/-/gatsby-worker-1.19.0.tgz", + "integrity": "sha512-E0I51K5+rSpcUkv3wQ17FHZiicLeMH/Hz7p3oxlPCM43pcvsYJTa68Q0MqI1K6XV6Z8Nf48dERKMvHT0PnY4GQ==", "requires": { "@babel/core": "^7.15.5", "@babel/runtime": "^7.15.4" @@ -11387,6 +11720,11 @@ } } }, + "he": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/he/-/he-1.2.0.tgz", + "integrity": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==" + }, "header-case": { "version": "2.0.4", "resolved": "https://registry.npmjs.org/header-case/-/header-case-2.0.4.tgz", @@ -11587,23 +11925,6 @@ "toidentifier": "1.0.1" } }, - "http-proxy": { - "version": "1.18.1", - "resolved": "https://registry.npmjs.org/http-proxy/-/http-proxy-1.18.1.tgz", - "integrity": "sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==", - "requires": { - "eventemitter3": "^4.0.0", - "follow-redirects": "^1.0.0", - "requires-port": "^1.0.0" - }, - "dependencies": { - "eventemitter3": { - "version": "4.0.7", - "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.7.tgz", - "integrity": "sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==" - } - } - }, "http2-wrapper": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/http2-wrapper/-/http2-wrapper-1.0.3.tgz", @@ -12367,42 +12688,6 @@ } } }, - "lmdb-darwin-arm64": { - "version": "2.3.10", - "resolved": "https://registry.npmjs.org/lmdb-darwin-arm64/-/lmdb-darwin-arm64-2.3.10.tgz", - "integrity": "sha512-LVXbH2MYu7/ZuQ8+P9rv+SwNyBKltxo7vHAGJS94HWyfwnCbKEYER9PImBvNBwzvgtaYk6x0RMX3oor6e6KdDQ==", - "optional": true - }, - "lmdb-darwin-x64": { - "version": "2.3.10", - "resolved": "https://registry.npmjs.org/lmdb-darwin-x64/-/lmdb-darwin-x64-2.3.10.tgz", - "integrity": "sha512-gAc/1b/FZOb9yVOT+o0huA+hdW82oxLo5r22dFTLoRUFG1JMzxdTjmnW6ONVOHdqC9a5bt3vBCEY3jmXNqV26A==", - "optional": true - }, - "lmdb-linux-arm": { - "version": "2.3.10", - "resolved": "https://registry.npmjs.org/lmdb-linux-arm/-/lmdb-linux-arm-2.3.10.tgz", - "integrity": "sha512-Rb8+4JjsThuEcJ7GLLwFkCFnoiwv/3hAAbELWITz70buQFF+dCZvCWWgEgmDTxwn5r+wIkdUjmFv4dqqiKQFmQ==", - "optional": true - }, - "lmdb-linux-arm64": { - "version": "2.3.10", - "resolved": "https://registry.npmjs.org/lmdb-linux-arm64/-/lmdb-linux-arm64-2.3.10.tgz", - "integrity": "sha512-Ihr8mdICTK3jA4GXHxrXGK2oekn0mY6zuDSXQDNtyRSH19j3D2Y04A7SEI9S0EP/t5sjKSudYgZbiHDxRCsI5A==", - "optional": true - }, - "lmdb-linux-x64": { - "version": "2.3.10", - "resolved": "https://registry.npmjs.org/lmdb-linux-x64/-/lmdb-linux-x64-2.3.10.tgz", - "integrity": "sha512-E3l3pDiCA9uvnLf+t3qkmBGRO01dp1EHD0x0g0iRnfpAhV7wYbayJGfG93BUt22Tj3fnq4HDo4dQ6ZWaDI1nuw==", - "optional": true - }, - "lmdb-win32-x64": { - "version": "2.3.10", - "resolved": "https://registry.npmjs.org/lmdb-win32-x64/-/lmdb-win32-x64-2.3.10.tgz", - "integrity": "sha512-gspWk34tDANhjn+brdqZstJMptGiwj4qFNVg0Zey9ds+BUlif+Lgf5szrfOVzZ8gVRkk1Lgbz7i78+V7YK7SCA==", - "optional": true - }, "load-bmfont": { "version": "1.4.1", "resolved": "https://registry.npmjs.org/load-bmfont/-/load-bmfont-1.4.1.tgz", @@ -12921,11 +13206,6 @@ "resolved": "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.8.tgz", "integrity": "sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==" }, - "nan": { - "version": "2.16.0", - "resolved": "https://registry.npmjs.org/nan/-/nan-2.16.0.tgz", - "integrity": "sha512-UdAqHyFngu7TfQKsCBgAA6pWDkT8MAO7d0jyOecVhN5354xbLqdn8mV9Tat9gepAupm0bt2DbeaSC8vS52MuFA==" - }, "nanoid": { "version": "3.3.4", "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.4.tgz", @@ -13020,9 +13300,18 @@ "integrity": "sha512-2iGbaQBV+ITgCz76ZEjmhUKAKVf7xfY1sRl4UiKQspfZMH2h06SyhNsnSVy50cwkFQDGLyif6m/6uFXHkOZ6rg==" }, "node-gyp-build-optional-packages": { - "version": "4.3.5", - "resolved": "https://registry.npmjs.org/node-gyp-build-optional-packages/-/node-gyp-build-optional-packages-4.3.5.tgz", - "integrity": "sha512-5ke7D8SiQsTQL7CkHpfR1tLwfqtKc0KYEmlnkwd40jHCASskZeS98qoZ1qDUns2aUQWikcjidRUs6PM/3iyN/w==" + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/node-gyp-build-optional-packages/-/node-gyp-build-optional-packages-5.0.3.tgz", + "integrity": "sha512-k75jcVzk5wnnc/FMxsf4udAoTEUv2jY3ycfdSd3yWu6Cnd1oee6/CfZJApyscA4FJOmdoixWwiwOyf16RzD5JA==" + }, + "node-html-parser": { + "version": "5.3.3", + "resolved": "https://registry.npmjs.org/node-html-parser/-/node-html-parser-5.3.3.tgz", + "integrity": "sha512-ncg1033CaX9UexbyA7e1N0aAoAYRDiV8jkTvzEnfd1GDvzFdrsXLzR4p4ik8mwLgnaKP/jyUFWDy9q3jvRT2Jw==", + "requires": { + "css-select": "^4.2.1", + "he": "1.2.0" + } }, "node-int64": { "version": "0.4.0", @@ -14339,6 +14628,13 @@ "http-errors": "2.0.0", "iconv-lite": "0.4.24", "unpipe": "1.0.0" + }, + "dependencies": { + "bytes": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", + "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==" + } } }, "raw-loader": { @@ -15006,11 +15302,6 @@ "resolved": "https://registry.npmjs.org/require-package-name/-/require-package-name-2.0.1.tgz", "integrity": "sha512-uuoJ1hU/k6M0779t3VMVIYpb2VMJk05cehCaABFhXaibcbvfgR8wKiozLjVFSzJPmQMRqIcO0HMyTFqfV09V6Q==" }, - "requires-port": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz", - "integrity": "sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==" - }, "resolve": { "version": "1.22.0", "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.0.tgz", @@ -16628,9 +16919,9 @@ "integrity": "sha512-vRCqFv6UhXpWxZPyGDh/F3ZpNv8/qo7w6iufLpQg9aKnQ71qM4B5KiI7Mia9COcjEhrO9LueHpMYjYzsWH3OIg==" }, "update-browserslist-db": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.4.tgz", - "integrity": "sha512-jnmO2BEGUjsMOe/Fg9u0oczOe/ppIDZPebzccl1yDWGLFP16Pa1/RM5wEoKYPG2zstNcDuAStejyxsOuKINdGA==", + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.5.tgz", + "integrity": "sha512-dteFFpCyvuDdr9S/ff1ISkKt/9YZxKjI9WlRR99c180GaztJtRa/fn18FdxGVKVsnPY7/a/FDN68mcvUmP4U7Q==", "requires": { "escalade": "^3.1.1", "picocolors": "^1.0.0" diff --git a/starters/gatsby-starter-wordpress-blog/package.json b/starters/gatsby-starter-wordpress-blog/package.json index b0ca7d221ce22..9f2dfe96cd11e 100644 --- a/starters/gatsby-starter-wordpress-blog/package.json +++ b/starters/gatsby-starter-wordpress-blog/package.json @@ -9,14 +9,14 @@ }, "dependencies": { "@wordpress/block-library": "^2.29.3", - "gatsby": "^4.18.2", + "gatsby": "^4.19.0", "gatsby-image": "^3.11.0", - "gatsby-plugin-image": "^2.18.1", + "gatsby-plugin-image": "^2.19.0", "gatsby-plugin-manifest": "^4.18.1", - "gatsby-plugin-offline": "^5.18.1", + "gatsby-plugin-offline": "^5.19.0", "gatsby-plugin-react-helmet": "^5.18.0", - "gatsby-plugin-sharp": "^4.18.1", - "gatsby-source-wordpress": "^6.18.1", + "gatsby-plugin-sharp": "^4.19.0", + "gatsby-source-wordpress": "^6.19.0", "gatsby-transformer-sharp": "^4.18.1", "html-react-parser": "^0.14.3", "lodash": "^4.17.21", diff --git a/starters/hello-world/package-lock.json b/starters/hello-world/package-lock.json index 452e7a6e06906..8b02e41ae5cfe 100644 --- a/starters/hello-world/package-lock.json +++ b/starters/hello-world/package-lock.json @@ -66,20 +66,20 @@ "integrity": "sha512-HSmX4WZPPK3FUxYp7g2T6EyO8j96HlZJlxmKPSh6KAcqwyDrfx7hKjXpAW/0FhFfTJsR0Yt4lAjLI2coMptIHQ==" }, "@babel/core": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.18.6.tgz", - "integrity": "sha512-cQbWBpxcbbs/IUredIPkHiAGULLV8iwgNRMFzvbhEXISp4f3rUUXE5+TIw6KwUWUR3DwyI6gmBRnmAtYaWehwQ==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.18.9.tgz", + "integrity": "sha512-1LIb1eL8APMy91/IMW+31ckrfBM4yCoLaVzoDhZUKSM4cu1L1nIidyxkCgzPAgrC5WEz36IPEr/eSeSF9pIn+g==", "requires": { "@ampproject/remapping": "^2.1.0", "@babel/code-frame": "^7.18.6", - "@babel/generator": "^7.18.6", - "@babel/helper-compilation-targets": "^7.18.6", - "@babel/helper-module-transforms": "^7.18.6", - "@babel/helpers": "^7.18.6", - "@babel/parser": "^7.18.6", + "@babel/generator": "^7.18.9", + "@babel/helper-compilation-targets": "^7.18.9", + "@babel/helper-module-transforms": "^7.18.9", + "@babel/helpers": "^7.18.9", + "@babel/parser": "^7.18.9", "@babel/template": "^7.18.6", - "@babel/traverse": "^7.18.6", - "@babel/types": "^7.18.6", + "@babel/traverse": "^7.18.9", + "@babel/types": "^7.18.9", "convert-source-map": "^1.7.0", "debug": "^4.1.0", "gensync": "^1.0.0-beta.2", @@ -103,9 +103,9 @@ } }, "@babel/eslint-parser": { - "version": "7.18.2", - "resolved": "https://registry.npmjs.org/@babel/eslint-parser/-/eslint-parser-7.18.2.tgz", - "integrity": "sha512-oFQYkE8SuH14+uR51JVAmdqwKYXGRjEXx7s+WiagVjqQ+HPE+nnwyF2qlVG8evUsUHmPcA+6YXMEDbIhEyQc5A==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/eslint-parser/-/eslint-parser-7.18.9.tgz", + "integrity": "sha512-KzSGpMBggz4fKbRbWLNyPVTuQr6cmCcBhOyXTw/fieOVaw5oYAwcAj4a7UKcDYCPxQq+CG1NCDZH9e2JTXquiQ==", "requires": { "eslint-scope": "^5.1.1", "eslint-visitor-keys": "^2.1.0", @@ -120,11 +120,11 @@ } }, "@babel/generator": { - "version": "7.18.7", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.18.7.tgz", - "integrity": "sha512-shck+7VLlY72a2w9c3zYWuE1pwOKEiQHV7GTUbSnhyl5eu3i04t30tBY82ZRWrDfo3gkakCFtevExnxbkf2a3A==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.18.9.tgz", + "integrity": "sha512-wt5Naw6lJrL1/SGkipMiFxJjtyczUWTP38deiP1PO60HsBjDeKk08CGC3S8iVuvf0FmTdgKwU1KIXzSKL1G0Ug==", "requires": { - "@babel/types": "^7.18.7", + "@babel/types": "^7.18.9", "@jridgewell/gen-mapping": "^0.3.2", "jsesc": "^2.5.1" }, @@ -150,20 +150,20 @@ } }, "@babel/helper-builder-binary-assignment-operator-visitor": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.18.6.tgz", - "integrity": "sha512-KT10c1oWEpmrIRYnthbzHgoOf6B+Xd6a5yhdbNtdhtG7aO1or5HViuf1TQR36xY/QprXA5nvxO6nAjhJ4y38jw==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.18.9.tgz", + "integrity": "sha512-yFQ0YCHoIqarl8BCRwBL8ulYUaZpz3bNsA7oFepAzee+8/+ImtADXNOmO5vJvsPff3qi+hvpkY/NYBTrBQgdNw==", "requires": { "@babel/helper-explode-assignable-expression": "^7.18.6", - "@babel/types": "^7.18.6" + "@babel/types": "^7.18.9" } }, "@babel/helper-compilation-targets": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.18.6.tgz", - "integrity": "sha512-vFjbfhNCzqdeAtZflUFrG5YIFqGTqsctrtkZ1D/NB0mDW9TwW3GmmUepYY4G9wCET5rY5ugz4OGTcLd614IzQg==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.18.9.tgz", + "integrity": "sha512-tzLCyVmqUiFlcFoAPLA/gL9TeYrF61VLNtb+hvkuVaB5SUjW7jcfrglBIX1vUIoT7CLP3bBlIMeyEsIl2eFQNg==", "requires": { - "@babel/compat-data": "^7.18.6", + "@babel/compat-data": "^7.18.8", "@babel/helper-validator-option": "^7.18.6", "browserslist": "^4.20.2", "semver": "^6.3.0" @@ -177,16 +177,16 @@ } }, "@babel/helper-create-class-features-plugin": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.18.6.tgz", - "integrity": "sha512-YfDzdnoxHGV8CzqHGyCbFvXg5QESPFkXlHtvdCkesLjjVMT2Adxe4FGUR5ChIb3DxSaXO12iIOCWoXdsUVwnqw==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.18.9.tgz", + "integrity": "sha512-WvypNAYaVh23QcjpMR24CwZY2Nz6hqdOcFdPbNpV56hL5H6KiFheO7Xm1aPdlLQ7d5emYZX7VZwPp9x3z+2opw==", "requires": { "@babel/helper-annotate-as-pure": "^7.18.6", - "@babel/helper-environment-visitor": "^7.18.6", - "@babel/helper-function-name": "^7.18.6", - "@babel/helper-member-expression-to-functions": "^7.18.6", + "@babel/helper-environment-visitor": "^7.18.9", + "@babel/helper-function-name": "^7.18.9", + "@babel/helper-member-expression-to-functions": "^7.18.9", "@babel/helper-optimise-call-expression": "^7.18.6", - "@babel/helper-replace-supers": "^7.18.6", + "@babel/helper-replace-supers": "^7.18.9", "@babel/helper-split-export-declaration": "^7.18.6" } }, @@ -230,9 +230,9 @@ } }, "@babel/helper-environment-visitor": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.18.6.tgz", - "integrity": "sha512-8n6gSfn2baOY+qlp+VSzsosjCVGFqWKmDF0cCWOybh52Dw3SEyoWR1KrhMJASjLwIEkkAufZ0xvr+SxLHSpy2Q==" + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.18.9.tgz", + "integrity": "sha512-3r/aACDJ3fhQ/EVgFy0hpj8oHyHpQc+LPtJoY9SzTThAsStm4Ptegq92vqKoE3vD706ZVFWITnMnxucw+S9Ipg==" }, "@babel/helper-explode-assignable-expression": { "version": "7.18.6", @@ -243,12 +243,12 @@ } }, "@babel/helper-function-name": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.18.6.tgz", - "integrity": "sha512-0mWMxV1aC97dhjCah5U5Ua7668r5ZmSC2DLfH2EZnf9c3/dHZKiFa5pRLMH5tjSl471tY6496ZWk/kjNONBxhw==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.18.9.tgz", + "integrity": "sha512-fJgWlZt7nxGksJS9a0XdSaI4XvpExnNIgRP+rVefWh5U7BL8pPuir6SJUmFKRfjWQ51OtWSzwOxhaH/EBWWc0A==", "requires": { "@babel/template": "^7.18.6", - "@babel/types": "^7.18.6" + "@babel/types": "^7.18.9" } }, "@babel/helper-hoist-variables": { @@ -260,11 +260,11 @@ } }, "@babel/helper-member-expression-to-functions": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.18.6.tgz", - "integrity": "sha512-CeHxqwwipekotzPDUuJOfIMtcIHBuc7WAzLmTYWctVigqS5RktNMQ5bEwQSuGewzYnCtTWa3BARXeiLxDTv+Ng==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.18.9.tgz", + "integrity": "sha512-RxifAh2ZoVU67PyKIO4AMi1wTenGfMR/O/ae0CCRqwgBAt5v7xjdtRw7UoSbsreKrQn5t7r89eruK/9JjYHuDg==", "requires": { - "@babel/types": "^7.18.6" + "@babel/types": "^7.18.9" } }, "@babel/helper-module-imports": { @@ -276,18 +276,18 @@ } }, "@babel/helper-module-transforms": { - "version": "7.18.8", - "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.18.8.tgz", - "integrity": "sha512-che3jvZwIcZxrwh63VfnFTUzcAM9v/lznYkkRxIBGMPt1SudOKHAEec0SIRCfiuIzTcF7VGj/CaTT6gY4eWxvA==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.18.9.tgz", + "integrity": "sha512-KYNqY0ICwfv19b31XzvmI/mfcylOzbLtowkw+mfvGPAQ3kfCnMLYbED3YecL5tPd8nAYFQFAd6JHp2LxZk/J1g==", "requires": { - "@babel/helper-environment-visitor": "^7.18.6", + "@babel/helper-environment-visitor": "^7.18.9", "@babel/helper-module-imports": "^7.18.6", "@babel/helper-simple-access": "^7.18.6", "@babel/helper-split-export-declaration": "^7.18.6", "@babel/helper-validator-identifier": "^7.18.6", "@babel/template": "^7.18.6", - "@babel/traverse": "^7.18.8", - "@babel/types": "^7.18.8" + "@babel/traverse": "^7.18.9", + "@babel/types": "^7.18.9" } }, "@babel/helper-optimise-call-expression": { @@ -299,31 +299,31 @@ } }, "@babel/helper-plugin-utils": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.18.6.tgz", - "integrity": "sha512-gvZnm1YAAxh13eJdkb9EWHBnF3eAub3XTLCZEehHT2kWxiKVRL64+ae5Y6Ivne0mVHmMYKT+xWgZO+gQhuLUBg==" + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.18.9.tgz", + "integrity": "sha512-aBXPT3bmtLryXaoJLyYPXPlSD4p1ld9aYeR+sJNOZjJJGiOpb+fKfh3NkcCu7J54nUJwCERPBExCCpyCOHnu/w==" }, "@babel/helper-remap-async-to-generator": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.18.6.tgz", - "integrity": "sha512-z5wbmV55TveUPZlCLZvxWHtrjuJd+8inFhk7DG0WW87/oJuGDcjDiu7HIvGcpf5464L6xKCg3vNkmlVVz9hwyQ==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.18.9.tgz", + "integrity": "sha512-dI7q50YKd8BAv3VEfgg7PS7yD3Rtbi2J1XMXaalXO0W0164hYLnh8zpjRS0mte9MfVp/tltvr/cfdXPvJr1opA==", "requires": { "@babel/helper-annotate-as-pure": "^7.18.6", - "@babel/helper-environment-visitor": "^7.18.6", - "@babel/helper-wrap-function": "^7.18.6", - "@babel/types": "^7.18.6" + "@babel/helper-environment-visitor": "^7.18.9", + "@babel/helper-wrap-function": "^7.18.9", + "@babel/types": "^7.18.9" } }, "@babel/helper-replace-supers": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.18.6.tgz", - "integrity": "sha512-fTf7zoXnUGl9gF25fXCWE26t7Tvtyn6H4hkLSYhATwJvw2uYxd3aoXplMSe0g9XbwK7bmxNes7+FGO0rB/xC0g==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.18.9.tgz", + "integrity": "sha512-dNsWibVI4lNT6HiuOIBr1oyxo40HvIVmbwPUm3XZ7wMh4k2WxrxTqZwSqw/eEmXDS9np0ey5M2bz9tBmO9c+YQ==", "requires": { - "@babel/helper-environment-visitor": "^7.18.6", - "@babel/helper-member-expression-to-functions": "^7.18.6", + "@babel/helper-environment-visitor": "^7.18.9", + "@babel/helper-member-expression-to-functions": "^7.18.9", "@babel/helper-optimise-call-expression": "^7.18.6", - "@babel/traverse": "^7.18.6", - "@babel/types": "^7.18.6" + "@babel/traverse": "^7.18.9", + "@babel/types": "^7.18.9" } }, "@babel/helper-simple-access": { @@ -335,11 +335,11 @@ } }, "@babel/helper-skip-transparent-expression-wrappers": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.18.6.tgz", - "integrity": "sha512-4KoLhwGS9vGethZpAhYnMejWkX64wsnHPDwvOsKWU6Fg4+AlK2Jz3TyjQLMEPvz+1zemi/WBdkYxCD0bAfIkiw==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.18.9.tgz", + "integrity": "sha512-imytd2gHi3cJPsybLRbmFrF7u5BIEuI2cNheyKi3/iOBC63kNn3q8Crn2xVuESli0aM4KYsyEqKyS7lFL8YVtw==", "requires": { - "@babel/types": "^7.18.6" + "@babel/types": "^7.18.9" } }, "@babel/helper-split-export-declaration": { @@ -361,24 +361,24 @@ "integrity": "sha512-XO7gESt5ouv/LRJdrVjkShckw6STTaB7l9BrpBaAHDeF5YZT+01PCwmR0SJHnkW6i8OwW/EVWRShfi4j2x+KQw==" }, "@babel/helper-wrap-function": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.18.6.tgz", - "integrity": "sha512-I5/LZfozwMNbwr/b1vhhuYD+J/mU+gfGAj5td7l5Rv9WYmH6i3Om69WGKNmlIpsVW/mF6O5bvTKbvDQZVgjqOw==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.18.9.tgz", + "integrity": "sha512-cG2ru3TRAL6a60tfQflpEfs4ldiPwF6YW3zfJiRgmoFVIaC1vGnBBgatfec+ZUziPHkHSaXAuEck3Cdkf3eRpQ==", "requires": { - "@babel/helper-function-name": "^7.18.6", + "@babel/helper-function-name": "^7.18.9", "@babel/template": "^7.18.6", - "@babel/traverse": "^7.18.6", - "@babel/types": "^7.18.6" + "@babel/traverse": "^7.18.9", + "@babel/types": "^7.18.9" } }, "@babel/helpers": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.18.6.tgz", - "integrity": "sha512-vzSiiqbQOghPngUYt/zWGvK3LAsPhz55vc9XNN0xAl2gV4ieShI2OQli5duxWHD+72PZPTKAcfcZDE1Cwc5zsQ==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.18.9.tgz", + "integrity": "sha512-Jf5a+rbrLoR4eNdUmnFu8cN5eNJT6qdTdOg5IHIzq87WwyRw9PwguLFOWYgktN/60IP4fgDUawJvs7PjQIzELQ==", "requires": { "@babel/template": "^7.18.6", - "@babel/traverse": "^7.18.6", - "@babel/types": "^7.18.6" + "@babel/traverse": "^7.18.9", + "@babel/types": "^7.18.9" } }, "@babel/highlight": { @@ -404,9 +404,9 @@ } }, "@babel/parser": { - "version": "7.18.8", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.18.8.tgz", - "integrity": "sha512-RSKRfYX20dyH+elbJK2uqAkVyucL+xXzhqlMD5/ZXx+dAAwpyB7HsvnHe/ZUGOF+xLr5Wx9/JoXVTj6BQE2/oA==" + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.18.9.tgz", + "integrity": "sha512-9uJveS9eY9DJ0t64YbIBZICtJy8a5QrDEVdiLCG97fVLpDTpGX7t8mMSb6OWw6Lrnjqj4O8zwjELX3dhoMgiBg==" }, "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": { "version": "7.18.6", @@ -417,13 +417,13 @@ } }, "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.18.6.tgz", - "integrity": "sha512-Udgu8ZRgrBrttVz6A0EVL0SJ1z+RLbIeqsu632SA1hf0awEppD6TvdznoH+orIF8wtFFAV/Enmw9Y+9oV8TQcw==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.18.9.tgz", + "integrity": "sha512-AHrP9jadvH7qlOj6PINbgSuphjQUAK7AOT7DPjBo9EHoLhQTnnK5u45e1Hd4DbSQEO9nqPWtQ89r+XEOWFScKg==", "requires": { - "@babel/helper-plugin-utils": "^7.18.6", - "@babel/helper-skip-transparent-expression-wrappers": "^7.18.6", - "@babel/plugin-proposal-optional-chaining": "^7.18.6" + "@babel/helper-plugin-utils": "^7.18.9", + "@babel/helper-skip-transparent-expression-wrappers": "^7.18.9", + "@babel/plugin-proposal-optional-chaining": "^7.18.9" } }, "@babel/plugin-proposal-async-generator-functions": { @@ -466,11 +466,11 @@ } }, "@babel/plugin-proposal-export-namespace-from": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.18.6.tgz", - "integrity": "sha512-zr/QcUlUo7GPo6+X1wC98NJADqmy5QTFWWhqeQWiki4XHafJtLl/YMGkmRB2szDD2IYJCCdBTd4ElwhId9T7Xw==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.18.9.tgz", + "integrity": "sha512-k1NtHyOMvlDDFeb9G5PhUXuGj8m/wiwojgQVEhJ/fsVsMCpLyOP4h0uGEjYJKrRI+EVPlb5Jk+Gt9P97lOGwtA==", "requires": { - "@babel/helper-plugin-utils": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.9", "@babel/plugin-syntax-export-namespace-from": "^7.8.3" } }, @@ -484,11 +484,11 @@ } }, "@babel/plugin-proposal-logical-assignment-operators": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.18.6.tgz", - "integrity": "sha512-zMo66azZth/0tVd7gmkxOkOjs2rpHyhpcFo565PUP37hSp6hSd9uUKIfTDFMz58BwqgQKhJ9YxtM5XddjXVn+Q==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.18.9.tgz", + "integrity": "sha512-128YbMpjCrP35IOExw2Fq+x55LMP42DzhOhX2aNNIdI9avSWl2PI0yuBWarr3RYpZBSPtabfadkH2yeRiMD61Q==", "requires": { - "@babel/helper-plugin-utils": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.9", "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4" } }, @@ -511,15 +511,15 @@ } }, "@babel/plugin-proposal-object-rest-spread": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.18.6.tgz", - "integrity": "sha512-9yuM6wr4rIsKa1wlUAbZEazkCrgw2sMPEXCr4Rnwetu7cEW1NydkCWytLuYletbf8vFxdJxFhwEZqMpOx2eZyw==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.18.9.tgz", + "integrity": "sha512-kDDHQ5rflIeY5xl69CEqGEZ0KY369ehsCIEbTGb4siHG5BE9sga/T0r0OUwyZNLMmZE79E1kbsqAjwFCW4ds6Q==", "requires": { - "@babel/compat-data": "^7.18.6", - "@babel/helper-compilation-targets": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6", + "@babel/compat-data": "^7.18.8", + "@babel/helper-compilation-targets": "^7.18.9", + "@babel/helper-plugin-utils": "^7.18.9", "@babel/plugin-syntax-object-rest-spread": "^7.8.3", - "@babel/plugin-transform-parameters": "^7.18.6" + "@babel/plugin-transform-parameters": "^7.18.8" } }, "@babel/plugin-proposal-optional-catch-binding": { @@ -532,12 +532,12 @@ } }, "@babel/plugin-proposal-optional-chaining": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.18.6.tgz", - "integrity": "sha512-PatI6elL5eMzoypFAiYDpYQyMtXTn+iMhuxxQt5mAXD4fEmKorpSI3PHd+i3JXBJN3xyA6MvJv7at23HffFHwA==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.18.9.tgz", + "integrity": "sha512-v5nwt4IqBXihxGsW2QmCWMDS3B3bzGIk/EQVZz2ei7f3NJl8NzAJVvUmpDW5q1CRNY+Beb/k58UAH1Km1N411w==", "requires": { - "@babel/helper-plugin-utils": "^7.18.6", - "@babel/helper-skip-transparent-expression-wrappers": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.9", + "@babel/helper-skip-transparent-expression-wrappers": "^7.18.9", "@babel/plugin-syntax-optional-chaining": "^7.8.3" } }, @@ -741,42 +741,42 @@ } }, "@babel/plugin-transform-block-scoping": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.18.6.tgz", - "integrity": "sha512-pRqwb91C42vs1ahSAWJkxOxU1RHWDn16XAa6ggQ72wjLlWyYeAcLvTtE0aM8ph3KNydy9CQF2nLYcjq1WysgxQ==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.18.9.tgz", + "integrity": "sha512-5sDIJRV1KtQVEbt/EIBwGy4T01uYIo4KRB3VUqzkhrAIOGx7AoctL9+Ux88btY0zXdDyPJ9mW+bg+v+XEkGmtw==", "requires": { - "@babel/helper-plugin-utils": "^7.18.6" + "@babel/helper-plugin-utils": "^7.18.9" } }, "@babel/plugin-transform-classes": { - "version": "7.18.8", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.18.8.tgz", - "integrity": "sha512-RySDoXdF6hgHSHuAW4aLGyVQdmvEX/iJtjVre52k0pxRq4hzqze+rAVP++NmNv596brBpYmaiKgTZby7ziBnVg==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.18.9.tgz", + "integrity": "sha512-EkRQxsxoytpTlKJmSPYrsOMjCILacAjtSVkd4gChEe2kXjFCun3yohhW5I7plXJhCemM0gKsaGMcO8tinvCA5g==", "requires": { "@babel/helper-annotate-as-pure": "^7.18.6", - "@babel/helper-environment-visitor": "^7.18.6", - "@babel/helper-function-name": "^7.18.6", + "@babel/helper-environment-visitor": "^7.18.9", + "@babel/helper-function-name": "^7.18.9", "@babel/helper-optimise-call-expression": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6", - "@babel/helper-replace-supers": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.9", + "@babel/helper-replace-supers": "^7.18.9", "@babel/helper-split-export-declaration": "^7.18.6", "globals": "^11.1.0" } }, "@babel/plugin-transform-computed-properties": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.18.6.tgz", - "integrity": "sha512-9repI4BhNrR0KenoR9vm3/cIc1tSBIo+u1WVjKCAynahj25O8zfbiE6JtAtHPGQSs4yZ+bA8mRasRP+qc+2R5A==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.18.9.tgz", + "integrity": "sha512-+i0ZU1bCDymKakLxn5srGHrsAPRELC2WIbzwjLhHW9SIE1cPYkLCL0NlnXMZaM1vhfgA2+M7hySk42VBvrkBRw==", "requires": { - "@babel/helper-plugin-utils": "^7.18.6" + "@babel/helper-plugin-utils": "^7.18.9" } }, "@babel/plugin-transform-destructuring": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.18.6.tgz", - "integrity": "sha512-tgy3u6lRp17ilY8r1kP4i2+HDUwxlVqq3RTc943eAWSzGgpU1qhiKpqZ5CMyHReIYPHdo3Kg8v8edKtDqSVEyQ==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.18.9.tgz", + "integrity": "sha512-p5VCYNddPLkZTq4XymQIaIfZNJwT9YsjkPOhkVEqt6QIpQFZVM9IltqqYpOEkJoN1DPznmxUDyZ5CTZs/ZCuHA==", "requires": { - "@babel/helper-plugin-utils": "^7.18.6" + "@babel/helper-plugin-utils": "^7.18.9" } }, "@babel/plugin-transform-dotall-regex": { @@ -789,11 +789,11 @@ } }, "@babel/plugin-transform-duplicate-keys": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.18.6.tgz", - "integrity": "sha512-NJU26U/208+sxYszf82nmGYqVF9QN8py2HFTblPT9hbawi8+1C5a9JubODLTGFuT0qlkqVinmkwOD13s0sZktg==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.18.9.tgz", + "integrity": "sha512-d2bmXCtZXYc59/0SanQKbiWINadaJXqtvIQIzd4+hNwkWBgyCd5F/2t1kXoUdvPMrxzPvhK6EMQRROxsue+mfw==", "requires": { - "@babel/helper-plugin-utils": "^7.18.6" + "@babel/helper-plugin-utils": "^7.18.9" } }, "@babel/plugin-transform-exponentiation-operator": { @@ -806,11 +806,11 @@ } }, "@babel/plugin-transform-flow-strip-types": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.18.6.tgz", - "integrity": "sha512-wE0xtA7csz+hw4fKPwxmu5jnzAsXPIO57XnRwzXP3T19jWh1BODnPGoG9xKYwvAwusP7iUktHayRFbMPGtODaQ==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.18.9.tgz", + "integrity": "sha512-+G6rp2zRuOAInY5wcggsx4+QVao1qPM0osC9fTUVlAV3zOrzTCnrMAFVnR6+a3T8wz1wFIH7KhYMcMB3u1n80A==", "requires": { - "@babel/helper-plugin-utils": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.9", "@babel/plugin-syntax-flow": "^7.18.6" } }, @@ -823,21 +823,21 @@ } }, "@babel/plugin-transform-function-name": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.18.6.tgz", - "integrity": "sha512-kJha/Gbs5RjzIu0CxZwf5e3aTTSlhZnHMT8zPWnJMjNpLOUgqevg+PN5oMH68nMCXnfiMo4Bhgxqj59KHTlAnA==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.18.9.tgz", + "integrity": "sha512-WvIBoRPaJQ5yVHzcnJFor7oS5Ls0PYixlTYE63lCj2RtdQEl15M68FXQlxnG6wdraJIXRdR7KI+hQ7q/9QjrCQ==", "requires": { - "@babel/helper-compilation-targets": "^7.18.6", - "@babel/helper-function-name": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6" + "@babel/helper-compilation-targets": "^7.18.9", + "@babel/helper-function-name": "^7.18.9", + "@babel/helper-plugin-utils": "^7.18.9" } }, "@babel/plugin-transform-literals": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.18.6.tgz", - "integrity": "sha512-x3HEw0cJZVDoENXOp20HlypIHfl0zMIhMVZEBVTfmqbObIpsMxMbmU5nOEO8R7LYT+z5RORKPlTI5Hj4OsO9/Q==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.18.9.tgz", + "integrity": "sha512-IFQDSRoTPnrAIrI5zoZv73IFeZu2dhu6irxQjY9rNjTT53VmKg9fenjvoiOWOkJ6mm4jKVPtdMzBY98Fp4Z4cg==", "requires": { - "@babel/helper-plugin-utils": "^7.18.6" + "@babel/helper-plugin-utils": "^7.18.9" } }, "@babel/plugin-transform-member-expression-literals": { @@ -870,13 +870,13 @@ } }, "@babel/plugin-transform-modules-systemjs": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.18.6.tgz", - "integrity": "sha512-UbPYpXxLjTw6w6yXX2BYNxF3p6QY225wcTkfQCy3OMnSlS/C3xGtwUjEzGkldb/sy6PWLiCQ3NbYfjWUTI3t4g==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.18.9.tgz", + "integrity": "sha512-zY/VSIbbqtoRoJKo2cDTewL364jSlZGvn0LKOf9ntbfxOvjfmyrdtEEOAdswOswhZEb8UH3jDkCKHd1sPgsS0A==", "requires": { "@babel/helper-hoist-variables": "^7.18.6", - "@babel/helper-module-transforms": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6", + "@babel/helper-module-transforms": "^7.18.9", + "@babel/helper-plugin-utils": "^7.18.9", "@babel/helper-validator-identifier": "^7.18.6", "babel-plugin-dynamic-import-node": "^2.3.3" } @@ -987,12 +987,12 @@ } }, "@babel/plugin-transform-runtime": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.18.6.tgz", - "integrity": "sha512-8uRHk9ZmRSnWqUgyae249EJZ94b0yAGLBIqzZzl+0iEdbno55Pmlt/32JZsHwXD9k/uZj18Aqqk35wBX4CBTXA==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.18.9.tgz", + "integrity": "sha512-wS8uJwBt7/b/mzE13ktsJdmS4JP/j7PQSaADtnb4I2wL0zK51MQ0pmF8/Jy0wUIS96fr+fXT6S/ifiPXnvrlSg==", "requires": { "@babel/helper-module-imports": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.9", "babel-plugin-polyfill-corejs2": "^0.3.1", "babel-plugin-polyfill-corejs3": "^0.5.2", "babel-plugin-polyfill-regenerator": "^0.3.1", @@ -1015,12 +1015,12 @@ } }, "@babel/plugin-transform-spread": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.18.6.tgz", - "integrity": "sha512-ayT53rT/ENF8WWexIRg9AiV9h0aIteyWn5ptfZTZQrjk/+f3WdrJGCY4c9wcgl2+MKkKPhzbYp97FTsquZpDCw==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.18.9.tgz", + "integrity": "sha512-39Q814wyoOPtIB/qGopNIL9xDChOE1pNU0ZY5dO0owhiVt/5kFm4li+/bBtwc7QotG0u5EPzqhZdjMtmqBqyQA==", "requires": { - "@babel/helper-plugin-utils": "^7.18.6", - "@babel/helper-skip-transparent-expression-wrappers": "^7.18.6" + "@babel/helper-plugin-utils": "^7.18.9", + "@babel/helper-skip-transparent-expression-wrappers": "^7.18.9" } }, "@babel/plugin-transform-sticky-regex": { @@ -1032,19 +1032,19 @@ } }, "@babel/plugin-transform-template-literals": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.18.6.tgz", - "integrity": "sha512-UuqlRrQmT2SWRvahW46cGSany0uTlcj8NYOS5sRGYi8FxPYPoLd5DDmMd32ZXEj2Jq+06uGVQKHxa/hJx2EzKw==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.18.9.tgz", + "integrity": "sha512-S8cOWfT82gTezpYOiVaGHrCbhlHgKhQt8XH5ES46P2XWmX92yisoZywf5km75wv5sYcXDUCLMmMxOLCtthDgMA==", "requires": { - "@babel/helper-plugin-utils": "^7.18.6" + "@babel/helper-plugin-utils": "^7.18.9" } }, "@babel/plugin-transform-typeof-symbol": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.18.6.tgz", - "integrity": "sha512-7m71iS/QhsPk85xSjFPovHPcH3H9qeyzsujhTc+vcdnsXavoWYJ74zx0lP5RhpC5+iDnVLO+PPMHzC11qels1g==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.18.9.tgz", + "integrity": "sha512-SRfwTtF11G2aemAZWivL7PD+C9z52v9EvMqH9BuYbabyPuKUvSWks3oCg6041pT925L4zVFqaVBeECwsmlguEw==", "requires": { - "@babel/helper-plugin-utils": "^7.18.6" + "@babel/helper-plugin-utils": "^7.18.9" } }, "@babel/plugin-transform-typescript": { @@ -1075,28 +1075,28 @@ } }, "@babel/preset-env": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.18.6.tgz", - "integrity": "sha512-WrthhuIIYKrEFAwttYzgRNQ5hULGmwTj+D6l7Zdfsv5M7IWV/OZbUfbeL++Qrzx1nVJwWROIFhCHRYQV4xbPNw==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.18.9.tgz", + "integrity": "sha512-75pt/q95cMIHWssYtyfjVlvI+QEZQThQbKvR9xH+F/Agtw/s4Wfc2V9Bwd/P39VtixB7oWxGdH4GteTTwYJWMg==", "requires": { - "@babel/compat-data": "^7.18.6", - "@babel/helper-compilation-targets": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6", + "@babel/compat-data": "^7.18.8", + "@babel/helper-compilation-targets": "^7.18.9", + "@babel/helper-plugin-utils": "^7.18.9", "@babel/helper-validator-option": "^7.18.6", "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "^7.18.6", - "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.18.6", + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.18.9", "@babel/plugin-proposal-async-generator-functions": "^7.18.6", "@babel/plugin-proposal-class-properties": "^7.18.6", "@babel/plugin-proposal-class-static-block": "^7.18.6", "@babel/plugin-proposal-dynamic-import": "^7.18.6", - "@babel/plugin-proposal-export-namespace-from": "^7.18.6", + "@babel/plugin-proposal-export-namespace-from": "^7.18.9", "@babel/plugin-proposal-json-strings": "^7.18.6", - "@babel/plugin-proposal-logical-assignment-operators": "^7.18.6", + "@babel/plugin-proposal-logical-assignment-operators": "^7.18.9", "@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6", "@babel/plugin-proposal-numeric-separator": "^7.18.6", - "@babel/plugin-proposal-object-rest-spread": "^7.18.6", + "@babel/plugin-proposal-object-rest-spread": "^7.18.9", "@babel/plugin-proposal-optional-catch-binding": "^7.18.6", - "@babel/plugin-proposal-optional-chaining": "^7.18.6", + "@babel/plugin-proposal-optional-chaining": "^7.18.9", "@babel/plugin-proposal-private-methods": "^7.18.6", "@babel/plugin-proposal-private-property-in-object": "^7.18.6", "@babel/plugin-proposal-unicode-property-regex": "^7.18.6", @@ -1118,37 +1118,37 @@ "@babel/plugin-transform-arrow-functions": "^7.18.6", "@babel/plugin-transform-async-to-generator": "^7.18.6", "@babel/plugin-transform-block-scoped-functions": "^7.18.6", - "@babel/plugin-transform-block-scoping": "^7.18.6", - "@babel/plugin-transform-classes": "^7.18.6", - "@babel/plugin-transform-computed-properties": "^7.18.6", - "@babel/plugin-transform-destructuring": "^7.18.6", + "@babel/plugin-transform-block-scoping": "^7.18.9", + "@babel/plugin-transform-classes": "^7.18.9", + "@babel/plugin-transform-computed-properties": "^7.18.9", + "@babel/plugin-transform-destructuring": "^7.18.9", "@babel/plugin-transform-dotall-regex": "^7.18.6", - "@babel/plugin-transform-duplicate-keys": "^7.18.6", + "@babel/plugin-transform-duplicate-keys": "^7.18.9", "@babel/plugin-transform-exponentiation-operator": "^7.18.6", - "@babel/plugin-transform-for-of": "^7.18.6", - "@babel/plugin-transform-function-name": "^7.18.6", - "@babel/plugin-transform-literals": "^7.18.6", + "@babel/plugin-transform-for-of": "^7.18.8", + "@babel/plugin-transform-function-name": "^7.18.9", + "@babel/plugin-transform-literals": "^7.18.9", "@babel/plugin-transform-member-expression-literals": "^7.18.6", "@babel/plugin-transform-modules-amd": "^7.18.6", "@babel/plugin-transform-modules-commonjs": "^7.18.6", - "@babel/plugin-transform-modules-systemjs": "^7.18.6", + "@babel/plugin-transform-modules-systemjs": "^7.18.9", "@babel/plugin-transform-modules-umd": "^7.18.6", "@babel/plugin-transform-named-capturing-groups-regex": "^7.18.6", "@babel/plugin-transform-new-target": "^7.18.6", "@babel/plugin-transform-object-super": "^7.18.6", - "@babel/plugin-transform-parameters": "^7.18.6", + "@babel/plugin-transform-parameters": "^7.18.8", "@babel/plugin-transform-property-literals": "^7.18.6", "@babel/plugin-transform-regenerator": "^7.18.6", "@babel/plugin-transform-reserved-words": "^7.18.6", "@babel/plugin-transform-shorthand-properties": "^7.18.6", - "@babel/plugin-transform-spread": "^7.18.6", + "@babel/plugin-transform-spread": "^7.18.9", "@babel/plugin-transform-sticky-regex": "^7.18.6", - "@babel/plugin-transform-template-literals": "^7.18.6", - "@babel/plugin-transform-typeof-symbol": "^7.18.6", + "@babel/plugin-transform-template-literals": "^7.18.9", + "@babel/plugin-transform-typeof-symbol": "^7.18.9", "@babel/plugin-transform-unicode-escapes": "^7.18.6", "@babel/plugin-transform-unicode-regex": "^7.18.6", "@babel/preset-modules": "^0.1.5", - "@babel/types": "^7.18.6", + "@babel/types": "^7.18.9", "babel-plugin-polyfill-corejs2": "^0.3.1", "babel-plugin-polyfill-corejs3": "^0.5.2", "babel-plugin-polyfill-regenerator": "^0.3.1", @@ -1199,17 +1199,17 @@ } }, "@babel/runtime": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.18.6.tgz", - "integrity": "sha512-t9wi7/AW6XtKahAe20Yw0/mMljKq0B1r2fPdvaAdV/KPDZewFXdaaa6K7lxmZBZ8FBNpCiAT6iHPmd6QO9bKfQ==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.18.9.tgz", + "integrity": "sha512-lkqXDcvlFT5rvEjiu6+QYO+1GXrEHRo2LOtS7E4GtX5ESIZOgepqsZBVIj6Pv+a6zqsya9VCgiK1KAK4BvJDAw==", "requires": { "regenerator-runtime": "^0.13.4" } }, "@babel/runtime-corejs3": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/runtime-corejs3/-/runtime-corejs3-7.18.6.tgz", - "integrity": "sha512-cOu5wH2JFBgMjje+a+fz2JNIWU4GzYpl05oSob3UDvBEh6EuIn+TXFHMmBbhSb+k/4HMzgKCQfEEDArAWNF9Cw==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/runtime-corejs3/-/runtime-corejs3-7.18.9.tgz", + "integrity": "sha512-qZEWeccZCrHA2Au4/X05QW5CMdm4VjUDCrGq5gf1ZDcM4hRqreKrtwAn7yci9zfgAS9apvnsFXiGBHBAxZdK9A==", "requires": { "core-js-pure": "^3.20.2", "regenerator-runtime": "^0.13.4" @@ -1226,18 +1226,18 @@ } }, "@babel/traverse": { - "version": "7.18.8", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.18.8.tgz", - "integrity": "sha512-UNg/AcSySJYR/+mIcJQDCv00T+AqRO7j/ZEJLzpaYtgM48rMg5MnkJgyNqkzo88+p4tfRvZJCEiwwfG6h4jkRg==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.18.9.tgz", + "integrity": "sha512-LcPAnujXGwBgv3/WHv01pHtb2tihcyW1XuL9wd7jqh1Z8AQkTd+QVjMrMijrln0T7ED3UXLIy36P9Ao7W75rYg==", "requires": { "@babel/code-frame": "^7.18.6", - "@babel/generator": "^7.18.7", - "@babel/helper-environment-visitor": "^7.18.6", - "@babel/helper-function-name": "^7.18.6", + "@babel/generator": "^7.18.9", + "@babel/helper-environment-visitor": "^7.18.9", + "@babel/helper-function-name": "^7.18.9", "@babel/helper-hoist-variables": "^7.18.6", "@babel/helper-split-export-declaration": "^7.18.6", - "@babel/parser": "^7.18.8", - "@babel/types": "^7.18.8", + "@babel/parser": "^7.18.9", + "@babel/types": "^7.18.9", "debug": "^4.1.0", "globals": "^11.1.0" }, @@ -1253,9 +1253,9 @@ } }, "@babel/types": { - "version": "7.18.8", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.8.tgz", - "integrity": "sha512-qwpdsmraq0aJ3osLJRApsc2ouSJCdnMeZwB0DhbtHAtRpZNZCdlbRnHIgcRKzdE1g0iOGg644fzjOBcdOz9cPw==", + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.9.tgz", + "integrity": "sha512-WwMLAg2MvJmt/rKEVQBBhIVffMmnilX4oe0sRe7iPOHIGsqpruFHHdrfj4O1CMMtgMtCU4oPafZjDPCRgO57Wg==", "requires": { "@babel/helper-validator-identifier": "^7.18.6", "to-fast-properties": "^2.0.0" @@ -1317,239 +1317,14 @@ } }, "@gatsbyjs/parcel-namer-relative-to-cwd": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/@gatsbyjs/parcel-namer-relative-to-cwd/-/parcel-namer-relative-to-cwd-1.3.2.tgz", - "integrity": "sha512-jiYGiq8Zk21x2IIWbsLQ0GqgGJyKjj+/4jYwr5msD5ORB/JAZLk4IDrMKZ9rFXkNPq/bRV57ub0k/NvRMELfLQ==", + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/@gatsbyjs/parcel-namer-relative-to-cwd/-/parcel-namer-relative-to-cwd-1.4.0.tgz", + "integrity": "sha512-oXhiaPtYTGYqGZlazYRUabWVHWx5z6sAyBVLhUnpsKcBsK815cET+mjeWDKpmvJmFTKHC72Bvy1WIEnW3++YxA==", "requires": { "@babel/runtime": "^7.18.0", "@parcel/namer-default": "2.6.2", - "@parcel/plugin": "2.6.0", - "gatsby-core-utils": "^3.18.1" - }, - "dependencies": { - "@lmdb/lmdb-darwin-arm64": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-arm64/-/lmdb-darwin-arm64-2.5.2.tgz", - "integrity": "sha512-+F8ioQIUN68B4UFiIBYu0QQvgb9FmlKw2ctQMSBfW2QBrZIxz9vD9jCGqTCPqZBRbPHAS/vG1zSXnKqnS2ch/A==", - "optional": true - }, - "@lmdb/lmdb-darwin-x64": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-x64/-/lmdb-darwin-x64-2.5.2.tgz", - "integrity": "sha512-KvPH56KRLLx4KSfKBx0m1r7GGGUMXm0jrKmNE7plbHlesZMuPJICtn07HYgQhj1LNsK7Yqwuvnqh1QxhJnF1EA==", - "optional": true - }, - "@lmdb/lmdb-linux-arm": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm/-/lmdb-linux-arm-2.5.2.tgz", - "integrity": "sha512-5kQAP21hAkfW5Bl+e0P57dV4dGYnkNIpR7f/GAh6QHlgXx+vp/teVj4PGRZaKAvt0GX6++N6hF8NnGElLDuIDw==", - "optional": true - }, - "@lmdb/lmdb-linux-arm64": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm64/-/lmdb-linux-arm64-2.5.2.tgz", - "integrity": "sha512-aLl89VHL/wjhievEOlPocoefUyWdvzVrcQ/MHQYZm2JfV1jUsrbr/ZfkPPUFvZBf+VSE+Q0clWs9l29PCX1hTQ==", - "optional": true - }, - "@lmdb/lmdb-linux-x64": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-x64/-/lmdb-linux-x64-2.5.2.tgz", - "integrity": "sha512-xUdUfwDJLGjOUPH3BuPBt0NlIrR7f/QHKgu3GZIXswMMIihAekj2i97oI0iWG5Bok/b+OBjHPfa8IU9velnP/Q==", - "optional": true - }, - "@lmdb/lmdb-win32-x64": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-win32-x64/-/lmdb-win32-x64-2.5.2.tgz", - "integrity": "sha512-zrBczSbXKxEyK2ijtbRdICDygRqWSRPpZMN5dD1T8VMEW5RIhIbwFWw2phDRXuBQdVDpSjalCIUMWMV2h3JaZA==", - "optional": true - }, - "@parcel/cache": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/@parcel/cache/-/cache-2.6.2.tgz", - "integrity": "sha512-hhJ6AsEGybeQZd9c/GYqfcKTgZKQXu3Xih6TlnP3gdR3KZoJOnb40ovHD1yYg4COvfcXThKP1cVJ18J6rcv3IA==", - "requires": { - "@parcel/fs": "2.6.2", - "@parcel/logger": "2.6.2", - "@parcel/utils": "2.6.2", - "lmdb": "2.5.2" - } - }, - "@parcel/codeframe": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/@parcel/codeframe/-/codeframe-2.6.2.tgz", - "integrity": "sha512-oFlHr6HCaYYsB4SHkU+gn9DKtbzvv3/4NdwMX0/6NAKyYVI7inEsXyPGw2Bbd2ZCFatW9QJZUETF0etvh5AEfQ==", - "requires": { - "chalk": "^4.1.0" - } - }, - "@parcel/diagnostic": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/@parcel/diagnostic/-/diagnostic-2.6.2.tgz", - "integrity": "sha512-3ODSBkKVihENU763z1/1DhGAWFhYWRxOCOShC72KXp+GFnSgGiBsxclu8NBa/N948Rzp8lqQI8U1nLcKkh0O/w==", - "requires": { - "@mischnic/json-sourcemap": "^0.1.0", - "nullthrows": "^1.1.1" - } - }, - "@parcel/events": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/@parcel/events/-/events-2.6.2.tgz", - "integrity": "sha512-IaCjOeA5ercdFVi1EZOmUHhGfIysmCUgc2Th9hMugSFO0I3GzRsBcAdP6XPfWm+TV6sQ/qZRfdk/drUxoAupnw==" - }, - "@parcel/fs": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/@parcel/fs/-/fs-2.6.2.tgz", - "integrity": "sha512-mIhqdF3tjgeoIGqW7Nc/xfM2ClID7o8livwUe5lpQEP+ZaIBiMigXs6ckv3WToCACK+3uylrSD2A/HmlhrxMqQ==", - "requires": { - "@parcel/fs-search": "2.6.2", - "@parcel/types": "2.6.2", - "@parcel/utils": "2.6.2", - "@parcel/watcher": "^2.0.0", - "@parcel/workers": "2.6.2" - } - }, - "@parcel/fs-search": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/@parcel/fs-search/-/fs-search-2.6.2.tgz", - "integrity": "sha512-4STid1zqtGnmGjHD/2TG2g/zPDiCTtE3IAS24QYH3eiUAz2uoKGgEqd2tZbZ2yI96jtCuIhC1bzVu8Hbykls7w==", - "requires": { - "detect-libc": "^1.0.3" - } - }, - "@parcel/hash": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/@parcel/hash/-/hash-2.6.2.tgz", - "integrity": "sha512-tFB+cJU1Wqag6WyJgsmx3nx+xhmjcNZqtWh/MtK1lHNnZdDRk6bjr7SapnygBwruz+SmSt5bbdVThcpk2dRCcA==", - "requires": { - "detect-libc": "^1.0.3", - "xxhash-wasm": "^0.4.2" - } - }, - "@parcel/logger": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/@parcel/logger/-/logger-2.6.2.tgz", - "integrity": "sha512-Sz5YGCj1DbEiX0/G8Uw97LLZ0uEK+qtWcRAkHNpJpeMiSqDiRNevxXltz42EcLo+oCh4d4wyiVzwi9mNwzhS/Q==", - "requires": { - "@parcel/diagnostic": "2.6.2", - "@parcel/events": "2.6.2" - } - }, - "@parcel/markdown-ansi": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/@parcel/markdown-ansi/-/markdown-ansi-2.6.2.tgz", - "integrity": "sha512-N/h9J4eibhc+B+krzvPMzFUWL37GudBIZBa7XSLkcuH6MnYYfh6rrMvhIyyESwk6VkcZNVzAeZrGQqxEs0dHDQ==", - "requires": { - "chalk": "^4.1.0" - } - }, - "@parcel/namer-default": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/@parcel/namer-default/-/namer-default-2.6.2.tgz", - "integrity": "sha512-mp7bx/BQaIuohmZP0uE+gAmDBzzH0Yu8F4yCtE611lc6i0mou+nWRhzyKLNC/ieuI8DB3BFh2QQKeTxJn4W0qg==", - "requires": { - "@parcel/diagnostic": "2.6.2", - "@parcel/plugin": "2.6.2", - "nullthrows": "^1.1.1" - }, - "dependencies": { - "@parcel/plugin": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/@parcel/plugin/-/plugin-2.6.2.tgz", - "integrity": "sha512-wbbWsM23Pr+8xtLSvf+UopXdVYlpKCCx6PuuZaZcKo+9IcDCWoGXD4M8Kkz14qBmkFn5uM00mULUqmVdSibB2w==", - "requires": { - "@parcel/types": "2.6.2" - } - } - } - }, - "@parcel/package-manager": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/@parcel/package-manager/-/package-manager-2.6.2.tgz", - "integrity": "sha512-xGMqTgnwTE3rgzYwUZMKxR8fzmP5iSYz/gj2H8FR3pEmwh/8xCMtNjTSth+hPVGuqgRZ6JxwpfdY/fXdZ61ViQ==", - "requires": { - "@parcel/diagnostic": "2.6.2", - "@parcel/fs": "2.6.2", - "@parcel/logger": "2.6.2", - "@parcel/types": "2.6.2", - "@parcel/utils": "2.6.2", - "@parcel/workers": "2.6.2", - "semver": "^5.7.1" - } - }, - "@parcel/types": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/@parcel/types/-/types-2.6.2.tgz", - "integrity": "sha512-MV8BFpCIs2jMUvK2RHqzkoiuOQ//JIbrD1zocA2YRW3zuPL/iABvbAABJoXpoPCKikVWOoCWASgBfWQo26VvJQ==", - "requires": { - "@parcel/cache": "2.6.2", - "@parcel/diagnostic": "2.6.2", - "@parcel/fs": "2.6.2", - "@parcel/package-manager": "2.6.2", - "@parcel/source-map": "^2.0.0", - "@parcel/workers": "2.6.2", - "utility-types": "^3.10.0" - } - }, - "@parcel/utils": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/@parcel/utils/-/utils-2.6.2.tgz", - "integrity": "sha512-Ug7hpRxjgbY5AopW55nY7MmGMVmwmN+ihfCmxJkBUoESTG/3iq8uME7GjyOgW5DkQc2K7q62i8y8N0wCJT1u4Q==", - "requires": { - "@parcel/codeframe": "2.6.2", - "@parcel/diagnostic": "2.6.2", - "@parcel/hash": "2.6.2", - "@parcel/logger": "2.6.2", - "@parcel/markdown-ansi": "2.6.2", - "@parcel/source-map": "^2.0.0", - "chalk": "^4.1.0" - } - }, - "@parcel/workers": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/@parcel/workers/-/workers-2.6.2.tgz", - "integrity": "sha512-wBgUjJQm+lDd12fPRUmk09+ujTA9DgwPdqylSFK0OtI/yT6A+2kArUqjp8IwWo2tCJXoMzXBne2XQIWKqMiN4Q==", - "requires": { - "@parcel/diagnostic": "2.6.2", - "@parcel/logger": "2.6.2", - "@parcel/types": "2.6.2", - "@parcel/utils": "2.6.2", - "chrome-trace-event": "^1.0.2", - "nullthrows": "^1.1.1" - } - }, - "lmdb": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/lmdb/-/lmdb-2.5.2.tgz", - "integrity": "sha512-V5V5Xa2Hp9i2XsbDALkBTeHXnBXh/lEmk9p22zdr7jtuOIY9TGhjK6vAvTpOOx9IKU4hJkRWZxn/HsvR1ELLtA==", - "requires": { - "@lmdb/lmdb-darwin-arm64": "2.5.2", - "@lmdb/lmdb-darwin-x64": "2.5.2", - "@lmdb/lmdb-linux-arm": "2.5.2", - "@lmdb/lmdb-linux-arm64": "2.5.2", - "@lmdb/lmdb-linux-x64": "2.5.2", - "@lmdb/lmdb-win32-x64": "2.5.2", - "msgpackr": "^1.5.4", - "node-addon-api": "^4.3.0", - "node-gyp-build-optional-packages": "5.0.3", - "ordered-binary": "^1.2.4", - "weak-lru-cache": "^1.2.2" - } - }, - "node-addon-api": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-4.3.0.tgz", - "integrity": "sha512-73sE9+3UaLYYFmDsFZnqCInzPyh3MqIwZO9cw58yIqAZhONrrabrYyYe3TuIqtIiOuTXVhsGau8hcrhhwSsDIQ==" - }, - "node-gyp-build-optional-packages": { - "version": "5.0.3", - "resolved": "https://registry.npmjs.org/node-gyp-build-optional-packages/-/node-gyp-build-optional-packages-5.0.3.tgz", - "integrity": "sha512-k75jcVzk5wnnc/FMxsf4udAoTEUv2jY3ycfdSd3yWu6Cnd1oee6/CfZJApyscA4FJOmdoixWwiwOyf16RzD5JA==" - }, - "semver": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", - "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==" - } + "@parcel/plugin": "2.6.2", + "gatsby-core-utils": "^3.19.0" } }, "@gatsbyjs/potrace": { @@ -2450,39 +2225,39 @@ } }, "@lmdb/lmdb-darwin-arm64": { - "version": "2.5.3", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-arm64/-/lmdb-darwin-arm64-2.5.3.tgz", - "integrity": "sha512-RXwGZ/0eCqtCY8FLTM/koR60w+MXyvBUpToXiIyjOcBnC81tAlTUHrRUavCEWPI9zc9VgvpK3+cbumPyR8BSuA==", + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-arm64/-/lmdb-darwin-arm64-2.5.2.tgz", + "integrity": "sha512-+F8ioQIUN68B4UFiIBYu0QQvgb9FmlKw2ctQMSBfW2QBrZIxz9vD9jCGqTCPqZBRbPHAS/vG1zSXnKqnS2ch/A==", "optional": true }, "@lmdb/lmdb-darwin-x64": { - "version": "2.5.3", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-x64/-/lmdb-darwin-x64-2.5.3.tgz", - "integrity": "sha512-337dNzh5yCdNCTk8kPfoU7jR3otibSlPDGW0vKZT97rKnQMb9tNdto3RtWoGPsQ8hKmlRZpojOJtmwjncq1MoA==", + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-x64/-/lmdb-darwin-x64-2.5.2.tgz", + "integrity": "sha512-KvPH56KRLLx4KSfKBx0m1r7GGGUMXm0jrKmNE7plbHlesZMuPJICtn07HYgQhj1LNsK7Yqwuvnqh1QxhJnF1EA==", "optional": true }, "@lmdb/lmdb-linux-arm": { - "version": "2.5.3", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm/-/lmdb-linux-arm-2.5.3.tgz", - "integrity": "sha512-mU2HFJDGwECkoD9dHQEfeTG5mp8hNS2BCfwoiOpVPMeapjYpQz9Uw3FkUjRZ4dGHWKbin40oWHuL0bk2bCx+Sg==", + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm/-/lmdb-linux-arm-2.5.2.tgz", + "integrity": "sha512-5kQAP21hAkfW5Bl+e0P57dV4dGYnkNIpR7f/GAh6QHlgXx+vp/teVj4PGRZaKAvt0GX6++N6hF8NnGElLDuIDw==", "optional": true }, "@lmdb/lmdb-linux-arm64": { - "version": "2.5.3", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm64/-/lmdb-linux-arm64-2.5.3.tgz", - "integrity": "sha512-VJw60Mdgb4n+L0fO1PqfB0C7TyEQolJAC8qpqvG3JoQwvyOv6LH7Ib/WE3wxEW9nuHmVz9jkK7lk5HfWWgoO1Q==", + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm64/-/lmdb-linux-arm64-2.5.2.tgz", + "integrity": "sha512-aLl89VHL/wjhievEOlPocoefUyWdvzVrcQ/MHQYZm2JfV1jUsrbr/ZfkPPUFvZBf+VSE+Q0clWs9l29PCX1hTQ==", "optional": true }, "@lmdb/lmdb-linux-x64": { - "version": "2.5.3", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-x64/-/lmdb-linux-x64-2.5.3.tgz", - "integrity": "sha512-qaReO5aV8griBDsBr8uBF/faO3ieGjY1RY4p8JvTL6Mu1ylLrTVvOONqKFlNaCwrmUjWw5jnf7VafxDAeQHTow==", + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-x64/-/lmdb-linux-x64-2.5.2.tgz", + "integrity": "sha512-xUdUfwDJLGjOUPH3BuPBt0NlIrR7f/QHKgu3GZIXswMMIihAekj2i97oI0iWG5Bok/b+OBjHPfa8IU9velnP/Q==", "optional": true }, "@lmdb/lmdb-win32-x64": { - "version": "2.5.3", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-win32-x64/-/lmdb-win32-x64-2.5.3.tgz", - "integrity": "sha512-cK+Elf3RjEzrm3SerAhrFWL5oQAsZSJ/LmjL1joIpTfEP1etJJ9CTRvdaV6XLYAxaEkfdhk/9hOvHLbR9yIhCA==", + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-win32-x64/-/lmdb-win32-x64-2.5.2.tgz", + "integrity": "sha512-zrBczSbXKxEyK2ijtbRdICDygRqWSRPpZMN5dD1T8VMEW5RIhIbwFWw2phDRXuBQdVDpSjalCIUMWMV2h3JaZA==", "optional": true }, "@microsoft/fetch-event-source": { @@ -2560,43 +2335,42 @@ } }, "@parcel/bundler-default": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/bundler-default/-/bundler-default-2.6.0.tgz", - "integrity": "sha512-AplEdGm/odV7yGmoeOnglxnY31WlNB5EqGLFGxkgs7uwDaTWoTX/9SWPG6xfvirhjDpms8sLSiVuBdFRCCLtNA==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/bundler-default/-/bundler-default-2.6.2.tgz", + "integrity": "sha512-XIa3had/MIaTGgRFkHApXwytYs77k4geaNcmlb6nzmAABcYjW1CLYh83Zt0AbzLFsDT9ZcRY3u2UjhNf6efSaw==", "requires": { - "@parcel/diagnostic": "2.6.0", - "@parcel/hash": "2.6.0", - "@parcel/plugin": "2.6.0", - "@parcel/utils": "2.6.0", + "@parcel/diagnostic": "2.6.2", + "@parcel/hash": "2.6.2", + "@parcel/plugin": "2.6.2", + "@parcel/utils": "2.6.2", "nullthrows": "^1.1.1" } }, "@parcel/cache": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/cache/-/cache-2.6.0.tgz", - "integrity": "sha512-4vbD5uSuf+kRnrFesKhpn0AKnOw8u2UlvCyrplYmp1g9bNAkIooC/nDGdmkb/9SviPEbni9PEanQEHDU2+slpA==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/cache/-/cache-2.6.2.tgz", + "integrity": "sha512-hhJ6AsEGybeQZd9c/GYqfcKTgZKQXu3Xih6TlnP3gdR3KZoJOnb40ovHD1yYg4COvfcXThKP1cVJ18J6rcv3IA==", "requires": { - "@parcel/fs": "2.6.0", - "@parcel/logger": "2.6.0", - "@parcel/utils": "2.6.0", - "lmdb": "2.3.10" + "@parcel/fs": "2.6.2", + "@parcel/logger": "2.6.2", + "@parcel/utils": "2.6.2", + "lmdb": "2.5.2" }, "dependencies": { "lmdb": { - "version": "2.3.10", - "resolved": "https://registry.npmjs.org/lmdb/-/lmdb-2.3.10.tgz", - "integrity": "sha512-GtH+nStn9V59CfYeQ5ddx6YTfuFCmu86UJojIjJAweG+/Fm0PDknuk3ovgYDtY/foMeMdZa8/P7oSljW/d5UPw==", - "requires": { - "lmdb-darwin-arm64": "2.3.10", - "lmdb-darwin-x64": "2.3.10", - "lmdb-linux-arm": "2.3.10", - "lmdb-linux-arm64": "2.3.10", - "lmdb-linux-x64": "2.3.10", - "lmdb-win32-x64": "2.3.10", + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/lmdb/-/lmdb-2.5.2.tgz", + "integrity": "sha512-V5V5Xa2Hp9i2XsbDALkBTeHXnBXh/lEmk9p22zdr7jtuOIY9TGhjK6vAvTpOOx9IKU4hJkRWZxn/HsvR1ELLtA==", + "requires": { + "@lmdb/lmdb-darwin-arm64": "2.5.2", + "@lmdb/lmdb-darwin-x64": "2.5.2", + "@lmdb/lmdb-linux-arm": "2.5.2", + "@lmdb/lmdb-linux-arm64": "2.5.2", + "@lmdb/lmdb-linux-x64": "2.5.2", + "@lmdb/lmdb-win32-x64": "2.5.2", "msgpackr": "^1.5.4", - "nan": "^2.14.2", "node-addon-api": "^4.3.0", - "node-gyp-build-optional-packages": "^4.3.2", + "node-gyp-build-optional-packages": "5.0.3", "ordered-binary": "^1.2.4", "weak-lru-cache": "^1.2.2" } @@ -2609,40 +2383,40 @@ } }, "@parcel/codeframe": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/codeframe/-/codeframe-2.6.0.tgz", - "integrity": "sha512-yXXxrO9yyedHKpTwC+Af0+vPmQm+A9xeEhkt4f0yVg1n4t4yUIxYlTedzbM8ygZEEBtkXU9jJ+PkgXbfMf0dqw==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/codeframe/-/codeframe-2.6.2.tgz", + "integrity": "sha512-oFlHr6HCaYYsB4SHkU+gn9DKtbzvv3/4NdwMX0/6NAKyYVI7inEsXyPGw2Bbd2ZCFatW9QJZUETF0etvh5AEfQ==", "requires": { "chalk": "^4.1.0" } }, "@parcel/compressor-raw": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/compressor-raw/-/compressor-raw-2.6.0.tgz", - "integrity": "sha512-rtMU2mGl88bic6Xbq1u5L49bMK4s5185b0k7h3JRdS6/0rR+Xp4k/o9Wog+hHjK/s82z1eF9WmET779ZpIDIQQ==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/compressor-raw/-/compressor-raw-2.6.2.tgz", + "integrity": "sha512-P3c8jjV5HVs+fNDjhvq7PtHXNm687nit1iwTS5VAt+ScXKhKBhoIJ56q+9opcw0jnXVjAAgZqcRZ50oAJBGdKw==", "requires": { - "@parcel/plugin": "2.6.0" + "@parcel/plugin": "2.6.2" } }, "@parcel/core": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/core/-/core-2.6.0.tgz", - "integrity": "sha512-8OOWbPuxpFydpwNyKoz6d3e3O4DmxNYmMw4DXwrPSj/jyg7oa+SDtMT0/VXEhujE0HYkQPCHt4npRajkSuf99A==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/core/-/core-2.6.2.tgz", + "integrity": "sha512-JlKS3Ux0ngmdooSBbzQLShHJdsapF9E7TGMo1hFaHRquZip/DaqzvysYrgMJlDuCoLArciq5ei7ZKzGeK9zexA==", "requires": { "@mischnic/json-sourcemap": "^0.1.0", - "@parcel/cache": "2.6.0", - "@parcel/diagnostic": "2.6.0", - "@parcel/events": "2.6.0", - "@parcel/fs": "2.6.0", - "@parcel/graph": "2.6.0", - "@parcel/hash": "2.6.0", - "@parcel/logger": "2.6.0", - "@parcel/package-manager": "2.6.0", - "@parcel/plugin": "2.6.0", + "@parcel/cache": "2.6.2", + "@parcel/diagnostic": "2.6.2", + "@parcel/events": "2.6.2", + "@parcel/fs": "2.6.2", + "@parcel/graph": "2.6.2", + "@parcel/hash": "2.6.2", + "@parcel/logger": "2.6.2", + "@parcel/package-manager": "2.6.2", + "@parcel/plugin": "2.6.2", "@parcel/source-map": "^2.0.0", - "@parcel/types": "2.6.0", - "@parcel/utils": "2.6.0", - "@parcel/workers": "2.6.0", + "@parcel/types": "2.6.2", + "@parcel/utils": "2.6.2", + "@parcel/workers": "2.6.2", "abortcontroller-polyfill": "^1.1.9", "base-x": "^3.0.8", "browserslist": "^4.6.6", @@ -2668,118 +2442,126 @@ } }, "@parcel/diagnostic": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/diagnostic/-/diagnostic-2.6.0.tgz", - "integrity": "sha512-+p8gC2FKxSI2veD7SoaNlP572v4kw+nafCQEPDtJuzYYRqywYUGncch25dkpgNApB4W4cXVkZu3ZbtIpCAmjQQ==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/diagnostic/-/diagnostic-2.6.2.tgz", + "integrity": "sha512-3ODSBkKVihENU763z1/1DhGAWFhYWRxOCOShC72KXp+GFnSgGiBsxclu8NBa/N948Rzp8lqQI8U1nLcKkh0O/w==", "requires": { "@mischnic/json-sourcemap": "^0.1.0", "nullthrows": "^1.1.1" } }, "@parcel/events": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/events/-/events-2.6.0.tgz", - "integrity": "sha512-2WaKtBs4iYwS88j4zRdyTJTgh8iuY4E32FMmjzzbheqETs6I05gWuPReGukJYxk8vc0Ir7tbzp12oAfpgo0Y+g==" + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/events/-/events-2.6.2.tgz", + "integrity": "sha512-IaCjOeA5ercdFVi1EZOmUHhGfIysmCUgc2Th9hMugSFO0I3GzRsBcAdP6XPfWm+TV6sQ/qZRfdk/drUxoAupnw==" }, "@parcel/fs": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/fs/-/fs-2.6.0.tgz", - "integrity": "sha512-6vxtx5Zy6MvDvH1EPx9JxjKGF03bR7VE1dUf4HLeX2D8YmpL5hkHJnlRCFdcH08rzOVwaJLzg1QNtblWJXQ9CA==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/fs/-/fs-2.6.2.tgz", + "integrity": "sha512-mIhqdF3tjgeoIGqW7Nc/xfM2ClID7o8livwUe5lpQEP+ZaIBiMigXs6ckv3WToCACK+3uylrSD2A/HmlhrxMqQ==", "requires": { - "@parcel/fs-search": "2.6.0", - "@parcel/types": "2.6.0", - "@parcel/utils": "2.6.0", + "@parcel/fs-search": "2.6.2", + "@parcel/types": "2.6.2", + "@parcel/utils": "2.6.2", "@parcel/watcher": "^2.0.0", - "@parcel/workers": "2.6.0" + "@parcel/workers": "2.6.2" } }, "@parcel/fs-search": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/fs-search/-/fs-search-2.6.0.tgz", - "integrity": "sha512-1nXzM3H/cA4kzLKvDBvwmNisKCdRqlgkLXh+OR1Zu28Kn4W34KuJMcHWW8cC+WIuuKqDh5oo2WPsC5y65GXBKQ==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/fs-search/-/fs-search-2.6.2.tgz", + "integrity": "sha512-4STid1zqtGnmGjHD/2TG2g/zPDiCTtE3IAS24QYH3eiUAz2uoKGgEqd2tZbZ2yI96jtCuIhC1bzVu8Hbykls7w==", "requires": { "detect-libc": "^1.0.3" } }, "@parcel/graph": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/graph/-/graph-2.6.0.tgz", - "integrity": "sha512-rxrAzWm6rwbCRPbu0Z+zwMscpG8omffODniVWPlX2G0jgQGpjKsutBQ6RMfFIcfaQ4MzL3pIQOTf8bkjQOPsbg==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/graph/-/graph-2.6.2.tgz", + "integrity": "sha512-DPH4G/RBFJWayIN2fnhDXqhUw75n7k15YsGzdDKiXuwwz4wMOjoL4cyrI6zOf1SIyh3guRmeTYJ4jjPzwrLYww==", "requires": { - "@parcel/utils": "2.6.0", + "@parcel/utils": "2.6.2", "nullthrows": "^1.1.1" } }, "@parcel/hash": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/hash/-/hash-2.6.0.tgz", - "integrity": "sha512-YugWqhLxqK80Lo++3B3Kr5UPCHOdS8iI2zJ1jkzUeH9v6WUzbwWOnmPf6lN2S5m1BrIFFJd8Jc+CbEXWi8zoJA==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/hash/-/hash-2.6.2.tgz", + "integrity": "sha512-tFB+cJU1Wqag6WyJgsmx3nx+xhmjcNZqtWh/MtK1lHNnZdDRk6bjr7SapnygBwruz+SmSt5bbdVThcpk2dRCcA==", "requires": { "detect-libc": "^1.0.3", "xxhash-wasm": "^0.4.2" } }, "@parcel/logger": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/logger/-/logger-2.6.0.tgz", - "integrity": "sha512-J1/7kPfSGBvMKSZdi0WCNuN0fIeiWxifnDGn7W/K8KhD422YwFJA8N046ps8nkDOPIXf1osnIECNp4GIR9oSYw==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/logger/-/logger-2.6.2.tgz", + "integrity": "sha512-Sz5YGCj1DbEiX0/G8Uw97LLZ0uEK+qtWcRAkHNpJpeMiSqDiRNevxXltz42EcLo+oCh4d4wyiVzwi9mNwzhS/Q==", "requires": { - "@parcel/diagnostic": "2.6.0", - "@parcel/events": "2.6.0" + "@parcel/diagnostic": "2.6.2", + "@parcel/events": "2.6.2" } }, "@parcel/markdown-ansi": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/markdown-ansi/-/markdown-ansi-2.6.0.tgz", - "integrity": "sha512-fyjkrJQQSfKTUFTTasdZ6WrAkDoQ2+DYDjj+3p+RncYyrIa9zArKx4IiRiipsvNdtMvP0/hTdK8F3BOJ3KSU/g==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/markdown-ansi/-/markdown-ansi-2.6.2.tgz", + "integrity": "sha512-N/h9J4eibhc+B+krzvPMzFUWL37GudBIZBa7XSLkcuH6MnYYfh6rrMvhIyyESwk6VkcZNVzAeZrGQqxEs0dHDQ==", "requires": { "chalk": "^4.1.0" } }, "@parcel/namer-default": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/namer-default/-/namer-default-2.6.0.tgz", - "integrity": "sha512-r8O12r7ozJBctnFxVdXbf/fK97GIdNj3hiiUNWlXEmED9sw6ZPcChaLcfot0/443g8i87JDmSTKJ8js2tuz5XA==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/namer-default/-/namer-default-2.6.2.tgz", + "integrity": "sha512-mp7bx/BQaIuohmZP0uE+gAmDBzzH0Yu8F4yCtE611lc6i0mou+nWRhzyKLNC/ieuI8DB3BFh2QQKeTxJn4W0qg==", "requires": { - "@parcel/diagnostic": "2.6.0", - "@parcel/plugin": "2.6.0", + "@parcel/diagnostic": "2.6.2", + "@parcel/plugin": "2.6.2", "nullthrows": "^1.1.1" } }, "@parcel/node-resolver-core": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/node-resolver-core/-/node-resolver-core-2.6.0.tgz", - "integrity": "sha512-AJDj5DZbB58plv0li8bdVSD+zpnkHE36Om3TYyNn1jgXXwgBM64Er/9p8yQn356jBqTQMh7zlJqvbdIyOiMeMg==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/node-resolver-core/-/node-resolver-core-2.6.2.tgz", + "integrity": "sha512-4b2L5QRYlTybvv3+TIRtwg4PPJXy+cRShCBa8eu1K0Fj297Afe8MOZrcVV+RIr2KPMIRXcIJoqDmOhyci/DynA==", "requires": { - "@parcel/diagnostic": "2.6.0", - "@parcel/utils": "2.6.0", - "nullthrows": "^1.1.1" + "@parcel/diagnostic": "2.6.2", + "@parcel/utils": "2.6.2", + "nullthrows": "^1.1.1", + "semver": "^5.7.1" + }, + "dependencies": { + "semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==" + } } }, "@parcel/optimizer-terser": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/optimizer-terser/-/optimizer-terser-2.6.0.tgz", - "integrity": "sha512-oezRt6Lz/QqcVDXyMfFjzQc7n0ThJowLJ4Lyhu8rMh0ZJYzc4UCFCw/19d4nRnzE+Qg0vj3mQCpdkA9/64E44g==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/optimizer-terser/-/optimizer-terser-2.6.2.tgz", + "integrity": "sha512-ZSEVQ3G3zOiVPeHvH+BrHegZybrQj9kWQAaAA92leSqbvf6UaX4xqXbGRg2OttNFtbGYBzIl28Zm4t2SLeUIuA==", "requires": { - "@parcel/diagnostic": "2.6.0", - "@parcel/plugin": "2.6.0", + "@parcel/diagnostic": "2.6.2", + "@parcel/plugin": "2.6.2", "@parcel/source-map": "^2.0.0", - "@parcel/utils": "2.6.0", + "@parcel/utils": "2.6.2", "nullthrows": "^1.1.1", "terser": "^5.2.0" } }, "@parcel/package-manager": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/package-manager/-/package-manager-2.6.0.tgz", - "integrity": "sha512-AqFfdkbOw51q/3ia2mIsFTmrpYEyUb3k+2uYC5GsLMz3go6OGn7/Crz0lZLSclv5EtwpRg3TWr9yL7RekVN/Uw==", - "requires": { - "@parcel/diagnostic": "2.6.0", - "@parcel/fs": "2.6.0", - "@parcel/logger": "2.6.0", - "@parcel/types": "2.6.0", - "@parcel/utils": "2.6.0", - "@parcel/workers": "2.6.0", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/package-manager/-/package-manager-2.6.2.tgz", + "integrity": "sha512-xGMqTgnwTE3rgzYwUZMKxR8fzmP5iSYz/gj2H8FR3pEmwh/8xCMtNjTSth+hPVGuqgRZ6JxwpfdY/fXdZ61ViQ==", + "requires": { + "@parcel/diagnostic": "2.6.2", + "@parcel/fs": "2.6.2", + "@parcel/logger": "2.6.2", + "@parcel/types": "2.6.2", + "@parcel/utils": "2.6.2", + "@parcel/workers": "2.6.2", "semver": "^5.7.1" }, "dependencies": { @@ -2791,15 +2573,15 @@ } }, "@parcel/packager-js": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/packager-js/-/packager-js-2.6.0.tgz", - "integrity": "sha512-Uz3pqIFchFfKszWnNGDgIwM1uwHHJp7Dts6VzS9lf/2RbRgZT0fmce+NPgnVO5MMKBHzdvm32ShT6gFAABF5Vw==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/packager-js/-/packager-js-2.6.2.tgz", + "integrity": "sha512-fm5rKWtaExR0W+UEKWivXNPysRFxuBCdskdxDByb1J1JeGMvp7dJElbi8oXDAQM4MnM5EyG7cg47SlMZNTLm4A==", "requires": { - "@parcel/diagnostic": "2.6.0", - "@parcel/hash": "2.6.0", - "@parcel/plugin": "2.6.0", + "@parcel/diagnostic": "2.6.2", + "@parcel/hash": "2.6.2", + "@parcel/plugin": "2.6.2", "@parcel/source-map": "^2.0.0", - "@parcel/utils": "2.6.0", + "@parcel/utils": "2.6.2", "globals": "^13.2.0", "nullthrows": "^1.1.1" }, @@ -2815,76 +2597,76 @@ } }, "@parcel/packager-raw": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/packager-raw/-/packager-raw-2.6.0.tgz", - "integrity": "sha512-ktT6Qc/GgCq8H1+6y+AXufVzQj1s6KRoKf83qswCD0iY3MwCbJoEfc3IsB4K64FpHIL5Eu0z54IId+INvGbOYA==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/packager-raw/-/packager-raw-2.6.2.tgz", + "integrity": "sha512-Rl3ZkMtMjb+LEvRowijDD8fibUAS6rWK0/vZQMk9cDNYCP2gCpZayLk0HZIGxneeTbosf/0sbngHq4VeRQOnQA==", "requires": { - "@parcel/plugin": "2.6.0" + "@parcel/plugin": "2.6.2" } }, "@parcel/plugin": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/plugin/-/plugin-2.6.0.tgz", - "integrity": "sha512-LzOaiK8R6eFEoov1cb3/W+o0XvXdI/VbDhMDl0L0II+/56M0UeayYtFP5QGTDn/fZqVlYfzPCtt3EMwdG7/dow==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/plugin/-/plugin-2.6.2.tgz", + "integrity": "sha512-wbbWsM23Pr+8xtLSvf+UopXdVYlpKCCx6PuuZaZcKo+9IcDCWoGXD4M8Kkz14qBmkFn5uM00mULUqmVdSibB2w==", "requires": { - "@parcel/types": "2.6.0" + "@parcel/types": "2.6.2" } }, "@parcel/reporter-dev-server": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/reporter-dev-server/-/reporter-dev-server-2.6.0.tgz", - "integrity": "sha512-VvygsCA+uzWyijIV8zqU1gFyhAWknuaY4KIWhV4kCT8afRJwsLSwt/tpdaKDPuPU45h3tTsUdXH1wjaIk+dGeQ==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/reporter-dev-server/-/reporter-dev-server-2.6.2.tgz", + "integrity": "sha512-5QtL3ETMFL161jehlIK6rjBM+Pqk5cMhr60s9yLYqE1GY4M4gMj+Act+FXViyM6gmMA38cPxDvUsxTKBYXpFCw==", "requires": { - "@parcel/plugin": "2.6.0", - "@parcel/utils": "2.6.0" + "@parcel/plugin": "2.6.2", + "@parcel/utils": "2.6.2" } }, "@parcel/resolver-default": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/resolver-default/-/resolver-default-2.6.0.tgz", - "integrity": "sha512-ATk9wXvy5GOHAqyHbnCnU11fUPTtf8dLjpgVqL5XylwugZnyBXbynoTWX4w8h6mffkVtdfmzTJx/o4Lresz9sA==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/resolver-default/-/resolver-default-2.6.2.tgz", + "integrity": "sha512-Lo5sWb5QkjWvdBr+TdmAF6Mszb/sMldBBatc1osQTkHXCy679VMH+lfyiWxHbwK+F1pmdMeBJpYcMxvrgT8EsA==", "requires": { - "@parcel/node-resolver-core": "2.6.0", - "@parcel/plugin": "2.6.0" + "@parcel/node-resolver-core": "2.6.2", + "@parcel/plugin": "2.6.2" } }, "@parcel/runtime-browser-hmr": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/runtime-browser-hmr/-/runtime-browser-hmr-2.6.0.tgz", - "integrity": "sha512-90xvv/10cFML5dAhClBEJZ/ExiBQVPqQsZcvRmVZmc5mpZVJMKattWCQrd7pAf7FDYl4JAcvsK3DTwvRT/oLNA==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/runtime-browser-hmr/-/runtime-browser-hmr-2.6.2.tgz", + "integrity": "sha512-M4X0+7dyfdI6smwGUGjGXb8Ns3HX7ZrTemyq4Gc7zp7P/5gWjR8i9eISz46sXmF9bf01a/4dKZpoCC9un1pH1g==", "requires": { - "@parcel/plugin": "2.6.0", - "@parcel/utils": "2.6.0" + "@parcel/plugin": "2.6.2", + "@parcel/utils": "2.6.2" } }, "@parcel/runtime-js": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/runtime-js/-/runtime-js-2.6.0.tgz", - "integrity": "sha512-R4tJAIT/SX7VBQ+f7WmeekREQzzLsmgP1j486uKhQNyYrpvsN0HnRbg5aqvZjEjkEmSeJR0mOlWtMK5/m+0yTA==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/runtime-js/-/runtime-js-2.6.2.tgz", + "integrity": "sha512-0S3JFwgvs6FmEx2dHta9R0Sfu8vCnFAm4i7Y4efGHtAcTrF2CHjyiz4/hG+RQGJ70eoWW463Q+8qt6EKbkaOBQ==", "requires": { - "@parcel/plugin": "2.6.0", - "@parcel/utils": "2.6.0", + "@parcel/plugin": "2.6.2", + "@parcel/utils": "2.6.2", "nullthrows": "^1.1.1" } }, "@parcel/runtime-react-refresh": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/runtime-react-refresh/-/runtime-react-refresh-2.6.0.tgz", - "integrity": "sha512-2sRd13gc2EbMV/O5n2NPVGGhKBasb1fDTXGEY8y7qi9xDKc+ewok/D83T+w243FhCPS9Pf3ur5GkbPlrJGcenQ==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/runtime-react-refresh/-/runtime-react-refresh-2.6.2.tgz", + "integrity": "sha512-DJTm5D/tUAGZm0o3ndDOPbKwdYrobuvm4jvkPq31LdEUqVvyuzBAMlqQFHc1yJEJDRRWOIQwQP9Y0NQbJmXFfg==", "requires": { - "@parcel/plugin": "2.6.0", - "@parcel/utils": "2.6.0", + "@parcel/plugin": "2.6.2", + "@parcel/utils": "2.6.2", "react-error-overlay": "6.0.9", "react-refresh": "^0.9.0" } }, "@parcel/runtime-service-worker": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/runtime-service-worker/-/runtime-service-worker-2.6.0.tgz", - "integrity": "sha512-nVlknGw5J5Bkd1Wr1TbyWHhUd9CmVVebaRg/lpfVKYhAuE/2r+3N0+J8qbEIgtTRcHaSV7wTNpg4weSWq46VeA==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/runtime-service-worker/-/runtime-service-worker-2.6.2.tgz", + "integrity": "sha512-9jV+RwVEeDUI5+eLy8j1tapTNoHHGOY2+JUprcObQkQ8fux7KltQBJWFhpkUdGtz5LTCNXtj9tdycFtS5lmSzg==", "requires": { - "@parcel/plugin": "2.6.0", - "@parcel/utils": "2.6.0", + "@parcel/plugin": "2.6.2", + "@parcel/utils": "2.6.2", "nullthrows": "^1.1.1" } }, @@ -2897,16 +2679,16 @@ } }, "@parcel/transformer-js": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/transformer-js/-/transformer-js-2.6.0.tgz", - "integrity": "sha512-4v2r3EVdMKowBziVBW9HZqvAv88HaeiezkWyMX4wAfplo9jBtWEp99KEQINzSEdbXROR81M9oJjlGF5+yoVr/w==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/transformer-js/-/transformer-js-2.6.2.tgz", + "integrity": "sha512-uhXAMTjE/Q61amflV8qVpb73mj+mIdXIMH0cSks1/gDIAxcgIvWvrE14P4TvY6zJ1q1iRJRIRUN6cFSXqjjLSA==", "requires": { - "@parcel/diagnostic": "2.6.0", - "@parcel/plugin": "2.6.0", + "@parcel/diagnostic": "2.6.2", + "@parcel/plugin": "2.6.2", "@parcel/source-map": "^2.0.0", - "@parcel/utils": "2.6.0", - "@parcel/workers": "2.6.0", - "@swc/helpers": "^0.3.15", + "@parcel/utils": "2.6.2", + "@parcel/workers": "2.6.2", + "@swc/helpers": "^0.4.2", "browserslist": "^4.6.6", "detect-libc": "^1.0.3", "nullthrows": "^1.1.1", @@ -2922,56 +2704,56 @@ } }, "@parcel/transformer-json": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/transformer-json/-/transformer-json-2.6.0.tgz", - "integrity": "sha512-zb+TQAdHWdXijKcFhLe+5KN1O0IzXwW1gJhPr8DJEA3qhPaCsncsw5RCVjQlP3a7NXr1mMm1eMtO6bhIMqbXeA==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/transformer-json/-/transformer-json-2.6.2.tgz", + "integrity": "sha512-QGcIIvbPF/u10ihYvQhxXqb2QMXWSzcBxJrOSIXIl74TUGrWX05D5LmjDA/rzm/n/kvRnBkFNP60R/smYb8x+Q==", "requires": { - "@parcel/plugin": "2.6.0", + "@parcel/plugin": "2.6.2", "json5": "^2.2.0" } }, "@parcel/transformer-raw": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/transformer-raw/-/transformer-raw-2.6.0.tgz", - "integrity": "sha512-QDirlWCS/qy0DQ3WvDIAnFP52n1TJW/uWH+4PGMNnX4/M3/2UchY8xp9CN0tx4NQ4g09S8o3gLlHvNxQqZxFrQ==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/transformer-raw/-/transformer-raw-2.6.2.tgz", + "integrity": "sha512-CsofYq5g9Zj/FNmhya2R7Xp3WHlzz34mEdN69bds3azRYHCrl/TS33xXcp/9J+74SEIY1Ufh552o1cM3fnSrDQ==", "requires": { - "@parcel/plugin": "2.6.0" + "@parcel/plugin": "2.6.2" } }, "@parcel/transformer-react-refresh-wrap": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/transformer-react-refresh-wrap/-/transformer-react-refresh-wrap-2.6.0.tgz", - "integrity": "sha512-G34orfvLDUTumuerqNmA8T8NUHk+R0jwUjbVPO7gpB6VCVQ5ocTABdE9vN9Uu/cUsHij40TUFwqK4R9TFEBIEQ==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/transformer-react-refresh-wrap/-/transformer-react-refresh-wrap-2.6.2.tgz", + "integrity": "sha512-7EE68ebISz+oAHm64ZJbz6uJQT4aOoB8QiK3PvuY6+RsP7aK4/FEHGM1afW49KrZbP4lWjloEkcJm/88DfBiGw==", "requires": { - "@parcel/plugin": "2.6.0", - "@parcel/utils": "2.6.0", + "@parcel/plugin": "2.6.2", + "@parcel/utils": "2.6.2", "react-refresh": "^0.9.0" } }, "@parcel/types": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/types/-/types-2.6.0.tgz", - "integrity": "sha512-lAMYvOBfNEJMsPJ+plbB50305o0TwNrY1xX5RRIWBqwOa6bYmbW1ZljUk1tQvnkpIE4eAHQwnPR5Z2XWg18wGQ==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/types/-/types-2.6.2.tgz", + "integrity": "sha512-MV8BFpCIs2jMUvK2RHqzkoiuOQ//JIbrD1zocA2YRW3zuPL/iABvbAABJoXpoPCKikVWOoCWASgBfWQo26VvJQ==", "requires": { - "@parcel/cache": "2.6.0", - "@parcel/diagnostic": "2.6.0", - "@parcel/fs": "2.6.0", - "@parcel/package-manager": "2.6.0", + "@parcel/cache": "2.6.2", + "@parcel/diagnostic": "2.6.2", + "@parcel/fs": "2.6.2", + "@parcel/package-manager": "2.6.2", "@parcel/source-map": "^2.0.0", - "@parcel/workers": "2.6.0", + "@parcel/workers": "2.6.2", "utility-types": "^3.10.0" } }, "@parcel/utils": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/utils/-/utils-2.6.0.tgz", - "integrity": "sha512-ElXz+QHtT1JQIucbQJBk7SzAGoOlBp4yodEQVvTKS7GA+hEGrSP/cmibl6qm29Rjtd0zgQsdd+2XmP3xvP2gQQ==", - "requires": { - "@parcel/codeframe": "2.6.0", - "@parcel/diagnostic": "2.6.0", - "@parcel/hash": "2.6.0", - "@parcel/logger": "2.6.0", - "@parcel/markdown-ansi": "2.6.0", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/utils/-/utils-2.6.2.tgz", + "integrity": "sha512-Ug7hpRxjgbY5AopW55nY7MmGMVmwmN+ihfCmxJkBUoESTG/3iq8uME7GjyOgW5DkQc2K7q62i8y8N0wCJT1u4Q==", + "requires": { + "@parcel/codeframe": "2.6.2", + "@parcel/diagnostic": "2.6.2", + "@parcel/hash": "2.6.2", + "@parcel/logger": "2.6.2", + "@parcel/markdown-ansi": "2.6.2", "@parcel/source-map": "^2.0.0", "chalk": "^4.1.0" } @@ -2986,14 +2768,14 @@ } }, "@parcel/workers": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@parcel/workers/-/workers-2.6.0.tgz", - "integrity": "sha512-3tcI2LF5fd/WZtSnSjyWdDE+G+FitdNrRgSObzSp+axHKMAM23sO0z7KY8s2SYCF40msdYbFUW8eI6JlYNJoWQ==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@parcel/workers/-/workers-2.6.2.tgz", + "integrity": "sha512-wBgUjJQm+lDd12fPRUmk09+ujTA9DgwPdqylSFK0OtI/yT6A+2kArUqjp8IwWo2tCJXoMzXBne2XQIWKqMiN4Q==", "requires": { - "@parcel/diagnostic": "2.6.0", - "@parcel/logger": "2.6.0", - "@parcel/types": "2.6.0", - "@parcel/utils": "2.6.0", + "@parcel/diagnostic": "2.6.2", + "@parcel/logger": "2.6.2", + "@parcel/types": "2.6.2", + "@parcel/utils": "2.6.2", "chrome-trace-event": "^1.0.2", "nullthrows": "^1.1.1" } @@ -3079,9 +2861,9 @@ } }, "@swc/helpers": { - "version": "0.3.17", - "resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.3.17.tgz", - "integrity": "sha512-tb7Iu+oZ+zWJZ3HJqwx8oNwSDIU440hmVMDPhpACWQWnrZHK99Bxs70gT1L2dnr5Hg50ZRWEFkQCAnOVVV0z1Q==", + "version": "0.4.3", + "resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.4.3.tgz", + "integrity": "sha512-6JrF+fdUK2zbGpJIlN7G3v966PQjyx/dPt1T9km2wj+EUBqgrxCk3uX4Kct16MIm9gGxfKRcfax2hVf5jvlTzA==", "requires": { "tslib": "^2.4.0" } @@ -3250,9 +3032,9 @@ } }, "@types/node": { - "version": "18.0.3", - "resolved": "https://registry.npmjs.org/@types/node/-/node-18.0.3.tgz", - "integrity": "sha512-HzNRZtp4eepNitP+BD6k2L6DROIDG4Q0fm4x+dwfsr6LGmROENnok75VGw40628xf+iR24WeMFcHuuBDUAzzsQ==" + "version": "18.0.6", + "resolved": "https://registry.npmjs.org/@types/node/-/node-18.0.6.tgz", + "integrity": "sha512-/xUq6H2aQm261exT6iZTMifUySEt4GR5KX8eYyY+C4MSNPqSh9oNIP7tz2GLKTlFaiBbgZNxffoR3CVRG+cljw==" }, "@types/node-fetch": { "version": "2.6.2", @@ -3981,12 +3763,12 @@ } }, "babel-plugin-remove-graphql-queries": { - "version": "4.18.1", - "resolved": "https://registry.npmjs.org/babel-plugin-remove-graphql-queries/-/babel-plugin-remove-graphql-queries-4.18.1.tgz", - "integrity": "sha512-2I7qsm3pnyvrS6/Q9YuHK1SpfQLmrgYH/AjpnWpnLHee6SiVb5Te89iphhpBdycpBRVGWh04ram9+z/1rMaRYQ==", + "version": "4.19.0", + "resolved": "https://registry.npmjs.org/babel-plugin-remove-graphql-queries/-/babel-plugin-remove-graphql-queries-4.19.0.tgz", + "integrity": "sha512-VbxC7aZxdqQA0YiAcTD/djIW+6PP/JVODlRmCiqDyTbtI0zhE/Z6je1maCmC6J2LLBsKxhWT3UYTjRfLofK7sQ==", "requires": { "@babel/runtime": "^7.15.4", - "gatsby-core-utils": "^3.18.1" + "gatsby-core-utils": "^3.19.0" } }, "babel-plugin-syntax-trailing-function-commas": { @@ -4034,9 +3816,9 @@ } }, "babel-preset-gatsby": { - "version": "2.18.1", - "resolved": "https://registry.npmjs.org/babel-preset-gatsby/-/babel-preset-gatsby-2.18.1.tgz", - "integrity": "sha512-oaVV6ULceMjTQKjCA06qvgfLwBNZFJxpacwNZYOJpLygmj+qYiNKDGhJ8vTw/KAIUeDPZAbPMP5P+3wMEPIWYQ==", + "version": "2.19.0", + "resolved": "https://registry.npmjs.org/babel-preset-gatsby/-/babel-preset-gatsby-2.19.0.tgz", + "integrity": "sha512-wjh4lUN1MffsnqHAfRoeOtJFGEObUPR4oxo7fyfx9pZUyqBgXvKXMEoLnwNht5HV5BzT5Xo9dkwNJl0/CNhXHw==", "requires": { "@babel/plugin-proposal-class-properties": "^7.14.0", "@babel/plugin-proposal-nullish-coalescing-operator": "^7.14.5", @@ -4051,8 +3833,8 @@ "babel-plugin-dynamic-import-node": "^2.3.3", "babel-plugin-macros": "^3.1.0", "babel-plugin-transform-react-remove-prop-types": "^0.4.24", - "gatsby-core-utils": "^3.18.1", - "gatsby-legacy-polyfills": "^2.18.0" + "gatsby-core-utils": "^3.19.0", + "gatsby-legacy-polyfills": "^2.19.0" } }, "backo2": { @@ -4145,6 +3927,11 @@ "unpipe": "1.0.0" }, "dependencies": { + "bytes": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", + "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==" + }, "debug": { "version": "2.6.9", "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", @@ -4301,9 +4088,9 @@ } }, "bytes": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", - "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==" + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz", + "integrity": "sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==" }, "cache-manager": { "version": "2.11.1", @@ -4390,9 +4177,9 @@ } }, "caniuse-lite": { - "version": "1.0.30001366", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001366.tgz", - "integrity": "sha512-yy7XLWCubDobokgzudpkKux8e0UOOnLHE6mlNJBzT3lZJz6s5atSEzjoL+fsCPkI0G8MP5uVdDx1ur/fXEWkZA==" + "version": "1.0.30001367", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001367.tgz", + "integrity": "sha512-XDgbeOHfifWV3GEES2B8rtsrADx4Jf+juKX2SICJcaUhjYBO3bR96kvEIHa15VU6ohtOhBZuPGGYGbXMRn0NCw==" }, "capital-case": { "version": "1.0.4", @@ -4611,9 +4398,9 @@ } }, "clone-response": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/clone-response/-/clone-response-1.0.2.tgz", - "integrity": "sha512-yjLXh88P599UOyPTFX0POsd7WxnbsVsGohcwzHOLspIhhpalPw1BcqED8NblyZLKcGrL8dTgMlcaZxV2jAD41Q==", + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/clone-response/-/clone-response-1.0.3.tgz", + "integrity": "sha512-ROoL94jJH2dUVML2Y/5PEDNaSHgeOdSDicUyS7izcF63G6sTc/FTjLub4b8Il9S8S0beOfYt0TaA5qvFK+w0wA==", "requires": { "mimic-response": "^1.0.0" } @@ -4738,11 +4525,6 @@ "vary": "~1.1.2" }, "dependencies": { - "bytes": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz", - "integrity": "sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==" - }, "debug": { "version": "2.6.9", "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", @@ -4875,16 +4657,16 @@ "integrity": "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==" }, "core-js": { - "version": "3.23.4", - "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.23.4.tgz", - "integrity": "sha512-vjsKqRc1RyAJC3Ye2kYqgfdThb3zYnx9CrqoCcjMOENMtQPC7ZViBvlDxwYU/2z2NI/IPuiXw5mT4hWhddqjzQ==" + "version": "3.23.5", + "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.23.5.tgz", + "integrity": "sha512-7Vh11tujtAZy82da4duVreQysIoO2EvVrur7y6IzZkH1IHPSekuDi8Vuw1+YKjkbfWLRD7Nc9ICQ/sIUDutcyg==" }, "core-js-compat": { - "version": "3.23.4", - "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.23.4.tgz", - "integrity": "sha512-RkSRPe+JYEoflcsuxJWaiMPhnZoFS51FcIxm53k4KzhISCBTmaGlto9dTIrYuk0hnJc3G6pKufAKepHnBq6B6Q==", + "version": "3.23.5", + "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.23.5.tgz", + "integrity": "sha512-fHYozIFIxd+91IIbXJgWd/igXIc8Mf9is0fusswjnGIWVG96y2cwyUdlCkGOw6rMLHKAxg7xtCIVaHsyOUnJIg==", "requires": { - "browserslist": "^4.21.1", + "browserslist": "^4.21.2", "semver": "7.0.0" }, "dependencies": { @@ -4896,9 +4678,9 @@ } }, "core-js-pure": { - "version": "3.23.4", - "resolved": "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.23.4.tgz", - "integrity": "sha512-lizxkcgj3XDmi7TUBFe+bQ1vNpD5E4t76BrBWI3HdUxdw/Mq1VF4CkiHzIKyieECKtcODK2asJttoofEeUKICQ==" + "version": "3.23.5", + "resolved": "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.23.5.tgz", + "integrity": "sha512-8t78LdpKSuCq4pJYCYk8hl7XEkAX+BP16yRIwL3AanTksxuEf7CM83vRyctmiEL8NDZ3jpUcv56fk9/zG3aIuw==" }, "core-util-is": { "version": "1.0.3", @@ -4935,9 +4717,9 @@ } }, "create-gatsby": { - "version": "2.18.1", - "resolved": "https://registry.npmjs.org/create-gatsby/-/create-gatsby-2.18.1.tgz", - "integrity": "sha512-1AZioXKi4COhESSHfsb/6tpkBvyuuXHwAmMAGrcUQpbynsQxYdqonnRqnFhp80bA2cIKxgjtHzzLhyRouDonbQ==", + "version": "2.19.0", + "resolved": "https://registry.npmjs.org/create-gatsby/-/create-gatsby-2.19.0.tgz", + "integrity": "sha512-Esl/qCau3rjpnRkmo31BYOE6l72SJ/5Fq8bF6gmXOf/lnbOh51so8hgRcClfizr1nCihqQQihZn//o4DIgZKeA==", "requires": { "@babel/runtime": "^7.15.4" } @@ -5499,9 +5281,9 @@ "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==" }, "electron-to-chromium": { - "version": "1.4.188", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.188.tgz", - "integrity": "sha512-Zpa1+E+BVmD/orkyz1Z2dAT1XNUuVAHB3GrogfyY66dXN0ZWSsygI8+u6QTDai1ZayLcATDJpcv2Z2AZjEcr1A==" + "version": "1.4.194", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.194.tgz", + "integrity": "sha512-ola5UH0xAP1oYY0FFUsPvwtucEzCQHucXnT7PQ1zjHJMccZhCDktEugI++JUR3YuIs7Ff7afz+OVEhVAIMhLAQ==" }, "emoji-regex": { "version": "8.0.0", @@ -6847,9 +6629,9 @@ "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==" }, "gatsby": { - "version": "4.18.2", - "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-4.18.2.tgz", - "integrity": "sha512-ZWdo0TXsSRmwlmOeeuoWwXKQNteHm9VxJWF9Ud+c33r7ZXQgTA5WtRYjiBpjZuNAUwsiONNAe+wKK5jVY8B4LQ==", + "version": "4.19.0", + "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-4.19.0.tgz", + "integrity": "sha512-Bhga6PbDRSL3J7yIcVAWwN76cK0OeFWE4f5ggh4qEjnsL20kxW+LPwAexpZ5dVxbE1gsl1k/VDSX66Wj3vGH3A==", "requires": { "@babel/code-frame": "^7.14.0", "@babel/core": "^7.15.5", @@ -6871,7 +6653,7 @@ "@graphql-tools/load": "^7.5.10", "@jridgewell/trace-mapping": "^0.3.13", "@nodelib/fs.walk": "^1.2.8", - "@parcel/core": "2.6.0", + "@parcel/core": "2.6.2", "@pmmmwh/react-refresh-webpack-plugin": "^0.4.3", "@types/http-proxy": "^1.17.7", "@typescript-eslint/eslint-plugin": "^4.33.0", @@ -6885,11 +6667,10 @@ "babel-plugin-add-module-exports": "^1.0.4", "babel-plugin-dynamic-import-node": "^2.3.3", "babel-plugin-lodash": "^3.3.4", - "babel-plugin-remove-graphql-queries": "^4.18.1", - "babel-preset-gatsby": "^2.18.1", + "babel-plugin-remove-graphql-queries": "^4.19.0", + "babel-preset-gatsby": "^2.19.0", "better-opn": "^2.1.1", "bluebird": "^3.7.2", - "body-parser": "^1.19.0", "browserslist": "^4.17.5", "cache-manager": "^2.11.1", "chalk": "^4.1.2", @@ -6915,7 +6696,7 @@ "eslint-plugin-graphql": "^4.0.0", "eslint-plugin-import": "^2.26.0", "eslint-plugin-jsx-a11y": "^6.5.1", - "eslint-plugin-react": "^7.30.0", + "eslint-plugin-react": "^7.30.1", "eslint-plugin-react-hooks": "^4.5.0", "eslint-webpack-plugin": "^2.6.0", "event-source-polyfill": "1.0.25", @@ -6929,21 +6710,21 @@ "find-cache-dir": "^3.3.2", "fs-exists-cached": "1.0.0", "fs-extra": "^10.1.0", - "gatsby-cli": "^4.18.1", - "gatsby-core-utils": "^3.18.1", - "gatsby-graphiql-explorer": "^2.18.0", - "gatsby-legacy-polyfills": "^2.18.0", - "gatsby-link": "^4.18.1", - "gatsby-page-utils": "^2.18.1", - "gatsby-parcel-config": "^0.9.2", - "gatsby-plugin-page-creator": "^4.18.1", - "gatsby-plugin-typescript": "^4.18.1", - "gatsby-plugin-utils": "^3.12.1", - "gatsby-react-router-scroll": "^5.18.0", - "gatsby-script": "^1.3.0", - "gatsby-sharp": "^0.12.0", - "gatsby-telemetry": "^3.18.1", - "gatsby-worker": "^1.18.0", + "gatsby-cli": "^4.19.0", + "gatsby-core-utils": "^3.19.0", + "gatsby-graphiql-explorer": "^2.19.0", + "gatsby-legacy-polyfills": "^2.19.0", + "gatsby-link": "^4.19.0", + "gatsby-page-utils": "^2.19.0", + "gatsby-parcel-config": "^0.10.0", + "gatsby-plugin-page-creator": "^4.19.0", + "gatsby-plugin-typescript": "^4.19.0", + "gatsby-plugin-utils": "^3.13.0", + "gatsby-react-router-scroll": "^5.19.0", + "gatsby-script": "^1.4.0", + "gatsby-sharp": "^0.13.0", + "gatsby-telemetry": "^3.19.0", + "gatsby-worker": "^1.19.0", "glob": "^7.2.3", "globby": "^11.1.0", "got": "^11.8.2", @@ -6951,7 +6732,6 @@ "graphql-compose": "^9.0.7", "graphql-playground-middleware-express": "^1.7.22", "hasha": "^5.2.2", - "http-proxy": "^1.18.1", "invariant": "^2.2.4", "is-relative": "^1.0.0", "is-relative-url": "^3.0.0", @@ -6970,6 +6750,7 @@ "moment": "^2.29.1", "multer": "^1.4.3", "node-fetch": "^2.6.6", + "node-html-parser": "^5.3.3", "normalize-path": "^3.0.0", "null-loader": "^4.0.1", "opentracing": "^0.14.5", @@ -7016,9 +6797,9 @@ }, "dependencies": { "gatsby-cli": { - "version": "4.18.1", - "resolved": "https://registry.npmjs.org/gatsby-cli/-/gatsby-cli-4.18.1.tgz", - "integrity": "sha512-ceYqm6i39rHY343zUCflwXnGtd25QGccvToTWL8W42/EGToDW8bubLfeBSRCfjXm946yf1gkS/1UAsAgAphYDA==", + "version": "4.19.0", + "resolved": "https://registry.npmjs.org/gatsby-cli/-/gatsby-cli-4.19.0.tgz", + "integrity": "sha512-i1B9ktvOECiOZgyKqf0xdYx9bmrIUeZeiK+EOIvIpvFfFUwBmZR6xSHRHYUGX2JVpQiy4QEG25KcPWgF9mYJ3w==", "requires": { "@babel/code-frame": "^7.14.0", "@babel/core": "^7.15.5", @@ -7037,13 +6818,13 @@ "common-tags": "^1.8.2", "configstore": "^5.0.1", "convert-hrtime": "^3.0.0", - "create-gatsby": "^2.18.1", + "create-gatsby": "^2.19.0", "envinfo": "^7.8.1", "execa": "^5.1.1", "fs-exists-cached": "^1.0.0", "fs-extra": "^10.1.0", - "gatsby-core-utils": "^3.18.1", - "gatsby-telemetry": "^3.18.1", + "gatsby-core-utils": "^3.19.0", + "gatsby-telemetry": "^3.19.0", "hosted-git-info": "^3.0.8", "is-valid-path": "^0.1.1", "joi": "^17.4.2", @@ -7069,9 +6850,9 @@ } }, "gatsby-core-utils": { - "version": "3.18.1", - "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.18.1.tgz", - "integrity": "sha512-sJTxRqizLxYy/tSFk0ydfqEZ3ek1So9HDVUa39F6Oi8XuPCBTFzaAooUvowKGneI5YUbdk5y4VO4ybwVUynntw==", + "version": "3.19.0", + "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.19.0.tgz", + "integrity": "sha512-cjXs9DsXkPZt+UdiLHxtq+rGMGVrcnM0KwkawlruvPchI7lqGNv9CScqlvYPxx1dBhu3zSZS26EBALMlFhyOJA==", "requires": { "@babel/runtime": "^7.15.4", "ci-info": "2.0.0", @@ -7091,17 +6872,17 @@ } }, "gatsby-graphiql-explorer": { - "version": "2.18.0", - "resolved": "https://registry.npmjs.org/gatsby-graphiql-explorer/-/gatsby-graphiql-explorer-2.18.0.tgz", - "integrity": "sha512-mmY+kHc+axpDO9lfjbCEf/0oEIHTcZmpe2PtQAzkhnQHyti3xd9IIafq/1W3QKIJo5c7f40+tR3sFTERqaBeIA==", + "version": "2.19.0", + "resolved": "https://registry.npmjs.org/gatsby-graphiql-explorer/-/gatsby-graphiql-explorer-2.19.0.tgz", + "integrity": "sha512-wOD1LuWaSbCtZ0E9C2HxMBQj67k8kPnlLMr/VfKHgBh0FfvIavIq5vOq5K9zRIkAzSzYVODGEz2NVdbfVK9Bew==", "requires": { "@babel/runtime": "^7.15.4" } }, "gatsby-legacy-polyfills": { - "version": "2.18.0", - "resolved": "https://registry.npmjs.org/gatsby-legacy-polyfills/-/gatsby-legacy-polyfills-2.18.0.tgz", - "integrity": "sha512-wPnsRUnnab10wyt5VPkIhpJC1k8bVrpn0Sfat1L3JskYwkVIEvquqTmHWkpGMB8SLbXQiJEGCs2TcIrx9riL+w==", + "version": "2.19.0", + "resolved": "https://registry.npmjs.org/gatsby-legacy-polyfills/-/gatsby-legacy-polyfills-2.19.0.tgz", + "integrity": "sha512-WuyN01eiRxhanfnj6UgsCxU+Pxs9B8rtgxbrwXhlEKX+QdAp4XlywDQ8QXvv8i028QDF9h+VnvGlfcZY4tgQrQ==", "requires": { "@babel/runtime": "^7.15.4", "core-js-compat": "3.9.0" @@ -7124,77 +6905,76 @@ } }, "gatsby-link": { - "version": "4.18.1", - "resolved": "https://registry.npmjs.org/gatsby-link/-/gatsby-link-4.18.1.tgz", - "integrity": "sha512-gLFH2iU4WugHU5k+SLu4F0Ar04kDT5KhkyXly99ZVtiIvHpA5DqcuGNIUjIE/lizSCsfa553wGv7dadfghGzrQ==", + "version": "4.19.0", + "resolved": "https://registry.npmjs.org/gatsby-link/-/gatsby-link-4.19.0.tgz", + "integrity": "sha512-snv9blxZR7s/ymRjUUDP2+zrJ/beuyy/k/MeW57EkQ16YfgDyF79JMKNDU3iXFmiFhG9AYBkClIfe4qTSoCO/A==", "requires": { - "@babel/runtime": "^7.15.4", "@types/reach__router": "^1.3.10", - "gatsby-page-utils": "^2.18.1", + "gatsby-page-utils": "^2.19.0", "prop-types": "^15.8.1" } }, "gatsby-page-utils": { - "version": "2.18.1", - "resolved": "https://registry.npmjs.org/gatsby-page-utils/-/gatsby-page-utils-2.18.1.tgz", - "integrity": "sha512-4EM0LNOQgnCndHDQSI/ZKRFWYWG9dtTPuGbBaGlmPquhj3zwjOscws1vfj7g+u3PowKjZQ2Rf92RZd8xt8XLTQ==", + "version": "2.19.0", + "resolved": "https://registry.npmjs.org/gatsby-page-utils/-/gatsby-page-utils-2.19.0.tgz", + "integrity": "sha512-eYStV4jQbuEBKhatH3yzWA+lmoydJBCZVg6w2GG38eSsgcj9pdep8oQqyQdGFU3dy/HizWmWCv+wW9FIUoVQsQ==", "requires": { "@babel/runtime": "^7.15.4", "bluebird": "^3.7.2", "chokidar": "^3.5.3", "fs-exists-cached": "^1.0.0", - "gatsby-core-utils": "^3.18.1", + "gatsby-core-utils": "^3.19.0", "glob": "^7.2.3", "lodash": "^4.17.21", "micromatch": "^4.0.5" } }, "gatsby-parcel-config": { - "version": "0.9.2", - "resolved": "https://registry.npmjs.org/gatsby-parcel-config/-/gatsby-parcel-config-0.9.2.tgz", - "integrity": "sha512-ONykPoYCoFs89M8Hio0TSrUQEpwXwbSiV8aCcPH9L6w3eros9RlWrwAwnWb+lPDNJT5BsereBjefoS9cC6mpVA==", - "requires": { - "@gatsbyjs/parcel-namer-relative-to-cwd": "^1.3.2", - "@parcel/bundler-default": "2.6.0", - "@parcel/compressor-raw": "2.6.0", - "@parcel/namer-default": "2.6.0", - "@parcel/optimizer-terser": "2.6.0", - "@parcel/packager-js": "2.6.0", - "@parcel/packager-raw": "2.6.0", - "@parcel/reporter-dev-server": "2.6.0", - "@parcel/resolver-default": "2.6.0", - "@parcel/runtime-browser-hmr": "2.6.0", - "@parcel/runtime-js": "2.6.0", - "@parcel/runtime-react-refresh": "2.6.0", - "@parcel/runtime-service-worker": "2.6.0", - "@parcel/transformer-js": "2.6.0", - "@parcel/transformer-json": "2.6.0", - "@parcel/transformer-raw": "2.6.0", - "@parcel/transformer-react-refresh-wrap": "2.6.0" + "version": "0.10.0", + "resolved": "https://registry.npmjs.org/gatsby-parcel-config/-/gatsby-parcel-config-0.10.0.tgz", + "integrity": "sha512-FV+ccSeWPgicWRtycfUV1L7xyVIr6OSDnUkztnxq3Xj+OEBPC0NO2x07CA4tz16hSRDH1/qXgwY8AsHyenCidg==", + "requires": { + "@gatsbyjs/parcel-namer-relative-to-cwd": "^1.4.0", + "@parcel/bundler-default": "2.6.2", + "@parcel/compressor-raw": "2.6.2", + "@parcel/namer-default": "2.6.2", + "@parcel/optimizer-terser": "2.6.2", + "@parcel/packager-js": "2.6.2", + "@parcel/packager-raw": "2.6.2", + "@parcel/reporter-dev-server": "2.6.2", + "@parcel/resolver-default": "2.6.2", + "@parcel/runtime-browser-hmr": "2.6.2", + "@parcel/runtime-js": "2.6.2", + "@parcel/runtime-react-refresh": "2.6.2", + "@parcel/runtime-service-worker": "2.6.2", + "@parcel/transformer-js": "2.6.2", + "@parcel/transformer-json": "2.6.2", + "@parcel/transformer-raw": "2.6.2", + "@parcel/transformer-react-refresh-wrap": "2.6.2" } }, "gatsby-plugin-page-creator": { - "version": "4.18.1", - "resolved": "https://registry.npmjs.org/gatsby-plugin-page-creator/-/gatsby-plugin-page-creator-4.18.1.tgz", - "integrity": "sha512-XPAglahQ1fDnSdSNJmtAGwVqB7yZDGPOQQBQX7LD74XwYP6uriRo4LyeI+gEXRqW4d63ZL3VMvgdisde9M95LQ==", + "version": "4.19.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-page-creator/-/gatsby-plugin-page-creator-4.19.0.tgz", + "integrity": "sha512-JGclCb2lniTjBdFzoiF0Px9EhVY/3uiWx7mqnvfdVO85VVey5+eCKL60Aqamjovo6C+l/0Uldt4uT1EpNLC3Xw==", "requires": { "@babel/runtime": "^7.15.4", "@babel/traverse": "^7.15.4", "@sindresorhus/slugify": "^1.1.2", "chokidar": "^3.5.3", "fs-exists-cached": "^1.0.0", - "gatsby-core-utils": "^3.18.1", - "gatsby-page-utils": "^2.18.1", - "gatsby-plugin-utils": "^3.12.1", - "gatsby-telemetry": "^3.18.1", + "gatsby-core-utils": "^3.19.0", + "gatsby-page-utils": "^2.19.0", + "gatsby-plugin-utils": "^3.13.0", + "gatsby-telemetry": "^3.19.0", "globby": "^11.1.0", "lodash": "^4.17.21" } }, "gatsby-plugin-typescript": { - "version": "4.18.1", - "resolved": "https://registry.npmjs.org/gatsby-plugin-typescript/-/gatsby-plugin-typescript-4.18.1.tgz", - "integrity": "sha512-YUZcqL2WWiL2ngKe4A5FpTjCij2pLxiim+QaujeKfMjeWfHJ13uQ74HlxQXNpGAy4vMRBiU4CJH71RXgS1aoaA==", + "version": "4.19.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-typescript/-/gatsby-plugin-typescript-4.19.0.tgz", + "integrity": "sha512-f+aC4g/pTkUqFLTHo3OLdPQgdIFcEdoM5i8H4Pph5O4rmFXYHkkQKimRJmAz9cBb6/1wN7IBqI9m4k3AefaAjA==", "requires": { "@babel/core": "^7.15.5", "@babel/plugin-proposal-nullish-coalescing-operator": "^7.14.5", @@ -7202,19 +6982,19 @@ "@babel/plugin-proposal-optional-chaining": "^7.14.5", "@babel/preset-typescript": "^7.15.0", "@babel/runtime": "^7.15.4", - "babel-plugin-remove-graphql-queries": "^4.18.1" + "babel-plugin-remove-graphql-queries": "^4.19.0" } }, "gatsby-plugin-utils": { - "version": "3.12.1", - "resolved": "https://registry.npmjs.org/gatsby-plugin-utils/-/gatsby-plugin-utils-3.12.1.tgz", - "integrity": "sha512-Rx7/MFtiJ+pyvPLqCPj5beyMN6qOx3EYMrOqmvrWJaM32nxMfHZqUqxGruufyFNVe6edfRuNuXcKaPXlGlyexA==", + "version": "3.13.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-utils/-/gatsby-plugin-utils-3.13.0.tgz", + "integrity": "sha512-iFFWswld/Nu8IrSCikZXC4/cud9txv3ikjkQiGLccJStS9VH2rSY4XEMNRqsKN9Spe3pFBOr/97yYUaPhZaQWg==", "requires": { "@babel/runtime": "^7.15.4", "@gatsbyjs/potrace": "^2.2.0", "fs-extra": "^10.1.0", - "gatsby-core-utils": "^3.18.1", - "gatsby-sharp": "^0.12.0", + "gatsby-core-utils": "^3.19.0", + "gatsby-sharp": "^0.13.0", "graphql-compose": "^9.0.7", "import-from": "^4.0.0", "joi": "^17.4.2", @@ -7231,32 +7011,32 @@ } }, "gatsby-react-router-scroll": { - "version": "5.18.0", - "resolved": "https://registry.npmjs.org/gatsby-react-router-scroll/-/gatsby-react-router-scroll-5.18.0.tgz", - "integrity": "sha512-/A1k468s6g713c8me5DuGiia8rPWLuwjITQ/pKqgJwioJVB6MnD/iBCbHUTzLHlNwZypAVdGHCN8fCIcPcMb6Q==", + "version": "5.19.0", + "resolved": "https://registry.npmjs.org/gatsby-react-router-scroll/-/gatsby-react-router-scroll-5.19.0.tgz", + "integrity": "sha512-tl1E2/ger3Aw5Vb5n53i9wCBePYqb2dBilO05pd6FfgKYJveFidQwGzzOn1F9smdWq+5c3KJSTlKJaNYPwn72w==", "requires": { "@babel/runtime": "^7.15.4", "prop-types": "^15.8.1" } }, "gatsby-script": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/gatsby-script/-/gatsby-script-1.3.0.tgz", - "integrity": "sha512-eCz6mcMFpB7kvpmyM7AtMTxNxzdrzPgt8GiuDKWFOlDgk1il6PUjO99QsL/cCeokmaiH/6egVnm9b33/x+sy9A==" + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/gatsby-script/-/gatsby-script-1.4.0.tgz", + "integrity": "sha512-+GmHTAfFq/sQWPvl1E8QvApRfxqqamhdqjFo4YloOQRAlDc+e3nMzTzvgj8z3IWqDqlvEfHMnlvQg60E5ThO/A==" }, "gatsby-sharp": { - "version": "0.12.0", - "resolved": "https://registry.npmjs.org/gatsby-sharp/-/gatsby-sharp-0.12.0.tgz", - "integrity": "sha512-dZa/AgxmPzD0vvROEZSuT3IdzAFTxnq1FfLTf9n3mywonvsKYc84zj6nf8TEzBrVrBFAaLvZek4NpVAKWGr4/w==", + "version": "0.13.0", + "resolved": "https://registry.npmjs.org/gatsby-sharp/-/gatsby-sharp-0.13.0.tgz", + "integrity": "sha512-dGuIuWP3rC7hXl/CgkHEY4WQEW+B9Rsg8uo6u+OumuLnLBxD4vTusEIGctVKzlyIxpENEQylQ7w1JKHX9fOy9g==", "requires": { "@types/sharp": "^0.30.0", "sharp": "^0.30.3" } }, "gatsby-telemetry": { - "version": "3.18.1", - "resolved": "https://registry.npmjs.org/gatsby-telemetry/-/gatsby-telemetry-3.18.1.tgz", - "integrity": "sha512-EjjsUv15BZGsmnPrOINRT/s7d18DTKokpp2NDZLm8uOs3MwVoLtUZ/BS7h2NTmgK+WN93q3bNYRkZgKgV9QC1A==", + "version": "3.19.0", + "resolved": "https://registry.npmjs.org/gatsby-telemetry/-/gatsby-telemetry-3.19.0.tgz", + "integrity": "sha512-5JQcTm2zCLWTmnXOdOe0gxuk7aRZSTaVrOrytMlwAR7trvtBC/fKqMhJHsYwl5uW9K06F59ZdkC0apJTAPkGww==", "requires": { "@babel/code-frame": "^7.14.0", "@babel/runtime": "^7.15.4", @@ -7266,7 +7046,7 @@ "boxen": "^4.2.0", "configstore": "^5.0.1", "fs-extra": "^10.1.0", - "gatsby-core-utils": "^3.18.1", + "gatsby-core-utils": "^3.19.0", "git-up": "^4.0.5", "is-docker": "^2.2.1", "lodash": "^4.17.21", @@ -7339,9 +7119,9 @@ } }, "gatsby-worker": { - "version": "1.18.0", - "resolved": "https://registry.npmjs.org/gatsby-worker/-/gatsby-worker-1.18.0.tgz", - "integrity": "sha512-gNzqDrYFMXlfXCzdClORyDQWQZKTOF6nRUrhZT8PUxzQViO+DvnEKE3EAQvZizYKW1Hgw7cbiTtLG3qshkNepw==", + "version": "1.19.0", + "resolved": "https://registry.npmjs.org/gatsby-worker/-/gatsby-worker-1.19.0.tgz", + "integrity": "sha512-E0I51K5+rSpcUkv3wQ17FHZiicLeMH/Hz7p3oxlPCM43pcvsYJTa68Q0MqI1K6XV6Z8Nf48dERKMvHT0PnY4GQ==", "requires": { "@babel/core": "^7.15.5", "@babel/runtime": "^7.15.4" @@ -7774,6 +7554,11 @@ } } }, + "he": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/he/-/he-1.2.0.tgz", + "integrity": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==" + }, "header-case": { "version": "2.0.4", "resolved": "https://registry.npmjs.org/header-case/-/header-case-2.0.4.tgz", @@ -7824,23 +7609,6 @@ "toidentifier": "1.0.1" } }, - "http-proxy": { - "version": "1.18.1", - "resolved": "https://registry.npmjs.org/http-proxy/-/http-proxy-1.18.1.tgz", - "integrity": "sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==", - "requires": { - "eventemitter3": "^4.0.0", - "follow-redirects": "^1.0.0", - "requires-port": "^1.0.0" - }, - "dependencies": { - "eventemitter3": { - "version": "4.0.7", - "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.7.tgz", - "integrity": "sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==" - } - } - }, "http2-wrapper": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/http2-wrapper/-/http2-wrapper-1.0.3.tgz", @@ -8475,9 +8243,9 @@ } }, "keyv": { - "version": "4.3.2", - "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.3.2.tgz", - "integrity": "sha512-kn8WmodVBe12lmHpA6W8OY7SNh6wVR+Z+wZESF4iF5FCazaVXGWOtnbnvX0tMQ1bO+/TmOD9LziuYMvrIIs0xw==", + "version": "4.3.3", + "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.3.3.tgz", + "integrity": "sha512-AcysI17RvakTh8ir03+a3zJr5r0ovnAH/XTXei/4HIv3bL2K/jzvgivLK9UuI/JbU1aJjM3NSAnVvVVd3n+4DQ==", "requires": { "compress-brotli": "^1.3.8", "json-buffer": "3.0.1" @@ -8556,54 +8324,49 @@ "weak-lru-cache": "^1.2.2" }, "dependencies": { + "@lmdb/lmdb-darwin-arm64": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-arm64/-/lmdb-darwin-arm64-2.5.3.tgz", + "integrity": "sha512-RXwGZ/0eCqtCY8FLTM/koR60w+MXyvBUpToXiIyjOcBnC81tAlTUHrRUavCEWPI9zc9VgvpK3+cbumPyR8BSuA==", + "optional": true + }, + "@lmdb/lmdb-darwin-x64": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-x64/-/lmdb-darwin-x64-2.5.3.tgz", + "integrity": "sha512-337dNzh5yCdNCTk8kPfoU7jR3otibSlPDGW0vKZT97rKnQMb9tNdto3RtWoGPsQ8hKmlRZpojOJtmwjncq1MoA==", + "optional": true + }, + "@lmdb/lmdb-linux-arm": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm/-/lmdb-linux-arm-2.5.3.tgz", + "integrity": "sha512-mU2HFJDGwECkoD9dHQEfeTG5mp8hNS2BCfwoiOpVPMeapjYpQz9Uw3FkUjRZ4dGHWKbin40oWHuL0bk2bCx+Sg==", + "optional": true + }, + "@lmdb/lmdb-linux-arm64": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm64/-/lmdb-linux-arm64-2.5.3.tgz", + "integrity": "sha512-VJw60Mdgb4n+L0fO1PqfB0C7TyEQolJAC8qpqvG3JoQwvyOv6LH7Ib/WE3wxEW9nuHmVz9jkK7lk5HfWWgoO1Q==", + "optional": true + }, + "@lmdb/lmdb-linux-x64": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-x64/-/lmdb-linux-x64-2.5.3.tgz", + "integrity": "sha512-qaReO5aV8griBDsBr8uBF/faO3ieGjY1RY4p8JvTL6Mu1ylLrTVvOONqKFlNaCwrmUjWw5jnf7VafxDAeQHTow==", + "optional": true + }, + "@lmdb/lmdb-win32-x64": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-win32-x64/-/lmdb-win32-x64-2.5.3.tgz", + "integrity": "sha512-cK+Elf3RjEzrm3SerAhrFWL5oQAsZSJ/LmjL1joIpTfEP1etJJ9CTRvdaV6XLYAxaEkfdhk/9hOvHLbR9yIhCA==", + "optional": true + }, "node-addon-api": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-4.3.0.tgz", "integrity": "sha512-73sE9+3UaLYYFmDsFZnqCInzPyh3MqIwZO9cw58yIqAZhONrrabrYyYe3TuIqtIiOuTXVhsGau8hcrhhwSsDIQ==" - }, - "node-gyp-build-optional-packages": { - "version": "5.0.3", - "resolved": "https://registry.npmjs.org/node-gyp-build-optional-packages/-/node-gyp-build-optional-packages-5.0.3.tgz", - "integrity": "sha512-k75jcVzk5wnnc/FMxsf4udAoTEUv2jY3ycfdSd3yWu6Cnd1oee6/CfZJApyscA4FJOmdoixWwiwOyf16RzD5JA==" } } }, - "lmdb-darwin-arm64": { - "version": "2.3.10", - "resolved": "https://registry.npmjs.org/lmdb-darwin-arm64/-/lmdb-darwin-arm64-2.3.10.tgz", - "integrity": "sha512-LVXbH2MYu7/ZuQ8+P9rv+SwNyBKltxo7vHAGJS94HWyfwnCbKEYER9PImBvNBwzvgtaYk6x0RMX3oor6e6KdDQ==", - "optional": true - }, - "lmdb-darwin-x64": { - "version": "2.3.10", - "resolved": "https://registry.npmjs.org/lmdb-darwin-x64/-/lmdb-darwin-x64-2.3.10.tgz", - "integrity": "sha512-gAc/1b/FZOb9yVOT+o0huA+hdW82oxLo5r22dFTLoRUFG1JMzxdTjmnW6ONVOHdqC9a5bt3vBCEY3jmXNqV26A==", - "optional": true - }, - "lmdb-linux-arm": { - "version": "2.3.10", - "resolved": "https://registry.npmjs.org/lmdb-linux-arm/-/lmdb-linux-arm-2.3.10.tgz", - "integrity": "sha512-Rb8+4JjsThuEcJ7GLLwFkCFnoiwv/3hAAbELWITz70buQFF+dCZvCWWgEgmDTxwn5r+wIkdUjmFv4dqqiKQFmQ==", - "optional": true - }, - "lmdb-linux-arm64": { - "version": "2.3.10", - "resolved": "https://registry.npmjs.org/lmdb-linux-arm64/-/lmdb-linux-arm64-2.3.10.tgz", - "integrity": "sha512-Ihr8mdICTK3jA4GXHxrXGK2oekn0mY6zuDSXQDNtyRSH19j3D2Y04A7SEI9S0EP/t5sjKSudYgZbiHDxRCsI5A==", - "optional": true - }, - "lmdb-linux-x64": { - "version": "2.3.10", - "resolved": "https://registry.npmjs.org/lmdb-linux-x64/-/lmdb-linux-x64-2.3.10.tgz", - "integrity": "sha512-E3l3pDiCA9uvnLf+t3qkmBGRO01dp1EHD0x0g0iRnfpAhV7wYbayJGfG93BUt22Tj3fnq4HDo4dQ6ZWaDI1nuw==", - "optional": true - }, - "lmdb-win32-x64": { - "version": "2.3.10", - "resolved": "https://registry.npmjs.org/lmdb-win32-x64/-/lmdb-win32-x64-2.3.10.tgz", - "integrity": "sha512-gspWk34tDANhjn+brdqZstJMptGiwj4qFNVg0Zey9ds+BUlif+Lgf5szrfOVzZ8gVRkk1Lgbz7i78+V7YK7SCA==", - "optional": true - }, "load-bmfont": { "version": "1.4.1", "resolved": "https://registry.npmjs.org/load-bmfont/-/load-bmfont-1.4.1.tgz", @@ -9074,11 +8837,6 @@ "resolved": "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.8.tgz", "integrity": "sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==" }, - "nan": { - "version": "2.16.0", - "resolved": "https://registry.npmjs.org/nan/-/nan-2.16.0.tgz", - "integrity": "sha512-UdAqHyFngu7TfQKsCBgAA6pWDkT8MAO7d0jyOecVhN5354xbLqdn8mV9Tat9gepAupm0bt2DbeaSC8vS52MuFA==" - }, "nanoid": { "version": "3.3.4", "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.4.tgz", @@ -9158,9 +8916,18 @@ "integrity": "sha512-2iGbaQBV+ITgCz76ZEjmhUKAKVf7xfY1sRl4UiKQspfZMH2h06SyhNsnSVy50cwkFQDGLyif6m/6uFXHkOZ6rg==" }, "node-gyp-build-optional-packages": { - "version": "4.3.5", - "resolved": "https://registry.npmjs.org/node-gyp-build-optional-packages/-/node-gyp-build-optional-packages-4.3.5.tgz", - "integrity": "sha512-5ke7D8SiQsTQL7CkHpfR1tLwfqtKc0KYEmlnkwd40jHCASskZeS98qoZ1qDUns2aUQWikcjidRUs6PM/3iyN/w==" + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/node-gyp-build-optional-packages/-/node-gyp-build-optional-packages-5.0.3.tgz", + "integrity": "sha512-k75jcVzk5wnnc/FMxsf4udAoTEUv2jY3ycfdSd3yWu6Cnd1oee6/CfZJApyscA4FJOmdoixWwiwOyf16RzD5JA==" + }, + "node-html-parser": { + "version": "5.3.3", + "resolved": "https://registry.npmjs.org/node-html-parser/-/node-html-parser-5.3.3.tgz", + "integrity": "sha512-ncg1033CaX9UexbyA7e1N0aAoAYRDiV8jkTvzEnfd1GDvzFdrsXLzR4p4ik8mwLgnaKP/jyUFWDy9q3jvRT2Jw==", + "requires": { + "css-select": "^4.2.1", + "he": "1.2.0" + } }, "node-int64": { "version": "0.4.0", @@ -10316,6 +10083,13 @@ "http-errors": "2.0.0", "iconv-lite": "0.4.24", "unpipe": "1.0.0" + }, + "dependencies": { + "bytes": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", + "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==" + } } }, "raw-loader": { @@ -10765,11 +10539,6 @@ "resolved": "https://registry.npmjs.org/require-package-name/-/require-package-name-2.0.1.tgz", "integrity": "sha512-uuoJ1hU/k6M0779t3VMVIYpb2VMJk05cehCaABFhXaibcbvfgR8wKiozLjVFSzJPmQMRqIcO0HMyTFqfV09V6Q==" }, - "requires-port": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz", - "integrity": "sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==" - }, "resolve": { "version": "1.22.1", "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.1.tgz", @@ -10799,9 +10568,9 @@ "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==" }, "responselike": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/responselike/-/responselike-2.0.0.tgz", - "integrity": "sha512-xH48u3FTB9VsZw7R+vvgaKeLKzT6jOogbQhEe/jewwnZgzPcnyWui2Av6JpoYZF/91uueC+lqhWqeURw5/qhCw==", + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/responselike/-/responselike-2.0.1.tgz", + "integrity": "sha512-4gl03wn3hj1HP3yzgdI7d3lCkF95F21Pz4BPGvKHinyQzALR5CapwC8yIi0Rh58DEMQ/SguC03wFj2k0M/mHhw==", "requires": { "lowercase-keys": "^2.0.0" } @@ -11972,9 +11741,9 @@ "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==" }, "update-browserslist-db": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.4.tgz", - "integrity": "sha512-jnmO2BEGUjsMOe/Fg9u0oczOe/ppIDZPebzccl1yDWGLFP16Pa1/RM5wEoKYPG2zstNcDuAStejyxsOuKINdGA==", + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.5.tgz", + "integrity": "sha512-dteFFpCyvuDdr9S/ff1ISkKt/9YZxKjI9WlRR99c180GaztJtRa/fn18FdxGVKVsnPY7/a/FDN68mcvUmP4U7Q==", "requires": { "escalade": "^3.1.1", "picocolors": "^1.0.0" diff --git a/starters/hello-world/package.json b/starters/hello-world/package.json index 4ca018b1c9827..091e80f1540b8 100644 --- a/starters/hello-world/package.json +++ b/starters/hello-world/package.json @@ -14,7 +14,7 @@ "test": "echo \"Write tests! -> https://gatsby.dev/unit-testing\" && exit 1" }, "dependencies": { - "gatsby": "^4.18.2", + "gatsby": "^4.19.0", "react": "^18.1.0", "react-dom": "^18.1.0" }, From 2805725ac657c34564b219b917fd65847d898c37 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 19 Jul 2022 13:03:08 +0200 Subject: [PATCH 45/90] fix(deps): update starters and examples - gatsby (#36168) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- starters/blog/package-lock.json | 54 +++++++++---------- starters/blog/package.json | 8 +-- starters/default/package-lock.json | 46 ++++++++-------- starters/default/package.json | 6 +-- .../package-lock.json | 46 ++++++++-------- .../package.json | 6 +-- 6 files changed, 83 insertions(+), 83 deletions(-) diff --git a/starters/blog/package-lock.json b/starters/blog/package-lock.json index 87cc772c66698..eef50ef922ff1 100644 --- a/starters/blog/package-lock.json +++ b/starters/blog/package-lock.json @@ -7371,9 +7371,9 @@ } }, "gatsby-core-utils": { - "version": "3.18.1", - "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.18.1.tgz", - "integrity": "sha512-sJTxRqizLxYy/tSFk0ydfqEZ3ek1So9HDVUa39F6Oi8XuPCBTFzaAooUvowKGneI5YUbdk5y4VO4ybwVUynntw==", + "version": "3.19.0", + "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.19.0.tgz", + "integrity": "sha512-cjXs9DsXkPZt+UdiLHxtq+rGMGVrcnM0KwkawlruvPchI7lqGNv9CScqlvYPxx1dBhu3zSZS26EBALMlFhyOJA==", "requires": { "@babel/runtime": "^7.15.4", "ci-info": "2.0.0", @@ -7704,13 +7704,13 @@ } }, "gatsby-plugin-manifest": { - "version": "4.18.1", - "resolved": "https://registry.npmjs.org/gatsby-plugin-manifest/-/gatsby-plugin-manifest-4.18.1.tgz", - "integrity": "sha512-LR4S/MCbUP7Fk3A4xwrA9nhIx9RjDTAE5DAXfXMKvnh1f6an6d+x9XKDqNnGtixVOnlfy3jK0IxLzC1HCjNKSQ==", + "version": "4.19.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-manifest/-/gatsby-plugin-manifest-4.19.0.tgz", + "integrity": "sha512-BsZDMAUraTGff3VSSRmLkR13DDQWD8WUQ7qdXb8DCDI0Hc0/eOg+9JnxruHElBjH1BcfCppSiFTA27AmEzTcoA==", "requires": { "@babel/runtime": "^7.15.4", - "gatsby-core-utils": "^3.18.1", - "gatsby-plugin-utils": "^3.12.1", + "gatsby-core-utils": "^3.19.0", + "gatsby-plugin-utils": "^3.13.0", "semver": "^7.3.7", "sharp": "^0.30.3" } @@ -7828,9 +7828,9 @@ } }, "gatsby-plugin-react-helmet": { - "version": "5.18.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-react-helmet/-/gatsby-plugin-react-helmet-5.18.0.tgz", - "integrity": "sha512-H55KLoKZ/LeWWILYmkbt+L1c6E2ViurN16GyGOOzIg2LGjd7OXu9zy9H9lMKrkNpn/HUXhyUilYHqVeo5fve1A==", + "version": "5.19.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-react-helmet/-/gatsby-plugin-react-helmet-5.19.0.tgz", + "integrity": "sha512-XXrJYfHqoaUe57oAF+/ljPHncrvYk0UonES3aUwynbWsR8UXhQpdbwqIOYZPGQgPsc1X55Kzdo+/3pU1gA9ajQ==", "requires": { "@babel/runtime": "^7.15.4" } @@ -8065,15 +8065,15 @@ } }, "gatsby-plugin-utils": { - "version": "3.12.1", - "resolved": "https://registry.npmjs.org/gatsby-plugin-utils/-/gatsby-plugin-utils-3.12.1.tgz", - "integrity": "sha512-Rx7/MFtiJ+pyvPLqCPj5beyMN6qOx3EYMrOqmvrWJaM32nxMfHZqUqxGruufyFNVe6edfRuNuXcKaPXlGlyexA==", + "version": "3.13.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-utils/-/gatsby-plugin-utils-3.13.0.tgz", + "integrity": "sha512-iFFWswld/Nu8IrSCikZXC4/cud9txv3ikjkQiGLccJStS9VH2rSY4XEMNRqsKN9Spe3pFBOr/97yYUaPhZaQWg==", "requires": { "@babel/runtime": "^7.15.4", "@gatsbyjs/potrace": "^2.2.0", "fs-extra": "^10.1.0", - "gatsby-core-utils": "^3.18.1", - "gatsby-sharp": "^0.12.0", + "gatsby-core-utils": "^3.19.0", + "gatsby-sharp": "^0.13.0", "graphql-compose": "^9.0.7", "import-from": "^4.0.0", "joi": "^17.4.2", @@ -8194,9 +8194,9 @@ "integrity": "sha512-+GmHTAfFq/sQWPvl1E8QvApRfxqqamhdqjFo4YloOQRAlDc+e3nMzTzvgj8z3IWqDqlvEfHMnlvQg60E5ThO/A==" }, "gatsby-sharp": { - "version": "0.12.0", - "resolved": "https://registry.npmjs.org/gatsby-sharp/-/gatsby-sharp-0.12.0.tgz", - "integrity": "sha512-dZa/AgxmPzD0vvROEZSuT3IdzAFTxnq1FfLTf9n3mywonvsKYc84zj6nf8TEzBrVrBFAaLvZek4NpVAKWGr4/w==", + "version": "0.13.0", + "resolved": "https://registry.npmjs.org/gatsby-sharp/-/gatsby-sharp-0.13.0.tgz", + "integrity": "sha512-dGuIuWP3rC7hXl/CgkHEY4WQEW+B9Rsg8uo6u+OumuLnLBxD4vTusEIGctVKzlyIxpENEQylQ7w1JKHX9fOy9g==", "requires": { "@types/sharp": "^0.30.0", "sharp": "^0.30.3" @@ -8492,12 +8492,12 @@ } }, "gatsby-transformer-remark": { - "version": "5.18.1", - "resolved": "https://registry.npmjs.org/gatsby-transformer-remark/-/gatsby-transformer-remark-5.18.1.tgz", - "integrity": "sha512-7sWIxdl1nnWFwkpfV4y72pssVzxrBvaHZ+pb7aXFEeSs0KdhKDrczIo2kUexjOeeO30T1QG+qVX8NKytqAb37w==", + "version": "5.19.0", + "resolved": "https://registry.npmjs.org/gatsby-transformer-remark/-/gatsby-transformer-remark-5.19.0.tgz", + "integrity": "sha512-nOuEqrRMhfAaLrC9rQs9SjIEAyW05oxhYSdlUgXkMCLdTcaaibk2dWgHXCWMsE6B7tQd2UsPCZNyINoU+jto0g==", "requires": { "@babel/runtime": "^7.15.4", - "gatsby-core-utils": "^3.18.1", + "gatsby-core-utils": "^3.19.0", "gray-matter": "^4.0.3", "hast-util-raw": "^6.0.2", "hast-util-to-html": "^7.1.3", @@ -8536,16 +8536,16 @@ } }, "gatsby-transformer-sharp": { - "version": "4.18.1", - "resolved": "https://registry.npmjs.org/gatsby-transformer-sharp/-/gatsby-transformer-sharp-4.18.1.tgz", - "integrity": "sha512-YqY3dWdUmRzhE2DBbOtJygL/bWKFXDQf3ARn6tSEt0WqPRFGLGbsSpT/xU5makHugdO/Wc30x3x85FhwysvH6Q==", + "version": "4.19.0", + "resolved": "https://registry.npmjs.org/gatsby-transformer-sharp/-/gatsby-transformer-sharp-4.19.0.tgz", + "integrity": "sha512-SoY9yGNjC+C+gAfJ//+DqXGBukVKeb4HnobOmkpbugYtLGRwb4AhKOT7eqCn+AK/4+oDDB3ZNNfTUf0vRFQgzA==", "requires": { "@babel/runtime": "^7.15.4", "@gatsbyjs/potrace": "^2.2.0", "bluebird": "^3.7.2", "common-tags": "^1.8.2", "fs-extra": "^10.1.0", - "gatsby-plugin-utils": "^3.12.1", + "gatsby-plugin-utils": "^3.13.0", "probe-image-size": "^7.2.3", "semver": "^7.3.7", "sharp": "^0.30.3" diff --git a/starters/blog/package.json b/starters/blog/package.json index 7914f1009c7bc..3438191e9cc90 100644 --- a/starters/blog/package.json +++ b/starters/blog/package.json @@ -13,9 +13,9 @@ "gatsby-plugin-gatsby-cloud": "^4.19.0", "gatsby-plugin-google-analytics": "^4.19.0", "gatsby-plugin-image": "^2.19.0", - "gatsby-plugin-manifest": "^4.18.1", + "gatsby-plugin-manifest": "^4.19.0", "gatsby-plugin-offline": "^5.19.0", - "gatsby-plugin-react-helmet": "^5.18.0", + "gatsby-plugin-react-helmet": "^5.19.0", "gatsby-plugin-sharp": "^4.19.0", "gatsby-remark-copy-linked-files": "^5.19.0", "gatsby-remark-images": "^6.19.0", @@ -23,8 +23,8 @@ "gatsby-remark-responsive-iframe": "^5.19.0", "gatsby-remark-smartypants": "^5.19.0", "gatsby-source-filesystem": "^4.19.0", - "gatsby-transformer-remark": "^5.18.1", - "gatsby-transformer-sharp": "^4.18.1", + "gatsby-transformer-remark": "^5.19.0", + "gatsby-transformer-sharp": "^4.19.0", "prismjs": "^1.28.0", "react": "^18.1.0", "react-dom": "^18.1.0", diff --git a/starters/default/package-lock.json b/starters/default/package-lock.json index dd32ba19be87b..a3ae07ed6fe95 100644 --- a/starters/default/package-lock.json +++ b/starters/default/package-lock.json @@ -7287,9 +7287,9 @@ } }, "gatsby-core-utils": { - "version": "3.18.1", - "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.18.1.tgz", - "integrity": "sha512-sJTxRqizLxYy/tSFk0ydfqEZ3ek1So9HDVUa39F6Oi8XuPCBTFzaAooUvowKGneI5YUbdk5y4VO4ybwVUynntw==", + "version": "3.19.0", + "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.19.0.tgz", + "integrity": "sha512-cjXs9DsXkPZt+UdiLHxtq+rGMGVrcnM0KwkawlruvPchI7lqGNv9CScqlvYPxx1dBhu3zSZS26EBALMlFhyOJA==", "requires": { "@babel/runtime": "^7.15.4", "ci-info": "2.0.0", @@ -7530,13 +7530,13 @@ } }, "gatsby-plugin-manifest": { - "version": "4.18.1", - "resolved": "https://registry.npmjs.org/gatsby-plugin-manifest/-/gatsby-plugin-manifest-4.18.1.tgz", - "integrity": "sha512-LR4S/MCbUP7Fk3A4xwrA9nhIx9RjDTAE5DAXfXMKvnh1f6an6d+x9XKDqNnGtixVOnlfy3jK0IxLzC1HCjNKSQ==", + "version": "4.19.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-manifest/-/gatsby-plugin-manifest-4.19.0.tgz", + "integrity": "sha512-BsZDMAUraTGff3VSSRmLkR13DDQWD8WUQ7qdXb8DCDI0Hc0/eOg+9JnxruHElBjH1BcfCppSiFTA27AmEzTcoA==", "requires": { "@babel/runtime": "^7.15.4", - "gatsby-core-utils": "^3.18.1", - "gatsby-plugin-utils": "^3.12.1", + "gatsby-core-utils": "^3.19.0", + "gatsby-plugin-utils": "^3.13.0", "semver": "^7.3.7", "sharp": "^0.30.3" } @@ -7654,9 +7654,9 @@ } }, "gatsby-plugin-react-helmet": { - "version": "5.18.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-react-helmet/-/gatsby-plugin-react-helmet-5.18.0.tgz", - "integrity": "sha512-H55KLoKZ/LeWWILYmkbt+L1c6E2ViurN16GyGOOzIg2LGjd7OXu9zy9H9lMKrkNpn/HUXhyUilYHqVeo5fve1A==", + "version": "5.19.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-react-helmet/-/gatsby-plugin-react-helmet-5.19.0.tgz", + "integrity": "sha512-XXrJYfHqoaUe57oAF+/ljPHncrvYk0UonES3aUwynbWsR8UXhQpdbwqIOYZPGQgPsc1X55Kzdo+/3pU1gA9ajQ==", "requires": { "@babel/runtime": "^7.15.4" } @@ -7891,15 +7891,15 @@ } }, "gatsby-plugin-utils": { - "version": "3.12.1", - "resolved": "https://registry.npmjs.org/gatsby-plugin-utils/-/gatsby-plugin-utils-3.12.1.tgz", - "integrity": "sha512-Rx7/MFtiJ+pyvPLqCPj5beyMN6qOx3EYMrOqmvrWJaM32nxMfHZqUqxGruufyFNVe6edfRuNuXcKaPXlGlyexA==", + "version": "3.13.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-utils/-/gatsby-plugin-utils-3.13.0.tgz", + "integrity": "sha512-iFFWswld/Nu8IrSCikZXC4/cud9txv3ikjkQiGLccJStS9VH2rSY4XEMNRqsKN9Spe3pFBOr/97yYUaPhZaQWg==", "requires": { "@babel/runtime": "^7.15.4", "@gatsbyjs/potrace": "^2.2.0", "fs-extra": "^10.1.0", - "gatsby-core-utils": "^3.18.1", - "gatsby-sharp": "^0.12.0", + "gatsby-core-utils": "^3.19.0", + "gatsby-sharp": "^0.13.0", "graphql-compose": "^9.0.7", "import-from": "^4.0.0", "joi": "^17.4.2", @@ -7930,9 +7930,9 @@ "integrity": "sha512-+GmHTAfFq/sQWPvl1E8QvApRfxqqamhdqjFo4YloOQRAlDc+e3nMzTzvgj8z3IWqDqlvEfHMnlvQg60E5ThO/A==" }, "gatsby-sharp": { - "version": "0.12.0", - "resolved": "https://registry.npmjs.org/gatsby-sharp/-/gatsby-sharp-0.12.0.tgz", - "integrity": "sha512-dZa/AgxmPzD0vvROEZSuT3IdzAFTxnq1FfLTf9n3mywonvsKYc84zj6nf8TEzBrVrBFAaLvZek4NpVAKWGr4/w==", + "version": "0.13.0", + "resolved": "https://registry.npmjs.org/gatsby-sharp/-/gatsby-sharp-0.13.0.tgz", + "integrity": "sha512-dGuIuWP3rC7hXl/CgkHEY4WQEW+B9Rsg8uo6u+OumuLnLBxD4vTusEIGctVKzlyIxpENEQylQ7w1JKHX9fOy9g==", "requires": { "@types/sharp": "^0.30.0", "sharp": "^0.30.3" @@ -8228,16 +8228,16 @@ } }, "gatsby-transformer-sharp": { - "version": "4.18.1", - "resolved": "https://registry.npmjs.org/gatsby-transformer-sharp/-/gatsby-transformer-sharp-4.18.1.tgz", - "integrity": "sha512-YqY3dWdUmRzhE2DBbOtJygL/bWKFXDQf3ARn6tSEt0WqPRFGLGbsSpT/xU5makHugdO/Wc30x3x85FhwysvH6Q==", + "version": "4.19.0", + "resolved": "https://registry.npmjs.org/gatsby-transformer-sharp/-/gatsby-transformer-sharp-4.19.0.tgz", + "integrity": "sha512-SoY9yGNjC+C+gAfJ//+DqXGBukVKeb4HnobOmkpbugYtLGRwb4AhKOT7eqCn+AK/4+oDDB3ZNNfTUf0vRFQgzA==", "requires": { "@babel/runtime": "^7.15.4", "@gatsbyjs/potrace": "^2.2.0", "bluebird": "^3.7.2", "common-tags": "^1.8.2", "fs-extra": "^10.1.0", - "gatsby-plugin-utils": "^3.12.1", + "gatsby-plugin-utils": "^3.13.0", "probe-image-size": "^7.2.3", "semver": "^7.3.7", "sharp": "^0.30.3" diff --git a/starters/default/package.json b/starters/default/package.json index 52f3716a129e1..5ff8e752d9f64 100644 --- a/starters/default/package.json +++ b/starters/default/package.json @@ -8,12 +8,12 @@ "gatsby": "^4.19.0", "gatsby-plugin-gatsby-cloud": "^4.19.0", "gatsby-plugin-image": "^2.19.0", - "gatsby-plugin-manifest": "^4.18.1", + "gatsby-plugin-manifest": "^4.19.0", "gatsby-plugin-offline": "^5.19.0", - "gatsby-plugin-react-helmet": "^5.18.0", + "gatsby-plugin-react-helmet": "^5.19.0", "gatsby-plugin-sharp": "^4.19.0", "gatsby-source-filesystem": "^4.19.0", - "gatsby-transformer-sharp": "^4.18.1", + "gatsby-transformer-sharp": "^4.19.0", "prop-types": "^15.8.1", "react": "^18.1.0", "react-dom": "^18.1.0", diff --git a/starters/gatsby-starter-wordpress-blog/package-lock.json b/starters/gatsby-starter-wordpress-blog/package-lock.json index 480e9f6f079cb..cecb194358434 100644 --- a/starters/gatsby-starter-wordpress-blog/package-lock.json +++ b/starters/gatsby-starter-wordpress-blog/package-lock.json @@ -10119,9 +10119,9 @@ } }, "gatsby-core-utils": { - "version": "3.18.1", - "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.18.1.tgz", - "integrity": "sha512-sJTxRqizLxYy/tSFk0ydfqEZ3ek1So9HDVUa39F6Oi8XuPCBTFzaAooUvowKGneI5YUbdk5y4VO4ybwVUynntw==", + "version": "3.19.0", + "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.19.0.tgz", + "integrity": "sha512-cjXs9DsXkPZt+UdiLHxtq+rGMGVrcnM0KwkawlruvPchI7lqGNv9CScqlvYPxx1dBhu3zSZS26EBALMlFhyOJA==", "requires": { "@babel/runtime": "^7.15.4", "ci-info": "2.0.0", @@ -10343,13 +10343,13 @@ } }, "gatsby-plugin-manifest": { - "version": "4.18.1", - "resolved": "https://registry.npmjs.org/gatsby-plugin-manifest/-/gatsby-plugin-manifest-4.18.1.tgz", - "integrity": "sha512-LR4S/MCbUP7Fk3A4xwrA9nhIx9RjDTAE5DAXfXMKvnh1f6an6d+x9XKDqNnGtixVOnlfy3jK0IxLzC1HCjNKSQ==", + "version": "4.19.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-manifest/-/gatsby-plugin-manifest-4.19.0.tgz", + "integrity": "sha512-BsZDMAUraTGff3VSSRmLkR13DDQWD8WUQ7qdXb8DCDI0Hc0/eOg+9JnxruHElBjH1BcfCppSiFTA27AmEzTcoA==", "requires": { "@babel/runtime": "^7.15.4", - "gatsby-core-utils": "^3.18.1", - "gatsby-plugin-utils": "^3.12.1", + "gatsby-core-utils": "^3.19.0", + "gatsby-plugin-utils": "^3.13.0", "semver": "^7.3.7", "sharp": "^0.30.3" } @@ -10467,9 +10467,9 @@ } }, "gatsby-plugin-react-helmet": { - "version": "5.18.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-react-helmet/-/gatsby-plugin-react-helmet-5.18.0.tgz", - "integrity": "sha512-H55KLoKZ/LeWWILYmkbt+L1c6E2ViurN16GyGOOzIg2LGjd7OXu9zy9H9lMKrkNpn/HUXhyUilYHqVeo5fve1A==", + "version": "5.19.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-react-helmet/-/gatsby-plugin-react-helmet-5.19.0.tgz", + "integrity": "sha512-XXrJYfHqoaUe57oAF+/ljPHncrvYk0UonES3aUwynbWsR8UXhQpdbwqIOYZPGQgPsc1X55Kzdo+/3pU1gA9ajQ==", "requires": { "@babel/runtime": "^7.15.4" } @@ -10709,15 +10709,15 @@ } }, "gatsby-plugin-utils": { - "version": "3.12.1", - "resolved": "https://registry.npmjs.org/gatsby-plugin-utils/-/gatsby-plugin-utils-3.12.1.tgz", - "integrity": "sha512-Rx7/MFtiJ+pyvPLqCPj5beyMN6qOx3EYMrOqmvrWJaM32nxMfHZqUqxGruufyFNVe6edfRuNuXcKaPXlGlyexA==", + "version": "3.13.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-utils/-/gatsby-plugin-utils-3.13.0.tgz", + "integrity": "sha512-iFFWswld/Nu8IrSCikZXC4/cud9txv3ikjkQiGLccJStS9VH2rSY4XEMNRqsKN9Spe3pFBOr/97yYUaPhZaQWg==", "requires": { "@babel/runtime": "^7.15.4", "@gatsbyjs/potrace": "^2.2.0", "fs-extra": "^10.1.0", - "gatsby-core-utils": "^3.18.1", - "gatsby-sharp": "^0.12.0", + "gatsby-core-utils": "^3.19.0", + "gatsby-sharp": "^0.13.0", "graphql-compose": "^9.0.7", "import-from": "^4.0.0", "joi": "^17.4.2", @@ -10748,9 +10748,9 @@ "integrity": "sha512-+GmHTAfFq/sQWPvl1E8QvApRfxqqamhdqjFo4YloOQRAlDc+e3nMzTzvgj8z3IWqDqlvEfHMnlvQg60E5ThO/A==" }, "gatsby-sharp": { - "version": "0.12.0", - "resolved": "https://registry.npmjs.org/gatsby-sharp/-/gatsby-sharp-0.12.0.tgz", - "integrity": "sha512-dZa/AgxmPzD0vvROEZSuT3IdzAFTxnq1FfLTf9n3mywonvsKYc84zj6nf8TEzBrVrBFAaLvZek4NpVAKWGr4/w==", + "version": "0.13.0", + "resolved": "https://registry.npmjs.org/gatsby-sharp/-/gatsby-sharp-0.13.0.tgz", + "integrity": "sha512-dGuIuWP3rC7hXl/CgkHEY4WQEW+B9Rsg8uo6u+OumuLnLBxD4vTusEIGctVKzlyIxpENEQylQ7w1JKHX9fOy9g==", "requires": { "@types/sharp": "^0.30.0", "sharp": "^0.30.3" @@ -11233,16 +11233,16 @@ } }, "gatsby-transformer-sharp": { - "version": "4.18.1", - "resolved": "https://registry.npmjs.org/gatsby-transformer-sharp/-/gatsby-transformer-sharp-4.18.1.tgz", - "integrity": "sha512-YqY3dWdUmRzhE2DBbOtJygL/bWKFXDQf3ARn6tSEt0WqPRFGLGbsSpT/xU5makHugdO/Wc30x3x85FhwysvH6Q==", + "version": "4.19.0", + "resolved": "https://registry.npmjs.org/gatsby-transformer-sharp/-/gatsby-transformer-sharp-4.19.0.tgz", + "integrity": "sha512-SoY9yGNjC+C+gAfJ//+DqXGBukVKeb4HnobOmkpbugYtLGRwb4AhKOT7eqCn+AK/4+oDDB3ZNNfTUf0vRFQgzA==", "requires": { "@babel/runtime": "^7.15.4", "@gatsbyjs/potrace": "^2.2.0", "bluebird": "^3.7.2", "common-tags": "^1.8.2", "fs-extra": "^10.1.0", - "gatsby-plugin-utils": "^3.12.1", + "gatsby-plugin-utils": "^3.13.0", "probe-image-size": "^7.2.3", "semver": "^7.3.7", "sharp": "^0.30.3" diff --git a/starters/gatsby-starter-wordpress-blog/package.json b/starters/gatsby-starter-wordpress-blog/package.json index 9f2dfe96cd11e..24ca9fd26e987 100644 --- a/starters/gatsby-starter-wordpress-blog/package.json +++ b/starters/gatsby-starter-wordpress-blog/package.json @@ -12,12 +12,12 @@ "gatsby": "^4.19.0", "gatsby-image": "^3.11.0", "gatsby-plugin-image": "^2.19.0", - "gatsby-plugin-manifest": "^4.18.1", + "gatsby-plugin-manifest": "^4.19.0", "gatsby-plugin-offline": "^5.19.0", - "gatsby-plugin-react-helmet": "^5.18.0", + "gatsby-plugin-react-helmet": "^5.19.0", "gatsby-plugin-sharp": "^4.19.0", "gatsby-source-wordpress": "^6.19.0", - "gatsby-transformer-sharp": "^4.18.1", + "gatsby-transformer-sharp": "^4.19.0", "html-react-parser": "^0.14.3", "lodash": "^4.17.21", "react": "^16.12.0", From b3f434b38b9a5cbcbfb6d4afca260b39cdeb76a4 Mon Sep 17 00:00:00 2001 From: Lennart Date: Tue, 19 Jul 2022 13:43:14 +0200 Subject: [PATCH 46/90] fix(gatsby-plugin-image): Correct type for getImage (#36169) * update types * allow null --- packages/gatsby-plugin-image/src/components/hooks.ts | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/packages/gatsby-plugin-image/src/components/hooks.ts b/packages/gatsby-plugin-image/src/components/hooks.ts index ce2bd9c5f99fd..038823ce15f97 100644 --- a/packages/gatsby-plugin-image/src/components/hooks.ts +++ b/packages/gatsby-plugin-image/src/components/hooks.ts @@ -27,8 +27,8 @@ export type IGatsbyImageDataParent = T & { export type IGatsbyImageParent = T & { gatsbyImage: IGatsbyImageData } -export type FileNode = Node & { - childImageSharp?: IGatsbyImageDataParent +export type FileNode = Partial & { + childImageSharp?: IGatsbyImageDataParent> } const isGatsbyImageData = ( @@ -54,7 +54,10 @@ export type ImageDataLike = | IGatsbyImageParent | IGatsbyImageData -export const getImage = (node: ImageDataLike): IGatsbyImageData | undefined => { +export const getImage = ( + node: ImageDataLike | null +): IGatsbyImageData | undefined => { + // This checks both for gatsbyImageData and gatsbyImage if (isGatsbyImageData(node)) { return node } From 7d3988c2ef2ecf56c4b54488b8505c386f031ade Mon Sep 17 00:00:00 2001 From: Ward Peeters Date: Tue, 19 Jul 2022 16:27:43 +0200 Subject: [PATCH 47/90] fix(gatsby): add GATSBY_CLOUD_IMAGE_CDN (#36172) --- packages/gatsby/src/schema/graphql-engine/bundle-webpack.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/packages/gatsby/src/schema/graphql-engine/bundle-webpack.ts b/packages/gatsby/src/schema/graphql-engine/bundle-webpack.ts index 3af1acba20828..8caeda7101bcd 100644 --- a/packages/gatsby/src/schema/graphql-engine/bundle-webpack.ts +++ b/packages/gatsby/src/schema/graphql-engine/bundle-webpack.ts @@ -180,10 +180,12 @@ export async function createGraphqlEngineBundle( }, }, plugins: [ + new webpack.EnvironmentPlugin([`GATSBY_CLOUD_IMAGE_CDN`]), new webpack.DefinePlugin({ // "process.env.GATSBY_LOGGER": JSON.stringify(`yurnalist`), "process.env.GATSBY_EXPERIMENTAL_LMDB_STORE": `true`, "process.env.GATSBY_SKIP_WRITING_SCHEMA_TO_FILE": `true`, + "process.env.NODE_ENV": JSON.stringify(`production`), SCHEMA_SNAPSHOT: JSON.stringify(schemaSnapshotString), "process.env.GATSBY_LOGGER": JSON.stringify(`yurnalist`), }), From ff0a66475fedc9740cf8bf00c6ce6971679f94b4 Mon Sep 17 00:00:00 2001 From: Tyler Barnes Date: Tue, 19 Jul 2022 09:10:00 -0700 Subject: [PATCH 48/90] feat(gatsby-source-wordpress): use env var to disable catch links (#36141) * use env var to disable catch links * Update gatsby-link.md * convert to plugin option instead of env var --- .../docs/features/gatsby-link.md | 25 +++++++++++++++++++ .../docs/plugin-options.md | 19 ++++++++++++++ .../gatsby-source-wordpress/gatsby-config.js | 16 +++++++----- .../steps/declare-plugin-options-schema.js | 11 ++++++++ 4 files changed, 65 insertions(+), 6 deletions(-) diff --git a/packages/gatsby-source-wordpress/docs/features/gatsby-link.md b/packages/gatsby-source-wordpress/docs/features/gatsby-link.md index fefbbe75ef638..617e479214d29 100644 --- a/packages/gatsby-source-wordpress/docs/features/gatsby-link.md +++ b/packages/gatsby-source-wordpress/docs/features/gatsby-link.md @@ -4,4 +4,29 @@ Anchor tag src's in html that are links to your WP instance are automatically re Anchor tags in html that are relative links automatically become `gatsby-link`'s so that navigation via html links are blazing fast. +## `gatsby-plugin-catch-links` + +Because links in html fields are so common in WordPress, `gatsby-source-wordpress` auto-installs `gatsby-plugin-catch-links` for you. In 99% of cases this works well, but for some sites you may need to configure catch-links yourself. You can disable the automatically included version of `gatsby-plugin-catch-links` by setting the `catchLinks` plugin option to `false`. Once it's disabled you can install it yourself and configure its plugin options in your gatsby-config.js + +Example `gatsby-config.js` file: + +```js +module.exports = { + plugins: [ + { + resolve: `gatsby-source-wordpress`, + options: { + catchLinks: false, + }, + }, + { + resolve: `gatsby-plugin-catch-links`, + options: { + // add the options you need here. + }, + }, + ], +} +``` + :point_left: [Back to Features](./index.md) diff --git a/packages/gatsby-source-wordpress/docs/plugin-options.md b/packages/gatsby-source-wordpress/docs/plugin-options.md index 7822a7dad257f..03cfa6aec7937 100644 --- a/packages/gatsby-source-wordpress/docs/plugin-options.md +++ b/packages/gatsby-source-wordpress/docs/plugin-options.md @@ -42,6 +42,7 @@ - [searchAndReplace](#searchandreplace) - [searchAndReplace[].search](#searchandreplacesearch) - [searchAndReplace[].replace](#searchandreplacereplace) +- [catchLinks](#catchlinks) - [html](#html) - [html.useGatsbyImage](#htmlusegatsbyimage) - [html.gatsbyImageOptions](#htmlgatsbyimageoptions) @@ -870,6 +871,24 @@ The replacement string for each regex match. ``` +## catchLinks + +Turns on/off an automatically included copy of gatsby-plugin-catch-links which is used to catch anchor tags in html fields to perform client-side routing instead of full page refreshes. + +**Field type**: `Boolean` + +**Default value**: `true` + +```js +{ + resolve: `gatsby-source-wordpress`, + options: { + catchLinks: false, + }, +} + +``` + ## html Options related to html field processing. diff --git a/packages/gatsby-source-wordpress/gatsby-config.js b/packages/gatsby-source-wordpress/gatsby-config.js index ce0997abc5821..bca71a53726b1 100644 --- a/packages/gatsby-source-wordpress/gatsby-config.js +++ b/packages/gatsby-source-wordpress/gatsby-config.js @@ -1,7 +1,11 @@ -module.exports = { - plugins: [ - `gatsby-plugin-catch-links`, - `gatsby-plugin-image`, - `gatsby-plugin-sharp`, - ], +module.exports = ({ catchLinks = true }) => { + const plugins = [`gatsby-plugin-image`, `gatsby-plugin-sharp`] + + if (catchLinks) { + plugins.push(`gatsby-plugin-catch-links`) + } + + return { + plugins, + } } diff --git a/packages/gatsby-source-wordpress/src/steps/declare-plugin-options-schema.js b/packages/gatsby-source-wordpress/src/steps/declare-plugin-options-schema.js index 6f72692d44a5b..08e6dc4ec6990 100644 --- a/packages/gatsby-source-wordpress/src/steps/declare-plugin-options-schema.js +++ b/packages/gatsby-source-wordpress/src/steps/declare-plugin-options-schema.js @@ -591,6 +591,17 @@ When using this option, be sure to gitignore the wordpress-cache directory in th ], `), }), + catchLinks: Joi.boolean() + .default(true) + .allow(null) + .description( + `Turns on/off an automatically included copy of gatsby-plugin-catch-links which is used to catch anchor tags in html fields to perform client-side routing instead of full page refreshes.` + ) + .meta({ + example: wrapOptions(` + catchLinks: false, + `), + }), html: Joi.object({ useGatsbyImage: Joi.boolean() .default(true) From b5d3a9caeced8bb0d12b964dcee6c9ffe6b3627d Mon Sep 17 00:00:00 2001 From: Christopher Pecoraro Date: Wed, 20 Jul 2022 00:48:23 -0400 Subject: [PATCH 49/90] chore(docs): Typo in 4.19 release notes (#36176) --- docs/docs/reference/release-notes/v4.19/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docs/reference/release-notes/v4.19/index.md b/docs/docs/reference/release-notes/v4.19/index.md index aa56468ef9da9..7964b5a128b59 100644 --- a/docs/docs/reference/release-notes/v4.19/index.md +++ b/docs/docs/reference/release-notes/v4.19/index.md @@ -44,7 +44,7 @@ The `Head` function has to return valid JSX which also means that you can use Re One thing to note is that every page that need to add some tags to document head needs to export or re-export a Head function. You may only do a re-export if the new page needs to have same tags as the previous. -One important difference between Gatsby Head API and solutions like `react-helmet` is that (at the moment) you loose the ability to define global defaults (e.g. in a layout component) and have them automatically applied everywhere. With Gatsby Head API your pages have to export a `Head` function to define meta tags for this specific page. To help with that you can use an SEO component or re-export the `Head` function from somewhere else: +One important difference between Gatsby Head API and solutions like `react-helmet` is that (at the moment) you lose the ability to define global defaults (e.g. in a layout component) and have them automatically applied everywhere. With Gatsby Head API your pages have to export a `Head` function to define meta tags for this specific page. To help with that you can use an SEO component or re-export the `Head` function from somewhere else: ```jsx:title=src/pages/index.jsx import * as React from "react" From 8ca9a4a9207982736c3dbddf3f0d670cf2153f40 Mon Sep 17 00:00:00 2001 From: Khaled Garbaya Date: Wed, 20 Jul 2022 08:03:54 +0200 Subject: [PATCH 50/90] chore: Deploy Button Changes (#35946) Co-authored-by: Lennart --- e2e-tests/contentful/README.md | 4 ---- e2e-tests/development-runtime/README.md | 4 ---- e2e-tests/path-prefix/README.md | 4 ---- e2e-tests/production-runtime/README.md | 4 ---- examples/ecommerce-tutorial-with-stripe/README.md | 2 +- examples/using-shopify/README.md | 6 ------ examples/using-square-payments/README.md | 6 ------ examples/using-type-definitions/README.md | 6 ------ 8 files changed, 1 insertion(+), 35 deletions(-) diff --git a/e2e-tests/contentful/README.md b/e2e-tests/contentful/README.md index 7c89bb0360b88..28a2a27d1f2c9 100644 --- a/e2e-tests/contentful/README.md +++ b/e2e-tests/contentful/README.md @@ -24,7 +24,3 @@ Then you can run it by: cd gatsby-example-site gatsby develop ``` - -## Deploy - -[![Deploy to Netlify](https://www.netlify.com/img/deploy/button.svg)](https://app.netlify.com/start/deploy?repository=https://github.com/gatsbyjs/gatsby-starter-default) diff --git a/e2e-tests/development-runtime/README.md b/e2e-tests/development-runtime/README.md index 5e7b22d66b81d..d47b2c94577d3 100644 --- a/e2e-tests/development-runtime/README.md +++ b/e2e-tests/development-runtime/README.md @@ -91,7 +91,3 @@ Looking for more guidance? Full documentation for Gatsby lives [on the website]( - **For most developers, we recommend starting with our [in-depth tutorial for creating a site with Gatsby](https://www.gatsbyjs.com/tutorial/).** It starts with zero assumptions about your level of ability and walks through every step of the process. - **To dive straight into code samples, head [to our documentation](https://www.gatsbyjs.com/docs/).** In particular, check out the _Guides_, _API Reference_, and _Advanced Tutorials_ sections in the sidebar. - -## 💫 Deploy - -[![Deploy to Netlify](https://www.netlify.com/img/deploy/button.svg)](https://app.netlify.com/start/deploy?repository=https://github.com/gatsbyjs/gatsby-starter-default) diff --git a/e2e-tests/path-prefix/README.md b/e2e-tests/path-prefix/README.md index 7c89bb0360b88..28a2a27d1f2c9 100644 --- a/e2e-tests/path-prefix/README.md +++ b/e2e-tests/path-prefix/README.md @@ -24,7 +24,3 @@ Then you can run it by: cd gatsby-example-site gatsby develop ``` - -## Deploy - -[![Deploy to Netlify](https://www.netlify.com/img/deploy/button.svg)](https://app.netlify.com/start/deploy?repository=https://github.com/gatsbyjs/gatsby-starter-default) diff --git a/e2e-tests/production-runtime/README.md b/e2e-tests/production-runtime/README.md index 7c89bb0360b88..28a2a27d1f2c9 100644 --- a/e2e-tests/production-runtime/README.md +++ b/e2e-tests/production-runtime/README.md @@ -24,7 +24,3 @@ Then you can run it by: cd gatsby-example-site gatsby develop ``` - -## Deploy - -[![Deploy to Netlify](https://www.netlify.com/img/deploy/button.svg)](https://app.netlify.com/start/deploy?repository=https://github.com/gatsbyjs/gatsby-starter-default) diff --git a/examples/ecommerce-tutorial-with-stripe/README.md b/examples/ecommerce-tutorial-with-stripe/README.md index 0997b592f275b..e8cdfa6a36340 100644 --- a/examples/ecommerce-tutorial-with-stripe/README.md +++ b/examples/ecommerce-tutorial-with-stripe/README.md @@ -25,4 +25,4 @@ This is a Gatsby e-commerce example based on https://www.gatsbyjs.com/tutorial/e ### 💫 Build, Preview, and Deploy to Gatsby Cloud -[Deploy to Gatsby Cloud](https://www.gatsbyjs.com/dashboard/deploynow?url=https://github.com/thorsten-stripe/ecommerce-gatsby-tutorial) +[![Deploy to Gatsby](https://www.gatsbyjs.com/deploynow.png "Deploy to Gatsby")](https://www.gatsbyjs.com/dashboard/deploynow?url=https://github.com/thorsten-stripe/ecommerce-gatsby-tutorial) diff --git a/examples/using-shopify/README.md b/examples/using-shopify/README.md index d57e2d794fa7e..9cb236406a443 100644 --- a/examples/using-shopify/README.md +++ b/examples/using-shopify/README.md @@ -89,10 +89,4 @@ Looking for more guidance? Full documentation for Gatsby lives [on the website]( - **To dive straight into code samples, head [to our documentation](https://www.gatsbyjs.com/docs/).** In particular, check out the _Guides_, _API Reference_, and _Advanced Tutorials_ sections in the sidebar. -## 💫 Deploy - -[Build, Deploy, and Host On The Only Cloud Built For Gatsby](https://www.gatsbyjs.com/cloud/) - -Gatsby Cloud is an end-to-end cloud platform specifically built for the Gatsby framework that combines a modern developer experience with an optimized, global edge network. - diff --git a/examples/using-square-payments/README.md b/examples/using-square-payments/README.md index 792e14be06a55..407d7c8a10b3e 100644 --- a/examples/using-square-payments/README.md +++ b/examples/using-square-payments/README.md @@ -90,10 +90,4 @@ Looking for more guidance? Full documentation for Gatsby lives [on the website]( - **To dive straight into code samples, head [to our documentation](https://www.gatsbyjs.com/docs/).** In particular, check out the _Guides_, _API Reference_, and _Advanced Tutorials_ sections in the sidebar. -## 💫 Deploy - -[Build, Deploy, and Host On The Only Cloud Built For Gatsby](https://www.gatsbyjs.com/cloud/) - -Gatsby Cloud is an end-to-end cloud platform specifically built for the Gatsby framework that combines a modern developer experience with an optimized, global edge network. - diff --git a/examples/using-type-definitions/README.md b/examples/using-type-definitions/README.md index 792e14be06a55..407d7c8a10b3e 100644 --- a/examples/using-type-definitions/README.md +++ b/examples/using-type-definitions/README.md @@ -90,10 +90,4 @@ Looking for more guidance? Full documentation for Gatsby lives [on the website]( - **To dive straight into code samples, head [to our documentation](https://www.gatsbyjs.com/docs/).** In particular, check out the _Guides_, _API Reference_, and _Advanced Tutorials_ sections in the sidebar. -## 💫 Deploy - -[Build, Deploy, and Host On The Only Cloud Built For Gatsby](https://www.gatsbyjs.com/cloud/) - -Gatsby Cloud is an end-to-end cloud platform specifically built for the Gatsby framework that combines a modern developer experience with an optimized, global edge network. - From f35fda74ad4fa3f477606e28c9aa45067d4105fe Mon Sep 17 00:00:00 2001 From: Ward Peeters Date: Wed, 20 Jul 2022 09:57:29 +0200 Subject: [PATCH 51/90] fix(gatsby): use host param for express again (#36186) --- packages/gatsby/src/utils/start-server.ts | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/packages/gatsby/src/utils/start-server.ts b/packages/gatsby/src/utils/start-server.ts index 2204e63336ac0..80e8c8d92b27f 100644 --- a/packages/gatsby/src/utils/start-server.ts +++ b/packages/gatsby/src/utils/start-server.ts @@ -800,12 +800,8 @@ export async function startServer( * Set up the HTTP server and socket.io. **/ const server = new http.Server(app) - const socket = websocketManager.init({ server }) - - // hardcoded `localhost`, because host should match `target` we set - // in http proxy in `develop-proxy` - const listener = server.listen(program.port, `localhost`) + const listener = server.listen(program.port, program.host) if (!process.env.GATSBY_EXPERIMENTAL_DEV_SSR) { const chokidar = require(`chokidar`) From 49a8fc02a8dbe49a02d62132d5fb7b7fd85cdf5d Mon Sep 17 00:00:00 2001 From: Lennart Date: Wed, 20 Jul 2022 12:12:52 +0200 Subject: [PATCH 52/90] chore(gatsby-parcel-config): Adjust peerDep (#36185) --- packages/gatsby-parcel-config/package.json | 19 +------------------ 1 file changed, 1 insertion(+), 18 deletions(-) diff --git a/packages/gatsby-parcel-config/package.json b/packages/gatsby-parcel-config/package.json index 2f6ee09d4c927..9923f79b43cd4 100644 --- a/packages/gatsby-parcel-config/package.json +++ b/packages/gatsby-parcel-config/package.json @@ -32,25 +32,8 @@ "@parcel/transformer-raw": "2.6.2", "@parcel/transformer-react-refresh-wrap": "2.6.2" }, - "parcelDependencies": { - "@gatsbyjs/parcel-namer-relative-to-cwd": "1.0.0-next.0", - "@parcel/optimizer-data-url": "2.6.0", - "@parcel/packager-raw-url": "2.6.0", - "@parcel/packager-ts": "2.6.0", - "@parcel/packager-xml": "2.6.0", - "@parcel/transformer-graphql": "2.6.0", - "@parcel/transformer-inline-string": "2.6.0", - "@parcel/transformer-jsonld": "2.6.0", - "@parcel/transformer-mdx": "2.6.0", - "@parcel/transformer-toml": "2.6.0", - "@parcel/transformer-typescript-types": "2.6.0", - "@parcel/transformer-webmanifest": "2.6.0", - "@parcel/transformer-worklet": "2.6.0", - "@parcel/transformer-xml": "2.6.0", - "@parcel/transformer-yaml": "2.6.0" - }, "peerDependencies": { - "@parcel/core": "2.6.0" + "@parcel/core": "^2.0.0" }, "scripts": { "version": "node ../../scripts/pin-version.js" From d42243cdb7739ed261be94c4be40bb1b055af3b7 Mon Sep 17 00:00:00 2001 From: Jude Agboola Date: Wed, 20 Jul 2022 11:45:10 +0100 Subject: [PATCH 53/90] fix(gatsby): prevent escaping textContent for scripts (#36174) * prevent escaping textContent for