hash
stringlengths 40
40
| date
stringdate 2016-07-06 04:11:39
2024-11-19 20:41:05
| author
stringlengths 2
35
| commit_message
stringlengths 13
137
| is_merge
bool 1
class | masked_commit_message
stringlengths 6
127
| type
stringclasses 7
values | git_diff
stringlengths 104
6.64M
⌀ |
|---|---|---|---|---|---|---|---|
bb4284044e2025df483dd7c52df19dc20ecc7f8c
|
2022-12-05 14:59:30
|
Lennart
|
fix: Remove obsolete `unstable_onPluginInit` codepaths (#37176)
| false
|
Remove obsolete `unstable_onPluginInit` codepaths (#37176)
|
fix
|
diff --git a/packages/gatsby-plugin-page-creator/src/gatsby-node.ts b/packages/gatsby-plugin-page-creator/src/gatsby-node.ts
index 38c5070a8982b..4af6ed6273629 100644
--- a/packages/gatsby-plugin-page-creator/src/gatsby-node.ts
+++ b/packages/gatsby-plugin-page-creator/src/gatsby-node.ts
@@ -32,19 +32,6 @@ import { getCollectionRouteParams } from "./get-collection-route-params"
import { reverseLookupParams } from "./extract-query"
import { getMatchPath } from "gatsby-core-utils/match-path"
-let coreSupportsOnPluginInit: `unstable` | `stable` | undefined
-
-try {
- const { isGatsbyNodeLifecycleSupported } = require(`gatsby-plugin-utils`)
- if (isGatsbyNodeLifecycleSupported(`onPluginInit`)) {
- coreSupportsOnPluginInit = `stable`
- } else if (isGatsbyNodeLifecycleSupported(`unstable_onPluginInit`)) {
- coreSupportsOnPluginInit = `unstable`
- }
-} catch (e) {
- console.error(`Could not check if Gatsby supports onPluginInit lifecycle`)
-}
-
const knownCollections = new Map()
export function createPages(_: CreatePagesArgs, pluginOptions: IOptions): void {
@@ -419,7 +406,7 @@ export function setFieldsOnGraphQLNodeType(
}
}
-async function initializePlugin(
+export async function onPluginInit(
{ reporter }: ParentSpanPluginArgs,
{ path: pagesPath }: IOptions
): Promise<void> {
@@ -463,12 +450,3 @@ async function initializePlugin(
})
}
}
-
-if (coreSupportsOnPluginInit === `stable`) {
- // need to conditionally export otherwise it throws an error for older versions
- exports.onPluginInit = initializePlugin
-} else if (coreSupportsOnPluginInit === `unstable`) {
- exports.unstable_onPluginInit = initializePlugin
-} else {
- exports.onPreInit = initializePlugin
-}
diff --git a/packages/gatsby-source-shopify/src/gatsby-node.ts b/packages/gatsby-source-shopify/src/gatsby-node.ts
index 0dd191422ff52..8ebcf91970a77 100644
--- a/packages/gatsby-source-shopify/src/gatsby-node.ts
+++ b/packages/gatsby-source-shopify/src/gatsby-node.ts
@@ -1,5 +1,4 @@
-import { NodePluginArgs } from "gatsby"
-
+import type { GatsbyNode } from "gatsby"
import { ERROR_MAP } from "./error-map"
export { sourceNodes } from "./source-nodes"
@@ -7,28 +6,8 @@ export { createResolvers } from "./create-resolvers"
export { pluginOptionsSchema } from "./plugin-options-schema"
export { createSchemaCustomization } from "./create-schema-customization"
-const initializePlugin = ({ reporter }: NodePluginArgs): void => {
+export const onPluginInit: GatsbyNode["onPluginInit"] = ({
+ reporter,
+}): void => {
reporter.setErrorMap(ERROR_MAP)
}
-
-let coreSupportsOnPluginInit: `unstable` | `stable` | undefined
-
-try {
- const { isGatsbyNodeLifecycleSupported } = require(`gatsby-plugin-utils`)
- if (isGatsbyNodeLifecycleSupported(`onPluginInit`)) {
- coreSupportsOnPluginInit = `stable`
- } else if (isGatsbyNodeLifecycleSupported(`unstable_onPluginInit`)) {
- coreSupportsOnPluginInit = `unstable`
- }
-} catch (e) {
- console.error(`Could not check if Gatsby supports onPluginInit lifecycle`)
-}
-
-if (coreSupportsOnPluginInit === `unstable`) {
- // need to conditionally export otherwise it throws an error for older versions
- exports.unstable_onPluginInit = initializePlugin
-} else if (coreSupportsOnPluginInit === `stable`) {
- exports.onPluginInit = initializePlugin
-} else {
- exports.onPreInit = initializePlugin
-}
diff --git a/packages/gatsby-source-wordpress/src/gatsby-node.ts b/packages/gatsby-source-wordpress/src/gatsby-node.ts
index 9c06eb65040db..15c704eee5418 100644
--- a/packages/gatsby-source-wordpress/src/gatsby-node.ts
+++ b/packages/gatsby-source-wordpress/src/gatsby-node.ts
@@ -1,7 +1,7 @@
import { runApiSteps, findApiName } from "./utils/run-steps"
import * as steps from "./steps"
-const pluginInitApiName = findApiName(`onPluginInit|unstable_onPluginInit`)
+const pluginInitApiName = findApiName(`onPluginInit`)
exports[pluginInitApiName] = runApiSteps(
[
diff --git a/packages/gatsby-source-wordpress/src/utils/run-steps.ts b/packages/gatsby-source-wordpress/src/utils/run-steps.ts
index 071dce3e015a8..f69169f57ab9d 100644
--- a/packages/gatsby-source-wordpress/src/utils/run-steps.ts
+++ b/packages/gatsby-source-wordpress/src/utils/run-steps.ts
@@ -76,7 +76,7 @@ const runSteps = async (
* Takes in a pipe delimited string of Gatsby Node API names and returns the first supported API name as a string
*
* Example input: "onPluginInit|unstable_onPluginInit"
- * Example output: "unstable_onPluginInit"
+ * Example output: "onPluginInit"
*/
const findApiName = (initialApiNameString: string): string => {
if (!initialApiNameString.includes(`|`)) {
diff --git a/packages/gatsby/src/bootstrap/load-plugins/__tests__/__snapshots__/load-plugins.ts.snap b/packages/gatsby/src/bootstrap/load-plugins/__tests__/__snapshots__/load-plugins.ts.snap
index e1865c1370964..b53817bf5865e 100644
--- a/packages/gatsby/src/bootstrap/load-plugins/__tests__/__snapshots__/load-plugins.ts.snap
+++ b/packages/gatsby/src/bootstrap/load-plugins/__tests__/__snapshots__/load-plugins.ts.snap
@@ -110,8 +110,8 @@ Array [
"nodeAPIs": Array [
"createPages",
"createPagesStatefully",
- "setFieldsOnGraphQLNodeType",
"onPluginInit",
+ "setFieldsOnGraphQLNodeType",
],
"pluginOptions": Object {
"path": "<PROJECT_ROOT>/packages/gatsby/src/internal-plugins/dev-404-page/src/pages",
@@ -132,8 +132,8 @@ Array [
"nodeAPIs": Array [
"createPages",
"createPagesStatefully",
- "setFieldsOnGraphQLNodeType",
"onPluginInit",
+ "setFieldsOnGraphQLNodeType",
],
"pluginOptions": Object {
"path": "<PROJECT_ROOT>/packages/gatsby/src/internal-plugins/load-babel-config/src/pages",
@@ -154,8 +154,8 @@ Array [
"nodeAPIs": Array [
"createPages",
"createPagesStatefully",
- "setFieldsOnGraphQLNodeType",
"onPluginInit",
+ "setFieldsOnGraphQLNodeType",
],
"pluginOptions": Object {
"path": "<PROJECT_ROOT>/packages/gatsby/src/internal-plugins/internal-data-bridge/src/pages",
@@ -176,8 +176,8 @@ Array [
"nodeAPIs": Array [
"createPages",
"createPagesStatefully",
- "setFieldsOnGraphQLNodeType",
"onPluginInit",
+ "setFieldsOnGraphQLNodeType",
],
"pluginOptions": Object {
"path": "<PROJECT_ROOT>/packages/gatsby/src/internal-plugins/prod-404-500/src/pages",
@@ -198,8 +198,8 @@ Array [
"nodeAPIs": Array [
"createPages",
"createPagesStatefully",
- "setFieldsOnGraphQLNodeType",
"onPluginInit",
+ "setFieldsOnGraphQLNodeType",
],
"pluginOptions": Object {
"path": "<PROJECT_ROOT>/packages/gatsby/src/internal-plugins/webpack-theme-component-shadowing/src/pages",
@@ -220,8 +220,8 @@ Array [
"nodeAPIs": Array [
"createPages",
"createPagesStatefully",
- "setFieldsOnGraphQLNodeType",
"onPluginInit",
+ "setFieldsOnGraphQLNodeType",
],
"pluginOptions": Object {
"path": "<PROJECT_ROOT>/packages/gatsby/src/internal-plugins/bundle-optimisations/src/pages",
@@ -242,8 +242,8 @@ Array [
"nodeAPIs": Array [
"createPages",
"createPagesStatefully",
- "setFieldsOnGraphQLNodeType",
"onPluginInit",
+ "setFieldsOnGraphQLNodeType",
],
"pluginOptions": Object {
"path": "<PROJECT_ROOT>/packages/gatsby/src/internal-plugins/functions/src/pages",
@@ -300,8 +300,8 @@ Array [
"nodeAPIs": Array [
"createPages",
"createPagesStatefully",
- "setFieldsOnGraphQLNodeType",
"onPluginInit",
+ "setFieldsOnGraphQLNodeType",
],
"pluginOptions": Object {
"path": "/src/pages",
@@ -458,8 +458,8 @@ Array [
"nodeAPIs": Array [
"createPages",
"createPagesStatefully",
- "setFieldsOnGraphQLNodeType",
"onPluginInit",
+ "setFieldsOnGraphQLNodeType",
],
"pluginOptions": Object {
"path": "<PROJECT_ROOT>/packages/gatsby/src/internal-plugins/dev-404-page/src/pages",
@@ -480,8 +480,8 @@ Array [
"nodeAPIs": Array [
"createPages",
"createPagesStatefully",
- "setFieldsOnGraphQLNodeType",
"onPluginInit",
+ "setFieldsOnGraphQLNodeType",
],
"pluginOptions": Object {
"path": "<PROJECT_ROOT>/packages/gatsby/src/internal-plugins/load-babel-config/src/pages",
@@ -502,8 +502,8 @@ Array [
"nodeAPIs": Array [
"createPages",
"createPagesStatefully",
- "setFieldsOnGraphQLNodeType",
"onPluginInit",
+ "setFieldsOnGraphQLNodeType",
],
"pluginOptions": Object {
"path": "<PROJECT_ROOT>/packages/gatsby/src/internal-plugins/internal-data-bridge/src/pages",
@@ -524,8 +524,8 @@ Array [
"nodeAPIs": Array [
"createPages",
"createPagesStatefully",
- "setFieldsOnGraphQLNodeType",
"onPluginInit",
+ "setFieldsOnGraphQLNodeType",
],
"pluginOptions": Object {
"path": "<PROJECT_ROOT>/packages/gatsby/src/internal-plugins/prod-404-500/src/pages",
@@ -546,8 +546,8 @@ Array [
"nodeAPIs": Array [
"createPages",
"createPagesStatefully",
- "setFieldsOnGraphQLNodeType",
"onPluginInit",
+ "setFieldsOnGraphQLNodeType",
],
"pluginOptions": Object {
"path": "<PROJECT_ROOT>/packages/gatsby/src/internal-plugins/webpack-theme-component-shadowing/src/pages",
@@ -568,8 +568,8 @@ Array [
"nodeAPIs": Array [
"createPages",
"createPagesStatefully",
- "setFieldsOnGraphQLNodeType",
"onPluginInit",
+ "setFieldsOnGraphQLNodeType",
],
"pluginOptions": Object {
"path": "<PROJECT_ROOT>/packages/gatsby/src/internal-plugins/bundle-optimisations/src/pages",
@@ -590,8 +590,8 @@ Array [
"nodeAPIs": Array [
"createPages",
"createPagesStatefully",
- "setFieldsOnGraphQLNodeType",
"onPluginInit",
+ "setFieldsOnGraphQLNodeType",
],
"pluginOptions": Object {
"path": "<PROJECT_ROOT>/packages/gatsby/src/internal-plugins/functions/src/pages",
@@ -612,8 +612,8 @@ Array [
"nodeAPIs": Array [
"createPages",
"createPagesStatefully",
- "setFieldsOnGraphQLNodeType",
"onPluginInit",
+ "setFieldsOnGraphQLNodeType",
],
"pluginOptions": Object {
"path": "__TEST__/src/pages",
@@ -670,8 +670,8 @@ Array [
"nodeAPIs": Array [
"createPages",
"createPagesStatefully",
- "setFieldsOnGraphQLNodeType",
"onPluginInit",
+ "setFieldsOnGraphQLNodeType",
],
"pluginOptions": Object {
"path": "/src/pages",
@@ -816,8 +816,8 @@ Array [
"nodeAPIs": Array [
"createPages",
"createPagesStatefully",
- "setFieldsOnGraphQLNodeType",
"onPluginInit",
+ "setFieldsOnGraphQLNodeType",
],
"pluginOptions": Object {
"ignore": Array [
@@ -840,8 +840,8 @@ Array [
"nodeAPIs": Array [
"createPages",
"createPagesStatefully",
- "setFieldsOnGraphQLNodeType",
"onPluginInit",
+ "setFieldsOnGraphQLNodeType",
],
"pluginOptions": Object {
"path": "<PROJECT_ROOT>/packages/gatsby/src/internal-plugins/dev-404-page/src/pages",
@@ -862,8 +862,8 @@ Array [
"nodeAPIs": Array [
"createPages",
"createPagesStatefully",
- "setFieldsOnGraphQLNodeType",
"onPluginInit",
+ "setFieldsOnGraphQLNodeType",
],
"pluginOptions": Object {
"path": "<PROJECT_ROOT>/packages/gatsby/src/internal-plugins/load-babel-config/src/pages",
@@ -884,8 +884,8 @@ Array [
"nodeAPIs": Array [
"createPages",
"createPagesStatefully",
- "setFieldsOnGraphQLNodeType",
"onPluginInit",
+ "setFieldsOnGraphQLNodeType",
],
"pluginOptions": Object {
"path": "<PROJECT_ROOT>/packages/gatsby/src/internal-plugins/internal-data-bridge/src/pages",
@@ -906,8 +906,8 @@ Array [
"nodeAPIs": Array [
"createPages",
"createPagesStatefully",
- "setFieldsOnGraphQLNodeType",
"onPluginInit",
+ "setFieldsOnGraphQLNodeType",
],
"pluginOptions": Object {
"path": "<PROJECT_ROOT>/packages/gatsby/src/internal-plugins/prod-404-500/src/pages",
@@ -928,8 +928,8 @@ Array [
"nodeAPIs": Array [
"createPages",
"createPagesStatefully",
- "setFieldsOnGraphQLNodeType",
"onPluginInit",
+ "setFieldsOnGraphQLNodeType",
],
"pluginOptions": Object {
"path": "<PROJECT_ROOT>/packages/gatsby/src/internal-plugins/webpack-theme-component-shadowing/src/pages",
@@ -950,8 +950,8 @@ Array [
"nodeAPIs": Array [
"createPages",
"createPagesStatefully",
- "setFieldsOnGraphQLNodeType",
"onPluginInit",
+ "setFieldsOnGraphQLNodeType",
],
"pluginOptions": Object {
"path": "<PROJECT_ROOT>/packages/gatsby/src/internal-plugins/bundle-optimisations/src/pages",
@@ -972,8 +972,8 @@ Array [
"nodeAPIs": Array [
"createPages",
"createPagesStatefully",
- "setFieldsOnGraphQLNodeType",
"onPluginInit",
+ "setFieldsOnGraphQLNodeType",
],
"pluginOptions": Object {
"path": "<PROJECT_ROOT>/packages/gatsby/src/internal-plugins/functions/src/pages",
@@ -994,8 +994,8 @@ Array [
"nodeAPIs": Array [
"createPages",
"createPagesStatefully",
- "setFieldsOnGraphQLNodeType",
"onPluginInit",
+ "setFieldsOnGraphQLNodeType",
],
"pluginOptions": Object {
"path": "<PROJECT_ROOT>/packages/gatsby-plugin-page-creator/src/pages",
@@ -1052,8 +1052,8 @@ Array [
"nodeAPIs": Array [
"createPages",
"createPagesStatefully",
- "setFieldsOnGraphQLNodeType",
"onPluginInit",
+ "setFieldsOnGraphQLNodeType",
],
"pluginOptions": Object {
"path": "/src/pages",
|
fc9229d34827eefa4e9e33501051bc7bd5939ec2
|
2018-10-10 21:55:13
|
Selvaganesh
|
feat(docs): Add service worker doc (#8947)
| false
|
Add service worker doc (#8947)
|
feat
|
diff --git a/docs/docs/add-a-service-worker.md b/docs/docs/add-a-service-worker.md
new file mode 100644
index 0000000000000..f928423db0505
--- /dev/null
+++ b/docs/docs/add-a-service-worker.md
@@ -0,0 +1,32 @@
+---
+title: Add 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 awesome plugin interface to create and load a service worker into your site [gatsby-plugin-offline](https://www.npmjs.com/package/gatsby-plugin-offline).
+
+We recommend using 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 --save gatsby-plugin-offline`
+
+Add this plugin to your `gatsby-config.js`
+
+```javascript
+// In your 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/www/src/data/sidebars/doc-links.yaml b/www/src/data/sidebars/doc-links.yaml
index 7b3b624e72e7f..6d3692224aced 100644
--- a/www/src/data/sidebars/doc-links.yaml
+++ b/www/src/data/sidebars/doc-links.yaml
@@ -236,6 +236,8 @@
link: /docs/add-a-manifest-file/
- title: Add Offline Support
link: /docs/add-offline-support/
+ - title: Add a Service Worker
+ link: /docs/add-a-service-worker/
- title: Add Page Metadata
link: /docs/add-page-metadata/
- title: Search Engine Optimization (SEO)
|
c9af5b58eec4b9c7b97a592a4fea350468b6b513
|
2019-09-16 17:58:43
|
Ward Peeters
|
chore(release): Publish
| false
|
Publish
|
chore
|
diff --git a/packages/gatsby-graphiql-explorer/CHANGELOG.md b/packages/gatsby-graphiql-explorer/CHANGELOG.md
index a467a1b97bad9..8869f85bce1d7 100644
--- a/packages/gatsby-graphiql-explorer/CHANGELOG.md
+++ b/packages/gatsby-graphiql-explorer/CHANGELOG.md
@@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [0.2.16](https://github.com/gatsbyjs/gatsby/compare/[email protected]@0.2.16) (2019-09-16)
+
+**Note:** Version bump only for package gatsby-graphiql-explorer
+
## [0.2.15](https://github.com/gatsbyjs/gatsby/compare/[email protected]@0.2.15) (2019-09-13)
### Bug Fixes
diff --git a/packages/gatsby-graphiql-explorer/package.json b/packages/gatsby-graphiql-explorer/package.json
index 252922fee7dce..c18a0c4fbae3d 100644
--- a/packages/gatsby-graphiql-explorer/package.json
+++ b/packages/gatsby-graphiql-explorer/package.json
@@ -1,6 +1,6 @@
{
"name": "gatsby-graphiql-explorer",
- "version": "0.2.15",
+ "version": "0.2.16",
"description": "GraphiQL IDE with custom features for Gatsby users",
"main": "index.js",
"scripts": {
diff --git a/packages/gatsby-plugin-create-client-paths/CHANGELOG.md b/packages/gatsby-plugin-create-client-paths/CHANGELOG.md
index 9fe9ca51cab9a..23ac6f3e270e8 100644
--- a/packages/gatsby-plugin-create-client-paths/CHANGELOG.md
+++ b/packages/gatsby-plugin-create-client-paths/CHANGELOG.md
@@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [2.1.8](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-create-client-paths@[email protected]) (2019-09-16)
+
+**Note:** Version bump only for package gatsby-plugin-create-client-paths
+
## [2.1.7](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-create-client-paths@[email protected]) (2019-09-09)
**Note:** Version bump only for package gatsby-plugin-create-client-paths
diff --git a/packages/gatsby-plugin-create-client-paths/package.json b/packages/gatsby-plugin-create-client-paths/package.json
index fad8f5294f08d..ffaa29c9de20b 100644
--- a/packages/gatsby-plugin-create-client-paths/package.json
+++ b/packages/gatsby-plugin-create-client-paths/package.json
@@ -1,7 +1,7 @@
{
"name": "gatsby-plugin-create-client-paths",
"description": "Gatsby-plugin for creating paths that exist only on the client",
- "version": "2.1.7",
+ "version": "2.1.8",
"author": "[email protected]",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
diff --git a/packages/gatsby-plugin-guess-js/CHANGELOG.md b/packages/gatsby-plugin-guess-js/CHANGELOG.md
index 1d1010da61675..8ca5448ad5f7b 100644
--- a/packages/gatsby-plugin-guess-js/CHANGELOG.md
+++ b/packages/gatsby-plugin-guess-js/CHANGELOG.md
@@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [1.1.12](https://github.com/gatsbyjs/gatsby/compare/[email protected]@1.1.12) (2019-09-16)
+
+### Bug Fixes
+
+- update minor updates in packages except react, babel and eslint ([#17623](https://github.com/gatsbyjs/gatsby/issues/17623)) ([5bafdff](https://github.com/gatsbyjs/gatsby/commit/5bafdff))
+
## [1.1.11](https://github.com/gatsbyjs/gatsby/compare/[email protected]@1.1.11) (2019-09-13)
### Bug Fixes
diff --git a/packages/gatsby-plugin-guess-js/package.json b/packages/gatsby-plugin-guess-js/package.json
index a1a82d9e3ec59..b814cb8d54a52 100644
--- a/packages/gatsby-plugin-guess-js/package.json
+++ b/packages/gatsby-plugin-guess-js/package.json
@@ -1,6 +1,6 @@
{
"name": "gatsby-plugin-guess-js",
- "version": "1.1.11",
+ "version": "1.1.12",
"description": "Gatsby plugin providing drop-in integration with Guess.js to enabling using machine learning and analytics data to power prefetching",
"main": "index.js",
"scripts": {
diff --git a/packages/gatsby-plugin-mdx/CHANGELOG.md b/packages/gatsby-plugin-mdx/CHANGELOG.md
index 2ab77fda1f2db..be8ecafbc231e 100644
--- a/packages/gatsby-plugin-mdx/CHANGELOG.md
+++ b/packages/gatsby-plugin-mdx/CHANGELOG.md
@@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [1.0.42](https://github.com/gatsbyjs/gatsby/compare/[email protected]@1.0.42) (2019-09-16)
+
+### Bug Fixes
+
+- update minor updates in packages except react, babel and eslint ([#17623](https://github.com/gatsbyjs/gatsby/issues/17623)) ([5bafdff](https://github.com/gatsbyjs/gatsby/commit/5bafdff))
+
## [1.0.41](https://github.com/gatsbyjs/gatsby/compare/[email protected]@1.0.41) (2019-09-10)
**Note:** Version bump only for package gatsby-plugin-mdx
diff --git a/packages/gatsby-plugin-mdx/package.json b/packages/gatsby-plugin-mdx/package.json
index 9dc0d74623a28..f61858dd040ad 100644
--- a/packages/gatsby-plugin-mdx/package.json
+++ b/packages/gatsby-plugin-mdx/package.json
@@ -1,6 +1,6 @@
{
"name": "gatsby-plugin-mdx",
- "version": "1.0.41",
+ "version": "1.0.42",
"description": "MDX integration for Gatsby",
"main": "index.js",
"license": "MIT",
diff --git a/packages/gatsby-plugin-netlify-cms/CHANGELOG.md b/packages/gatsby-plugin-netlify-cms/CHANGELOG.md
index f6a3cf57b1725..809520213aaf7 100644
--- a/packages/gatsby-plugin-netlify-cms/CHANGELOG.md
+++ b/packages/gatsby-plugin-netlify-cms/CHANGELOG.md
@@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [4.1.16](https://github.com/gatsbyjs/gatsby/compare/[email protected]@4.1.16) (2019-09-16)
+
+**Note:** Version bump only for package gatsby-plugin-netlify-cms
+
## [4.1.15](https://github.com/gatsbyjs/gatsby/compare/[email protected]@4.1.15) (2019-09-13)
### Bug Fixes
diff --git a/packages/gatsby-plugin-netlify-cms/package.json b/packages/gatsby-plugin-netlify-cms/package.json
index 1706fc7e13d8f..7c6311b545a20 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": "4.1.15",
+ "version": "4.1.16",
"author": "Shawn Erquhart <[email protected]>",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
diff --git a/packages/gatsby-plugin-offline/CHANGELOG.md b/packages/gatsby-plugin-offline/CHANGELOG.md
index dc66f62aeecb1..d1b7ca6c495e1 100644
--- a/packages/gatsby-plugin-offline/CHANGELOG.md
+++ b/packages/gatsby-plugin-offline/CHANGELOG.md
@@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [3.0.7](https://github.com/gatsbyjs/gatsby/compare/[email protected]@3.0.7) (2019-09-16)
+
+**Note:** Version bump only for package gatsby-plugin-offline
+
## [3.0.6](https://github.com/gatsbyjs/gatsby/compare/[email protected]@3.0.6) (2019-09-09)
### Bug Fixes
diff --git a/packages/gatsby-plugin-offline/package.json b/packages/gatsby-plugin-offline/package.json
index b78789f2da14f..983417f8e74e7 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": "3.0.6",
+ "version": "3.0.7",
"author": "Kyle Mathews <[email protected]>",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
diff --git a/packages/gatsby-plugin-typescript/CHANGELOG.md b/packages/gatsby-plugin-typescript/CHANGELOG.md
index f38f87470cf7b..597ffe14674c7 100644
--- a/packages/gatsby-plugin-typescript/CHANGELOG.md
+++ b/packages/gatsby-plugin-typescript/CHANGELOG.md
@@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [2.1.8](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.1.8) (2019-09-16)
+
+### Bug Fixes
+
+- **gatsby-plugin-typescript:** typo in readme ([#17640](https://github.com/gatsbyjs/gatsby/issues/17640)) ([dd87dd6](https://github.com/gatsbyjs/gatsby/commit/dd87dd6))
+
## [2.1.7](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.1.7) (2019-09-09)
**Note:** Version bump only for package gatsby-plugin-typescript
diff --git a/packages/gatsby-plugin-typescript/package.json b/packages/gatsby-plugin-typescript/package.json
index 1fc544dbe93ea..e9eb32847ae3f 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": "2.1.7",
+ "version": "2.1.8",
"author": "Kyle Mathews <[email protected]>",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
diff --git a/packages/gatsby-transformer-javascript-frontmatter/CHANGELOG.md b/packages/gatsby-transformer-javascript-frontmatter/CHANGELOG.md
index a24f0900a960f..3a16042f12d0c 100644
--- a/packages/gatsby-transformer-javascript-frontmatter/CHANGELOG.md
+++ b/packages/gatsby-transformer-javascript-frontmatter/CHANGELOG.md
@@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [2.1.8](https://github.com/gatsbyjs/gatsby/compare/gatsby-transformer-javascript-frontmatter@[email protected]) (2019-09-16)
+
+### Bug Fixes
+
+- update dependency @babel/parser to ^7.6.0 ([#17620](https://github.com/gatsbyjs/gatsby/issues/17620)) ([2d942ed](https://github.com/gatsbyjs/gatsby/commit/2d942ed))
+
## [2.1.7](https://github.com/gatsbyjs/gatsby/compare/gatsby-transformer-javascript-frontmatter@[email protected]) (2019-09-09)
**Note:** Version bump only for package gatsby-transformer-javascript-frontmatter
diff --git a/packages/gatsby-transformer-javascript-frontmatter/package.json b/packages/gatsby-transformer-javascript-frontmatter/package.json
index 63b63e4355ea0..817d88dd3713d 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": "2.1.7",
+ "version": "2.1.8",
"author": "Jacob Bolda <[email protected]>",
"homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-transformer-javascript-frontmatter#readme",
"dependencies": {
diff --git a/packages/gatsby-transformer-javascript-static-exports/CHANGELOG.md b/packages/gatsby-transformer-javascript-static-exports/CHANGELOG.md
index cce4171dde51d..64ed0bb1ab6d4 100644
--- a/packages/gatsby-transformer-javascript-static-exports/CHANGELOG.md
+++ b/packages/gatsby-transformer-javascript-static-exports/CHANGELOG.md
@@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [2.2.9](https://github.com/gatsbyjs/gatsby/compare/gatsby-transformer-javascript-static-exports@[email protected]) (2019-09-16)
+
+### Bug Fixes
+
+- update dependency @babel/parser to ^7.6.0 ([#17620](https://github.com/gatsbyjs/gatsby/issues/17620)) ([2d942ed](https://github.com/gatsbyjs/gatsby/commit/2d942ed))
+
## [2.2.8](https://github.com/gatsbyjs/gatsby/compare/gatsby-transformer-javascript-static-exports@[email protected]) (2019-09-09)
**Note:** Version bump only for package gatsby-transformer-javascript-static-exports
diff --git a/packages/gatsby-transformer-javascript-static-exports/package.json b/packages/gatsby-transformer-javascript-static-exports/package.json
index 8328da0eb8c33..cc8f060dec7b3 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": "2.2.8",
+ "version": "2.2.9",
"author": "Jacob Bolda <[email protected]>",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
diff --git a/packages/gatsby/CHANGELOG.md b/packages/gatsby/CHANGELOG.md
index 9cf2aed882410..b374650ee1765 100644
--- a/packages/gatsby/CHANGELOG.md
+++ b/packages/gatsby/CHANGELOG.md
@@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [2.15.16](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.15.16) (2019-09-16)
+
+### Bug Fixes
+
+- update dependency @babel/parser to ^7.6.0 ([#17620](https://github.com/gatsbyjs/gatsby/issues/17620)) ([2d942ed](https://github.com/gatsbyjs/gatsby/commit/2d942ed))
+
## [2.15.15](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.15.15) (2019-09-13)
### Bug Fixes
diff --git a/packages/gatsby/package.json b/packages/gatsby/package.json
index b824c0c01aa55..ee81aba8d0bd8 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": "2.15.15",
+ "version": "2.15.16",
"author": "Kyle Mathews <[email protected]>",
"bin": {
"gatsby": "./dist/bin/gatsby.js"
@@ -72,7 +72,7 @@
"fs-extra": "^8.1.0",
"gatsby-cli": "^2.7.47",
"gatsby-core-utils": "^1.0.8",
- "gatsby-graphiql-explorer": "^0.2.15",
+ "gatsby-graphiql-explorer": "^0.2.16",
"gatsby-link": "^2.2.13",
"gatsby-plugin-page-creator": "^2.1.17",
"gatsby-react-router-scroll": "^2.1.8",
diff --git a/packages/graphql-skip-limit/CHANGELOG.md b/packages/graphql-skip-limit/CHANGELOG.md
index ff51096412e13..e6a64f6ff594b 100644
--- a/packages/graphql-skip-limit/CHANGELOG.md
+++ b/packages/graphql-skip-limit/CHANGELOG.md
@@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [2.1.10](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.1.10) (2019-09-16)
+
+**Note:** Version bump only for package graphql-skip-limit
+
## [2.1.9](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.1.9) (2019-09-09)
**Note:** Version bump only for package graphql-skip-limit
diff --git a/packages/graphql-skip-limit/package.json b/packages/graphql-skip-limit/package.json
index c690ca55cd602..6a4ceee2477d7 100644
--- a/packages/graphql-skip-limit/package.json
+++ b/packages/graphql-skip-limit/package.json
@@ -1,7 +1,7 @@
{
"name": "graphql-skip-limit",
"description": "A library to help construct a graphql-js server supporting skip/relay style pagination. Built for Gatsby but perhaps useful elsewhere.",
- "version": "2.1.9",
+ "version": "2.1.10",
"author": "Kyle Mathews <[email protected]>",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
|
1b1b1d1df229d98431020a6ff10004a8c50e5d32
|
2018-10-16 01:59:34
|
Michal Piechowiak
|
chore(release): Publish
| false
|
Publish
|
chore
|
diff --git a/packages/gatsby-image/CHANGELOG.md b/packages/gatsby-image/CHANGELOG.md
index 9a0ffb2d27be3..882113a128896 100644
--- a/packages/gatsby-image/CHANGELOG.md
+++ b/packages/gatsby-image/CHANGELOG.md
@@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+<a name="2.0.15"></a>
+
+## [2.0.15](https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-image/compare/[email protected]@2.0.15) (2018-10-15)
+
+**Note:** Version bump only for package gatsby-image
+
<a name="2.0.14"></a>
## [2.0.14](https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-image/compare/[email protected]@2.0.14) (2018-10-12)
diff --git a/packages/gatsby-image/package.json b/packages/gatsby-image/package.json
index bda94e76b56e5..c040c55a866f4 100644
--- a/packages/gatsby-image/package.json
+++ b/packages/gatsby-image/package.json
@@ -1,7 +1,7 @@
{
"name": "gatsby-image",
"description": "Lazy-loading React image component with optional support for the blur-up effect.",
- "version": "2.0.14",
+ "version": "2.0.15",
"author": "Kyle Mathews <[email protected]>",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
diff --git a/packages/gatsby-remark-autolink-headers/CHANGELOG.md b/packages/gatsby-remark-autolink-headers/CHANGELOG.md
index 7778b2c6c8e6d..9c9220ca6b665 100644
--- a/packages/gatsby-remark-autolink-headers/CHANGELOG.md
+++ b/packages/gatsby-remark-autolink-headers/CHANGELOG.md
@@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+<a name="2.0.7"></a>
+
+## [2.0.7](https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-remark-autolink-headers/compare/gatsby-remark-autolink-headers@[email protected]) (2018-10-15)
+
+**Note:** Version bump only for package gatsby-remark-autolink-headers
+
<a name="2.0.6"></a>
## [2.0.6](https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-remark-autolink-headers/compare/gatsby-remark-autolink-headers@[email protected]) (2018-09-19)
diff --git a/packages/gatsby-remark-autolink-headers/package.json b/packages/gatsby-remark-autolink-headers/package.json
index e369717aee7a7..c680c200a71cb 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": "2.0.6",
+ "version": "2.0.7",
"author": "Kyle Mathews <[email protected]>",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
diff --git a/packages/gatsby-source-drupal/CHANGELOG.md b/packages/gatsby-source-drupal/CHANGELOG.md
index 04a8a504d965f..7bad5b4fde3f8 100644
--- a/packages/gatsby-source-drupal/CHANGELOG.md
+++ b/packages/gatsby-source-drupal/CHANGELOG.md
@@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+<a name="3.0.4"></a>
+
+## [3.0.4](https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-source-drupal/compare/[email protected]@3.0.4) (2018-10-15)
+
+**Note:** Version bump only for package gatsby-source-drupal
+
<a name="3.0.3"></a>
## [3.0.3](https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-source-drupal/compare/[email protected]@3.0.3) (2018-10-09)
diff --git a/packages/gatsby-source-drupal/package.json b/packages/gatsby-source-drupal/package.json
index aea62cc52be19..6859ae80687e1 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": "3.0.3",
+ "version": "3.0.4",
"author": "Kyle Mathews <[email protected]>",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -10,7 +10,7 @@
"@babel/runtime": "^7.0.0",
"axios": "^0.18.0",
"bluebird": "^3.5.0",
- "gatsby-source-filesystem": "^2.0.3",
+ "gatsby-source-filesystem": "^2.0.4",
"lodash": "^4.17.10"
},
"devDependencies": {
diff --git a/packages/gatsby-source-filesystem/CHANGELOG.md b/packages/gatsby-source-filesystem/CHANGELOG.md
index d934ab78c33df..57cc8cf284b74 100644
--- a/packages/gatsby-source-filesystem/CHANGELOG.md
+++ b/packages/gatsby-source-filesystem/CHANGELOG.md
@@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+<a name="2.0.4"></a>
+
+## [2.0.4](https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-source-filesystem/compare/[email protected]@2.0.4) (2018-10-15)
+
+### Bug Fixes
+
+- first parse url and then path to retrieve extension ([#9011](https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-source-filesystem/issues/9011)) ([eb7648c](https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-source-filesystem/commit/eb7648c))
+
<a name="2.0.3"></a>
## [2.0.3](https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-source-filesystem/compare/[email protected]@2.0.3) (2018-10-09)
diff --git a/packages/gatsby-source-filesystem/package.json b/packages/gatsby-source-filesystem/package.json
index 30cf0709c71cb..1184c3bd3ad24 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 plugin which parses files within a directory for further parsing by other plugins",
- "version": "2.0.3",
+ "version": "2.0.4",
"author": "Kyle Mathews <[email protected]>",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
diff --git a/packages/gatsby-source-wikipedia/CHANGELOG.md b/packages/gatsby-source-wikipedia/CHANGELOG.md
index 98c23d52e79d4..0d64a5817f21b 100644
--- a/packages/gatsby-source-wikipedia/CHANGELOG.md
+++ b/packages/gatsby-source-wikipedia/CHANGELOG.md
@@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+<a name="2.0.1"></a>
+
+## [2.0.1](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.0.1) (2018-10-15)
+
+### Bug Fixes
+
+- **gatsby-source-wikipedia:** add axios as depedency ([#9088](https://github.com/gatsbyjs/gatsby/issues/9088)) ([b055dde](https://github.com/gatsbyjs/gatsby/commit/b055dde))
+
<a name="2.0.0"></a>
# [2.0.0](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.0.0) (2018-09-17)
diff --git a/packages/gatsby-source-wikipedia/package.json b/packages/gatsby-source-wikipedia/package.json
index 15823ff066fb3..7f1b18eb4080b 100644
--- a/packages/gatsby-source-wikipedia/package.json
+++ b/packages/gatsby-source-wikipedia/package.json
@@ -1,6 +1,6 @@
{
"name": "gatsby-source-wikipedia",
- "version": "2.0.0",
+ "version": "2.0.1",
"description": "Gatsby source plugin for pulling articles from Wikipedia",
"main": "index.js",
"scripts": {
diff --git a/packages/gatsby-source-wordpress/CHANGELOG.md b/packages/gatsby-source-wordpress/CHANGELOG.md
index 7c41aef7f9b4e..fbf123772bff9 100644
--- a/packages/gatsby-source-wordpress/CHANGELOG.md
+++ b/packages/gatsby-source-wordpress/CHANGELOG.md
@@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+<a name="3.0.6"></a>
+
+## [3.0.6](https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-source-wordpress/compare/[email protected]@3.0.6) (2018-10-15)
+
+**Note:** Version bump only for package gatsby-source-wordpress
+
<a name="3.0.5"></a>
## [3.0.5](https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-source-wordpress/compare/[email protected]@3.0.5) (2018-10-12)
diff --git a/packages/gatsby-source-wordpress/package.json b/packages/gatsby-source-wordpress/package.json
index bca4e1e4e20f2..4bfb9b6cb17fa 100644
--- a/packages/gatsby-source-wordpress/package.json
+++ b/packages/gatsby-source-wordpress/package.json
@@ -1,7 +1,7 @@
{
"name": "gatsby-source-wordpress",
"description": "Gatsby source plugin for building websites using the Wordpress CMS as a data source.",
- "version": "3.0.5",
+ "version": "3.0.6",
"author": "Sebastien Fichot <[email protected]>",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -14,7 +14,7 @@
"bluebird": "^3.5.0",
"deep-map": "^1.5.0",
"deep-map-keys": "^1.2.0",
- "gatsby-source-filesystem": "^2.0.3",
+ "gatsby-source-filesystem": "^2.0.4",
"json-stringify-safe": "^5.0.1",
"lodash": "^4.17.10",
"minimatch": "^3.0.4",
diff --git a/packages/gatsby-transformer-excel/CHANGELOG.md b/packages/gatsby-transformer-excel/CHANGELOG.md
index 09074ac240118..267e1ec52907a 100644
--- a/packages/gatsby-transformer-excel/CHANGELOG.md
+++ b/packages/gatsby-transformer-excel/CHANGELOG.md
@@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+<a name="2.1.2"></a>
+
+## [2.1.2](https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-transformer-excel/compare/[email protected]@2.1.2) (2018-10-15)
+
+### Features
+
+- added option to support 'defval' option ([#8980](https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-transformer-excel/issues/8980)) ([95c1eac](https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-transformer-excel/commit/95c1eac))
+
<a name="2.1.1"></a>
## [2.1.1](https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-transformer-excel/compare/[email protected]@2.1.1) (2018-09-17)
diff --git a/packages/gatsby-transformer-excel/package.json b/packages/gatsby-transformer-excel/package.json
index bfd644fc1e5e9..ca266d90a0649 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": "2.1.1",
+ "version": "2.1.2",
"author": "SheetJS <[email protected]>",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
diff --git a/packages/gatsby-transformer-javascript-frontmatter/CHANGELOG.md b/packages/gatsby-transformer-javascript-frontmatter/CHANGELOG.md
index e211104c2dded..b1b60dc68bad1 100644
--- a/packages/gatsby-transformer-javascript-frontmatter/CHANGELOG.md
+++ b/packages/gatsby-transformer-javascript-frontmatter/CHANGELOG.md
@@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+<a name="2.0.2"></a>
+
+## [2.0.2](https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-transformer-javascript-frontmatter/compare/gatsby-transformer-javascript-frontmatter@[email protected]) (2018-10-15)
+
+**Note:** Version bump only for package gatsby-transformer-javascript-frontmatter
+
<a name="2.0.1"></a>
## [2.0.1](https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-transformer-javascript-frontmatter/compare/gatsby-transformer-javascript-frontmatter@[email protected]) (2018-10-12)
diff --git a/packages/gatsby-transformer-javascript-frontmatter/package.json b/packages/gatsby-transformer-javascript-frontmatter/package.json
index a21105062d9d6..6e1e922a50dc8 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": "2.0.1",
+ "version": "2.0.2",
"author": "Jacob Bolda <[email protected]>",
"dependencies": {
"@babel/parser": "^7.0.0",
@@ -30,4 +30,4 @@
"prepare": "cross-env NODE_ENV=production npm run build",
"watch": "babel -w src --out-dir . --ignore **/__tests__"
}
-}
\ No newline at end of file
+}
diff --git a/packages/gatsby/CHANGELOG.md b/packages/gatsby/CHANGELOG.md
index 0bbb3711b34e7..9663e2b812f90 100644
--- a/packages/gatsby/CHANGELOG.md
+++ b/packages/gatsby/CHANGELOG.md
@@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+<a name="2.0.23"></a>
+
+## [2.0.23](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.0.23) (2018-10-15)
+
+### Bug Fixes
+
+- querying nodes by id and operator different than eq ([#9101](https://github.com/gatsbyjs/gatsby/issues/9101)) ([ccc3082](https://github.com/gatsbyjs/gatsby/commit/ccc3082))
+
<a name="2.0.22"></a>
## [2.0.22](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.0.22) (2018-10-12)
diff --git a/packages/gatsby/package.json b/packages/gatsby/package.json
index d05da077c0934..30ff9607fb5e4 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": "2.0.22",
+ "version": "2.0.23",
"author": "Kyle Mathews <[email protected]>",
"bin": {
"gatsby": "./dist/bin/gatsby.js"
|
34b5e50b669c9792dd6435686fb617a0f16dfc7e
|
2018-09-28 04:53:01
|
Amberley
|
chore: forgot frontmatter date change (#8601)
| false
|
forgot frontmatter date change (#8601)
|
chore
|
diff --git a/docs/blog/2018-09-27-reach-router/index.md b/docs/blog/2018-09-27-reach-router/index.md
index 671f65c2ae2ca..ff31832199fa1 100644
--- a/docs/blog/2018-09-27-reach-router/index.md
+++ b/docs/blog/2018-09-27-reach-router/index.md
@@ -1,6 +1,6 @@
---
title: How we improved Gatsby's accessibility in v2 by switching to @reach/router
-date: 2018-09-24
+date: 2018-09-27
author: Amberley Romo
tags: ["routing", "v2", "accessibility"]
---
|
83db0b7729b58c386e1c6459966edec357612791
|
2023-04-03 17:37:41
|
renovate[bot]
|
fix(deps): update dependency parse-numeric-range to ^1.3.0 for gatsby-remark-embed-snippet (#37860)
| false
|
update dependency parse-numeric-range to ^1.3.0 for gatsby-remark-embed-snippet (#37860)
|
fix
|
diff --git a/packages/gatsby-remark-embed-snippet/package.json b/packages/gatsby-remark-embed-snippet/package.json
index cafb79f0261ef..12426c4deac0b 100644
--- a/packages/gatsby-remark-embed-snippet/package.json
+++ b/packages/gatsby-remark-embed-snippet/package.json
@@ -9,7 +9,7 @@
"dependencies": {
"@babel/runtime": "^7.20.13",
"normalize-path": "^3.0.0",
- "parse-numeric-range": "^1.2.0",
+ "parse-numeric-range": "^1.3.0",
"unist-util-map": "^2.0.1"
},
"devDependencies": {
|
eda8e8e19a0c38ad8aef19b00e5713e21a37f195
|
2018-10-17 21:39:54
|
Hugo
|
fix(docs): Fix image alt text (#9180)
| false
|
Fix image alt text (#9180)
|
fix
|
diff --git a/docs/blog/2018-09-27-sendgrid-knowledge-center-cuts-page-load-times-in-half-with-gatsby/index.md b/docs/blog/2018-09-27-sendgrid-knowledge-center-cuts-page-load-times-in-half-with-gatsby/index.md
index 0f99e83e80638..4547fc9fa15eb 100644
--- a/docs/blog/2018-09-27-sendgrid-knowledge-center-cuts-page-load-times-in-half-with-gatsby/index.md
+++ b/docs/blog/2018-09-27-sendgrid-knowledge-center-cuts-page-load-times-in-half-with-gatsby/index.md
@@ -9,7 +9,7 @@ Justin Hall, Senior Web Developer at SendGrid had to find a way to rebuild the [
SendGrid is a customer communication platform that drives engagement and growth. The [SendGrid Knowledge Center](https://sendgrid.com/docs/) is used by their customers to learn how to get the most out of SendGrid’s features, answer questions, and learn best practices. It’s an essential customer success and retention tool but the team was having issues with the website. The site was somewhat confusing, complex, and outdated, creating a challenging user experience. Justin used Gatsby to build an organized, fast, reliable site that created a much better experience for the developers and users of the Knowledge Center.
-
+
## The Problem
|
f00ab7113be6c82c40579270931e8ec8e8fb2a38
|
2019-01-29 22:06:18
|
Gurpreet Singh Hanjra
|
feat(docs): add emotion as an option for styling (#11356)
| false
|
add emotion as an option for styling (#11356)
|
feat
|
diff --git a/docs/docs/emotion.md b/docs/docs/emotion.md
new file mode 100644
index 0000000000000..810d07089d708
--- /dev/null
+++ b/docs/docs/emotion.md
@@ -0,0 +1,115 @@
+---
+title: Emotion
+---
+
+In this guide, we'll walk through setting up a site with the CSS-in-JS library [Emotion](https://emotion.sh).
+
+Emotion is a performant and flexible CSS-in-JS library. Building on many other CSS-in-JS libraries, it allows you to style apps quickly with string or object styles. It has predictable composition to avoid specificity issues with CSS. With source maps and labels, Emotion has a great developer experience and great performance with heavy caching in production.
+
+[Server side rendering](https://emotion.sh/docs/ssr) works out of the box in Emotion. We can use React’s `renderToString` or `renderToNodeStream` methods directly without any extra configuration. `extractCritical` feature removes unused rules that were created with emotion and helps loading pages faster.
+
+First, open a new terminal window and run the following to create a new site:
+
+```shell
+npx gatsby new emotion-tutorial https://github.com/gatsbyjs/gatsby-starter-hello-world
+```
+
+Second, we'll install the necessary dependencies for Emotion and Gatsby.
+
+```shell
+npm install --save gatsby-plugin-emotion @emotion/core @emotion/styled
+```
+
+And then add the plugin to your site's `gatsby-config.js`:
+
+```javascript:title=gatsby-config.js
+module.exports = {
+ plugins: [`gatsby-plugin-emotion`],
+}
+```
+
+Then in your terminal run `npm start` to start the Gatsby development server.
+
+Now let's create a sample Emotion page at `src/pages/index.js`:
+
+```jsx:title=src/pages/index.js
+import React from "react"
+import styled from "@emotion/styled"
+import { css } from "@emotion/core"
+
+const Container = styled.div`
+ margin: 3rem auto;
+ max-width: 600px;
+ display: flex;
+ flex-direction: column;
+ align-items: center;
+ justify-content: center;
+`
+
+const UserWrapper = styled.div`
+ display: flex;
+ align-items: center;
+ margin-top: 0;
+ margin-right: auto;
+ margin-bottom: 12px;
+ margin-left: auto;
+ &:last-child {
+ margin-bottom: 0;
+ }
+`
+
+const Avatar = styled.img`
+ flex-grow: 0;
+ flex-shrink: 0;
+ flex-basis: 96px;
+ width: 96px;
+ height: 96px;
+ margin: 0;
+`
+
+const Description = styled.div`
+ flex: 1;
+ margin-left: 18px;
+ padding: 12px;
+`
+
+const Username = styled.h2`
+ margin: 0 0 12px 0;
+ padding: 0;
+`
+
+const Excerpt = styled.p`
+ margin: 0;
+`
+// Using css prop provides a concise and flexible API to style the components. //
+const underline = css`
+ text-decoration: underline;
+`
+
+const User = props => (
+ <UserWrapper>
+ <Avatar src={props.avatar} alt="" />
+ <Description>
+ <Username>{props.username}</Username>
+ <Excerpt>{props.excerpt}</Excerpt>
+ </Description>
+ </UserWrapper>
+)
+
+export default () => (
+ <Container>
+ <h1 css={underline}>About Emotion</h1>
+ <p>Emotion is uber cool</p>
+ <User
+ username="Jane Doe"
+ avatar="https://s3.amazonaws.com/uifaces/faces/twitter/adellecharles/128.jpg"
+ excerpt="I'm Jane Doe. Lorem ipsum dolor sit amet, consectetur adipisicing elit."
+ />
+ <User
+ username="Bob Smith"
+ avatar="https://s3.amazonaws.com/uifaces/faces/twitter/vladarbatov/128.jpg"
+ excerpt="I'm Bob smith, a vertically aligned type of guy. Lorem ipsum dolor sit amet, consectetur adipisicing elit."
+ />
+ </Container>
+)
+```
diff --git a/docs/docs/glamor.md b/docs/docs/glamor.md
index 2ef471b401516..9c08963b965a8 100644
--- a/docs/docs/glamor.md
+++ b/docs/docs/glamor.md
@@ -4,6 +4,8 @@ title: Glamor
In this guide, we'll walk through setting up a site with the CSS-in-JS library [Glamor](https://github.com/threepointone/glamor).
+Glamor is not actively maintained, the maintainer recommends using [Emotion](/docs/emotion).
+
Glamor lets you write _real_ CSS inline in your components using the same Object
CSS syntax React supports for the `style` prop. Glamor is a variant on "CSS-in-JS"—which solves many of the problems with traditional CSS.
diff --git a/www/src/data/sidebars/doc-links.yaml b/www/src/data/sidebars/doc-links.yaml
index cea89fed97175..b28a91405088b 100644
--- a/www/src/data/sidebars/doc-links.yaml
+++ b/www/src/data/sidebars/doc-links.yaml
@@ -155,6 +155,8 @@
link: /docs/css-modules/
- title: Typography.js
link: /docs/typography-js/
+ - title: Using CSS-in-JS library Emotion
+ link: /docs/emotion/
- title: Using CSS-in-JS library Glamor
link: /docs/glamor/
- title: Using CSS-in-JS library styled components
|
7836a843863330cc6fdfbca3f98a64e58a22c03f
|
2019-01-16 19:24:09
|
Luke Bennett
|
fix(docs): capitalise person's name in tutorial (#11034)
| false
|
capitalise person's name in tutorial (#11034)
|
fix
|
diff --git a/docs/tutorial/part-two/css-modules-userlist.png b/docs/tutorial/part-two/css-modules-userlist.png
index 3e9f5ce28236c..43b958c616fdb 100644
Binary files a/docs/tutorial/part-two/css-modules-userlist.png and b/docs/tutorial/part-two/css-modules-userlist.png differ
diff --git a/docs/tutorial/part-two/index.md b/docs/tutorial/part-two/index.md
index b9b5c3350ea43..8732899514f15 100644
--- a/docs/tutorial/part-two/index.md
+++ b/docs/tutorial/part-two/index.md
@@ -296,7 +296,7 @@ export default () => (
<User
username="Bob Smith"
avatar="https://s3.amazonaws.com/uifaces/faces/twitter/vladarbatov/128.jpg"
- excerpt="I'm Bob smith, a vertically aligned type of guy. Lorem ipsum dolor sit amet, consectetur adipisicing elit."
+ excerpt="I'm Bob Smith, a vertically aligned type of guy. Lorem ipsum dolor sit amet, consectetur adipisicing elit."
/>
{/* highlight-end */}
</Container>
|
5d7b879235b62833cda4008308e2fc98848f10da
|
2020-05-26 22:38:50
|
Joe Daddario
|
feat(gatsby-recipes): Add FS/Directory resource (#24077)
| false
|
Add FS/Directory resource (#24077)
|
feat
|
diff --git a/packages/gatsby-recipes/src/cli.js b/packages/gatsby-recipes/src/cli.js
index 2b2928fc6c891..a5f10c9889209 100644
--- a/packages/gatsby-recipes/src/cli.js
+++ b/packages/gatsby-recipes/src/cli.js
@@ -277,6 +277,7 @@ const components = {
NPMPackageJson: () => null,
NPMPackage: () => null,
File: () => null,
+ Directory: () => null,
GatsbyShadowFile: () => null,
NPMScript: () => null,
}
diff --git a/packages/gatsby-recipes/src/create-types.test.js b/packages/gatsby-recipes/src/create-types.test.js
index fcaaa00a4c11e..095f83dfb8f18 100644
--- a/packages/gatsby-recipes/src/create-types.test.js
+++ b/packages/gatsby-recipes/src/create-types.test.js
@@ -4,6 +4,15 @@ test(`create-types`, () => {
const result = createTypes()
expect(result.mutationTypes).toMatchInlineSnapshot(`
Object {
+ "createDirectory": Object {
+ "args": Object {
+ "directory": Object {
+ "type": "DirectoryInput",
+ },
+ },
+ "resolve": [Function],
+ "type": "Directory",
+ },
"createFile": Object {
"args": Object {
"file": Object {
@@ -67,6 +76,15 @@ test(`create-types`, () => {
"resolve": [Function],
"type": "NPMScript",
},
+ "destroyDirectory": Object {
+ "args": Object {
+ "directory": Object {
+ "type": "DirectoryInput",
+ },
+ },
+ "resolve": [Function],
+ "type": "Directory",
+ },
"destroyFile": Object {
"args": Object {
"file": Object {
@@ -130,6 +148,15 @@ test(`create-types`, () => {
"resolve": [Function],
"type": "NPMScript",
},
+ "updateDirectory": Object {
+ "args": Object {
+ "directory": Object {
+ "type": "DirectoryInput",
+ },
+ },
+ "resolve": [Function],
+ "type": "Directory",
+ },
"updateFile": Object {
"args": Object {
"file": Object {
@@ -213,6 +240,15 @@ test(`create-types`, () => {
"resolve": [Function],
"type": "NPMScriptConnection",
},
+ "directory": Object {
+ "args": Object {
+ "id": Object {
+ "type": "String",
+ },
+ },
+ "resolve": [Function],
+ "type": "Directory",
+ },
"file": Object {
"args": Object {
"id": Object {
diff --git a/packages/gatsby-recipes/src/providers/fs/__snapshots__/directory.test.js.snap b/packages/gatsby-recipes/src/providers/fs/__snapshots__/directory.test.js.snap
new file mode 100644
index 0000000000000..ab81d83101e9d
--- /dev/null
+++ b/packages/gatsby-recipes/src/providers/fs/__snapshots__/directory.test.js.snap
@@ -0,0 +1,37 @@
+// Jest Snapshot v1, https://goo.gl/fbAQLP
+
+exports[`directory resource e2e directory resource test: Directory create 1`] = `
+Object {
+ "_message": "Created directory \\"directory\\"",
+ "id": "directory",
+ "path": "directory",
+}
+`;
+
+exports[`directory resource e2e directory resource test: Directory create plan 1`] = `
+Object {
+ "describe": "Create directory \\"directory\\"",
+}
+`;
+
+exports[`directory resource e2e directory resource test: Directory destroy 1`] = `
+Object {
+ "_message": "Created directory \\"directory\\"",
+ "id": "directory",
+ "path": "directory",
+}
+`;
+
+exports[`directory resource e2e directory resource test: Directory update 1`] = `
+Object {
+ "_message": "Created directory \\"directory\\"",
+ "id": "directory",
+ "path": "directory",
+}
+`;
+
+exports[`directory resource e2e directory resource test: Directory update plan 1`] = `
+Object {
+ "describe": "Create directory \\"directory1\\"",
+}
+`;
diff --git a/packages/gatsby-recipes/src/providers/fs/directory.js b/packages/gatsby-recipes/src/providers/fs/directory.js
new file mode 100644
index 0000000000000..e4108d6ff1bba
--- /dev/null
+++ b/packages/gatsby-recipes/src/providers/fs/directory.js
@@ -0,0 +1,74 @@
+const fs = require(`fs-extra`)
+const path = require(`path`)
+const Joi = require(`@hapi/joi`)
+
+const resourceSchema = require(`../resource-schema`)
+
+const makePath = (root, relativePath) => path.join(root, relativePath)
+
+const directoryExists = fullPath => {
+ try {
+ fs.accessSync(fullPath, fs.constants.F_OK)
+ return true
+ } catch (e) {
+ return false
+ }
+}
+
+const create = async ({ root }, { id, path: directoryPath }) => {
+ const fullPath = makePath(root, directoryPath)
+ await fs.ensureDir(fullPath)
+ return await read({ root }, directoryPath)
+}
+
+const update = async (context, resource) => {
+ // TODO figure out how to move directories when it shifts
+ // probably update needs to be called with the previous version
+ // of the resource.
+ //
+ // Also Directory needs a key.
+ const fullPath = makePath(context.root, resource.id)
+ await fs.ensureDir(fullPath)
+ return await read(context, resource.id)
+}
+
+const read = async (context, id) => {
+ const fullPath = makePath(context.root, id)
+
+ if (!directoryExists(fullPath)) {
+ return undefined
+ }
+
+ const resource = { id, path: id }
+ resource._message = message(resource)
+ return resource
+}
+
+const destroy = async (context, directoryResource) => {
+ const fullPath = makePath(context.root, directoryResource.id)
+ await fs.rmdir(fullPath)
+ return directoryResource
+}
+
+module.exports.plan = async (context, { id, path: directoryPath }) => {
+ const plan = {
+ describe: `Create directory "${directoryPath}"`,
+ }
+
+ return plan
+}
+
+const message = resource => `Created directory "${resource.path}"`
+
+const schema = {
+ path: Joi.string(),
+ ...resourceSchema,
+}
+exports.schema = schema
+exports.validate = resource =>
+ Joi.validate(resource, schema, { abortEarly: false })
+
+module.exports.create = create
+module.exports.update = update
+module.exports.read = read
+module.exports.destroy = destroy
diff --git a/packages/gatsby-recipes/src/providers/fs/directory.test.js b/packages/gatsby-recipes/src/providers/fs/directory.test.js
new file mode 100644
index 0000000000000..22fdd210be240
--- /dev/null
+++ b/packages/gatsby-recipes/src/providers/fs/directory.test.js
@@ -0,0 +1,16 @@
+const directory = require(`./directory`)
+const resourceTestHelper = require(`../resource-test-helper`)
+
+const root = __dirname
+
+describe(`directory resource`, () => {
+ test(`e2e directory resource test`, async () => {
+ await resourceTestHelper({
+ resourceModule: directory,
+ resourceName: `Directory`,
+ context: { root },
+ initialObject: { path: `directory` },
+ partialUpdate: { path: `directory1` },
+ })
+ })
+})
diff --git a/packages/gatsby-recipes/src/resources.js b/packages/gatsby-recipes/src/resources.js
index f8e3cc3526b02..6e2d2e2f12582 100644
--- a/packages/gatsby-recipes/src/resources.js
+++ b/packages/gatsby-recipes/src/resources.js
@@ -1,4 +1,5 @@
const fileResource = require(`./providers/fs/file`)
+const directoryResource = require(`./providers/fs/directory`)
const gatsbyPluginResource = require(`./providers/gatsby/plugin`)
const gatsbyShadowFileResource = require(`./providers/gatsby/shadow-file`)
const npmPackageResource = require(`./providers/npm/package`)
@@ -8,6 +9,7 @@ const gitIgnoreResource = require(`./providers/git/ignore`)
const componentResourceMapping = {
File: fileResource,
+ Directory: directoryResource,
GatsbyPlugin: gatsbyPluginResource,
GatsbyShadowFile: gatsbyShadowFileResource,
NPMPackage: npmPackageResource,
|
c2ed7664243cf1fc5a3357f1a005dc44ac3890d7
|
2019-10-30 04:29:16
|
Alessandro Menduni
|
chore(docs): u-files - minor punctuation and grammar fixes (#18762)
| false
|
u-files - minor punctuation and grammar fixes (#18762)
|
chore
|
diff --git a/docs/docs/graphql-api.md b/docs/docs/graphql-api.md
index daecedd2dce4e..ed2b7345bbeee 100644
--- a/docs/docs/graphql-api.md
+++ b/docs/docs/graphql-api.md
@@ -225,7 +225,7 @@ For examples, refer to the [query recipes](/docs/recipes/#6-querying-data) and [
Fragments allow you to reuse parts of GraphQL queries. They also allow you to split up complex queries into smaller, easier to understand components.
-For more information, check out the docs guide on [using fragments in Gatsby](/docs/using-fragments/).
+For more information, check out the docs guide on [using fragments in Gatsby](/docs/using-graphql-fragments/).
### List of Gatsby fragments
diff --git a/docs/docs/recipes.md b/docs/docs/recipes.md
index 4998bafa7dd20..e82165e7138b7 100644
--- a/docs/docs/recipes.md
+++ b/docs/docs/recipes.md
@@ -1981,7 +1981,7 @@ return (
)
```
-b. using a [GraphQL fragment](/docs/using-fragments/), to query for the necessary fields more tersely
+b. using a [GraphQL fragment](/docs/using-graphql-fragments/), to query for the necessary fields more tersely
```jsx
const data = useStaticQuery(graphql`
diff --git a/docs/docs/unit-testing.md b/docs/docs/unit-testing.md
index 3269fd0d25ef5..d270a993e7879 100644
--- a/docs/docs/unit-testing.md
+++ b/docs/docs/unit-testing.md
@@ -4,14 +4,14 @@ title: Unit Testing
Unit testing is a great way to protect against errors in your code before you
deploy it. While Gatsby does not include support for unit testing out of the
-box, it only takes a few steps to get up and running. However there are a few
+box, it only takes a few steps to get up and running. However, there are a few
features of the Gatsby build process that mean the standard Jest setup doesn't
quite work. This guide shows you how to set it up.
## Setting up your environment
The most popular testing framework for React is [Jest](https://jestjs.io/),
-which was created by Facebook. While Jest is a general purpose JavaScript unit
+which was created by Facebook. While Jest is a general-purpose JavaScript unit
testing framework, it has lots of features that make it work particularly well
with React.
@@ -20,7 +20,7 @@ concepts should be the same or very similar for your site._
### 1. Installing dependencies
-First you need to install Jest and some more required packages. Install babel-jest and babel-preset-gatsby to ensure that the babel preset(s) that are used match what are used internally for your Gatsby site.
+First, you need to install Jest and some more required packages. Install babel-jest and babel-preset-gatsby to ensure that the babel preset(s) that are used match what are used internally for your Gatsby site.
```shell
npm install --save-dev jest babel-jest react-test-renderer babel-preset-gatsby identity-obj-proxy
@@ -66,12 +66,12 @@ module.exports = require("babel-jest").createTransformer(babelOptions)
```
- The next option is `moduleNameMapper`. This
- section works a bit like webpack rules, and tells Jest how to handle imports.
+ section works a bit like webpack rules and tells Jest how to handle imports.
You are mainly concerned here with mocking static file imports, which Jest can't
handle. A mock is a dummy module that is used instead of the real module inside
tests. It is good when you have something that you can't or don't want to test.
You can mock anything, and here you are mocking assets rather than code. For
- stylesheets you need to use the package `identity-obj-proxy`. For all other assets
+ stylesheets you need to use the package `identity-obj-proxy`. For all other assets,
you need to use a manual mock called `file-mock.js`. You need to create this yourself.
The convention is to create a directory called `__mocks__` in the root directory
for this. Note the pair of double underscores in the name.
@@ -83,7 +83,7 @@ module.exports = "test-file-stub"
- The next config setting is `testPathIgnorePatterns`. You are telling Jest to ignore
any tests in the `node_modules` or `.cache` directories.
-- The next option is very important, and is different from what you'll find in other
+- The next option is very important and is different from what you'll find in other
Jest guides. The reason that you need `transformIgnorePatterns` is because Gatsby
includes un-transpiled ES6 code. By default Jest doesn't try to transform code
inside `node_modules`, so you will get an error like this:
@@ -121,7 +121,7 @@ global.___loader = {
#### Mocking `gatsby`
-Finally it's a good idea to mock the `gatsby` module itself. This may not be
+Finally, it's a good idea to mock the `gatsby` module itself. This may not be
needed at first, but will make things a lot easier if you want to test
components that use `Link` or GraphQL.
@@ -184,7 +184,7 @@ describe("Header", () => {
```
This is a very simple snapshot test, which uses `react-test-renderer` to render
-the component, and then generates a snapshot of it on first run. It then
+the component, and then generates a snapshot of it on the first run. It then
compares future snapshots against this, which means you can quickly check for
regressions. Visit [the Jest docs](https://jestjs.io/docs/en/getting-started) to
learn more about other tests that you can write.
diff --git a/docs/docs/upgrade-gatsby-and-dependencies.md b/docs/docs/upgrade-gatsby-and-dependencies.md
index a3e9b618db393..f609e2022bed4 100644
--- a/docs/docs/upgrade-gatsby-and-dependencies.md
+++ b/docs/docs/upgrade-gatsby-and-dependencies.md
@@ -6,7 +6,7 @@ To keep up with the latest bug fixes, security patches, and minor releases from
## Semantic versioning
-As many other packages, Gatsby uses [semantic versioning](https://semver.org/) to tag new versions and indicate what kind of changes are introduced in every new release.
+Like many other packages, Gatsby uses [semantic versioning](https://semver.org/) to tag new versions and indicate what kind of changes are introduced in every new release.
This guide is meant to teach you how to upgrade Gatsby for minor or patch releases. For major changes you can refer to the [Release and Migrations](/docs/releases-and-migration/) reference guide overview for the corresponding guide to upgrade.
@@ -99,7 +99,7 @@ Then add the corresponding script to your package.json file:
}
```
-And finally run the recently added command:
+And finally, run the recently added command:
```shell
npm run upgrade-interactive
diff --git a/docs/docs/upgrading-node-js.md b/docs/docs/upgrading-node-js.md
index add105f815e8c..e17eb021699de 100644
--- a/docs/docs/upgrading-node-js.md
+++ b/docs/docs/upgrading-node-js.md
@@ -25,7 +25,7 @@ This example shows Node.js version 10, specifically v10.16.0.
Node.js version 6 reached _End-of-life_ status on 30th April 2019. Many of Gatsby's dependencies are updating to Node.js version 8 and above. Gatsby must also update in order to deliver new features and bug fixes more quickly.
-Generally it's recommend to use [the Node version whose status is _Active LTS_](https://github.com/nodejs/Release#nodejs-release-working-group) (Node 10 at time of writing). However, in this document you'll learn how to update from Node 6 to Node 8 as this is likely to be the least disruptive upgrade for you.
+Generally, it's recommended to use [the Node version whose status is _Active LTS_](https://github.com/nodejs/Release#nodejs-release-working-group) (Node 10 at time of writing). However, in this document, you'll learn how to update from Node 6 to Node 8 as this is likely to be the least disruptive upgrade for you.
> What about Node.js 7? Stable versions of Node.js are evenly numbered releases - Node.js 6, Node.js 8, Node.js 10 etc. Only use uneven release numbers if you'd like to try cutting-edge and experimental features.
@@ -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 6 (which has reached _End of Life_ status), to Node.js version 8 (which has reached _Maintenance_) status.
+In this document, you learned how you upgrade from Node.js version 6 (which has reached _End of Life_ status) to Node.js version 8 (which has reached _Maintenance_) status.
diff --git a/docs/docs/using-a-plugin-in-your-site.md b/docs/docs/using-a-plugin-in-your-site.md
index f9cbb0d8443ed..75f39191b14f7 100644
--- a/docs/docs/using-a-plugin-in-your-site.md
+++ b/docs/docs/using-a-plugin-in-your-site.md
@@ -4,7 +4,7 @@ title: Using a Plugin in Your Site
Gatsby plugins are Node.js packages, so you can install them like other packages in node using NPM.
-For example, `gatsby-transformer-json` is a package which adds support for JSON files to the Gatsby data layer.
+For example, `gatsby-transformer-json` is a package that adds support for JSON files to the Gatsby data layer.
To install it, in the root of your site you run:
diff --git a/docs/docs/using-client-side-only-packages.md b/docs/docs/using-client-side-only-packages.md
index e174a775ec08e..a856ea038b5c9 100644
--- a/docs/docs/using-client-side-only-packages.md
+++ b/docs/docs/using-client-side-only-packages.md
@@ -2,7 +2,7 @@
title: Using Client-Side Only Packages
---
-On occasion, you may need to use a function or library that only works client side. This usually is because the library in question accesses something that isn't available during server-side rendering (SSR), like [browser DOM](https://developer.mozilla.org/en-US/docs/Web/API/Document_Object_Model) methods.
+On occasion, you may need to use a function or library that only works client-side. This usually is because the library in question accesses something that isn't available during server-side rendering (SSR), like [browser DOM](https://developer.mozilla.org/en-US/docs/Web/API/Document_Object_Model) methods.
You'll need to use one of the workarounds outlined below if your project fails to compile with `gatsby develop` or `gatsby build` with an error like:
@@ -21,7 +21,7 @@ In the component where you need it, load the package via CDN using a [`<script /
To embed your script, you can:
- Include it in a custom component as needed using [`react-helmet`](https://github.com/nfl/react-helmet).
-- Add the script tag directly in your base html using Gatsby's [html.js](/docs/custom-html/)
+- Add the script tag directly in your base HTML using Gatsby's [html.js](/docs/custom-html/)
You should then follow React's guidelines for [Integrating with DOM Manipulation Plugins](https://reactjs.org/docs/integrating-with-other-libraries.html#integrating-with-dom-manipulation-plugins), using the methods available in the [React Component Lifecycle](https://reactjs.org/docs/react-component.html#the-component-lifecycle) to interact with the library you're using.
@@ -52,7 +52,7 @@ class MyComponent extends Component {
## Workaround 3: Load client-side dependent components with react-loadable
-Install [loadable-components](https://github.com/smooth-code/loadable-components) and use it as a wrapper for a component that wants to use a client side only package.
+Install [loadable-components](https://github.com/smooth-code/loadable-components) and use it as a wrapper for a component that wants to use a client-side only package.
```bash
npm install @loadable/component
@@ -80,10 +80,10 @@ const LoadableBuyButton = Loadable(() => import("./ShopifyBuyButton"))
export default LoadableBuyButton
```
-## Workaround 4: Use React.lazy and Suspense on client side only
+## Workaround 4: Use React.lazy and Suspense on client-side only
-React.lazy and Suspense are still not ready for server side rendering, but they can still be used by checking that the code is executed only on the client.
-While this solution is inferior to `loadable-components`, that works both on server side and client, it still provides an alternative for dealing with client side only packages, without an added dependency.
+React.lazy and Suspense are still not ready for server-side rendering, but they can still be used by checking that the code is executed only on the client.
+While this solution is inferior to `loadable-components`, that works both on server side and client, it still provides an alternative for dealing with client-side only packages, without an added dependency.
Remember that the following code could break if executed without the `isSSR` guard.
```jsx
diff --git a/docs/docs/using-gatsby-image.md b/docs/docs/using-gatsby-image.md
index 0ff846c600df5..5e45a5510462d 100644
--- a/docs/docs/using-gatsby-image.md
+++ b/docs/docs/using-gatsby-image.md
@@ -4,7 +4,7 @@ title: Using Gatsby Image to Prevent Image Bloat
`gatsby-image` is a React component designed to work seamlessly with Gatsby’s GraphQL queries ([`gatsby-image` plugin README](/packages/gatsby-image/)). It combines [Gatsby’s native image processing](https://image-processing.gatsbyjs.org/) capabilities with advanced image loading techniques to easily and completely optimize image loading for your sites. `gatsby-image` uses [gatsby-plugin-sharp](/packages/gatsby-plugin-sharp/) to power its image transformations.
-> _Warning: gatsby-image is **not** a drop-in replacement for `<img />`. It’s optimized for fixed width/height images and images that stretch the full-width of a container. Some ways you can use `<img />` won’t work with gatsby-image._
+> _Warning: gatsby-image is **not** a drop-in replacement for `<img />`. It’s optimized for fixed width/height images and images that stretch the full width of a container. Some ways you can use `<img />` won’t work with gatsby-image._
[Demo](https://using-gatsby-image.gatsbyjs.org/)
@@ -20,16 +20,16 @@ _For more complete API information, check out the [Gatsby Image API](/docs/gatsb
Large, unoptimized images dramatically slow down your site.
-But creating optimized images for websites has long been a thorny problem. Ideally you would:
+But creating optimized images for websites has long been a thorny problem. Ideally, you would:
- Resize large images to the size needed by your design
- Generate multiple smaller images so smartphones and tablets don’t download desktop-sized images
- Strip all unnecessary metadata and optimize JPEG and PNG compression
- Efficiently lazy load images to speed initial page load and save bandwidth
- Use the “blur-up” technique or a “traced placeholder” SVG to show a preview of the image while it loads
-- Hold the image position so your page doesn’t jump while images load
+- Hold the image position so your page doesn’t jump while the images load
-Doing this consistently across a site feels like sisyphean labor. You manually optimize your images and then… several images are swapped in at the last minute or a design-tweak shaves 100px of width off your images.
+Doing this consistently across a site feels like Sisyphean labor. You manually optimize your images and then… several images are swapped in at the last minute or a design-tweak shaves 100px of width off your images.
Most solutions involve a lot of manual labor and bookkeeping to ensure every image is optimized.
diff --git a/docs/docs/using-gatsby-professionally.md b/docs/docs/using-gatsby-professionally.md
index 169171830a7c8..a673b01d6df9f 100644
--- a/docs/docs/using-gatsby-professionally.md
+++ b/docs/docs/using-gatsby-professionally.md
@@ -7,11 +7,11 @@ As a Gatsby developer and enthusiast, you may be interested in how you can spend
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.
+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 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.
+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-without-graphql.md b/docs/docs/using-gatsby-without-graphql.md
index edd80783b3648..97235b765d515 100644
--- a/docs/docs/using-gatsby-without-graphql.md
+++ b/docs/docs/using-gatsby-without-graphql.md
@@ -6,7 +6,7 @@ Most examples in the Gatsby docs and on the web at large focus on leveraging sou
> Note: For our purposes here, “unstructured data” means data “handled outside of Gatsby’s data layer” (we’re using the data directly, and not transforming the data into Gatsby nodes).
-## The approach: Fetch data and use Gatsby's `createPages` API
+## The approach: fetch data and use Gatsby's `createPages` API
> _Note_: This example is drawn from an example repo built specifically to model how to use this "unstructured data" approach. [View the full repo on GitHub](https://github.com/jlengstorf/gatsby-with-unstructured-data).
diff --git a/docs/docs/using-fragments.md b/docs/docs/using-graphql-fragments.md
similarity index 98%
rename from docs/docs/using-fragments.md
rename to docs/docs/using-graphql-fragments.md
index 7cebd34b95bb5..b7c755157fcca 100644
--- a/docs/docs/using-fragments.md
+++ b/docs/docs/using-graphql-fragments.md
@@ -1,5 +1,5 @@
---
-title: Using Fragments
+title: Using GraphQL Fragments
---
Fragments allow you to reuse parts of GraphQL queries. It also allows you to split up complex queries into smaller, easier to understand components.
diff --git a/docs/docs/using-graphql-playground.md b/docs/docs/using-graphql-playground.md
index bc1ec6e44f199..f7d366bbe3434 100644
--- a/docs/docs/using-graphql-playground.md
+++ b/docs/docs/using-graphql-playground.md
@@ -4,7 +4,7 @@ title: Using the GraphQL Playground
## Intro
-In this page we want to introduce you to an alternative to the current IDE for your GraphQL queries: [GraphQL Playground](https://github.com/prisma/graphql-playground).
+This page will introduce you to an alternative to the current IDE for your GraphQL queries: [GraphQL Playground](https://github.com/prisma/graphql-playground).
## What is Prisma's GraphQL Playground?
diff --git a/www/gatsby-node.js b/www/gatsby-node.js
index f8b06a35f722c..148f2f0d60721 100644
--- a/www/gatsby-node.js
+++ b/www/gatsby-node.js
@@ -383,6 +383,13 @@ exports.createPages = ({ graphql, actions, reporter }) => {
toPath: `/docs/awesome-gatsby-resources/`,
isPermanent: true,
})
+
+ createRedirect({
+ fromPath: `/docs/using-fragments/`,
+ toPath: `/docs/using-graphql-fragments/`,
+ isPermanent: true,
+ })
+
Object.entries(startersRedirects).forEach(([fromSlug, toSlug]) => {
createRedirect({
fromPath: `/starters${fromSlug}`,
diff --git a/www/src/data/sidebars/doc-links.yaml b/www/src/data/sidebars/doc-links.yaml
index 1a4349ef90505..cc7a241263dd8 100644
--- a/www/src/data/sidebars/doc-links.yaml
+++ b/www/src/data/sidebars/doc-links.yaml
@@ -129,10 +129,10 @@
- title: Using Gatsby Without GraphQL
link: /docs/using-gatsby-without-graphql/
breadcrumbTitle: Gatsby Without GraphQL
- - title: Sourcing From the Filesystem
+ - title: Sourcing from the Filesystem
link: /docs/sourcing-from-the-filesystem/
breadcrumbTitle: From the Filesystem
- - title: Sourcing From Databases
+ - title: Sourcing from Databases
link: /docs/sourcing-from-databases/
breadcrumbTitle: From Databases
- title: Sourcing from Hosted Services
@@ -187,7 +187,7 @@
link: /docs/use-static-query/
breadcrumbTitle: The useStaticQuery Hook
- title: Using GraphQL Fragments
- link: /docs/using-fragments/
+ link: /docs/using-graphql-fragments/
- title: Creating Slugs for Pages
link: /docs/creating-slugs-for-pages/
- title: Creating Pages from Data Programmatically
|
0415f95ef7d1c626ba20817db94919ddcc9e1cf5
|
2020-02-11 13:41:25
|
Nat Alison
|
chore(www): remove unused components (#21359)
| false
|
remove unused components (#21359)
|
chore
|
diff --git a/www/src/components/layout/plugin-library-wrapper.js b/www/src/components/layout/plugin-library-wrapper.js
deleted file mode 100644
index f016a6f5dbfe3..0000000000000
--- a/www/src/components/layout/plugin-library-wrapper.js
+++ /dev/null
@@ -1,27 +0,0 @@
-import React from "react"
-import PropTypes from "prop-types"
-
-import Layout from "../layout"
-import PageWithPluginSearchBar from "../page-with-plugin-searchbar"
-
-const PluginLibraryWrappedLayout = props => {
- const { children, location } = props
-
- return (
- <Layout location={location}>
- <PageWithPluginSearchBar
- isPluginsIndex={location.pathname === `/plugins/`}
- location={location}
- >
- {children}
- </PageWithPluginSearchBar>
- </Layout>
- )
-}
-
-PluginLibraryWrappedLayout.propTypes = {
- children: PropTypes.node.isRequired,
- location: PropTypes.object.isRequired,
-}
-
-export default PluginLibraryWrappedLayout
diff --git a/www/src/components/url-query.js b/www/src/components/url-query.js
deleted file mode 100644
index aac14d0ff100e..0000000000000
--- a/www/src/components/url-query.js
+++ /dev/null
@@ -1,57 +0,0 @@
-import React, { Component } from "react"
-import { Location } from "@reach/router"
-import { globalHistory } from "@reach/router/lib/history"
-import { navigate } from "gatsby"
-import qs from "qs"
-
-class URLQuery extends Component {
- state = {}
-
- componentDidMount = () => {
- const {
- location: { search },
- } = this.props
-
- this.getDerivedStateFromQuery(search)
-
- this.unlisten = globalHistory.listen(({ location: { search } }) => {
- this.getDerivedStateFromQuery(search)
- })
- }
-
- componentWillUnmount = () => {
- this.unlisten()
- }
-
- getDerivedStateFromQuery = search => {
- const { filters } = qs.parse(search.replace(`?`, ``))
-
- this.setState(() => {
- return {
- filters: filters || [],
- }
- })
- }
-
- updateQuery = fn => {
- const {
- location: { pathname },
- } = this.props
-
- const newQuery = fn(this.state)
- const queryString = qs.stringify(newQuery)
-
- navigate(`${pathname}?${queryString}`)
- this.getDerivedStateFromQuery(queryString)
- }
-
- render = () => this.props.children(this.state, this.updateQuery)
-}
-
-const URLQueryWithLocation = props => (
- <Location>
- {({ location }) => <URLQuery {...props} location={location} />}
- </Location>
-)
-
-export default URLQueryWithLocation
|
c84dd391c08e6f9ce2f36c444c86d6fd4851fe7e
|
2020-05-07 04:47:41
|
Shane Thomas
|
feat(benchmark-datocms): Add data update script to update article title (#23855)
| false
|
Add data update script to update article title (#23855)
|
feat
|
diff --git a/benchmarks/source-datocms/package.json b/benchmarks/source-datocms/package.json
index 838d85940cf1f..877fa14e024ff 100644
--- a/benchmarks/source-datocms/package.json
+++ b/benchmarks/source-datocms/package.json
@@ -15,7 +15,9 @@
},
"dependencies": {
"cross-env": "^7.0.0",
+ "datocms-client": "^3.0.15",
"dotenv": "^8.2.0",
+ "faker": "^4.1.0",
"gatsby": "^2.19.7",
"gatsby-image": "^2.2.40",
"gatsby-plugin-benchmark-reporting": "*",
diff --git a/benchmarks/source-datocms/scripts/data-update.ts b/benchmarks/source-datocms/scripts/data-update.ts
index 5368bd1a24789..fe028cefe6c48 100644
--- a/benchmarks/source-datocms/scripts/data-update.ts
+++ b/benchmarks/source-datocms/scripts/data-update.ts
@@ -1 +1,9 @@
-// noop for now, but will be created later.
+#!/usr/bin/env node
+
+import { update } from "./updater"
+
+require("dotenv").config({
+ path: `.env.${process.env.NODE_ENV}`,
+})
+
+update(process.env.BENCHMARK_DATOCMS_API_TOKEN)
diff --git a/benchmarks/source-datocms/scripts/updater.ts b/benchmarks/source-datocms/scripts/updater.ts
new file mode 100644
index 0000000000000..df8b7d568544d
--- /dev/null
+++ b/benchmarks/source-datocms/scripts/updater.ts
@@ -0,0 +1,47 @@
+import faker from "faker"
+import { SiteClient } from "datocms-client";
+
+interface IArticle {
+ id: string
+ title: string
+}
+
+// Remove last word of title and replace it with a random word.
+const updateTitle = (title: string): string =>
+ `${title.substring(0, title.lastIndexOf(` `))} ${faker.lorem.word()}`
+
+const updateArticle = async (
+ client: any,
+ article: IArticle
+): Promise<void> => {
+ await client.items.update(article.id, {
+ title: updateTitle(article.title),
+ })
+}
+
+const getArticle = async (client: any, itemType: string): Promise<IArticle> => {
+ return await client.items
+ .all({ "filter[type]": itemType, "page[limit]": 1 })
+ .then((records: any) => {
+ return Promise.resolve(records.pop())
+ });
+}
+
+export const update = async (
+ token?: string,
+): Promise<void> => {
+ if (!token) {
+ console.error(`You must pass in a DatoCMS API token`)
+ return
+ }
+
+ const client = new SiteClient(token);
+ const models = await client.itemTypes.all();
+ const { id: itemType } = models.find((m: any) => m.apiKey === "article");
+ if (!itemType) {
+ throw new Error("Article type not found");
+ }
+
+ const article = await getArticle(client, itemType)
+ await updateArticle(client, article)
+}
diff --git a/benchmarks/source-datocms/tsconfig.json b/benchmarks/source-datocms/tsconfig.json
new file mode 100644
index 0000000000000..71e9a8b717d61
--- /dev/null
+++ b/benchmarks/source-datocms/tsconfig.json
@@ -0,0 +1,11 @@
+{
+ "compilerOptions": {
+ "typeRoots": ["./node_modules/@types", "./typings"],
+ "target": "ES2018" /* Specify ECMAScript target version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017', 'ES2018', 'ES2019', 'ES2020', or 'ESNEXT'. */,
+ "module": "commonjs" /* Specify module code generation: 'none', 'commonjs', 'amd', 'system', 'umd', 'es2015', 'es2020', or 'ESNext'. */,
+ "strict": true /* Enable all strict type-checking options. */,
+ "esModuleInterop": true /* Enables emit interoperability between CommonJS and ES Modules via creation of namespace objects for all imports. Implies 'allowSyntheticDefaultImports'. */,
+ "forceConsistentCasingInFileNames": true /* Disallow inconsistently-cased references to the same file. */,
+ "noImplicitAny": false
+ }
+}
\ No newline at end of file
|
d1e6aea91c53915badc0b907170180d946cd6728
|
2023-08-25 21:33:06
|
Michal Piechowiak
|
fix: fix fetching adapters manifest from latest gatsby version (#38475)
| false
|
fix fetching adapters manifest from latest gatsby version (#38475)
|
fix
|
diff --git a/packages/gatsby/src/utils/__tests__/get-latest-gatsby-files.ts b/packages/gatsby/src/utils/__tests__/get-latest-gatsby-files.ts
index 274d4a0685589..0352115f24507 100644
--- a/packages/gatsby/src/utils/__tests__/get-latest-gatsby-files.ts
+++ b/packages/gatsby/src/utils/__tests__/get-latest-gatsby-files.ts
@@ -1,9 +1,22 @@
+const mockFiles = new Map<string, string>()
+
/* eslint-disable @typescript-eslint/no-var-requires */
jest.mock(`fs-extra`, () => {
return {
- readJSON: jest.fn(),
- writeFile: jest.fn(),
- pathExists: jest.fn(),
+ readJSON: jest.fn().mockImplementation(async filePath => {
+ const content = mockFiles.get(filePath)
+
+ if (content) {
+ return JSON.parse(content)
+ }
+ throw new Error(`File not found`)
+ }),
+ writeFile: jest.fn().mockImplementation(async (filePath, content) => {
+ mockFiles.set(filePath, content)
+ }),
+ pathExists: jest
+ .fn()
+ .mockImplementation(async filePath => mockFiles.has(filePath)),
}
})
jest.mock(`axios`, () => {
@@ -13,13 +26,49 @@ jest.mock(`axios`, () => {
})
const path = require(`path`)
+
+const latestAdaptersModulePath = path.join(
+ __dirname,
+ `..`,
+ `..`,
+ `..`,
+ `latest-adapters.js`
+)
+
+const latestAdaptersMarker = `<mocked-adapters-js>`
+
+const mockAdaptersManifest: Array<IAdapterManifestEntry> = [
+ {
+ name: `Mock`,
+ module: `mock-adapter`,
+ test: () => !!process.env.MOCK_ADAPTER,
+ versions: [],
+ },
+]
+
+jest.doMock(
+ latestAdaptersModulePath,
+ (): Array<IAdapterManifestEntry> => {
+ if (mockFiles.get(latestAdaptersModulePath) === latestAdaptersMarker) {
+ return mockAdaptersManifest
+ }
+ throw new Error(`Module not found`)
+ },
+ { virtual: true }
+)
+
const fs = require(`fs-extra`)
const axios = require(`axios`)
-import { getLatestAPIs, IAPIResponse } from "../get-latest-gatsby-files"
+import { IAdapterManifestEntry } from "../adapter/types"
+import {
+ getLatestAPIs,
+ getLatestAdapters,
+ IAPIResponse,
+} from "../get-latest-gatsby-files"
beforeEach(() => {
;[fs, axios].forEach(mock =>
- Object.keys(mock).forEach(key => mock[key].mockReset())
+ Object.keys(mock).forEach(key => mock[key].mockClear())
)
})
@@ -32,29 +81,53 @@ const getMockAPIFile = (): IAPIResponse => {
}
describe(`default behavior: has network connectivity`, () => {
- beforeEach(() => {
- fs.pathExists.mockResolvedValueOnce(false)
- axios.get.mockResolvedValueOnce({ data: getMockAPIFile() })
- })
+ describe(`getLatestAPIs`, () => {
+ beforeEach(() => {
+ axios.get.mockResolvedValueOnce({ data: getMockAPIFile() })
+ })
- it(`makes a request to unpkg to request file`, async () => {
- const data = await getLatestAPIs()
+ it(`makes a request to unpkg to request file`, async () => {
+ const data = await getLatestAPIs()
- expect(axios.get).toHaveBeenCalledWith(
- expect.stringContaining(`unpkg.com`),
- expect.any(Object)
- )
- expect(data).toEqual(getMockAPIFile())
+ expect(axios.get).toHaveBeenCalledWith(
+ expect.stringContaining(`unpkg.com`),
+ expect.any(Object)
+ )
+ expect(data).toEqual(getMockAPIFile())
+ })
+
+ it(`writes apis.json file`, async () => {
+ const data = await getLatestAPIs()
+
+ expect(fs.writeFile).toHaveBeenCalledWith(
+ expect.stringContaining(`latest-apis.json`),
+ JSON.stringify(data, null, 2),
+ expect.any(String)
+ )
+ })
})
- it(`writes apis.json file`, async () => {
- const data = await getLatestAPIs()
+ describe(`getLatestAdapters`, () => {
+ beforeEach(() => {
+ axios.get.mockResolvedValueOnce({ data: latestAdaptersMarker })
+ })
- expect(fs.writeFile).toHaveBeenCalledWith(
- expect.stringContaining(`latest-apis.json`),
- JSON.stringify(data, null, 2),
- expect.any(String)
- )
+ it(`loads .js modules`, async () => {
+ const data = await getLatestAdapters()
+
+ expect(axios.get).toHaveBeenCalledWith(
+ expect.stringContaining(`unpkg.com`),
+ expect.any(Object)
+ )
+
+ expect(fs.writeFile).toHaveBeenCalledWith(
+ expect.stringContaining(`latest-adapters.js`),
+ latestAdaptersMarker,
+ expect.any(String)
+ )
+
+ expect(data).toEqual(mockAdaptersManifest)
+ })
})
})
@@ -65,8 +138,6 @@ describe(`downloading APIs failure`, () => {
it(`falls back to downloaded cached file, if it exists`, async () => {
const apis = getMockAPIFile()
- fs.pathExists.mockResolvedValueOnce(true)
- fs.readJSON.mockResolvedValueOnce(apis)
const data = await getLatestAPIs()
@@ -78,9 +149,7 @@ describe(`downloading APIs failure`, () => {
})
it(`falls back to local apis.json if latest-apis.json not cached`, async () => {
- const apis = getMockAPIFile()
- fs.pathExists.mockResolvedValueOnce(false)
- fs.readJSON.mockResolvedValueOnce(apis)
+ mockFiles.clear()
await getLatestAPIs()
diff --git a/packages/gatsby/src/utils/get-latest-gatsby-files.ts b/packages/gatsby/src/utils/get-latest-gatsby-files.ts
index 13d4b006b1765..a2ff122a00a06 100644
--- a/packages/gatsby/src/utils/get-latest-gatsby-files.ts
+++ b/packages/gatsby/src/utils/get-latest-gatsby-files.ts
@@ -32,30 +32,36 @@ const _getFile = async <T>({
outputFileName: string
defaultReturn: T
}): Promise<T> => {
+ let fileToUse = path.join(ROOT, fileName)
try {
const { data } = await axios.get(`${UNPKG_ROOT}${fileName}`, {
timeout: 5000,
})
- await fs.writeFile(outputFileName, JSON.stringify(data, null, 2), `utf8`)
+ await fs.writeFile(
+ outputFileName,
+ typeof data === `string` ? data : JSON.stringify(data, null, 2),
+ `utf8`
+ )
- return data
+ fileToUse = outputFileName
} catch (e) {
+ // if file was previously cached, use it
if (await fs.pathExists(outputFileName)) {
- return fs.readJSON(outputFileName)
+ fileToUse = outputFileName
}
+ }
- if (fileName.endsWith(`.json`)) {
- return fs.readJSON(path.join(ROOT, fileName)).catch(() => defaultReturn)
- } else {
- try {
- const importedFile = await import(path.join(ROOT, fileName))
- const adapters = preferDefault(importedFile)
- return adapters
- } catch (e) {
- // no-op
- return defaultReturn
- }
+ if (fileToUse.endsWith(`.json`)) {
+ return fs.readJSON(fileToUse).catch(() => defaultReturn)
+ } else {
+ try {
+ const importedFile = await import(fileToUse)
+ const adapters = preferDefault(importedFile)
+ return adapters
+ } catch (e) {
+ // no-op
+ return defaultReturn
}
}
}
|
ab412068ed3e5e83fc5b227a6fe1574a96804af4
|
2019-04-24 22:58:28
|
Sidhartha Chatterjee
|
fix(gatsby-telemetry): Fix postinstall script (#13605)
| false
|
Fix postinstall script (#13605)
|
fix
|
diff --git a/packages/gatsby-telemetry/package.json b/packages/gatsby-telemetry/package.json
index ff6e30c0b93d9..ea193e0c635e8 100644
--- a/packages/gatsby-telemetry/package.json
+++ b/packages/gatsby-telemetry/package.json
@@ -35,7 +35,8 @@
},
"files": [
"lib",
- "src/postinstall.js"
+ "src/postinstall.js",
+ "src/showAnalyticsNotification.js"
],
"homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-telemetry#readme",
"keywords": [
|
57b37ae5fea64d932f8baf820dbf68dac7550b52
|
2022-11-14 12:44:05
|
GatsbyJS Bot
|
chore(changelogs): update changelogs (#37030)
| false
|
update changelogs (#37030)
|
chore
|
diff --git a/packages/gatsby/CHANGELOG.md b/packages/gatsby/CHANGELOG.md
index 5eb730341d005..b1c11aa721c59 100644
--- a/packages/gatsby/CHANGELOG.md
+++ b/packages/gatsby/CHANGELOG.md
@@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+### [5.0.1](https://github.com/gatsbyjs/gatsby/commits/[email protected]/packages/gatsby) (2022-11-10)
+
+#### Bug Fixes
+
+- write out sq files when result doesn't change but query hash changes [#36997](https://github.com/gatsbyjs/gatsby/issues/36997) [#37004](https://github.com/gatsbyjs/gatsby/issues/37004) ([df29dc9](https://github.com/gatsbyjs/gatsby/commit/df29dc927f698582e3bf71dd59455c172a92c1aa))
+
## [5.0.0](https://github.com/gatsbyjs/gatsby/commits/[email protected]/packages/gatsby) (2022-11-08)
[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.0)
|
3b71c60aa51102b7f5373bc118072331de7e6ba7
|
2019-09-26 15:50:29
|
Deborah
|
chore(docs): Added a couple of words to tutorial (#17876)
| false
|
Added a couple of words to tutorial (#17876)
|
chore
|
diff --git a/docs/tutorial/part-one/index.md b/docs/tutorial/part-one/index.md
index b9ac63599ed34..0ae9d3f8e0faa 100644
--- a/docs/tutorial/part-one/index.md
+++ b/docs/tutorial/part-one/index.md
@@ -131,7 +131,7 @@ One of the big mental shifts you make when starting to build with components (if
While a seemingly simple change, this has profound implications for how you think about building websites.
-Take the example of creating a custom button. In the past, you would create a CSS class (perhaps `.primary-button`) with your custom styles and then whenever you want to apply those styles e.g.
+Take the example of creating a custom button. In the past, you would create a CSS class (perhaps `.primary-button`) with your custom styles and then use it whenever you want to apply those styles. For example:
```html
<button class="primary-button">Click me</button>
|
6355924669cb00e94c3f6a05995f6c221fcaed8c
|
2020-05-26 19:41:04
|
Lotus
|
chore(starters): add gatsby-lotus-starter (#24073)
| false
|
add gatsby-lotus-starter (#24073)
|
chore
|
diff --git a/docs/starters.yml b/docs/starters.yml
index a38067a876470..175cf81baa12e 100644
--- a/docs/starters.yml
+++ b/docs/starters.yml
@@ -6301,6 +6301,29 @@
- Sitemap Generation
- XML Sitemaps
- Progressive Web Ap
+- url: https://gatsby-lotus-starter.netlify.app/
+ repo: https://github.com/DecliningLotus/gatsby-lotus-starter
+ description: A fully featured Gatsby Bootstrap starter.
+ tags:
+ - Linting
+ - Netlify
+ - PWA
+ - SEO
+ - Styling:Bootstrap
+ - Styling:PostCSS
+ - Styling:SCSS
+ features:
+ - Bootstrap + React Bootstrap
+ - React Icons
+ - Typefaces + Font Preloader
+ - SVGO Optimizations
+ - Optimized SEO
+ - SASS Support
+ - Sitemap Generation
+ - Progressive Web App
+ - Offline Support
+ - Semantic Release
+ - Netlify + CircleCI Support
- url: https://creationspirit.github.io/gatsby-babylonjs-starter/
repo: https://github.com/creationspirit/gatsby-babylonjs-starter
description: A Gatsby starter with example Babylonjs scene boilerplate.
|
54a75af8bd3f0fea7d48d937b7be62d3c5f0a46d
|
2019-08-17 01:12:36
|
Sidhartha Chatterjee
|
chore(release): Publish
| false
|
Publish
|
chore
|
diff --git a/packages/gatsby-cli/CHANGELOG.md b/packages/gatsby-cli/CHANGELOG.md
index 77b175a4c89fa..d9117f84364c3 100644
--- a/packages/gatsby-cli/CHANGELOG.md
+++ b/packages/gatsby-cli/CHANGELOG.md
@@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [2.7.31](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.7.31) (2019-08-16)
+
+**Note:** Version bump only for package gatsby-cli
+
## [2.7.30](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.7.30) (2019-08-11)
### Features
diff --git a/packages/gatsby-cli/package.json b/packages/gatsby-cli/package.json
index abca1bb967b89..b3444e4adcb92 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": "2.7.30",
+ "version": "2.7.31",
"author": "Kyle Mathews <[email protected]>",
"bin": {
"gatsby": "lib/index.js"
@@ -26,7 +26,7 @@
"execa": "^0.8.0",
"fs-exists-cached": "^1.0.0",
"fs-extra": "^4.0.1",
- "gatsby-telemetry": "^1.1.11",
+ "gatsby-telemetry": "^1.1.12",
"hosted-git-info": "^2.6.0",
"is-valid-path": "^0.1.1",
"lodash": "^4.17.14",
diff --git a/packages/gatsby-plugin-sharp/CHANGELOG.md b/packages/gatsby-plugin-sharp/CHANGELOG.md
index dc23ede0e57fb..6e8eaa52c39d4 100644
--- a/packages/gatsby-plugin-sharp/CHANGELOG.md
+++ b/packages/gatsby-plugin-sharp/CHANGELOG.md
@@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [2.2.12](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.2.12) (2019-08-16)
+
+### Bug Fixes
+
+- **docs:** dead links to sharp documentation, need to point to new host ([#16687](https://github.com/gatsbyjs/gatsby/issues/16687)) ([7c096e7](https://github.com/gatsbyjs/gatsby/commit/7c096e7))
+
## [2.2.11](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.2.11) (2019-08-09)
**Note:** Version bump only for package gatsby-plugin-sharp
diff --git a/packages/gatsby-plugin-sharp/package.json b/packages/gatsby-plugin-sharp/package.json
index 805968cc540a5..eef5726af3293 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": "2.2.11",
+ "version": "2.2.12",
"author": "Kyle Mathews <[email protected]>",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
diff --git a/packages/gatsby-source-contentful/CHANGELOG.md b/packages/gatsby-source-contentful/CHANGELOG.md
index 764cc0a62d45f..13ec58efb42b4 100644
--- a/packages/gatsby-source-contentful/CHANGELOG.md
+++ b/packages/gatsby-source-contentful/CHANGELOG.md
@@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [2.1.20](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.1.20) (2019-08-16)
+
+**Note:** Version bump only for package gatsby-source-contentful
+
## [2.1.19](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.1.19) (2019-08-09)
**Note:** Version bump only for package gatsby-source-contentful
diff --git a/packages/gatsby-source-contentful/package.json b/packages/gatsby-source-contentful/package.json
index 59bb2b9b85387..ad96185ee83fc 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": "2.1.19",
+ "version": "2.1.20",
"author": "Marcus Ericsson <[email protected]> (mericsson.com)",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -16,7 +16,7 @@
"contentful": "^6.1.0",
"deep-map": "^1.5.0",
"fs-extra": "^4.0.2",
- "gatsby-plugin-sharp": "^2.2.11",
+ "gatsby-plugin-sharp": "^2.2.12",
"gatsby-source-filesystem": "^2.1.9",
"is-online": "^7.0.0",
"json-stringify-safe": "^5.0.1",
diff --git a/packages/gatsby-telemetry/CHANGELOG.md b/packages/gatsby-telemetry/CHANGELOG.md
index af16dacf7a7b0..bb189054817b8 100644
--- a/packages/gatsby-telemetry/CHANGELOG.md
+++ b/packages/gatsby-telemetry/CHANGELOG.md
@@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [1.1.12](https://github.com/gatsbyjs/gatsby/compare/[email protected]@1.1.12) (2019-08-16)
+
+**Note:** Version bump only for package gatsby-telemetry
+
## [1.1.11](https://github.com/gatsbyjs/gatsby/compare/[email protected]@1.1.11) (2019-08-01)
### Bug Fixes
diff --git a/packages/gatsby-telemetry/package.json b/packages/gatsby-telemetry/package.json
index 7b59075d34feb..05e553aae17b2 100644
--- a/packages/gatsby-telemetry/package.json
+++ b/packages/gatsby-telemetry/package.json
@@ -1,7 +1,7 @@
{
"name": "gatsby-telemetry",
"description": "Gatsby Telemetry",
- "version": "1.1.11",
+ "version": "1.1.12",
"author": "Jarmo Isotalo <[email protected]>",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
diff --git a/packages/gatsby-transformer-sqip/CHANGELOG.md b/packages/gatsby-transformer-sqip/CHANGELOG.md
index 345c6551bf6ef..fadfba48b5f27 100644
--- a/packages/gatsby-transformer-sqip/CHANGELOG.md
+++ b/packages/gatsby-transformer-sqip/CHANGELOG.md
@@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [2.1.15](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.1.15) (2019-08-16)
+
+**Note:** Version bump only for package gatsby-transformer-sqip
+
## [2.1.14](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.1.14) (2019-08-13)
### Bug Fixes
diff --git a/packages/gatsby-transformer-sqip/package.json b/packages/gatsby-transformer-sqip/package.json
index a3ef230d26ff4..1ebd416e4c3fa 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": "2.1.14",
+ "version": "2.1.15",
"author": "Benedikt Rötsch <[email protected]>",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -10,7 +10,7 @@
"@babel/runtime": "^7.0.0",
"bluebird": "^3.5.4",
"fs-extra": "^4.0.2",
- "gatsby-plugin-sharp": "^2.2.11",
+ "gatsby-plugin-sharp": "^2.2.12",
"md5-file": "^4.0.0",
"mini-svg-data-uri": "^1.0.0",
"p-queue": "^2.3.0",
diff --git a/packages/gatsby/CHANGELOG.md b/packages/gatsby/CHANGELOG.md
index ffff6c61a1db6..1c990fd095ada 100644
--- a/packages/gatsby/CHANGELOG.md
+++ b/packages/gatsby/CHANGELOG.md
@@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [2.13.67](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.13.67) (2019-08-16)
+
+**Note:** Version bump only for package gatsby
+
## [2.13.66](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.13.66) (2019-08-16)
### Bug Fixes
diff --git a/packages/gatsby/package.json b/packages/gatsby/package.json
index 88ba96a79dabc..875241193f0df 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": "2.13.66",
+ "version": "2.13.67",
"author": "Kyle Mathews <[email protected]>",
"bin": {
"gatsby": "./dist/bin/gatsby.js"
@@ -67,13 +67,13 @@
"flat": "^4.0.0",
"fs-exists-cached": "1.0.0",
"fs-extra": "^5.0.0",
- "gatsby-cli": "^2.7.30",
+ "gatsby-cli": "^2.7.31",
"gatsby-core-utils": "^1.0.4",
"gatsby-graphiql-explorer": "^0.2.3",
"gatsby-link": "^2.2.5",
"gatsby-plugin-page-creator": "^2.1.5",
"gatsby-react-router-scroll": "^2.1.3",
- "gatsby-telemetry": "^1.1.11",
+ "gatsby-telemetry": "^1.1.12",
"glob": "^7.1.1",
"got": "8.0.0",
"graphql": "^14.2.0",
|
a07c33d8d4604528b270fb69539c19b9f336a896
|
2020-12-17 19:35:46
|
Sidhartha Chatterjee
|
chore(release): Publish next
| false
|
Publish next
|
chore
|
diff --git a/packages/create-gatsby/CHANGELOG.md b/packages/create-gatsby/CHANGELOG.md
index aff3fff0ab5f6..29e369518ffd1 100644
--- a/packages/create-gatsby/CHANGELOG.md
+++ b/packages/create-gatsby/CHANGELOG.md
@@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+# [0.3.0-next.3](https://github.com/gatsbyjs/gatsby/compare/[email protected]@0.3.0-next.3) (2020-12-17)
+
+### Bug Fixes
+
+- **create-gatsby:** Switch dependency to sass ([#28655](https://github.com/gatsbyjs/gatsby/issues/28655)) ([a1f6e79](https://github.com/gatsbyjs/gatsby/commit/a1f6e79a4c8bb444381503fae0fadfe3bc4cbf9c))
+
# [0.3.0-next.2](https://github.com/gatsbyjs/gatsby/compare/[email protected]@0.3.0-next.2) (2020-12-16)
### Bug Fixes
diff --git a/packages/create-gatsby/package.json b/packages/create-gatsby/package.json
index 39480ed24a22e..7ba47ff493746 100644
--- a/packages/create-gatsby/package.json
+++ b/packages/create-gatsby/package.json
@@ -1,6 +1,6 @@
{
"name": "create-gatsby",
- "version": "0.3.0-next.2",
+ "version": "0.3.0-next.3",
"main": "lib/index.js",
"bin": "cli.js",
"license": "MIT",
diff --git a/packages/gatsby-admin/CHANGELOG.md b/packages/gatsby-admin/CHANGELOG.md
index c3d2f08d1373f..801402f22baf4 100644
--- a/packages/gatsby-admin/CHANGELOG.md
+++ b/packages/gatsby-admin/CHANGELOG.md
@@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+# [0.6.0-next.4](https://github.com/gatsbyjs/gatsby/compare/[email protected]@0.6.0-next.4) (2020-12-17)
+
+**Note:** Version bump only for package gatsby-admin
+
# [0.6.0-next.3](https://github.com/gatsbyjs/gatsby/compare/[email protected]@0.6.0-next.3) (2020-12-16)
**Note:** Version bump only for package gatsby-admin
diff --git a/packages/gatsby-admin/package.json b/packages/gatsby-admin/package.json
index 08687fae8e04f..7c997dc0a8613 100644
--- a/packages/gatsby-admin/package.json
+++ b/packages/gatsby-admin/package.json
@@ -1,6 +1,6 @@
{
"name": "gatsby-admin",
- "version": "0.6.0-next.3",
+ "version": "0.6.0-next.4",
"main": "index.js",
"author": "Max Stoiber",
"license": "MIT",
@@ -20,7 +20,7 @@
"@typescript-eslint/parser": "^2.34.0",
"csstype": "^2.6.13",
"formik": "^2.2.5",
- "gatsby": "^2.30.0-next.3",
+ "gatsby": "^2.30.0-next.4",
"gatsby-interface": "^0.0.225",
"gatsby-plugin-typescript": "^2.10.0-next.0",
"gatsby-plugin-webfonts": "^1.1.3",
diff --git a/packages/gatsby-cli/CHANGELOG.md b/packages/gatsby-cli/CHANGELOG.md
index 07150142dcc3e..edd5016e81bf0 100644
--- a/packages/gatsby-cli/CHANGELOG.md
+++ b/packages/gatsby-cli/CHANGELOG.md
@@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+# [2.17.0-next.3](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.17.0-next.3) (2020-12-17)
+
+**Note:** Version bump only for package gatsby-cli
+
# [2.17.0-next.2](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.17.0-next.2) (2020-12-16)
**Note:** Version bump only for package gatsby-cli
diff --git a/packages/gatsby-cli/package.json b/packages/gatsby-cli/package.json
index 4f46984acf552..bf62339711082 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": "2.17.0-next.2",
+ "version": "2.17.0-next.3",
"author": "Kyle Mathews <[email protected]>",
"bin": {
"gatsby": "cli.js"
@@ -19,7 +19,7 @@
"common-tags": "^1.8.0",
"configstore": "^5.0.1",
"convert-hrtime": "^3.0.0",
- "create-gatsby": "^0.3.0-next.2",
+ "create-gatsby": "^0.3.0-next.3",
"envinfo": "^7.7.3",
"execa": "^3.4.0",
"fs-exists-cached": "^1.0.0",
diff --git a/packages/gatsby-plugin-image/CHANGELOG.md b/packages/gatsby-plugin-image/CHANGELOG.md
index ab1aa959aac94..0a6793de54365 100644
--- a/packages/gatsby-plugin-image/CHANGELOG.md
+++ b/packages/gatsby-plugin-image/CHANGELOG.md
@@ -3,6 +3,16 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+# [0.5.0-next.2](https://github.com/gatsbyjs/gatsby/compare/[email protected]@0.5.0-next.2) (2020-12-17)
+
+### Features
+
+- **gatsby-plugin-image:** Make dimensions optional and default to constrained ([#28662](https://github.com/gatsbyjs/gatsby/issues/28662)) ([f24a23d](https://github.com/gatsbyjs/gatsby/commit/f24a23d5b1f24ab33aec7a8ac882dbbccdf7d01e))
+
+### Performance Improvements
+
+- **gatsby-plugin-image:** Handle disabled js, and add preload link ([#28669](https://github.com/gatsbyjs/gatsby/issues/28669)) ([8300236](https://github.com/gatsbyjs/gatsby/commit/83002365c4b9e7efdb69c354eee6894cbde975e4))
+
# [0.5.0-next.1](https://github.com/gatsbyjs/gatsby/compare/[email protected]@0.5.0-next.1) (2020-12-15)
### Bug Fixes
diff --git a/packages/gatsby-plugin-image/package.json b/packages/gatsby-plugin-image/package.json
index 8a76b5e2ff2ac..98bd48bc1562a 100644
--- a/packages/gatsby-plugin-image/package.json
+++ b/packages/gatsby-plugin-image/package.json
@@ -1,6 +1,6 @@
{
"name": "gatsby-plugin-image",
- "version": "0.5.0-next.1",
+ "version": "0.5.0-next.2",
"scripts": {
"build": "npm-run-all -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",
diff --git a/packages/gatsby-plugin-page-creator/CHANGELOG.md b/packages/gatsby-plugin-page-creator/CHANGELOG.md
index dc170aa1a66bc..b51d0596af16e 100644
--- a/packages/gatsby-plugin-page-creator/CHANGELOG.md
+++ b/packages/gatsby-plugin-page-creator/CHANGELOG.md
@@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+# [2.8.0-next.1](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-page-creator@[email protected]) (2020-12-17)
+
+### Bug Fixes
+
+- **gatsby-plugin-page-creator:** add missing telemetry dependency ([#28652](https://github.com/gatsbyjs/gatsby/issues/28652)) ([a13827f](https://github.com/gatsbyjs/gatsby/commit/a13827f1bea8282fa3ba85f73b4cdc910338b066))
+
# [2.8.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-page-creator@[email protected]) (2020-12-10)
**Note:** Version bump only for package gatsby-plugin-page-creator
diff --git a/packages/gatsby-plugin-page-creator/package.json b/packages/gatsby-plugin-page-creator/package.json
index fb363cf4a21a9..ff2e5871e1fa8 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": "2.8.0-next.0",
+ "version": "2.8.0-next.1",
"description": "Gatsby plugin that automatically creates pages from React components in specified directories",
"main": "index.js",
"scripts": {
diff --git a/packages/gatsby-plugin-sharp/CHANGELOG.md b/packages/gatsby-plugin-sharp/CHANGELOG.md
index 64d238519af55..a5ece49ba89c9 100644
--- a/packages/gatsby-plugin-sharp/CHANGELOG.md
+++ b/packages/gatsby-plugin-sharp/CHANGELOG.md
@@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+# [2.12.0-next.2](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.12.0-next.2) (2020-12-17)
+
+### Features
+
+- **gatsby-plugin-image:** Make dimensions optional and default to constrained ([#28662](https://github.com/gatsbyjs/gatsby/issues/28662)) ([f24a23d](https://github.com/gatsbyjs/gatsby/commit/f24a23d5b1f24ab33aec7a8ac882dbbccdf7d01e))
+
# [2.12.0-next.1](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.12.0-next.1) (2020-12-15)
### Bug Fixes
diff --git a/packages/gatsby-plugin-sharp/package.json b/packages/gatsby-plugin-sharp/package.json
index 86bf52977a298..fdcf3e09eab48 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": "2.12.0-next.1",
+ "version": "2.12.0-next.2",
"author": "Kyle Mathews <[email protected]>",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -33,7 +33,7 @@
"@types/sharp": "^0.26.1",
"babel-preset-gatsby-package": "^0.10.0-next.0",
"cross-env": "^7.0.3",
- "gatsby-plugin-image": "^0.5.0-next.1"
+ "gatsby-plugin-image": "^0.5.0-next.2"
},
"homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-sharp#readme",
"keywords": [
diff --git a/packages/gatsby-source-npm-package-search/CHANGELOG.md b/packages/gatsby-source-npm-package-search/CHANGELOG.md
index d2e71564c896d..38b3c84534e6c 100644
--- a/packages/gatsby-source-npm-package-search/CHANGELOG.md
+++ b/packages/gatsby-source-npm-package-search/CHANGELOG.md
@@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+# [2.8.0-next.1](https://github.com/gatsbyjs/gatsby/compare/gatsby-source-npm-package-search@[email protected]) (2020-12-17)
+
+**Note:** Version bump only for package gatsby-source-npm-package-search
+
# [2.8.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-source-npm-package-search@[email protected]) (2020-12-10)
**Note:** Version bump only for package gatsby-source-npm-package-search
diff --git a/packages/gatsby-source-npm-package-search/package.json b/packages/gatsby-source-npm-package-search/package.json
index ae4d67b2ebc09..ca6b7e50a5359 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": "2.8.0-next.0",
+ "version": "2.8.0-next.1",
"author": "[email protected]",
"repository": {
"type": "git",
diff --git a/packages/gatsby-transformer-sharp/CHANGELOG.md b/packages/gatsby-transformer-sharp/CHANGELOG.md
index ae469d0b69bf5..24542d83a2e87 100644
--- a/packages/gatsby-transformer-sharp/CHANGELOG.md
+++ b/packages/gatsby-transformer-sharp/CHANGELOG.md
@@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+# [2.10.0-next.1](https://github.com/gatsbyjs/gatsby/compare/gatsby-transformer-sharp@[email protected]) (2020-12-17)
+
+### Features
+
+- **gatsby-plugin-image:** Make dimensions optional and default to constrained ([#28662](https://github.com/gatsbyjs/gatsby/issues/28662)) ([f24a23d](https://github.com/gatsbyjs/gatsby/commit/f24a23d5b1f24ab33aec7a8ac882dbbccdf7d01e))
+
# [2.10.0-next.0](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.10.0-next.0) (2020-12-10)
**Note:** Version bump only for package gatsby-transformer-sharp
diff --git a/packages/gatsby-transformer-sharp/package.json b/packages/gatsby-transformer-sharp/package.json
index d7baac5d5c5d9..eb1bc9521b182 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": "2.10.0-next.0",
+ "version": "2.10.0-next.1",
"author": "Kyle Mathews <[email protected]>",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
diff --git a/packages/gatsby-transformer-sqip/CHANGELOG.md b/packages/gatsby-transformer-sqip/CHANGELOG.md
index da1b80459d69f..d4c2eae10cf8a 100644
--- a/packages/gatsby-transformer-sqip/CHANGELOG.md
+++ b/packages/gatsby-transformer-sqip/CHANGELOG.md
@@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+# [2.9.0-next.2](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.9.0-next.2) (2020-12-17)
+
+**Note:** Version bump only for package gatsby-transformer-sqip
+
# [2.9.0-next.1](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.9.0-next.1) (2020-12-15)
**Note:** Version bump only for package gatsby-transformer-sqip
diff --git a/packages/gatsby-transformer-sqip/package.json b/packages/gatsby-transformer-sqip/package.json
index de0575a800d63..2a89a49bb9964 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": "2.9.0-next.1",
+ "version": "2.9.0-next.2",
"author": "Benedikt Rötsch <[email protected]>",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -9,7 +9,7 @@
"dependencies": {
"@babel/runtime": "^7.12.5",
"fs-extra": "^8.1.0",
- "gatsby-plugin-sharp": "^2.12.0-next.1",
+ "gatsby-plugin-sharp": "^2.12.0-next.2",
"md5-file": "^5.0.0",
"mini-svg-data-uri": "^1.2.3",
"p-queue": "^6.6.2",
diff --git a/packages/gatsby-transformer-yaml/CHANGELOG.md b/packages/gatsby-transformer-yaml/CHANGELOG.md
index c605e13a6faa5..5c30440dab844 100644
--- a/packages/gatsby-transformer-yaml/CHANGELOG.md
+++ b/packages/gatsby-transformer-yaml/CHANGELOG.md
@@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+# [2.9.0-next.1](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.9.0-next.1) (2020-12-17)
+
+### Bug Fixes
+
+- **deps:** update minor and patch for gatsby-transformer-yaml ([#28602](https://github.com/gatsbyjs/gatsby/issues/28602)) ([08aa940](https://github.com/gatsbyjs/gatsby/commit/08aa9402f0c112cc58e0ab7ba47b1c22ed134d6c))
+
# [2.9.0-next.0](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.9.0-next.0) (2020-12-10)
**Note:** Version bump only for package gatsby-transformer-yaml
diff --git a/packages/gatsby-transformer-yaml/package.json b/packages/gatsby-transformer-yaml/package.json
index e69254ab7c746..a8a223593c148 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": "2.9.0-next.0",
+ "version": "2.9.0-next.1",
"author": "Kyle Mathews <[email protected]>",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
diff --git a/packages/gatsby/CHANGELOG.md b/packages/gatsby/CHANGELOG.md
index 09157e5f80d56..96a779ad47048 100644
--- a/packages/gatsby/CHANGELOG.md
+++ b/packages/gatsby/CHANGELOG.md
@@ -3,6 +3,16 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+# [2.30.0-next.4](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.30.0-next.4) (2020-12-17)
+
+### Bug Fixes
+
+- **gatsby:** Do not activate inspect if already active ([#28643](https://github.com/gatsbyjs/gatsby/issues/28643)) ([f4e90b6](https://github.com/gatsbyjs/gatsby/commit/f4e90b61c8826dca7f9e07727c8cd7179c51a8a0))
+
+### Features
+
+- **gatsby:** decouple html activities ([#28648](https://github.com/gatsbyjs/gatsby/issues/28648)) ([140d123](https://github.com/gatsbyjs/gatsby/commit/140d12375e61f76238e7d1b8073eaf897918284a))
+
# [2.30.0-next.3](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.30.0-next.3) (2020-12-16)
### Bug Fixes
diff --git a/packages/gatsby/package.json b/packages/gatsby/package.json
index 75877a57c6261..af9569f67fbf1 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": "2.30.0-next.3",
+ "version": "2.30.0-next.4",
"author": "Kyle Mathews <[email protected]>",
"bin": {
"gatsby": "./cli.js"
@@ -77,12 +77,12 @@
"find-cache-dir": "^3.3.1",
"fs-exists-cached": "1.0.0",
"fs-extra": "^8.1.0",
- "gatsby-cli": "^2.17.0-next.2",
+ "gatsby-cli": "^2.17.0-next.3",
"gatsby-core-utils": "^1.8.0-next.0",
"gatsby-graphiql-explorer": "^0.9.0-next.0",
"gatsby-legacy-polyfills": "^0.5.0-next.0",
"gatsby-link": "^2.9.0-next.0",
- "gatsby-plugin-page-creator": "^2.8.0-next.0",
+ "gatsby-plugin-page-creator": "^2.8.0-next.1",
"gatsby-plugin-typescript": "^2.10.0-next.0",
"gatsby-plugin-utils": "^0.7.0-next.0",
"gatsby-react-router-scroll": "^3.5.0-next.0",
|
6a5cd1999a70195a931525fff3e2cc8c3b830664
|
2019-10-02 00:34:11
|
renovate[bot]
|
fix: update dependency eslint-plugin-react to ^7.15.0 (#18010)
| false
|
update dependency eslint-plugin-react to ^7.15.0 (#18010)
|
fix
|
diff --git a/package.json b/package.json
index fc73e2d96ec6f..f9725b066ce4d 100644
--- a/package.json
+++ b/package.json
@@ -19,7 +19,7 @@
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.1",
- "eslint-plugin-react": "^7.14.3",
+ "eslint-plugin-react": "^7.15.0",
"flow-bin": "^0.108.0",
"fs-extra": "^8.1.0",
"glob": "^7.1.4",
diff --git a/packages/gatsby/package.json b/packages/gatsby/package.json
index 4cc44a11f5076..df36f0e2a7069 100644
--- a/packages/gatsby/package.json
+++ b/packages/gatsby/package.json
@@ -60,7 +60,7 @@
"eslint-plugin-graphql": "^3.1.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
- "eslint-plugin-react": "^7.14.3",
+ "eslint-plugin-react": "^7.15.0",
"eslint-plugin-react-hooks": "^1.7.0",
"event-source-polyfill": "^1.0.9",
"express": "^4.17.1",
diff --git a/yarn.lock b/yarn.lock
index fa3887c483496..8f08aea98ef75 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -7732,20 +7732,20 @@ eslint-plugin-react-hooks@^1.7.0:
resolved "https://registry.yarnpkg.com/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-1.7.0.tgz#6210b6d5a37205f0b92858f895a4e827020a7d04"
integrity sha512-iXTCFcOmlWvw4+TOE8CLWj6yX1GwzT0Y6cUfHHZqWnSk144VmVIRcVGtUAzrLES7C798lmvnt02C7rxaOX1HNA==
-eslint-plugin-react@^7.14.3:
- version "7.14.3"
- resolved "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-7.14.3.tgz#911030dd7e98ba49e1b2208599571846a66bdf13"
- integrity sha512-EzdyyBWC4Uz2hPYBiEJrKCUi2Fn+BJ9B/pJQcjw5X+x/H2Nm59S4MJIvL4O5NEE0+WbnQwEBxWY03oUk+Bc3FA==
+eslint-plugin-react@^7.15.0:
+ version "7.15.0"
+ resolved "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-7.15.0.tgz#4808b19cf7b4c439454099d4eb8f0cf0e9fe31dd"
+ integrity sha512-NbIh/yVXoltm8Df28PiPRanfCZAYubGqXU391MTCpW955Vum7S0nZdQYXGAvDh9ye4aNCmOR6YcYZsfMbEQZQA==
dependencies:
array-includes "^3.0.3"
doctrine "^2.1.0"
has "^1.0.3"
- jsx-ast-utils "^2.1.0"
+ jsx-ast-utils "^2.2.1"
object.entries "^1.1.0"
object.fromentries "^2.0.0"
object.values "^1.1.0"
prop-types "^15.7.2"
- resolve "^1.10.1"
+ resolve "^1.12.0"
eslint-scope@^3.7.1:
version "3.7.3"
@@ -12273,7 +12273,7 @@ jsprim@^1.2.2:
json-schema "0.2.3"
verror "1.10.0"
-jsx-ast-utils@^2.1.0, jsx-ast-utils@^2.2.1:
+jsx-ast-utils@^2.2.1:
version "2.2.1"
resolved "https://registry.yarnpkg.com/jsx-ast-utils/-/jsx-ast-utils-2.2.1.tgz#4d4973ebf8b9d2837ee91a8208cc66f3a2776cfb"
integrity sha512-v3FxCcAf20DayI+uxnCuw795+oOIkVu6EnJ1+kSzhqqTZHNkTZ7B66ZgLp4oLJ/gbA64cI0B7WRoHZMSRdyVRQ==
@@ -17406,7 +17406,7 @@ [email protected]:
dependencies:
path-parse "^1.0.6"
-resolve@^1.1.3, resolve@^1.1.5, resolve@^1.1.6, resolve@^1.1.7, resolve@^1.10.0, resolve@^1.10.1, resolve@^1.11.0, resolve@^1.11.1, resolve@^1.12.0, resolve@^1.2.0, resolve@^1.3.2, resolve@^1.5.0, resolve@^1.8.1:
+resolve@^1.1.3, resolve@^1.1.5, resolve@^1.1.6, resolve@^1.1.7, resolve@^1.10.0, resolve@^1.11.0, resolve@^1.11.1, resolve@^1.12.0, resolve@^1.2.0, resolve@^1.3.2, resolve@^1.5.0, resolve@^1.8.1:
version "1.12.0"
resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.12.0.tgz#3fc644a35c84a48554609ff26ec52b66fa577df6"
integrity sha512-B/dOmuoAik5bKcD6s6nXDCjzUKnaDvdkRyAk6rsmsKLipWj4797iothd7jmmUhWTfinVMU+wc56rYKsit2Qy4w==
|
e1f3b50b4c8c42ea498ee92cc42e93f3467614cd
|
2019-10-14 20:35:21
|
Luke Secomb
|
chore(starters): Add luke-starter-gatsby (#18371)
| false
|
Add luke-starter-gatsby (#18371)
|
chore
|
diff --git a/docs/starters.yml b/docs/starters.yml
index 1525adddac47f..aab4be4792e1e 100644
--- a/docs/starters.yml
+++ b/docs/starters.yml
@@ -4061,6 +4061,21 @@
- Google Analytics
- Simple design
- Markdown support
+- url: https://gatsby-starter-luke.netlify.com/
+ repo: https://github.com/lukethacoder/luke-gatsby-starter
+ description: An opinionated starter using TypeScript, styled-components (emotion flavoured), React Hooks & react-spring. Built as a BYOS (bring your own source) so you can get up and running with whatever data you choose.
+ tags:
+ - Language:TypeScript
+ - Transitions
+ - Styling:CSS-in-JS
+ - Linting
+ features:
+ - TypeScript
+ - react-spring animations
+ - BYOS (bring your own source)
+ - Emotion for styling components
+ - Minimal Design
+ - React Hooks (IntersectionObserver, KeyUp, LocalStorage)
- url: https://friendly-cray-96d631.netlify.com/
repo: https://github.com/PABlond/Gatsby-TypeScript-Starter-Blog
description: Project boilerplate of a blog app. The starter was built using Gatsby and Typescript.
|
68d2c8965631437eec841c3db0a2413b32075e5e
|
2019-05-13 19:49:06
|
Marcus Herrmann
|
chore(showcase): Add accessible-app.com (#13991)
| false
|
Add accessible-app.com (#13991)
|
chore
|
diff --git a/docs/sites.yml b/docs/sites.yml
index 6cce3e0c9d90f..7e2c2fc70535a 100644
--- a/docs/sites.yml
+++ b/docs/sites.yml
@@ -5896,3 +5896,17 @@
built_by: Sandbox at Northeastern
built_by_url: https://github.com/sandboxneu/
featured: false
+- title: Accessible App
+ main_url: https://accessible-app.com
+ url: https://accessible-app.com
+ source_url: https://github.com/accessible-app/accessible-app_com
+ description: >
+ Learn how to build inclusive web applications and Single Page Apps in modern JavaScript frameworks. This project collects strategies, links, patterns and plugins for React, Vue and Angular.
+ categories:
+ - Accessibility
+ - Web Development
+ - Tutorial
+ - JavaScript
+ built_by: Marcus Herrmann
+ built_by_url: https://marcus.io
+ featured: false
|
cd41e20fcfe1806386914f6e8b811ebdce520d6d
|
2020-09-28 12:31:44
|
renovate[bot]
|
fix(deps): update minor and patch for gatsby-plugin-preload-fonts (#27131)
| false
|
update minor and patch for gatsby-plugin-preload-fonts (#27131)
|
fix
|
diff --git a/packages/gatsby-plugin-preload-fonts/package.json b/packages/gatsby-plugin-preload-fonts/package.json
index 05f7c76d3386b..5c1eae538ca38 100644
--- a/packages/gatsby-plugin-preload-fonts/package.json
+++ b/packages/gatsby-plugin-preload-fonts/package.json
@@ -12,7 +12,7 @@
},
"dependencies": {
"chalk": "^2.4.2",
- "date-fns": "^2.14.0",
+ "date-fns": "^2.16.1",
"fs-extra": "^8.1.0",
"gatsby-core-utils": "^1.3.20",
"graphql-request": "^1.8.2",
diff --git a/yarn.lock b/yarn.lock
index 720ac2d3a6a1c..1a36ce39ac894 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -8137,10 +8137,10 @@ date-fns@^1.27.2, date-fns@^1.30.1:
resolved "https://registry.yarnpkg.com/date-fns/-/date-fns-1.30.1.tgz#2e71bf0b119153dbb4cc4e88d9ea5acfb50dc05c"
integrity sha512-hBSVCvSmWC+QypYObzwGOd9wqdDpOt+0wl0KbU+R+uuZBS1jN8VsD1ss3irQDknRj5NvxiTF6oj/nDRnN/UQNw==
-date-fns@^2.0.1, date-fns@^2.14.0, date-fns@^2.8.1:
- version "2.15.0"
- resolved "https://registry.yarnpkg.com/date-fns/-/date-fns-2.15.0.tgz#424de6b3778e4e69d3ff27046ec136af58ae5d5f"
- integrity sha512-ZCPzAMJZn3rNUvvQIMlXhDr4A+Ar07eLeGsGREoWU19a3Pqf5oYa+ccd+B3F6XVtQY6HANMFdOQ8A+ipFnvJdQ==
+date-fns@^2.0.1, date-fns@^2.14.0, date-fns@^2.16.1, date-fns@^2.8.1:
+ version "2.16.1"
+ resolved "https://registry.yarnpkg.com/date-fns/-/date-fns-2.16.1.tgz#05775792c3f3331da812af253e1a935851d3834b"
+ integrity sha512-sAJVKx/FqrLYHAQeN7VpJrPhagZc9R4ImZIWYRFZaaohR3KzmuK88touwsSwSVT8Qcbd4zoDsnGfX4GFB4imyQ==
date-now@^0.1.4:
version "0.1.4"
|
ca23506fbb4cebd654e2399f86e6347b98fd3e7f
|
2020-07-21 02:05:47
|
renovate[bot]
|
fix: update www (#25874)
| false
|
update www (#25874)
|
fix
|
diff --git a/www/package.json b/www/package.json
index 67c0a18a65b00..fb9cde12f7f09 100644
--- a/www/package.json
+++ b/www/package.json
@@ -9,7 +9,7 @@
"@emotion/styled": "^10.0.27",
"@jamo/graphql-request": "2.0.3",
"@loadable/component": "^5.13.1",
- "@mdx-js/mdx": "^1.6.11",
+ "@mdx-js/mdx": "^1.6.13",
"@reach/skip-nav": "^0.6.2",
"@styled-system/prop-types": "^5.1.5",
"@styled-system/should-forward-prop": "^5.1.5",
@@ -21,7 +21,7 @@
"dotenv": "^8.2.0",
"email-validator": "^1.2.3",
"fuse.js": "^3.6.1",
- "gatsby": "^2.24.5",
+ "gatsby": "^2.24.7",
"gatsby-alias-imports": "^1.0.4",
"gatsby-core-utils": "^1.3.12",
"gatsby-design-tokens": "^2.0.10",
@@ -30,17 +30,17 @@
"gatsby-plugin-catch-links": "^2.3.11",
"gatsby-plugin-emotion": "^4.3.10",
"gatsby-plugin-feed": "^2.5.11",
- "gatsby-plugin-google-analytics": "^2.3.11",
+ "gatsby-plugin-google-analytics": "^2.3.12",
"gatsby-plugin-google-tagmanager": "^2.3.11",
"gatsby-plugin-guess-js": "^1.3.11",
"gatsby-plugin-layout": "^1.3.10",
"gatsby-plugin-mailchimp": "^2.2.3",
- "gatsby-plugin-manifest": "^2.4.18",
+ "gatsby-plugin-manifest": "^2.4.19",
"gatsby-plugin-mdx": "1.2.27",
"gatsby-plugin-netlify": "^2.3.11",
"gatsby-plugin-netlify-cache": "^0.1.0",
"gatsby-plugin-nprogress": "^2.3.10",
- "gatsby-plugin-offline": "^3.2.18",
+ "gatsby-plugin-offline": "^3.2.19",
"gatsby-plugin-react-helmet": "^3.3.10",
"gatsby-plugin-react-svg": "^3.0.0",
"gatsby-plugin-sharp": "^2.6.20",
|
165615297114267eb2b5fbcb161e491f6c7836ed
|
2020-10-15 17:05:39
|
Marvin Frachet
|
chore(gatsby-plugin-mdx): add pluginOptionsSchema export (#27445)
| false
|
add pluginOptionsSchema export (#27445)
|
chore
|
diff --git a/packages/gatsby-plugin-mdx/__tests__/gatsby-node.js b/packages/gatsby-plugin-mdx/__tests__/gatsby-node.js
new file mode 100644
index 0000000000000..21b3dc1eae8cf
--- /dev/null
+++ b/packages/gatsby-plugin-mdx/__tests__/gatsby-node.js
@@ -0,0 +1,59 @@
+import { testPluginOptionsSchema } from "gatsby-plugin-utils"
+import { pluginOptionsSchema } from "../gatsby-node"
+
+describe(`pluginOptionsSchema`, () => {
+ it(`should provide meaningful errors when fields are invalid`, () => {
+ const expectedErrors = [
+ `"extensions" "[0]" must be a string. "[1]" must be a string. "[2]" must be a string`,
+ `"defaultLayout" must be of type object`,
+ `"gatsbyRemarkPlugins" "[0]" does not match any of the allowed types. "[1]" does not match any of the allowed types`,
+ `"remarkPlugins" must be an array`,
+ `"rehypePlugins" must be an array`,
+ `"mediaTypes" "[0]" must be a string. "[1]" must be a string`,
+ `"shouldBlockNodeFromTransformation" must have an arity lesser or equal to 1`,
+ ]
+
+ const { errors } = testPluginOptionsSchema(pluginOptionsSchema, {
+ extensions: [1, 2, 3],
+ defaultLayout: `this should be an object`,
+ gatsbyRemarkPlugins: [1, { not: `existing prop` }, `valid one`],
+ remarkPlugins: `this should be an array of object`,
+ rehypePlugins: `this should be an array of object`,
+ mediaTypes: [1, 2],
+ shouldBlockNodeFromTransformation: (wrong, number) => null,
+ })
+
+ expect(errors).toEqual(expectedErrors)
+ })
+
+ it(`should validate the schema`, () => {
+ const { isValid } = testPluginOptionsSchema(pluginOptionsSchema, {
+ extensions: [`.mdx`, `.mdxx`],
+ defaultLayout: {
+ posts: `../post-layout.js`,
+ default: `../default-layout.js`,
+ },
+ gatsbyRemarkPlugins: [
+ {
+ resolve: `gatsby-remark-images`,
+ options: {
+ maxWidth: 590,
+ },
+ },
+ `gatsby-remark-other-plugin`,
+ ],
+ remarkPlugins: [
+ require(`../gatsby-node.js`),
+ [require(`../gatsby-node.js`), { target: false }],
+ ],
+ rehypePlugins: [
+ require(`../gatsby-node.js`),
+ [require(`../gatsby-node.js`), { behavior: `wrap` }],
+ ],
+ mediaTypes: [`text/markdown`, `text/x-markdown`, `custom-media/type`],
+ shouldBlockNodeFromTransformation: node => Boolean(node),
+ })
+
+ expect(isValid).toBe(true)
+ })
+})
diff --git a/packages/gatsby-plugin-mdx/gatsby-node.js b/packages/gatsby-plugin-mdx/gatsby-node.js
index 887c7d57f38d8..0035204c58d04 100644
--- a/packages/gatsby-plugin-mdx/gatsby-node.js
+++ b/packages/gatsby-plugin-mdx/gatsby-node.js
@@ -57,3 +57,58 @@ exports.onPostBootstrap = ({ cache }, pluginOptions) => {
)
}
}
+
+if (process.env.GATSBY_EXPERIMENTAL_PLUGIN_OPTION_VALIDATION) {
+ exports.pluginOptionsSchema = function ({ Joi }) {
+ return Joi.object({
+ extensions: Joi.array()
+ .items(Joi.string())
+ .default([".mdx"])
+ .description(
+ `Configure the file extensions that gatsby-plugin-mdx will process`
+ ),
+ defaultLayout: Joi.object({})
+ .unknown(true)
+ .default({})
+ .description(`Set the layout components for MDX source types`),
+ gatsbyRemarkPlugins: Joi.array()
+ .items(
+ Joi.string(),
+ Joi.object({
+ resolve: Joi.string(),
+ options: Joi.object({}).unknown(true),
+ })
+ )
+ .default([])
+ .description(`Use Gatsby-specific remark plugins`),
+ remarkPlugins: Joi.array()
+ .items(
+ Joi.alternatives().try(
+ Joi.object({}).unknown(true),
+ Joi.array().items(Joi.object({}).unknown(true))
+ )
+ )
+ .default([])
+ .description(`Specify remark plugins`),
+ rehypePlugins: Joi.array()
+ .items(
+ Joi.alternatives().try(
+ Joi.object({}).unknown(true),
+ Joi.array().items(Joi.object({}).unknown(true))
+ )
+ )
+ .default([])
+ .description(`Specify rehype plugins`),
+ mediaTypes: Joi.array()
+ .items(Joi.string())
+ .default(["text/markdown", "text/x-markdown"])
+ .description(`Determine which media types are processed by MDX`),
+ shouldBlockNodeFromTransformation: Joi.function()
+ .maxArity(1)
+ .default(() => false)
+ .description(
+ `Disable MDX transformation for nodes where this function returns true`
+ ),
+ })
+ }
+}
diff --git a/packages/gatsby-plugin-mdx/package.json b/packages/gatsby-plugin-mdx/package.json
index 8c9cff2375947..52f2c164c9f96 100644
--- a/packages/gatsby-plugin-mdx/package.json
+++ b/packages/gatsby-plugin-mdx/package.json
@@ -58,6 +58,7 @@
"devDependencies": {
"@mdx-js/mdx": "^1.6.16",
"@mdx-js/react": "^1.6.16",
+ "gatsby-plugin-utils": "^0.2.31",
"jest": "^24.9.0",
"js-combinatorics": "^1.4.5",
"react-test-renderer": "^16.13.1"
|
15b08c2a5cd42ddb1124c24c4a8069c0e6995307
|
2018-11-14 18:47:26
|
Alex Vivero
|
feat(starters): add gatsby-redux-starter by @AVivero (#9771)
| false
|
add gatsby-redux-starter by @AVivero (#9771)
|
feat
|
diff --git a/docs/starters.yml b/docs/starters.yml
index 55aa914a268b2..b93132430c339 100644
--- a/docs/starters.yml
+++ b/docs/starters.yml
@@ -1203,3 +1203,19 @@
- Twitter and OpenGraph Tags
- ESLint
- Prettier Code Styling
+- url: https://avivero.github.io/gatsby-redux-starter/
+ repo: https://github.com/AVivero/gatsby-redux-starter
+ description: Gatsby starter site with Redux, Sass, Bootstrap, Css Modules and Material Icons
+ tags:
+ - Redux
+ - Styling:SCSS
+ - Styling:Bootstrap
+ - Styling:Material
+ - Linting
+ features:
+ - Gatsby v2 support
+ - Redux support
+ - Sass support
+ - Bootstrap v4 support
+ - Css Modules support
+ - ESLint, Prettier
diff --git a/yarn.lock b/yarn.lock
index c92b95afbc1ec..3404d92419ea6 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -2965,14 +2965,6 @@ babel-plugin-macros@^2.4.2:
cosmiconfig "^5.0.5"
resolve "^1.8.1"
-babel-plugin-macros@^2.4.2:
- version "2.4.2"
- resolved "https://registry.yarnpkg.com/babel-plugin-macros/-/babel-plugin-macros-2.4.2.tgz#21b1a2e82e2130403c5ff785cba6548e9b644b28"
- integrity sha512-NBVpEWN4OQ/bHnu1fyDaAaTPAjnhXCEPqr1RwqxrU7b6tZ2hypp+zX4hlNfmVGfClD5c3Sl6Hfj5TJNF5VG5aA==
- dependencies:
- cosmiconfig "^5.0.5"
- resolve "^1.8.1"
-
babel-plugin-react-css-modules@^3.2.1:
version "3.4.2"
resolved "https://registry.yarnpkg.com/babel-plugin-react-css-modules/-/babel-plugin-react-css-modules-3.4.2.tgz#4c1db8d4bc8b2973f6c689da7dbd56b0cb8f099c"
|
341bd6dec2172a91a18451c645e6e29ebc001d37
|
2022-08-31 00:36:36
|
GatsbyJS Bot
|
chore(docs): Release Notes for 4.22 (#36464)
| false
|
Release Notes for 4.22 (#36464)
|
chore
|
diff --git a/docs/docs/reference/release-notes/v4.22/index.md b/docs/docs/reference/release-notes/v4.22/index.md
new file mode 100644
index 0000000000000..f82575b16edc2
--- /dev/null
+++ b/docs/docs/reference/release-notes/v4.22/index.md
@@ -0,0 +1,117 @@
+---
+date: "2022-08-30"
+version: "4.22.0"
+title: "v4.22 Release Notes"
+---
+
+Welcome to `[email protected]` release (August 2022 #3)
+
+Key highlights of this release:
+
+- [Open RFCs](#open-rfcs)
+
+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.21)
+
+[Full changelog][full-changelog]
+
+---
+
+## Open RFCs
+
+### Slices API
+
+We are adding a new API that we are calling “Slices”. By using a new `<Slice />` React component in combination with a `src/slices` directory or `createSlice` API for common UI features, Gatsby will be able to build and deploy individual pieces of your site that had content changes, not entire pages.
+
+To create a slice, simply:
+
+1. Create the slice by adding a `slices/footer.js` file, or using the `createPages` API action:
+
+ ```js
+ actions.createSlice({
+ id: `footer`,
+ component: require.resolve(`./src/components/footer.js`),
+ })
+ ```
+
+2. Add a `<Slice />` component on your site, providing an `alias` string prop, where `alias` is either name of the file (in our case, `footer`). Any additional props passed will be handed down to the underlying component.
+
+ ```jsx
+ return (
+ <>
+ <Header className="my-header" />
+ {children}
+ <Slice alias="footer" />
+ </>
+ )
+ ```
+
+To read more, head over to [RFC: Slices API](https://github.com/gatsbyjs/gatsby/discussions/36339). We appreciate any feedback there.
+
+### Changes in `sort` and aggregation fields in Gatsby GraphQL Schema
+
+We are proposing Breaking Changes for the next major version of Gatsby to our GraphQL API. The goal of this change is increasing performance and reducing resource usage of builds. Proposed changes impact `sort` and aggregation fields (`group`, `min`, `max`, `sum`, `distinct`).
+
+Basic example of proposed change:
+
+Current:
+
+```graphql
+{
+ allMarkdownRemark(sort: { fields: [frontmatter___date], order: DESC }) {
+ nodes {
+ ...fields
+ }
+ }
+}
+```
+
+Proposed:
+
+```jsx
+{
+ allMarkdownRemark(sort: { frontmatter: { date: DESC } }) {
+ nodes {
+ ...fields
+ }
+ }
+}
+```
+
+To read more, head over to [RFC: Change to sort and aggregation fields API](https://github.com/gatsbyjs/gatsby/discussions/36242). We appreciate any feedback there.
+
+## Notable bugfixes, improvements, & changes
+
+- `gatsby`
+ - Add option to emit TypeScript types during `gatsby build`, via [PR #36405](https://github.com/gatsbyjs/gatsby/pull/36405)
+ - Fix issue where TypeScript retry mechanism would cause Windows to crash Gatsby while Parcel cache is open, via [PR #36377](https://github.com/gatsbyjs/gatsby/pull/36377)
+ - Prevent errors when the `Head` component has a root text node, via [PR #36402](https://github.com/gatsbyjs/gatsby/pull/36402)
+- `gatsby-cli`: Preserve verbosity in spawn child processes, via [PR #36399](https://github.com/gatsbyjs/gatsby/pull/36399)
+- `gatsby-source-graphql`: we have "soft deprecated" this package in favor of other, CMS-specific source plugins
+ - _Note:_ You can continue to use this plugin for small sites or proof-of-concepts, but for larger sites backed by one or multiple CMSs we recommend using the official source plugin
+ - [Read more on the README about the decision](https://gatsbyjs.com/plugins/gatsby-source-graphql) as well as the [pull request](https://github.com/gatsbyjs/gatsby/pull/36469)
+- `gatsby-plugin-mdx`
+ - Fix issue with plugin options from e.g. gatsby-remark-images not getting passed through, via [PR #36387](https://github.com/gatsbyjs/gatsby/pull/36387)
+ - Fix issue with too long chunk names, via [PR #36387](https://github.com/gatsbyjs/gatsby/pull/36387)
+- `gatsby-plugin-image`: Fix bug that prevents `onLoad` being called on first load, via [PR #36375](https://github.com/gatsbyjs/gatsby/pull/36375)
+
+## Contributors
+
+A big **Thank You** to [our community who contributed][full-changelog] to this release 💜
+
+- [alexlouden](https://github.com/alexlouden): fix(gatsby-plugin-react-helmet): Typo in `onPreInit` warning [PR #36419](https://github.com/gatsbyjs/gatsby/pull/36419)
+- [axe312ger](https://github.com/axe312ger): chore(docs): MDX v2 [PR #35893](https://github.com/gatsbyjs/gatsby/pull/35893)
+- [mashehu](https://github.com/mashehu): chore(docs): fix incorrect closing tag in tutorial [PR #36459](https://github.com/gatsbyjs/gatsby/pull/36459)
+- [endymion1818](https://github.com/endymion1818): feat(docs): add webiny to headless cms list [PR #36388](https://github.com/gatsbyjs/gatsby/pull/36388)
+- [that1matt](https://github.com/that1matt): fix(gatsby-source-graphql): add dataLoaderOptions validation to gatsby-source-graphql [PR #36112](https://github.com/gatsbyjs/gatsby/pull/36112)
+- [taiga39](https://github.com/taiga39): chore(docs): Fix some typos [PR #36431](https://github.com/gatsbyjs/gatsby/pull/36431)
+- [TalAter](https://github.com/TalAter): chore(docs): Update plugin count in part 3 of the tutorial [PR #36455](https://github.com/gatsbyjs/gatsby/pull/36455)
+- [Kornil](https://github.com/Kornil)
+ - chore(gatsby): convert babel-loaders to typescript [PR #36318](https://github.com/gatsbyjs/gatsby/pull/36318)
+ - chore(gatsby): convert sanitize-node to typescript [PR #36327](https://github.com/gatsbyjs/gatsby/pull/36327)
+- [ChefYeum](https://github.com/ChefYeum): chore(docs): Fix page link to page 6 of remark tutorial [PR #36437](https://github.com/gatsbyjs/gatsby/pull/36437)
+
+[full-changelog]: https://github.com/gatsbyjs/gatsby/compare/[email protected]@4.22.0
|
33ea7e77dd80146d1597e3f7d99a3c1f4d9fd883
|
2019-09-16 21:50:51
|
richhiggins
|
docs: deploying to Heroku, update to headers config (#17579)
| false
|
deploying to Heroku, update to headers config (#17579)
|
docs
|
diff --git a/docs/docs/deploying-to-heroku.md b/docs/docs/deploying-to-heroku.md
index e28ea441ba7a5..6d85721d07e5d 100644
--- a/docs/docs/deploying-to-heroku.md
+++ b/docs/docs/deploying-to-heroku.md
@@ -44,7 +44,7 @@ The following configuration will give you a good start point in line with Gatsby
{
"root": "public/",
"headers": {
- "/**/": {
+ "/**": {
"Cache-Control": "public, max-age=0, must-revalidate"
},
"/**.css": {
|
a8745ea26624ef758080846adefff3d5d7784291
|
2021-10-29 21:16:10
|
Michal Piechowiak
|
fix(gatsby-source-contentful): fix downloadLocal for LMDB (#33715)
| false
|
fix downloadLocal for LMDB (#33715)
|
fix
|
diff --git a/e2e-tests/contentful/cypress/integration/download-local.js b/e2e-tests/contentful/cypress/integration/download-local.js
new file mode 100644
index 0000000000000..f4552b6fa50fd
--- /dev/null
+++ b/e2e-tests/contentful/cypress/integration/download-local.js
@@ -0,0 +1,13 @@
+describe(`downloadLocal`, () => {
+ beforeEach(() => {
+ cy.visit("/download-local").waitForRouteChange()
+ })
+
+ it(`renders dynamic image from static directory`, () => {
+ cy.get("#gatsby-plugin-image-download-local").should("be.visible")
+ cy.get("#gatsby-plugin-image-download-local").should("have.attr", "srcset")
+ cy.get("#gatsby-plugin-image-download-local")
+ .should("have.attr", "src")
+ .should("match", /^\/static/)
+ })
+})
diff --git a/e2e-tests/contentful/gatsby-config.js b/e2e-tests/contentful/gatsby-config.js
index 0050bf41b005a..5d2a8e90d134d 100644
--- a/e2e-tests/contentful/gatsby-config.js
+++ b/e2e-tests/contentful/gatsby-config.js
@@ -12,9 +12,11 @@ module.exports = {
spaceId: `k8iqpp6u0ior`,
accessToken: `hO_7N0bLaCJFbu5nL3QVekwNeB_TNtg6tOCB_9qzKUw`,
enableTags: true,
+ downloadLocal: true,
},
},
`gatsby-transformer-remark`,
+ `gatsby-transformer-sharp`,
`gatsby-transformer-sqip`,
`gatsby-plugin-image`,
`gatsby-plugin-sharp`,
diff --git a/e2e-tests/contentful/src/pages/download-local.js b/e2e-tests/contentful/src/pages/download-local.js
new file mode 100644
index 0000000000000..a5bdddb8a18f2
--- /dev/null
+++ b/e2e-tests/contentful/src/pages/download-local.js
@@ -0,0 +1,34 @@
+import { graphql } from "gatsby"
+import { GatsbyImage } from "gatsby-plugin-image"
+import * as React from "react"
+
+import Layout from "../components/layout"
+
+const DownloadLocalPage = ({ data }) => {
+ return (
+ <Layout>
+ <h1>Test downloadLocal feature</h1>
+ <GatsbyImage
+ id="gatsby-plugin-image-download-local"
+ image={data.contentfulAsset.localFile.childImageSharp.gatsbyImageData}
+ />
+ </Layout>
+ )
+}
+
+export default DownloadLocalPage
+
+export const pageQuery = graphql`
+ query DownloadLocalQuery {
+ contentfulAsset(contentful_id: { eq: "3BSI9CgDdAn1JchXmY5IJi" }) {
+ contentful_id
+ title
+ localFile {
+ absolutePath
+ childImageSharp {
+ gatsbyImageData
+ }
+ }
+ }
+ }
+`
diff --git a/e2e-tests/contentful/src/pages/index.js b/e2e-tests/contentful/src/pages/index.js
index 79cf41c1fbd2a..6467a973fda27 100644
--- a/e2e-tests/contentful/src/pages/index.js
+++ b/e2e-tests/contentful/src/pages/index.js
@@ -14,6 +14,9 @@ const IndexPage = () => (
<li>
<Link to="/gatsby-plugin-image">/gatsby-plugin-image</Link>
</li>
+ <li>
+ <Link to="/download-local">/download-local</Link>
+ </li>
</ul>
<h2>Content Rendering</h2>
<ul>
diff --git a/packages/gatsby-source-contentful/src/__tests__/gatsby-node.js b/packages/gatsby-source-contentful/src/__tests__/gatsby-node.js
index ec4a29e9bdb8e..2cbd6d663234b 100644
--- a/packages/gatsby-source-contentful/src/__tests__/gatsby-node.js
+++ b/packages/gatsby-source-contentful/src/__tests__/gatsby-node.js
@@ -1,11 +1,7 @@
// @ts-check
// This is more an integration test than it is a unit test. We try to mock as little as we can
import _ from "lodash"
-import {
- onPreBootstrap,
- createSchemaCustomization,
- sourceNodes,
-} from "../gatsby-node"
+import { createSchemaCustomization, sourceNodes } from "../gatsby-node"
import { fetchContent, fetchContentTypes } from "../fetch"
import { makeId } from "../normalize"
@@ -68,8 +64,6 @@ describe(`gatsby-node`, () => {
const simulateGatsbyBuild = async function (
pluginOptions = defaultPluginOptions
) {
- await onPreBootstrap({ store })
-
await createSchemaCustomization(
{ schema, actions, reporter, cache },
pluginOptions
diff --git a/packages/gatsby-source-contentful/src/create-schema-customization.js b/packages/gatsby-source-contentful/src/create-schema-customization.js
index 4da9e73db99e7..0d64eabe6174c 100644
--- a/packages/gatsby-source-contentful/src/create-schema-customization.js
+++ b/packages/gatsby-source-contentful/src/create-schema-customization.js
@@ -97,6 +97,18 @@ export async function createSchemaCustomization(
fields: {
contentful_id: { type: `String!` },
id: { type: `ID!` },
+ ...(pluginConfig.get(`downloadLocal`)
+ ? {
+ localFile: {
+ type: `File`,
+ extensions: {
+ link: {
+ from: `fields.localFile`,
+ },
+ },
+ },
+ }
+ : {}),
},
interfaces: [`ContentfulReference`, `Node`],
}),
diff --git a/packages/gatsby-source-contentful/src/download-contentful-assets.js b/packages/gatsby-source-contentful/src/download-contentful-assets.js
index 5fdf69e49645e..3878517e61cc2 100644
--- a/packages/gatsby-source-contentful/src/download-contentful-assets.js
+++ b/packages/gatsby-source-contentful/src/download-contentful-assets.js
@@ -29,7 +29,7 @@ async function distributeWorkload(workers, count = 50) {
export async function downloadContentfulAssets(gatsbyFunctions) {
const {
- actions: { createNode, touchNode },
+ actions: { createNode, touchNode, createNodeField },
createNodeId,
store,
cache,
@@ -95,7 +95,7 @@ export async function downloadContentfulAssets(gatsbyFunctions) {
}
if (fileNodeID) {
- node.localFile___NODE = fileNodeID
+ createNodeField({ node, name: `localFile`, value: fileNodeID })
}
return node
diff --git a/packages/gatsby-source-contentful/src/gatsby-node.js b/packages/gatsby-source-contentful/src/gatsby-node.js
index 05f430ff6e7d5..7e7981df2c86d 100644
--- a/packages/gatsby-source-contentful/src/gatsby-node.js
+++ b/packages/gatsby-source-contentful/src/gatsby-node.js
@@ -7,7 +7,6 @@ import { maskText } from "./plugin-options"
export { createSchemaCustomization } from "./create-schema-customization"
export { sourceNodes } from "./source-nodes"
-export { onPreBootstrap } from "./on-pre-bootstrap"
export { setFieldsOnGraphQLNodeType } from "./extend-node-type"
const fetch = fetchRetry(origFetch)
diff --git a/packages/gatsby-source-contentful/src/on-pre-bootstrap.js b/packages/gatsby-source-contentful/src/on-pre-bootstrap.js
deleted file mode 100644
index 796bd4fbdaa44..0000000000000
--- a/packages/gatsby-source-contentful/src/on-pre-bootstrap.js
+++ /dev/null
@@ -1,14 +0,0 @@
-// @ts-check
-import fs from "fs-extra"
-import path from "path"
-
-export async function onPreBootstrap({ store }) {
- // Ensure cache dir exists for downloadLocal
- const program = store.getState().program
-
- const CACHE_DIR = path.resolve(
- `${program.directory}/.cache/contentful/assets/`
- )
-
- await fs.ensureDir(CACHE_DIR)
-}
diff --git a/packages/gatsby-source-contentful/src/source-nodes.js b/packages/gatsby-source-contentful/src/source-nodes.js
index 7cb6e7f79b1b8..b3951ee477d92 100644
--- a/packages/gatsby-source-contentful/src/source-nodes.js
+++ b/packages/gatsby-source-contentful/src/source-nodes.js
@@ -471,11 +471,8 @@ export async function sourceNodes(
creationActivity.end()
- // @todo add own activity!
-
+ // Download asset files to local fs
if (pluginConfig.get(`downloadLocal`)) {
- reporter.info(`Download Contentful asset files`)
-
await downloadContentfulAssets({
actions,
createNodeId,
|
90bb57b51a41b40200239471df6b66d9fcc730c2
|
2020-11-10 19:52:56
|
Ruslan Vasiliev
|
fix(gatsby): Update TS types to allow Node 'parent' to be nullable (#26570)
| false
|
Update TS types to allow Node 'parent' to be nullable (#26570)
|
fix
|
diff --git a/packages/gatsby/index.d.ts b/packages/gatsby/index.d.ts
index 1486f85cc7db2..b9d6e93865f15 100644
--- a/packages/gatsby/index.d.ts
+++ b/packages/gatsby/index.d.ts
@@ -1527,7 +1527,7 @@ export interface ServiceWorkerArgs extends BrowserPluginArgs {
export interface NodeInput {
id: string
- parent?: string
+ parent?: string | null
children?: string[]
internal: {
type: string
@@ -1540,7 +1540,7 @@ export interface NodeInput {
}
export interface Node extends NodeInput {
- parent: string
+ parent: string | null
children: string[]
internal: NodeInput["internal"] & {
owner: string
|
667566d7c2261d43b970b63db6ec6e4b8f9d4ce3
|
2020-12-17 20:13:15
|
renovate[bot]
|
chore(deps): update dependency @types/node to ^12.19.9 (#28597)
| false
|
update dependency @types/node to ^12.19.9 (#28597)
|
chore
|
diff --git a/package.json b/package.json
index d0d32eb1c7d90..c9bf38d623776 100644
--- a/package.json
+++ b/package.json
@@ -18,7 +18,7 @@
"@types/jest": "^24.9.1",
"@types/joi": "^14.3.4",
"@types/lodash": "^4.14.165",
- "@types/node": "^12.19.8",
+ "@types/node": "^12.19.9",
"@types/node-fetch": "^2.5.7",
"@types/normalize-path": "^3.0.0",
"@types/react": "^16.9.56",
diff --git a/yarn.lock b/yarn.lock
index efa5a8cdc6119..173c94ce8c775 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -4176,10 +4176,10 @@
resolved "https://registry.yarnpkg.com/@types/node/-/node-14.14.5.tgz#e92d3b8f76583efa26c1a63a21c9d3c1143daa29"
integrity sha512-H5Wn24s/ZOukBmDn03nnGTp18A60ny9AmCwnEcgJiTgSGsCO7k+NWP7zjCCbhlcnVCoI+co52dUAt9GMhOSULw==
-"@types/node@^12.19.8":
- version "12.19.8"
- resolved "https://registry.yarnpkg.com/@types/node/-/node-12.19.8.tgz#efd6d1a90525519fc608c9db16c8a78f7693a978"
- integrity sha512-D4k2kNi0URNBxIRCb1khTnkWNHv8KSL1owPmS/K5e5t8B2GzMReY7AsJIY1BnP5KdlgC4rj9jk2IkDMasIE7xg==
+"@types/node@^12.19.9":
+ version "12.19.9"
+ resolved "https://registry.yarnpkg.com/@types/node/-/node-12.19.9.tgz#990ad687ad8b26ef6dcc34a4f69c33d40c95b679"
+ integrity sha512-yj0DOaQeUrk3nJ0bd3Y5PeDRJ6W0r+kilosLA+dzF3dola/o9hxhMSg2sFvVcA2UHS5JSOsZp4S0c1OEXc4m1Q==
"@types/node@^8.5.7":
version "8.10.59"
|
5682aa075d34f754dac40b23acdb5a2830d1ae0c
|
2022-06-01 13:52:21
|
Ben Ogle
|
chore(docs): Add articles to awesome gatsby resources (#35738)
| false
|
Add articles to awesome gatsby resources (#35738)
|
chore
|
diff --git a/docs/docs/awesome-gatsby-resources.md b/docs/docs/awesome-gatsby-resources.md
index 223efc15f1c4b..eaac250bc1e77 100644
--- a/docs/docs/awesome-gatsby-resources.md
+++ b/docs/docs/awesome-gatsby-resources.md
@@ -96,6 +96,8 @@ See the [unofficial list of themes](https://gatsbytemplates.io/)
- [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
|
5d0dfa2cf455a86ac0b215a7ee8c4c83a71a4cd4
|
2021-02-09 22:18:40
|
Vladimir Razuvaev
|
chore(gatsby): remove noDefaultResolvers argument from infer extension (#29367)
| false
|
remove noDefaultResolvers argument from infer extension (#29367)
|
chore
|
diff --git a/packages/gatsby/src/schema/__tests__/__snapshots__/build-schema.js.snap b/packages/gatsby/src/schema/__tests__/__snapshots__/build-schema.js.snap
index b07ba0f7f40e6..9eeb205c9b310 100644
--- a/packages/gatsby/src/schema/__tests__/__snapshots__/build-schema.js.snap
+++ b/packages/gatsby/src/schema/__tests__/__snapshots__/build-schema.js.snap
@@ -14,16 +14,10 @@ directive @fileByRelativePath(from: String) on FIELD_DEFINITION
directive @proxy(from: String!, fromNode: Boolean! = false) on FIELD_DEFINITION
\\"\\"\\"Infer field types from field values.\\"\\"\\"
-directive @infer(
- \\"\\"\\"Don't add default resolvers to defined fields.\\"\\"\\"
- noDefaultResolvers: Boolean @deprecated(reason: \\"noDefaultResolvers is deprecated, annotate individual fields.\\")
-) on OBJECT
+directive @infer on OBJECT
\\"\\"\\"Do not infer field types from field values.\\"\\"\\"
-directive @dontInfer(
- \\"\\"\\"Don't add default resolvers to defined fields.\\"\\"\\"
- noDefaultResolvers: Boolean @deprecated(reason: \\"noDefaultResolvers is deprecated, annotate individual fields.\\")
-) on OBJECT
+directive @dontInfer on OBJECT
\\"\\"\\"Define the mime-types handled by this type.\\"\\"\\"
directive @mimeTypes(
diff --git a/packages/gatsby/src/schema/__tests__/__snapshots__/rebuild-schema.js.snap b/packages/gatsby/src/schema/__tests__/__snapshots__/rebuild-schema.js.snap
index cc12b31cf5aa9..79fd02ccc18d4 100644
--- a/packages/gatsby/src/schema/__tests__/__snapshots__/rebuild-schema.js.snap
+++ b/packages/gatsby/src/schema/__tests__/__snapshots__/rebuild-schema.js.snap
@@ -14,16 +14,10 @@ directive @fileByRelativePath(from: String) on FIELD_DEFINITION
directive @proxy(from: String!, fromNode: Boolean! = false) on FIELD_DEFINITION
\\"\\"\\"Infer field types from field values.\\"\\"\\"
-directive @infer(
- \\"\\"\\"Don't add default resolvers to defined fields.\\"\\"\\"
- noDefaultResolvers: Boolean @deprecated(reason: \\"noDefaultResolvers is deprecated, annotate individual fields.\\")
-) on OBJECT
+directive @infer on OBJECT
\\"\\"\\"Do not infer field types from field values.\\"\\"\\"
-directive @dontInfer(
- \\"\\"\\"Don't add default resolvers to defined fields.\\"\\"\\"
- noDefaultResolvers: Boolean @deprecated(reason: \\"noDefaultResolvers is deprecated, annotate individual fields.\\")
-) on OBJECT
+directive @dontInfer on OBJECT
\\"\\"\\"Define the mime-types handled by this type.\\"\\"\\"
directive @mimeTypes(
diff --git a/packages/gatsby/src/schema/__tests__/rebuild-sitepage-type.js b/packages/gatsby/src/schema/__tests__/rebuild-sitepage-type.js
index 1d584fad07705..2a7342fe130cb 100644
--- a/packages/gatsby/src/schema/__tests__/rebuild-sitepage-type.js
+++ b/packages/gatsby/src/schema/__tests__/rebuild-sitepage-type.js
@@ -99,6 +99,7 @@ describe(`build and update schema for SitePage`, () => {
fields = Object.keys(schema.getType(`SitePage`).getFields())
expect(fields.length).toBe(12)
+ expect(fields.sort()).toEqual(initialFields.concat(`context`).sort())
inputFields = Object.keys(schema.getType(`SitePageFilterInput`).getFields())
expect(fields.length).toBe(12)
diff --git a/packages/gatsby/src/schema/extensions/index.js b/packages/gatsby/src/schema/extensions/index.js
index 9da8a33c46fc8..efc43b8f475aa 100644
--- a/packages/gatsby/src/schema/extensions/index.js
+++ b/packages/gatsby/src/schema/extensions/index.js
@@ -27,23 +27,9 @@ const dontInferExtensionName = `dontInfer`
const typeExtensions = {
[inferExtensionName]: {
description: `Infer field types from field values.`,
- args: {
- noDefaultResolvers: {
- type: `Boolean`,
- description: `Don't add default resolvers to defined fields.`,
- deprecationReason: `noDefaultResolvers is deprecated, annotate individual fields.`,
- },
- },
},
[dontInferExtensionName]: {
description: `Do not infer field types from field values.`,
- args: {
- noDefaultResolvers: {
- type: `Boolean`,
- description: `Don't add default resolvers to defined fields.`,
- deprecationReason: `noDefaultResolvers is deprecated, annotate individual fields.`,
- },
- },
},
mimeTypes: {
description: `Define the mime-types handled by this type.`,
diff --git a/packages/gatsby/src/schema/infer/__tests__/infer.js b/packages/gatsby/src/schema/infer/__tests__/infer.js
index 3cf0403ccffc0..5c25ee74abff8 100644
--- a/packages/gatsby/src/schema/infer/__tests__/infer.js
+++ b/packages/gatsby/src/schema/infer/__tests__/infer.js
@@ -525,7 +525,12 @@ describe(`GraphQL type inference`, () => {
name: `Repro`,
interfaces: [`Node`],
fields: {
- field_that_needs_to_be_sanitized_: `String`,
+ field_that_needs_to_be_sanitized_: {
+ type: `String`,
+ extensions: {
+ proxy: { from: `field_that_needs_to_be_sanitized?` },
+ },
+ },
_another__field_that_needs_to_be_sanitized: {
type: `String`,
resolve: source =>
@@ -1386,54 +1391,4 @@ Object {
)
})
})
-
- describe(`missing extension warning`, () => {
- it(`warns when inferred extension is missing in type definition`, async () => {
- const nodes = [
- {
- date: `2012-11-01`,
- internal: { type: `Test` },
- id: `1`,
- },
- {
- linked___NODE: `foo`,
- internal: { type: `Test` },
- id: `2`,
- },
-
- // linked node:
- { id: `foo`, internal: { type: `Foo` } },
- ]
- const typeDefs = [
- {
- typeOrTypeDef: `
- type Test implements Node {
- linked: Foo
- date: Date
- }
- `,
- },
- ]
- await buildTestSchema(nodes, {}, typeDefs)
- expect(report.warn.mock.calls.length).toEqual(2)
- expect(report.warn.mock.calls[0][0]).toEqual(
- `Deprecation warning: adding inferred extension \`dateformat\` for field \`Test.date\`.\n` +
- `In Gatsby v3, only fields with an explicit directive/extension will be resolved correctly.\n` +
- `Add the following type definition to fix this:\n\n` +
- ` type Test implements Node {\n` +
- ` date: Date @dateformat\n` +
- ` }\n\n` +
- `https://www.gatsbyjs.com/docs/actions/#createTypes`
- )
- expect(report.warn.mock.calls[1][0]).toEqual(
- `Deprecation warning: adding inferred extension \`link\` for field \`Test.linked\`.\n` +
- `In Gatsby v3, only fields with an explicit directive/extension will be resolved correctly.\n` +
- `Add the following type definition to fix this:\n\n` +
- ` type Test implements Node {\n` +
- ` linked: Foo @link(by: "id", from: "linked___NODE")\n` +
- ` }\n\n` +
- `https://www.gatsbyjs.com/docs/actions/#createTypes`
- )
- })
- })
})
diff --git a/packages/gatsby/src/schema/infer/__tests__/merge-types.js b/packages/gatsby/src/schema/infer/__tests__/merge-types.js
index ebd132cb0a70e..69b7fd98e5679 100644
--- a/packages/gatsby/src/schema/infer/__tests__/merge-types.js
+++ b/packages/gatsby/src/schema/infer/__tests__/merge-types.js
@@ -80,15 +80,10 @@ describe(`merges explicit and inferred type definitions`, () => {
)
})
- const buildTestSchemaWithSdl = async ({ infer, addDefaultResolvers }) => {
+ const buildTestSchemaWithSdl = async ({ infer }) => {
let directive = ``
if (infer != null) {
directive = infer ? `@infer` : `@dontInfer`
- if (addDefaultResolvers != null) {
- directive += `(noDefaultResolvers: ${
- addDefaultResolvers ? `false` : `true`
- })`
- }
}
const typeDefs = [
@@ -129,16 +124,10 @@ describe(`merges explicit and inferred type definitions`, () => {
return store.getState().schema
}
- const buildTestSchemaWithTypeBuilders = async ({
- infer,
- addDefaultResolvers,
- }) => {
+ const buildTestSchemaWithTypeBuilders = async ({ infer }) => {
const extensions = {}
if (infer != null) {
extensions.infer = infer
- if (addDefaultResolvers != null) {
- extensions.addDefaultResolvers = addDefaultResolvers
- }
}
const typeDefs = [
buildObjectType({
@@ -191,7 +180,7 @@ describe(`merges explicit and inferred type definitions`, () => {
[`typeBuilders`, buildTestSchemaWithTypeBuilders],
].forEach(([name, buildTestSchema]) => {
describe(`with ${name}`, () => {
- it(`with default strategy (implicit "@infer(noDefaultResolvers: false)")`, async () => {
+ it(`with default strategy (implicit "@infer")`, async () => {
const schema = await buildTestSchema({})
const fields = schema.getType(`Test`).getFields()
const nestedFields = schema.getType(`Nested`).getFields()
@@ -239,7 +228,7 @@ describe(`merges explicit and inferred type definitions`, () => {
expect(fields.inferDate.resolve).toBeDefined()
})
- it(`with @infer (implicit "noDefaultResolvers: true")`, async () => {
+ it(`with @infer`, async () => {
const schema = await buildTestSchema({
infer: true,
})
@@ -290,7 +279,7 @@ describe(`merges explicit and inferred type definitions`, () => {
expect(fields.inferDate.resolve).toBeDefined()
})
- it(`with @dontInfer directive (implicit "noDefaultResolvers: true")`, async () => {
+ it(`with @dontInfer directive`, async () => {
const schema = await buildTestSchema({
infer: false,
})
@@ -339,212 +328,6 @@ describe(`merges explicit and inferred type definitions`, () => {
// Date resolvers
expect(fields.explicitDate.resolve).toBe(defaultResolver)
})
-
- it(`with "infer(noDefaultResolvers: false)"`, async () => {
- const schema = await buildTestSchema({
- infer: true,
- addDefaultResolvers: true,
- })
- const fields = schema.getType(`Test`).getFields()
- const nestedFields = schema.getType(`Nested`).getFields()
- const nestedNestedFields = schema.getType(`NestedNested`).getFields()
-
- // Non-conflicting top-level fields added
- expect(fields.foo.type.toString()).toBe(`Boolean`)
- expect(fields.bar.type.toString()).toBe(`Boolean!`)
-
- // Non-conflicting fields added on nested type
- expect(fields.nested.type.toString()).toBe(`Nested!`)
- expect(fields.nestedArray.type.toString()).toBe(`[Nested!]!`)
- expect(nestedFields.foo.type.toString()).toBe(`Boolean`)
- expect(nestedFields.bar.type.toString()).toBe(`Boolean!`)
- expect(nestedNestedFields.foo.type.toString()).toBe(`Boolean`)
- expect(nestedNestedFields.bar.type.toString()).toBe(`Boolean!`)
-
- // When type is referenced more than once on typeDefs, all non-conflicting
- // fields are added
- expect(nestedFields.extra.type.toString()).toBe(`Boolean`)
- expect(nestedNestedFields.notExtra.type.toString()).toBe(`Boolean`)
- expect(nestedNestedFields.extraExtra.type.toString()).toBe(`Boolean`)
- expect(nestedNestedFields.extraExtraExtra.type.toString()).toBe(
- `Boolean`
- )
-
- // Explicit typeDefs have proprity in case of type conflict
- expect(fields.conflictType.type.toString()).toBe(`String!`)
- expect(fields.conflictArray.type.toString()).toBe(`Int!`)
- expect(fields.conflictArrayReverse.type.toString()).toBe(`[Int!]!`)
- expect(fields.conflictArrayType.type.toString()).toBe(`[String!]!`)
- expect(fields.conflictScalar.type.toString()).toBe(`Int!`)
- expect(fields.conflictScalarReverse.type.toString()).toBe(`Nested!`)
- expect(fields.conflictScalarArray.type.toString()).toBe(`[Int!]!`)
- expect(fields.conflcitScalarArrayReverse.type.toString()).toBe(
- `[Nested!]!`
- )
-
- // Explicit typeDefs have priority on nested types as well
- expect(nestedFields.conflict.type.toString()).toBe(`String!`)
- expect(nestedNestedFields.conflict.type.toString()).toBe(`String!`)
-
- // Date resolvers
- expect(fields.explicitDate.resolve).toBeDefined()
- expect(fields.inferDate.resolve).toBeDefined()
- })
-
- it(`with "infer(noDefaultResolvers: true)"`, async () => {
- const schema = await buildTestSchema({
- infer: true,
- addDefaultResolvers: false,
- })
- const fields = schema.getType(`Test`).getFields()
- const nestedFields = schema.getType(`Nested`).getFields()
- const nestedNestedFields = schema.getType(`NestedNested`).getFields()
-
- // Non-conflicting top-level fields added
- expect(fields.foo.type.toString()).toBe(`Boolean`)
- expect(fields.bar.type.toString()).toBe(`Boolean!`)
-
- // Non-conflicting fields added on nested type
- expect(fields.nested.type.toString()).toBe(`Nested!`)
- expect(fields.nestedArray.type.toString()).toBe(`[Nested!]!`)
- expect(nestedFields.foo.type.toString()).toBe(`Boolean`)
- expect(nestedFields.bar.type.toString()).toBe(`Boolean!`)
- expect(nestedNestedFields.foo.type.toString()).toBe(`Boolean`)
- expect(nestedNestedFields.bar.type.toString()).toBe(`Boolean!`)
-
- // When type is referenced more than once on typeDefs, all non-conflicting
- // fields are added
- expect(nestedFields.extra.type.toString()).toBe(`Boolean`)
- expect(nestedNestedFields.notExtra.type.toString()).toBe(`Boolean`)
- expect(nestedNestedFields.extraExtra.type.toString()).toBe(`Boolean`)
- expect(nestedNestedFields.extraExtraExtra.type.toString()).toBe(
- `Boolean`
- )
-
- // Explicit typeDefs have proprity in case of type conflict
- expect(fields.conflictType.type.toString()).toBe(`String!`)
- expect(fields.conflictArray.type.toString()).toBe(`Int!`)
- expect(fields.conflictArrayReverse.type.toString()).toBe(`[Int!]!`)
- expect(fields.conflictArrayType.type.toString()).toBe(`[String!]!`)
- expect(fields.conflictScalar.type.toString()).toBe(`Int!`)
- expect(fields.conflictScalarReverse.type.toString()).toBe(`Nested!`)
- expect(fields.conflictScalarArray.type.toString()).toBe(`[Int!]!`)
- expect(fields.conflcitScalarArrayReverse.type.toString()).toBe(
- `[Nested!]!`
- )
-
- // Explicit typeDefs have priority on nested types as well
- expect(nestedFields.conflict.type.toString()).toBe(`String!`)
- expect(nestedNestedFields.conflict.type.toString()).toBe(`String!`)
-
- // Date resolvers
- expect(fields.explicitDate.resolve).toBe(defaultResolver)
- expect(fields.inferDate.resolve).toBeDefined()
- })
-
- it(`with "@dontInfer(noDefaultResolvers: false)"`, async () => {
- const schema = await buildTestSchema({
- infer: false,
- addDefaultResolvers: true,
- })
-
- const fields = schema.getType(`Test`).getFields()
- const nestedFields = schema.getType(`Nested`).getFields()
- const nestedNestedFields = schema.getType(`NestedNested`).getFields()
-
- // Non-conflicting top-level fields added
- expect(fields.bar.type.toString()).toBe(`Boolean!`)
-
- // Not adding inferred fields
- expect(fields.foo).toBeUndefined()
- expect(nestedFields.foo).toBeUndefined()
- expect(nestedNestedFields.foo).toBeUndefined()
- expect(nestedFields.extra).toBeUndefined()
- expect(nestedNestedFields.extraExtra).toBeUndefined()
- expect(nestedNestedFields.extraExtraExtra).toBeUndefined()
- expect(fields.inferDate).toBeUndefined()
-
- // Non-conflicting fields added on nested type
- expect(fields.nested.type.toString()).toBe(`Nested!`)
- expect(fields.nestedArray.type.toString()).toBe(`[Nested!]!`)
- expect(nestedFields.bar.type.toString()).toBe(`Boolean!`)
- expect(nestedNestedFields.bar.type.toString()).toBe(`Boolean!`)
-
- // When type is referenced more than once on typeDefs, all non-conflicting
- // fields are added
- expect(nestedNestedFields.notExtra.type.toString()).toBe(`Boolean`)
-
- // Explicit typeDefs have proprity in case of type conflict
- expect(fields.conflictType.type.toString()).toBe(`String!`)
- expect(fields.conflictArray.type.toString()).toBe(`Int!`)
- expect(fields.conflictArrayReverse.type.toString()).toBe(`[Int!]!`)
- expect(fields.conflictArrayType.type.toString()).toBe(`[String!]!`)
- expect(fields.conflictScalar.type.toString()).toBe(`Int!`)
- expect(fields.conflictScalarReverse.type.toString()).toBe(`Nested!`)
- expect(fields.conflictScalarArray.type.toString()).toBe(`[Int!]!`)
- expect(fields.conflcitScalarArrayReverse.type.toString()).toBe(
- `[Nested!]!`
- )
-
- // Explicit typeDefs have priority on nested types as well
- expect(nestedFields.conflict.type.toString()).toBe(`String!`)
- expect(nestedNestedFields.conflict.type.toString()).toBe(`String!`)
-
- // Date resolvers
- expect(fields.explicitDate.resolve).toBeDefined()
- })
-
- it(`with "@dontInfer(noDefaultResolvers: true)"`, async () => {
- const schema = await buildTestSchema({
- infer: false,
- addDefaultResolvers: false,
- })
-
- const fields = schema.getType(`Test`).getFields()
- const nestedFields = schema.getType(`Nested`).getFields()
- const nestedNestedFields = schema.getType(`NestedNested`).getFields()
-
- // Non-conflicting top-level fields added
- expect(fields.bar.type.toString()).toBe(`Boolean!`)
-
- // Not adding inferred fields
- expect(fields.foo).toBeUndefined()
- expect(nestedFields.foo).toBeUndefined()
- expect(nestedNestedFields.foo).toBeUndefined()
- expect(nestedFields.extra).toBeUndefined()
- expect(nestedNestedFields.extraExtra).toBeUndefined()
- expect(nestedNestedFields.extraExtraExtra).toBeUndefined()
- expect(fields.inferDate).toBeUndefined()
-
- // Non-conflicting fields added on nested type
- expect(fields.nested.type.toString()).toBe(`Nested!`)
- expect(fields.nestedArray.type.toString()).toBe(`[Nested!]!`)
- expect(nestedFields.bar.type.toString()).toBe(`Boolean!`)
- expect(nestedNestedFields.bar.type.toString()).toBe(`Boolean!`)
-
- // When type is referenced more than once on typeDefs, all non-conflicting
- // fields are added
- expect(nestedNestedFields.notExtra.type.toString()).toBe(`Boolean`)
-
- // Explicit typeDefs have proprity in case of type conflict
- expect(fields.conflictType.type.toString()).toBe(`String!`)
- expect(fields.conflictArray.type.toString()).toBe(`Int!`)
- expect(fields.conflictArrayReverse.type.toString()).toBe(`[Int!]!`)
- expect(fields.conflictArrayType.type.toString()).toBe(`[String!]!`)
- expect(fields.conflictScalar.type.toString()).toBe(`Int!`)
- expect(fields.conflictScalarReverse.type.toString()).toBe(`Nested!`)
- expect(fields.conflictScalarArray.type.toString()).toBe(`[Int!]!`)
- expect(fields.conflcitScalarArrayReverse.type.toString()).toBe(
- `[Nested!]!`
- )
-
- // Explicit typeDefs have priority on nested types as well
- expect(nestedFields.conflict.type.toString()).toBe(`String!`)
- expect(nestedNestedFields.conflict.type.toString()).toBe(`String!`)
-
- // Date resolvers
- expect(fields.explicitDate.resolve).toBe(defaultResolver)
- })
})
})
@@ -666,7 +449,7 @@ describe(`merges explicit and inferred type definitions`, () => {
expect(bar.type.toString()).toBe(`Boolean`)
})
- it(`preserves foreign-key resolvers on ___NODE fields when noDefaultResolvers: false`, async () => {
+ it(`ignores foreign-key resolvers on ___NODE fields`, async () => {
const typeDefs = `
type LinkTest implements Node {
link: Test!
@@ -680,13 +463,13 @@ describe(`merges explicit and inferred type definitions`, () => {
const { link, links } = schema.getType(`LinkTest`).getFields()
expect(link.type.toString()).toBe(`Test!`)
expect(links.type.toString()).toBe(`[Test!]!`)
- expect(link.resolve).toBeDefined()
- expect(links.resolve).toBeDefined()
+ expect(link.resolve).toBe(defaultResolver)
+ expect(links.resolve).toBe(defaultResolver)
})
- it(`ignores foreign-key resolvers on ___NODE fields when noDefaultResolvers: true`, async () => {
+ it(`ignores foreign-key resolvers on ___NODE fields with @infer`, async () => {
const typeDefs = `
- type LinkTest implements Node @infer(noDefaultResolvers: true) {
+ type LinkTest implements Node @infer {
link: Test!
links: [Test!]!
}
diff --git a/packages/gatsby/src/schema/infer/add-inferred-fields.js b/packages/gatsby/src/schema/infer/add-inferred-fields.js
index bc5d308a9983a..a877aab378ffa 100644
--- a/packages/gatsby/src/schema/infer/add-inferred-fields.js
+++ b/packages/gatsby/src/schema/infer/add-inferred-fields.js
@@ -22,9 +22,6 @@ const addInferredFields = ({
typeComposer,
defaults: {
shouldAddFields: true,
- shouldAddDefaultResolvers: typeComposer.hasExtension(`infer`)
- ? false
- : true,
},
})
addInferredFieldsImpl({
@@ -96,53 +93,6 @@ const addInferredFieldsImpl = ({
typeComposer.addFields({ [key]: fieldConfig })
typeComposer.setFieldExtension(key, `createdFrom`, `inference`)
}
- } else {
- // Deprecated, remove in v3
- if (config.shouldAddDefaultResolvers) {
- // Add default resolvers to existing fields if the type matches
- // and the field has neither args nor resolver explicitly defined.
- const field = typeComposer.getField(key)
- const fieldType = field.type.getTypeName()
- if (
- fieldType.replace(/[[\]!]/g, ``) === fieldConfig.type.toString() &&
- _.isEmpty(field.args) &&
- !field.resolve
- ) {
- const { extensions } = fieldConfig
- if (extensions) {
- Object.keys(extensions)
- .filter(name =>
- // It is okay to list allowed extensions explicitly here,
- // since this is deprecated anyway and won't change.
- [`dateformat`, `fileByRelativePath`, `link`, `proxy`].includes(
- name
- )
- )
- .forEach(name => {
- if (!typeComposer.hasFieldExtension(key, name)) {
- typeComposer.setFieldExtension(key, name, extensions[name])
-
- const typeName = typeComposer.getTypeName()
- const implementsNode =
- unsanitizedFieldPath.length === 1 ? `implements Node ` : ``
- const extension = printDirectives(
- { [name]: extensions[name] },
- schemaComposer.getDirectives()
- )
- report.warn(
- `Deprecation warning: adding inferred extension \`${name}\` for field \`${typeName}.${key}\`.\n` +
- `In Gatsby v3, only fields with an explicit directive/extension will be resolved correctly.\n` +
- `Add the following type definition to fix this:\n\n` +
- ` type ${typeComposer.getTypeName()} ${implementsNode}{\n` +
- ` ${key}: ${fieldType}${extension}\n` +
- ` }\n\n` +
- `https://www.gatsbyjs.com/docs/actions/#createTypes`
- )
- }
- })
- }
- }
- }
}
})
@@ -358,9 +308,7 @@ const getSimpleFieldConfig = ({
if (lists !== arrays) return null
} else {
// When the field type has not been explicitly defined, we
- // don't need to continue in case of @dontInfer, because
- // "addDefaultResolvers: true" only makes sense for
- // pre-existing types.
+ // don't need to continue in case of @dontInfer
if (!config.shouldAddFields) return null
const typeName = createTypeName(selector)
@@ -448,8 +396,5 @@ const getInferenceConfig = ({ typeComposer, defaults }) => {
shouldAddFields: typeComposer.hasExtension(`infer`)
? typeComposer.getExtension(`infer`)
: defaults.shouldAddFields,
- shouldAddDefaultResolvers: typeComposer.hasExtension(`addDefaultResolvers`)
- ? typeComposer.getExtension(`addDefaultResolvers`)
- : defaults.shouldAddDefaultResolvers,
}
}
diff --git a/packages/gatsby/src/schema/infer/index.js b/packages/gatsby/src/schema/infer/index.js
index 2561b2efd85d2..cffc55fbff00b 100644
--- a/packages/gatsby/src/schema/infer/index.js
+++ b/packages/gatsby/src/schema/infer/index.js
@@ -28,11 +28,8 @@ const addInferredTypes = ({
let typeComposer
if (schemaComposer.has(typeName)) {
typeComposer = schemaComposer.getOTC(typeName)
- // Infer if we have enabled "@infer" or if it's "@dontInfer" but we
- // have "addDefaultResolvers: true"
const runInfer = typeComposer.hasExtension(`infer`)
- ? typeComposer.getExtension(`infer`) ||
- typeComposer.getExtension(`addDefaultResolvers`)
+ ? typeComposer.getExtension(`infer`)
: true
if (runInfer) {
if (!typeComposer.hasInterface(`Node`)) {
diff --git a/packages/gatsby/src/schema/schema.js b/packages/gatsby/src/schema/schema.js
index c7fec80282f46..6971fef72083c 100644
--- a/packages/gatsby/src/schema/schema.js
+++ b/packages/gatsby/src/schema/schema.js
@@ -438,12 +438,6 @@ const addExtensions = ({
case `infer`:
case `dontInfer`: {
typeComposer.setExtension(`infer`, name === `infer`)
- if (args.noDefaultResolvers != null) {
- typeComposer.setExtension(
- `addDefaultResolvers`,
- !args.noDefaultResolvers
- )
- }
break
}
case `mimeTypes`:
@@ -554,14 +548,6 @@ const addExtensions = ({
})
}
- if (typeComposer.hasExtension(`addDefaultResolvers`)) {
- report.warn(
- `Deprecation warning - "noDefaultResolvers" is deprecated. In Gatsby 3, ` +
- `defined fields won't get resolvers, unless explicitly added with a ` +
- `directive/extension.`
- )
- }
-
return typeComposer
}
diff --git a/packages/gatsby/src/schema/types/type-defs.js b/packages/gatsby/src/schema/types/type-defs.js
index 78a9691da130d..8957215208792 100644
--- a/packages/gatsby/src/schema/types/type-defs.js
+++ b/packages/gatsby/src/schema/types/type-defs.js
@@ -58,18 +58,8 @@ const typesWithoutInference = (typeNames = [], typeOrTypeDef) => {
if (!def.directives) return
def.directives.forEach(directive => {
- if (directive.name.value === dontInferExtensionName) {
- const noDefaultResolversArg = (directive.arguments || []).find(
- arg => arg.name.value === `noDefaultResolvers`
- )
- const shouldAddDefaultResolver =
- noDefaultResolversArg &&
- noDefaultResolversArg.value &&
- noDefaultResolversArg.value.value === false
-
- if (!shouldAddDefaultResolver && def.name.value) {
- typeNames.push(def.name.value)
- }
+ if (directive.name.value === dontInferExtensionName && def.name.value) {
+ typeNames.push(def.name.value)
}
})
})
@@ -82,9 +72,7 @@ const typesWithoutInference = (typeNames = [], typeOrTypeDef) => {
(extensions[dontInferExtensionName] ||
extensions[inferExtensionName] === false)
) {
- if (!extensions.addDefaultResolvers) {
- typeNames.push(name)
- }
+ typeNames.push(name)
}
}
return typeNames
|
7f349ff7b526b12f4d390c601217dfec36dccef0
|
2023-12-04 19:40:47
|
Michal Piechowiak
|
chore(release): Publish next
| false
|
Publish next
|
chore
|
diff --git a/packages/gatsby-plugin-google-tagmanager/package.json b/packages/gatsby-plugin-google-tagmanager/package.json
index aaf62f400fa6f..15ea9877d2306 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": "5.13.0-next.1",
+ "version": "5.13.0-next.2",
"author": "Thijs Koerselman <[email protected]>",
"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 7c7f2d61828fe..b8f1f02085a26 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": "8.13.0-next.2",
+ "version": "8.13.0-next.3",
"author": "Marcus Ericsson <[email protected]> (mericsson.com)",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
diff --git a/packages/gatsby/package.json b/packages/gatsby/package.json
index 617962f238521..486122786df6b 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": "5.13.0-next.2",
+ "version": "5.13.0-next.3",
"author": "Kyle Mathews <[email protected]>",
"bin": {
"gatsby": "./cli.js"
|
2da94bfcd612d10b0816e38a95e43651986fd94b
|
2020-10-27 15:56:41
|
Kumail Raza
|
fix(gatsby): add missing printTypeDefinitions (#27670)
| false
|
add missing printTypeDefinitions (#27670)
|
fix
|
diff --git a/packages/gatsby/index.d.ts b/packages/gatsby/index.d.ts
index 5337a4d438fc0..b1b9790914d7d 100644
--- a/packages/gatsby/index.d.ts
+++ b/packages/gatsby/index.d.ts
@@ -1293,6 +1293,15 @@ export interface Actions {
plugin?: ActionPlugin,
traceId?: string
): void
+
+ printTypeDefinitions (
+ path?: string,
+ include?: { types?: Array<string>; plugins?: Array<string> },
+ exclude?: { types?: Array<string>; plugins?: Array<string> },
+ withFieldTypes?: boolean,
+ plugin?: ActionPlugin,
+ traceId?: string
+ ): void
}
export interface Store {
|
ca3739869d4776d5cfff56e1a188913c81b8637f
|
2022-01-06 04:13:21
|
Kyle Mathews
|
fix(gatsby): Only start write page-data.json activity if there's pages to write (#34403)
| false
|
Only start write page-data.json activity if there's pages to write (#34403)
|
fix
|
diff --git a/packages/gatsby/src/utils/page-data.ts b/packages/gatsby/src/utils/page-data.ts
index 37e185a3c4127..2f6c4757ee68b 100644
--- a/packages/gatsby/src/utils/page-data.ts
+++ b/packages/gatsby/src/utils/page-data.ts
@@ -166,13 +166,7 @@ export async function flush(parentSpan?: Span): Promise<void> {
const isBuild = program?._?.[0] !== `develop`
const { pagePaths } = pendingPageDataWrites
- const writePageDataActivity = reporter.createProgress(
- `Writing page-data.json files to public directory`,
- pagePaths.size,
- 0,
- { id: `write-page-data-public-directory`, parentSpan }
- )
- writePageDataActivity.start()
+ let writePageDataActivity
let nodeManifestPagePathMap
@@ -181,6 +175,14 @@ export async function flush(parentSpan?: Span): Promise<void> {
// We use this manifestId to determine if the page data is up to date when routing. Here we create a map of "pagePath": "manifestId" while processing and writing node manifest files.
// We only do this when there are pending page-data writes because otherwise we could flush pending createNodeManifest calls before page-data.json files are written. Which means those page-data files wouldn't have the corresponding manifest id's written to them.
nodeManifestPagePathMap = await processNodeManifests()
+
+ writePageDataActivity = reporter.createProgress(
+ `Writing page-data.json files to public directory`,
+ pagePaths.size,
+ 0,
+ { id: `write-page-data-public-directory`, parentSpan }
+ )
+ writePageDataActivity.start()
}
const flushQueue = fastq(async (pagePath, cb) => {
@@ -268,8 +270,9 @@ export async function flush(parentSpan?: Span): Promise<void> {
flushQueue.drain = resolve as () => unknown
})
}
-
- writePageDataActivity.end()
+ if (writePageDataActivity) {
+ writePageDataActivity.end()
+ }
isFlushing = false
|
9b40fc47ad92880116fbdff59ac03279fd7b59fe
|
2021-09-07 22:25:12
|
Michal Piechowiak
|
feat(gatsby-plugin-mdx): use subplugin annotation to use automatic subplugin module loading (#33040)
| false
|
use subplugin annotation to use automatic subplugin module loading (#33040)
|
feat
|
diff --git a/patches/v4/3-gatsby-plugin-mdx-subplugin.patch b/patches/v4/3-gatsby-plugin-mdx-subplugin.patch
new file mode 100644
index 0000000000000..42a127d4569ba
--- /dev/null
+++ b/patches/v4/3-gatsby-plugin-mdx-subplugin.patch
@@ -0,0 +1,94 @@
+diff --git a/packages/gatsby-plugin-mdx/gatsby-node.js b/packages/gatsby-plugin-mdx/gatsby-node.js
+index a5e0f5bb92..4c7b964582 100644
+--- a/packages/gatsby-plugin-mdx/gatsby-node.js
++++ b/packages/gatsby-plugin-mdx/gatsby-node.js
+@@ -80,16 +80,9 @@ exports.pluginOptionsSchema = function ({ Joi }) {
+ .unknown(true)
+ .default({})
+ .description(`Set the layout components for MDX source types`),
+- gatsbyRemarkPlugins: Joi.array()
+- .items(
+- Joi.string(),
+- Joi.object({
+- resolve: Joi.string(),
+- options: Joi.object({}).unknown(true),
+- })
+- )
+- .default([])
+- .description(`Use Gatsby-specific remark plugins`),
++ gatsbyRemarkPlugins: Joi.subPlugins({ entry: `index` }).description(
++ `Use Gatsby-specific remark plugins`
++ ),
+ lessBabel: Joi.boolean()
+ .default(false)
+ .description(
+diff --git a/packages/gatsby-plugin-mdx/gatsby/create-schema-customization.js b/packages/gatsby-plugin-mdx/gatsby/create-schema-customization.js
+index aca0536a58..33e7480ff9 100644
+--- a/packages/gatsby-plugin-mdx/gatsby/create-schema-customization.js
++++ b/packages/gatsby-plugin-mdx/gatsby/create-schema-customization.js
+@@ -17,7 +17,6 @@ const getTableOfContents = require(`../utils/get-table-of-content`)
+ const defaultOptions = require(`../utils/default-options`)
+ const genMDX = require(`../utils/gen-mdx`)
+ const { mdxHTMLLoader: loader } = require(`../utils/render-html`)
+-const { interopDefault } = require(`../utils/interop-default`)
+
+ async function getCounts({ mdast }) {
+ const counts = {}
+@@ -75,7 +74,7 @@ module.exports = function createSchemaCustomization(
+ */
+ for (const plugin of options.gatsbyRemarkPlugins) {
+ debug(`requiring`, plugin.resolve)
+- const requiredPlugin = interopDefault(require(plugin.resolve))
++ const requiredPlugin = plugin.module
+ debug(`required`, plugin)
+ if (_.isFunction(requiredPlugin.setParserPlugins)) {
+ for (const parserPlugin of requiredPlugin.setParserPlugins(
+diff --git a/packages/gatsby-plugin-mdx/loaders/mdx-loader.js b/packages/gatsby-plugin-mdx/loaders/mdx-loader.js
+index a602ca833c..9f9432df06 100644
+--- a/packages/gatsby-plugin-mdx/loaders/mdx-loader.js
++++ b/packages/gatsby-plugin-mdx/loaders/mdx-loader.js
+@@ -5,7 +5,6 @@ const path = require(`path`)
+ const unified = require(`unified`)
+ const babel = require(`@babel/core`)
+ const { createRequireFromPath, slash } = require(`gatsby-core-utils`)
+-const { interopDefault } = require(`../utils/interop-default`)
+
+ const {
+ isImport,
+@@ -206,7 +205,7 @@ ${contentWithoutFrontmatter}`
+ */
+ for (const plugin of options.gatsbyRemarkPlugins) {
+ debug(`requiring`, plugin.resolve)
+- const requiredPlugin = interopDefault(require(plugin.resolve))
++ const requiredPlugin = plugin.module
+ debug(`required`, plugin)
+ if (_.isFunction(requiredPlugin.setParserPlugins)) {
+ for (const parserPlugin of requiredPlugin.setParserPlugins(
+diff --git a/packages/gatsby-plugin-mdx/utils/get-source-plugins-as-remark-plugins.js b/packages/gatsby-plugin-mdx/utils/get-source-plugins-as-remark-plugins.js
+index 86f14c514e..6246062755 100644
+--- a/packages/gatsby-plugin-mdx/utils/get-source-plugins-as-remark-plugins.js
++++ b/packages/gatsby-plugin-mdx/utils/get-source-plugins-as-remark-plugins.js
+@@ -1,5 +1,4 @@
+ const visit = require(`unist-util-visit`)
+-const { interopDefault } = require(`./interop-default`)
+
+ // ensure only one `/` in new url
+ const withPathPrefix = (url, pathPrefix) =>
+@@ -36,7 +35,7 @@ module.exports = async function getSourcePluginsAsRemarkPlugins({
+
+ // return list of remarkPlugins
+ const userPluginsFiltered = gatsbyRemarkPlugins.filter(
+- plugin => typeof interopDefault(require(plugin.resolve)) === `function`
++ plugin => typeof plugin.module === `function`
+ )
+
+ if (!userPluginsFiltered.length) {
+@@ -44,7 +43,7 @@ module.exports = async function getSourcePluginsAsRemarkPlugins({
+ }
+
+ const userPlugins = userPluginsFiltered.map(plugin => {
+- const requiredPlugin = interopDefault(require(plugin.resolve))
++ const requiredPlugin = plugin.module
+ const wrappedPlugin = () =>
+ async function transformer(markdownAST) {
+ await requiredPlugin(
|
4cf95323281cfa860fad85adc6d01d1183bd8cae
|
2019-01-24 20:21:33
|
Sam Bhagwat
|
chore(docs): update headless CMS ordering (#11254)
| false
|
update headless CMS ordering (#11254)
|
chore
|
diff --git a/docs/docs/headless-cms.md b/docs/docs/headless-cms.md
index 96a8df6d30ddf..b1fc424e062aa 100644
--- a/docs/docs/headless-cms.md
+++ b/docs/docs/headless-cms.md
@@ -15,22 +15,26 @@ The guides in this section will walk through the process of setting up content s
[[guidelist]]
+<!--
+ Ordering in this section is driven by Gatsby plugin downloads (https://www.gatsbyjs.org/plugins/?=gatsby-source-) & CMS vendor size/adoption.
+-->
+
Other CMS systems you can connect to include:
-- [Cosmic JS](https://www.gatsbyjs.org/packages/gatsby-source-cosmicjs)
-- [ButterCMS](https://www.gatsbyjs.org/packages/gatsby-source-buttercms)
-- [Shopify](https://www.gatsbyjs.org/packages/gatsby-source-shopify)
-- [Contentstack](https://www.gatsbyjs.org/packages/gatsby-source-contentstack)
-- [Ghost](https://www.gatsbyjs.org/packages/gatsby-source-ghost)
-- [Prismic](https://www.gatsbyjs.org/packages/gatsby-source-prismic)
-- [Strapi](https://www.gatsbyjs.org/packages/gatsby-source-strapi)
-- [Directus](https://www.gatsbyjs.org/packages/gatsby-source-directus)
-- [Cockpit](https://www.gatsbyjs.org/packages/gatsby-plugin-cockpit)
-- [GraphCMS](https://www.gatsbyjs.org/packages/gatsby-source-graphcms-beta-patch)
-- [CraftCMS](https://www.gatsbyjs.org/packages/gatsby-source-craftcms)
-- [DatoCMS](https://www.gatsbyjs.org/packages/gatsby-source-datocms)
-- [Storyblok](https://www.gatsbyjs.org/packages/gatsby-source-storyblok)
-- [Kentico Cloud](https://www.gatsbyjs.org/packages/gatsby-source-kentico-cloud)
+- [Shopify](/packages/gatsby-source-shopify)
+- [Strapi](/packages/gatsby-source-strapi)
+- DatoCMS [docs](/packages/gatsby-source-datocms), [business case](https://www.gatsbyjs.com/guides/datocms/)
+- [Sanity](/packages/gatsby-source-sanity/)
+- Contentstack [docs](/packages/gatsby-source-contentstack), [guide](https://www.contentstack.com/docs/example-apps/build-a-sample-website-using-gatsby-and-contentstack), [starter](/starters/contentstack/gatsby-starter-contentstack/)
+- [ButterCMS](/packages/gatsby-source-buttercms)
+- Ghost [docs[(/packages/gatsby-source-ghost), [guide[(/blog/2019-01-14-modern-publications-with-gatsby-ghost/), [starter](/starters/TryGhost/gatsby-starter-ghost/)
+- Kentico Cloud [docs](/packages/gatsby-source-kentico-cloud), [guide](/blog/2018-12-19-kentico-cloud-and-gatsby-take-you-beyond-static-websites/), [starter](/starters/Kentico/gatsby-starter-kentico-cloud/)
+- [Directus](/packages/gatsby-source-directus)
+- [GraphCMS](/packages/gatsby-source-graphcms-beta-patch)
+- Cosmic JS [docs](/packages/gatsby-source-cosmicjs), [guide](/blog/2018-06-07-build-a-gatsby-blog-using-the-cosmic-js-source-plugin/)
+- [Cockpit](/packages/gatsby-plugin-cockpit)
+- [Storyblok](/packages/gatsby-source-storyblok)
+- [CraftCMS](/packages/gatsby-source-craftcms)
## How to add new guides to this section
|
07de41f79b227786b8ea3aebcc0e704545ba1c21
|
2019-07-16 03:59:44
|
Kyle Gill
|
chore: add logs for debugging production runs of the pr bot (#15768)
| false
|
add logs for debugging production runs of the pr bot (#15768)
|
chore
|
diff --git a/.github/actions/high-priority-prs/src/fetch.js b/.github/actions/high-priority-prs/src/fetch.js
index 61f380168745f..948b13619529f 100644
--- a/.github/actions/high-priority-prs/src/fetch.js
+++ b/.github/actions/high-priority-prs/src/fetch.js
@@ -70,6 +70,10 @@ module.exports = async () => {
// ".github/actions/high-priority-prs/src/data.json"
// )
// data = JSON.parse(filecontents)
+ tools.log.info("-----------BEGIN DATA-----------")
+ tools.log.info(data.repository.pullRequests)
+ tools.log.info(data.repository.pullRequests.nodes[0])
+ tools.log.info("-----------END DATA-----------")
} catch (error) {
tools.log.fatal(error)
tools.exit.failure()
diff --git a/.github/actions/high-priority-prs/src/filter.js b/.github/actions/high-priority-prs/src/filter.js
index c06994981375f..0f508ab1d3d07 100644
--- a/.github/actions/high-priority-prs/src/filter.js
+++ b/.github/actions/high-priority-prs/src/filter.js
@@ -12,6 +12,7 @@ const filter = (queues, team) => {
return pr.reviewRequests.nodes
.map(node => {
if (node.requestedReviewer) {
+ tools.log.info(`Review request for team ${node.requestedReviewer.name} on PR: ${pr.title}`)
return node.requestedReviewer.id
}
})
diff --git a/.github/actions/high-priority-prs/src/index.js b/.github/actions/high-priority-prs/src/index.js
index b25f2171826bb..06ddcac7a4381 100644
--- a/.github/actions/high-priority-prs/src/index.js
+++ b/.github/actions/high-priority-prs/src/index.js
@@ -1,3 +1,5 @@
+const { Toolkit } = require("actions-toolkit")
+const tools = new Toolkit()
const fetch = require("./fetch.js")
const { processData, report } = require("./process-data.js")
const { filter } = require("./filter.js")
@@ -22,9 +24,11 @@ const start = async function() {
await Promise.all(teams.map(team => {
if (team.name === `core`) {
// send report of all PRs (without filtering) to Core
+ tools.log.info(`-> Reporting for ${team.name} team`)
return report({ queues, channelId: team.channelId })
} else {
// send filtered reports to respective teams
+ tools.log.info(`-> Reporting for ${team.name} team`)
return report(filter(queues, team))
}
}))
|
712ff6b60c9c3b9bf2e2489b71cc033d013e060b
|
2022-12-01 16:59:21
|
Robin
|
feat(gatsby): Add `documentSearchPaths` option to `graphqlTypegen` (#37120)
| false
|
Add `documentSearchPaths` option to `graphqlTypegen` (#37120)
|
feat
|
diff --git a/docs/docs/how-to/local-development/graphql-typegen.md b/docs/docs/how-to/local-development/graphql-typegen.md
index 765db00efd8de..13507b9d61120 100644
--- a/docs/docs/how-to/local-development/graphql-typegen.md
+++ b/docs/docs/how-to/local-development/graphql-typegen.md
@@ -79,7 +79,8 @@ For this example to work you'll have to have a `title` inside your `siteMetadata
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).
-If for example you use `typesOutputPath` to specify a different path, make sure to also update the `"include"` setting in your `tsconfig.json` to include the new path.
+- With `typesOutputPath` the output path can be specified. Make sure to also update the `"include"` setting in your `tsconfig.json` to include the new path.
+- With `documentSearchPaths` it's possible to overwrite the search path for the documents, which are scanned for GraphQL queries.
### Non-Nullable types
diff --git a/docs/docs/reference/config-files/gatsby-config.md b/docs/docs/reference/config-files/gatsby-config.md
index d631b6f66a8fa..81481ac937506 100644
--- a/docs/docs/reference/config-files/gatsby-config.md
+++ b/docs/docs/reference/config-files/gatsby-config.md
@@ -197,6 +197,7 @@ Optionally, you can configure its behavior by passing an object to `graphqlTypeg
module.exports = {
graphqlTypegen: {
typesOutputPath: `gatsby-types.d.ts`,
+ documentSearchPaths: [`./gatsby-node.ts`, `./plugins/**/gatsby-node.ts`],
// Other options...
},
}
@@ -206,6 +207,10 @@ module.exports = {
You can specify the path of the generated TypeScript types file relative to the site root. Default: `src/gatsby-types.d.ts`.
+### documentSearchPaths
+
+You can overwrite the search paths, which contain documents that should be scanned. Usually you want to include the default values and append your additional paths. Default: `` [`./gatsby-node.ts`, `./plugins/**/gatsby-node.ts`] ``.
+
### generateOnBuild
By default, `graphqlTypegen` is only run during `gatsby develop`. Set this option to `true` to create the `src/gatsby-types.d.ts` file also during `gatsby build`. Default: `false`.
diff --git a/packages/gatsby/index.d.ts b/packages/gatsby/index.d.ts
index 6120ac8a0c25e..fda7fcd8ad8b6 100644
--- a/packages/gatsby/index.d.ts
+++ b/packages/gatsby/index.d.ts
@@ -302,6 +302,7 @@ export const graphql: (query: TemplateStringsArray) => StaticQueryDocument
export interface GraphQLTypegenOptions {
typesOutputPath?: string
+ documentSearchPaths?: string[]
generateOnBuild?: boolean
}
diff --git a/packages/gatsby/src/joi-schemas/__tests__/joi.ts b/packages/gatsby/src/joi-schemas/__tests__/joi.ts
index f0b089cbfdbf0..7a2e7591c8510 100644
--- a/packages/gatsby/src/joi-schemas/__tests__/joi.ts
+++ b/packages/gatsby/src/joi-schemas/__tests__/joi.ts
@@ -186,6 +186,10 @@ describe(`gatsby config`, () => {
expect.objectContaining({
graphqlTypegen: {
typesOutputPath: `src/gatsby-types.d.ts`,
+ documentSearchPaths: [
+ `./gatsby-node.ts`,
+ `./plugins/**/gatsby-node.ts`,
+ ],
generateOnBuild: false,
},
})
@@ -202,6 +206,10 @@ describe(`gatsby config`, () => {
expect.objectContaining({
graphqlTypegen: {
typesOutputPath: `src/gatsby-types.d.ts`,
+ documentSearchPaths: [
+ `./gatsby-node.ts`,
+ `./plugins/**/gatsby-node.ts`,
+ ],
generateOnBuild: false,
},
})
@@ -212,6 +220,11 @@ describe(`gatsby config`, () => {
const config = {
graphqlTypegen: {
typesOutputPath: `gatsby-types.d.ts`,
+ documentSearchPaths: [
+ `./gatsby-node.ts`,
+ `./plugins/**/gatsby-node.ts`,
+ `./src/gatsby/generatePage.ts`,
+ ],
},
}
@@ -220,6 +233,11 @@ describe(`gatsby config`, () => {
expect.objectContaining({
graphqlTypegen: {
typesOutputPath: `gatsby-types.d.ts`,
+ documentSearchPaths: [
+ `./gatsby-node.ts`,
+ `./plugins/**/gatsby-node.ts`,
+ `./src/gatsby/generatePage.ts`,
+ ],
generateOnBuild: false,
},
})
@@ -238,6 +256,10 @@ describe(`gatsby config`, () => {
expect.objectContaining({
graphqlTypegen: {
typesOutputPath: `src/gatsby-types.d.ts`,
+ documentSearchPaths: [
+ `./gatsby-node.ts`,
+ `./plugins/**/gatsby-node.ts`,
+ ],
generateOnBuild: true,
},
})
diff --git a/packages/gatsby/src/joi-schemas/joi.ts b/packages/gatsby/src/joi-schemas/joi.ts
index 2e708c58f1e10..6f36a53bcc371 100644
--- a/packages/gatsby/src/joi-schemas/joi.ts
+++ b/packages/gatsby/src/joi-schemas/joi.ts
@@ -1,6 +1,9 @@
import Joi from "joi"
import { IGatsbyConfig, IGatsbyPage, IGatsbyNode } from "../redux/types"
-import { DEFAULT_TYPES_OUTPUT_PATH } from "../utils/graphql-typegen/ts-codegen"
+import {
+ DEFAULT_DOCUMENT_SEARCH_PATHS,
+ DEFAULT_TYPES_OUTPUT_PATH,
+} from "../utils/graphql-typegen/ts-codegen"
const stripTrailingSlash = (chain: Joi.StringSchema): Joi.StringSchema =>
chain.replace(/(\w)\/+$/, `$1`)
@@ -61,6 +64,9 @@ export const gatsbyConfigSchema: Joi.ObjectSchema<IGatsbyConfig> = Joi.object()
Joi.object()
.keys({
typesOutputPath: Joi.string().default(DEFAULT_TYPES_OUTPUT_PATH),
+ documentSearchPaths: Joi.array()
+ .items(Joi.string())
+ .default(DEFAULT_DOCUMENT_SEARCH_PATHS),
generateOnBuild: Joi.boolean().default(false),
})
.unknown(false)
@@ -70,6 +76,7 @@ export const gatsbyConfigSchema: Joi.ObjectSchema<IGatsbyConfig> = Joi.object()
if (value === true) {
return {
typesOutputPath: DEFAULT_TYPES_OUTPUT_PATH,
+ documentSearchPaths: DEFAULT_DOCUMENT_SEARCH_PATHS,
generateOnBuild: false,
}
}
diff --git a/packages/gatsby/src/redux/types.ts b/packages/gatsby/src/redux/types.ts
index 9ee5e39e1f205..56059d0a2a314 100644
--- a/packages/gatsby/src/redux/types.ts
+++ b/packages/gatsby/src/redux/types.ts
@@ -90,6 +90,7 @@ export interface IGatsbyFunction {
export interface IGraphQLTypegenOptions {
typesOutputPath: string
+ documentSearchPaths: Array<string>
generateOnBuild: boolean
}
diff --git a/packages/gatsby/src/utils/graphql-typegen/ts-codegen.ts b/packages/gatsby/src/utils/graphql-typegen/ts-codegen.ts
index fc1c3cc829b76..fc19f7a44dba4 100644
--- a/packages/gatsby/src/utils/graphql-typegen/ts-codegen.ts
+++ b/packages/gatsby/src/utils/graphql-typegen/ts-codegen.ts
@@ -19,6 +19,10 @@ import {
} from "./utils"
export const DEFAULT_TYPES_OUTPUT_PATH = `src/gatsby-types.d.ts`
+export const DEFAULT_DOCUMENT_SEARCH_PATHS = [
+ `./gatsby-node.ts`,
+ `./plugins/**/gatsby-node.ts`,
+]
const NAMESPACE = `Queries`
// These override the defaults from
@@ -103,7 +107,7 @@ export async function writeTypeScriptTypes(
// TODO: This codepath can be made obsolete if Gatsby itself already places the queries inside gatsby-node into the `definitions`
try {
gatsbyNodeDocuments = await loadDocuments(
- [`./gatsby-node.ts`, `./plugins/**/gatsby-node.ts`],
+ graphqlTypegenOptions.documentSearchPaths,
{
loaders: [
new CodeFileLoader({
|
017b6fe6993b787b27aebc17d2199f91ffa88def
|
2019-03-04 16:02:09
|
Nemesis
|
docs(showcase): add blog.keziahmoselle.fr (#12206)
| false
|
add blog.keziahmoselle.fr (#12206)
|
docs
|
diff --git a/docs/sites.yml b/docs/sites.yml
index c64a559872f9f..db9fbd3bb33a5 100644
--- a/docs/sites.yml
+++ b/docs/sites.yml
@@ -4516,6 +4516,16 @@
built_by: Nick Taylor
built_by_url: https://www.iamdeveloper.com
featured: false
+- title: Keziah Moselle Blog
+ url: https://blog.keziahmoselle.fr/
+ main_url: https://blog.keziahmoselle.fr/
+ source_url: https://github.com/KeziahMoselle/blog.keziahmoselle.fr
+ description: >
+ ✍️ A place to share my thoughts.
+ categories:
+ - Blog
+ built_by: Keziah Moselle
+ built_by_url: https://keziahmoselle.fr/
- title: xfuture's blog
url: https://www.xfuture-blog.com/
main_url: https://www.xfuture-blog.com/
|
fcd3f379f8a200f61e3d7b17d48c3262b9fccd94
|
2017-11-29 22:19:58
|
Travis Reynolds
|
docs: update to add gitlab pages (#3070)
| false
|
update to add gitlab pages (#3070)
|
docs
|
diff --git a/docs/docs/deploy-gatsby.md b/docs/docs/deploy-gatsby.md
index 36c0bfbf6e6c6..ea9deeb48b0dc 100644
--- a/docs/docs/deploy-gatsby.md
+++ b/docs/docs/deploy-gatsby.md
@@ -6,6 +6,7 @@ title: "Deploying Gatsby"
* [S3/Cloudfront](/docs/deploy-gatsby/#amazon-s3-and-cloudfront)
* [GitHub Pages](/docs/deploy-gatsby/#github-pages)
+* [GitLab Pages](/docs/deploy-gatsby/#gitlab-pages)
## Amazon S3 and Cloudfront
@@ -89,6 +90,78 @@ script to your site's `package.json` file:
}
```
+## Gitlab Pages
+
+Gitlab Pages are similar to GitHub pages, perhaps even easier to setup. It also
+supports custom domain names and SSL certificates. The process of setting GitLab
+pages up is made a lot easier with GitLab's included continuous integration
+platform.
+
+Create a new GitLab repository, initialize your Gatsby project folder if you
+haven't already, and add the GitLab remote.
+
+```
+git init
+git remote add origin [email protected]:examplerepository
+git add .
+git push -u origin master
+```
+
+To use GitLab's continuous integration (CI), you need to add a `.gitlab-ci.yml`
+configuration file. This can be added into your project folder, or once you have
+pushed the repository, you can add it with GitLab's website. The file needs to
+contain a few required fields:
+
+```
+image: node:latest
+
+# This folder is cached between builds
+# http://docs.gitlab.com/ce/ci/yaml/README.html#cache
+cache:
+ paths:
+ - node_modules/
+
+pages:
+ script:
+ - yarn install
+ - ./node_modules/.bin/gatsby build
+ artifacts:
+ paths:
+ - public
+ only:
+ - master
+```
+
+The CI platform uses Docker images/containers, so `image: node:latest` tells the
+CI to use the latest node image. `cache:` caches the node_modules folder
+inbetween builds, so subsequent builds should be a lot faster as it doesn't have
+to reinstall all the dependancies required. `pages:` Is simply the name of the
+CI stage. You can have multiple stages, e.g. 'Test', 'Build', 'Deploy' etc.
+`script:` starts the next part of the CI stage, telling it to start running the
+below scripts inside the image selected. We have used the `yarn install` and
+`./node_modules/.bin/gatsby build` which will install all dependancies, and
+start the static site build, respectively. We have used
+`./node_modules/.bin/gatsby build` because we then don't have to install
+gatsby-cli to build the image, as it has already been included and installed
+with `yarn install`. `artifacts:` and `paths:` are used to tell GitLab pages
+where the static files are kept. `only:` and `master` tells the CI to only run
+the above instructions when the master branch is deployed.
+
+Add that configuration, and with the next master branch push, your site should
+have been built correctly. This can be checked by going to your repository on
+GitLab, and selecting CI/CD in the sidebar. This will then show you a log of all
+jobs that have either succeeded or failed. You can click on the failed status,
+and then select the job to get more information about why your build may have
+failed.
+
+If all went well, you should now be able to access your site. It will be hosted
+under gitlab.io - for example if you have have a repository under your
+namespace, the url will be yourname.gitlab.io/examplerepository.
+
+Visit the
+[GitLab Pages](https://gitlab.com/help/user/project/pages/getting_started_part_one.md)
+to learn how to setup custom domains and find out about advanced configurations.
+
## Debugging tips
### Don't minify HTML
|
295c39be4718abc19bb31b0b95e7007347b19683
|
2019-09-02 19:00:03
|
Gopesh
|
chore(showcase): Add gopeshgopinath.com to site showcase (#17313)
| false
|
Add gopeshgopinath.com to site showcase (#17313)
|
chore
|
diff --git a/docs/sites.yml b/docs/sites.yml
index b513fc17c81c0..631b4868e4ab3 100644
--- a/docs/sites.yml
+++ b/docs/sites.yml
@@ -7179,3 +7179,15 @@
built_by: Dave Mullen Jnr
built_by_url: https://davemullenjnr.co.uk
featured: false
+- title: Gopesh Gopinath - Full Stack Javascript Developer
+ url: https://www.gopeshgopinath.com
+ main_url: https://www.gopeshgopinath.com
+ source_url: https://github.com/GopeshMedayil/gopeshgopinath.com
+ description: >
+ Gopesh Gopinath's Personal Portfolio Website
+ categories:
+ - Portfolio
+ - Open Source
+ built_by: Gopesh Gopinath
+ built_by_url: https://www.gopeshgopinath.com
+ featured: false
|
03a18632e2764e3f1b4b9c80e050282a92e0834c
|
2022-02-04 13:32:23
|
Lennart
|
fix(create-gatsby): Use MDX v1 (#34710)
| false
|
Use MDX v1 (#34710)
|
fix
|
diff --git a/packages/create-gatsby/src/questions/features.json b/packages/create-gatsby/src/questions/features.json
index 450291d76d74d..4ed7eb46b8440 100644
--- a/packages/create-gatsby/src/questions/features.json
+++ b/packages/create-gatsby/src/questions/features.json
@@ -30,7 +30,7 @@
"gatsby-plugin-mdx": {
"message": "Add Markdown and MDX support",
"plugins": ["gatsby-source-filesystem:pages"],
- "dependencies": ["@mdx-js/react", "@mdx-js/mdx"],
+ "dependencies": ["@mdx-js/react@v1", "@mdx-js/mdx@v1"],
"options": {
"gatsby-source-filesystem:pages": {
"name": "pages",
|
e124aae2cd40d3be73704e22198575924fa3ca2b
|
2020-05-12 17:21:59
|
Mikhail Novikov
|
feat(gatsby): Add tracing for graphql resolvers (#23589)
| false
|
Add tracing for graphql resolvers (#23589)
|
feat
|
diff --git a/docs/docs/gatsby-cli.md b/docs/docs/gatsby-cli.md
index c6b277397c3e5..9dc9427f8de81 100644
--- a/docs/docs/gatsby-cli.md
+++ b/docs/docs/gatsby-cli.md
@@ -119,6 +119,7 @@ At the root of a Gatsby site, compile your application and make it ready for dep
| `--no-uglify` | Build site without uglifying JS bundles (for debugging) |
| `--profile` | Build site with react profiling. See [Profiling Site Performance with React Profiler](/docs/profiling-site-performance-with-react-profiler/) |
| `--open-tracing-config-file` | Tracer configuration file (OpenTracing compatible). See [Performance Tracing](/docs/performance-tracing/) |
+| `--graphql-tracing` | Trace (see above) every graphql resolver, may have performance implications. |
| `--no-color`, `--no-colors` | Disables colored terminal output |
In addition to these build options, there are some optional [build environment variables](/docs/environment-variables/#build-variables) for more advanced configurations that can adjust how a build runs. For example, setting `CI=true` as an environment variable will tailor output for [dumb terminals](https://en.wikipedia.org/wiki/Computer_terminal#Dumb_terminals).
diff --git a/docs/docs/performance-tracing.md b/docs/docs/performance-tracing.md
index e8993715d1985..a02412d007dea 100644
--- a/docs/docs/performance-tracing.md
+++ b/docs/docs/performance-tracing.md
@@ -14,6 +14,8 @@ Gatsby allows a build to be traced, enabling you to find which plugins or parts
Gatsby code is instrumented with OpenTracing, which is a general tracing API that is implementation agnostic. Therefore, you'll need to include and configure an OpenTracing compatible library in your application, as well as a backend to collect the trace data.
+In addition, Gatsby has additional tracing for GraphQL resolvers. This traces every resolver and might have performance impact, so it's disabled by default. You can enable it with `--graphql-tracing` argument for the build command.
+
The steps required to add tracing are below. Or, you can skip ahead if you want specific instructions for [Jaeger](/docs/performance-tracing/#local-jaeger-with-docker) or [Zipkin](/docs/performance-tracing/#local-zipkin-with-docker).
### 1. Library dependency
diff --git a/packages/gatsby-cli/src/create-cli.js b/packages/gatsby-cli/src/create-cli.js
index 9e76b78f75654..17e749a8761db 100644
--- a/packages/gatsby-cli/src/create-cli.js
+++ b/packages/gatsby-cli/src/create-cli.js
@@ -150,6 +150,11 @@ function buildLocalCommands(cli, isLocalSite) {
default: ``,
describe: `Custom HTTPS CA certificate file (also required: --https, --cert-file, --key-file). See https://www.gatsbyjs.org/docs/local-https/`,
})
+ .option(`graphql-tracing`, {
+ type: `boolean`,
+ describe: `Trace every graphql resolver, may have performance implications`,
+ default: false,
+ })
.option(`open-tracing-config-file`, {
type: `string`,
describe: `Tracer configuration file (OpenTracing compatible). See https://gatsby.dev/tracing`,
@@ -187,6 +192,11 @@ function buildLocalCommands(cli, isLocalSite) {
default: false,
describe: `Build site with react profiling (this can add some additional overhead). See https://reactjs.org/docs/profiler`,
})
+ .option(`graphql-tracing`, {
+ type: `boolean`,
+ describe: `Trace every graphql resolver, may have performance implications`,
+ default: false,
+ })
.option(`open-tracing-config-file`, {
type: `string`,
describe: `Tracer configuration file (OpenTracing compatible). See https://gatsby.dev/tracing`,
diff --git a/packages/gatsby-cli/src/reporter/reporter.ts b/packages/gatsby-cli/src/reporter/reporter.ts
index 0d566f047752f..54f3c73c3c3f4 100644
--- a/packages/gatsby-cli/src/reporter/reporter.ts
+++ b/packages/gatsby-cli/src/reporter/reporter.ts
@@ -17,9 +17,10 @@ import { ErrorMeta, CreateLogAction } from "./types"
const errorFormatter = getErrorFormatter()
const tracer = globalTracer()
-interface IActivityArgs {
+export interface IActivityArgs {
id?: string
parentSpan?: Span
+ tags?: { [key: string]: any }
}
let isVerbose = false
@@ -189,8 +190,8 @@ class Reporter {
text: string,
activityArgs: IActivityArgs = {}
): ITimerReporter => {
- let { parentSpan, id } = activityArgs
- const spanArgs = parentSpan ? { childOf: parentSpan } : {}
+ let { parentSpan, id, tags } = activityArgs
+ const spanArgs = parentSpan ? { childOf: parentSpan, tags } : { tags }
if (!id) {
id = text
}
@@ -214,8 +215,8 @@ class Reporter {
text: string,
activityArgs: IActivityArgs = {}
): IPhantomReporter => {
- let { parentSpan, id } = activityArgs
- const spanArgs = parentSpan ? { childOf: parentSpan } : {}
+ let { parentSpan, id, tags } = activityArgs
+ const spanArgs = parentSpan ? { childOf: parentSpan, tags } : { tags }
if (!id) {
id = text
}
@@ -234,8 +235,8 @@ class Reporter {
start = 0,
activityArgs: IActivityArgs = {}
): IProgressReporter => {
- let { parentSpan, id } = activityArgs
- const spanArgs = parentSpan ? { childOf: parentSpan } : {}
+ let { parentSpan, id, tags } = activityArgs
+ const spanArgs = parentSpan ? { childOf: parentSpan, tags } : { tags }
if (!id) {
id = text
}
diff --git a/packages/gatsby/src/bootstrap/create-graphql-runner.ts b/packages/gatsby/src/bootstrap/create-graphql-runner.ts
index 35967ec130eb1..ad3d85769efb8 100644
--- a/packages/gatsby/src/bootstrap/create-graphql-runner.ts
+++ b/packages/gatsby/src/bootstrap/create-graphql-runner.ts
@@ -16,10 +16,11 @@ type Runner = (
export const createGraphQLRunner = (
store: Store<IGatsbyState>,
- reporter: Reporter
+ reporter: Reporter,
+ { parentSpan, graphqlTracing } = { parentSpan: null, graphqlTracing: false }
): Runner => {
// TODO: Move tracking of changed state inside GraphQLRunner itself. https://github.com/gatsbyjs/gatsby/issues/20941
- let runner = new GraphQLRunner(store)
+ let runner = new GraphQLRunner(store, { graphqlTracing })
const eventTypes: string[] = [
`DELETE_CACHE`,
@@ -39,43 +40,48 @@ export const createGraphQLRunner = (
})
return (query, context): ReturnType<Runner> =>
- runner.query(query, context).then(result => {
- if (result.errors) {
- const structuredErrors = result.errors
- .map(e => {
- // Find the file where graphql was called.
- const file = stackTrace
- .parse(e)
- .find(file => /createPages/.test(file.getFunctionName()))
+ runner
+ .query(query, context, {
+ queryName: `gatsby-node query`,
+ parentSpan,
+ })
+ .then(result => {
+ if (result.errors) {
+ const structuredErrors = result.errors
+ .map(e => {
+ // Find the file where graphql was called.
+ const file = stackTrace
+ .parse(e)
+ .find(file => /createPages/.test(file.getFunctionName()))
- if (file) {
- const structuredError = errorParser({
- message: e.message,
- location: {
- start: {
- line: file.getLineNumber(),
- column: file.getColumnNumber(),
+ if (file) {
+ const structuredError = errorParser({
+ message: e.message,
+ location: {
+ start: {
+ line: file.getLineNumber(),
+ column: file.getColumnNumber(),
+ },
},
- },
- filePath: file.getFileName(),
- })
- structuredError.context = {
- ...structuredError.context,
- fromGraphQLFunction: true,
+ filePath: file.getFileName(),
+ })
+ structuredError.context = {
+ ...structuredError.context,
+ fromGraphQLFunction: true,
+ }
+ return structuredError
}
- return structuredError
- }
- return null
- })
- .filter(Boolean)
+ return null
+ })
+ .filter(Boolean)
- if (structuredErrors.length) {
- // panic on build exits the process
- reporter.panicOnBuild(structuredErrors)
+ if (structuredErrors.length) {
+ // panic on build exits the process
+ reporter.panicOnBuild(structuredErrors)
+ }
}
- }
- return result
- })
+ return result
+ })
}
diff --git a/packages/gatsby/src/bootstrap/index.js b/packages/gatsby/src/bootstrap/index.js
index 3b7cde9c310e0..ec073f27844a7 100644
--- a/packages/gatsby/src/bootstrap/index.js
+++ b/packages/gatsby/src/bootstrap/index.js
@@ -43,6 +43,7 @@ type BootstrapArgs = {
directory: string,
prefixPaths?: boolean,
parentSpan: Object,
+ graphqlTracing: boolean,
}
module.exports = async (args: BootstrapArgs) => {
@@ -456,7 +457,10 @@ module.exports = async (args: BootstrapArgs) => {
payload: _.flattenDeep([extensions, apiResults]),
})
- const graphqlRunner = createGraphQLRunner(store, reporter)
+ const graphqlRunner = createGraphQLRunner(store, reporter, {
+ graphqlTracing: args.graphqlTracing,
+ parentSpan: args.parentSpan ? args.parentSpan : bootstrapSpan,
+ })
// Collect pages.
activity = reporter.activityTimer(`createPages`, {
diff --git a/packages/gatsby/src/commands/build.ts b/packages/gatsby/src/commands/build.ts
index c473899e0b077..a1f3bf063fc85 100644
--- a/packages/gatsby/src/commands/build.ts
+++ b/packages/gatsby/src/commands/build.ts
@@ -42,6 +42,7 @@ interface IBuildArgs extends IProgram {
prefixPaths: boolean
noUglify: boolean
profile: boolean
+ graphqlTracing: boolean
openTracingConfigFile: string
}
@@ -70,7 +71,10 @@ module.exports = async function build(program: IBuildArgs): Promise<void> {
parentSpan: buildSpan,
})
- const graphqlRunner = new GraphQLRunner(store, { collectStats: true })
+ const graphqlRunner = new GraphQLRunner(store, {
+ collectStats: true,
+ graphqlTracing: program.graphqlTracing,
+ })
const {
processPageQueries,
diff --git a/packages/gatsby/src/commands/develop.ts b/packages/gatsby/src/commands/develop.ts
index 3fa24843ef9fb..110e20b4d14b3 100644
--- a/packages/gatsby/src/commands/develop.ts
+++ b/packages/gatsby/src/commands/develop.ts
@@ -1,6 +1,7 @@
import fs from "fs"
import openurl from "better-opn"
import chokidar from "chokidar"
+import { SchemaComposer } from "graphql-compose"
import webpackHotMiddleware from "webpack-hot-middleware"
import webpackDevMiddleware from "webpack-dev-middleware"
@@ -11,7 +12,7 @@ import webpack from "webpack"
import graphqlHTTP from "express-graphql"
import graphqlPlayground from "graphql-playground-middleware-express"
import graphiqlExplorer from "gatsby-graphiql-explorer"
-import { formatError } from "graphql"
+import { formatError, GraphQLSchema } from "graphql"
import webpackConfig from "../utils/webpack.config"
import bootstrap from "../bootstrap"
@@ -88,7 +89,7 @@ interface IServer {
webpackActivity: ActivityTracker
}
-async function startServer(program: IProgram): Promise<IServer> {
+async function startServer(program: IDevelopArgs): Promise<IServer> {
const indexHTMLActivity = report.phantomActivity(`building index.html`, {})
indexHTMLActivity.start()
const directory = program.directory
@@ -178,7 +179,16 @@ async function startServer(program: IProgram): Promise<IServer> {
graphqlEndpoint,
graphqlHTTP(
(): graphqlHTTP.OptionsData => {
- const { schema, schemaCustomization } = store.getState()
+ const {
+ schema,
+ schemaCustomization,
+ }: {
+ schema: GraphQLSchema
+ schemaCustomization: {
+ composer: SchemaComposer<any>
+ context: any
+ }
+ } = store.getState()
return {
schema,
@@ -347,7 +357,11 @@ async function startServer(program: IProgram): Promise<IServer> {
return { compiler, listener, webpackActivity }
}
-module.exports = async (program: IProgram): Promise<void> => {
+interface IDevelopArgs extends IProgram {
+ graphqlTracing: boolean
+}
+
+module.exports = async (program: IDevelopArgs): Promise<void> => {
// We want to prompt the feedback request when users quit develop
// assuming they pass the heuristic check to know they are a user
// we want to request feedback from, and we're not annoying them.
@@ -428,7 +442,9 @@ module.exports = async (program: IProgram): Promise<void> => {
// Start the schema hot reloader.
bootstrapSchemaHotReloader()
- await queryUtil.initialProcessQueries()
+ await queryUtil.initialProcessQueries({
+ graphqlTracing: program.graphqlTracing,
+ })
require(`../redux/actions`).boundActionCreators.setProgramStatus(
`BOOTSTRAP_QUERY_RUNNING_FINISHED`
@@ -438,7 +454,9 @@ module.exports = async (program: IProgram): Promise<void> => {
await waitUntilAllJobsComplete()
requiresWriter.startListener()
db.startAutosave()
- queryUtil.startListeningToDevelopQueue()
+ queryUtil.startListeningToDevelopQueue({
+ graphqlTracing: program.graphqlTracing,
+ })
queryWatcher.startWatchDeletePage()
let { compiler, webpackActivity } = await startServer(program)
diff --git a/packages/gatsby/src/query/graphql-runner.ts b/packages/gatsby/src/query/graphql-runner.ts
index 1faf02f7654ae..40ac270331d04 100644
--- a/packages/gatsby/src/query/graphql-runner.ts
+++ b/packages/gatsby/src/query/graphql-runner.ts
@@ -11,6 +11,7 @@ import {
ExecutionResult,
} from "graphql"
import { debounce } from "lodash"
+import { IActivityArgs } from "gatsby-cli/lib/reporter"
import * as nodeStore from "../db/nodes"
import { createPageDependency } from "../redux/actions/add-page-dependency"
@@ -18,37 +19,11 @@ import withResolverContext from "../schema/context"
import { LocalNodeModel } from "../schema/node-model"
import { Store } from "redux"
import { IGatsbyState } from "../redux/types"
+import { IGraphQLRunnerStatResults, IGraphQLRunnerStats } from "./types"
+import GraphQLSpanTracer from "./graphql-span-tracer"
type Query = string | Source
-interface IGraphQLRunnerStats {
- totalQueries: number
- uniqueOperations: Set<string>
- uniqueQueries: Set<string>
- totalRunQuery: number
- totalPluralRunQuery: number
- totalIndexHits: number
- totalSiftHits: number
- totalNonSingleFilters: number
- comparatorsUsed: Map<string, number>
- uniqueFilterPaths: Set<string>
- uniqueSorts: Set<string>
-}
-
-interface IGraphQLRunnerStatResults {
- totalQueries: number
- uniqueOperations: number
- uniqueQueries: number
- totalRunQuery: number
- totalPluralRunQuery: number
- totalIndexHits: number
- totalSiftHits: number
- totalNonSingleFilters: number
- comparatorsUsed: Array<{ comparator: string; amount: number }>
- uniqueFilterPaths: number
- uniqueSorts: number
-}
-
export default class GraphQLRunner {
parseCache: Map<Query, DocumentNode>
@@ -61,13 +36,16 @@ export default class GraphQLRunner {
scheduleClearCache: () => void
stats: IGraphQLRunnerStats | null
+ graphqlTracing: boolean
constructor(
protected store: Store<IGatsbyState>,
{
collectStats,
+ graphqlTracing,
}: {
collectStats?: boolean
+ graphqlTracing?: boolean
} = {}
) {
const { schema, schemaCustomization } = this.store.getState()
@@ -83,6 +61,8 @@ export default class GraphQLRunner {
this.validDocuments = new WeakSet()
this.scheduleClearCache = debounce(this.clearCache.bind(this), 5000)
+ this.graphqlTracing = graphqlTracing || false
+
if (collectStats) {
this.stats = {
totalQueries: 0,
@@ -156,7 +136,11 @@ export default class GraphQLRunner {
}
// eslint-disable-next-line @typescript-eslint/no-explicit-any
- query(query: Query, context: Record<string, any>): Promise<ExecutionResult> {
+ query(
+ query: Query,
+ context: Record<string, any>,
+ { parentSpan, queryName }: IActivityArgs & { queryName: string }
+ ): Promise<ExecutionResult> {
const { schema, schemaCustomization } = this.store.getState()
if (this.schema !== schema) {
@@ -186,28 +170,48 @@ export default class GraphQLRunner {
const document = this.parse(query)
const errors = this.validate(schema, document)
- const result =
- errors.length > 0
- ? { errors }
- : execute({
- schema,
- document,
- rootValue: context,
- contextValue: withResolverContext({
+ let tracer
+ if (this.graphqlTracing && parentSpan) {
+ tracer = new GraphQLSpanTracer(`GraphQL Query`, {
+ parentSpan,
+ tags: {
+ queryName: queryName,
+ },
+ })
+
+ tracer.start()
+ }
+
+ try {
+ const result =
+ errors.length > 0
+ ? { errors }
+ : execute({
schema,
- schemaComposer: schemaCustomization.composer,
- context,
- customContext: schemaCustomization.context,
- nodeModel: this.nodeModel,
- stats: this.stats,
- }),
- variableValues: context,
- })
-
- // Queries are usually executed in batch. But after the batch is finished
- // cache just wastes memory without much benefits.
- // TODO: consider a better strategy for cache purging/invalidation
- this.scheduleClearCache()
- return Promise.resolve(result)
+ document,
+ rootValue: context,
+ contextValue: withResolverContext({
+ schema,
+ schemaComposer: schemaCustomization.composer,
+ context,
+ customContext: schemaCustomization.context,
+ nodeModel: this.nodeModel,
+ stats: this.stats,
+ tracer,
+ }),
+ variableValues: context,
+ })
+
+ // Queries are usually executed in batch. But after the batch is finished
+ // cache just wastes memory without much benefits.
+ // TODO: consider a better strategy for cache purging/invalidation
+ this.scheduleClearCache()
+
+ return Promise.resolve(result)
+ } finally {
+ if (tracer) {
+ tracer.end()
+ }
+ }
}
}
diff --git a/packages/gatsby/src/query/graphql-span-tracer.ts b/packages/gatsby/src/query/graphql-span-tracer.ts
new file mode 100644
index 0000000000000..26071ffdda368
--- /dev/null
+++ b/packages/gatsby/src/query/graphql-span-tracer.ts
@@ -0,0 +1,84 @@
+import { Path } from "graphql/jsutils/Path"
+
+import report from "gatsby-cli/lib/reporter"
+import { IActivityArgs } from "gatsby-cli/src/reporter/reporter"
+import { IPhantomReporter } from "gatsby-cli/src/reporter/reporter-phantom"
+
+import { IGraphQLSpanTracer } from "../schema/type-definitions"
+
+/**
+ * Tracks and knows how to get a parent span for a particular
+ * point in query resolver for a particular query and path
+ */
+export default class GraphQLSpanTracer implements IGraphQLSpanTracer {
+ parentActivity: IPhantomReporter
+ activities: Map<string, IPhantomReporter>
+
+ constructor(name: string, activityArgs: IActivityArgs) {
+ this.parentActivity = report.phantomActivity(
+ name,
+ activityArgs
+ ) as IPhantomReporter
+ this.activities = new Map()
+ }
+
+ getParentActivity(): IPhantomReporter {
+ return this.parentActivity
+ }
+
+ start(): void {
+ this.parentActivity.start()
+ }
+
+ end(): void {
+ this.activities.forEach(activity => {
+ activity.end()
+ })
+ this.parentActivity.end()
+ }
+
+ createResolverActivity(path: Path, name: string): IPhantomReporter {
+ let prev: Path | undefined = path.prev
+ while (typeof prev?.key === `number`) {
+ prev = prev.prev
+ }
+ const parentSpan = this.getActivity(prev).span
+ const activity = report.phantomActivity(`GraphQL Resolver`, {
+ parentSpan,
+ tags: {
+ field: name,
+ path: pathToArray(path).join(`.`),
+ },
+ })
+ this.setActivity(path, activity)
+ return activity
+ }
+
+ getActivity(gqlPath: Path | undefined): IPhantomReporter {
+ const path = pathToArray(gqlPath)
+ let activity
+ if (path.length > 0) {
+ activity = this.activities.get(path.join(`.`))
+ if (activity) {
+ return activity
+ }
+ }
+
+ return this.parentActivity
+ }
+
+ setActivity(gqlPath: Path, activity: IPhantomReporter): void {
+ const path = pathToArray(gqlPath)
+ this.activities.set(path.join(`.`), activity)
+ }
+}
+
+function pathToArray(path: Path | undefined): Array<string | number> {
+ const flattened: Array<string | number> = []
+ let curr: Path | undefined = path
+ while (curr) {
+ flattened.push(curr.key)
+ curr = curr.prev
+ }
+ return flattened.reverse()
+}
diff --git a/packages/gatsby/src/query/index.js b/packages/gatsby/src/query/index.js
index cdaaed91df503..844a255eef23d 100644
--- a/packages/gatsby/src/query/index.js
+++ b/packages/gatsby/src/query/index.js
@@ -158,8 +158,11 @@ const groupQueryIds = queryIds => {
}
}
-const processQueries = async (queryJobs, { activity, graphqlRunner }) => {
- const queue = queryQueue.createBuildQueue(graphqlRunner)
+const processQueries = async (
+ queryJobs,
+ { activity, graphqlRunner, graphqlTracing }
+) => {
+ const queue = queryQueue.createBuildQueue(graphqlRunner, { graphqlTracing })
await queryQueue.processBatch(queue, queryJobs, activity)
}
@@ -200,7 +203,7 @@ const createQueryRunningActivity = (queryJobsCount, parentSpan) => {
const processStaticQueries = async (
queryIds,
- { state, activity, graphqlRunner }
+ { state, activity, graphqlRunner, graphqlTracing }
) => {
state = state || store.getState()
await processQueries(
@@ -208,13 +211,14 @@ const processStaticQueries = async (
{
activity,
graphqlRunner,
+ graphqlTracing,
}
)
}
const processPageQueries = async (
queryIds,
- { state, activity, graphqlRunner }
+ { state, activity, graphqlRunner, graphqlTracing }
) => {
state = state || store.getState()
// Make sure we filter out pages that don't exist. An example is
@@ -227,11 +231,16 @@ const processPageQueries = async (
{
activity,
graphqlRunner,
+ graphqlTracing,
}
)
}
-const getInitialQueryProcessors = ({ parentSpan, graphqlRunner } = {}) => {
+const getInitialQueryProcessors = ({
+ parentSpan,
+ graphqlRunner,
+ graphqlTracing,
+} = {}) => {
const state = store.getState()
const queryIds = calcInitialDirtyQueryIds(state)
const { staticQueryIds, pageQueryIds } = groupQueryIds(queryIds)
@@ -247,7 +256,7 @@ const getInitialQueryProcessors = ({ parentSpan, graphqlRunner } = {}) => {
activity = createQueryRunningActivity(queryjobsCount, parentSpan)
}
- await fn(queryIds, { state, activity, graphqlRunner })
+ await fn(queryIds, { state, activity, graphqlRunner, graphqlTracing })
processedQueuesCount++
// if both page and static queries are done, finish activity
@@ -263,12 +272,12 @@ const getInitialQueryProcessors = ({ parentSpan, graphqlRunner } = {}) => {
}
}
-const initialProcessQueries = async ({ parentSpan } = {}) => {
+const initialProcessQueries = async ({ parentSpan, graphqlTracing } = {}) => {
const {
pageQueryIds,
processPageQueries,
processStaticQueries,
- } = getInitialQueryProcessors({ parentSpan })
+ } = getInitialQueryProcessors({ parentSpan, graphqlTracing })
await processStaticQueries()
await processPageQueries()
@@ -329,13 +338,13 @@ const runQueuedQueries = () => {
* For what constitutes a dirty query, see `calcQueries`
*/
-const startListeningToDevelopQueue = () => {
+const startListeningToDevelopQueue = ({ graphqlTracing } = {}) => {
// We use a queue to process batches of queries so that they are
// processed consecutively
let graphqlRunner = null
const developQueue = queryQueue.createDevelopQueue(() => {
if (!graphqlRunner) {
- graphqlRunner = new GraphQLRunner(store)
+ graphqlRunner = new GraphQLRunner(store, { graphqlTracing })
}
return graphqlRunner
})
diff --git a/packages/gatsby/src/query/query-runner.js b/packages/gatsby/src/query/query-runner.js
index 42b553d9f3c4b..7547d3ae69da0 100644
--- a/packages/gatsby/src/query/query-runner.js
+++ b/packages/gatsby/src/query/query-runner.js
@@ -23,12 +23,15 @@ type QueryJob = {
}
// Run query
-module.exports = async (graphqlRunner, queryJob: QueryJob) => {
+module.exports = async (graphqlRunner, queryJob: QueryJob, { parentSpan }) => {
const { program } = store.getState()
- const graphql = (query, context) => {
+ const graphql = (query, context, queryName) => {
// Check if query takes too long, print out warning
- const promise = graphqlRunner.query(query, context)
+ const promise = graphqlRunner.query(query, context, {
+ parentSpan,
+ queryName,
+ })
let isPending = true
const timeoutId = setTimeout(() => {
@@ -65,7 +68,7 @@ module.exports = async (graphqlRunner, queryJob: QueryJob) => {
if (!queryJob.query || queryJob.query === ``) {
result = {}
} else {
- result = await graphql(queryJob.query, queryJob.context)
+ result = await graphql(queryJob.query, queryJob.context, queryJob.id)
}
// If there's a graphql error then log the error. If we're building, also
diff --git a/packages/gatsby/src/query/queue.js b/packages/gatsby/src/query/queue.js
index c690f5645bfc2..a55a89007233d 100644
--- a/packages/gatsby/src/query/queue.js
+++ b/packages/gatsby/src/query/queue.js
@@ -13,12 +13,12 @@ const createBaseOptions = () => {
}
}
-const createBuildQueue = graphqlRunner => {
+const createBuildQueue = (graphqlRunner, runnerOptions = {}) => {
if (!graphqlRunner) {
- graphqlRunner = new GraphQLRunner(store)
+ graphqlRunner = new GraphQLRunner(store, runnerOptions)
}
- const handler = (queryJob, callback) =>
- queryRunner(graphqlRunner, queryJob)
+ const handler = ({ job, activity }, callback) =>
+ queryRunner(graphqlRunner, job, { parentSpan: activity?.span })
.then(result => callback(null, result))
.catch(callback)
const queue = new Queue(handler, createBaseOptions())
@@ -28,7 +28,7 @@ const createBuildQueue = graphqlRunner => {
const createDevelopQueue = getRunner => {
const queueOptions = {
...createBaseOptions(),
- priority: (job, cb) => {
+ priority: ({ job }, cb) => {
if (job.id && websocketManager.activePaths.has(job.id)) {
cb(null, 10)
} else {
@@ -40,8 +40,8 @@ const createDevelopQueue = getRunner => {
},
}
- const handler = (queryJob, callback) => {
- queryRunner(getRunner(), queryJob).then(
+ const handler = ({ job: queryJob, activity }, callback) => {
+ queryRunner(getRunner(), queryJob, { parentSpan: activity?.span }).then(
result => {
if (queryJob.isPage) {
websocketManager.emitPageData({
@@ -108,7 +108,12 @@ const processBatch = async (queue, jobs, activity) => {
// `empty` fires when queue is empty (but tasks are still running)
.on(`drain`, drainCallback)
- jobs.forEach(job => queue.push(job))
+ jobs.forEach(job =>
+ queue.push({
+ job,
+ activity,
+ })
+ )
})
}
diff --git a/packages/gatsby/src/query/types.ts b/packages/gatsby/src/query/types.ts
new file mode 100644
index 0000000000000..c0a0d9e2cf698
--- /dev/null
+++ b/packages/gatsby/src/query/types.ts
@@ -0,0 +1,27 @@
+export interface IGraphQLRunnerStats {
+ totalQueries: number
+ uniqueOperations: Set<string>
+ uniqueQueries: Set<string>
+ totalRunQuery: number
+ totalPluralRunQuery: number
+ totalIndexHits: number
+ totalSiftHits: number
+ totalNonSingleFilters: number
+ comparatorsUsed: Map<string, number>
+ uniqueFilterPaths: Set<string>
+ uniqueSorts: Set<string>
+}
+
+export interface IGraphQLRunnerStatResults {
+ totalQueries: number
+ uniqueOperations: number
+ uniqueQueries: number
+ totalRunQuery: number
+ totalPluralRunQuery: number
+ totalIndexHits: number
+ totalSiftHits: number
+ totalNonSingleFilters: number
+ comparatorsUsed: Array<{ comparator: string; amount: number }>
+ uniqueFilterPaths: number
+ uniqueSorts: number
+}
diff --git a/packages/gatsby/src/schema/__tests__/build-schema.js b/packages/gatsby/src/schema/__tests__/build-schema.js
index 1ba72f7607fe6..25842571acbd1 100644
--- a/packages/gatsby/src/schema/__tests__/build-schema.js
+++ b/packages/gatsby/src/schema/__tests__/build-schema.js
@@ -143,7 +143,9 @@ describe(`Build schema`, () => {
expect(fields[`withArgs`].args[0]).toBeDefined()
expect(fields[`withArgs`].args[0].name).toEqual(`what`)
expect(fields[`withArgs`].args[0].type).toBe(GraphQLBoolean)
- expect(fields[`withArgs`].resolve({}, { what: true })).toBe(true)
+ expect(await fields[`withArgs`].resolve({}, { what: true }, {}, {})).toBe(
+ true
+ )
})
it(`allows adding array of types`, async () => {
@@ -850,7 +852,9 @@ describe(`Build schema`, () => {
expect(fields.body.type.toString()).toBe(`String!`)
expect(typeof fields.body.resolve).toBe(`function`)
- expect(fields.body.resolve()).toBe(`Mdx!`)
+ expect(await fields.body.resolve({}, {}, {}, { fieldName: `body` })).toBe(
+ `Mdx!`
+ )
})
it(`displays error message for reserved Node interface`, () => {
@@ -1062,7 +1066,7 @@ describe(`Build schema`, () => {
const fields = type.getFields()
expect(fields[`name`].resolve).toBeDefined()
expect(
- fields[`name`].resolve(
+ await fields[`name`].resolve(
{ name: `Mikhail` },
{ withHello: true },
withResolverContext({}, schema),
@@ -1072,7 +1076,7 @@ describe(`Build schema`, () => {
)
).toEqual(`Hello Mikhail`)
expect(
- fields[`name`].resolve(
+ await fields[`name`].resolve(
{ name: `Mikhail` },
{ withHello: false },
withResolverContext({}, schema),
@@ -1108,7 +1112,7 @@ describe(`Build schema`, () => {
const fields = type.getFields()
expect(fields[`name`].resolve).toBeDefined()
expect(
- fields[`name`].resolve(
+ await fields[`name`].resolve(
{ name: `Mikhail` },
{ withHello: true },
withResolverContext({}, schema),
@@ -1118,7 +1122,7 @@ describe(`Build schema`, () => {
)
).toEqual(`Hello Mikhail`)
expect(
- fields[`name`].resolve(
+ await fields[`name`].resolve(
{ name: `Mikhail` },
{ withHello: false },
withResolverContext({}, schema),
diff --git a/packages/gatsby/src/schema/__tests__/rebuild-schema.js b/packages/gatsby/src/schema/__tests__/rebuild-schema.js
index 8a21f49c91627..1dc1029f9ee3e 100644
--- a/packages/gatsby/src/schema/__tests__/rebuild-schema.js
+++ b/packages/gatsby/src/schema/__tests__/rebuild-schema.js
@@ -1220,7 +1220,12 @@ describe(`Compatibility with addThirdPartySchema`, () => {
external2
}
`
- const result = await graphql(newSchema, query)
+ const result = await graphql({
+ schema: newSchema,
+ source: query,
+ rootValue: {},
+ contextValue: {},
+ })
expect(result).toEqual({
data: {
external: {
@@ -1262,7 +1267,12 @@ describe(`Compatibility with addThirdPartySchema`, () => {
external2
}
`
- const result = await graphql(newSchema, query)
+ const result = await graphql({
+ schema: newSchema,
+ source: query,
+ rootValue: {},
+ contextValue: {},
+ })
expect(result).toEqual({
data: {
external: {
diff --git a/packages/gatsby/src/schema/context.js b/packages/gatsby/src/schema/context.js
deleted file mode 100644
index 8186ddc904772..0000000000000
--- a/packages/gatsby/src/schema/context.js
+++ /dev/null
@@ -1,36 +0,0 @@
-import { createPageDependency } from "../redux/actions/add-page-dependency"
-
-const { LocalNodeModel } = require(`./node-model`)
-const { defaultFieldResolver } = require(`./resolvers`)
-
-const withResolverContext = ({
- schema,
- schemaComposer,
- context,
- customContext,
- nodeModel,
- stats,
-}) => {
- const nodeStore = require(`../db/nodes`)
-
- if (!nodeModel) {
- nodeModel = new LocalNodeModel({
- nodeStore,
- schema,
- schemaComposer,
- createPageDependency,
- })
- }
-
- return {
- ...(context || {}),
- ...(customContext || {}),
- defaultFieldResolver,
- nodeModel: nodeModel.withContext({
- path: context ? context.path : undefined,
- }),
- stats,
- }
-}
-
-module.exports = withResolverContext
diff --git a/packages/gatsby/src/schema/context.ts b/packages/gatsby/src/schema/context.ts
new file mode 100644
index 0000000000000..8413126fb756d
--- /dev/null
+++ b/packages/gatsby/src/schema/context.ts
@@ -0,0 +1,51 @@
+import { GraphQLSchema } from "graphql"
+import { SchemaComposer } from "graphql-compose"
+
+import { createPageDependency } from "../redux/actions/add-page-dependency"
+
+import { LocalNodeModel } from "./node-model"
+import { defaultFieldResolver } from "./resolvers"
+import { IGraphQLRunnerStats } from "../query/types"
+import { IGatsbyResolverContext, IGraphQLSpanTracer } from "./type-definitions"
+
+export default function withResolverContext<TSource, TArgs>({
+ schema,
+ schemaComposer,
+ context,
+ customContext,
+ nodeModel,
+ stats,
+ tracer,
+}: {
+ schema: GraphQLSchema
+ schemaComposer: SchemaComposer<IGatsbyResolverContext<TSource, TArgs>>
+ context?: Record<string, any>
+ customContext?: Record<string, any>
+ nodeModel?: any
+ stats?: IGraphQLRunnerStats | null
+ tracer?: IGraphQLSpanTracer
+}): IGatsbyResolverContext<TSource, TArgs> {
+ const nodeStore = require(`../db/nodes`)
+
+ if (!nodeModel) {
+ nodeModel = new LocalNodeModel({
+ nodeStore,
+ schema,
+ schemaComposer,
+ createPageDependency,
+ })
+ }
+
+ return {
+ ...(context || {}),
+ ...(customContext || {}),
+ defaultFieldResolver,
+ nodeModel: nodeModel.withContext({
+ path: context ? context.path : undefined,
+ }),
+ stats: stats || null,
+ tracer: tracer || null,
+ }
+}
+
+module.exports = withResolverContext
diff --git a/packages/gatsby/src/schema/infer/__tests__/merge-types.js b/packages/gatsby/src/schema/infer/__tests__/merge-types.js
index b39f583672a4e..91dc0feb3fa5d 100644
--- a/packages/gatsby/src/schema/infer/__tests__/merge-types.js
+++ b/packages/gatsby/src/schema/infer/__tests__/merge-types.js
@@ -2,6 +2,7 @@ const { buildObjectType } = require(`../../types/type-builders`)
const { store } = require(`../../../redux`)
const { build } = require(`../..`)
const { actions } = require(`../../../redux/actions`)
+const { defaultTracingResolver } = require(`../../resolvers`)
jest.mock(`gatsby-cli/lib/reporter`, () => {
return {
@@ -285,7 +286,7 @@ describe(`merges explicit and inferred type definitions`, () => {
expect(nestedNestedFields.conflict.type.toString()).toBe(`String!`)
// Date resolvers
- expect(fields.explicitDate.resolve).toBeUndefined()
+ expect(fields.explicitDate.resolve).toBe(defaultTracingResolver)
expect(fields.inferDate.resolve).toBeDefined()
})
@@ -336,7 +337,7 @@ describe(`merges explicit and inferred type definitions`, () => {
expect(nestedNestedFields.conflict.type.toString()).toBe(`String!`)
// Date resolvers
- expect(fields.explicitDate.resolve).toBeUndefined()
+ expect(fields.explicitDate.resolve).toBe(defaultTracingResolver)
})
it(`with "infer(noDefaultResolvers: false)"`, async () => {
@@ -437,7 +438,7 @@ describe(`merges explicit and inferred type definitions`, () => {
expect(nestedNestedFields.conflict.type.toString()).toBe(`String!`)
// Date resolvers
- expect(fields.explicitDate.resolve).toBeUndefined()
+ expect(fields.explicitDate.resolve).toBe(defaultTracingResolver)
expect(fields.inferDate.resolve).toBeDefined()
})
@@ -542,7 +543,7 @@ describe(`merges explicit and inferred type definitions`, () => {
expect(nestedNestedFields.conflict.type.toString()).toBe(`String!`)
// Date resolvers
- expect(fields.explicitDate.resolve).toBeUndefined()
+ expect(fields.explicitDate.resolve).toBe(defaultTracingResolver)
})
})
})
@@ -697,7 +698,7 @@ describe(`merges explicit and inferred type definitions`, () => {
const { link, links } = schema.getType(`LinkTest`).getFields()
expect(link.type.toString()).toBe(`Test!`)
expect(links.type.toString()).toBe(`[Test!]!`)
- expect(link.resolve).toBeUndefined()
- expect(links.resolve).toBeUndefined()
+ expect(link.resolve).toBe(defaultTracingResolver)
+ expect(links.resolve).toBe(defaultTracingResolver)
})
})
diff --git a/packages/gatsby/src/schema/node-model.js b/packages/gatsby/src/schema/node-model.js
index 638378b0719b2..1dd538f6e9c55 100644
--- a/packages/gatsby/src/schema/node-model.js
+++ b/packages/gatsby/src/schema/node-model.js
@@ -201,7 +201,7 @@ class LocalNodeModel {
* @returns {Promise<Node[]>}
*/
async runQuery(args, pageDependencies) {
- const { query, firstOnly, type, stats } = args || {}
+ const { query, firstOnly, type, stats, tracer } = args || {}
// We don't support querying union types (yet?), because the combined types
// need not have any fields in common.
@@ -213,6 +213,13 @@ class LocalNodeModel {
const nodeTypeNames = toNodeTypeNames(this.schema, gqlType)
+ let materializationActivity
+ if (tracer) {
+ materializationActivity = reporter.phantomActivity(`Materialization`, {
+ parentSpan: tracer.getParentActivity().span,
+ })
+ materializationActivity.start()
+ }
const fields = getQueryFields({
filter: query.filter,
sort: query.sort,
@@ -229,6 +236,18 @@ class LocalNodeModel {
await this.prepareNodes(gqlType, fields, fieldsToResolve, nodeTypeNames)
+ if (materializationActivity) {
+ materializationActivity.end()
+ }
+
+ let runQueryActivity
+ if (tracer) {
+ runQueryActivity = reporter.phantomActivity(`runQuery`, {
+ parentSpan: tracer.getParentActivity().span,
+ })
+ runQueryActivity.start()
+ }
+
const queryResult = await this.nodeStore.runQuery({
queryArgs: query,
firstOnly,
@@ -241,6 +260,21 @@ class LocalNodeModel {
stats,
})
+ if (runQueryActivity) {
+ runQueryActivity.end()
+ }
+
+ let trackInlineObjectsActivity
+ if (tracer) {
+ trackInlineObjectsActivity = reporter.phantomActivity(
+ `trackInlineObjects`,
+ {
+ parentSpan: tracer.getParentActivity().span,
+ }
+ )
+ trackInlineObjectsActivity.start()
+ }
+
let result = queryResult
if (firstOnly) {
if (result?.length > 0) {
@@ -253,6 +287,10 @@ class LocalNodeModel {
result.forEach(node => this.trackInlineObjectsInRootNode(node))
}
+ if (trackInlineObjectsActivity) {
+ trackInlineObjectsActivity.end()
+ }
+
return this.trackPageDependencies(result, pageDependencies)
}
@@ -726,9 +764,9 @@ const addRootNodeToInlineObject = (
rootNodeMap,
data,
nodeId,
- isNode /*: boolean */,
- path /*: Set<mixed> */
-) /*: void */ => {
+ isNode /* : boolean */,
+ path /* : Set<mixed> */
+) /* : void */ => {
const isPlainObject = _.isPlainObject(data)
if (isPlainObject || _.isArray(data)) {
diff --git a/packages/gatsby/src/schema/resolvers.js b/packages/gatsby/src/schema/resolvers.js
deleted file mode 100644
index b0cdf234a7ac2..0000000000000
--- a/packages/gatsby/src/schema/resolvers.js
+++ /dev/null
@@ -1,334 +0,0 @@
-const systemPath = require(`path`)
-const normalize = require(`normalize-path`)
-const _ = require(`lodash`)
-const { GraphQLList, getNullableType, getNamedType, Kind } = require(`graphql`)
-import { getValueAt } from "../utils/get-value-at"
-
-const findMany = typeName => (source, args, context, info) => {
- if (context.stats) {
- context.stats.totalRunQuery++
- context.stats.totalPluralRunQuery++
- }
-
- return context.nodeModel.runQuery(
- {
- query: args,
- firstOnly: false,
- type: info.schema.getType(typeName),
- stats: context.stats,
- },
- { path: context.path, connectionType: typeName }
- )
-}
-
-const findOne = typeName => (source, args, context, info) => {
- if (context.stats) {
- context.stats.totalRunQuery++
- }
- return context.nodeModel.runQuery(
- {
- query: { filter: args },
- firstOnly: true,
- type: info.schema.getType(typeName),
- stats: context.stats,
- },
- { path: context.path }
- )
-}
-
-const findManyPaginated = typeName => async (source, args, context, info) => {
- // Peek into selection set and pass on the `field` arg of `group` and
- // `distinct` which might need to be resolved.
- const group = getProjectedField(info, `group`)
- const distinct = getProjectedField(info, `distinct`)
- const extendedArgs = { ...args, group: group || [], distinct: distinct || [] }
-
- const result = await findMany(typeName)(source, extendedArgs, context, info)
- return paginate(result, { skip: args.skip, limit: args.limit })
-}
-
-const distinct = (source, args, context, info) => {
- const { field } = args
- const { edges } = source
- const values = edges.reduce((acc, { node }) => {
- const value =
- getValueAt(node, `__gatsby_resolved.${field}`) || getValueAt(node, field)
- return value != null
- ? acc.concat(value instanceof Date ? value.toISOString() : value)
- : acc
- }, [])
- return Array.from(new Set(values)).sort()
-}
-
-const group = (source, args, context, info) => {
- const { field } = args
- const { edges } = source
- const groupedResults = edges.reduce((acc, { node }) => {
- const value =
- getValueAt(node, `__gatsby_resolved.${field}`) || getValueAt(node, field)
- const values = Array.isArray(value) ? value : [value]
- values
- .filter(value => value != null)
- .forEach(value => {
- const key = value instanceof Date ? value.toISOString() : value
- acc[key] = (acc[key] || []).concat(node)
- })
- return acc
- // Note: using Object.create on purpose:
- // object key may be arbitrary string including reserved words (i.e. `constructor`)
- // see: https://github.com/gatsbyjs/gatsby/issues/22508
- }, Object.create(null))
-
- return Object.keys(groupedResults)
- .sort()
- .reduce((acc, fieldValue) => {
- acc.push({
- ...paginate(groupedResults[fieldValue], args),
- field,
- fieldValue,
- })
- return acc
- }, [])
-}
-
-const paginate = (results = [], { skip = 0, limit }) => {
- if (results === null) {
- results = []
- }
-
- const count = results.length
- const items = results.slice(skip, limit && skip + limit)
-
- const pageCount = limit
- ? Math.ceil(skip / limit) + Math.ceil((count - skip) / limit)
- : skip
- ? 2
- : 1
- const currentPage = limit ? Math.ceil(skip / limit) + 1 : skip ? 2 : 1
- const hasPreviousPage = currentPage > 1
- const hasNextPage = skip + limit < count
-
- return {
- totalCount: count,
- edges: items.map((item, i, arr) => {
- return {
- node: item,
- next: arr[i + 1],
- previous: arr[i - 1],
- }
- }),
- nodes: items,
- pageInfo: {
- currentPage,
- hasPreviousPage,
- hasNextPage,
- itemCount: items.length,
- pageCount,
- perPage: limit,
- },
- }
-}
-
-const link = (options = {}, fieldConfig) => async (
- source,
- args,
- context,
- info
-) => {
- const resolver = fieldConfig.resolve || context.defaultFieldResolver
- const fieldValue = await resolver(source, args, context, {
- ...info,
- from: options.from || info.from,
- fromNode: options.from ? options.fromNode : info.fromNode,
- })
-
- if (fieldValue == null) return null
-
- const returnType = getNullableType(options.type || info.returnType)
- const type = getNamedType(returnType)
-
- if (options.by === `id`) {
- if (Array.isArray(fieldValue)) {
- return context.nodeModel.getNodesByIds(
- { ids: fieldValue, type: type },
- { path: context.path }
- )
- } else {
- return context.nodeModel.getNodeById(
- { id: fieldValue, type: type },
- { path: context.path }
- )
- }
- }
-
- const equals = value => {
- return { eq: value }
- }
- const oneOf = value => {
- return { in: value }
- }
-
- // Return early if fieldValue is [] since { in: [] } doesn't make sense
- if (Array.isArray(fieldValue) && fieldValue.length === 0) {
- return fieldValue
- }
-
- const operator = Array.isArray(fieldValue) ? oneOf : equals
- args.filter = options.by.split(`.`).reduceRight((acc, key, i, { length }) => {
- return {
- [key]: i === length - 1 ? operator(acc) : acc,
- }
- }, fieldValue)
-
- const firstOnly = !(returnType instanceof GraphQLList)
-
- if (context.stats) {
- context.stats.totalRunQuery++
- if (firstOnly) {
- context.stats.totalPluralRunQuery++
- }
- }
-
- const result = await context.nodeModel.runQuery(
- { query: args, firstOnly, type, stats: context.stats },
- { path: context.path }
- )
- if (
- returnType instanceof GraphQLList &&
- Array.isArray(fieldValue) &&
- Array.isArray(result)
- ) {
- return fieldValue.map(value =>
- result.find(obj => getValueAt(obj, options.by) === value)
- )
- } else {
- return result
- }
-}
-
-const fileByPath = (options = {}, fieldConfig) => async (
- source,
- args,
- context,
- info
-) => {
- const resolver = fieldConfig.resolve || context.defaultFieldResolver
- const fieldValue = await resolver(source, args, context, {
- ...info,
- from: options.from || info.from,
- fromNode: options.from ? options.fromNode : info.fromNode,
- })
-
- if (fieldValue == null) return null
-
- const findLinkedFileNode = relativePath => {
- // Use the parent File node to create the absolute path to
- // the linked file.
- const fileLinkPath = normalize(
- systemPath.resolve(parentFileNode.dir, relativePath)
- )
-
- // Use that path to find the linked File node.
- const linkedFileNode = _.find(
- context.nodeModel.getAllNodes({ type: `File` }),
- n => n.absolutePath === fileLinkPath
- )
- return linkedFileNode
- }
-
- // Find the File node for this node (we assume the node is something
- // like markdown which would be a child node of a File node).
- const parentFileNode = context.nodeModel.findRootNodeAncestor(
- source,
- node => node.internal && node.internal.type === `File`
- )
-
- return resolveValue(findLinkedFileNode, fieldValue)
-}
-
-const resolveValue = (resolve, value) =>
- Array.isArray(value)
- ? value.map(v => resolveValue(resolve, v))
- : resolve(value)
-
-const getProjectedField = (info, fieldName) => {
- const selectionSet = info.fieldNodes[0].selectionSet
- const fieldNodes = getFieldNodeByNameInSelectionSet(
- selectionSet,
- fieldName,
- info
- )
-
- const fieldEnum = getNullableType(
- getNullableType(info.returnType)
- .getFields()
- [fieldName].args.find(arg => arg.name === `field`).type
- )
-
- return fieldNodes.reduce((acc, fieldNode) => {
- const fieldArg = fieldNode.arguments.find(arg => arg.name.value === `field`)
- if (fieldArg) {
- const enumKey = fieldArg.value.value
- return [...acc, fieldEnum.getValue(enumKey).value]
- } else {
- return acc
- }
- }, [])
-}
-
-const getFieldNodeByNameInSelectionSet = (selectionSet, fieldName, info) =>
- selectionSet.selections.reduce((acc, selection) => {
- if (selection.kind === Kind.FRAGMENT_SPREAD) {
- const fragmentDef = info.fragments[selection.name.value]
- if (fragmentDef) {
- return [
- ...acc,
- ...getFieldNodeByNameInSelectionSet(
- fragmentDef.selectionSet,
- fieldName,
- info
- ),
- ]
- }
- } else if (selection.kind === Kind.INLINE_FRAGMENT) {
- return [
- ...acc,
- ...getFieldNodeByNameInSelectionSet(
- selection.selectionSet,
- fieldName,
- info
- ),
- ]
- } /* FIELD_NODE */ else {
- if (selection.name.value === fieldName) {
- return [...acc, selection]
- }
- }
- return acc
- }, [])
-
-const defaultFieldResolver = (source, args, context, info) => {
- if (!source || typeof source !== `object`) return null
-
- if (info.from) {
- if (info.fromNode) {
- const node = context.nodeModel.findRootNodeAncestor(source)
- if (!node) return null
- return getValueAt(node, info.from)
- }
- return getValueAt(source, info.from)
- }
-
- return source[info.fieldName]
-}
-
-module.exports = {
- defaultFieldResolver,
- findManyPaginated,
- findOne,
- fileByPath,
- link,
- distinct,
- group,
- paginate,
-}
diff --git a/packages/gatsby/src/schema/resolvers.ts b/packages/gatsby/src/schema/resolvers.ts
new file mode 100644
index 0000000000000..30b424eabfcc9
--- /dev/null
+++ b/packages/gatsby/src/schema/resolvers.ts
@@ -0,0 +1,501 @@
+import systemPath from "path"
+import normalize from "normalize-path"
+import _ from "lodash"
+import {
+ GraphQLList,
+ GraphQLType,
+ getNullableType,
+ getNamedType,
+ Kind,
+ GraphQLFieldConfig,
+ GraphQLResolveInfo,
+ isObjectType,
+ isInterfaceType,
+ isEnumType,
+ SelectionSetNode,
+ SelectionNode,
+ FieldNode,
+} from "graphql"
+import { getValueAt } from "../utils/get-value-at"
+import {
+ GatsbyResolver,
+ IGatsbyConnection,
+ IGatsbyResolverContext,
+} from "./type-definitions"
+
+export function findMany<TSource, TArgs>(
+ typeName: string
+): GatsbyResolver<TSource, TArgs> {
+ return function findManyResolver(_source, args, context, info): any {
+ if (context.stats) {
+ context.stats.totalRunQuery++
+ context.stats.totalPluralRunQuery++
+ }
+
+ return context.nodeModel.runQuery(
+ {
+ query: args,
+ firstOnly: false,
+ type: info.schema.getType(typeName),
+ stats: context.stats,
+ tracer: context.tracer,
+ },
+ { path: context.path, connectionType: typeName }
+ )
+ }
+}
+
+export function findOne<TSource, TArgs>(
+ typeName: string
+): GatsbyResolver<TSource, TArgs> {
+ return function findOneResolver(_source, args, context, info): any {
+ if (context.stats) {
+ context.stats.totalRunQuery++
+ }
+ return context.nodeModel.runQuery(
+ {
+ query: { filter: args },
+ firstOnly: true,
+ type: info.schema.getType(typeName),
+ stats: context.stats,
+ tracer: context.tracer,
+ },
+ { path: context.path }
+ )
+ }
+}
+
+type PaginatedArgs<TArgs> = TArgs & { skip?: number; limit?: number }
+
+export function findManyPaginated<TSource, TArgs, TNodeType>(
+ typeName: string
+): GatsbyResolver<TSource, PaginatedArgs<TArgs>> {
+ return async function findManyPaginatedResolver(
+ source,
+ args,
+ context,
+ info
+ ): Promise<IGatsbyConnection<TNodeType>> {
+ // Peek into selection set and pass on the `field` arg of `group` and
+ // `distinct` which might need to be resolved.
+ const group = getProjectedField(info, `group`)
+ const distinct = getProjectedField(info, `distinct`)
+ const extendedArgs = {
+ ...args,
+ group: group || [],
+ distinct: distinct || [],
+ }
+
+ const result = await findMany<TSource, PaginatedArgs<TArgs>>(typeName)(
+ source,
+ extendedArgs,
+ context,
+ info
+ )
+ return paginate(result, { skip: args.skip, limit: args.limit })
+ }
+}
+
+interface IFieldConnectionArgs {
+ field: string
+}
+
+export const distinct: GatsbyResolver<
+ IGatsbyConnection<any>,
+ IFieldConnectionArgs
+> = function distinctResolver(source, args): Array<string> {
+ const { field } = args
+ const { edges } = source
+ const values = edges.reduce((acc, { node }) => {
+ const value =
+ getValueAt(node, `__gatsby_resolved.${field}`) || getValueAt(node, field)
+ return value != null
+ ? acc.concat(value instanceof Date ? value.toISOString() : value)
+ : acc
+ }, [])
+ return Array.from(new Set(values)).sort()
+}
+
+type IGatsbyGroupReturnValue<NodeType> = Array<
+ IGatsbyConnection<NodeType> & {
+ field: string
+ fieldValue: string | undefined
+ }
+>
+
+export const group: GatsbyResolver<
+ IGatsbyConnection<any>,
+ PaginatedArgs<IFieldConnectionArgs>
+> = function groupResolver(source, args): IGatsbyGroupReturnValue<any> {
+ const { field } = args
+ const { edges } = source
+ const groupedResults: Record<string, Array<string>> = edges.reduce(
+ (acc, { node }) => {
+ const value =
+ getValueAt(node, `__gatsby_resolved.${field}`) ||
+ getValueAt(node, field)
+ const values = Array.isArray(value) ? value : [value]
+ values
+ .filter(value => value != null)
+ .forEach(value => {
+ const key = value instanceof Date ? value.toISOString() : value
+ acc[key] = (acc[key] || []).concat(node)
+ })
+ return acc
+ // Note: using Object.create on purpose:
+ // object key may be arbitrary string including reserved words (i.e. `constructor`)
+ // see: https://github.com/gatsbyjs/gatsby/issues/22508
+ },
+ Object.create(null)
+ )
+
+ return Object.keys(groupedResults)
+ .sort()
+ .reduce((acc: IGatsbyGroupReturnValue<any>, fieldValue: string) => {
+ acc.push({
+ ...paginate(groupedResults[fieldValue], args),
+ field,
+ fieldValue,
+ })
+ return acc
+ }, [])
+}
+
+export function paginate<NodeType>(
+ results: Array<NodeType> = [],
+ { skip = 0, limit }: { skip?: number; limit?: number }
+): IGatsbyConnection<NodeType> {
+ if (results === null) {
+ results = []
+ }
+
+ const count = results.length
+ const items = results.slice(skip, limit && skip + limit)
+
+ const pageCount = limit
+ ? Math.ceil(skip / limit) + Math.ceil((count - skip) / limit)
+ : skip
+ ? 2
+ : 1
+ const currentPage = limit ? Math.ceil(skip / limit) + 1 : skip ? 2 : 1
+ const hasPreviousPage = currentPage > 1
+ const hasNextPage = skip + (limit || NaN) < count
+
+ return {
+ totalCount: count,
+ edges: items.map((item, i, arr) => {
+ return {
+ node: item,
+ next: arr[i + 1],
+ previous: arr[i - 1],
+ }
+ }),
+ nodes: items,
+ pageInfo: {
+ currentPage,
+ hasPreviousPage,
+ hasNextPage,
+ itemCount: items.length,
+ pageCount,
+ perPage: limit,
+ },
+ }
+}
+
+export function link<TSource, TArgs>(
+ options: {
+ by: string
+ type?: GraphQLType
+ from?: string
+ fromNode?: string
+ } = {
+ by: `id`,
+ },
+ fieldConfig: GraphQLFieldConfig<
+ TSource,
+ IGatsbyResolverContext<TSource, TArgs>,
+ TArgs
+ >
+): GatsbyResolver<TSource, TArgs> {
+ return async function linkResolver(
+ source,
+ args,
+ context,
+ info
+ ): Promise<any> {
+ const resolver = fieldConfig.resolve || context.defaultFieldResolver
+ const fieldValue = await resolver(source, args, context, {
+ ...info,
+ from: options.from || info.from,
+ fromNode: options.from ? options.fromNode : info.fromNode,
+ })
+
+ if (fieldValue == null) return null
+
+ const returnType = getNullableType(options.type || info.returnType)
+ const type = getNamedType(returnType)
+
+ if (options.by === `id`) {
+ if (Array.isArray(fieldValue)) {
+ return context.nodeModel.getNodesByIds(
+ { ids: fieldValue, type: type },
+ { path: context.path }
+ )
+ } else {
+ return context.nodeModel.getNodeById(
+ { id: fieldValue, type: type },
+ { path: context.path }
+ )
+ }
+ }
+
+ const equals = (value: string): any => {
+ return { eq: value }
+ }
+ const oneOf = (value: string): any => {
+ return { in: value }
+ }
+
+ // Return early if fieldValue is [] since { in: [] } doesn't make sense
+ if (Array.isArray(fieldValue) && fieldValue.length === 0) {
+ return fieldValue
+ }
+
+ const operator = Array.isArray(fieldValue) ? oneOf : equals
+ const runQueryArgs = args as TArgs & { filter: any }
+ runQueryArgs.filter = options.by
+ .split(`.`)
+ .reduceRight((acc, key, i, { length }) => {
+ return {
+ [key]: i === length - 1 ? operator(acc) : acc,
+ }
+ }, fieldValue)
+
+ const firstOnly = !(returnType instanceof GraphQLList)
+
+ if (context.stats) {
+ context.stats.totalRunQuery++
+ if (firstOnly) {
+ context.stats.totalPluralRunQuery++
+ }
+ }
+
+ const result = await context.nodeModel.runQuery(
+ {
+ query: runQueryArgs,
+ firstOnly,
+ type,
+ stats: context.stats,
+ tracer: context.tracer,
+ },
+ { path: context.path }
+ )
+ if (
+ returnType instanceof GraphQLList &&
+ Array.isArray(fieldValue) &&
+ Array.isArray(result)
+ ) {
+ return fieldValue.map(value =>
+ result.find(obj => getValueAt(obj, options.by) === value)
+ )
+ } else {
+ return result
+ }
+ }
+}
+
+export function fileByPath<TSource, TArgs>(
+ options: {
+ from?: string
+ fromNode?: string
+ } = {},
+ fieldConfig
+): GatsbyResolver<TSource, TArgs> {
+ return async function fileByPathResolver(
+ source,
+ args,
+ context,
+ info
+ ): Promise<any> {
+ const resolver = fieldConfig.resolve || context.defaultFieldResolver
+ const fieldValue = await resolver(source, args, context, {
+ ...info,
+ from: options.from || info.from,
+ fromNode: options.from ? options.fromNode : info.fromNode,
+ })
+
+ if (fieldValue == null) return null
+
+ // Find the File node for this node (we assume the node is something
+ // like markdown which would be a child node of a File node).
+ const parentFileNode = context.nodeModel.findRootNodeAncestor(
+ source,
+ node => node.internal && node.internal.type === `File`
+ )
+
+ const findLinkedFileNode = (relativePath: string): any => {
+ // Use the parent File node to create the absolute path to
+ // the linked file.
+ const fileLinkPath = normalize(
+ systemPath.resolve(parentFileNode.dir, relativePath)
+ )
+
+ // Use that path to find the linked File node.
+ const linkedFileNode = _.find(
+ context.nodeModel.getAllNodes({ type: `File` }),
+ n => n.absolutePath === fileLinkPath
+ )
+ return linkedFileNode
+ }
+
+ return resolveValue(findLinkedFileNode, fieldValue)
+ }
+}
+
+function resolveValue(
+ resolve: (a: any) => any,
+ value: any | Array<any>
+): any | Array<any> {
+ return Array.isArray(value)
+ ? value.map(v => resolveValue(resolve, v))
+ : resolve(value)
+}
+
+function getProjectedField(
+ info: GraphQLResolveInfo,
+ fieldName: string
+): Array<string> {
+ const selectionSet = info.fieldNodes[0].selectionSet
+ if (selectionSet) {
+ const fieldNodes = getFieldNodeByNameInSelectionSet(
+ selectionSet,
+ fieldName,
+ info
+ )
+
+ const returnType = getNullableType(info.returnType)
+
+ if (isObjectType(returnType) || isInterfaceType(returnType)) {
+ const field = returnType.getFields()[fieldName]
+ const fieldArg = field?.args?.find(arg => arg.name === `field`)
+ if (fieldArg) {
+ const fieldEnum = getNullableType(fieldArg.type)
+
+ if (isEnumType(fieldEnum)) {
+ return fieldNodes.reduce(
+ (acc: Array<string>, fieldNode: FieldNode) => {
+ const fieldArg = fieldNode.arguments?.find(
+ arg => arg.name.value === `field`
+ )
+ if (fieldArg?.value.kind === Kind.ENUM) {
+ const enumKey = fieldArg.value.value
+ const enumValue = fieldEnum.getValue(enumKey)
+ if (enumValue) {
+ return [...acc, enumValue.value]
+ }
+ }
+ return acc
+ },
+ []
+ )
+ }
+ }
+ }
+ }
+
+ return []
+}
+
+function getFieldNodeByNameInSelectionSet(
+ selectionSet: SelectionSetNode,
+ fieldName: string,
+ info: GraphQLResolveInfo
+): Array<FieldNode> {
+ return selectionSet.selections.reduce(
+ (acc: Array<FieldNode>, selection: SelectionNode) => {
+ if (selection.kind === Kind.FRAGMENT_SPREAD) {
+ const fragmentDef = info.fragments[selection.name.value]
+ if (fragmentDef) {
+ return [
+ ...acc,
+ ...getFieldNodeByNameInSelectionSet(
+ fragmentDef.selectionSet,
+ fieldName,
+ info
+ ),
+ ]
+ }
+ } else if (selection.kind === Kind.INLINE_FRAGMENT) {
+ return [
+ ...acc,
+ ...getFieldNodeByNameInSelectionSet(
+ selection.selectionSet,
+ fieldName,
+ info
+ ),
+ ]
+ } /* FIELD_NODE */ else {
+ if (selection.name.value === fieldName) {
+ return [...acc, selection]
+ }
+ }
+ return acc
+ },
+ []
+ )
+}
+
+export const defaultFieldResolver: GatsbyResolver<
+ any,
+ any
+> = function defaultFieldResolver(source, args, context, info) {
+ if (
+ (typeof source == `object` && source !== null) ||
+ typeof source === `function`
+ ) {
+ if (info.from) {
+ if (info.fromNode) {
+ const node = context.nodeModel.findRootNodeAncestor(source)
+ if (!node) return null
+ return getValueAt(node, info.from)
+ }
+ return getValueAt(source, info.from)
+ }
+ const property = source[info.fieldName]
+ if (typeof property === `function`) {
+ return source[info.fieldName](args, context, info)
+ }
+ return property
+ }
+
+ return null
+}
+
+export function tracingResolver<TSource, TArgs>(
+ resolver: GatsbyResolver<TSource, TArgs>
+): GatsbyResolver<TSource, TArgs> {
+ return async function wrappedTracingResolver(
+ parent,
+ args,
+ context,
+ info
+ ): Promise<any> {
+ let activity
+ if (context.tracer) {
+ activity = context.tracer.createResolverActivity(
+ info.path,
+ `${info.parentType.name}.${info.fieldName}`
+ )
+ activity.start()
+ }
+ try {
+ return resolver(parent, args, context, info)
+ } finally {
+ if (activity) {
+ activity.end()
+ }
+ }
+ }
+}
+
+export const defaultTracingResolver = tracingResolver(defaultFieldResolver)
diff --git a/packages/gatsby/src/schema/schema.js b/packages/gatsby/src/schema/schema.js
index 01e49a0961224..1d6e5e2e179de 100644
--- a/packages/gatsby/src/schema/schema.js
+++ b/packages/gatsby/src/schema/schema.js
@@ -23,7 +23,12 @@ const apiRunner = require(`../utils/api-runner-node`)
const report = require(`gatsby-cli/lib/reporter`)
const { addNodeInterfaceFields } = require(`./types/node-interface`)
const { addInferredType, addInferredTypes } = require(`./infer`)
-const { findOne, findManyPaginated } = require(`./resolvers`)
+const {
+ findOne,
+ findManyPaginated,
+ tracingResolver,
+ defaultTracingResolver,
+} = require(`./resolvers`)
const {
processFieldExtensions,
internalExtensionNames,
@@ -183,6 +188,7 @@ const updateSchemaComposer = async ({
parentSpan: activity.span,
})
await addCustomResolveFunctions({ schemaComposer, parentSpan: activity.span })
+ await attachTracingResolver({ schemaComposer, parentSpan: activity.span })
activity.end()
}
@@ -840,6 +846,24 @@ const addCustomResolveFunctions = async ({ schemaComposer, parentSpan }) => {
})
}
+function attachTracingResolver({ schemaComposer }) {
+ schemaComposer.forEach(typeComposer => {
+ if (
+ typeComposer instanceof ObjectTypeComposer ||
+ typeComposer instanceof InterfaceTypeComposer
+ ) {
+ typeComposer.getFieldNames().forEach(fieldName => {
+ const field = typeComposer.getField(fieldName)
+ typeComposer.extendField(fieldName, {
+ resolve: field.resolve
+ ? tracingResolver(field.resolve)
+ : defaultTracingResolver,
+ })
+ })
+ }
+ })
+}
+
const determineSearchableFields = ({ schemaComposer, typeComposer }) => {
typeComposer.getFieldNames().forEach(fieldName => {
const field = typeComposer.getField(fieldName)
diff --git a/packages/gatsby/src/schema/type-definitions.ts b/packages/gatsby/src/schema/type-definitions.ts
new file mode 100644
index 0000000000000..dc424c159964d
--- /dev/null
+++ b/packages/gatsby/src/schema/type-definitions.ts
@@ -0,0 +1,53 @@
+import { GraphQLResolveInfo } from "graphql"
+
+import { IPhantomReporter } from "gatsby-cli/lib/reporter"
+
+import { IGraphQLRunnerStats } from "../query/types"
+import { Path } from "graphql/jsutils/Path"
+
+export interface IGatsbyResolverContext<TSource, TArgs> {
+ defaultFieldResolver: GatsbyResolver<TSource, TArgs>
+ nodeModel: any
+ stats: IGraphQLRunnerStats | null
+ tracer: IGraphQLSpanTracer | null
+ [key: string]: any
+}
+
+export type GatsbyGraphQLResolveInfo = GraphQLResolveInfo & {
+ from?: string
+ fromNode?: string
+}
+
+export type GatsbyResolver<TSource, TArgs = { [argName: string]: any }> = (
+ source: TSource,
+ args: TArgs,
+ context: IGatsbyResolverContext<TSource, TArgs>,
+ info: GatsbyGraphQLResolveInfo
+) => any
+
+export interface IGatsbyConnection<NodeType> {
+ totalCount: number
+ edges: Array<IGatsbyEdge<NodeType>>
+ nodes: Array<NodeType>
+ pageInfo: IGatsbyPageInfo
+}
+
+export interface IGatsbyEdge<NodeType> {
+ node: NodeType
+ next: NodeType | undefined
+ previous: NodeType | undefined
+}
+
+export interface IGatsbyPageInfo {
+ currentPage: number
+ hasPreviousPage: boolean
+ hasNextPage: boolean
+ itemCount: number
+ pageCount: number
+ perPage: number | undefined
+}
+
+export interface IGraphQLSpanTracer {
+ getParentActivity(): IPhantomReporter
+ createResolverActivity(path: Path, name: string): IPhantomReporter
+}
diff --git a/packages/gatsby/src/schema/types/__tests__/date.js b/packages/gatsby/src/schema/types/__tests__/date.js
index 391a26f230c00..618e35fe6fdb9 100644
--- a/packages/gatsby/src/schema/types/__tests__/date.js
+++ b/packages/gatsby/src/schema/types/__tests__/date.js
@@ -2,6 +2,7 @@ const { store } = require(`../../../redux`)
const { actions } = require(`../../../redux/actions`)
const { build } = require(`../..`)
const withResolverContext = require(`../../context`)
+const { defaultTracingResolver } = require(`../../resolvers`)
const { isDate, looksLikeADate } = require(`../date`)
jest.mock(`gatsby-cli/lib/reporter`, () => {
@@ -352,22 +353,22 @@ describe(`dateResolver`, () => {
expect(fields.validNanosecond1.resolve).toBeDefined()
expect(fields.validNanosecond2.resolve).toBeDefined()
// expect(fields.invalidHighPrecision.resolve).toBeDefined()
- expect(fields.invalidDate1.resolve).toBeUndefined()
- expect(fields.invalidDate2.resolve).toBeUndefined()
- expect(fields.invalidDate3.resolve).toBeUndefined()
- expect(fields.invalidDate4.resolve).toBeUndefined()
- expect(fields.invalidDate5.resolve).toBeUndefined()
- expect(fields.invalidDate6.resolve).toBeUndefined()
- expect(fields.invalidDate7.resolve).toBeUndefined()
+ expect(fields.invalidDate1.resolve).toBe(defaultTracingResolver)
+ expect(fields.invalidDate2.resolve).toBe(defaultTracingResolver)
+ expect(fields.invalidDate3.resolve).toBe(defaultTracingResolver)
+ expect(fields.invalidDate4.resolve).toBe(defaultTracingResolver)
+ expect(fields.invalidDate5.resolve).toBe(defaultTracingResolver)
+ expect(fields.invalidDate6.resolve).toBe(defaultTracingResolver)
+ expect(fields.invalidDate7.resolve).toBe(defaultTracingResolver)
expect(fields.invalidDate8).toBeUndefined()
- expect(fields.invalidDate9.resolve).toBeUndefined()
+ expect(fields.invalidDate9.resolve).toBe(defaultTracingResolver)
expect(fields.invalidDate10).toBeUndefined()
- expect(fields.invalidDate11.resolve).toBeUndefined()
+ expect(fields.invalidDate11.resolve).toBe(defaultTracingResolver)
expect(fields.invalidDate12).toBeUndefined()
expect(fields.invalidDate13).toBeUndefined()
- expect(fields.invalidDate14.resolve).toBeUndefined()
- expect(fields.invalidDate15.resolve).toBeUndefined()
- expect(fields.invalidDate16.resolve).toBeUndefined()
+ expect(fields.invalidDate14.resolve).toBe(defaultTracingResolver)
+ expect(fields.invalidDate15.resolve).toBe(defaultTracingResolver)
+ expect(fields.invalidDate16.resolve).toBe(defaultTracingResolver)
})
it.each([
diff --git a/packages/gatsby/src/schema/types/pagination.ts b/packages/gatsby/src/schema/types/pagination.ts
index 6b69020a64d20..f66486c3f9c15 100644
--- a/packages/gatsby/src/schema/types/pagination.ts
+++ b/packages/gatsby/src/schema/types/pagination.ts
@@ -101,7 +101,7 @@ export const getPagination = <TContext = any>({
typeComposer,
inputTypeComposer,
})
- const fields = {
+ const fields: { [key: string]: any } = {
distinct: {
type: [`String!`],
args: {
|
045dbf3d8ee55bd6d0abedb9c022bfac71d255fb
|
2022-03-22 20:35:47
|
Michal Piechowiak
|
chore(release): Publish next
| false
|
Publish next
|
chore
|
diff --git a/packages/gatsby-cli/package.json b/packages/gatsby-cli/package.json
index 358f1b7b17bdc..15a28bb79ccc7 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.11.0-next.2",
+ "version": "4.11.0-next.3",
"author": "Kyle Mathews <[email protected]>",
"bin": {
"gatsby": "cli.js"
diff --git a/packages/gatsby-plugin-google-gtag/package.json b/packages/gatsby-plugin-google-gtag/package.json
index 84d0a117378d4..e3386e5722b92 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.11.0-next.2",
+ "version": "4.11.0-next.3",
"author": "Tyler Buchea <[email protected]>",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
diff --git a/packages/gatsby-worker/package.json b/packages/gatsby-worker/package.json
index 04fa6d4f0198e..eac1e53ae7f4e 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.11.0-next.0",
+ "version": "1.11.0-next.1",
"author": "Michal Piechowiak<[email protected]>",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
diff --git a/packages/gatsby/package.json b/packages/gatsby/package.json
index 241043d114679..d15db6cc2b1e7 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.11.0-next.3",
+ "version": "4.11.0-next.4",
"author": "Kyle Mathews <[email protected]>",
"bin": {
"gatsby": "./cli.js"
@@ -78,7 +78,7 @@
"find-cache-dir": "^3.3.2",
"fs-exists-cached": "1.0.0",
"fs-extra": "^10.0.0",
- "gatsby-cli": "^4.11.0-next.2",
+ "gatsby-cli": "^4.11.0-next.3",
"gatsby-core-utils": "^3.11.0-next.1",
"gatsby-graphiql-explorer": "^2.11.0-next.0",
"gatsby-legacy-polyfills": "^2.11.0-next.0",
@@ -90,7 +90,7 @@
"gatsby-plugin-utils": "^3.5.0-next.2",
"gatsby-react-router-scroll": "^5.11.0-next.1",
"gatsby-telemetry": "^3.11.0-next.1",
- "gatsby-worker": "^1.11.0-next.0",
+ "gatsby-worker": "^1.11.0-next.1",
"glob": "^7.2.0",
"globby": "^11.1.0",
"got": "^11.8.2",
|
506d7c3cb62b24435ecf15ac6198962a87bc59a5
|
2019-04-04 17:54:53
|
Arnau Siches
|
fix(gatsby-transformer-toml): Fix createContentDigest usage (#13118)
| false
|
Fix createContentDigest usage (#13118)
|
fix
|
diff --git a/packages/gatsby-transformer-toml/src/__tests__/gatsby-node.js b/packages/gatsby-transformer-toml/src/__tests__/gatsby-node.js
index 4a763a4d0d320..0a5e35ab6d40c 100644
--- a/packages/gatsby-transformer-toml/src/__tests__/gatsby-node.js
+++ b/packages/gatsby-transformer-toml/src/__tests__/gatsby-node.js
@@ -42,20 +42,20 @@ describe(`Process TOML nodes correctly`, () => {
const actions = { createNode, createParentChildLink }
const createNodeId = jest.fn()
createNodeId.mockReturnValue(`uuid-from-gatsby`)
- const createDigestContent = jest.fn().mockReturnValue(`contentDigest`)
+ const createContentDigest = jest.fn().mockReturnValue(`contentDigest`)
await onCreateNode({
node,
loadNodeContent,
actions,
createNodeId,
- createDigestContent,
+ createContentDigest,
}).then(() => {
expect(createNode.mock.calls).toMatchSnapshot()
expect(createParentChildLink.mock.calls).toMatchSnapshot()
expect(createNode).toHaveBeenCalledTimes(1)
expect(createParentChildLink).toHaveBeenCalledTimes(1)
- expect(createDigestContent).toHaveBeenCalledTimes(1)
+ expect(createContentDigest).toHaveBeenCalledTimes(1)
})
})
diff --git a/packages/gatsby-transformer-toml/src/gatsby-node.js b/packages/gatsby-transformer-toml/src/gatsby-node.js
index 84a529e060910..944a538ffc2d0 100644
--- a/packages/gatsby-transformer-toml/src/gatsby-node.js
+++ b/packages/gatsby-transformer-toml/src/gatsby-node.js
@@ -6,7 +6,7 @@ async function onCreateNode({
actions,
loadNodeContent,
createNodeId,
- createDigestContent,
+ createContentDigest,
}) {
const { createNode, createParentChildLink } = actions
// Filter out non-toml content
@@ -23,7 +23,7 @@ async function onCreateNode({
// This version suffers from:
// 1) More TOML files -> more types
// 2) Different files with the same name creating conflicts
- const contentDigest = createDigestContent(parsedContent)
+ const contentDigest = createContentDigest(parsedContent)
const newNode = {
...parsedContent,
|
24ad2e5668166e27ff82505f38b2354d61717ddd
|
2018-09-26 20:34:16
|
Jason Lengstorf
|
fix: add ecosystem team for starters YAML
| false
|
add ecosystem team for starters YAML
|
fix
|
diff --git a/CODEOWNERS b/CODEOWNERS
index ae980454a3721..b4e86c862022f 100644
--- a/CODEOWNERS
+++ b/CODEOWNERS
@@ -15,5 +15,8 @@
appveyor.yml @gatsbyjs/core
.github/ @gatsbyjs/core
+# The ecosystem files are error-prone, so we require an extra set of eyes on them.
+/docs/starters.yml @gatsbyjs/ecosystem
+
# The website auto-deploys, so we need an extra check to avoid shenanigans.
/www/ @gatsbyjs/website
|
26141cc07806951cdd70545c09fd88aa33a84931
|
2019-10-14 17:25:27
|
Luis Filipe
|
chore(docs): Fix broken link (#18508)
| false
|
Fix broken link (#18508)
|
chore
|
diff --git a/docs/docs/recipes.md b/docs/docs/recipes.md
index c69ee3f3566ad..a76278d29d150 100644
--- a/docs/docs/recipes.md
+++ b/docs/docs/recipes.md
@@ -2098,7 +2098,7 @@ Use [`netlify-cli`](https://www.netlify.com/docs/cli/) to deploy your Gatsby app
4. Choose a custom website name if you want or press enter to receive a random one.
-5. Choose your [Team](/docs/teams/).
+5. Choose your [Team](https://www.netlify.com/docs/teams/).
6. Change the deploy path to `public/`
|
3097235e25664dcac73938eb5139023d318a832d
|
2020-04-22 17:19:41
|
Kyle Gill
|
docs: adds callouts linking to Gatsby Cloud (#23323)
| false
|
adds callouts linking to Gatsby Cloud (#23323)
|
docs
|
diff --git a/docs/contributing/docs-and-blog-components.md b/docs/contributing/docs-and-blog-components.md
index c1707fa0ad337..81c8cdc205687 100644
--- a/docs/contributing/docs-and-blog-components.md
+++ b/docs/contributing/docs-and-blog-components.md
@@ -124,6 +124,38 @@ Rendered, the component looks like this:
To improve is to change, so to be perfect is to have changed often.
</Pullquote>
+### Gatsby Cloud Callout
+
+The `<CloudCallout />` component is used to call attention and link to Gatsby Cloud. It wraps a small call to action in styles that make content stand out.
+
+#### Usage
+
+The Cloud Callout component takes one optional prop, and prepends the children it wraps to the general call to action:
+
+- `narrow` - styles the component by removing the left and right negative margins, keeping it inside the parent container. This prop is by default set to true since it's most commonly used in the docs where it's necessary to keep content from overlapping with other sections of the layout, such as the Table of Contents.
+
+It is used like this:
+
+```markdown:title=docs/deploying-to-storage-provider.md
+---
+title: Deploying to Storage Provider
+---
+
+<!-- highlight-start -->
+<CloudCallout>
+ Connect your Gatsby site to Storage Provider for automatic deployments
+</CloudCallout>
+<!-- highlight-end -->
+```
+
+#### Sample
+
+Rendered, the component looks like this:
+
+<CloudCallout>
+ Connect your Gatsby site to Storage Provider for automatic deployments
+</CloudCallout>
+
### Component Model
The `<ComponentModel />` was made to help explain concepts of how Gatsby works at a high level. It conceptually breaks Gatsby into different layers and shows how data is pulled, aggregated, and eventually rendered as an app. It's used on docs pages to help explain how Gatsby works at different levels.
diff --git a/docs/docs/deploying-and-hosting.md b/docs/docs/deploying-and-hosting.md
index eef957b38da45..64a7a8546fd56 100644
--- a/docs/docs/deploying-and-hosting.md
+++ b/docs/docs/deploying-and-hosting.md
@@ -7,6 +7,9 @@ Getting your shiny new Gatsby site deployed and accessible is probably the first
When you build your Gatsby application, the output is static content: HTML, CSS, JavaScript, images, etc. This content is incredibly easy and affordable to host with any provider. We have several guides below for hosting with particular providers, but this list is by no means exhaustive. Whether you're deploying to AWS, Netlify, or something else entirely switching to static content makes deploying a trivial concern.
+<CloudCallout>
+ For the best experience deploying Gatsby applications:
+</CloudCallout>
<GuideList slug={props.slug} />
The Gatsby blog also has posts on both [deployment](/blog/tags/deployment/) and [hosting](/blog/tags/hosting/).
diff --git a/docs/docs/deploying-to-firebase.md b/docs/docs/deploying-to-firebase.md
index d0d159489f34a..9619446285253 100644
--- a/docs/docs/deploying-to-firebase.md
+++ b/docs/docs/deploying-to-firebase.md
@@ -115,6 +115,10 @@ All done! Once the deployment concludes, you can access your website using `fire
Check the [Firebase Docs](https://firebase.google.com/docs/hosting/full-config) for information about how to customize your deployment further. Remember that each time you wish to redeploy your site, you will need to rerun `gatsby build` first.
+<CloudCallout>
+ For automatic setup of builds that are deployed straight to Firebase:
+</CloudCallout>
+
## References:
- [Firebase CLI Reference](https://firebase.google.com/docs/cli)
diff --git a/docs/docs/deploying-to-netlify.md b/docs/docs/deploying-to-netlify.md
index 4c10edebbad18..a5618ac70fce6 100644
--- a/docs/docs/deploying-to-netlify.md
+++ b/docs/docs/deploying-to-netlify.md
@@ -63,6 +63,10 @@ Now that your site is connected to your repository, Netlify will deploy the site
From the site `Overview`, you can go to `Domain Settings`. By adding a custom domain and setting the `CNAME` record as the Netlify project URL in your DNS provider settings, you should be able to see the Netlify project at your domain URL.
+<CloudCallout>
+ For automatic setup of builds that are deployed straight to Netlify:
+</CloudCallout>
+
## Other resources
- [A Step-by-Step Guide: Gatsby on Netlify](https://www.netlify.com/blog/2016/02/24/a-step-by-step-guide-gatsby-on-netlify/)
diff --git a/docs/docs/deploying-to-s3-cloudfront.md b/docs/docs/deploying-to-s3-cloudfront.md
index 6f679906a1946..55e681a17dc6f 100644
--- a/docs/docs/deploying-to-s3-cloudfront.md
+++ b/docs/docs/deploying-to-s3-cloudfront.md
@@ -121,6 +121,10 @@ And then in the Gatsby config you can reference it like so:
If you need the full address elsewhere in your config, you can access it via `siteAddress.href`.
+<CloudCallout>
+ For automatic setup of builds that are deployed straight to S3:
+</CloudCallout>
+
## References:
- [Gatsby on AWS, the right way](https://blog.joshwalsh.me/aws-gatsby/)
diff --git a/docs/docs/headless-cms.md b/docs/docs/headless-cms.md
index 3b9ddbae78283..c20e14dda57a1 100644
--- a/docs/docs/headless-cms.md
+++ b/docs/docs/headless-cms.md
@@ -13,6 +13,7 @@ Through use of [source plugins](/plugins/?=source), Gatsby has support for dozen
The guides in this section will walk through the process of setting up content sourcing from some of the most popular headless CMSes in use today.
+<CloudCallout>For integrating your site with a headless CMS:</CloudCallout>
<GuideList slug={props.slug} />
<!--
diff --git a/docs/docs/sourcing-from-contentful.md b/docs/docs/sourcing-from-contentful.md
index 46fcbf7399b1e..43e9129f2f1e7 100644
--- a/docs/docs/sourcing-from-contentful.md
+++ b/docs/docs/sourcing-from-contentful.md
@@ -60,3 +60,7 @@ plugins: [
## Examples of Gatsby + Contentful websites
The Gatsby blog has [several examples of individuals and companies](/blog/tags/contentful) that chose to build with Gatsby and Contentful.
+
+<CloudCallout>
+ For an automatic integration using Contentful with Gatsby:
+</CloudCallout>
diff --git a/docs/docs/sourcing-from-contentstack.md b/docs/docs/sourcing-from-contentstack.md
index dc8a2509b178b..97e5678431469 100644
--- a/docs/docs/sourcing-from-contentstack.md
+++ b/docs/docs/sourcing-from-contentstack.md
@@ -97,3 +97,5 @@ The above example is meant to demonstrate how to set up a simple Gatsby site tha
- [Getting started with Contentstack and Gatsby](https://www.contentstack.com/docs/example-apps/build-a-sample-website-using-gatsby-and-contentstack?utm_source=gatsby&utm_medium=referral&utm_campaign=2019_06_17_sourcing_from_contentstack)
- [Build an example website using Gatsby and Contentstack](https://www.contentstack.com/blog/announcements/best-content-management-platform-2019-siia-codie-award?utm_source=prnewswire&utm_medium=referral&utm_campaign=2019_06_18_best_cms_codie_award)
+
+<CloudCallout />
diff --git a/docs/docs/sourcing-from-drupal.md b/docs/docs/sourcing-from-drupal.md
index 8812caddc78d8..179a53d04aa51 100644
--- a/docs/docs/sourcing-from-drupal.md
+++ b/docs/docs/sourcing-from-drupal.md
@@ -78,3 +78,5 @@ Using Gatsby together with Drupal offers a powerful, full-featured, open-source,
- Take a [free course on building a Gatsby site with Drupal](https://gatsbyguides.com/).
- Read [Gatsby blog posts on Gatsby + Drupal](/blog/tags/drupal/).
- Watch a [video series on getting started with Gatsby and Drupal](https://www.youtube.com/playlist?list=PL-Ve2ZZ1kZNT9BhQMMI9jUySfdnQ8-S3n).
+
+<CloudCallout />
diff --git a/docs/docs/sourcing-from-sanity.md b/docs/docs/sourcing-from-sanity.md
index b51425dc49e64..5c7e0b0d5a806 100644
--- a/docs/docs/sourcing-from-sanity.md
+++ b/docs/docs/sourcing-from-sanity.md
@@ -256,3 +256,5 @@ module.exports = {
```
This example is based off [Gatsby Docs' implementation](/docs/environment-variables/).
+
+<CloudCallout />
diff --git a/www/src/assets/ornaments/circles-ornament.svg b/www/src/assets/ornaments/circles-ornament.svg
new file mode 100644
index 0000000000000..c64d2996007f7
--- /dev/null
+++ b/www/src/assets/ornaments/circles-ornament.svg
@@ -0,0 +1,6 @@
+<svg width="32" height="87" viewBox="0 0 32 87" fill="none" xmlns="http://www.w3.org/2000/svg" class="css-lplmbv" focusable="false">
+ <circle cx="17" cy="15" r="14.5" stroke="currentColor"/>
+ <circle cx="17" cy="35" r="14.5" stroke="currentColor"/>
+ <circle cx="17" cy="55" r="14.5" stroke="currentColor"/>
+ <circle cx="17" cy="70" r="14.5" stroke="currentColor"/>
+</svg>
diff --git a/www/src/assets/ornaments/index.js b/www/src/assets/ornaments/index.js
index 3ef79d68b3c00..5457e5acb244d 100644
--- a/www/src/assets/ornaments/index.js
+++ b/www/src/assets/ornaments/index.js
@@ -1,5 +1,11 @@
+import CirclesOrnament from "!raw-loader!./circles-ornament.svg"
import NewsletterFormOrnament from "!raw-loader!./newsletter-form-ornament.svg"
-import StarOrnament from "!raw-loader!./star-ornament.svg"
import QuotationMarkOrnament from "!raw-loader!./quotation-mark-ornament.svg"
+import StarOrnament from "!raw-loader!./star-ornament.svg"
-export { NewsletterFormOrnament, StarOrnament, QuotationMarkOrnament }
+export {
+ CirclesOrnament,
+ NewsletterFormOrnament,
+ QuotationMarkOrnament,
+ StarOrnament
+}
diff --git a/www/src/components/masthead.js b/www/src/components/masthead.js
index 9ad7dedef9bb1..eda45be89117d 100644
--- a/www/src/components/masthead.js
+++ b/www/src/components/masthead.js
@@ -1,6 +1,7 @@
/** @jsx jsx */
import { jsx } from "theme-ui"
import { MdArrowForward as ArrowForwardIcon } from "react-icons/md"
+import { trackCustomEvent } from "gatsby-plugin-google-analytics"
import Button from "./button"
@@ -12,7 +13,7 @@ const MastheadContent = () => (
px: 8,
py: [9, null, null, 12],
mb: [null, null, null, 6],
- textAlign: `center`,
+ textAlign: `center`
}}
>
<h1
@@ -23,7 +24,7 @@ const MastheadContent = () => (
maxWidth: `15em`,
mb: 6,
mt: 0,
- mx: `auto`,
+ mx: `auto`
}}
>
Fast in every way that matters
@@ -37,7 +38,7 @@ const MastheadContent = () => (
maxWidth: `45rem`,
mb: 10,
mt: 0,
- mx: `auto`,
+ mx: `auto`
}}
>
Gatsby is a free and open source framework based on React that helps
@@ -50,9 +51,37 @@ const MastheadContent = () => (
to="/docs/"
tracking="MasterHead -> Get Started"
icon={<ArrowForwardIcon />}
+ sx={{
+ mb: 5
+ }}
>
Get Started
</Button>
+ <p
+ sx={{
+ color: `text`,
+ fontFamily: `heading`,
+ fontSize: [3, 3],
+ lineHeight: `dense`,
+ maxWidth: `30rem`,
+ mx: `auto`
+ }}
+ >
+ Already using Gatsby? Preview, build, and deploy faster with{" "}
+ <a
+ href="https://www.gatsbyjs.com"
+ onClick={() =>
+ trackCustomEvent({
+ category: `home-masthead`,
+ action: `click`,
+ label: `Gatsby Cloud`
+ })
+ }
+ >
+ Gatsby Cloud
+ </a>
+ .
+ </p>
</div>
)
diff --git a/www/src/components/shared/cloud-callout.js b/www/src/components/shared/cloud-callout.js
new file mode 100644
index 0000000000000..17c725abec28d
--- /dev/null
+++ b/www/src/components/shared/cloud-callout.js
@@ -0,0 +1,62 @@
+import React from "react"
+import PropTypes from "prop-types"
+import styled from "@emotion/styled"
+import { OutboundLink } from "gatsby-plugin-google-analytics"
+
+import { CirclesOrnament } from "../../assets/ornaments"
+import { mediaQueries } from "gatsby-design-tokens/dist/theme-gatsbyjs-org"
+
+const CloudCalloutRoot = styled(`div`)`
+ border: 1px solid ${p => console.log(p) || p.theme.colors.purple["20"]};
+ border-radius: ${p => p.theme.radii[2]};
+ font-family: ${p => p.theme.fonts.heading};
+ font-size: ${p => p.theme.fontSizes[3]};
+ font-weight: bold;
+ padding: ${p => p.theme.space[7]} 3rem;
+ position: relative;
+ margin: ${p => p.theme.space[8]} 0;
+
+ p {
+ margin-bottom: 0;
+ }
+
+ ${mediaQueries.lg} {
+ line-height: ${p => p.theme.lineHeights.loose};
+ margin: ${p => p.theme.space[8]} ${p => (p.narrow ? 0 : `-3.5rem`)};
+ padding: 2.8rem 3.5rem;
+ }
+`
+
+const CloudText = styled(`p`)`
+ color: ${p => p.theme.colors.text};
+ font-weight: normal;
+ margin-bottom: 0;
+`
+
+const Circles = styled(`span`)`
+ display: flex;
+ position: absolute;
+ bottom: 16px;
+ right: 0px;
+ transform: translateX(15px);
+ color: ${p => p.theme.colors.purple["30"]};
+`
+
+const CloudCallout = ({ narrow = true, children }) => {
+ return (
+ <CloudCalloutRoot narrow={narrow}>
+ <CloudText>{children}</CloudText>
+ Try <OutboundLink href="https://gatsbyjs.com">Gatsby Cloud</OutboundLink>,
+ with CMS and CDN auto-provisioning, performance reports, and 20x faster
+ builds!
+ <Circles dangerouslySetInnerHTML={{ __html: CirclesOrnament }} />
+ </CloudCalloutRoot>
+ )
+}
+
+CloudCallout.propTypes = {
+ children: PropTypes.node.isRequired,
+ narrow: PropTypes.bool
+}
+
+export default CloudCallout
diff --git a/www/src/gatsby-plugin-theme-ui/components.js b/www/src/gatsby-plugin-theme-ui/components.js
index 9326844745859..a63a4760d939d 100644
--- a/www/src/gatsby-plugin-theme-ui/components.js
+++ b/www/src/gatsby-plugin-theme-ui/components.js
@@ -1,5 +1,6 @@
import React from "react"
+import CloudCallout from "../components/shared/cloud-callout"
import GuideList from "../components/guide-list.js"
import HubspotForm from "../components/hubspot-form"
import Pullquote from "../components/shared/pullquote"
@@ -19,6 +20,7 @@ import LangList from "../components/lang-list"
import ScriptLoader from "../components/script-loader"
export default {
+ CloudCallout,
GuideList,
HubspotForm,
DateChart,
@@ -35,5 +37,5 @@ export default {
LangList,
ScriptLoader,
a: MdxLink,
- pre: ({ children }) => <CodeBlock>{children}</CodeBlock>,
+ pre: ({ children }) => <CodeBlock>{children}</CodeBlock>
}
|
701ab2f6690c3f1bbaf60cf572513ea566cc9ec9
|
2021-06-01 21:10:16
|
renovate[bot]
|
chore(deps): update babel monorepo (#31143)
| false
|
update babel monorepo (#31143)
|
chore
|
diff --git a/packages/babel-plugin-remove-graphql-queries/package.json b/packages/babel-plugin-remove-graphql-queries/package.json
index 4bc4c76f18a99..d1c3b3a43c9a6 100644
--- a/packages/babel-plugin-remove-graphql-queries/package.json
+++ b/packages/babel-plugin-remove-graphql-queries/package.json
@@ -9,8 +9,8 @@
},
"homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/babel-plugin-remove-graphql-queries#readme",
"devDependencies": {
- "@babel/cli": "^7.12.1",
- "@babel/core": "^7.12.3",
+ "@babel/cli": "^7.14.3",
+ "@babel/core": "^7.14.3",
"babel-preset-gatsby-package": "^1.7.0-next.1",
"cross-env": "^7.0.3",
"gatsby-core-utils": "^2.7.0-next.1"
diff --git a/packages/babel-preset-gatsby-package/package.json b/packages/babel-preset-gatsby-package/package.json
index 0d8e5479d99dc..b2f1e765522d1 100644
--- a/packages/babel-preset-gatsby-package/package.json
+++ b/packages/babel-preset-gatsby-package/package.json
@@ -9,14 +9,14 @@
},
"homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/babel-preset-gatsby-package#readme",
"dependencies": {
- "@babel/plugin-proposal-nullish-coalescing-operator": "^7.12.1",
- "@babel/plugin-proposal-optional-chaining": "^7.12.1",
+ "@babel/plugin-proposal-nullish-coalescing-operator": "^7.14.2",
+ "@babel/plugin-proposal-optional-chaining": "^7.14.2",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
- "@babel/plugin-transform-runtime": "^7.12.1",
- "@babel/plugin-transform-typescript": "^7.12.1",
- "@babel/preset-env": "^7.12.1",
- "@babel/preset-flow": "^7.12.1",
- "@babel/preset-react": "^7.12.5",
+ "@babel/plugin-transform-runtime": "^7.14.3",
+ "@babel/plugin-transform-typescript": "^7.14.4",
+ "@babel/preset-env": "^7.14.4",
+ "@babel/preset-flow": "^7.13.13",
+ "@babel/preset-react": "^7.13.13",
"babel-plugin-dynamic-import-node": "^2.3.3",
"core-js": "^3.10.0"
},
diff --git a/packages/babel-preset-gatsby/package.json b/packages/babel-preset-gatsby/package.json
index 243f116e81b8c..b833115f8508d 100644
--- a/packages/babel-preset-gatsby/package.json
+++ b/packages/babel-preset-gatsby/package.json
@@ -9,16 +9,16 @@
},
"homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/babel-preset-gatsby#readme",
"dependencies": {
- "@babel/plugin-proposal-class-properties": "^7.12.1",
- "@babel/plugin-proposal-nullish-coalescing-operator": "^7.12.1",
- "@babel/plugin-proposal-optional-chaining": "^7.12.1",
+ "@babel/plugin-proposal-class-properties": "^7.13.0",
+ "@babel/plugin-proposal-nullish-coalescing-operator": "^7.14.2",
+ "@babel/plugin-proposal-optional-chaining": "^7.14.2",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
- "@babel/plugin-transform-classes": "^7.12.1",
- "@babel/plugin-transform-runtime": "^7.12.1",
- "@babel/plugin-transform-spread": "^7.12.1",
- "@babel/preset-env": "^7.12.1",
- "@babel/preset-react": "^7.12.5",
- "@babel/runtime": "^7.12.5",
+ "@babel/plugin-transform-classes": "^7.14.4",
+ "@babel/plugin-transform-runtime": "^7.14.3",
+ "@babel/plugin-transform-spread": "^7.13.0",
+ "@babel/preset-env": "^7.14.4",
+ "@babel/preset-react": "^7.13.13",
+ "@babel/runtime": "^7.14.0",
"babel-plugin-dynamic-import-node": "^2.3.3",
"babel-plugin-macros": "^2.8.0",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
@@ -37,7 +37,7 @@
"watch": "babel -w src --out-dir . --ignore \"**/__tests__\" --ignore \"**/utils/path-serializer.ts\" --extensions \".ts,.js\""
},
"devDependencies": {
- "@babel/cli": "^7.12.1",
+ "@babel/cli": "^7.14.3",
"babel-preset-gatsby-package": "^1.7.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 e44b7d690ba08..a0b7daebb861c 100644
--- a/packages/create-gatsby/package.json
+++ b/packages/create-gatsby/package.json
@@ -17,7 +17,7 @@
],
"devDependencies": {
"@ascorbic/worker-threads-shim": "^1.0.0",
- "@babel/runtime": "^7.12.5",
+ "@babel/runtime": "^7.14.0",
"@types/configstore": "^4.0.0",
"@types/fs-extra": "^9.0.2",
"@types/node": "^14.14.5",
diff --git a/packages/gatsby-cli/package.json b/packages/gatsby-cli/package.json
index 33507e8cb1664..9e9267e3a58db 100644
--- a/packages/gatsby-cli/package.json
+++ b/packages/gatsby-cli/package.json
@@ -10,7 +10,7 @@
"url": "https://github.com/gatsbyjs/gatsby/issues"
},
"dependencies": {
- "@babel/code-frame": "^7.10.4",
+ "@babel/code-frame": "^7.12.13",
"@types/common-tags": "^1.8.0",
"better-opn": "^2.0.0",
"chalk": "^4.1.0",
@@ -50,8 +50,8 @@
"yurnalist": "^2.1.0"
},
"devDependencies": {
- "@babel/cli": "^7.12.1",
- "@babel/core": "^7.12.3",
+ "@babel/cli": "^7.14.3",
+ "@babel/core": "^7.14.3",
"@rollup/plugin-babel": "^5.1.0",
"@rollup/plugin-commonjs": "^17.0.0",
"@rollup/plugin-json": "^4.1.0",
diff --git a/packages/gatsby-codemods/package.json b/packages/gatsby-codemods/package.json
index 67637be43aa48..35da4678bc885 100644
--- a/packages/gatsby-codemods/package.json
+++ b/packages/gatsby-codemods/package.json
@@ -24,18 +24,18 @@
},
"license": "MIT",
"dependencies": {
- "@babel/core": "^7.12.3",
- "@babel/plugin-proposal-class-properties": "^7.12.1",
- "@babel/plugin-syntax-jsx": "^7.12.1",
- "@babel/plugin-syntax-typescript": "^7.12.1",
- "@babel/runtime": "^7.12.5",
+ "@babel/core": "^7.14.3",
+ "@babel/plugin-proposal-class-properties": "^7.13.0",
+ "@babel/plugin-syntax-jsx": "^7.12.13",
+ "@babel/plugin-syntax-typescript": "^7.12.13",
+ "@babel/runtime": "^7.14.0",
"execa": "^5.0.0",
"graphql": "^15.5.0",
"jscodeshift": "^0.11.0",
"recast": "^0.20.4"
},
"devDependencies": {
- "@babel/cli": "^7.12.1",
+ "@babel/cli": "^7.14.3",
"babel-preset-gatsby-package": "^1.7.0-next.1",
"cross-env": "^7.0.3"
},
diff --git a/packages/gatsby-core-utils/package.json b/packages/gatsby-core-utils/package.json
index 1ea6407d58cf0..cd68daac6626c 100644
--- a/packages/gatsby-core-utils/package.json
+++ b/packages/gatsby-core-utils/package.json
@@ -39,8 +39,8 @@
"xdg-basedir": "^4.0.0"
},
"devDependencies": {
- "@babel/cli": "^7.12.1",
- "@babel/core": "^7.12.3",
+ "@babel/cli": "^7.14.3",
+ "@babel/core": "^7.14.3",
"@types/ci-info": "2.0.0",
"babel-preset-gatsby-package": "^1.7.0-next.1",
"cross-env": "^7.0.3",
diff --git a/packages/gatsby-cypress/package.json b/packages/gatsby-cypress/package.json
index 2fc25648f1ac8..9a635fe0e5bff 100644
--- a/packages/gatsby-cypress/package.json
+++ b/packages/gatsby-cypress/package.json
@@ -15,11 +15,11 @@
"url": "https://github.com/gatsbyjs/gatsby/issues"
},
"dependencies": {
- "@babel/runtime": "^7.12.5"
+ "@babel/runtime": "^7.14.0"
},
"devDependencies": {
- "@babel/cli": "^7.12.1",
- "@babel/core": "^7.12.3",
+ "@babel/cli": "^7.14.3",
+ "@babel/core": "^7.14.3",
"babel-preset-gatsby-package": "^1.7.0-next.1",
"cross-env": "^7.0.3"
},
diff --git a/packages/gatsby-dev-cli/package.json b/packages/gatsby-dev-cli/package.json
index ffddc4f653a10..6cd51afd6eced 100644
--- a/packages/gatsby-dev-cli/package.json
+++ b/packages/gatsby-dev-cli/package.json
@@ -10,7 +10,7 @@
"url": "https://github.com/gatsbyjs/gatsby/issues"
},
"dependencies": {
- "@babel/runtime": "^7.12.5",
+ "@babel/runtime": "^7.14.0",
"chokidar": "^3.5.1",
"configstore": "^5.0.1",
"del": "^6.0.0",
@@ -25,8 +25,8 @@
"yargs": "^15.4.1"
},
"devDependencies": {
- "@babel/cli": "^7.12.1",
- "@babel/core": "^7.12.3",
+ "@babel/cli": "^7.14.3",
+ "@babel/core": "^7.14.3",
"babel-preset-gatsby-package": "^1.7.0-next.1",
"cross-env": "^7.0.3"
},
diff --git a/packages/gatsby-graphiql-explorer/package.json b/packages/gatsby-graphiql-explorer/package.json
index 43021d7838aa2..482421ae5b0a4 100644
--- a/packages/gatsby-graphiql-explorer/package.json
+++ b/packages/gatsby-graphiql-explorer/package.json
@@ -28,15 +28,15 @@
},
"license": "MIT",
"dependencies": {
- "@babel/runtime": "^7.12.5"
+ "@babel/runtime": "^7.14.0"
},
"devDependencies": {
- "@babel/cli": "^7.12.1",
- "@babel/core": "^7.12.3",
- "@babel/plugin-proposal-class-properties": "^7.12.1",
- "@babel/plugin-transform-runtime": "^7.12.1",
- "@babel/preset-env": "^7.12.1",
- "@babel/preset-react": "^7.12.5",
+ "@babel/cli": "^7.14.3",
+ "@babel/core": "^7.14.3",
+ "@babel/plugin-proposal-class-properties": "^7.13.0",
+ "@babel/plugin-transform-runtime": "^7.14.3",
+ "@babel/preset-env": "^7.14.4",
+ "@babel/preset-react": "^7.13.13",
"babel-loader": "^8.2.2",
"babel-preset-gatsby-package": "^1.7.0-next.1",
"core-js": "^3.8.1",
diff --git a/packages/gatsby-image/package.json b/packages/gatsby-image/package.json
index 31507e5d4fab2..6398cf93d7a26 100644
--- a/packages/gatsby-image/package.json
+++ b/packages/gatsby-image/package.json
@@ -7,13 +7,13 @@
"url": "https://github.com/gatsbyjs/gatsby/issues"
},
"dependencies": {
- "@babel/runtime": "^7.12.5",
+ "@babel/runtime": "^7.14.0",
"object-fit-images": "^3.2.4",
"prop-types": "^15.7.2"
},
"devDependencies": {
- "@babel/cli": "^7.12.1",
- "@babel/core": "^7.12.3",
+ "@babel/cli": "^7.14.3",
+ "@babel/core": "^7.14.3",
"@testing-library/react": "^9.5.0",
"babel-preset-gatsby-package": "^1.7.0-next.1",
"cross-env": "^7.0.3",
diff --git a/packages/gatsby-link/package.json b/packages/gatsby-link/package.json
index e27a5960daf9c..9a4cdf1172652 100644
--- a/packages/gatsby-link/package.json
+++ b/packages/gatsby-link/package.json
@@ -7,13 +7,13 @@
"url": "https://github.com/gatsbyjs/gatsby/issues"
},
"dependencies": {
- "@babel/runtime": "^7.12.5",
+ "@babel/runtime": "^7.14.0",
"@types/reach__router": "^1.3.7",
"prop-types": "^15.7.2"
},
"devDependencies": {
- "@babel/cli": "^7.12.1",
- "@babel/core": "^7.12.3",
+ "@babel/cli": "^7.14.3",
+ "@babel/core": "^7.14.3",
"@testing-library/react": "^9.5.0",
"babel-preset-gatsby-package": "^1.7.0-next.1",
"cross-env": "^7.0.3"
diff --git a/packages/gatsby-page-utils/package.json b/packages/gatsby-page-utils/package.json
index d39e9b989adb9..5fd4dd3c98176 100644
--- a/packages/gatsby-page-utils/package.json
+++ b/packages/gatsby-page-utils/package.json
@@ -22,7 +22,7 @@
},
"homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-page-utils#readme",
"dependencies": {
- "@babel/runtime": "^7.12.5",
+ "@babel/runtime": "^7.14.0",
"bluebird": "^3.7.2",
"chokidar": "^3.5.1",
"fs-exists-cached": "^1.0.0",
@@ -32,8 +32,8 @@
"micromatch": "^4.0.2"
},
"devDependencies": {
- "@babel/cli": "^7.12.1",
- "@babel/core": "^7.12.3",
+ "@babel/cli": "^7.14.3",
+ "@babel/core": "^7.14.3",
"@types/micromatch": "^4.0.1",
"babel-preset-gatsby-package": "^1.7.0-next.1",
"cross-env": "^7.0.3",
diff --git a/packages/gatsby-plugin-benchmark-reporting/package.json b/packages/gatsby-plugin-benchmark-reporting/package.json
index 4d8bea6a4279d..2a3a6b1280e8b 100644
--- a/packages/gatsby-plugin-benchmark-reporting/package.json
+++ b/packages/gatsby-plugin-benchmark-reporting/package.json
@@ -14,8 +14,8 @@
},
"homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-benchmark-reporting#readme",
"devDependencies": {
- "@babel/cli": "^7.12.1",
- "@babel/core": "^7.12.3",
+ "@babel/cli": "^7.14.3",
+ "@babel/core": "^7.14.3",
"babel-preset-gatsby-package": "^1.7.0-next.1"
},
"dependencies": {
diff --git a/packages/gatsby-plugin-canonical-urls/package.json b/packages/gatsby-plugin-canonical-urls/package.json
index 3a933d06eb198..6a41cdf1657c5 100644
--- a/packages/gatsby-plugin-canonical-urls/package.json
+++ b/packages/gatsby-plugin-canonical-urls/package.json
@@ -7,11 +7,11 @@
"url": "https://github.com/gatsbyjs/gatsby/issues"
},
"dependencies": {
- "@babel/runtime": "^7.12.5"
+ "@babel/runtime": "^7.14.0"
},
"devDependencies": {
- "@babel/cli": "^7.12.1",
- "@babel/core": "^7.12.3",
+ "@babel/cli": "^7.14.3",
+ "@babel/core": "^7.14.3",
"babel-preset-gatsby-package": "^1.7.0-next.1",
"cross-env": "^7.0.3"
},
diff --git a/packages/gatsby-plugin-catch-links/package.json b/packages/gatsby-plugin-catch-links/package.json
index de14d89a622ce..db8226cb79257 100644
--- a/packages/gatsby-plugin-catch-links/package.json
+++ b/packages/gatsby-plugin-catch-links/package.json
@@ -7,12 +7,12 @@
"url": "https://github.com/gatsbyjs/gatsby/issues"
},
"dependencies": {
- "@babel/runtime": "^7.12.5",
+ "@babel/runtime": "^7.14.0",
"escape-string-regexp": "^1.0.5"
},
"devDependencies": {
- "@babel/cli": "^7.12.1",
- "@babel/core": "^7.12.3",
+ "@babel/cli": "^7.14.3",
+ "@babel/core": "^7.14.3",
"babel-preset-gatsby-package": "^1.7.0-next.1",
"cross-env": "^7.0.3"
},
diff --git a/packages/gatsby-plugin-coffeescript/package.json b/packages/gatsby-plugin-coffeescript/package.json
index 23270c5d90a35..c0db0391301d5 100644
--- a/packages/gatsby-plugin-coffeescript/package.json
+++ b/packages/gatsby-plugin-coffeescript/package.json
@@ -10,14 +10,14 @@
"Noah Lange <[email protected]>"
],
"dependencies": {
- "@babel/runtime": "^7.12.5",
+ "@babel/runtime": "^7.14.0",
"coffee-loader": "^0.9.0",
"coffee-react-transform": "^5.0.0",
"coffeescript": "^2.5.1"
},
"devDependencies": {
- "@babel/cli": "^7.12.1",
- "@babel/core": "^7.12.3",
+ "@babel/cli": "^7.14.3",
+ "@babel/core": "^7.14.3",
"babel-preset-gatsby-package": "^1.7.0-next.1",
"cross-env": "^7.0.3"
},
diff --git a/packages/gatsby-plugin-create-client-paths/package.json b/packages/gatsby-plugin-create-client-paths/package.json
index 9e7e38b47e233..7acf9ddcc9e1c 100644
--- a/packages/gatsby-plugin-create-client-paths/package.json
+++ b/packages/gatsby-plugin-create-client-paths/package.json
@@ -7,11 +7,11 @@
"url": "https://github.com/gatsbyjs/gatsby/issues"
},
"dependencies": {
- "@babel/runtime": "^7.12.5"
+ "@babel/runtime": "^7.14.0"
},
"devDependencies": {
- "@babel/cli": "^7.12.1",
- "@babel/core": "^7.12.3",
+ "@babel/cli": "^7.14.3",
+ "@babel/core": "^7.14.3",
"babel-preset-gatsby-package": "^1.7.0-next.1",
"cross-env": "^7.0.3"
},
diff --git a/packages/gatsby-plugin-cxs/package.json b/packages/gatsby-plugin-cxs/package.json
index af94d2d30ba72..c3b90104d3300 100644
--- a/packages/gatsby-plugin-cxs/package.json
+++ b/packages/gatsby-plugin-cxs/package.json
@@ -7,11 +7,11 @@
"url": "https://github.com/gatsbyjs/gatsby/issues"
},
"dependencies": {
- "@babel/runtime": "^7.12.5"
+ "@babel/runtime": "^7.14.0"
},
"devDependencies": {
- "@babel/cli": "^7.12.1",
- "@babel/core": "^7.12.3",
+ "@babel/cli": "^7.14.3",
+ "@babel/core": "^7.14.3",
"babel-preset-gatsby-package": "^1.7.0-next.1",
"cross-env": "^7.0.3",
"cxs": "^6.2.0",
diff --git a/packages/gatsby-plugin-emotion/package.json b/packages/gatsby-plugin-emotion/package.json
index 6263e010c08f9..5550579bb1bd3 100644
--- a/packages/gatsby-plugin-emotion/package.json
+++ b/packages/gatsby-plugin-emotion/package.json
@@ -7,12 +7,12 @@
"url": "https://github.com/gatsbyjs/gatsby/issues"
},
"dependencies": {
- "@babel/runtime": "^7.11.2",
+ "@babel/runtime": "^7.14.0",
"@emotion/babel-preset-css-prop": "^11.2.0"
},
"devDependencies": {
- "@babel/cli": "^7.12.1",
- "@babel/core": "^7.12.3",
+ "@babel/cli": "^7.14.3",
+ "@babel/core": "^7.14.3",
"babel-preset-gatsby-package": "^1.7.0-next.1",
"cross-env": "^7.0.3"
},
diff --git a/packages/gatsby-plugin-facebook-analytics/package.json b/packages/gatsby-plugin-facebook-analytics/package.json
index 674a5cf96d807..197c9ec85a646 100644
--- a/packages/gatsby-plugin-facebook-analytics/package.json
+++ b/packages/gatsby-plugin-facebook-analytics/package.json
@@ -7,11 +7,11 @@
"url": "https://github.com/gatsbyjs/gatsby/issues"
},
"dependencies": {
- "@babel/runtime": "^7.12.5"
+ "@babel/runtime": "^7.14.0"
},
"devDependencies": {
- "@babel/cli": "^7.12.1",
- "@babel/core": "^7.12.3",
+ "@babel/cli": "^7.14.3",
+ "@babel/core": "^7.14.3",
"babel-preset-gatsby-package": "^1.7.0-next.1",
"cross-env": "^7.0.3"
},
diff --git a/packages/gatsby-plugin-feed/package.json b/packages/gatsby-plugin-feed/package.json
index f1eff40736298..52c6a3c4ba635 100644
--- a/packages/gatsby-plugin-feed/package.json
+++ b/packages/gatsby-plugin-feed/package.json
@@ -7,7 +7,7 @@
"url": "https://github.com/gatsbyjs/gatsby/issues"
},
"dependencies": {
- "@babel/runtime": "^7.12.5",
+ "@babel/runtime": "^7.14.0",
"@hapi/joi": "^15.1.1",
"common-tags": "^1.8.0",
"fs-extra": "^9.1.0",
@@ -16,8 +16,8 @@
"rss": "^1.2.2"
},
"devDependencies": {
- "@babel/cli": "^7.12.1",
- "@babel/core": "^7.12.3",
+ "@babel/cli": "^7.14.3",
+ "@babel/core": "^7.14.3",
"babel-preset-gatsby-package": "^1.7.0-next.1",
"cross-env": "^7.0.3"
},
diff --git a/packages/gatsby-plugin-flow/package.json b/packages/gatsby-plugin-flow/package.json
index 2aff35a229d0a..ea69ffb1147dc 100644
--- a/packages/gatsby-plugin-flow/package.json
+++ b/packages/gatsby-plugin-flow/package.json
@@ -24,12 +24,12 @@
},
"license": "MIT",
"dependencies": {
- "@babel/preset-flow": "^7.12.1",
- "@babel/runtime": "^7.12.5"
+ "@babel/preset-flow": "^7.13.13",
+ "@babel/runtime": "^7.14.0"
},
"devDependencies": {
- "@babel/cli": "^7.12.1",
- "@babel/core": "^7.12.3",
+ "@babel/cli": "^7.14.3",
+ "@babel/core": "^7.14.3",
"babel-preset-gatsby-package": "^1.7.0-next.1",
"cross-env": "^7.0.3",
"gatsby-plugin-utils": "^1.7.0-next.1"
diff --git a/packages/gatsby-plugin-fullstory/package.json b/packages/gatsby-plugin-fullstory/package.json
index 3c32584e19845..224d5021bb5d1 100644
--- a/packages/gatsby-plugin-fullstory/package.json
+++ b/packages/gatsby-plugin-fullstory/package.json
@@ -24,11 +24,11 @@
},
"license": "MIT",
"dependencies": {
- "@babel/runtime": "^7.12.5"
+ "@babel/runtime": "^7.14.0"
},
"devDependencies": {
- "@babel/cli": "^7.12.1",
- "@babel/core": "^7.12.3",
+ "@babel/cli": "^7.14.3",
+ "@babel/core": "^7.14.3",
"babel-preset-gatsby-package": "^1.7.0-next.1",
"cross-env": "^7.0.3"
},
diff --git a/packages/gatsby-plugin-gatsby-cloud/package.json b/packages/gatsby-plugin-gatsby-cloud/package.json
index 84560c510df06..1896add75977e 100644
--- a/packages/gatsby-plugin-gatsby-cloud/package.json
+++ b/packages/gatsby-plugin-gatsby-cloud/package.json
@@ -7,7 +7,7 @@
"url": "https://github.com/gatsbyjs/gatsby/issues"
},
"dependencies": {
- "@babel/runtime": "^7.12.5",
+ "@babel/runtime": "^7.14.0",
"date-fns": "^2.21.1",
"fs-extra": "^8.1.0",
"kebab-hash": "^0.1.2",
@@ -15,8 +15,8 @@
"webpack-assets-manifest": "^5.0.1"
},
"devDependencies": {
- "@babel/cli": "^7.12.1",
- "@babel/core": "^7.12.3",
+ "@babel/cli": "^7.14.3",
+ "@babel/core": "^7.14.3",
"@testing-library/dom": "^7.30.3",
"@testing-library/jest-dom": "^5.11.10",
"@testing-library/react": "^11.2.6",
diff --git a/packages/gatsby-plugin-glamor/package.json b/packages/gatsby-plugin-glamor/package.json
index 4efea5c0991ca..71f0aef33af2b 100644
--- a/packages/gatsby-plugin-glamor/package.json
+++ b/packages/gatsby-plugin-glamor/package.json
@@ -7,11 +7,11 @@
"url": "https://github.com/gatsbyjs/gatsby/issues"
},
"dependencies": {
- "@babel/runtime": "^7.12.5"
+ "@babel/runtime": "^7.14.0"
},
"devDependencies": {
- "@babel/cli": "^7.12.1",
- "@babel/core": "^7.12.3",
+ "@babel/cli": "^7.14.3",
+ "@babel/core": "^7.14.3",
"babel-preset-gatsby-package": "^1.7.0-next.1",
"cross-env": "^7.0.3",
"gatsby-plugin-utils": "^1.7.0-next.1"
diff --git a/packages/gatsby-plugin-google-analytics/package.json b/packages/gatsby-plugin-google-analytics/package.json
index 20ee657547cde..8428feb99a8e7 100644
--- a/packages/gatsby-plugin-google-analytics/package.json
+++ b/packages/gatsby-plugin-google-analytics/package.json
@@ -7,12 +7,12 @@
"url": "https://github.com/gatsbyjs/gatsby/issues"
},
"dependencies": {
- "@babel/runtime": "^7.12.5",
+ "@babel/runtime": "^7.14.0",
"minimatch": "3.0.4"
},
"devDependencies": {
- "@babel/cli": "^7.12.1",
- "@babel/core": "^7.12.3",
+ "@babel/cli": "^7.14.3",
+ "@babel/core": "^7.14.3",
"@testing-library/react": "^9.5.0",
"babel-preset-gatsby-package": "^1.7.0-next.1",
"cross-env": "^7.0.3"
diff --git a/packages/gatsby-plugin-google-gtag/package.json b/packages/gatsby-plugin-google-gtag/package.json
index e5d1c650cbd5f..3121b33cc8c01 100644
--- a/packages/gatsby-plugin-google-gtag/package.json
+++ b/packages/gatsby-plugin-google-gtag/package.json
@@ -7,12 +7,12 @@
"url": "https://github.com/gatsbyjs/gatsby/issues"
},
"dependencies": {
- "@babel/runtime": "^7.12.5",
+ "@babel/runtime": "^7.14.0",
"minimatch": "^3.0.4"
},
"devDependencies": {
- "@babel/cli": "^7.12.1",
- "@babel/core": "^7.12.3",
+ "@babel/cli": "^7.14.3",
+ "@babel/core": "^7.14.3",
"babel-preset-gatsby-package": "^1.7.0-next.1",
"cross-env": "^7.0.3"
},
diff --git a/packages/gatsby-plugin-google-tagmanager/package.json b/packages/gatsby-plugin-google-tagmanager/package.json
index 505fc796898fe..903784eca4ba3 100644
--- a/packages/gatsby-plugin-google-tagmanager/package.json
+++ b/packages/gatsby-plugin-google-tagmanager/package.json
@@ -7,11 +7,11 @@
"url": "https://github.com/gatsbyjs/gatsby/issues"
},
"dependencies": {
- "@babel/runtime": "^7.12.5"
+ "@babel/runtime": "^7.14.0"
},
"devDependencies": {
- "@babel/cli": "^7.12.1",
- "@babel/core": "^7.12.3",
+ "@babel/cli": "^7.14.3",
+ "@babel/core": "^7.14.3",
"babel-preset-gatsby-package": "^1.7.0-next.1",
"cross-env": "^7.0.3",
"gatsby-plugin-utils": "^1.7.0-next.1"
diff --git a/packages/gatsby-plugin-graphql-config/package.json b/packages/gatsby-plugin-graphql-config/package.json
index 9b5c6e8a5ac55..8863a893971fd 100644
--- a/packages/gatsby-plugin-graphql-config/package.json
+++ b/packages/gatsby-plugin-graphql-config/package.json
@@ -10,8 +10,8 @@
"fs-extra": "^9.1.0"
},
"devDependencies": {
- "@babel/cli": "^7.12.1",
- "@babel/core": "^7.12.3",
+ "@babel/cli": "^7.14.3",
+ "@babel/core": "^7.14.3",
"babel-preset-gatsby-package": "^1.7.0-next.1",
"cross-env": "^7.0.3"
},
diff --git a/packages/gatsby-plugin-image/package.json b/packages/gatsby-plugin-image/package.json
index 3a20b99dc8ea3..ef0737e779e71 100644
--- a/packages/gatsby-plugin-image/package.json
+++ b/packages/gatsby-plugin-image/package.json
@@ -41,8 +41,8 @@
"types": "dist/src/index.d.ts",
"homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-image#readme",
"devDependencies": {
- "@babel/cli": "^7.12.1",
- "@babel/core": "^7.12.3",
+ "@babel/cli": "^7.14.3",
+ "@babel/core": "^7.14.3",
"@testing-library/react": "^11.2.6",
"@types/babel__core": "^7.1.12",
"@types/babel__traverse": "^7.11.1",
@@ -73,8 +73,8 @@
},
"dependencies": {
"@babel/code-frame": "^7.12.13",
- "@babel/parser": "^7.12.5",
- "@babel/traverse": "^7.12.5",
+ "@babel/parser": "^7.14.4",
+ "@babel/traverse": "^7.14.2",
"babel-jsx-utils": "^1.1.0",
"babel-plugin-remove-graphql-queries": "^3.7.0-next.1",
"camelcase": "^5.3.1",
diff --git a/packages/gatsby-plugin-jss/package.json b/packages/gatsby-plugin-jss/package.json
index ee30b1c12b2f8..ac45536a6b8dc 100644
--- a/packages/gatsby-plugin-jss/package.json
+++ b/packages/gatsby-plugin-jss/package.json
@@ -7,11 +7,11 @@
"url": "https://github.com/gatsbyjs/gatsby/issues"
},
"dependencies": {
- "@babel/runtime": "^7.12.5"
+ "@babel/runtime": "^7.14.0"
},
"devDependencies": {
- "@babel/cli": "^7.12.1",
- "@babel/core": "^7.12.3",
+ "@babel/cli": "^7.14.3",
+ "@babel/core": "^7.14.3",
"babel-preset-gatsby-package": "^1.7.0-next.1",
"cross-env": "^7.0.3"
},
diff --git a/packages/gatsby-plugin-layout/package.json b/packages/gatsby-plugin-layout/package.json
index f173ae9b7adba..6c84c1d92d66d 100644
--- a/packages/gatsby-plugin-layout/package.json
+++ b/packages/gatsby-plugin-layout/package.json
@@ -24,11 +24,11 @@
},
"license": "MIT",
"dependencies": {
- "@babel/runtime": "^7.12.5"
+ "@babel/runtime": "^7.14.0"
},
"devDependencies": {
- "@babel/cli": "^7.12.1",
- "@babel/core": "^7.12.3",
+ "@babel/cli": "^7.14.3",
+ "@babel/core": "^7.14.3",
"babel-preset-gatsby-package": "^1.7.0-next.1",
"cross-env": "^7.0.3"
},
diff --git a/packages/gatsby-plugin-less/package.json b/packages/gatsby-plugin-less/package.json
index ccdb81c0fd1ee..3e027098518ee 100644
--- a/packages/gatsby-plugin-less/package.json
+++ b/packages/gatsby-plugin-less/package.json
@@ -7,12 +7,12 @@
"url": "https://github.com/gatsbyjs/gatsby/issues"
},
"dependencies": {
- "@babel/runtime": "^7.12.5",
+ "@babel/runtime": "^7.14.0",
"less-loader": "^6.2.0"
},
"devDependencies": {
- "@babel/cli": "^7.12.1",
- "@babel/core": "^7.12.3",
+ "@babel/cli": "^7.14.3",
+ "@babel/core": "^7.14.3",
"babel-preset-gatsby-package": "^1.7.0-next.1",
"cross-env": "^7.0.3"
},
diff --git a/packages/gatsby-plugin-lodash/package.json b/packages/gatsby-plugin-lodash/package.json
index d4435be32e01e..d7c509dd217c9 100644
--- a/packages/gatsby-plugin-lodash/package.json
+++ b/packages/gatsby-plugin-lodash/package.json
@@ -7,13 +7,13 @@
"url": "https://github.com/gatsbyjs/gatsby/issues"
},
"dependencies": {
- "@babel/runtime": "^7.12.5",
+ "@babel/runtime": "^7.14.0",
"babel-plugin-lodash": "^3.3.4",
"lodash-webpack-plugin": "^0.11.6"
},
"devDependencies": {
- "@babel/cli": "^7.12.1",
- "@babel/core": "^7.12.3",
+ "@babel/cli": "^7.14.3",
+ "@babel/core": "^7.14.3",
"babel-preset-gatsby-package": "^1.7.0-next.1",
"cross-env": "^7.0.3"
},
diff --git a/packages/gatsby-plugin-manifest/package.json b/packages/gatsby-plugin-manifest/package.json
index 3dac181fbd73f..4c419c581d963 100644
--- a/packages/gatsby-plugin-manifest/package.json
+++ b/packages/gatsby-plugin-manifest/package.json
@@ -7,15 +7,15 @@
"url": "https://github.com/gatsbyjs/gatsby/issues"
},
"dependencies": {
- "@babel/runtime": "^7.12.5",
+ "@babel/runtime": "^7.14.0",
"gatsby-core-utils": "^2.7.0-next.1",
"gatsby-plugin-utils": "^1.7.0-next.1",
"semver": "^7.3.5",
"sharp": "^0.28.1"
},
"devDependencies": {
- "@babel/cli": "^7.12.1",
- "@babel/core": "^7.12.3",
+ "@babel/cli": "^7.14.3",
+ "@babel/core": "^7.14.3",
"babel-preset-gatsby-package": "^1.7.0-next.1",
"cross-env": "^7.0.3"
},
diff --git a/packages/gatsby-plugin-mdx/package.json b/packages/gatsby-plugin-mdx/package.json
index c24948cf2399f..b998c31ae1a83 100644
--- a/packages/gatsby-plugin-mdx/package.json
+++ b/packages/gatsby-plugin-mdx/package.json
@@ -20,13 +20,13 @@
"react-dom": "^16.9.0 || ^17.0.0"
},
"dependencies": {
- "@babel/core": "^7.12.3",
- "@babel/generator": "^7.12.5",
- "@babel/helper-plugin-utils": "^7.10.4",
- "@babel/plugin-proposal-object-rest-spread": "^7.12.1",
- "@babel/preset-env": "^7.12.1",
- "@babel/preset-react": "^7.12.5",
- "@babel/types": "^7.12.6",
+ "@babel/core": "^7.14.3",
+ "@babel/generator": "^7.14.3",
+ "@babel/helper-plugin-utils": "^7.13.0",
+ "@babel/plugin-proposal-object-rest-spread": "^7.14.4",
+ "@babel/preset-env": "^7.14.4",
+ "@babel/preset-react": "^7.13.13",
+ "@babel/types": "^7.14.4",
"camelcase-css": "^2.0.1",
"change-case": "^3.1.0",
"core-js": "^3.6.5",
diff --git a/packages/gatsby-plugin-netlify-cms/package.json b/packages/gatsby-plugin-netlify-cms/package.json
index ae04626973cea..4c5ff80436430 100644
--- a/packages/gatsby-plugin-netlify-cms/package.json
+++ b/packages/gatsby-plugin-netlify-cms/package.json
@@ -17,8 +17,8 @@
"webpack": "^5.23.0"
},
"devDependencies": {
- "@babel/cli": "^7.12.17",
- "@babel/core": "^7.12.17",
+ "@babel/cli": "^7.14.3",
+ "@babel/core": "^7.14.3",
"babel-preset-gatsby-package": "^1.7.0-next.1",
"cross-env": "^7.0.3",
"react": "^16.12.0",
diff --git a/packages/gatsby-plugin-netlify/package.json b/packages/gatsby-plugin-netlify/package.json
index d54b730df06d1..4e1425ee4ced7 100644
--- a/packages/gatsby-plugin-netlify/package.json
+++ b/packages/gatsby-plugin-netlify/package.json
@@ -13,15 +13,15 @@
}
],
"dependencies": {
- "@babel/runtime": "^7.12.5",
+ "@babel/runtime": "^7.14.0",
"fs-extra": "^8.1.0",
"kebab-hash": "^0.1.2",
"lodash": "^4.17.21",
"webpack-assets-manifest": "^5.0.5"
},
"devDependencies": {
- "@babel/cli": "^7.12.1",
- "@babel/core": "^7.12.3",
+ "@babel/cli": "^7.14.3",
+ "@babel/core": "^7.14.3",
"babel-preset-gatsby-package": "^1.7.0-next.1",
"cross-env": "^7.0.3",
"gatsby-plugin-utils": "^1.7.0-next.1"
diff --git a/packages/gatsby-plugin-nprogress/package.json b/packages/gatsby-plugin-nprogress/package.json
index 9f9198f2325da..c5b655c1a522a 100644
--- a/packages/gatsby-plugin-nprogress/package.json
+++ b/packages/gatsby-plugin-nprogress/package.json
@@ -7,12 +7,12 @@
"url": "https://github.com/gatsbyjs/gatsby/issues"
},
"dependencies": {
- "@babel/runtime": "^7.12.5",
+ "@babel/runtime": "^7.14.0",
"nprogress": "^0.2.0"
},
"devDependencies": {
- "@babel/cli": "^7.12.1",
- "@babel/core": "^7.12.3",
+ "@babel/cli": "^7.14.3",
+ "@babel/core": "^7.14.3",
"babel-preset-gatsby-package": "^1.7.0-next.1",
"cross-env": "^7.0.3"
},
diff --git a/packages/gatsby-plugin-offline/package.json b/packages/gatsby-plugin-offline/package.json
index c41b653c176f7..b0950197f2840 100644
--- a/packages/gatsby-plugin-offline/package.json
+++ b/packages/gatsby-plugin-offline/package.json
@@ -7,7 +7,7 @@
"url": "https://github.com/gatsbyjs/gatsby/issues"
},
"dependencies": {
- "@babel/runtime": "^7.12.5",
+ "@babel/runtime": "^7.14.0",
"cheerio": "^1.0.0-rc.9",
"gatsby-core-utils": "^2.7.0-next.1",
"glob": "^7.1.6",
@@ -16,8 +16,8 @@
"workbox-build": "^4.3.1"
},
"devDependencies": {
- "@babel/cli": "^7.12.1",
- "@babel/core": "^7.12.3",
+ "@babel/cli": "^7.14.3",
+ "@babel/core": "^7.14.3",
"babel-preset-gatsby-package": "^1.7.0-next.1",
"cpx": "^1.5.0",
"cross-env": "^7.0.3",
diff --git a/packages/gatsby-plugin-page-creator/package.json b/packages/gatsby-plugin-page-creator/package.json
index a13e199bb2661..f03ac6b061b29 100644
--- a/packages/gatsby-plugin-page-creator/package.json
+++ b/packages/gatsby-plugin-page-creator/package.json
@@ -24,7 +24,7 @@
},
"homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-page-creator#readme",
"dependencies": {
- "@babel/traverse": "^7.12.5",
+ "@babel/traverse": "^7.14.2",
"@sindresorhus/slugify": "^1.1.2",
"chokidar": "^3.5.1",
"fs-exists-cached": "^1.0.0",
@@ -35,8 +35,8 @@
"lodash": "^4.17.21"
},
"devDependencies": {
- "@babel/cli": "^7.12.1",
- "@babel/core": "^7.12.3",
+ "@babel/cli": "^7.14.3",
+ "@babel/core": "^7.14.3",
"babel-preset-gatsby-package": "^1.7.0-next.1",
"cross-env": "^7.0.3"
},
diff --git a/packages/gatsby-plugin-postcss/package.json b/packages/gatsby-plugin-postcss/package.json
index f9bb4aa612edf..d9f4bbbf3d07f 100644
--- a/packages/gatsby-plugin-postcss/package.json
+++ b/packages/gatsby-plugin-postcss/package.json
@@ -7,12 +7,12 @@
"url": "https://github.com/gatsbyjs/gatsby/issues"
},
"dependencies": {
- "@babel/runtime": "^7.12.5",
+ "@babel/runtime": "^7.14.0",
"postcss-loader": "^4.1.0"
},
"devDependencies": {
- "@babel/cli": "^7.12.1",
- "@babel/core": "^7.12.3",
+ "@babel/cli": "^7.14.3",
+ "@babel/core": "^7.14.3",
"babel-preset-gatsby-package": "^1.7.0-next.1",
"cross-env": "^7.0.3"
},
diff --git a/packages/gatsby-plugin-preact/package.json b/packages/gatsby-plugin-preact/package.json
index 37a6b98a7c182..fd0db0f3f4bce 100644
--- a/packages/gatsby-plugin-preact/package.json
+++ b/packages/gatsby-plugin-preact/package.json
@@ -12,8 +12,8 @@
"@prefresh/webpack": "^3.2.2"
},
"devDependencies": {
- "@babel/cli": "^7.12.1",
- "@babel/core": "^7.12.3",
+ "@babel/cli": "^7.14.3",
+ "@babel/core": "^7.14.3",
"@pmmmwh/react-refresh-webpack-plugin": "^0.4.3",
"babel-preset-gatsby-package": "^1.7.0-next.1",
"cross-env": "^7.0.3"
diff --git a/packages/gatsby-plugin-preload-fonts/package.json b/packages/gatsby-plugin-preload-fonts/package.json
index f14fb68b81373..81e9f912ffda0 100644
--- a/packages/gatsby-plugin-preload-fonts/package.json
+++ b/packages/gatsby-plugin-preload-fonts/package.json
@@ -20,8 +20,8 @@
"puppeteer": "^3.3.0"
},
"devDependencies": {
- "@babel/cli": "^7.12.1",
- "@babel/core": "^7.12.3",
+ "@babel/cli": "^7.14.3",
+ "@babel/core": "^7.14.3",
"babel-preset-gatsby-package": "^1.7.0-next.1",
"cross-env": "^7.0.3",
"del-cli": "^3.0.1"
diff --git a/packages/gatsby-plugin-react-css-modules/package.json b/packages/gatsby-plugin-react-css-modules/package.json
index 4cc7a8cbb8935..b6aecf93a6ba0 100644
--- a/packages/gatsby-plugin-react-css-modules/package.json
+++ b/packages/gatsby-plugin-react-css-modules/package.json
@@ -7,12 +7,12 @@
"url": "https://github.com/gatsbyjs/gatsby/issues"
},
"dependencies": {
- "@babel/runtime": "^7.12.5",
+ "@babel/runtime": "^7.14.0",
"babel-plugin-react-css-modules": "^3.4.2"
},
"devDependencies": {
- "@babel/cli": "^7.12.1",
- "@babel/core": "^7.12.3",
+ "@babel/cli": "^7.14.3",
+ "@babel/core": "^7.14.3",
"babel-preset-gatsby-package": "^1.7.0-next.1",
"cross-env": "^7.0.3"
},
diff --git a/packages/gatsby-plugin-react-helmet/package.json b/packages/gatsby-plugin-react-helmet/package.json
index fc46753165392..0d6e2e5b908e8 100644
--- a/packages/gatsby-plugin-react-helmet/package.json
+++ b/packages/gatsby-plugin-react-helmet/package.json
@@ -7,11 +7,11 @@
"url": "https://github.com/gatsbyjs/gatsby/issues"
},
"dependencies": {
- "@babel/runtime": "^7.12.5"
+ "@babel/runtime": "^7.14.0"
},
"devDependencies": {
- "@babel/cli": "^7.12.1",
- "@babel/core": "^7.12.3",
+ "@babel/cli": "^7.14.3",
+ "@babel/core": "^7.14.3",
"babel-preset-gatsby-package": "^1.7.0-next.1",
"cross-env": "^7.0.3"
},
diff --git a/packages/gatsby-plugin-remove-trailing-slashes/package.json b/packages/gatsby-plugin-remove-trailing-slashes/package.json
index 530e50dfc4ed8..489bcc7e1962a 100644
--- a/packages/gatsby-plugin-remove-trailing-slashes/package.json
+++ b/packages/gatsby-plugin-remove-trailing-slashes/package.json
@@ -7,11 +7,11 @@
"url": "https://github.com/gatsbyjs/gatsby/issues"
},
"dependencies": {
- "@babel/runtime": "^7.12.5"
+ "@babel/runtime": "^7.14.0"
},
"devDependencies": {
- "@babel/cli": "^7.12.1",
- "@babel/core": "^7.12.3",
+ "@babel/cli": "^7.14.3",
+ "@babel/core": "^7.14.3",
"babel-preset-gatsby-package": "^1.7.0-next.1",
"cross-env": "^7.0.3"
},
diff --git a/packages/gatsby-plugin-sass/package.json b/packages/gatsby-plugin-sass/package.json
index 00f4917d8a628..0e15b3de97962 100644
--- a/packages/gatsby-plugin-sass/package.json
+++ b/packages/gatsby-plugin-sass/package.json
@@ -7,13 +7,13 @@
"url": "https://github.com/gatsbyjs/gatsby/issues"
},
"dependencies": {
- "@babel/runtime": "^7.12.5",
+ "@babel/runtime": "^7.14.0",
"resolve-url-loader": "^3.1.2",
"sass-loader": "^10.1.1"
},
"devDependencies": {
- "@babel/cli": "^7.12.1",
- "@babel/core": "^7.12.3",
+ "@babel/cli": "^7.14.3",
+ "@babel/core": "^7.14.3",
"autoprefixer": "^10.2.5",
"babel-preset-gatsby-package": "^1.7.0-next.1",
"cross-env": "^7.0.3",
diff --git a/packages/gatsby-plugin-sharp/package.json b/packages/gatsby-plugin-sharp/package.json
index 3f346f7611ad6..857fe8c0f6a0d 100644
--- a/packages/gatsby-plugin-sharp/package.json
+++ b/packages/gatsby-plugin-sharp/package.json
@@ -7,7 +7,7 @@
"url": "https://github.com/gatsbyjs/gatsby/issues"
},
"dependencies": {
- "@babel/runtime": "^7.12.5",
+ "@babel/runtime": "^7.14.0",
"async": "^3.2.0",
"bluebird": "^3.7.2",
"filenamify": "^4.2.0",
@@ -29,8 +29,8 @@
"uuid": "3.4.0"
},
"devDependencies": {
- "@babel/cli": "^7.12.1",
- "@babel/core": "^7.12.3",
+ "@babel/cli": "^7.14.3",
+ "@babel/core": "^7.14.3",
"@types/sharp": "^0.27.1",
"babel-preset-gatsby-package": "^1.7.0-next.1",
"cross-env": "^7.0.3",
diff --git a/packages/gatsby-plugin-sitemap/package.json b/packages/gatsby-plugin-sitemap/package.json
index e7981cf30e57b..79755d2d38016 100644
--- a/packages/gatsby-plugin-sitemap/package.json
+++ b/packages/gatsby-plugin-sitemap/package.json
@@ -10,14 +10,14 @@
"url": "https://github.com/gatsbyjs/gatsby/issues"
},
"dependencies": {
- "@babel/runtime": "^7.12.5",
+ "@babel/runtime": "^7.14.0",
"common-tags": "^1.8.0",
"minimatch": "^3.0.4",
"sitemap": "^7.0.0"
},
"devDependencies": {
- "@babel/cli": "^7.12.1",
- "@babel/core": "^7.12.3",
+ "@babel/cli": "^7.14.3",
+ "@babel/core": "^7.14.3",
"babel-preset-gatsby-package": "^1.7.0-next.1",
"cross-env": "^7.0.3",
"gatsby-plugin-utils": "^1.7.0-next.1"
diff --git a/packages/gatsby-plugin-styled-components/package.json b/packages/gatsby-plugin-styled-components/package.json
index addba2f27a1f7..4db20260c54b7 100644
--- a/packages/gatsby-plugin-styled-components/package.json
+++ b/packages/gatsby-plugin-styled-components/package.json
@@ -7,11 +7,11 @@
"url": "https://github.com/gatsbyjs/gatsby/issues"
},
"dependencies": {
- "@babel/runtime": "^7.12.5"
+ "@babel/runtime": "^7.14.0"
},
"devDependencies": {
- "@babel/cli": "^7.12.1",
- "@babel/core": "^7.12.3",
+ "@babel/cli": "^7.14.3",
+ "@babel/core": "^7.14.3",
"babel-preset-gatsby-package": "^1.7.0-next.1",
"cross-env": "^7.0.3"
},
diff --git a/packages/gatsby-plugin-styled-jsx/package.json b/packages/gatsby-plugin-styled-jsx/package.json
index f65425fcdb9ea..d0e588996e900 100644
--- a/packages/gatsby-plugin-styled-jsx/package.json
+++ b/packages/gatsby-plugin-styled-jsx/package.json
@@ -7,11 +7,11 @@
"url": "https://github.com/gatsbyjs/gatsby/issues"
},
"dependencies": {
- "@babel/runtime": "^7.12.5"
+ "@babel/runtime": "^7.14.0"
},
"devDependencies": {
- "@babel/cli": "^7.12.1",
- "@babel/core": "^7.12.3",
+ "@babel/cli": "^7.14.3",
+ "@babel/core": "^7.14.3",
"babel-preset-gatsby-package": "^1.7.0-next.1",
"cross-env": "^7.0.3"
},
diff --git a/packages/gatsby-plugin-styletron/package.json b/packages/gatsby-plugin-styletron/package.json
index 583e9b5daa0dd..e6598eb710995 100644
--- a/packages/gatsby-plugin-styletron/package.json
+++ b/packages/gatsby-plugin-styletron/package.json
@@ -7,8 +7,8 @@
"url": "https://github.com/gatsbyjs/gatsby/issues"
},
"devDependencies": {
- "@babel/cli": "^7.12.1",
- "@babel/core": "^7.12.3",
+ "@babel/cli": "^7.14.3",
+ "@babel/core": "^7.14.3",
"babel-preset-gatsby-package": "^1.7.0-next.1",
"cross-env": "^7.0.3",
"styletron-engine-atomic": "^1.4.7",
diff --git a/packages/gatsby-plugin-stylus/package.json b/packages/gatsby-plugin-stylus/package.json
index f7e6dd83053da..c91c13bc5eece 100644
--- a/packages/gatsby-plugin-stylus/package.json
+++ b/packages/gatsby-plugin-stylus/package.json
@@ -7,13 +7,13 @@
"url": "https://github.com/gatsbyjs/gatsby/issues"
},
"dependencies": {
- "@babel/runtime": "^7.12.5",
+ "@babel/runtime": "^7.14.0",
"stylus": "^0.54.8",
"stylus-loader": "^3.0.2"
},
"devDependencies": {
- "@babel/cli": "^7.12.1",
- "@babel/core": "^7.12.3",
+ "@babel/cli": "^7.14.3",
+ "@babel/core": "^7.14.3",
"babel-preset-gatsby-package": "^1.7.0-next.1",
"cross-env": "^7.0.3"
},
diff --git a/packages/gatsby-plugin-subfont/package.json b/packages/gatsby-plugin-subfont/package.json
index ee97a184a9fd8..4fbff6838a193 100644
--- a/packages/gatsby-plugin-subfont/package.json
+++ b/packages/gatsby-plugin-subfont/package.json
@@ -27,8 +27,8 @@
"subfont": "^5.3.0"
},
"devDependencies": {
- "@babel/cli": "^7.12.1",
- "@babel/core": "^7.12.3",
+ "@babel/cli": "^7.14.3",
+ "@babel/core": "^7.14.3",
"babel-preset-gatsby-package": "^1.7.0-next.1",
"cross-env": "^7.0.3"
},
diff --git a/packages/gatsby-plugin-twitter/package.json b/packages/gatsby-plugin-twitter/package.json
index 6051827af6c23..d557ffd43bcf4 100644
--- a/packages/gatsby-plugin-twitter/package.json
+++ b/packages/gatsby-plugin-twitter/package.json
@@ -7,11 +7,11 @@
"url": "https://github.com/gatsbyjs/gatsby/issues"
},
"dependencies": {
- "@babel/runtime": "^7.12.5"
+ "@babel/runtime": "^7.14.0"
},
"devDependencies": {
- "@babel/cli": "^7.12.1",
- "@babel/core": "^7.12.3",
+ "@babel/cli": "^7.14.3",
+ "@babel/core": "^7.14.3",
"babel-preset-gatsby-package": "^1.7.0-next.1",
"cross-env": "^7.0.3",
"gatsby-plugin-utils": "^1.7.0-next.1"
diff --git a/packages/gatsby-plugin-typescript/package.json b/packages/gatsby-plugin-typescript/package.json
index bd7f1ac137534..1460320c3a853 100644
--- a/packages/gatsby-plugin-typescript/package.json
+++ b/packages/gatsby-plugin-typescript/package.json
@@ -10,17 +10,17 @@
"Noah Lange <[email protected]>"
],
"dependencies": {
- "@babel/core": "^7.12.3",
- "@babel/plugin-proposal-nullish-coalescing-operator": "^7.12.1",
- "@babel/plugin-proposal-numeric-separator": "^7.12.5",
- "@babel/plugin-proposal-optional-chaining": "^7.12.1",
- "@babel/preset-typescript": "^7.12.1",
- "@babel/runtime": "^7.12.5",
+ "@babel/core": "^7.14.3",
+ "@babel/plugin-proposal-nullish-coalescing-operator": "^7.14.2",
+ "@babel/plugin-proposal-numeric-separator": "^7.14.2",
+ "@babel/plugin-proposal-optional-chaining": "^7.14.2",
+ "@babel/preset-typescript": "^7.13.0",
+ "@babel/runtime": "^7.14.0",
"babel-plugin-remove-graphql-queries": "^3.7.0-next.1"
},
"devDependencies": {
- "@babel/cli": "^7.12.1",
- "@babel/core": "^7.12.3",
+ "@babel/cli": "^7.14.3",
+ "@babel/core": "^7.14.3",
"babel-preset-gatsby-package": "^1.7.0-next.1",
"cross-env": "^7.0.3"
},
diff --git a/packages/gatsby-plugin-typography/package.json b/packages/gatsby-plugin-typography/package.json
index db941488315de..1ccc59641ab92 100644
--- a/packages/gatsby-plugin-typography/package.json
+++ b/packages/gatsby-plugin-typography/package.json
@@ -7,11 +7,11 @@
"url": "https://github.com/gatsbyjs/gatsby/issues"
},
"dependencies": {
- "@babel/runtime": "^7.12.5"
+ "@babel/runtime": "^7.14.0"
},
"devDependencies": {
- "@babel/cli": "^7.12.1",
- "@babel/core": "^7.12.3",
+ "@babel/cli": "^7.14.3",
+ "@babel/core": "^7.14.3",
"babel-preset-gatsby-package": "^1.7.0-next.1",
"cross-env": "^7.0.3",
"react": "^16.12.0",
diff --git a/packages/gatsby-plugin-utils/package.json b/packages/gatsby-plugin-utils/package.json
index 4567169e44eb5..732c0d7088e04 100644
--- a/packages/gatsby-plugin-utils/package.json
+++ b/packages/gatsby-plugin-utils/package.json
@@ -24,8 +24,8 @@
"joi": "^17.2.1"
},
"devDependencies": {
- "@babel/cli": "^7.12.1",
- "@babel/core": "^7.12.3",
+ "@babel/cli": "^7.14.3",
+ "@babel/core": "^7.14.3",
"babel-preset-gatsby-package": "^1.7.0-next.1",
"cross-env": "^7.0.3",
"rimraf": "^3.0.2",
diff --git a/packages/gatsby-react-router-scroll/package.json b/packages/gatsby-react-router-scroll/package.json
index 4106fe4df3bfe..8eacd887afb43 100644
--- a/packages/gatsby-react-router-scroll/package.json
+++ b/packages/gatsby-react-router-scroll/package.json
@@ -7,11 +7,11 @@
"url": "https://github.com/gatsbyjs/gatsby/issues"
},
"dependencies": {
- "@babel/runtime": "^7.12.5"
+ "@babel/runtime": "^7.14.0"
},
"devDependencies": {
- "@babel/cli": "^7.12.1",
- "@babel/core": "^7.12.3",
+ "@babel/cli": "^7.14.3",
+ "@babel/core": "^7.14.3",
"babel-plugin-dev-expression": "^0.2.2",
"babel-preset-gatsby-package": "^1.7.0-next.1",
"cross-env": "^7.0.3",
diff --git a/packages/gatsby-recipes/package.json b/packages/gatsby-recipes/package.json
index c60dea74a3085..c55eef6af56e8 100644
--- a/packages/gatsby-recipes/package.json
+++ b/packages/gatsby-recipes/package.json
@@ -7,14 +7,14 @@
"url": "https://github.com/gatsbyjs/gatsby/issues"
},
"dependencies": {
- "@babel/core": "^7.12.3",
- "@babel/generator": "^7.12.5",
- "@babel/helper-plugin-utils": "^7.10.4",
- "@babel/plugin-proposal-optional-chaining": "^7.12.1",
- "@babel/plugin-transform-react-jsx": "^7.12.5",
- "@babel/standalone": "^7.12.6",
- "@babel/template": "^7.10.4",
- "@babel/types": "^7.12.6",
+ "@babel/core": "^7.14.3",
+ "@babel/generator": "^7.14.3",
+ "@babel/helper-plugin-utils": "^7.13.0",
+ "@babel/plugin-proposal-optional-chaining": "^7.14.2",
+ "@babel/plugin-transform-react-jsx": "^7.14.3",
+ "@babel/standalone": "^7.14.4",
+ "@babel/template": "^7.12.13",
+ "@babel/types": "^7.14.4",
"@graphql-tools/schema": "^7.0.0",
"@graphql-tools/utils": "^7.0.2",
"@hapi/hoek": "8.x.x",
@@ -67,8 +67,8 @@
"yoga-layout-prebuilt": "^1.9.6"
},
"devDependencies": {
- "@babel/cli": "^7.12.1",
- "@babel/plugin-transform-runtime": "^7.12.1",
+ "@babel/cli": "^7.14.3",
+ "@babel/plugin-transform-runtime": "^7.14.3",
"@mdx-js/mdx": "^2.0.0-next.4",
"@mdx-js/react": "^2.0.0-next.4",
"@mdx-js/runtime": "^2.0.0-next.4",
diff --git a/packages/gatsby-remark-autolink-headers/package.json b/packages/gatsby-remark-autolink-headers/package.json
index d13b6612a0a3b..65530919f64df 100644
--- a/packages/gatsby-remark-autolink-headers/package.json
+++ b/packages/gatsby-remark-autolink-headers/package.json
@@ -7,15 +7,15 @@
"url": "https://github.com/gatsbyjs/gatsby/issues"
},
"dependencies": {
- "@babel/runtime": "^7.12.5",
+ "@babel/runtime": "^7.14.0",
"github-slugger": "^1.3.0",
"lodash": "^4.17.21",
"mdast-util-to-string": "^2.0.0",
"unist-util-visit": "^2.0.3"
},
"devDependencies": {
- "@babel/cli": "^7.12.1",
- "@babel/core": "^7.12.3",
+ "@babel/cli": "^7.14.3",
+ "@babel/core": "^7.14.3",
"babel-preset-gatsby-package": "^1.7.0-next.1",
"cross-env": "^7.0.3",
"gatsby-plugin-utils": "^1.7.0-next.1"
diff --git a/packages/gatsby-remark-code-repls/package.json b/packages/gatsby-remark-code-repls/package.json
index 655c8f201a950..96c6303a7608b 100644
--- a/packages/gatsby-remark-code-repls/package.json
+++ b/packages/gatsby-remark-code-repls/package.json
@@ -7,7 +7,7 @@
"url": "https://github.com/gatsbyjs/gatsby/issues"
},
"dependencies": {
- "@babel/runtime": "^7.12.5",
+ "@babel/runtime": "^7.14.0",
"lz-string": "^1.4.4",
"normalize-path": "^3.0.0",
"npm-package-arg": "^8.1.1",
@@ -16,8 +16,8 @@
"urijs": "^1.19.2"
},
"devDependencies": {
- "@babel/cli": "^7.12.1",
- "@babel/core": "^7.12.3",
+ "@babel/cli": "^7.14.3",
+ "@babel/core": "^7.14.3",
"babel-preset-gatsby-package": "^1.7.0-next.1",
"cross-env": "^7.0.3"
},
diff --git a/packages/gatsby-remark-copy-linked-files/package.json b/packages/gatsby-remark-copy-linked-files/package.json
index df90520c843df..c99aea6fbe825 100644
--- a/packages/gatsby-remark-copy-linked-files/package.json
+++ b/packages/gatsby-remark-copy-linked-files/package.json
@@ -7,7 +7,7 @@
"url": "https://github.com/gatsbyjs/gatsby/issues"
},
"dependencies": {
- "@babel/runtime": "^7.12.5",
+ "@babel/runtime": "^7.14.0",
"cheerio": "^1.0.0-rc.9",
"fs-extra": "^8.1.0",
"is-relative-url": "^3.0.0",
@@ -17,8 +17,8 @@
"unist-util-visit": "^2.0.3"
},
"devDependencies": {
- "@babel/cli": "^7.12.1",
- "@babel/core": "^7.12.3",
+ "@babel/cli": "^7.14.3",
+ "@babel/core": "^7.14.3",
"babel-preset-gatsby-package": "^1.7.0-next.1",
"cross-env": "^7.0.3",
"remark": "^13.0.0",
diff --git a/packages/gatsby-remark-custom-blocks/package.json b/packages/gatsby-remark-custom-blocks/package.json
index 1bb76e2d7293e..30726fbb9a9a0 100644
--- a/packages/gatsby-remark-custom-blocks/package.json
+++ b/packages/gatsby-remark-custom-blocks/package.json
@@ -7,12 +7,12 @@
"url": "https://github.com/gatsbyjs/gatsby/issues"
},
"dependencies": {
- "@babel/runtime": "^7.12.5",
+ "@babel/runtime": "^7.14.0",
"remark-custom-blocks": "^2.5.0"
},
"devDependencies": {
- "@babel/cli": "^7.12.1",
- "@babel/core": "^7.12.3",
+ "@babel/cli": "^7.14.3",
+ "@babel/core": "^7.14.3",
"babel-preset-gatsby-package": "^1.7.0-next.1",
"cross-env": "^7.0.3",
"rimraf": "^3.0.2",
diff --git a/packages/gatsby-remark-embed-snippet/package.json b/packages/gatsby-remark-embed-snippet/package.json
index 9d05e63c7a168..0afa880ce213c 100644
--- a/packages/gatsby-remark-embed-snippet/package.json
+++ b/packages/gatsby-remark-embed-snippet/package.json
@@ -7,14 +7,14 @@
"url": "https://github.com/gatsbyjs/gatsby/issues"
},
"dependencies": {
- "@babel/runtime": "^7.12.5",
+ "@babel/runtime": "^7.14.0",
"normalize-path": "^3.0.0",
"parse-numeric-range": "^1.2.0",
"unist-util-map": "^2.0.1"
},
"devDependencies": {
- "@babel/cli": "^7.12.1",
- "@babel/core": "^7.12.3",
+ "@babel/cli": "^7.14.3",
+ "@babel/core": "^7.14.3",
"babel-preset-gatsby-package": "^1.7.0-next.1",
"cross-env": "^7.0.3"
},
diff --git a/packages/gatsby-remark-graphviz/package.json b/packages/gatsby-remark-graphviz/package.json
index ab4f9508b0041..c75526b29da14 100644
--- a/packages/gatsby-remark-graphviz/package.json
+++ b/packages/gatsby-remark-graphviz/package.json
@@ -7,14 +7,14 @@
"url": "https://github.com/gatsbyjs/gatsby/issues"
},
"dependencies": {
- "@babel/runtime": "^7.12.5",
+ "@babel/runtime": "^7.14.0",
"cheerio": "^1.0.0-rc.9",
"unist-util-visit": "^2.0.3",
"viz.js": "^2.1.2"
},
"devDependencies": {
- "@babel/cli": "^7.12.1",
- "@babel/core": "^7.12.3",
+ "@babel/cli": "^7.14.3",
+ "@babel/core": "^7.14.3",
"babel-preset-gatsby-package": "^1.7.0-next.1",
"cross-env": "^7.0.3",
"hast-util-to-html": "^7.1.2",
diff --git a/packages/gatsby-remark-images-contentful/package.json b/packages/gatsby-remark-images-contentful/package.json
index 0fcacf88e2a33..bcd73fbf726fd 100644
--- a/packages/gatsby-remark-images-contentful/package.json
+++ b/packages/gatsby-remark-images-contentful/package.json
@@ -15,7 +15,7 @@
},
"homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-remark-images-contentful#readme",
"dependencies": {
- "@babel/runtime": "^7.12.5",
+ "@babel/runtime": "^7.14.0",
"axios": "^0.21.1",
"chalk": "^4.1.0",
"cheerio": "^1.0.0-rc.9",
@@ -26,8 +26,8 @@
"unist-util-select": "^3.0.4"
},
"devDependencies": {
- "@babel/cli": "^7.12.1",
- "@babel/core": "^7.12.3",
+ "@babel/cli": "^7.14.3",
+ "@babel/core": "^7.14.3",
"babel-preset-gatsby-package": "^1.7.0-next.1",
"cross-env": "^7.0.3"
},
diff --git a/packages/gatsby-remark-images/package.json b/packages/gatsby-remark-images/package.json
index 91794bca09b2f..0329ee06c2ece 100644
--- a/packages/gatsby-remark-images/package.json
+++ b/packages/gatsby-remark-images/package.json
@@ -7,7 +7,7 @@
"url": "https://github.com/gatsbyjs/gatsby/issues"
},
"dependencies": {
- "@babel/runtime": "^7.12.5",
+ "@babel/runtime": "^7.14.0",
"chalk": "^4.1.0",
"cheerio": "^1.0.0-rc.9",
"gatsby-core-utils": "^2.7.0-next.1",
@@ -20,8 +20,8 @@
"unist-util-visit-parents": "^3.1.1"
},
"devDependencies": {
- "@babel/cli": "^7.12.1",
- "@babel/core": "^7.12.3",
+ "@babel/cli": "^7.14.3",
+ "@babel/core": "^7.14.3",
"babel-preset-gatsby-package": "^1.7.0-next.1",
"cross-env": "^7.0.3",
"gatsby-plugin-utils": "^1.7.0-next.1",
diff --git a/packages/gatsby-remark-katex/package.json b/packages/gatsby-remark-katex/package.json
index 8462188a0474a..1682439d2fad9 100644
--- a/packages/gatsby-remark-katex/package.json
+++ b/packages/gatsby-remark-katex/package.json
@@ -7,13 +7,13 @@
"url": "https://github.com/gatsbyjs/gatsby/issues"
},
"dependencies": {
- "@babel/runtime": "^7.12.5",
+ "@babel/runtime": "^7.14.0",
"remark-math": "^4.0.0",
"unist-util-visit": "^2.0.3"
},
"devDependencies": {
- "@babel/cli": "^7.12.1",
- "@babel/core": "^7.12.3",
+ "@babel/cli": "^7.14.3",
+ "@babel/core": "^7.14.3",
"babel-preset-gatsby-package": "^1.7.0-next.1",
"cross-env": "^7.0.3",
"katex": "^0.13.0"
diff --git a/packages/gatsby-remark-prismjs/package.json b/packages/gatsby-remark-prismjs/package.json
index dccf5a26ec3c4..13187cf484810 100644
--- a/packages/gatsby-remark-prismjs/package.json
+++ b/packages/gatsby-remark-prismjs/package.json
@@ -7,13 +7,13 @@
"url": "https://github.com/gatsbyjs/gatsby/issues"
},
"dependencies": {
- "@babel/runtime": "^7.12.5",
+ "@babel/runtime": "^7.14.0",
"parse-numeric-range": "^1.2.0",
"unist-util-visit": "^2.0.3"
},
"devDependencies": {
- "@babel/cli": "^7.12.1",
- "@babel/core": "^7.12.3",
+ "@babel/cli": "^7.14.3",
+ "@babel/core": "^7.14.3",
"babel-preset-gatsby-package": "^1.7.0-next.1",
"cheerio": "^1.0.0-rc.9",
"cross-env": "^7.0.3",
diff --git a/packages/gatsby-remark-responsive-iframe/package.json b/packages/gatsby-remark-responsive-iframe/package.json
index 5679d69cbf098..5a6e5f5be2ba6 100644
--- a/packages/gatsby-remark-responsive-iframe/package.json
+++ b/packages/gatsby-remark-responsive-iframe/package.json
@@ -7,15 +7,15 @@
"url": "https://github.com/gatsbyjs/gatsby/issues"
},
"dependencies": {
- "@babel/runtime": "^7.12.5",
+ "@babel/runtime": "^7.14.0",
"cheerio": "^1.0.0-rc.9",
"common-tags": "^1.8.0",
"lodash": "^4.17.21",
"unist-util-visit": "^2.0.3"
},
"devDependencies": {
- "@babel/cli": "^7.12.1",
- "@babel/core": "^7.12.3",
+ "@babel/cli": "^7.14.3",
+ "@babel/core": "^7.14.3",
"babel-preset-gatsby-package": "^1.7.0-next.1",
"cross-env": "^7.0.3",
"remark": "^13.0.0",
diff --git a/packages/gatsby-remark-smartypants/package.json b/packages/gatsby-remark-smartypants/package.json
index f3c4b7b6643a0..a7c77fe74b9bc 100644
--- a/packages/gatsby-remark-smartypants/package.json
+++ b/packages/gatsby-remark-smartypants/package.json
@@ -7,14 +7,14 @@
"url": "https://github.com/gatsbyjs/gatsby/issues"
},
"dependencies": {
- "@babel/runtime": "^7.12.5",
+ "@babel/runtime": "^7.14.0",
"retext": "^7.0.1",
"retext-smartypants": "^4.0.0",
"unist-util-visit": "^2.0.3"
},
"devDependencies": {
- "@babel/cli": "^7.12.1",
- "@babel/core": "^7.12.3",
+ "@babel/cli": "^7.14.3",
+ "@babel/core": "^7.14.3",
"babel-preset-gatsby-package": "^1.7.0-next.1",
"cross-env": "^7.0.3"
},
diff --git a/packages/gatsby-source-contentful/package.json b/packages/gatsby-source-contentful/package.json
index 539c3e65e9e4d..86485e5c2969f 100644
--- a/packages/gatsby-source-contentful/package.json
+++ b/packages/gatsby-source-contentful/package.json
@@ -7,7 +7,7 @@
"url": "https://github.com/gatsbyjs/gatsby/issues"
},
"dependencies": {
- "@babel/runtime": "^7.12.5",
+ "@babel/runtime": "^7.14.0",
"@contentful/rich-text-react-renderer": "^14.1.2",
"@contentful/rich-text-types": "^14.1.2",
"@hapi/joi": "^15.1.1",
@@ -29,8 +29,8 @@
"retry-axios": "^2.4.0"
},
"devDependencies": {
- "@babel/cli": "^7.12.1",
- "@babel/core": "^7.12.3",
+ "@babel/cli": "^7.14.3",
+ "@babel/core": "^7.14.3",
"babel-preset-gatsby-package": "^1.7.0-next.1",
"cross-env": "^7.0.3",
"nock": "^13.0.6"
diff --git a/packages/gatsby-source-drupal/package.json b/packages/gatsby-source-drupal/package.json
index a70b75c714cba..a82808cd47ebc 100644
--- a/packages/gatsby-source-drupal/package.json
+++ b/packages/gatsby-source-drupal/package.json
@@ -7,7 +7,7 @@
"url": "https://github.com/gatsbyjs/gatsby/issues"
},
"dependencies": {
- "@babel/runtime": "^7.12.5",
+ "@babel/runtime": "^7.14.0",
"axios": "^0.21.1",
"bluebird": "^3.7.2",
"body-parser": "^1.19.0",
@@ -17,8 +17,8 @@
"url-join": "^4.0.1"
},
"devDependencies": {
- "@babel/cli": "^7.12.1",
- "@babel/core": "^7.12.3",
+ "@babel/cli": "^7.14.3",
+ "@babel/core": "^7.14.3",
"babel-preset-gatsby-package": "^1.7.0-next.1",
"cross-env": "^7.0.3"
},
diff --git a/packages/gatsby-source-faker/package.json b/packages/gatsby-source-faker/package.json
index aaa85380fcac2..dd86ca18edae9 100644
--- a/packages/gatsby-source-faker/package.json
+++ b/packages/gatsby-source-faker/package.json
@@ -7,12 +7,12 @@
"url": "https://github.com/gatsbyjs/gatsby/issues"
},
"dependencies": {
- "@babel/runtime": "^7.12.5",
+ "@babel/runtime": "^7.14.0",
"faker": "^4.1.0"
},
"devDependencies": {
- "@babel/cli": "^7.12.1",
- "@babel/core": "^7.12.3",
+ "@babel/cli": "^7.14.3",
+ "@babel/core": "^7.14.3",
"babel-preset-gatsby-package": "^1.7.0-next.1",
"cross-env": "^7.0.3"
},
diff --git a/packages/gatsby-source-filesystem/package.json b/packages/gatsby-source-filesystem/package.json
index e965163eac52c..cab7d4684ee11 100644
--- a/packages/gatsby-source-filesystem/package.json
+++ b/packages/gatsby-source-filesystem/package.json
@@ -7,7 +7,7 @@
"url": "https://github.com/gatsbyjs/gatsby/issues"
},
"dependencies": {
- "@babel/runtime": "^7.12.5",
+ "@babel/runtime": "^7.14.0",
"better-queue": "^3.8.10",
"chokidar": "^3.4.3",
"file-type": "^16.0.0",
@@ -22,8 +22,8 @@
"xstate": "^4.14.0"
},
"devDependencies": {
- "@babel/cli": "^7.12.1",
- "@babel/core": "^7.12.3",
+ "@babel/cli": "^7.14.3",
+ "@babel/core": "^7.14.3",
"babel-preset-gatsby-package": "^1.7.0-next.1",
"cross-env": "^7.0.3",
"msw": "^0.25.0"
diff --git a/packages/gatsby-source-graphql/package.json b/packages/gatsby-source-graphql/package.json
index 87a830567918d..4c02fb7702b99 100644
--- a/packages/gatsby-source-graphql/package.json
+++ b/packages/gatsby-source-graphql/package.json
@@ -7,7 +7,7 @@
"url": "https://github.com/gatsbyjs/gatsby/issues"
},
"dependencies": {
- "@babel/runtime": "^7.12.5",
+ "@babel/runtime": "^7.14.0",
"@graphql-tools/links": "^7.1.0",
"@graphql-tools/utils": "^7.7.3",
"@graphql-tools/wrap": "^7.0.5",
@@ -19,8 +19,8 @@
"uuid": "3.4.0"
},
"devDependencies": {
- "@babel/cli": "^7.12.1",
- "@babel/core": "^7.12.3",
+ "@babel/cli": "^7.14.3",
+ "@babel/core": "^7.14.3",
"babel-preset-gatsby-package": "^1.7.0-next.1",
"cross-env": "^7.0.3"
},
diff --git a/packages/gatsby-source-hacker-news/package.json b/packages/gatsby-source-hacker-news/package.json
index 3355427b418dc..adf6373508cf4 100644
--- a/packages/gatsby-source-hacker-news/package.json
+++ b/packages/gatsby-source-hacker-news/package.json
@@ -7,13 +7,13 @@
"url": "https://github.com/gatsbyjs/gatsby/issues"
},
"dependencies": {
- "@babel/runtime": "^7.12.5",
+ "@babel/runtime": "^7.14.0",
"axios": "^0.21.1",
"lodash": "^4.17.21"
},
"devDependencies": {
- "@babel/cli": "^7.12.1",
- "@babel/core": "^7.12.3",
+ "@babel/cli": "^7.14.3",
+ "@babel/core": "^7.14.3",
"babel-preset-gatsby-package": "^1.7.0-next.1",
"cross-env": "^7.0.3"
},
diff --git a/packages/gatsby-source-lever/package.json b/packages/gatsby-source-lever/package.json
index 78b00c8fb3860..8cbf80e99a6a2 100644
--- a/packages/gatsby-source-lever/package.json
+++ b/packages/gatsby-source-lever/package.json
@@ -8,7 +8,7 @@
},
"bundledDependencies": [],
"dependencies": {
- "@babel/runtime": "^7.12.5",
+ "@babel/runtime": "^7.14.0",
"axios": "^0.21.1",
"bluebird": "^3.7.2",
"deep-map": "^1.5.0",
@@ -18,8 +18,8 @@
},
"deprecated": false,
"devDependencies": {
- "@babel/cli": "^7.12.1",
- "@babel/core": "^7.12.3",
+ "@babel/cli": "^7.14.3",
+ "@babel/core": "^7.14.3",
"babel-preset-gatsby-package": "^1.7.0-next.1",
"cross-env": "^7.0.3"
},
diff --git a/packages/gatsby-source-medium/package.json b/packages/gatsby-source-medium/package.json
index 41a12844ac951..453c2859eeb22 100644
--- a/packages/gatsby-source-medium/package.json
+++ b/packages/gatsby-source-medium/package.json
@@ -7,12 +7,12 @@
"url": "https://github.com/gatsbyjs/gatsby/issues"
},
"dependencies": {
- "@babel/runtime": "^7.12.5",
+ "@babel/runtime": "^7.14.0",
"axios": "^0.21.1"
},
"devDependencies": {
- "@babel/cli": "^7.12.1",
- "@babel/core": "^7.12.3",
+ "@babel/cli": "^7.14.3",
+ "@babel/core": "^7.14.3",
"babel-preset-gatsby-package": "^1.7.0-next.1",
"cross-env": "^7.0.3"
},
diff --git a/packages/gatsby-source-mongodb/package.json b/packages/gatsby-source-mongodb/package.json
index c201558f73b02..15cd545b23246 100644
--- a/packages/gatsby-source-mongodb/package.json
+++ b/packages/gatsby-source-mongodb/package.json
@@ -10,15 +10,15 @@
"url": "https://github.com/gatsbyjs/gatsby/issues"
},
"dependencies": {
- "@babel/runtime": "^7.12.5",
+ "@babel/runtime": "^7.14.0",
"lodash.camelcase": "^4.3.0",
"lodash.isstring": "^4.0.1",
"mongodb": "^3.6.3",
"query-string": "^6.13.7"
},
"devDependencies": {
- "@babel/cli": "^7.12.1",
- "@babel/core": "^7.12.3",
+ "@babel/cli": "^7.14.3",
+ "@babel/core": "^7.14.3",
"babel-preset-gatsby-package": "^1.7.0-next.1",
"cross-env": "^7.0.3"
},
diff --git a/packages/gatsby-source-npm-package-search/package.json b/packages/gatsby-source-npm-package-search/package.json
index 9858527bb75f7..899ab7f4b5a84 100644
--- a/packages/gatsby-source-npm-package-search/package.json
+++ b/packages/gatsby-source-npm-package-search/package.json
@@ -10,13 +10,13 @@
},
"homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-source-npm-package-search#readme",
"dependencies": {
- "@babel/runtime": "^7.12.5",
+ "@babel/runtime": "^7.14.0",
"algoliasearch": "^4.8.4",
"got": "^8.3.2"
},
"devDependencies": {
- "@babel/cli": "^7.12.1",
- "@babel/core": "^7.12.3",
+ "@babel/cli": "^7.14.3",
+ "@babel/core": "^7.14.3",
"babel-preset-gatsby-package": "^1.7.0-next.1",
"cross-env": "^7.0.3"
},
diff --git a/packages/gatsby-source-shopify/package.json b/packages/gatsby-source-shopify/package.json
index 17d2bf67c40bd..5668c0231f308 100644
--- a/packages/gatsby-source-shopify/package.json
+++ b/packages/gatsby-source-shopify/package.json
@@ -28,8 +28,8 @@
"gatsby": "^3.0.0-next.0"
},
"devDependencies": {
- "@babel/cli": "^7.12.1",
- "@babel/core": "^7.12.3",
+ "@babel/cli": "^7.14.3",
+ "@babel/core": "^7.14.3",
"cross-env": "^7.0.3"
},
"dependencies": {
diff --git a/packages/gatsby-source-wikipedia/package.json b/packages/gatsby-source-wikipedia/package.json
index a91f6aa611ccc..c095b33314067 100644
--- a/packages/gatsby-source-wikipedia/package.json
+++ b/packages/gatsby-source-wikipedia/package.json
@@ -34,8 +34,8 @@
"query-string": "^6.13.3"
},
"devDependencies": {
- "@babel/cli": "^7.12.1",
- "@babel/core": "^7.12.3",
+ "@babel/cli": "^7.14.3",
+ "@babel/core": "^7.14.3",
"babel-preset-gatsby-package": "^1.7.0-next.1",
"cross-env": "^7.0.3"
},
diff --git a/packages/gatsby-source-wordpress/package.json b/packages/gatsby-source-wordpress/package.json
index a7e9f55300150..7224cfd48382c 100644
--- a/packages/gatsby-source-wordpress/package.json
+++ b/packages/gatsby-source-wordpress/package.json
@@ -7,7 +7,7 @@
"url": "https://github.com/gatsbyjs/gatsby/issues"
},
"dependencies": {
- "@babel/runtime": "^7.6.3",
+ "@babel/runtime": "^7.14.0",
"@rematch/core": "^1.3.0",
"@rematch/immer": "^1.2.0",
"async-retry": "^1.3.1",
@@ -44,10 +44,10 @@
"valid-url": "^1.0.9"
},
"devDependencies": {
- "@babel/cli": "^7.6.4",
- "@babel/core": "^7.6.4",
- "@babel/plugin-proposal-class-properties": "^7.10.1",
- "@babel/plugin-proposal-private-methods": "^7.10.1",
+ "@babel/cli": "^7.14.3",
+ "@babel/core": "^7.14.3",
+ "@babel/plugin-proposal-class-properties": "^7.13.0",
+ "@babel/plugin-proposal-private-methods": "^7.13.0",
"@types/cache-manager": "^2.10.3",
"@types/ink": "^2.0.3",
"@types/semver": "^7.3.4",
diff --git a/packages/gatsby-telemetry/package.json b/packages/gatsby-telemetry/package.json
index 4bf08505048d2..e650a8571ba8f 100644
--- a/packages/gatsby-telemetry/package.json
+++ b/packages/gatsby-telemetry/package.json
@@ -7,8 +7,8 @@
"url": "https://github.com/gatsbyjs/gatsby/issues"
},
"dependencies": {
- "@babel/code-frame": "^7.10.4",
- "@babel/runtime": "^7.12.5",
+ "@babel/code-frame": "^7.12.13",
+ "@babel/runtime": "^7.14.0",
"@turist/fetch": "^7.1.7",
"@turist/time": "^0.0.1",
"async-retry-ng": "^2.0.1",
@@ -23,8 +23,8 @@
"uuid": "3.4.0"
},
"devDependencies": {
- "@babel/cli": "^7.12.1",
- "@babel/core": "^7.12.3",
+ "@babel/cli": "^7.14.3",
+ "@babel/core": "^7.14.3",
"babel-jest": "^24.9.0",
"babel-preset-gatsby-package": "^1.7.0-next.1",
"cross-env": "^7.0.3",
diff --git a/packages/gatsby-transformer-asciidoc/package.json b/packages/gatsby-transformer-asciidoc/package.json
index c429ca4fb4370..1ff961bd1f34c 100644
--- a/packages/gatsby-transformer-asciidoc/package.json
+++ b/packages/gatsby-transformer-asciidoc/package.json
@@ -7,12 +7,12 @@
"url": "https://github.com/gatsbyjs/gatsby/issues"
},
"dependencies": {
- "@babel/runtime": "^7.12.5",
+ "@babel/runtime": "^7.14.0",
"asciidoctor": "^2.2.1"
},
"devDependencies": {
- "@babel/cli": "^7.12.1",
- "@babel/core": "^7.12.3",
+ "@babel/cli": "^7.14.3",
+ "@babel/core": "^7.14.3",
"babel-preset-gatsby-package": "^1.7.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 408ab677f83a0..3de98bcaa54df 100644
--- a/packages/gatsby-transformer-csv/package.json
+++ b/packages/gatsby-transformer-csv/package.json
@@ -7,12 +7,12 @@
"url": "https://github.com/gatsbyjs/gatsby/issues"
},
"dependencies": {
- "@babel/runtime": "^7.12.5",
+ "@babel/runtime": "^7.14.0",
"csvtojson": "^2.0.10"
},
"devDependencies": {
- "@babel/cli": "^7.12.1",
- "@babel/core": "^7.12.3",
+ "@babel/cli": "^7.14.3",
+ "@babel/core": "^7.14.3",
"babel-preset-gatsby-package": "^1.7.0-next.1",
"cross-env": "^7.0.3",
"json2csv": "^5.0.6"
diff --git a/packages/gatsby-transformer-documentationjs/package.json b/packages/gatsby-transformer-documentationjs/package.json
index 932484283b427..5244e52d02a40 100644
--- a/packages/gatsby-transformer-documentationjs/package.json
+++ b/packages/gatsby-transformer-documentationjs/package.json
@@ -7,13 +7,13 @@
"url": "https://github.com/gatsbyjs/gatsby/issues"
},
"dependencies": {
- "@babel/runtime": "^7.12.5",
+ "@babel/runtime": "^7.14.0",
"documentation": "^13.1.0",
"prismjs": "^1.23.0"
},
"devDependencies": {
- "@babel/cli": "^7.12.1",
- "@babel/core": "^7.12.3",
+ "@babel/cli": "^7.14.3",
+ "@babel/core": "^7.14.3",
"babel-preset-gatsby-package": "^1.7.0-next.1",
"cross-env": "^7.0.3"
},
diff --git a/packages/gatsby-transformer-excel/package.json b/packages/gatsby-transformer-excel/package.json
index 1375573c4f60f..ab12df6813e46 100644
--- a/packages/gatsby-transformer-excel/package.json
+++ b/packages/gatsby-transformer-excel/package.json
@@ -7,12 +7,12 @@
"url": "https://github.com/gatsbyjs/gatsby/issues"
},
"dependencies": {
- "@babel/runtime": "^7.12.5",
+ "@babel/runtime": "^7.14.0",
"xlsx": "^0.16.9"
},
"devDependencies": {
- "@babel/cli": "^7.12.1",
- "@babel/core": "^7.12.3",
+ "@babel/cli": "^7.14.3",
+ "@babel/core": "^7.14.3",
"babel-preset-gatsby-package": "^1.7.0-next.1",
"cross-env": "^7.0.3"
},
diff --git a/packages/gatsby-transformer-hjson/package.json b/packages/gatsby-transformer-hjson/package.json
index e333ba385833f..e61e68f7b2bf0 100644
--- a/packages/gatsby-transformer-hjson/package.json
+++ b/packages/gatsby-transformer-hjson/package.json
@@ -7,13 +7,13 @@
"url": "https://github.com/gatsbyjs/gatsby/issues"
},
"dependencies": {
- "@babel/runtime": "^7.12.5",
+ "@babel/runtime": "^7.14.0",
"bluebird": "^3.7.2",
"hjson": "^3.2.2"
},
"devDependencies": {
- "@babel/cli": "^7.12.1",
- "@babel/core": "^7.12.3",
+ "@babel/cli": "^7.14.3",
+ "@babel/core": "^7.14.3",
"babel-preset-gatsby-package": "^1.7.0-next.1",
"cross-env": "^7.0.3"
},
diff --git a/packages/gatsby-transformer-javascript-frontmatter/package.json b/packages/gatsby-transformer-javascript-frontmatter/package.json
index c61a8d7cfd142..4b09ca0e824e6 100644
--- a/packages/gatsby-transformer-javascript-frontmatter/package.json
+++ b/packages/gatsby-transformer-javascript-frontmatter/package.json
@@ -5,14 +5,14 @@
"author": "Jacob Bolda <[email protected]>",
"homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-transformer-javascript-frontmatter#readme",
"dependencies": {
- "@babel/parser": "^7.12.5",
- "@babel/runtime": "^7.12.5",
- "@babel/traverse": "^7.12.5",
+ "@babel/parser": "^7.14.4",
+ "@babel/runtime": "^7.14.0",
+ "@babel/traverse": "^7.14.2",
"bluebird": "^3.7.2"
},
"devDependencies": {
- "@babel/cli": "^7.12.1",
- "@babel/core": "^7.12.3",
+ "@babel/cli": "^7.14.3",
+ "@babel/core": "^7.14.3",
"babel-preset-gatsby-package": "^1.7.0-next.1",
"cross-env": "^7.0.3"
},
diff --git a/packages/gatsby-transformer-javascript-static-exports/package.json b/packages/gatsby-transformer-javascript-static-exports/package.json
index 61c91b5dee518..9e3f5a87da23d 100644
--- a/packages/gatsby-transformer-javascript-static-exports/package.json
+++ b/packages/gatsby-transformer-javascript-static-exports/package.json
@@ -7,14 +7,14 @@
"url": "https://github.com/gatsbyjs/gatsby/issues"
},
"dependencies": {
- "@babel/parser": "^7.12.5",
- "@babel/runtime": "^7.12.5",
- "@babel/traverse": "^7.12.5",
+ "@babel/parser": "^7.14.4",
+ "@babel/runtime": "^7.14.0",
+ "@babel/traverse": "^7.14.2",
"bluebird": "^3.7.2"
},
"devDependencies": {
- "@babel/cli": "^7.12.1",
- "@babel/core": "^7.12.3",
+ "@babel/cli": "^7.14.3",
+ "@babel/core": "^7.14.3",
"babel-preset-gatsby-package": "^1.7.0-next.1",
"cross-env": "^7.0.3"
},
diff --git a/packages/gatsby-transformer-json/package.json b/packages/gatsby-transformer-json/package.json
index 589ffcba027fd..5688b8cdc85be 100644
--- a/packages/gatsby-transformer-json/package.json
+++ b/packages/gatsby-transformer-json/package.json
@@ -7,12 +7,12 @@
"url": "https://github.com/gatsbyjs/gatsby/issues"
},
"dependencies": {
- "@babel/runtime": "^7.12.5",
+ "@babel/runtime": "^7.14.0",
"bluebird": "^3.7.2"
},
"devDependencies": {
- "@babel/cli": "^7.12.1",
- "@babel/core": "^7.12.3",
+ "@babel/cli": "^7.14.3",
+ "@babel/core": "^7.14.3",
"babel-preset-gatsby-package": "^1.7.0-next.1",
"cross-env": "^7.0.3"
},
diff --git a/packages/gatsby-transformer-pdf/package.json b/packages/gatsby-transformer-pdf/package.json
index 175b39d243eec..67eed7a69e3a5 100644
--- a/packages/gatsby-transformer-pdf/package.json
+++ b/packages/gatsby-transformer-pdf/package.json
@@ -7,13 +7,13 @@
"url": "https://github.com/gatsbyjs/gatsby/issues"
},
"dependencies": {
- "@babel/runtime": "^7.12.5",
+ "@babel/runtime": "^7.14.0",
"bluebird": "^3.7.2",
"pdf2json": "^1.2.0"
},
"devDependencies": {
- "@babel/cli": "^7.12.1",
- "@babel/core": "^7.12.3",
+ "@babel/cli": "^7.14.3",
+ "@babel/core": "^7.14.3",
"babel-preset-gatsby-package": "^1.7.0-next.1",
"cross-env": "^7.0.3"
},
diff --git a/packages/gatsby-transformer-react-docgen/package.json b/packages/gatsby-transformer-react-docgen/package.json
index c052088205f9c..e7a32f8c150c3 100644
--- a/packages/gatsby-transformer-react-docgen/package.json
+++ b/packages/gatsby-transformer-react-docgen/package.json
@@ -7,16 +7,16 @@
"url": "https://github.com/gatsbyjs/gatsby/issues"
},
"dependencies": {
- "@babel/code-frame": "^7.10.4",
- "@babel/runtime": "^7.12.5",
- "@babel/types": "^7.12.6",
+ "@babel/code-frame": "^7.12.13",
+ "@babel/runtime": "^7.14.0",
+ "@babel/types": "^7.14.4",
"ast-types": "^0.14.2",
"common-tags": "^1.8.0",
"react-docgen": "^5.3.1"
},
"devDependencies": {
- "@babel/cli": "^7.12.1",
- "@babel/core": "^7.12.3",
+ "@babel/cli": "^7.14.3",
+ "@babel/core": "^7.14.3",
"babel-preset-gatsby-package": "^1.7.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 ce8cc69264447..0da300d41d9b0 100644
--- a/packages/gatsby-transformer-remark/package.json
+++ b/packages/gatsby-transformer-remark/package.json
@@ -7,7 +7,7 @@
"url": "https://github.com/gatsbyjs/gatsby/issues"
},
"dependencies": {
- "@babel/runtime": "^7.12.5",
+ "@babel/runtime": "^7.14.0",
"gatsby-core-utils": "^2.7.0-next.1",
"gray-matter": "^4.0.2",
"hast-util-raw": "^6.0.2",
@@ -31,8 +31,8 @@
"unist-util-visit": "^2.0.3"
},
"devDependencies": {
- "@babel/cli": "^7.12.1",
- "@babel/core": "^7.12.3",
+ "@babel/cli": "^7.14.3",
+ "@babel/core": "^7.14.3",
"babel-preset-gatsby-package": "^1.7.0-next.1",
"cross-env": "^7.0.3",
"gatsby-plugin-utils": "^1.7.0-next.1"
diff --git a/packages/gatsby-transformer-screenshot/package.json b/packages/gatsby-transformer-screenshot/package.json
index f91b372a502a4..e9368d9fa2bac 100644
--- a/packages/gatsby-transformer-screenshot/package.json
+++ b/packages/gatsby-transformer-screenshot/package.json
@@ -11,8 +11,8 @@
"better-queue": "^3.8.10"
},
"devDependencies": {
- "@babel/cli": "^7.12.1",
- "@babel/core": "^7.12.3",
+ "@babel/cli": "^7.14.3",
+ "@babel/core": "^7.14.3",
"babel-preset-gatsby-package": "^1.7.0-next.1",
"cross-env": "^7.0.3"
},
diff --git a/packages/gatsby-transformer-sharp/package.json b/packages/gatsby-transformer-sharp/package.json
index 2806bf2b6552a..6e3cd34d8c03d 100644
--- a/packages/gatsby-transformer-sharp/package.json
+++ b/packages/gatsby-transformer-sharp/package.json
@@ -7,7 +7,7 @@
"url": "https://github.com/gatsbyjs/gatsby/issues"
},
"dependencies": {
- "@babel/runtime": "^7.12.5",
+ "@babel/runtime": "^7.14.0",
"bluebird": "^3.7.2",
"common-tags": "^1.8.0",
"fs-extra": "^9.1.0",
@@ -17,8 +17,8 @@
"sharp": "^0.28.0"
},
"devDependencies": {
- "@babel/cli": "^7.12.1",
- "@babel/core": "^7.12.3",
+ "@babel/cli": "^7.14.3",
+ "@babel/core": "^7.14.3",
"@types/sharp": "^0.27.1",
"babel-preset-gatsby-package": "^1.7.0-next.1",
"cross-env": "^7.0.3"
diff --git a/packages/gatsby-transformer-sqip/package.json b/packages/gatsby-transformer-sqip/package.json
index 86411c0eaa580..e979b0105a69f 100644
--- a/packages/gatsby-transformer-sqip/package.json
+++ b/packages/gatsby-transformer-sqip/package.json
@@ -7,7 +7,7 @@
"url": "https://github.com/gatsbyjs/gatsby/issues"
},
"dependencies": {
- "@babel/runtime": "^7.12.5",
+ "@babel/runtime": "^7.14.0",
"fs-extra": "^8.1.0",
"gatsby-plugin-sharp": "^3.7.0-next.1",
"md5-file": "^5.0.0",
@@ -16,8 +16,8 @@
"sqip": "^0.3.3"
},
"devDependencies": {
- "@babel/cli": "^7.12.1",
- "@babel/core": "^7.12.3",
+ "@babel/cli": "^7.14.3",
+ "@babel/core": "^7.14.3",
"babel-preset-gatsby-package": "^1.7.0-next.1",
"cross-env": "^7.0.3",
"debug": "^3.2.7"
diff --git a/packages/gatsby-transformer-toml/package.json b/packages/gatsby-transformer-toml/package.json
index 3e7421d43961f..4e4170eef1ce7 100644
--- a/packages/gatsby-transformer-toml/package.json
+++ b/packages/gatsby-transformer-toml/package.json
@@ -7,13 +7,13 @@
"url": "https://github.com/gatsbyjs/gatsby/issues"
},
"dependencies": {
- "@babel/runtime": "^7.12.5",
+ "@babel/runtime": "^7.14.0",
"lodash": "^4.17.21",
"toml": "^2.3.6"
},
"devDependencies": {
- "@babel/cli": "^7.12.1",
- "@babel/core": "^7.12.3",
+ "@babel/cli": "^7.14.3",
+ "@babel/core": "^7.14.3",
"babel-preset-gatsby-package": "^1.7.0-next.1",
"cross-env": "^7.0.3"
},
diff --git a/packages/gatsby-transformer-xml/package.json b/packages/gatsby-transformer-xml/package.json
index d71e9f84477ec..d327ded9fdf01 100644
--- a/packages/gatsby-transformer-xml/package.json
+++ b/packages/gatsby-transformer-xml/package.json
@@ -7,14 +7,14 @@
"url": "https://github.com/gatsbyjs/gatsby/issues"
},
"dependencies": {
- "@babel/runtime": "^7.12.5",
+ "@babel/runtime": "^7.14.0",
"bluebird": "^3.7.2",
"lodash": "^4.17.21",
"xml-parser": "^1.2.1"
},
"devDependencies": {
- "@babel/cli": "^7.12.1",
- "@babel/core": "^7.12.3",
+ "@babel/cli": "^7.14.3",
+ "@babel/core": "^7.14.3",
"babel-preset-gatsby-package": "^1.7.0-next.1",
"cross-env": "^7.0.3"
},
diff --git a/packages/gatsby-transformer-yaml/package.json b/packages/gatsby-transformer-yaml/package.json
index 8da0c44f23b3e..538acfc5fdb1b 100644
--- a/packages/gatsby-transformer-yaml/package.json
+++ b/packages/gatsby-transformer-yaml/package.json
@@ -7,14 +7,14 @@
"url": "https://github.com/gatsbyjs/gatsby/issues"
},
"dependencies": {
- "@babel/runtime": "^7.12.5",
+ "@babel/runtime": "^7.14.0",
"js-yaml": "^3.14.1",
"lodash": "^4.17.21",
"unist-util-select": "^1.5.0"
},
"devDependencies": {
- "@babel/cli": "^7.12.1",
- "@babel/core": "^7.12.3",
+ "@babel/cli": "^7.14.3",
+ "@babel/core": "^7.14.3",
"babel-preset-gatsby-package": "^1.7.0-next.1",
"cross-env": "^7.0.3"
},
diff --git a/packages/gatsby/package.json b/packages/gatsby/package.json
index ec8d49978901c..00b9ad93c5359 100644
--- a/packages/gatsby/package.json
+++ b/packages/gatsby/package.json
@@ -10,13 +10,13 @@
"url": "https://github.com/gatsbyjs/gatsby/issues"
},
"dependencies": {
- "@babel/code-frame": "^7.10.4",
- "@babel/core": "^7.12.3",
- "@babel/eslint-parser": "^7.13.4",
- "@babel/parser": "^7.12.5",
- "@babel/runtime": "^7.12.5",
- "@babel/traverse": "^7.12.5",
- "@babel/types": "^7.12.6",
+ "@babel/code-frame": "^7.12.13",
+ "@babel/core": "^7.14.3",
+ "@babel/eslint-parser": "^7.14.4",
+ "@babel/parser": "^7.14.4",
+ "@babel/runtime": "^7.14.0",
+ "@babel/traverse": "^7.14.2",
+ "@babel/types": "^7.14.4",
"@gatsbyjs/reach-router": "^1.3.6",
"@gatsbyjs/webpack-hot-middleware": "^2.25.2",
"@mikaelkristiansson/domready": "^1.0.10",
@@ -165,8 +165,8 @@
"yaml-loader": "^0.6.0"
},
"devDependencies": {
- "@babel/cli": "^7.12.1",
- "@babel/runtime": "^7.12.5",
+ "@babel/cli": "^7.14.3",
+ "@babel/runtime": "^7.14.0",
"@types/eslint": "^7.2.6",
"@types/micromatch": "^4.0.1",
"@types/normalize-path": "^3.0.0",
diff --git a/yarn.lock b/yarn.lock
index 73f6915f010f6..a5ceebf3f331e 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -152,16 +152,15 @@
resolved "https://registry.yarnpkg.com/@ascorbic/worker-threads-shim/-/worker-threads-shim-1.0.0.tgz#d003ac1f9aacc9d95d8a0e453bce256d7fa99923"
integrity sha512-CEvYpC2w2t7tDWgloPA8ETra79cZzi2IdeM0bluTTkvWcnEdLWYStM12ymq2VRE3OMR8OtmKD4l026dUel1d+w==
-"@babel/cli@^7.12.1", "@babel/cli@^7.12.17", "@babel/cli@^7.6.4":
- version "7.12.17"
- resolved "https://registry.yarnpkg.com/@babel/cli/-/cli-7.12.17.tgz#2db13a0f2ba9c05bed78b8aad9669b473dd7f267"
- integrity sha512-R9dQbDshWvAp3x5XjANsfthqka+ToEdDUonKgtALNgzQxgiUg2Xa4ZwKIcE84wnoiobIJFXF+TCM4ylJvUuW5w==
+"@babel/cli@^7.14.3":
+ version "7.14.3"
+ resolved "https://registry.yarnpkg.com/@babel/cli/-/cli-7.14.3.tgz#9f6c8aee12e8660df879610f19a8010958b26a6f"
+ integrity sha512-zU4JLvwk32ay1lhhyGfqiRUSPoltVDjhYkA3aQq8+Yby9z30s/EsFw1EPOHxWG9YZo2pAGfgdRNeHZQAYU5m9A==
dependencies:
commander "^4.0.1"
convert-source-map "^1.1.0"
fs-readdir-recursive "^1.1.0"
glob "^7.0.0"
- lodash "^4.17.19"
make-dir "^2.1.0"
slash "^2.0.0"
source-map "^0.5.0"
@@ -190,10 +189,10 @@
dependencies:
"@babel/highlight" "^7.12.13"
-"@babel/compat-data@^7.11.0", "@babel/compat-data@^7.13.0", "@babel/compat-data@^7.13.8":
- version "7.13.8"
- resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.13.8.tgz#5b783b9808f15cef71547f1b691f34f8ff6003a6"
- integrity sha512-EaI33z19T4qN3xLXsGf48M2cDqa6ei9tPZlfLdb2HC+e/cFtREiRd8hdSqDbwdLB0/+gLwqJmCYASH0z2bUdog==
+"@babel/compat-data@^7.13.11", "@babel/compat-data@^7.14.4":
+ version "7.14.4"
+ resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.14.4.tgz#45720fe0cecf3fd42019e1d12cc3d27fadc98d58"
+ integrity sha512-i2wXrWQNkH6JplJQGn3Rd2I4Pij8GdHkXwHMxm+zV5YG/Jci+bCNrWZEWC4o+umiDkRrRs4dVzH3X4GP7vyjQQ==
"@babel/[email protected]":
version "7.10.5"
@@ -261,35 +260,34 @@
semver "^5.4.1"
source-map "^0.5.0"
-"@babel/core@^7.1.0", "@babel/core@^7.1.6", "@babel/core@^7.12.10", "@babel/core@^7.12.17", "@babel/core@^7.12.3", "@babel/core@^7.13.8", "@babel/core@^7.6.4", "@babel/core@^7.7.5":
- version "7.13.8"
- resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.13.8.tgz#c191d9c5871788a591d69ea1dc03e5843a3680fb"
- integrity sha512-oYapIySGw1zGhEFRd6lzWNLWFX2s5dA/jm+Pw/+59ZdXtjyIuwlXbrId22Md0rgZVop+aVoqow2riXhBLNyuQg==
+"@babel/core@^7.1.0", "@babel/core@^7.1.6", "@babel/core@^7.12.10", "@babel/core@^7.13.8", "@babel/core@^7.14.3", "@babel/core@^7.7.5":
+ version "7.14.3"
+ resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.14.3.tgz#5395e30405f0776067fbd9cf0884f15bfb770a38"
+ integrity sha512-jB5AmTKOCSJIZ72sd78ECEhuPiDMKlQdDI/4QRI6lzYATx5SSogS1oQA2AoPecRCknm30gHi2l+QVvNUu3wZAg==
dependencies:
"@babel/code-frame" "^7.12.13"
- "@babel/generator" "^7.13.0"
- "@babel/helper-compilation-targets" "^7.13.8"
- "@babel/helper-module-transforms" "^7.13.0"
- "@babel/helpers" "^7.13.0"
- "@babel/parser" "^7.13.4"
+ "@babel/generator" "^7.14.3"
+ "@babel/helper-compilation-targets" "^7.13.16"
+ "@babel/helper-module-transforms" "^7.14.2"
+ "@babel/helpers" "^7.14.0"
+ "@babel/parser" "^7.14.3"
"@babel/template" "^7.12.13"
- "@babel/traverse" "^7.13.0"
- "@babel/types" "^7.13.0"
+ "@babel/traverse" "^7.14.2"
+ "@babel/types" "^7.14.2"
convert-source-map "^1.7.0"
debug "^4.1.0"
gensync "^1.0.0-beta.2"
json5 "^2.1.2"
- lodash "^4.17.19"
semver "^6.3.0"
source-map "^0.5.0"
-"@babel/eslint-parser@^7.13.4", "@babel/eslint-parser@^7.13.8":
- version "7.13.8"
- resolved "https://registry.yarnpkg.com/@babel/eslint-parser/-/eslint-parser-7.13.8.tgz#6f2bde6b0690fcc0598b4869fc7c8e8b55b17687"
- integrity sha512-XewKkiyukrGzMeqToXJQk6hjg2veI9SNQElGzAoAjKxYCLbgcVX4KA2WhoyqMon9N4RMdCZhNTJNOBcp9spsiw==
+"@babel/eslint-parser@^7.13.8", "@babel/eslint-parser@^7.14.4":
+ version "7.14.4"
+ resolved "https://registry.yarnpkg.com/@babel/eslint-parser/-/eslint-parser-7.14.4.tgz#73e6996163a2ad48f315a8466b55f57c330cd15c"
+ integrity sha512-7CTckFLPBGEfCKqlrnJq2PIId3UmJ5hW+D4dsv/VvuA5DapgqyZFCttq+8oeRIJMZQizFIe5gel3xm2SbrqlYA==
dependencies:
- eslint-scope "5.1.0"
- eslint-visitor-keys "^1.3.0"
+ eslint-scope "^5.1.0"
+ eslint-visitor-keys "^2.1.0"
semver "^6.3.0"
"@babel/eslint-plugin@^7.13.0":
@@ -308,12 +306,12 @@
jsesc "^2.5.1"
source-map "^0.5.0"
-"@babel/generator@^7.0.0", "@babel/generator@^7.10.5", "@babel/generator@^7.12.1", "@babel/generator@^7.12.5", "@babel/generator@^7.13.0", "@babel/generator@^7.14.0":
- version "7.14.1"
- resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.14.1.tgz#1f99331babd65700183628da186f36f63d615c93"
- integrity sha512-TMGhsXMXCP/O1WtQmZjpEYDhCYC9vFhayWZPJSZCGkPJgUqX0rF0wwtrYvnzVxIjcF80tkUertXVk5cwqi5cAQ==
+"@babel/generator@^7.0.0", "@babel/generator@^7.10.5", "@babel/generator@^7.12.1", "@babel/generator@^7.12.5", "@babel/generator@^7.14.2", "@babel/generator@^7.14.3":
+ version "7.14.3"
+ resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.14.3.tgz#0c2652d91f7bddab7cccc6ba8157e4f40dcedb91"
+ integrity sha512-bn0S6flG/j0xtQdz3hsjJ624h3W0r3llttBMfyHX3YrZ/KtLYr15bjA0FXkgW7FpvrDuTuElXeVjiKlYRpnOFA==
dependencies:
- "@babel/types" "^7.14.1"
+ "@babel/types" "^7.14.2"
jsesc "^2.5.1"
source-map "^0.5.0"
@@ -332,25 +330,26 @@
"@babel/helper-explode-assignable-expression" "^7.12.13"
"@babel/types" "^7.12.13"
-"@babel/helper-compilation-targets@^7.10.4", "@babel/helper-compilation-targets@^7.13.0", "@babel/helper-compilation-targets@^7.13.8":
- version "7.13.8"
- resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.13.8.tgz#02bdb22783439afb11b2f009814bdd88384bd468"
- integrity sha512-pBljUGC1y3xKLn1nrx2eAhurLMA8OqBtBP/JwG4U8skN7kf8/aqwwxpV1N6T0e7r6+7uNitIa/fUxPFagSXp3A==
+"@babel/helper-compilation-targets@^7.13.0", "@babel/helper-compilation-targets@^7.13.16", "@babel/helper-compilation-targets@^7.14.4":
+ version "7.14.4"
+ resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.14.4.tgz#33ebd0ffc34248051ee2089350a929ab02f2a516"
+ integrity sha512-JgdzOYZ/qGaKTVkn5qEDV/SXAh8KcyUVkCoSWGN8T3bwrgd6m+/dJa2kVGi6RJYJgEYPBdZ84BZp9dUjNWkBaA==
dependencies:
- "@babel/compat-data" "^7.13.8"
+ "@babel/compat-data" "^7.14.4"
"@babel/helper-validator-option" "^7.12.17"
- browserslist "^4.14.5"
+ browserslist "^4.16.6"
semver "^6.3.0"
-"@babel/helper-create-class-features-plugin@^7.12.1", "@babel/helper-create-class-features-plugin@^7.13.0":
- version "7.13.0"
- resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.13.0.tgz#28d04ad9cfbd1ed1d8b988c9ea7b945263365846"
- integrity sha512-twwzhthM4/+6o9766AW2ZBHpIHPSGrPGk1+WfHiu13u/lBnggXGNYCpeAyVfNwGDKfkhEDp+WOD/xafoJ2iLjA==
+"@babel/helper-create-class-features-plugin@^7.12.1", "@babel/helper-create-class-features-plugin@^7.13.0", "@babel/helper-create-class-features-plugin@^7.14.0", "@babel/helper-create-class-features-plugin@^7.14.3", "@babel/helper-create-class-features-plugin@^7.14.4":
+ version "7.14.4"
+ resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.14.4.tgz#abf888d836a441abee783c75229279748705dc42"
+ integrity sha512-idr3pthFlDCpV+p/rMgGLGYIVtazeatrSOQk8YzO2pAepIjQhCN3myeihVg58ax2bbbGK9PUE1reFi7axOYIOw==
dependencies:
- "@babel/helper-function-name" "^7.12.13"
- "@babel/helper-member-expression-to-functions" "^7.13.0"
+ "@babel/helper-annotate-as-pure" "^7.12.13"
+ "@babel/helper-function-name" "^7.14.2"
+ "@babel/helper-member-expression-to-functions" "^7.13.12"
"@babel/helper-optimise-call-expression" "^7.12.13"
- "@babel/helper-replace-supers" "^7.13.0"
+ "@babel/helper-replace-supers" "^7.14.4"
"@babel/helper-split-export-declaration" "^7.12.13"
"@babel/helper-create-regexp-features-plugin@^7.12.13":
@@ -361,15 +360,15 @@
"@babel/helper-annotate-as-pure" "^7.12.13"
regexpu-core "^4.7.1"
-"@babel/helper-define-polyfill-provider@^0.1.0":
- version "0.1.0"
- resolved "https://registry.yarnpkg.com/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.1.0.tgz#a9e8a161bb594a6a26ba93f68efd475c935a1727"
- integrity sha512-/nX4CQRve5OZsc0FsvkuefeIQFG7GQo2X5GbD/seME7Tu4s2gHuQfXTIKup++/W9K1SWi2dTe7H9zhgJxhn/pA==
+"@babel/helper-define-polyfill-provider@^0.2.2":
+ version "0.2.3"
+ resolved "https://registry.yarnpkg.com/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.2.3.tgz#0525edec5094653a282688d34d846e4c75e9c0b6"
+ integrity sha512-RH3QDAfRMzj7+0Nqu5oqgO5q9mFtQEVvCRsi8qCEfzLR9p2BHfn5FzhSB2oj1fF7I2+DcTORkYaQ6aTR9Cofew==
dependencies:
- "@babel/helper-compilation-targets" "^7.10.4"
- "@babel/helper-module-imports" "^7.10.4"
- "@babel/helper-plugin-utils" "^7.10.4"
- "@babel/traverse" "^7.11.5"
+ "@babel/helper-compilation-targets" "^7.13.0"
+ "@babel/helper-module-imports" "^7.12.13"
+ "@babel/helper-plugin-utils" "^7.13.0"
+ "@babel/traverse" "^7.13.0"
debug "^4.1.1"
lodash.debounce "^4.0.8"
resolve "^1.14.2"
@@ -382,14 +381,14 @@
dependencies:
"@babel/types" "^7.13.0"
-"@babel/helper-function-name@^7.12.13":
- version "7.12.13"
- resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.12.13.tgz#93ad656db3c3c2232559fd7b2c3dbdcbe0eb377a"
- integrity sha512-TZvmPn0UOqmvi5G4vvw0qZTpVptGkB1GL61R6lKvrSdIxGm5Pky7Q3fpKiIkQCAtRCBUwB0PaThlx9vebCDSwA==
+"@babel/helper-function-name@^7.12.13", "@babel/helper-function-name@^7.14.2":
+ version "7.14.2"
+ resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.14.2.tgz#397688b590760b6ef7725b5f0860c82427ebaac2"
+ integrity sha512-NYZlkZRydxw+YT56IlhIcS8PAhb+FEUiOzuhFTfqDyPmzAhRge6ua0dQYT/Uh0t/EDHq05/i+e5M2d4XvjgarQ==
dependencies:
"@babel/helper-get-function-arity" "^7.12.13"
"@babel/template" "^7.12.13"
- "@babel/types" "^7.12.13"
+ "@babel/types" "^7.14.2"
"@babel/helper-get-function-arity@^7.12.13":
version "7.12.13"
@@ -398,42 +397,41 @@
dependencies:
"@babel/types" "^7.12.13"
-"@babel/helper-hoist-variables@^7.12.13":
- version "7.13.0"
- resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.13.0.tgz#5d5882e855b5c5eda91e0cadc26c6e7a2c8593d8"
- integrity sha512-0kBzvXiIKfsCA0y6cFEIJf4OdzfpRuNk4+YTeHZpGGc666SATFKTz6sRncwFnQk7/ugJ4dSrCj6iJuvW4Qwr2g==
+"@babel/helper-hoist-variables@^7.13.0":
+ version "7.13.16"
+ resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.13.16.tgz#1b1651249e94b51f8f0d33439843e33e39775b30"
+ integrity sha512-1eMtTrXtrwscjcAeO4BVK+vvkxaLJSPFz1w1KLawz6HLNi9bPFGBNwwDyVfiu1Tv/vRRFYfoGaKhmAQPGPn5Wg==
dependencies:
- "@babel/traverse" "^7.13.0"
- "@babel/types" "^7.13.0"
+ "@babel/traverse" "^7.13.15"
+ "@babel/types" "^7.13.16"
-"@babel/helper-member-expression-to-functions@^7.13.0":
- version "7.13.0"
- resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.13.0.tgz#6aa4bb678e0f8c22f58cdb79451d30494461b091"
- integrity sha512-yvRf8Ivk62JwisqV1rFRMxiSMDGnN6KH1/mDMmIrij4jztpQNRoHqqMG3U6apYbGRPJpgPalhva9Yd06HlUxJQ==
+"@babel/helper-member-expression-to-functions@^7.13.12":
+ version "7.13.12"
+ resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.13.12.tgz#dfe368f26d426a07299d8d6513821768216e6d72"
+ integrity sha512-48ql1CLL59aKbU94Y88Xgb2VFy7a95ykGRbJJaaVv+LX5U8wFpLfiGXJJGUozsmA1oEh/o5Bp60Voq7ACyA/Sw==
dependencies:
- "@babel/types" "^7.13.0"
+ "@babel/types" "^7.13.12"
-"@babel/helper-module-imports@^7.0.0", "@babel/helper-module-imports@^7.0.0-beta.49", "@babel/helper-module-imports@^7.10.4", "@babel/helper-module-imports@^7.12.1", "@babel/helper-module-imports@^7.12.13", "@babel/helper-module-imports@^7.7.0":
- version "7.12.13"
- resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.12.13.tgz#ec67e4404f41750463e455cc3203f6a32e93fcb0"
- integrity sha512-NGmfvRp9Rqxy0uHSSVP+SRIW1q31a7Ji10cLBcqSDUngGentY4FRiHOFZFE1CLU5eiL0oE8reH7Tg1y99TDM/g==
+"@babel/helper-module-imports@^7.0.0", "@babel/helper-module-imports@^7.0.0-beta.49", "@babel/helper-module-imports@^7.10.4", "@babel/helper-module-imports@^7.12.1", "@babel/helper-module-imports@^7.12.13", "@babel/helper-module-imports@^7.13.12", "@babel/helper-module-imports@^7.7.0":
+ version "7.13.12"
+ resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.13.12.tgz#c6a369a6f3621cb25da014078684da9196b61977"
+ integrity sha512-4cVvR2/1B693IuOvSI20xqqa/+bl7lqAMR59R4iu39R9aOX8/JoYY1sFaNvUMyMBGnHdwvJgUrzNLoUZxXypxA==
dependencies:
- "@babel/types" "^7.12.13"
+ "@babel/types" "^7.13.12"
-"@babel/helper-module-transforms@^7.10.5", "@babel/helper-module-transforms@^7.12.1", "@babel/helper-module-transforms@^7.12.13", "@babel/helper-module-transforms@^7.13.0":
- version "7.13.0"
- resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.13.0.tgz#42eb4bd8eea68bab46751212c357bfed8b40f6f1"
- integrity sha512-Ls8/VBwH577+pw7Ku1QkUWIyRRNHpYlts7+qSqBBFCW3I8QteB9DxfcZ5YJpOwH6Ihe/wn8ch7fMGOP1OhEIvw==
+"@babel/helper-module-transforms@^7.10.5", "@babel/helper-module-transforms@^7.12.1", "@babel/helper-module-transforms@^7.13.0", "@babel/helper-module-transforms@^7.14.0", "@babel/helper-module-transforms@^7.14.2":
+ version "7.14.2"
+ resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.14.2.tgz#ac1cc30ee47b945e3e0c4db12fa0c5389509dfe5"
+ integrity sha512-OznJUda/soKXv0XhpvzGWDnml4Qnwp16GN+D/kZIdLsWoHj05kyu8Rm5kXmMef+rVJZ0+4pSGLkeixdqNUATDA==
dependencies:
- "@babel/helper-module-imports" "^7.12.13"
- "@babel/helper-replace-supers" "^7.13.0"
- "@babel/helper-simple-access" "^7.12.13"
+ "@babel/helper-module-imports" "^7.13.12"
+ "@babel/helper-replace-supers" "^7.13.12"
+ "@babel/helper-simple-access" "^7.13.12"
"@babel/helper-split-export-declaration" "^7.12.13"
- "@babel/helper-validator-identifier" "^7.12.11"
+ "@babel/helper-validator-identifier" "^7.14.0"
"@babel/template" "^7.12.13"
- "@babel/traverse" "^7.13.0"
- "@babel/types" "^7.13.0"
- lodash "^4.17.19"
+ "@babel/traverse" "^7.14.2"
+ "@babel/types" "^7.14.2"
"@babel/helper-optimise-call-expression@^7.12.13":
version "7.12.13"
@@ -461,22 +459,22 @@
"@babel/helper-wrap-function" "^7.13.0"
"@babel/types" "^7.13.0"
-"@babel/helper-replace-supers@^7.12.13", "@babel/helper-replace-supers@^7.13.0":
- version "7.13.0"
- resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.13.0.tgz#6034b7b51943094cb41627848cb219cb02be1d24"
- integrity sha512-Segd5me1+Pz+rmN/NFBOplMbZG3SqRJOBlY+mA0SxAv6rjj7zJqr1AVr3SfzUVTLCv7ZLU5FycOM/SBGuLPbZw==
+"@babel/helper-replace-supers@^7.12.13", "@babel/helper-replace-supers@^7.13.12", "@babel/helper-replace-supers@^7.14.4":
+ version "7.14.4"
+ resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.14.4.tgz#b2ab16875deecfff3ddfcd539bc315f72998d836"
+ integrity sha512-zZ7uHCWlxfEAAOVDYQpEf/uyi1dmeC7fX4nCf2iz9drnCwi1zvwXL3HwWWNXUQEJ1k23yVn3VbddiI9iJEXaTQ==
dependencies:
- "@babel/helper-member-expression-to-functions" "^7.13.0"
+ "@babel/helper-member-expression-to-functions" "^7.13.12"
"@babel/helper-optimise-call-expression" "^7.12.13"
- "@babel/traverse" "^7.13.0"
- "@babel/types" "^7.13.0"
+ "@babel/traverse" "^7.14.2"
+ "@babel/types" "^7.14.4"
-"@babel/helper-simple-access@^7.12.13":
- version "7.12.13"
- resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.12.13.tgz#8478bcc5cacf6aa1672b251c1d2dde5ccd61a6c4"
- integrity sha512-0ski5dyYIHEfwpWGx5GPWhH35j342JaflmCeQmsPWcrOQDtCN6C1zKAVRFVbK53lPW2c9TsuLLSUDf0tIGJ5hA==
+"@babel/helper-simple-access@^7.13.12":
+ version "7.13.12"
+ resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.13.12.tgz#dd6c538afb61819d205a012c31792a39c7a5eaf6"
+ integrity sha512-7FEjbrx5SL9cWvXioDbnlYTppcZGuCY6ow3/D5vMggb2Ywgu4dMrpTJX0JdQAIcRRUElOIxF3yEooa9gUb9ZbA==
dependencies:
- "@babel/types" "^7.12.13"
+ "@babel/types" "^7.13.12"
"@babel/helper-skip-transparent-expression-wrappers@^7.12.1":
version "7.12.1"
@@ -512,7 +510,7 @@
"@babel/traverse" "^7.13.0"
"@babel/types" "^7.13.0"
-"@babel/helpers@^7.10.4", "@babel/helpers@^7.12.1", "@babel/helpers@^7.12.5", "@babel/helpers@^7.13.0":
+"@babel/helpers@^7.10.4", "@babel/helpers@^7.12.1", "@babel/helpers@^7.12.5", "@babel/helpers@^7.14.0":
version "7.14.0"
resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.14.0.tgz#ea9b6be9478a13d6f961dbb5f36bf75e2f3b8f62"
integrity sha512-+ufuXprtQ1D1iZTO/K9+EBRn+qPWMJjZSw/S0KlFrxCw4tkrzv9grgpDHkY9MeQTjTY8i2sp7Jep8DfU6tN9Mg==
@@ -548,19 +546,28 @@
resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.12.3.tgz#a305415ebe7a6c7023b40b5122a0662d928334cd"
integrity sha512-kFsOS0IbsuhO5ojF8Hc8z/8vEIOkylVBrjiZUbLTE3XFe0Qi+uu6HjzQixkFaqr0ZPAMZcBVxEwmsnsLPZ2Xsw==
-"@babel/parser@^7.0.0", "@babel/parser@^7.1.0", "@babel/parser@^7.1.6", "@babel/parser@^7.10.5", "@babel/parser@^7.12.13", "@babel/parser@^7.12.3", "@babel/parser@^7.12.5", "@babel/parser@^7.12.7", "@babel/parser@^7.13.4", "@babel/parser@^7.14.0", "@babel/parser@^7.3.3":
- version "7.14.1"
- resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.14.1.tgz#1bd644b5db3f5797c4479d89ec1817fe02b84c47"
- integrity sha512-muUGEKu8E/ftMTPlNp+mc6zL3E9zKWmF5sDHZ5MSsoTP9Wyz64AhEf9kD08xYJ7w6Hdcu8H550ircnPyWSIF0Q==
+"@babel/parser@^7.0.0", "@babel/parser@^7.1.0", "@babel/parser@^7.1.6", "@babel/parser@^7.10.5", "@babel/parser@^7.12.13", "@babel/parser@^7.12.3", "@babel/parser@^7.12.7", "@babel/parser@^7.14.2", "@babel/parser@^7.14.3", "@babel/parser@^7.14.4", "@babel/parser@^7.3.3":
+ version "7.14.4"
+ resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.14.4.tgz#a5c560d6db6cd8e6ed342368dea8039232cbab18"
+ integrity sha512-ArliyUsWDUqEGfWcmzpGUzNfLxTdTp6WU4IuP6QFSp9gGfWS6boxFCkJSJ/L4+RG8z/FnIU3WxCk6hPL9SSWeA==
-"@babel/plugin-proposal-async-generator-functions@^7.13.0":
- version "7.13.0"
- resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.13.0.tgz#42f4a4922c973ceb70bfd4708daf55601fe25434"
- integrity sha512-3Loqr0+jE2/yqp29VnW1YqcWjGnIQwICotlrMfn6+1Ih2MBIbaaIFpJ5fnmYmGSUa9vwMhHOh2rMAqUH7NMWmQ==
+"@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@^7.13.12":
+ version "7.13.12"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.13.12.tgz#a3484d84d0b549f3fc916b99ee4783f26fabad2a"
+ integrity sha512-d0u3zWKcoZf379fOeJdr1a5WPDny4aOFZ6hlfKivgK0LY7ZxNfoaHL2fWwdGtHyVvra38FC+HVYkO+byfSA8AQ==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.13.0"
+ "@babel/helper-skip-transparent-expression-wrappers" "^7.12.1"
+ "@babel/plugin-proposal-optional-chaining" "^7.13.12"
+
+"@babel/plugin-proposal-async-generator-functions@^7.14.2":
+ version "7.14.2"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.14.2.tgz#3a2085abbf5d5f962d480dbc81347385ed62eb1e"
+ integrity sha512-b1AM4F6fwck4N8ItZ/AtC4FP/cqZqmKRQ4FaTDutwSYyjuhtvsGEMLK4N/ztV/ImP40BjIDyMgBQAeAMsQYVFQ==
dependencies:
"@babel/helper-plugin-utils" "^7.13.0"
"@babel/helper-remap-async-to-generator" "^7.13.0"
- "@babel/plugin-syntax-async-generators" "^7.8.0"
+ "@babel/plugin-syntax-async-generators" "^7.8.4"
"@babel/[email protected]":
version "7.12.1"
@@ -570,7 +577,7 @@
"@babel/helper-create-class-features-plugin" "^7.12.1"
"@babel/helper-plugin-utils" "^7.10.4"
-"@babel/plugin-proposal-class-properties@^7.1.0", "@babel/plugin-proposal-class-properties@^7.10.1", "@babel/plugin-proposal-class-properties@^7.12.1", "@babel/plugin-proposal-class-properties@^7.13.0":
+"@babel/plugin-proposal-class-properties@^7.1.0", "@babel/plugin-proposal-class-properties@^7.12.1", "@babel/plugin-proposal-class-properties@^7.13.0":
version "7.13.0"
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.13.0.tgz#146376000b94efd001e57a40a88a525afaab9f37"
integrity sha512-KnTDjFNC1g+45ka0myZNvSBFLhNCLN+GeGYLDEA8Oq7MZ6yMgfLoIRh86GRT0FjtJhZw8JyUskP9uvj5pHM9Zg==
@@ -578,6 +585,15 @@
"@babel/helper-create-class-features-plugin" "^7.13.0"
"@babel/helper-plugin-utils" "^7.13.0"
+"@babel/plugin-proposal-class-static-block@^7.14.3":
+ version "7.14.3"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-class-static-block/-/plugin-proposal-class-static-block-7.14.3.tgz#5a527e2cae4a4753119c3a3e7f64ecae8ccf1360"
+ integrity sha512-HEjzp5q+lWSjAgJtSluFDrGGosmwTgKwCXdDQZvhKsRlwv3YdkUEqxNrrjesJd+B9E9zvr1PVPVBvhYZ9msjvQ==
+ dependencies:
+ "@babel/helper-create-class-features-plugin" "^7.14.3"
+ "@babel/helper-plugin-utils" "^7.13.0"
+ "@babel/plugin-syntax-class-static-block" "^7.12.13"
+
"@babel/plugin-proposal-decorators@^7.12.1":
version "7.12.12"
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.12.12.tgz#067a6d3d6ca86d54cf56bb183239199c20daeafe"
@@ -595,13 +611,13 @@
"@babel/helper-plugin-utils" "^7.10.4"
"@babel/plugin-syntax-do-expressions" "^7.12.1"
-"@babel/plugin-proposal-dynamic-import@^7.12.17":
- version "7.12.17"
- resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.12.17.tgz#e0ebd8db65acc37eac518fa17bead2174e224512"
- integrity sha512-ZNGoFZqrnuy9H2izB2jLlnNDAfVPlGl5NhFEiFe4D84ix9GQGygF+CWMGHKuE+bpyS/AOuDQCnkiRNqW2IzS1Q==
+"@babel/plugin-proposal-dynamic-import@^7.14.2":
+ version "7.14.2"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.14.2.tgz#01ebabd7c381cff231fa43e302939a9de5be9d9f"
+ integrity sha512-oxVQZIWFh91vuNEMKltqNsKLFWkOIyJc95k2Gv9lWVyDfPUQGSSlbDEgWuJUU1afGE9WwlzpucMZ3yDRHIItkA==
dependencies:
- "@babel/helper-plugin-utils" "^7.12.13"
- "@babel/plugin-syntax-dynamic-import" "^7.8.0"
+ "@babel/helper-plugin-utils" "^7.13.0"
+ "@babel/plugin-syntax-dynamic-import" "^7.8.3"
"@babel/plugin-proposal-export-default-from@^7.12.1":
version "7.12.1"
@@ -611,12 +627,12 @@
"@babel/helper-plugin-utils" "^7.10.4"
"@babel/plugin-syntax-export-default-from" "^7.12.1"
-"@babel/plugin-proposal-export-namespace-from@^7.12.1", "@babel/plugin-proposal-export-namespace-from@^7.12.13":
- version "7.12.13"
- resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.12.13.tgz#393be47a4acd03fa2af6e3cde9b06e33de1b446d"
- integrity sha512-INAgtFo4OnLN3Y/j0VwAgw3HDXcDtX+C/erMvWzuV9v71r7urb6iyMXu7eM9IgLr1ElLlOkaHjJ0SbCmdOQ3Iw==
+"@babel/plugin-proposal-export-namespace-from@^7.12.1", "@babel/plugin-proposal-export-namespace-from@^7.14.2":
+ version "7.14.2"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.14.2.tgz#62542f94aa9ce8f6dba79eec698af22112253791"
+ integrity sha512-sRxW3z3Zp3pFfLAgVEvzTFutTXax837oOatUIvSG9o5gRj9mKwm3br1Se5f4QalTQs9x4AzlA/HrCWbQIHASUQ==
dependencies:
- "@babel/helper-plugin-utils" "^7.12.13"
+ "@babel/helper-plugin-utils" "^7.13.0"
"@babel/plugin-syntax-export-namespace-from" "^7.8.3"
"@babel/plugin-proposal-function-bind@^7.12.1":
@@ -636,36 +652,36 @@
"@babel/helper-wrap-function" "^7.10.4"
"@babel/plugin-syntax-function-sent" "^7.12.1"
-"@babel/plugin-proposal-json-strings@^7.12.1", "@babel/plugin-proposal-json-strings@^7.12.13":
- version "7.12.13"
- resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.12.13.tgz#ced7888a2db92a3d520a2e35eb421fdb7fcc9b5d"
- integrity sha512-v9eEi4GiORDg8x+Dmi5r8ibOe0VXoKDeNPYcTTxdGN4eOWikrJfDJCJrr1l5gKGvsNyGJbrfMftC2dTL6oz7pg==
+"@babel/plugin-proposal-json-strings@^7.12.1", "@babel/plugin-proposal-json-strings@^7.14.2":
+ version "7.14.2"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.14.2.tgz#830b4e2426a782e8b2878fbfe2cba85b70cbf98c"
+ integrity sha512-w2DtsfXBBJddJacXMBhElGEYqCZQqN99Se1qeYn8DVLB33owlrlLftIbMzn5nz1OITfDVknXF433tBrLEAOEjA==
dependencies:
- "@babel/helper-plugin-utils" "^7.12.13"
- "@babel/plugin-syntax-json-strings" "^7.8.0"
+ "@babel/helper-plugin-utils" "^7.13.0"
+ "@babel/plugin-syntax-json-strings" "^7.8.3"
-"@babel/plugin-proposal-logical-assignment-operators@^7.12.1", "@babel/plugin-proposal-logical-assignment-operators@^7.12.13":
- version "7.12.13"
- resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.12.13.tgz#575b5d9a08d8299eeb4db6430da6e16e5cf14350"
- integrity sha512-fqmiD3Lz7jVdK6kabeSr1PZlWSUVqSitmHEe3Z00dtGTKieWnX9beafvavc32kjORa5Bai4QNHgFDwWJP+WtSQ==
+"@babel/plugin-proposal-logical-assignment-operators@^7.12.1", "@babel/plugin-proposal-logical-assignment-operators@^7.14.2":
+ version "7.14.2"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.14.2.tgz#222348c080a1678e0e74ea63fe76f275882d1fd7"
+ integrity sha512-1JAZtUrqYyGsS7IDmFeaem+/LJqujfLZ2weLR9ugB0ufUPjzf8cguyVT1g5im7f7RXxuLq1xUxEzvm68uYRtGg==
dependencies:
- "@babel/helper-plugin-utils" "^7.12.13"
+ "@babel/helper-plugin-utils" "^7.13.0"
"@babel/plugin-syntax-logical-assignment-operators" "^7.10.4"
-"@babel/plugin-proposal-nullish-coalescing-operator@^7.1.0", "@babel/plugin-proposal-nullish-coalescing-operator@^7.12.1", "@babel/plugin-proposal-nullish-coalescing-operator@^7.13.0":
- version "7.13.0"
- resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.13.0.tgz#1a96fdf2c43109cfe5568513c5379015a23f5380"
- integrity sha512-UkAvFA/9+lBBL015gjA68NvKiCReNxqFLm3SdNKaM3XXoDisA7tMAIX4PmIwatFoFqMxxT3WyG9sK3MO0Kting==
+"@babel/plugin-proposal-nullish-coalescing-operator@^7.1.0", "@babel/plugin-proposal-nullish-coalescing-operator@^7.12.1", "@babel/plugin-proposal-nullish-coalescing-operator@^7.14.2":
+ version "7.14.2"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.14.2.tgz#425b11dc62fc26939a2ab42cbba680bdf5734546"
+ integrity sha512-ebR0zU9OvI2N4qiAC38KIAK75KItpIPTpAtd2r4OZmMFeKbKJpUFLYP2EuDut82+BmYi8sz42B+TfTptJ9iG5Q==
dependencies:
"@babel/helper-plugin-utils" "^7.13.0"
- "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.0"
+ "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3"
-"@babel/plugin-proposal-numeric-separator@^7.12.1", "@babel/plugin-proposal-numeric-separator@^7.12.13", "@babel/plugin-proposal-numeric-separator@^7.12.5":
- version "7.12.13"
- resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.12.13.tgz#bd9da3188e787b5120b4f9d465a8261ce67ed1db"
- integrity sha512-O1jFia9R8BUCl3ZGB7eitaAPu62TXJRHn7rh+ojNERCFyqRwJMTmhz+tJ+k0CwI6CLjX/ee4qW74FSqlq9I35w==
+"@babel/plugin-proposal-numeric-separator@^7.12.1", "@babel/plugin-proposal-numeric-separator@^7.14.2":
+ version "7.14.2"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.14.2.tgz#82b4cc06571143faf50626104b335dd71baa4f9e"
+ integrity sha512-DcTQY9syxu9BpU3Uo94fjCB3LN9/hgPS8oUL7KrSW3bA2ePrKZZPJcc5y0hoJAM9dft3pGfErtEUvxXQcfLxUg==
dependencies:
- "@babel/helper-plugin-utils" "^7.12.13"
+ "@babel/helper-plugin-utils" "^7.13.0"
"@babel/plugin-syntax-numeric-separator" "^7.10.4"
"@babel/[email protected]":
@@ -686,31 +702,33 @@
"@babel/plugin-syntax-object-rest-spread" "^7.8.0"
"@babel/plugin-transform-parameters" "^7.12.1"
-"@babel/plugin-proposal-object-rest-spread@^7.12.1", "@babel/plugin-proposal-object-rest-spread@^7.13.0":
- version "7.13.0"
- resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.13.0.tgz#8f19ad247bb96bd5ad2d4107e6eddfe0a789937b"
- integrity sha512-B4qphdSTp0nLsWcuei07JPKeZej4+Hd22MdnulJXQa1nCcGSBlk8FiqenGERaPZ+PuYhz4Li2Wjc8yfJvHgUMw==
+"@babel/plugin-proposal-object-rest-spread@^7.14.4":
+ version "7.14.4"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.14.4.tgz#0e2b4de419915dc0b409378e829412e2031777c4"
+ integrity sha512-AYosOWBlyyXEagrPRfLJ1enStufsr7D1+ddpj8OLi9k7B6+NdZ0t/9V7Fh+wJ4g2Jol8z2JkgczYqtWrZd4vbA==
dependencies:
+ "@babel/compat-data" "^7.14.4"
+ "@babel/helper-compilation-targets" "^7.14.4"
"@babel/helper-plugin-utils" "^7.13.0"
- "@babel/plugin-syntax-object-rest-spread" "^7.8.0"
- "@babel/plugin-transform-parameters" "^7.13.0"
+ "@babel/plugin-syntax-object-rest-spread" "^7.8.3"
+ "@babel/plugin-transform-parameters" "^7.14.2"
-"@babel/plugin-proposal-optional-catch-binding@^7.12.13":
- version "7.12.13"
- resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.12.13.tgz#4640520afe57728af14b4d1574ba844f263bcae5"
- integrity sha512-9+MIm6msl9sHWg58NvqpNpLtuFbmpFYk37x8kgnGzAHvX35E1FyAwSUt5hIkSoWJFSAH+iwU8bJ4fcD1zKXOzg==
+"@babel/plugin-proposal-optional-catch-binding@^7.14.2":
+ version "7.14.2"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.14.2.tgz#150d4e58e525b16a9a1431bd5326c4eed870d717"
+ integrity sha512-XtkJsmJtBaUbOxZsNk0Fvrv8eiqgneug0A6aqLFZ4TSkar2L5dSXWcnUKHgmjJt49pyB/6ZHvkr3dPgl9MOWRQ==
dependencies:
- "@babel/helper-plugin-utils" "^7.12.13"
- "@babel/plugin-syntax-optional-catch-binding" "^7.8.0"
+ "@babel/helper-plugin-utils" "^7.13.0"
+ "@babel/plugin-syntax-optional-catch-binding" "^7.8.3"
-"@babel/plugin-proposal-optional-chaining@^7.1.0", "@babel/plugin-proposal-optional-chaining@^7.12.1", "@babel/plugin-proposal-optional-chaining@^7.13.0":
- version "7.13.0"
- resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.13.0.tgz#75b41ce0d883d19e8fe635fc3f846be3b1664f4d"
- integrity sha512-OVRQOZEBP2luZrvEbNSX5FfWDousthhdEoAOpej+Tpe58HFLvqRClT89RauIvBuCDFEip7GW1eT86/5lMy2RNA==
+"@babel/plugin-proposal-optional-chaining@^7.1.0", "@babel/plugin-proposal-optional-chaining@^7.12.1", "@babel/plugin-proposal-optional-chaining@^7.13.12", "@babel/plugin-proposal-optional-chaining@^7.14.2":
+ version "7.14.2"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.14.2.tgz#df8171a8b9c43ebf4c1dabe6311b432d83e1b34e"
+ integrity sha512-qQByMRPwMZJainfig10BoaDldx/+VDtNcrA7qdNaEOAj6VXud+gfrkA8j4CRAU5HjnWREXqIpSpH30qZX1xivA==
dependencies:
"@babel/helper-plugin-utils" "^7.13.0"
"@babel/helper-skip-transparent-expression-wrappers" "^7.12.1"
- "@babel/plugin-syntax-optional-chaining" "^7.8.0"
+ "@babel/plugin-syntax-optional-chaining" "^7.8.3"
"@babel/plugin-proposal-pipeline-operator@^7.12.1":
version "7.12.1"
@@ -720,7 +738,7 @@
"@babel/helper-plugin-utils" "^7.10.4"
"@babel/plugin-syntax-pipeline-operator" "^7.12.1"
-"@babel/plugin-proposal-private-methods@^7.10.1", "@babel/plugin-proposal-private-methods@^7.12.1", "@babel/plugin-proposal-private-methods@^7.13.0":
+"@babel/plugin-proposal-private-methods@^7.12.1", "@babel/plugin-proposal-private-methods@^7.13.0":
version "7.13.0"
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.13.0.tgz#04bd4c6d40f6e6bbfa2f57e2d8094bad900ef787"
integrity sha512-MXyyKQd9inhx1kDYPkFRVOBXQ20ES8Pto3T7UZ92xj2mY0EVD8oAVzeyYuVfy/mxAdTSIayOvg+aVzcHV2bn6Q==
@@ -728,6 +746,16 @@
"@babel/helper-create-class-features-plugin" "^7.13.0"
"@babel/helper-plugin-utils" "^7.13.0"
+"@babel/plugin-proposal-private-property-in-object@^7.14.0":
+ version "7.14.0"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.14.0.tgz#b1a1f2030586b9d3489cc26179d2eb5883277636"
+ integrity sha512-59ANdmEwwRUkLjB7CRtwJxxwtjESw+X2IePItA+RGQh+oy5RmpCh/EvVVvh5XQc3yxsm5gtv0+i9oBZhaDNVTg==
+ dependencies:
+ "@babel/helper-annotate-as-pure" "^7.12.13"
+ "@babel/helper-create-class-features-plugin" "^7.14.0"
+ "@babel/helper-plugin-utils" "^7.13.0"
+ "@babel/plugin-syntax-private-property-in-object" "^7.14.0"
+
"@babel/plugin-proposal-throw-expressions@^7.12.1":
version "7.12.1"
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-throw-expressions/-/plugin-proposal-throw-expressions-7.12.1.tgz#5adf4abc7f349a2da532e663b36251f6017c4279"
@@ -744,7 +772,7 @@
"@babel/helper-create-regexp-features-plugin" "^7.12.13"
"@babel/helper-plugin-utils" "^7.12.13"
-"@babel/plugin-syntax-async-generators@^7.8.0", "@babel/plugin-syntax-async-generators@^7.8.4":
+"@babel/plugin-syntax-async-generators@^7.8.4":
version "7.8.4"
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz#a983fb1aeb2ec3f6ed042a210f640e90e786fe0d"
integrity sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==
@@ -765,6 +793,13 @@
dependencies:
"@babel/helper-plugin-utils" "^7.12.13"
+"@babel/plugin-syntax-class-static-block@^7.12.13":
+ version "7.12.13"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.12.13.tgz#8e3d674b0613e67975ceac2776c97b60cafc5c9c"
+ integrity sha512-ZmKQ0ZXR0nYpHZIIuj9zE7oIqCx2hw9TKi+lIo73NNrMPAZGHfS92/VRV0ZmPj6H2ffBgyFHXvJ5NYsNeEaP2A==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.12.13"
+
"@babel/plugin-syntax-decorators@^7.12.1":
version "7.12.1"
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-decorators/-/plugin-syntax-decorators-7.12.1.tgz#81a8b535b284476c41be6de06853a8802b98c5dd"
@@ -779,7 +814,7 @@
dependencies:
"@babel/helper-plugin-utils" "^7.10.4"
-"@babel/plugin-syntax-dynamic-import@^7.8.0", "@babel/plugin-syntax-dynamic-import@^7.8.3":
+"@babel/plugin-syntax-dynamic-import@^7.8.3":
version "7.8.3"
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz#62bf98b2da3cd21d626154fc96ee5b3cb68eacb3"
integrity sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==
@@ -828,7 +863,7 @@
dependencies:
"@babel/helper-plugin-utils" "^7.10.4"
-"@babel/plugin-syntax-json-strings@^7.8.0", "@babel/plugin-syntax-json-strings@^7.8.3":
+"@babel/plugin-syntax-json-strings@^7.8.3":
version "7.8.3"
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz#01ca21b668cd8218c9e640cb6dd88c5412b2c96a"
integrity sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==
@@ -863,7 +898,7 @@
dependencies:
"@babel/helper-plugin-utils" "^7.10.4"
-"@babel/plugin-syntax-nullish-coalescing-operator@^7.8.0", "@babel/plugin-syntax-nullish-coalescing-operator@^7.8.3":
+"@babel/plugin-syntax-nullish-coalescing-operator@^7.8.3":
version "7.8.3"
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz#167ed70368886081f74b5c36c65a88c03b66d1a9"
integrity sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==
@@ -884,14 +919,14 @@
dependencies:
"@babel/helper-plugin-utils" "^7.8.0"
-"@babel/plugin-syntax-optional-catch-binding@^7.8.0", "@babel/plugin-syntax-optional-catch-binding@^7.8.3":
+"@babel/plugin-syntax-optional-catch-binding@^7.8.3":
version "7.8.3"
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz#6111a265bcfb020eb9efd0fdfd7d26402b9ed6c1"
integrity sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==
dependencies:
"@babel/helper-plugin-utils" "^7.8.0"
-"@babel/plugin-syntax-optional-chaining@^7.8.0", "@babel/plugin-syntax-optional-chaining@^7.8.3":
+"@babel/plugin-syntax-optional-chaining@^7.8.3":
version "7.8.3"
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz#4f69c2ab95167e0180cd5336613f8c5788f7d48a"
integrity sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==
@@ -905,6 +940,13 @@
dependencies:
"@babel/helper-plugin-utils" "^7.10.4"
+"@babel/plugin-syntax-private-property-in-object@^7.14.0":
+ version "7.14.0"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.0.tgz#762a4babec61176fec6c88480dec40372b140c0b"
+ integrity sha512-bda3xF8wGl5/5btF794utNOL0Jw+9jE5C1sLZcoK7c4uonE/y3iQiyG+KbkF3WBV/paX58VCpjhxLPkdj5Fe4w==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.13.0"
+
"@babel/plugin-syntax-throw-expressions@^7.12.1":
version "7.12.1"
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-throw-expressions/-/plugin-syntax-throw-expressions-7.12.1.tgz#ff90a57ac599ba685a99274c86604d878c945094"
@@ -919,7 +961,7 @@
dependencies:
"@babel/helper-plugin-utils" "^7.12.13"
-"@babel/plugin-syntax-typescript@^7.12.1", "@babel/plugin-syntax-typescript@^7.12.13":
+"@babel/plugin-syntax-typescript@^7.12.13":
version "7.12.13"
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.12.13.tgz#9dff111ca64154cef0f4dc52cf843d9f12ce4474"
integrity sha512-cHP3u1JiUiG2LFDKbXnwVad81GvfyIOmCD6HIEId6ojrY0Drfy2q1jw7BwN7dE84+kTnBjLkXoL3IEy/3JPu2w==
@@ -949,23 +991,23 @@
dependencies:
"@babel/helper-plugin-utils" "^7.12.13"
-"@babel/plugin-transform-block-scoping@^7.12.13":
- version "7.12.13"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.12.13.tgz#f36e55076d06f41dfd78557ea039c1b581642e61"
- integrity sha512-Pxwe0iqWJX4fOOM2kEZeUuAxHMWb9nK+9oh5d11bsLoB0xMg+mkDpt0eYuDZB7ETrY9bbcVlKUGTOGWy7BHsMQ==
+"@babel/plugin-transform-block-scoping@^7.14.4":
+ version "7.14.4"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.14.4.tgz#caf140b0b2e2462c509553d140e6d0abefb61ed8"
+ integrity sha512-5KdpkGxsZlTk+fPleDtGKsA+pon28+ptYmMO8GBSa5fHERCJWAzj50uAfCKBqq42HO+Zot6JF1x37CRprwmN4g==
dependencies:
- "@babel/helper-plugin-utils" "^7.12.13"
+ "@babel/helper-plugin-utils" "^7.13.0"
-"@babel/plugin-transform-classes@^7.12.1", "@babel/plugin-transform-classes@^7.13.0":
- version "7.13.0"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.13.0.tgz#0265155075c42918bf4d3a4053134176ad9b533b"
- integrity sha512-9BtHCPUARyVH1oXGcSJD3YpsqRLROJx5ZNP6tN5vnk17N0SVf9WCtf8Nuh1CFmgByKKAIMstitKduoCmsaDK5g==
+"@babel/plugin-transform-classes@^7.14.4":
+ version "7.14.4"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.14.4.tgz#a83c15503fc71a0f99e876fdce7dadbc6575ec3a"
+ integrity sha512-p73t31SIj6y94RDVX57rafVjttNr8MvKEgs5YFatNB/xC68zM3pyosuOEcQmYsYlyQaGY9R7rAULVRcat5FKJQ==
dependencies:
"@babel/helper-annotate-as-pure" "^7.12.13"
- "@babel/helper-function-name" "^7.12.13"
+ "@babel/helper-function-name" "^7.14.2"
"@babel/helper-optimise-call-expression" "^7.12.13"
"@babel/helper-plugin-utils" "^7.13.0"
- "@babel/helper-replace-supers" "^7.13.0"
+ "@babel/helper-replace-supers" "^7.14.4"
"@babel/helper-split-export-declaration" "^7.12.13"
globals "^11.1.0"
@@ -976,10 +1018,10 @@
dependencies:
"@babel/helper-plugin-utils" "^7.13.0"
-"@babel/plugin-transform-destructuring@^7.13.0":
- version "7.13.0"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.13.0.tgz#c5dce270014d4e1ebb1d806116694c12b7028963"
- integrity sha512-zym5em7tePoNT9s964c0/KU3JPPnuq7VhIxPRefJ4/s82cD+q1mgKfuGRDMCPL0HTyKz4dISuQlCusfgCJ86HA==
+"@babel/plugin-transform-destructuring@^7.14.4":
+ version "7.14.4"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.14.4.tgz#acbec502e9951f30f4441eaca1d2f29efade59ed"
+ integrity sha512-JyywKreTCGTUsL1OKu1A3ms/R1sTP0WxbpXlALeGzF53eB3bxtNkYdMj9SDgK7g6ImPy76J5oYYKoTtQImlhQA==
dependencies:
"@babel/helper-plugin-utils" "^7.13.0"
@@ -1006,7 +1048,7 @@
"@babel/helper-builder-binary-assignment-operator-visitor" "^7.12.13"
"@babel/helper-plugin-utils" "^7.12.13"
-"@babel/plugin-transform-flow-strip-types@^7.12.1", "@babel/plugin-transform-flow-strip-types@^7.12.10":
+"@babel/plugin-transform-flow-strip-types@^7.12.10", "@babel/plugin-transform-flow-strip-types@^7.13.0":
version "7.13.0"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.13.0.tgz#58177a48c209971e8234e99906cb6bd1122addd3"
integrity sha512-EXAGFMJgSX8gxWD7PZtW/P6M+z74jpx3wm/+9pn+c2dOawPpBkUX7BrfyPvo6ZpXbgRIEuwgwDb/MGlKvu2pOg==
@@ -1043,42 +1085,42 @@
dependencies:
"@babel/helper-plugin-utils" "^7.12.13"
-"@babel/plugin-transform-modules-amd@^7.13.0":
- version "7.13.0"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.13.0.tgz#19f511d60e3d8753cc5a6d4e775d3a5184866cc3"
- integrity sha512-EKy/E2NHhY/6Vw5d1k3rgoobftcNUmp9fGjb9XZwQLtTctsRBOTRO7RHHxfIky1ogMN5BxN7p9uMA3SzPfotMQ==
+"@babel/plugin-transform-modules-amd@^7.14.2":
+ version "7.14.2"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.14.2.tgz#6622806fe1a7c07a1388444222ef9535f2ca17b0"
+ integrity sha512-hPC6XBswt8P3G2D1tSV2HzdKvkqOpmbyoy+g73JG0qlF/qx2y3KaMmXb1fLrpmWGLZYA0ojCvaHdzFWjlmV+Pw==
dependencies:
- "@babel/helper-module-transforms" "^7.13.0"
+ "@babel/helper-module-transforms" "^7.14.2"
"@babel/helper-plugin-utils" "^7.13.0"
babel-plugin-dynamic-import-node "^2.3.3"
-"@babel/plugin-transform-modules-commonjs@^7.1.0", "@babel/plugin-transform-modules-commonjs@^7.13.0":
- version "7.13.0"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.13.0.tgz#276932693a20d12c9776093fdc99c0d9995e34c6"
- integrity sha512-j7397PkIB4lcn25U2dClK6VLC6pr2s3q+wbE8R3vJvY6U1UTBBj0n6F+5v6+Fd/UwfDPAorMOs2TV+T4M+owpQ==
+"@babel/plugin-transform-modules-commonjs@^7.1.0", "@babel/plugin-transform-modules-commonjs@^7.14.0":
+ version "7.14.0"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.14.0.tgz#52bc199cb581e0992edba0f0f80356467587f161"
+ integrity sha512-EX4QePlsTaRZQmw9BsoPeyh5OCtRGIhwfLquhxGp5e32w+dyL8htOcDwamlitmNFK6xBZYlygjdye9dbd9rUlQ==
dependencies:
- "@babel/helper-module-transforms" "^7.13.0"
+ "@babel/helper-module-transforms" "^7.14.0"
"@babel/helper-plugin-utils" "^7.13.0"
- "@babel/helper-simple-access" "^7.12.13"
+ "@babel/helper-simple-access" "^7.13.12"
babel-plugin-dynamic-import-node "^2.3.3"
-"@babel/plugin-transform-modules-systemjs@^7.12.13":
- version "7.12.13"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.12.13.tgz#351937f392c7f07493fc79b2118201d50404a3c5"
- integrity sha512-aHfVjhZ8QekaNF/5aNdStCGzwTbU7SI5hUybBKlMzqIMC7w7Ho8hx5a4R/DkTHfRfLwHGGxSpFt9BfxKCoXKoA==
+"@babel/plugin-transform-modules-systemjs@^7.13.8":
+ version "7.13.8"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.13.8.tgz#6d066ee2bff3c7b3d60bf28dec169ad993831ae3"
+ integrity sha512-hwqctPYjhM6cWvVIlOIe27jCIBgHCsdH2xCJVAYQm7V5yTMoilbVMi9f6wKg0rpQAOn6ZG4AOyvCqFF/hUh6+A==
dependencies:
- "@babel/helper-hoist-variables" "^7.12.13"
- "@babel/helper-module-transforms" "^7.12.13"
- "@babel/helper-plugin-utils" "^7.12.13"
+ "@babel/helper-hoist-variables" "^7.13.0"
+ "@babel/helper-module-transforms" "^7.13.0"
+ "@babel/helper-plugin-utils" "^7.13.0"
"@babel/helper-validator-identifier" "^7.12.11"
babel-plugin-dynamic-import-node "^2.3.3"
-"@babel/plugin-transform-modules-umd@^7.13.0":
- version "7.13.0"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.13.0.tgz#8a3d96a97d199705b9fd021580082af81c06e70b"
- integrity sha512-D/ILzAh6uyvkWjKKyFE/W0FzWwasv6vPTSqPcjxFqn6QpX3u8DjRVliq4F2BamO2Wee/om06Vyy+vPkNrd4wxw==
+"@babel/plugin-transform-modules-umd@^7.14.0":
+ version "7.14.0"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.14.0.tgz#2f8179d1bbc9263665ce4a65f305526b2ea8ac34"
+ integrity sha512-nPZdnWtXXeY7I87UZr9VlsWme3Y0cfFFE41Wbxz4bbaexAjNMInXPFUpRRUJ8NoMm0Cw+zxbqjdPmLhcjfazMw==
dependencies:
- "@babel/helper-module-transforms" "^7.13.0"
+ "@babel/helper-module-transforms" "^7.14.0"
"@babel/helper-plugin-utils" "^7.13.0"
"@babel/plugin-transform-named-capturing-groups-regex@^7.12.13":
@@ -1103,10 +1145,10 @@
"@babel/helper-plugin-utils" "^7.12.13"
"@babel/helper-replace-supers" "^7.12.13"
-"@babel/plugin-transform-parameters@^7.10.4", "@babel/plugin-transform-parameters@^7.12.1", "@babel/plugin-transform-parameters@^7.13.0":
- version "7.13.0"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.13.0.tgz#8fa7603e3097f9c0b7ca1a4821bc2fb52e9e5007"
- integrity sha512-Jt8k/h/mIwE2JFEOb3lURoY5C85ETcYPnbuAJ96zRBzh1XHtQZfs62ChZ6EP22QlC8c7Xqr9q+e1SU5qttwwjw==
+"@babel/plugin-transform-parameters@^7.10.4", "@babel/plugin-transform-parameters@^7.12.1", "@babel/plugin-transform-parameters@^7.14.2":
+ version "7.14.2"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.14.2.tgz#e4290f72e0e9e831000d066427c4667098decc31"
+ integrity sha512-NxoVmA3APNCC1JdMXkdYXuQS+EMdqy0vIwyDHeKHiJKRxmp1qGSdb0JLEIoPRhkx6H/8Qi3RJ3uqOCYw8giy9A==
dependencies:
"@babel/helper-plugin-utils" "^7.13.0"
@@ -1124,23 +1166,23 @@
dependencies:
"@babel/helper-plugin-utils" "^7.12.13"
-"@babel/plugin-transform-react-jsx-development@^7.12.12":
+"@babel/plugin-transform-react-jsx-development@^7.12.17":
version "7.12.17"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.12.17.tgz#f510c0fa7cd7234153539f9a362ced41a5ca1447"
integrity sha512-BPjYV86SVuOaudFhsJR1zjgxxOhJDt6JHNoD48DxWEIxUCAMjV1ys6DYw4SDYZh0b1QsS2vfIA9t/ZsQGsDOUQ==
dependencies:
"@babel/plugin-transform-react-jsx" "^7.12.17"
-"@babel/plugin-transform-react-jsx@^7.12.1", "@babel/plugin-transform-react-jsx@^7.12.11", "@babel/plugin-transform-react-jsx@^7.12.13", "@babel/plugin-transform-react-jsx@^7.12.17", "@babel/plugin-transform-react-jsx@^7.12.5":
- version "7.12.17"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.12.17.tgz#dd2c1299f5e26de584939892de3cfc1807a38f24"
- integrity sha512-mwaVNcXV+l6qJOuRhpdTEj8sT/Z0owAVWf9QujTZ0d2ye9X/K+MTOTSizcgKOj18PGnTc/7g1I4+cIUjsKhBcw==
+"@babel/plugin-transform-react-jsx@^7.12.1", "@babel/plugin-transform-react-jsx@^7.12.11", "@babel/plugin-transform-react-jsx@^7.12.17", "@babel/plugin-transform-react-jsx@^7.13.12", "@babel/plugin-transform-react-jsx@^7.14.3":
+ version "7.14.3"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.14.3.tgz#0e26597805cf0862da735f264550933c38babb66"
+ integrity sha512-uuxuoUNVhdgYzERiHHFkE4dWoJx+UFVyuAl0aqN8P2/AKFHwqgUC5w2+4/PjpKXJsFgBlYAFXlUmDQ3k3DUkXw==
dependencies:
"@babel/helper-annotate-as-pure" "^7.12.13"
- "@babel/helper-module-imports" "^7.12.13"
- "@babel/helper-plugin-utils" "^7.12.13"
+ "@babel/helper-module-imports" "^7.13.12"
+ "@babel/helper-plugin-utils" "^7.13.0"
"@babel/plugin-syntax-jsx" "^7.12.13"
- "@babel/types" "^7.12.17"
+ "@babel/types" "^7.14.2"
"@babel/plugin-transform-react-pure-annotations@^7.12.1":
version "7.12.1"
@@ -1150,10 +1192,10 @@
"@babel/helper-annotate-as-pure" "^7.10.4"
"@babel/helper-plugin-utils" "^7.10.4"
-"@babel/plugin-transform-regenerator@^7.12.1", "@babel/plugin-transform-regenerator@^7.12.13":
- version "7.12.13"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.12.13.tgz#b628bcc9c85260ac1aeb05b45bde25210194a2f5"
- integrity sha512-lxb2ZAvSLyJ2PEe47hoGWPmW22v7CtSl9jW8mingV4H2sEX/JOcrAj2nPuGWi56ERUm2bUpjKzONAuT6HCn2EA==
+"@babel/plugin-transform-regenerator@^7.12.1", "@babel/plugin-transform-regenerator@^7.13.15":
+ version "7.13.15"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.13.15.tgz#e5eb28945bf8b6563e7f818945f966a8d2997f39"
+ integrity sha512-Bk9cOLSz8DiurcMETZ8E2YtIVJbFCPGW28DJWUakmyVWtQSm6Wsf0p4B4BfEr/eL2Nkhe/CICiUiMOCi1TPhuQ==
dependencies:
regenerator-transform "^0.14.2"
@@ -1164,15 +1206,17 @@
dependencies:
"@babel/helper-plugin-utils" "^7.12.13"
-"@babel/plugin-transform-runtime@^7.12.1":
- version "7.12.1"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.12.1.tgz#04b792057eb460389ff6a4198e377614ea1e7ba5"
- integrity sha512-Ac/H6G9FEIkS2tXsZjL4RAdS3L3WHxci0usAnz7laPWUmFiGtj7tIASChqKZMHTSQTQY6xDbOq+V1/vIq3QrWg==
+"@babel/plugin-transform-runtime@^7.14.3":
+ version "7.14.3"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.14.3.tgz#1fd885a2d0de1d3c223795a4e9be72c2db4515cf"
+ integrity sha512-t960xbi8wpTFE623ef7sd+UpEC5T6EEguQlTBJDEO05+XwnIWVfuqLw/vdLWY6IdFmtZE+65CZAfByT39zRpkg==
dependencies:
- "@babel/helper-module-imports" "^7.12.1"
- "@babel/helper-plugin-utils" "^7.10.4"
- resolve "^1.8.1"
- semver "^5.5.1"
+ "@babel/helper-module-imports" "^7.13.12"
+ "@babel/helper-plugin-utils" "^7.13.0"
+ babel-plugin-polyfill-corejs2 "^0.2.0"
+ babel-plugin-polyfill-corejs3 "^0.2.0"
+ babel-plugin-polyfill-regenerator "^0.2.0"
+ semver "^6.3.0"
"@babel/plugin-transform-shorthand-properties@^7.12.13":
version "7.12.13"
@@ -1181,7 +1225,7 @@
dependencies:
"@babel/helper-plugin-utils" "^7.12.13"
-"@babel/plugin-transform-spread@^7.12.1", "@babel/plugin-transform-spread@^7.13.0":
+"@babel/plugin-transform-spread@^7.13.0":
version "7.13.0"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.13.0.tgz#84887710e273c1815ace7ae459f6f42a5d31d5fd"
integrity sha512-V6vkiXijjzYeFmQTr3dBxPtZYLPcUfY34DebOU27jIl2M/Y8Egm52Hw82CSjjPqd54GTlJs5x+CR7HeNr24ckg==
@@ -1210,12 +1254,12 @@
dependencies:
"@babel/helper-plugin-utils" "^7.12.13"
-"@babel/plugin-transform-typescript@^7.12.1", "@babel/plugin-transform-typescript@^7.13.0":
- version "7.13.0"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.13.0.tgz#4a498e1f3600342d2a9e61f60131018f55774853"
- integrity sha512-elQEwluzaU8R8dbVuW2Q2Y8Nznf7hnjM7+DSCd14Lo5fF63C9qNLbwZYbmZrtV9/ySpSUpkRpQXvJb6xyu4hCQ==
+"@babel/plugin-transform-typescript@^7.13.0", "@babel/plugin-transform-typescript@^7.14.4":
+ version "7.14.4"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.14.4.tgz#1c48829fa6d5f2de646060cd08abb6cda4b521a7"
+ integrity sha512-WYdcGNEO7mCCZ2XzRlxwGj3PgeAr50ifkofOUC/+IN/GzKLB+biDPVBUAQN2C/dVZTvEXCp80kfQ1FFZPrwykQ==
dependencies:
- "@babel/helper-create-class-features-plugin" "^7.13.0"
+ "@babel/helper-create-class-features-plugin" "^7.14.4"
"@babel/helper-plugin-utils" "^7.13.0"
"@babel/plugin-syntax-typescript" "^7.12.13"
@@ -1242,47 +1286,52 @@
core-js "^2.6.5"
regenerator-runtime "^0.13.2"
-"@babel/preset-env@^7.12.1", "@babel/preset-env@^7.12.11":
- version "7.13.0"
- resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.13.0.tgz#6ecc3daf63627792ec03d1076dbb54b4928a9e0d"
- integrity sha512-UeU4bHlskjdwqNnaiBEYTXbL7dtuUDtOOkcS2c64wR2UqwUMzlRsvxoKQtsVJR579dS3Wmxnb7HRc9U5mSzQhA==
+"@babel/preset-env@^7.12.1", "@babel/preset-env@^7.12.11", "@babel/preset-env@^7.14.4":
+ version "7.14.4"
+ resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.14.4.tgz#73fc3228c59727e5e974319156f304f0d6685a2d"
+ integrity sha512-GwMMsuAnDtULyOtuxHhzzuSRxFeP0aR/LNzrHRzP8y6AgDNgqnrfCCBm/1cRdTU75tRs28Eh76poHLcg9VF0LA==
dependencies:
- "@babel/compat-data" "^7.13.0"
- "@babel/helper-compilation-targets" "^7.13.0"
+ "@babel/compat-data" "^7.14.4"
+ "@babel/helper-compilation-targets" "^7.14.4"
"@babel/helper-plugin-utils" "^7.13.0"
"@babel/helper-validator-option" "^7.12.17"
- "@babel/plugin-proposal-async-generator-functions" "^7.13.0"
+ "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining" "^7.13.12"
+ "@babel/plugin-proposal-async-generator-functions" "^7.14.2"
"@babel/plugin-proposal-class-properties" "^7.13.0"
- "@babel/plugin-proposal-dynamic-import" "^7.12.17"
- "@babel/plugin-proposal-export-namespace-from" "^7.12.13"
- "@babel/plugin-proposal-json-strings" "^7.12.13"
- "@babel/plugin-proposal-logical-assignment-operators" "^7.12.13"
- "@babel/plugin-proposal-nullish-coalescing-operator" "^7.13.0"
- "@babel/plugin-proposal-numeric-separator" "^7.12.13"
- "@babel/plugin-proposal-object-rest-spread" "^7.13.0"
- "@babel/plugin-proposal-optional-catch-binding" "^7.12.13"
- "@babel/plugin-proposal-optional-chaining" "^7.13.0"
+ "@babel/plugin-proposal-class-static-block" "^7.14.3"
+ "@babel/plugin-proposal-dynamic-import" "^7.14.2"
+ "@babel/plugin-proposal-export-namespace-from" "^7.14.2"
+ "@babel/plugin-proposal-json-strings" "^7.14.2"
+ "@babel/plugin-proposal-logical-assignment-operators" "^7.14.2"
+ "@babel/plugin-proposal-nullish-coalescing-operator" "^7.14.2"
+ "@babel/plugin-proposal-numeric-separator" "^7.14.2"
+ "@babel/plugin-proposal-object-rest-spread" "^7.14.4"
+ "@babel/plugin-proposal-optional-catch-binding" "^7.14.2"
+ "@babel/plugin-proposal-optional-chaining" "^7.14.2"
"@babel/plugin-proposal-private-methods" "^7.13.0"
+ "@babel/plugin-proposal-private-property-in-object" "^7.14.0"
"@babel/plugin-proposal-unicode-property-regex" "^7.12.13"
- "@babel/plugin-syntax-async-generators" "^7.8.0"
+ "@babel/plugin-syntax-async-generators" "^7.8.4"
"@babel/plugin-syntax-class-properties" "^7.12.13"
- "@babel/plugin-syntax-dynamic-import" "^7.8.0"
+ "@babel/plugin-syntax-class-static-block" "^7.12.13"
+ "@babel/plugin-syntax-dynamic-import" "^7.8.3"
"@babel/plugin-syntax-export-namespace-from" "^7.8.3"
- "@babel/plugin-syntax-json-strings" "^7.8.0"
+ "@babel/plugin-syntax-json-strings" "^7.8.3"
"@babel/plugin-syntax-logical-assignment-operators" "^7.10.4"
- "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.0"
+ "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3"
"@babel/plugin-syntax-numeric-separator" "^7.10.4"
- "@babel/plugin-syntax-object-rest-spread" "^7.8.0"
- "@babel/plugin-syntax-optional-catch-binding" "^7.8.0"
- "@babel/plugin-syntax-optional-chaining" "^7.8.0"
+ "@babel/plugin-syntax-object-rest-spread" "^7.8.3"
+ "@babel/plugin-syntax-optional-catch-binding" "^7.8.3"
+ "@babel/plugin-syntax-optional-chaining" "^7.8.3"
+ "@babel/plugin-syntax-private-property-in-object" "^7.14.0"
"@babel/plugin-syntax-top-level-await" "^7.12.13"
"@babel/plugin-transform-arrow-functions" "^7.13.0"
"@babel/plugin-transform-async-to-generator" "^7.13.0"
"@babel/plugin-transform-block-scoped-functions" "^7.12.13"
- "@babel/plugin-transform-block-scoping" "^7.12.13"
- "@babel/plugin-transform-classes" "^7.13.0"
+ "@babel/plugin-transform-block-scoping" "^7.14.4"
+ "@babel/plugin-transform-classes" "^7.14.4"
"@babel/plugin-transform-computed-properties" "^7.13.0"
- "@babel/plugin-transform-destructuring" "^7.13.0"
+ "@babel/plugin-transform-destructuring" "^7.14.4"
"@babel/plugin-transform-dotall-regex" "^7.12.13"
"@babel/plugin-transform-duplicate-keys" "^7.12.13"
"@babel/plugin-transform-exponentiation-operator" "^7.12.13"
@@ -1290,16 +1339,16 @@
"@babel/plugin-transform-function-name" "^7.12.13"
"@babel/plugin-transform-literals" "^7.12.13"
"@babel/plugin-transform-member-expression-literals" "^7.12.13"
- "@babel/plugin-transform-modules-amd" "^7.13.0"
- "@babel/plugin-transform-modules-commonjs" "^7.13.0"
- "@babel/plugin-transform-modules-systemjs" "^7.12.13"
- "@babel/plugin-transform-modules-umd" "^7.13.0"
+ "@babel/plugin-transform-modules-amd" "^7.14.2"
+ "@babel/plugin-transform-modules-commonjs" "^7.14.0"
+ "@babel/plugin-transform-modules-systemjs" "^7.13.8"
+ "@babel/plugin-transform-modules-umd" "^7.14.0"
"@babel/plugin-transform-named-capturing-groups-regex" "^7.12.13"
"@babel/plugin-transform-new-target" "^7.12.13"
"@babel/plugin-transform-object-super" "^7.12.13"
- "@babel/plugin-transform-parameters" "^7.13.0"
+ "@babel/plugin-transform-parameters" "^7.14.2"
"@babel/plugin-transform-property-literals" "^7.12.13"
- "@babel/plugin-transform-regenerator" "^7.12.13"
+ "@babel/plugin-transform-regenerator" "^7.13.15"
"@babel/plugin-transform-reserved-words" "^7.12.13"
"@babel/plugin-transform-shorthand-properties" "^7.12.13"
"@babel/plugin-transform-spread" "^7.13.0"
@@ -1308,26 +1357,27 @@
"@babel/plugin-transform-typeof-symbol" "^7.12.13"
"@babel/plugin-transform-unicode-escapes" "^7.12.13"
"@babel/plugin-transform-unicode-regex" "^7.12.13"
- "@babel/preset-modules" "^0.1.3"
- "@babel/types" "^7.13.0"
- babel-plugin-polyfill-corejs2 "^0.1.2"
- babel-plugin-polyfill-corejs3 "^0.1.2"
- babel-plugin-polyfill-regenerator "^0.1.1"
+ "@babel/preset-modules" "^0.1.4"
+ "@babel/types" "^7.14.4"
+ babel-plugin-polyfill-corejs2 "^0.2.0"
+ babel-plugin-polyfill-corejs3 "^0.2.0"
+ babel-plugin-polyfill-regenerator "^0.2.0"
core-js-compat "^3.9.0"
- semver "7.0.0"
+ semver "^6.3.0"
-"@babel/preset-flow@^7.0.0", "@babel/preset-flow@^7.12.1", "@babel/preset-flow@^7.9.0":
- version "7.12.1"
- resolved "https://registry.yarnpkg.com/@babel/preset-flow/-/preset-flow-7.12.1.tgz#1a81d376c5a9549e75352a3888f8c273455ae940"
- integrity sha512-UAoyMdioAhM6H99qPoKvpHMzxmNVXno8GYU/7vZmGaHk6/KqfDYL1W0NxszVbJ2EP271b7e6Ox+Vk2A9QsB3Sw==
+"@babel/preset-flow@^7.0.0", "@babel/preset-flow@^7.12.1", "@babel/preset-flow@^7.13.13", "@babel/preset-flow@^7.9.0":
+ version "7.13.13"
+ resolved "https://registry.yarnpkg.com/@babel/preset-flow/-/preset-flow-7.13.13.tgz#a61a1c149b3f77589d795287744393444d5cdd9e"
+ integrity sha512-MDtwtamMifqq3R2mC7l3A3uFalUb3NH5TIBQWjN/epEPlZktcLq4se3J+ivckKrLMGsR7H9LW8+pYuIUN9tsKg==
dependencies:
- "@babel/helper-plugin-utils" "^7.10.4"
- "@babel/plugin-transform-flow-strip-types" "^7.12.1"
+ "@babel/helper-plugin-utils" "^7.13.0"
+ "@babel/helper-validator-option" "^7.12.17"
+ "@babel/plugin-transform-flow-strip-types" "^7.13.0"
-"@babel/preset-modules@^0.1.3":
- version "0.1.3"
- resolved "https://registry.yarnpkg.com/@babel/preset-modules/-/preset-modules-0.1.3.tgz#13242b53b5ef8c883c3cf7dddd55b36ce80fbc72"
- integrity sha512-Ra3JXOHBq2xd56xSF7lMKXdjBn3T772Y1Wet3yWnkDly9zHvJki029tAFzvAAK5cf4YV3yoxuP61crYRol6SVg==
+"@babel/preset-modules@^0.1.4":
+ version "0.1.4"
+ resolved "https://registry.yarnpkg.com/@babel/preset-modules/-/preset-modules-0.1.4.tgz#362f2b68c662842970fdb5e254ffc8fc1c2e415e"
+ integrity sha512-J36NhwnfdzpmH41M1DrnkkgAqhZaqr/NBdPfQ677mLzlaXo+oDiv1deyCDtgAhz8p328otdob0Du7+xgHGZbKg==
dependencies:
"@babel/helper-plugin-utils" "^7.0.0"
"@babel/plugin-proposal-unicode-property-regex" "^7.4.4"
@@ -1335,15 +1385,16 @@
"@babel/types" "^7.4.4"
esutils "^2.0.2"
-"@babel/preset-react@^7.12.10", "@babel/preset-react@^7.12.5", "@babel/preset-react@^7.9.4":
- version "7.12.13"
- resolved "https://registry.yarnpkg.com/@babel/preset-react/-/preset-react-7.12.13.tgz#5f911b2eb24277fa686820d5bd81cad9a0602a0a"
- integrity sha512-TYM0V9z6Abb6dj1K7i5NrEhA13oS5ujUYQYDfqIBXYHOc2c2VkFgc+q9kyssIyUfy4/hEwqrgSlJ/Qgv8zJLsA==
+"@babel/preset-react@^7.12.10", "@babel/preset-react@^7.13.13", "@babel/preset-react@^7.9.4":
+ version "7.13.13"
+ resolved "https://registry.yarnpkg.com/@babel/preset-react/-/preset-react-7.13.13.tgz#fa6895a96c50763fe693f9148568458d5a839761"
+ integrity sha512-gx+tDLIE06sRjKJkVtpZ/t3mzCDOnPG+ggHZG9lffUbX8+wC739x20YQc9V35Do6ZAxaUc/HhVHIiOzz5MvDmA==
dependencies:
- "@babel/helper-plugin-utils" "^7.12.13"
+ "@babel/helper-plugin-utils" "^7.13.0"
+ "@babel/helper-validator-option" "^7.12.17"
"@babel/plugin-transform-react-display-name" "^7.12.13"
- "@babel/plugin-transform-react-jsx" "^7.12.13"
- "@babel/plugin-transform-react-jsx-development" "^7.12.12"
+ "@babel/plugin-transform-react-jsx" "^7.13.12"
+ "@babel/plugin-transform-react-jsx-development" "^7.12.17"
"@babel/plugin-transform-react-pure-annotations" "^7.12.1"
"@babel/preset-stage-0@^7.8.3":
@@ -1351,13 +1402,14 @@
resolved "https://registry.yarnpkg.com/@babel/preset-stage-0/-/preset-stage-0-7.8.3.tgz#b6a0eca1a3b72e07f9caf58f998e97568028f6f5"
integrity sha512-+l6FlG1j73t4wh78W41StbcCz0/9a1/y+vxfnjtHl060kSmcgMfGzK9MEkLvrCOXfhp9RCX+d88sm6rOqxEIEQ==
-"@babel/preset-typescript@^7.1.0", "@babel/preset-typescript@^7.12.1":
- version "7.12.1"
- resolved "https://registry.yarnpkg.com/@babel/preset-typescript/-/preset-typescript-7.12.1.tgz#86480b483bb97f75036e8864fe404cc782cc311b"
- integrity sha512-hNK/DhmoJPsksdHuI/RVrcEws7GN5eamhi28JkO52MqIxU8Z0QpmiSOQxZHWOHV7I3P4UjHV97ay4TcamMA6Kw==
+"@babel/preset-typescript@^7.1.0", "@babel/preset-typescript@^7.13.0":
+ version "7.13.0"
+ resolved "https://registry.yarnpkg.com/@babel/preset-typescript/-/preset-typescript-7.13.0.tgz#ab107e5f050609d806fbb039bec553b33462c60a"
+ integrity sha512-LXJwxrHy0N3f6gIJlYbLta1D9BDtHpQeqwzM0LIfjDlr6UE/D5Mc7W4iDiQzaE+ks0sTjT26ArcHWnJVt0QiHw==
dependencies:
- "@babel/helper-plugin-utils" "^7.10.4"
- "@babel/plugin-transform-typescript" "^7.12.1"
+ "@babel/helper-plugin-utils" "^7.13.0"
+ "@babel/helper-validator-option" "^7.12.17"
+ "@babel/plugin-transform-typescript" "^7.13.0"
"@babel/register@^7.0.0", "@babel/register@^7.13.0":
version "7.13.8"
@@ -1378,17 +1430,17 @@
core-js-pure "^3.0.0"
regenerator-runtime "^0.13.4"
-"@babel/runtime@^7.0.0", "@babel/runtime@^7.1.2", "@babel/runtime@^7.10.0", "@babel/runtime@^7.10.2", "@babel/runtime@^7.10.5", "@babel/runtime@^7.11.2", "@babel/runtime@^7.12.5", "@babel/runtime@^7.13.9", "@babel/runtime@^7.3.4", "@babel/runtime@^7.5.5", "@babel/runtime@^7.6.3", "@babel/runtime@^7.7.2", "@babel/runtime@^7.7.6", "@babel/runtime@^7.8.4", "@babel/runtime@^7.9.2":
- version "7.13.9"
- resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.13.9.tgz#97dbe2116e2630c489f22e0656decd60aaa1fcee"
- integrity sha512-aY2kU+xgJ3dJ1eU6FMB9EH8dIe8dmusF1xEku52joLvw6eAFN0AI+WxCLDnpev2LEejWBAy2sBvBOBAjI3zmvA==
+"@babel/runtime@^7.0.0", "@babel/runtime@^7.1.2", "@babel/runtime@^7.10.0", "@babel/runtime@^7.10.2", "@babel/runtime@^7.10.5", "@babel/runtime@^7.11.2", "@babel/runtime@^7.12.5", "@babel/runtime@^7.13.9", "@babel/runtime@^7.14.0", "@babel/runtime@^7.3.4", "@babel/runtime@^7.5.5", "@babel/runtime@^7.7.2", "@babel/runtime@^7.7.6", "@babel/runtime@^7.8.4", "@babel/runtime@^7.9.2":
+ version "7.14.0"
+ resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.14.0.tgz#46794bc20b612c5f75e62dd071e24dfd95f1cbe6"
+ integrity sha512-JELkvo/DlpNdJ7dlyw/eY7E0suy5i5GQH+Vlxaq1nsNJ+H7f4Vtv3jMeCEgRhZZQFXTjldYfQgv2qmM6M1v5wA==
dependencies:
regenerator-runtime "^0.13.4"
-"@babel/standalone@^7.12.6":
- version "7.12.6"
- resolved "https://registry.yarnpkg.com/@babel/standalone/-/standalone-7.12.6.tgz#fa59cf6f1cea940a790179f1375394ab31f025b9"
- integrity sha512-yA/OV3jN1nhr0JsAdYWAqbeZ7cAOw/6Fh52rxVMzujr0HF4Z3cau0JBzJfQppFfR9IArrUtcqhBu/+Q/IevoyQ==
+"@babel/standalone@^7.14.4":
+ version "7.14.4"
+ resolved "https://registry.yarnpkg.com/@babel/standalone/-/standalone-7.14.4.tgz#b50522a9119bea33f0d8e13e7f7d51274fad0530"
+ integrity sha512-oBvBtSdACtNeH2YAg2kyZhfbqfKQK7lgudfHo8IC03JiBrfuvvMlfkBaSrqxrpf9DmUCZJnDZH3uLNVN5QoXog==
"@babel/template@^7.0.0", "@babel/template@^7.10.4", "@babel/template@^7.12.13", "@babel/template@^7.12.7", "@babel/template@^7.3.3":
version "7.12.13"
@@ -1399,24 +1451,24 @@
"@babel/parser" "^7.12.13"
"@babel/types" "^7.12.13"
-"@babel/traverse@^7.0.0", "@babel/traverse@^7.1.0", "@babel/traverse@^7.10.5", "@babel/traverse@^7.11.5", "@babel/traverse@^7.12.1", "@babel/traverse@^7.12.5", "@babel/traverse@^7.12.9", "@babel/traverse@^7.13.0", "@babel/traverse@^7.14.0":
- version "7.14.0"
- resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.14.0.tgz#cea0dc8ae7e2b1dec65f512f39f3483e8cc95aef"
- integrity sha512-dZ/a371EE5XNhTHomvtuLTUyx6UEoJmYX+DT5zBCQN3McHemsuIaKKYqsc/fs26BEkHs/lBZy0J571LP5z9kQA==
+"@babel/traverse@^7.0.0", "@babel/traverse@^7.1.0", "@babel/traverse@^7.10.5", "@babel/traverse@^7.12.1", "@babel/traverse@^7.12.9", "@babel/traverse@^7.13.0", "@babel/traverse@^7.13.15", "@babel/traverse@^7.14.0", "@babel/traverse@^7.14.2":
+ version "7.14.2"
+ resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.14.2.tgz#9201a8d912723a831c2679c7ebbf2fe1416d765b"
+ integrity sha512-TsdRgvBFHMyHOOzcP9S6QU0QQtjxlRpEYOy3mcCO5RgmC305ki42aSAmfZEMSSYBla2oZ9BMqYlncBaKmD/7iA==
dependencies:
"@babel/code-frame" "^7.12.13"
- "@babel/generator" "^7.14.0"
- "@babel/helper-function-name" "^7.12.13"
+ "@babel/generator" "^7.14.2"
+ "@babel/helper-function-name" "^7.14.2"
"@babel/helper-split-export-declaration" "^7.12.13"
- "@babel/parser" "^7.14.0"
- "@babel/types" "^7.14.0"
+ "@babel/parser" "^7.14.2"
+ "@babel/types" "^7.14.2"
debug "^4.1.0"
globals "^11.1.0"
-"@babel/types@^7.0.0", "@babel/types@^7.0.0-beta.49", "@babel/types@^7.10.5", "@babel/types@^7.12.1", "@babel/types@^7.12.13", "@babel/types@^7.12.17", "@babel/types@^7.12.6", "@babel/types@^7.12.7", "@babel/types@^7.13.0", "@babel/types@^7.14.0", "@babel/types@^7.14.1", "@babel/types@^7.3.0", "@babel/types@^7.3.3", "@babel/types@^7.4.4":
- version "7.14.1"
- resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.14.1.tgz#095bd12f1c08ab63eff6e8f7745fa7c9cc15a9db"
- integrity sha512-S13Qe85fzLs3gYRUnrpyeIrBJIMYv33qSTg1qoBwiG6nPKwUWAD9odSzWhEedpwOIzSEI6gbdQIWEMiCI42iBA==
+"@babel/types@^7.0.0", "@babel/types@^7.0.0-beta.49", "@babel/types@^7.10.5", "@babel/types@^7.12.1", "@babel/types@^7.12.13", "@babel/types@^7.12.7", "@babel/types@^7.13.0", "@babel/types@^7.13.12", "@babel/types@^7.13.16", "@babel/types@^7.14.0", "@babel/types@^7.14.2", "@babel/types@^7.14.4", "@babel/types@^7.3.0", "@babel/types@^7.3.3", "@babel/types@^7.4.4":
+ version "7.14.4"
+ resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.14.4.tgz#bfd6980108168593b38b3eb48a24aa026b919bc0"
+ integrity sha512-lCj4aIs0xUefJFQnwwQv2Bxg7Omd6bgquZ6LGC+gGMh6/s5qDVfjuCMlDmYQ15SLsWHd9n+X3E75lKIhl5Lkiw==
dependencies:
"@babel/helper-validator-identifier" "^7.14.0"
to-fast-properties "^2.0.0"
@@ -4662,20 +4714,20 @@
"@types/node" "*"
form-data "^3.0.0"
-"@types/node@*", "@types/node@>= 8", "@types/node@^14.10.2", "@types/node@^14.14.10", "@types/node@^14.14.5":
- version "14.14.31"
- resolved "https://registry.yarnpkg.com/@types/node/-/node-14.14.31.tgz#72286bd33d137aa0d152d47ec7c1762563d34055"
- integrity sha512-vFHy/ezP5qI0rFgJ7aQnjDXwAMrG0KqqIH7tQG5PPv3BWBayOPIQNBjVc/P6hhdZfMx51REc6tfDNXHUio893g==
+"@types/node@*", "@types/node@>= 8", "@types/node@^15.0.1":
+ version "15.0.1"
+ resolved "https://registry.yarnpkg.com/@types/node/-/node-15.0.1.tgz#ef34dea0881028d11398be5bf4e856743e3dc35a"
+ integrity sha512-TMkXt0Ck1y0KKsGr9gJtWGjttxlZnnvDtphxUOSd0bfaR6Q1jle+sPvrzNR1urqYTWMinoKvjKfXUGsumaO1PA==
"@types/node@^12.20.6":
version "12.20.6"
resolved "https://registry.yarnpkg.com/@types/node/-/node-12.20.6.tgz#7b73cce37352936e628c5ba40326193443cfba25"
integrity sha512-sRVq8d+ApGslmkE9e3i+D3gFGk7aZHAT+G4cIpIEdLJYPsWiSPwcAnJEjddLQQDqV3Ra2jOclX/Sv6YrvGYiWA==
-"@types/node@^15.0.1":
- version "15.0.1"
- resolved "https://registry.yarnpkg.com/@types/node/-/node-15.0.1.tgz#ef34dea0881028d11398be5bf4e856743e3dc35a"
- integrity sha512-TMkXt0Ck1y0KKsGr9gJtWGjttxlZnnvDtphxUOSd0bfaR6Q1jle+sPvrzNR1urqYTWMinoKvjKfXUGsumaO1PA==
+"@types/node@^14.10.2", "@types/node@^14.14.10", "@types/node@^14.14.5":
+ version "14.14.31"
+ resolved "https://registry.yarnpkg.com/@types/node/-/node-14.14.31.tgz#72286bd33d137aa0d152d47ec7c1762563d34055"
+ integrity sha512-vFHy/ezP5qI0rFgJ7aQnjDXwAMrG0KqqIH7tQG5PPv3BWBayOPIQNBjVc/P6hhdZfMx51REc6tfDNXHUio893g==
"@types/node@^8.5.7":
version "8.10.59"
@@ -6718,29 +6770,29 @@ [email protected]:
reselect "^4.0.0"
resolve "^1.13.1"
-babel-plugin-polyfill-corejs2@^0.1.2:
- version "0.1.2"
- resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.1.2.tgz#3e5e7ef339dd84ca34c6a20605e6d4ef62aba3b1"
- integrity sha512-sSGAKN95gTnXjg3RtGI9QBW/xSqXy5fo2Bt+W5WkhconIO+QxuDZChyjZYiY90xE3MQRI1k73Dh/HAe86cWf8A==
+babel-plugin-polyfill-corejs2@^0.2.0:
+ version "0.2.2"
+ resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.2.2.tgz#e9124785e6fd94f94b618a7954e5693053bf5327"
+ integrity sha512-kISrENsJ0z5dNPq5eRvcctITNHYXWOA4DUZRFYCz3jYCcvTb/A546LIddmoGNMVYg2U38OyFeNosQwI9ENTqIQ==
dependencies:
- "@babel/compat-data" "^7.11.0"
- "@babel/helper-define-polyfill-provider" "^0.1.0"
+ "@babel/compat-data" "^7.13.11"
+ "@babel/helper-define-polyfill-provider" "^0.2.2"
semver "^6.1.1"
-babel-plugin-polyfill-corejs3@^0.1.2:
- version "0.1.2"
- resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.1.2.tgz#39b0d46744360738237bd54052af852c84d74ebf"
- integrity sha512-7neRvPKcdvZ4X9IpYBCmT+ceVUKC1idX7DJN5sRtiPP9d0ABD6k5x/QvXTiz/9wMp86FBDX6Gz0g7WQY2lRfgw==
+babel-plugin-polyfill-corejs3@^0.2.0:
+ version "0.2.2"
+ resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.2.2.tgz#7424a1682ee44baec817327710b1b094e5f8f7f5"
+ integrity sha512-l1Cf8PKk12eEk5QP/NQ6TH8A1pee6wWDJ96WjxrMXFLHLOBFzYM4moG80HFgduVhTqAFez4alnZKEhP/bYHg0A==
dependencies:
- "@babel/helper-define-polyfill-provider" "^0.1.0"
- core-js-compat "^3.8.1"
+ "@babel/helper-define-polyfill-provider" "^0.2.2"
+ core-js-compat "^3.9.1"
-babel-plugin-polyfill-regenerator@^0.1.1:
- version "0.1.1"
- resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.1.1.tgz#3b9b907d1554747ff131bd5c6da81713e342db73"
- integrity sha512-QZlnPDLX2JEXP8RQGeP4owNxRKUAqHD+rdlyRHV8ENeCcI9ni2qT9IzxT9jYW1aZrxCgehD31LztlMaA68zoqQ==
+babel-plugin-polyfill-regenerator@^0.2.0:
+ version "0.2.2"
+ resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.2.2.tgz#b310c8d642acada348c1fa3b3e6ce0e851bee077"
+ integrity sha512-Goy5ghsc21HgPDFtzRkSirpZVW35meGoTmTOb2bxqdl60ghub4xOidgNTHaZfQ2FaxQsKmwvXtOAkcIS4SMBWg==
dependencies:
- "@babel/helper-define-polyfill-provider" "^0.1.0"
+ "@babel/helper-define-polyfill-provider" "^0.2.2"
babel-plugin-preval@^3.0.0:
version "3.0.1"
@@ -7323,7 +7375,7 @@ [email protected]:
escalade "^3.0.2"
node-releases "^1.1.61"
-browserslist@^4.0.0, browserslist@^4.12.2, browserslist@^4.13.0, browserslist@^4.14.5, browserslist@^4.16.0, browserslist@^4.16.3:
+browserslist@^4.0.0, browserslist@^4.12.2, browserslist@^4.13.0, browserslist@^4.14.5, browserslist@^4.16.0, browserslist@^4.16.3, browserslist@^4.16.6:
version "4.16.6"
resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.16.6.tgz#d7901277a5a88e554ed305b183ec9b0c08f66fa2"
integrity sha512-Wspk/PqO+4W9qp5iUTJsa1B/QrYn1keNCcEP5OvP7WBwT4KaDly0uONYmC6Xa3Z5IqnUgS0KcgLYu1l74x0ZXQ==
@@ -8935,7 +8987,7 @@ copyfiles@^2.3.0:
through2 "^2.0.1"
yargs "^15.3.1"
[email protected], core-js-compat@^3.8.1, core-js-compat@^3.9.0:
[email protected]:
version "3.9.0"
resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.9.0.tgz#29da39385f16b71e1915565aa0385c4e0963ad56"
integrity sha512-YK6fwFjCOKWwGnjFUR3c544YsnA/7DoLL0ysncuOJ4pwbriAtOpvM2bygdlcXbvQCQZ7bBU9CL4t7tGl7ETRpQ==
@@ -8943,6 +8995,14 @@ [email protected], core-js-compat@^3.8.1, core-js-compat@^3.9.0:
browserslist "^4.16.3"
semver "7.0.0"
+core-js-compat@^3.9.0, core-js-compat@^3.9.1:
+ version "3.13.1"
+ resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.13.1.tgz#05444caa8f153be0c67db03cf8adb8ec0964e58e"
+ integrity sha512-mdrcxc0WznfRd8ZicEZh1qVeJ2mu6bwQFh8YVUK48friy/FOwFV5EJj9/dlh+nMQ74YusdVfBFDuomKgUspxWQ==
+ dependencies:
+ browserslist "^4.16.6"
+ semver "7.0.0"
+
core-js-pure@^3.0.0:
version "3.6.4"
resolved "https://registry.yarnpkg.com/core-js-pure/-/core-js-pure-3.6.4.tgz#4bf1ba866e25814f149d4e9aaa08c36173506e3a"
@@ -11251,14 +11311,6 @@ eslint-rule-composer@^0.3.0:
resolved "https://registry.yarnpkg.com/eslint-rule-composer/-/eslint-rule-composer-0.3.0.tgz#79320c927b0c5c0d3d3d2b76c8b4a488f25bbaf9"
integrity sha512-bt+Sh8CtDmn2OajxvNO+BX7Wn4CIWMpTRm3MaiKPCQcnnlm0CS2mhui6QaoeQugs+3Kj2ESKEEGJUdVafwhiCg==
[email protected]:
- version "5.1.0"
- resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-5.1.0.tgz#d0f971dfe59c69e0cada684b23d49dbf82600ce5"
- integrity sha512-iiGRvtxWqgtx5m8EyQUJihBloE4EnYeGE/bz1wSPwJE6tZuJUtHlhqDM4Xj2ukE8Dyy1+HCZ4hE0fzIVMzb58w==
- dependencies:
- esrecurse "^4.1.0"
- estraverse "^4.1.1"
-
eslint-scope@^4.0.3:
version "4.0.3"
resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-4.0.3.tgz#ca03833310f6889a3264781aa82e63eb9cfe7848"
@@ -11266,7 +11318,7 @@ eslint-scope@^4.0.3:
esrecurse "^4.1.0"
estraverse "^4.1.1"
-eslint-scope@^5.0.0, eslint-scope@^5.1.1:
+eslint-scope@^5.0.0, eslint-scope@^5.1.0, eslint-scope@^5.1.1:
version "5.1.1"
resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-5.1.1.tgz#e786e59a66cb92b3f6c1fb0d508aab174848f48c"
integrity sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==
@@ -11293,10 +11345,10 @@ eslint-visitor-keys@^1.1.0, eslint-visitor-keys@^1.3.0:
resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz#30ebd1ef7c2fdff01c3a4f151044af25fab0523e"
integrity sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==
-eslint-visitor-keys@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-2.0.0.tgz#21fdc8fbcd9c795cc0321f0563702095751511a8"
- integrity sha512-QudtT6av5WXels9WjIM7qz1XD1cWGvX4gGXvp/zBn9nXG02D0utdU3Em2m/QjTnrsk6bBjmCygl3rmj118msQQ==
+eslint-visitor-keys@^2.0.0, eslint-visitor-keys@^2.1.0:
+ version "2.1.0"
+ resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz#f65328259305927392c938ed44eb0a5c9b2bd303"
+ integrity sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==
eslint-webpack-plugin@^2.5.3:
version "2.5.3"
@@ -11532,12 +11584,7 @@ events@^1.1.0, events@^1.1.1:
version "1.1.1"
resolved "https://registry.yarnpkg.com/events/-/events-1.1.1.tgz#9ebdb7635ad099c70dcc4c2a1f5004288e8bd924"
-events@^3.0.0, events@^3.2.0:
- version "3.2.0"
- resolved "https://registry.yarnpkg.com/events/-/events-3.2.0.tgz#93b87c18f8efcd4202a461aec4dfc0556b639379"
- integrity sha512-/46HWwbfCX2xTawVfkKLGxMifJYQBWMwY1mjywRtb4c9x8l5NP3KoJtnIOiL1hfdRkIuYhETxQlo62IF8tcnlg==
-
-events@^3.3.0:
+events@^3.0.0, events@^3.2.0, events@^3.3.0:
version "3.3.0"
resolved "https://registry.yarnpkg.com/events/-/events-3.3.0.tgz#31a95ad0a924e2d2c419a813aeb2c4e878ea7400"
integrity sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==
@@ -14691,26 +14738,7 @@ inquirer@^6.2.0:
strip-ansi "^5.1.0"
through "^2.3.6"
-inquirer@^7.0.0:
- version "7.0.0"
- resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-7.0.0.tgz#9e2b032dde77da1db5db804758b8fea3a970519a"
- integrity sha512-rSdC7zelHdRQFkWnhsMu2+2SO41mpv2oF2zy4tMhmiLWkcKbOAs87fWAJhVXttKVwhdZvymvnuM95EyEXg2/tQ==
- dependencies:
- ansi-escapes "^4.2.1"
- chalk "^2.4.2"
- cli-cursor "^3.1.0"
- cli-width "^2.0.0"
- external-editor "^3.0.3"
- figures "^3.0.0"
- lodash "^4.17.15"
- mute-stream "0.0.8"
- run-async "^2.2.0"
- rxjs "^6.4.0"
- string-width "^4.1.0"
- strip-ansi "^5.1.0"
- through "^2.3.6"
-
-inquirer@^7.3.3:
+inquirer@^7.0.0, inquirer@^7.3.3:
version "7.3.3"
resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-7.3.3.tgz#04d176b2af04afc157a83fd7c100e98ee0aad003"
integrity sha512-JG3eIAj5V9CwcGvuOmoo6LB9kbAYT8HXffUl6memuszlwDC/qvFAJw49XJ5NROSFNPxp3iQg1GqkFhaY/CR0IA==
@@ -19419,12 +19447,7 @@ node-libs-browser@^2.2.1:
util "^0.11.0"
vm-browserify "^1.0.1"
-node-match-path@^0.6.0:
- version "0.6.0"
- resolved "https://registry.yarnpkg.com/node-match-path/-/node-match-path-0.6.0.tgz#4674742f4e15854045198ebc40d8b9b2d64aa2f6"
- integrity sha512-mld1LbiLaufULAYFPAWgNEG4P0ccL49otlL/nbF5VBQLATuzfS1BGYV1rjRMsxbc0vcnasikFqGHoKDFMQylMw==
-
-node-match-path@^0.6.1:
+node-match-path@^0.6.0, node-match-path@^0.6.1:
version "0.6.3"
resolved "https://registry.yarnpkg.com/node-match-path/-/node-match-path-0.6.3.tgz#55dd8443d547f066937a0752dce462ea7dc27551"
integrity sha512-fB1reOHKLRZCJMAka28hIxCwQLxGmd7WewOCBDYKpyA1KXi68A7vaGgdZAPhY2E6SXoYt3KqYCCvXLJ+O0Fu/Q==
@@ -24519,13 +24542,7 @@ rsvp@^4.8.4:
resolved "https://registry.yarnpkg.com/rsvp/-/rsvp-4.8.5.tgz#c8f155311d167f68f21e168df71ec5b083113734"
integrity sha512-nfMOlASu9OnRJo1mbEk2cz0D56a1MBNrJ7orjRZQG10XDyuvwksKbuXNp6qa+kbn839HwjwhBzhFmdsaEAfauA==
-run-async@^2.2.0:
- version "2.3.0"
- resolved "https://registry.yarnpkg.com/run-async/-/run-async-2.3.0.tgz#0371ab4ae0bdd720d4166d7dfda64ff7a445a6c0"
- dependencies:
- is-promise "^2.1.0"
-
-run-async@^2.4.0:
+run-async@^2.2.0, run-async@^2.4.0:
version "2.4.1"
resolved "https://registry.yarnpkg.com/run-async/-/run-async-2.4.1.tgz#8440eccf99ea3e70bd409d49aab88e10c189a455"
integrity sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ==
@@ -24555,14 +24572,7 @@ rx-lite@*, rx-lite@^4.0.8:
version "4.0.8"
resolved "https://registry.yarnpkg.com/rx-lite/-/rx-lite-4.0.8.tgz#0b1e11af8bc44836f04a6407e92da42467b79444"
-rxjs@^6.4.0, rxjs@^6.5.5, rxjs@^6.6.3:
- version "6.6.3"
- resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-6.6.3.tgz#8ca84635c4daa900c0d3967a6ee7ac60271ee552"
- integrity sha512-trsQc+xYYXZ3urjOiJOuCOa5N3jAZ3eiSpQB5hIT8zGlL2QfnHLJ2r7GMkBGuIausdJN1OneaI6gQlsqNHHmZQ==
- dependencies:
- tslib "^1.9.0"
-
-rxjs@^6.6.0:
+rxjs@^6.4.0, rxjs@^6.5.5, rxjs@^6.6.0, rxjs@^6.6.3:
version "6.6.7"
resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-6.6.7.tgz#90ac018acabf491bf65044235d5863c4dab804c9"
integrity sha512-hTdwr+7yYNIT5n4AMYp85KA6yw2Va0FLa3Rguvbpa4W3I5xynaBZo41cM3XM+4Q6fRMj3sBYIR1VAmZMXYJvRQ==
|
6d963af6d86cd5e9acf4db0d4be6b1ef37fb8dcf
|
2020-09-10 14:39:25
|
Kyle Mathews
|
fix(gatsby-recipes): renable e2e test for npm package resource & fix dev/prod resource bug (#26699)
| false
|
renable e2e test for npm package resource & fix dev/prod resource bug (#26699)
|
fix
|
diff --git a/packages/gatsby-recipes/package.json b/packages/gatsby-recipes/package.json
index 0b8b93d96c4ca..5d8c4eb477e8e 100644
--- a/packages/gatsby-recipes/package.json
+++ b/packages/gatsby-recipes/package.json
@@ -75,6 +75,7 @@
"remark-parse": "^6.0.3",
"remark-stringify": "^8.1.0",
"resolve-cwd": "^3.0.0",
+ "resolve-from": "^5.0.0",
"semver": "^7.3.2",
"single-trailing-newline": "^1.0.0",
"strip-ansi": "^6.0.0",
diff --git a/packages/gatsby-recipes/src/providers/gatsby/plugin.js b/packages/gatsby-recipes/src/providers/gatsby/plugin.js
index 71c1e9b6276e2..c47fc0e9d8884 100644
--- a/packages/gatsby-recipes/src/providers/gatsby/plugin.js
+++ b/packages/gatsby-recipes/src/providers/gatsby/plugin.js
@@ -99,8 +99,8 @@ const getNameForPlugin = node => {
return null
}
-const getDescriptionForPlugin = async name => {
- const pkg = await readPackageJSON({}, name)
+const getDescriptionForPlugin = async (root, name) => {
+ const pkg = await readPackageJSON(root, name)
return pkg?.description || ``
}
@@ -245,7 +245,7 @@ const read = async ({ root }, id) => {
if (plugin) {
const [description, readme] = await Promise.all([
- getDescriptionForPlugin(id),
+ getDescriptionForPlugin(root, id),
getReadmeForPlugin(id),
])
const { shadowedFiles, shadowableFiles } = listShadowableFilesForTheme(
diff --git a/packages/gatsby-recipes/src/providers/npm/__snapshots__/package.test.js.snap b/packages/gatsby-recipes/src/providers/npm/__snapshots__/package.test.js.snap
index 7273096bcf7ff..1386303baa81e 100644
--- a/packages/gatsby-recipes/src/providers/npm/__snapshots__/package.test.js.snap
+++ b/packages/gatsby-recipes/src/providers/npm/__snapshots__/package.test.js.snap
@@ -1,5 +1,71 @@
// Jest Snapshot v1, https://goo.gl/fbAQLP
+exports[`npm package resource e2e npm package resource test: NPMPackage create 1`] = `
+Object {
+ "_message": "Installed NPM package [email protected]",
+ "description": "A small module to check if an Array is sorted",
+ "id": "is-sorted",
+ "name": "is-sorted",
+ "version": "1.0.0",
+}
+`;
+
+exports[`npm package resource e2e npm package resource test: NPMPackage create plan 1`] = `
+Object {
+ "currentState": undefined,
+ "describe": "Install [email protected]",
+ "newState": "[email protected]",
+}
+`;
+
+exports[`npm package resource e2e npm package resource test: NPMPackage destroy 1`] = `
+Object {
+ "_message": "Installed NPM package [email protected]",
+ "description": "A small module to check if an Array is sorted",
+ "id": "is-sorted",
+ "name": "is-sorted",
+ "version": "1.0.2",
+}
+`;
+
+exports[`npm package resource e2e npm package resource test: NPMPackage update 1`] = `
+Object {
+ "_message": "Installed NPM package [email protected]",
+ "description": "A small module to check if an Array is sorted",
+ "id": "is-sorted",
+ "name": "is-sorted",
+ "version": "1.0.2",
+}
+`;
+
+exports[`npm package resource e2e npm package resource test: NPMPackage update plan 1`] = `
+Object {
+ "currentState": "[email protected]",
+ "describe": "Install [email protected]",
+ "newState": "[email protected]",
+}
+`;
+
+exports[`npm package resource installs 2 resources, one prod & one dev 1`] = `
+Object {
+ "_message": "Installed NPM package [email protected]",
+ "description": "<Div row> Use flexbox with ease in React! </Div>",
+ "id": "div",
+ "name": "div",
+ "version": "2.0.0",
+}
+`;
+
+exports[`npm package resource installs 2 resources, one prod & one dev 2`] = `
+Object {
+ "_message": "Installed NPM package [email protected]",
+ "description": "Returns true if the given number is odd, and is an integer that does not exceed the JavaScript MAXIMUM_SAFE_INTEGER.",
+ "id": "is-odd",
+ "name": "is-odd",
+ "version": "3.0.1",
+}
+`;
+
exports[`package manager client commands generates the correct commands for npm 1`] = `
Array [
"install",
diff --git a/packages/gatsby-recipes/src/providers/npm/fixtures/package.json b/packages/gatsby-recipes/src/providers/npm/fixtures/package-json/package.json
similarity index 100%
rename from packages/gatsby-recipes/src/providers/npm/fixtures/package.json
rename to packages/gatsby-recipes/src/providers/npm/fixtures/package-json/package.json
diff --git a/packages/gatsby-recipes/src/providers/npm/fixtures/scripts/package.json b/packages/gatsby-recipes/src/providers/npm/fixtures/scripts/package.json
new file mode 100644
index 0000000000000..3e53932c9b0a5
--- /dev/null
+++ b/packages/gatsby-recipes/src/providers/npm/fixtures/scripts/package.json
@@ -0,0 +1,4 @@
+{
+ "name": "test",
+ "scripts": {}
+}
\ No newline at end of file
diff --git a/packages/gatsby-recipes/src/providers/npm/package-json.test.js b/packages/gatsby-recipes/src/providers/npm/package-json.test.js
index 96bf39873750d..80701db874ebf 100644
--- a/packages/gatsby-recipes/src/providers/npm/package-json.test.js
+++ b/packages/gatsby-recipes/src/providers/npm/package-json.test.js
@@ -3,7 +3,7 @@ const path = require(`path`)
const pkgJson = require(`./package-json`)
const resourceTestHelper = require(`../resource-test-helper`)
-const root = path.join(__dirname, `fixtures`)
+const root = path.join(__dirname, `fixtures`, `package-json`)
const name = `husky`
const initialValue = JSON.stringify(
diff --git a/packages/gatsby-recipes/src/providers/npm/package.js b/packages/gatsby-recipes/src/providers/npm/package.js
index 8a096756c74ac..8a41c0f85bcbf 100644
--- a/packages/gatsby-recipes/src/providers/npm/package.js
+++ b/packages/gatsby-recipes/src/providers/npm/package.js
@@ -4,18 +4,31 @@ const Joi = require(`@hapi/joi`)
const path = require(`path`)
const fs = require(`fs-extra`)
const { getConfigStore } = require(`gatsby-core-utils`)
-const resolveCwd = require(`resolve-cwd`)
+const resolveFrom = require(`resolve-from`)
+const lock = require(`../lock`)
const packageMangerConfigKey = `cli.packageManager`
const PACKAGE_MANGER = getConfigStore().get(packageMangerConfigKey) || `yarn`
const resourceSchema = require(`../resource-schema`)
+const readPackageJson = async (root, pkg) => {
+ let obj
+ try {
+ const fullPath = resolveFrom(root, path.join(pkg, `package.json`))
+ const contents = await fs.readFile(fullPath, `utf8`)
+ obj = JSON.parse(contents)
+ } catch (e) {
+ // ignore
+ }
+ return obj
+}
+
const getPackageNames = packages => packages.map(n => `${n.name}@${n.version}`)
// Generate install commands
const generateClientComands = ({ packageManager, depType, packageNames }) => {
- let commands = []
+ const commands = []
if (packageManager === `yarn`) {
commands.push(`add`)
// Needed for Yarn Workspaces and is a no-opt elsewhere.
@@ -48,7 +61,7 @@ const executeInstalls = async root => {
const depType = installs[0].resource.dependencyType
const packagesToInstall = types[depType]
installs = installs.filter(
- i => !_.some(packagesToInstall, p => i.resource.id === p.resource.id)
+ i => !packagesToInstall.some(p => i.resource.name === p.resource.name)
)
const pkgs = packagesToInstall.map(p => p.resource)
@@ -60,6 +73,7 @@ const executeInstalls = async root => {
packageManager: PACKAGE_MANGER,
})
+ const release = await lock(`package.json`)
try {
await execa(PACKAGE_MANGER, commands, {
cwd: root,
@@ -75,12 +89,13 @@ const executeInstalls = async root => {
)
})
}
+ release()
packagesToInstall.forEach(p => p.outsideResolve())
// Run again if there's still more installs.
if (installs.length > 0) {
- executeInstalls()
+ executeInstalls(root)
}
return undefined
@@ -118,22 +133,19 @@ const create = async ({ root }, resource) => {
}
const read = async ({ root }, id) => {
- let packageJSON
- try {
- packageJSON = JSON.parse(
- await fs.readFile(resolveCwd(path.join(id, `package.json`)))
- )
- } catch (e) {
+ const pkg = await readPackageJson(root, id)
+
+ if (pkg) {
+ return {
+ id,
+ name: id,
+ description: pkg.description,
+ version: pkg.version,
+ _message: `Installed NPM package ${id}@${pkg.version}`,
+ }
+ } else {
return undefined
}
-
- return {
- id: packageJSON.name,
- name: packageJSON.name,
- description: packageJSON.description,
- version: packageJSON.version,
- _message: `Installed NPM package ${packageJSON.name}@${packageJSON.version}`,
- }
}
const schema = {
diff --git a/packages/gatsby-recipes/src/providers/npm/package.test.js b/packages/gatsby-recipes/src/providers/npm/package.test.js
index b641564695236..41711a968fe81 100644
--- a/packages/gatsby-recipes/src/providers/npm/package.test.js
+++ b/packages/gatsby-recipes/src/providers/npm/package.test.js
@@ -8,15 +8,15 @@ const resourceTestHelper = require(`../resource-test-helper`)
const root = path.join(os.tmpdir(), uuid.v4())
fs.mkdirSync(root)
-const pkgResource = { name: `glob` }
+const pkgResource = { name: `div` }
test(`plan returns a description`, async () => {
const result = await pkg.plan({ root }, pkgResource)
- expect(result.describe).toEqual(expect.stringContaining(`Install glob`))
+ expect(result.describe).toEqual(expect.stringContaining(`Install div`))
})
-describe.skip(`npm package resource`, () => {
+describe(`npm package resource`, () => {
test(`e2e npm package resource test`, async () => {
await resourceTestHelper({
resourceModule: pkg,
@@ -26,6 +26,18 @@ describe.skip(`npm package resource`, () => {
partialUpdate: { name: `is-sorted`, version: `1.0.2` },
})
})
+ test(`installs 2 resources, one prod & one dev`, async () => {
+ await Promise.all([
+ pkg.create({ root }, { name: `div` }),
+ pkg.create({ root }, { name: `is-odd`, dependencyType: `development` }),
+ ])
+
+ const divResource = await pkg.read({ root }, `div`)
+ const isOddResource = await pkg.read({ root }, `is-odd`)
+
+ expect(divResource).toMatchSnapshot()
+ expect(isOddResource).toMatchSnapshot()
+ }, 20000)
})
describe(`package manager client commands`, () => {
diff --git a/packages/gatsby-recipes/src/providers/npm/script.test.js b/packages/gatsby-recipes/src/providers/npm/script.test.js
index c6fcef2e84381..f163763ad2ef6 100644
--- a/packages/gatsby-recipes/src/providers/npm/script.test.js
+++ b/packages/gatsby-recipes/src/providers/npm/script.test.js
@@ -3,7 +3,7 @@ const path = require(`path`)
const script = require(`./script`)
const resourceTestHelper = require(`../resource-test-helper`)
-const root = path.join(__dirname, `fixtures`)
+const root = path.join(__dirname, `fixtures`, `scripts`)
describe(`npm script resource`, () => {
test(`e2e script resource test`, async () => {
|
f0d49d69087553db59ffc0e09e08acb0320c1469
|
2020-11-05 17:16:17
|
renovate[bot]
|
fix(deps): update starters and examples - gatsby (#27832)
| false
|
update starters and examples - gatsby (#27832)
|
fix
|
diff --git a/starters/blog/package-lock.json b/starters/blog/package-lock.json
index f236c7b47f4cd..61146dc395031 100644
--- a/starters/blog/package-lock.json
+++ b/starters/blog/package-lock.json
@@ -28,9 +28,9 @@
}
},
"@babel/compat-data": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.12.1.tgz",
- "integrity": "sha512-725AQupWJZ8ba0jbKceeFblZTY90McUBWMwHhkFQ9q1zKPJ95GUktljFcgcsIVwRnTnRKlcYzfiNImg5G9m6ZQ=="
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.12.5.tgz",
+ "integrity": "sha512-DTsS7cxrsH3by8nqQSpFSyjSfSYl57D6Cf4q8dW3LK83tBKBDCkfcay1nYkXq1nIHXnpX8WMMb/O25HOy3h1zg=="
},
"@babel/core": {
"version": "7.12.3",
@@ -71,11 +71,11 @@
}
},
"@babel/generator": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.12.1.tgz",
- "integrity": "sha512-DB+6rafIdc9o72Yc3/Ph5h+6hUjeOp66pF0naQBgUFFuPqzQwIlPTm3xZR7YNvduIMtkDIj2t21LSQwnbCrXvg==",
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.12.5.tgz",
+ "integrity": "sha512-m16TQQJ8hPt7E+OS/XVQg/7U184MLXtvuGbCdA7na61vha+ImkyyNM/9DDA0unYCVZn3ZOhng+qz48/KBOT96A==",
"requires": {
- "@babel/types": "^7.12.1",
+ "@babel/types": "^7.12.5",
"jsesc": "^2.5.1",
"source-map": "^0.5.0"
}
@@ -117,13 +117,13 @@
}
},
"@babel/helper-compilation-targets": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.12.1.tgz",
- "integrity": "sha512-jtBEif7jsPwP27GPHs06v4WBV0KrE8a/P7n0N0sSvHn2hwUCYnolP/CLmz51IzAW4NlN+HuoBtb9QcwnRo9F/g==",
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.12.5.tgz",
+ "integrity": "sha512-+qH6NrscMolUlzOYngSBMIOQpKUGPPsc61Bu5W10mg84LxZ7cmvnBHzARKbDoFxVvqqAbj6Tg6N7bSrWSPXMyw==",
"requires": {
- "@babel/compat-data": "^7.12.1",
+ "@babel/compat-data": "^7.12.5",
"@babel/helper-validator-option": "^7.12.1",
- "browserslist": "^4.12.0",
+ "browserslist": "^4.14.5",
"semver": "^5.5.0"
},
"dependencies": {
@@ -209,11 +209,11 @@
}
},
"@babel/helper-module-imports": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.12.1.tgz",
- "integrity": "sha512-ZeC1TlMSvikvJNy1v/wPIazCu3NdOwgYZLIkmIyAsGhqkNpiDoQQRmaCK8YP4Pq3GPTLPV9WXaPCJKvx06JxKA==",
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.12.5.tgz",
+ "integrity": "sha512-SR713Ogqg6++uexFRORf/+nPXMmWIn80TALu0uaFb+iQIUoR7bOC7zBWyzBs5b3tBBJXuyD0cRu1F15GyzjOWA==",
"requires": {
- "@babel/types": "^7.12.1"
+ "@babel/types": "^7.12.5"
}
},
"@babel/helper-module-transforms": {
@@ -264,14 +264,14 @@
}
},
"@babel/helper-replace-supers": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.12.1.tgz",
- "integrity": "sha512-zJjTvtNJnCFsCXVi5rUInstLd/EIVNmIKA1Q9ynESmMBWPWd+7sdR+G4/wdu+Mppfep0XLyG2m7EBPvjCeFyrw==",
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.12.5.tgz",
+ "integrity": "sha512-5YILoed0ZyIpF4gKcpZitEnXEJ9UoDRki1Ey6xz46rxOzfNMAhVIJMoune1hmPVxh40LRv1+oafz7UsWX+vyWA==",
"requires": {
"@babel/helper-member-expression-to-functions": "^7.12.1",
"@babel/helper-optimise-call-expression": "^7.10.4",
- "@babel/traverse": "^7.12.1",
- "@babel/types": "^7.12.1"
+ "@babel/traverse": "^7.12.5",
+ "@babel/types": "^7.12.5"
}
},
"@babel/helper-simple-access": {
@@ -320,13 +320,13 @@
}
},
"@babel/helpers": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.12.1.tgz",
- "integrity": "sha512-9JoDSBGoWtmbay98efmT2+mySkwjzeFeAL9BuWNoVQpkPFQF8SIIFUfY5os9u8wVzglzoiPRSW7cuJmBDUt43g==",
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.12.5.tgz",
+ "integrity": "sha512-lgKGMQlKqA8meJqKsW6rUnc4MdUk35Ln0ATDqdM1a/UpARODdI4j5Y5lVfUScnSNkJcdCRAaWkspykNoFg9sJA==",
"requires": {
"@babel/template": "^7.10.4",
- "@babel/traverse": "^7.12.1",
- "@babel/types": "^7.12.1"
+ "@babel/traverse": "^7.12.5",
+ "@babel/types": "^7.12.5"
}
},
"@babel/highlight": {
@@ -337,12 +337,24 @@
"@babel/helper-validator-identifier": "^7.10.4",
"chalk": "^2.0.0",
"js-tokens": "^4.0.0"
+ },
+ "dependencies": {
+ "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/parser": {
- "version": "7.12.3",
- "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.12.3.tgz",
- "integrity": "sha512-kFsOS0IbsuhO5ojF8Hc8z/8vEIOkylVBrjiZUbLTE3XFe0Qi+uu6HjzQixkFaqr0ZPAMZcBVxEwmsnsLPZ2Xsw=="
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.12.5.tgz",
+ "integrity": "sha512-FVM6RZQ0mn2KCf1VUED7KepYeUWoVShczewOCfm3nzoBybaih51h+sYVVGthW9M6lPByEPTQf+xm27PBdlpwmQ=="
},
"@babel/plugin-proposal-async-generator-functions": {
"version": "7.12.1",
@@ -409,9 +421,9 @@
}
},
"@babel/plugin-proposal-numeric-separator": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.12.1.tgz",
- "integrity": "sha512-MR7Ok+Af3OhNTCxYVjJZHS0t97ydnJZt/DbR4WISO39iDnhiD8XHrY12xuSJ90FFEGjir0Fzyyn7g/zY6hxbxA==",
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.12.5.tgz",
+ "integrity": "sha512-UiAnkKuOrCyjZ3sYNHlRlfuZJbBHknMQ9VMwVeX97Ofwx7RpD6gS2HfqTCh8KNUQgcOm8IKt103oR4KIjh7Q8g==",
"requires": {
"@babel/helper-plugin-utils": "^7.10.4",
"@babel/plugin-syntax-numeric-separator": "^7.10.4"
@@ -792,9 +804,9 @@
}
},
"@babel/plugin-transform-react-jsx": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.12.1.tgz",
- "integrity": "sha512-RmKejwnT0T0QzQUzcbP5p1VWlpnP8QHtdhEtLG55ZDQnJNalbF3eeDyu3dnGKvGzFIQiBzFhBYTwvv435p9Xpw==",
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.12.5.tgz",
+ "integrity": "sha512-2xkcPqqrYiOQgSlM/iwto1paPijjsDbUynN13tI6bosDz/jOW3CRzYguIE8wKX32h+msbBM22Dv5fwrFkUOZjQ==",
"requires": {
"@babel/helper-builder-react-jsx": "^7.10.4",
"@babel/helper-builder-react-jsx-experimental": "^7.12.1",
@@ -803,9 +815,9 @@
}
},
"@babel/plugin-transform-react-jsx-development": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.12.1.tgz",
- "integrity": "sha512-IilcGWdN1yNgEGOrB96jbTplRh+V2Pz1EoEwsKsHfX1a/L40cUYuD71Zepa7C+ujv7kJIxnDftWeZbKNEqZjCQ==",
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.12.5.tgz",
+ "integrity": "sha512-1JJusg3iPgsZDthyWiCr3KQiGs31ikU/mSf2N2dSYEAO0GEImmVUbWf0VoSDGDFTAn5Dj4DUiR6SdIXHY7tELA==",
"requires": {
"@babel/helper-builder-react-jsx-experimental": "^7.12.1",
"@babel/helper-plugin-utils": "^7.10.4",
@@ -1033,14 +1045,14 @@
}
},
"@babel/preset-react": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/preset-react/-/preset-react-7.12.1.tgz",
- "integrity": "sha512-euCExymHCi0qB9u5fKw7rvlw7AZSjw/NaB9h7EkdTt5+yHRrXdiRTh7fkG3uBPpJg82CqLfp1LHLqWGSCrab+g==",
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/preset-react/-/preset-react-7.12.5.tgz",
+ "integrity": "sha512-jcs++VPrgyFehkMezHtezS2BpnUlR7tQFAyesJn1vGTO9aTFZrgIQrA5YydlTwxbcjMwkFY6i04flCigRRr3GA==",
"requires": {
"@babel/helper-plugin-utils": "^7.10.4",
"@babel/plugin-transform-react-display-name": "^7.12.1",
- "@babel/plugin-transform-react-jsx": "^7.12.1",
- "@babel/plugin-transform-react-jsx-development": "^7.12.1",
+ "@babel/plugin-transform-react-jsx": "^7.12.5",
+ "@babel/plugin-transform-react-jsx-development": "^7.12.5",
"@babel/plugin-transform-react-jsx-self": "^7.12.1",
"@babel/plugin-transform-react-jsx-source": "^7.12.1",
"@babel/plugin-transform-react-pure-annotations": "^7.12.1"
@@ -1064,18 +1076,18 @@
}
},
"@babel/runtime-corejs3": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/runtime-corejs3/-/runtime-corejs3-7.12.1.tgz",
- "integrity": "sha512-umhPIcMrlBZ2aTWlWjUseW9LjQKxi1dpFlQS8DzsxB//5K+u6GLTC/JliPKHsd5kJVPIU6X/Hy0YvWOYPcMxBw==",
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/runtime-corejs3/-/runtime-corejs3-7.12.5.tgz",
+ "integrity": "sha512-roGr54CsTmNPPzZoCP1AmDXuBoNao7tnSA83TXTwt+UK5QVyh1DIJnrgYRPWKCF2flqZQXwa7Yr8v7VmLzF0YQ==",
"requires": {
"core-js-pure": "^3.0.0",
"regenerator-runtime": "^0.13.4"
}
},
"@babel/standalone": {
- "version": "7.12.4",
- "resolved": "https://registry.npmjs.org/@babel/standalone/-/standalone-7.12.4.tgz",
- "integrity": "sha512-9vw7RYK7CWh5MdTfLyC7j6hZmDYmm6DieFP4yetvpVftKQ+yrEY7ovhnhsVHznLqx5luU9Bx4k7xoEc3acrsow=="
+ "version": "7.12.6",
+ "resolved": "https://registry.npmjs.org/@babel/standalone/-/standalone-7.12.6.tgz",
+ "integrity": "sha512-yA/OV3jN1nhr0JsAdYWAqbeZ7cAOw/6Fh52rxVMzujr0HF4Z3cau0JBzJfQppFfR9IArrUtcqhBu/+Q/IevoyQ=="
},
"@babel/template": {
"version": "7.10.4",
@@ -1088,16 +1100,16 @@
}
},
"@babel/traverse": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.12.1.tgz",
- "integrity": "sha512-MA3WPoRt1ZHo2ZmoGKNqi20YnPt0B1S0GTZEPhhd+hw2KGUzBlHuVunj6K4sNuK+reEvyiPwtp0cpaqLzJDmAw==",
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.12.5.tgz",
+ "integrity": "sha512-xa15FbQnias7z9a62LwYAA5SZZPkHIXpd42C6uW68o8uTuua96FHZy1y61Va5P/i83FAAcMpW8+A/QayntzuqA==",
"requires": {
"@babel/code-frame": "^7.10.4",
- "@babel/generator": "^7.12.1",
+ "@babel/generator": "^7.12.5",
"@babel/helper-function-name": "^7.10.4",
"@babel/helper-split-export-declaration": "^7.11.0",
- "@babel/parser": "^7.12.1",
- "@babel/types": "^7.12.1",
+ "@babel/parser": "^7.12.5",
+ "@babel/types": "^7.12.5",
"debug": "^4.1.0",
"globals": "^11.1.0",
"lodash": "^4.17.19"
@@ -1114,15 +1126,33 @@
}
},
"@babel/types": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.12.1.tgz",
- "integrity": "sha512-BzSY3NJBKM4kyatSOWh3D/JJ2O3CVzBybHWxtgxnggaxEuaSTTDqeiSb/xk9lrkw2Tbqyivw5ZU4rT+EfznQsA==",
+ "version": "7.12.6",
+ "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.12.6.tgz",
+ "integrity": "sha512-hwyjw6GvjBLiyy3W0YQf0Z5Zf4NpYejUnKFcfcUhZCSffoBBp30w6wP2Wn6pk31jMYZvcOrB/1b7cGXvEoKogA==",
"requires": {
"@babel/helper-validator-identifier": "^7.10.4",
"lodash": "^4.17.19",
"to-fast-properties": "^2.0.0"
}
},
+ "@endemolshinegroup/cosmiconfig-typescript-loader": {
+ "version": "3.0.2",
+ "resolved": "https://registry.npmjs.org/@endemolshinegroup/cosmiconfig-typescript-loader/-/cosmiconfig-typescript-loader-3.0.2.tgz",
+ "integrity": "sha512-QRVtqJuS1mcT56oHpVegkKBlgtWjXw/gHNWO3eL9oyB5Sc7HBoc2OLG/nYpVfT/Jejvo3NUrD0Udk7XgoyDKkA==",
+ "requires": {
+ "lodash.get": "^4",
+ "make-error": "^1",
+ "ts-node": "^9",
+ "tslib": "^2"
+ },
+ "dependencies": {
+ "tslib": {
+ "version": "2.0.3",
+ "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.0.3.tgz",
+ "integrity": "sha512-uZtkfKblCEQtZKBF6EBXVZeQNl82yqtDQdv+eck8u7tdPxjLu2/lp5/uPW+um2tpuxINHWy3GhiccY7QgEaVHQ=="
+ }
+ }
+ },
"@graphql-tools/batch-execute": {
"version": "7.0.0",
"resolved": "https://registry.npmjs.org/@graphql-tools/batch-execute/-/batch-execute-7.0.0.tgz",
@@ -1152,9 +1182,9 @@
}
},
"@graphql-tools/delegate": {
- "version": "7.0.3",
- "resolved": "https://registry.npmjs.org/@graphql-tools/delegate/-/delegate-7.0.3.tgz",
- "integrity": "sha512-BSRF/Wg9XNllWo3Kdt0QBBaFltexn3vAnTOWH1qLrNcmfQAvUMf17/TsAqH9ZLSKU1NW9XCOsd7YMHhhUuTCEg==",
+ "version": "7.0.4",
+ "resolved": "https://registry.npmjs.org/@graphql-tools/delegate/-/delegate-7.0.4.tgz",
+ "integrity": "sha512-6/qL9V31FgECNPwc5As1359hpsAt4ASWsiYBSYWL+Iq9/K0YRcNeEmSseXIyCP4oh8k/9HS/w/m2lkMk/YSUpQ==",
"requires": {
"@ardatan/aggregate-error": "0.0.6",
"@graphql-tools/batch-execute": "^7.0.0",
@@ -1463,9 +1493,9 @@
}
},
"@graphql-tools/url-loader": {
- "version": "6.3.2",
- "resolved": "https://registry.npmjs.org/@graphql-tools/url-loader/-/url-loader-6.3.2.tgz",
- "integrity": "sha512-nrrZD33T7lFeOjIufCrwk2PAHYqFtdFcb1pe1ULWnvuFmFuhZnRCgIsfCsoy+WOMwmZHQ/eXBem//I/bewXlgw==",
+ "version": "6.4.0",
+ "resolved": "https://registry.npmjs.org/@graphql-tools/url-loader/-/url-loader-6.4.0.tgz",
+ "integrity": "sha512-M3mS/VH6vpnai3b3Fa33kYcdCgZvhFh7RqFE1R3NMfhYjphQ10EWwgf31P+VQcBNB2zz+ubxttI6UcJLiGqwuQ==",
"requires": {
"@graphql-tools/delegate": "^7.0.1",
"@graphql-tools/utils": "^7.0.1",
@@ -1473,6 +1503,7 @@
"@types/websocket": "1.0.1",
"cross-fetch": "3.0.6",
"subscriptions-transport-ws": "0.9.18",
+ "sync-fetch": "0.3.0",
"tslib": "~2.0.1",
"valid-url": "1.0.9",
"websocket": "1.0.32"
@@ -1575,6 +1606,11 @@
"@hapi/hoek": "^8.3.0"
}
},
+ "@iarna/toml": {
+ "version": "2.2.5",
+ "resolved": "https://registry.npmjs.org/@iarna/toml/-/toml-2.2.5.tgz",
+ "integrity": "sha512-trnsAYxU3xnS1gPHPyU961coFyLkh4gAD/0zQ5mymY4yOZ+CYvsPqUbOFSw0aDM4y0tV7tiFxL/1XfXPNC6IPg=="
+ },
"@jest/types": {
"version": "25.5.0",
"resolved": "https://registry.npmjs.org/@jest/types/-/types-25.5.0.tgz",
@@ -2001,6 +2037,18 @@
"error-stack-parser": "^2.0.0",
"string-width": "^2.0.0",
"strip-ansi": "^3"
+ },
+ "dependencies": {
+ "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"
+ }
+ }
}
},
"@pmmmwh/react-refresh-webpack-plugin": {
@@ -2806,6 +2854,11 @@
"readable-stream": "^2.0.6"
}
},
+ "arg": {
+ "version": "4.1.3",
+ "resolved": "https://registry.npmjs.org/arg/-/arg-4.1.3.tgz",
+ "integrity": "sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA=="
+ },
"argparse": {
"version": "1.0.10",
"resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz",
@@ -3246,9 +3299,9 @@
"integrity": "sha512-eqj0hVcJUR57/Ug2zE1Yswsw4LhuqqHhD+8v120T1cl3kjg76QwtyBrdIk4WVwK+lAhBJVYCd/v+4nc4y+8JsA=="
},
"babel-preset-gatsby": {
- "version": "0.5.15",
- "resolved": "https://registry.npmjs.org/babel-preset-gatsby/-/babel-preset-gatsby-0.5.15.tgz",
- "integrity": "sha512-0eno/GAvzmaLW/s+RzsLXrZVQwBMZYU/zMv1HpArGlYbNCon/fK53/Bz3pklJDq1pNAybXQ2RROpPHDyJM2EGA==",
+ "version": "0.5.16",
+ "resolved": "https://registry.npmjs.org/babel-preset-gatsby/-/babel-preset-gatsby-0.5.16.tgz",
+ "integrity": "sha512-zcUYvHRnDxwQmzJnkWtHk4x7cGaMbQjTJIKrvCWpS9u10hQOQUNAz/ZKSH1vUmB4oYap6m+sHDoDIr7PNoCAEQ==",
"requires": {
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.10.4",
@@ -3262,7 +3315,7 @@
"babel-plugin-dynamic-import-node": "^2.3.3",
"babel-plugin-macros": "^2.8.0",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
- "gatsby-core-utils": "^1.3.23",
+ "gatsby-core-utils": "^1.3.24",
"gatsby-legacy-polyfills": "^0.0.6"
}
},
@@ -4326,9 +4379,9 @@
}
},
"caniuse-lite": {
- "version": "1.0.30001154",
- "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001154.tgz",
- "integrity": "sha512-y9DvdSti8NnYB9Be92ddMZQrcOe04kcQtcxtBx4NkB04+qZ+JUWotnXBJTmxlKudhxNTQ3RRknMwNU2YQl/Org=="
+ "version": "1.0.30001156",
+ "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001156.tgz",
+ "integrity": "sha512-z7qztybA2eFZTB6Z3yvaQBIoJpQtsewRD74adw2UbRWwsRq3jIPvgrQGawBMbfafekQaD21FWuXNcywtTDGGCw=="
},
"caseless": {
"version": "0.12.0",
@@ -4352,13 +4405,48 @@
"integrity": "sha512-vlNK021QdI7PNeiUh/lKkC/mNHHfV0m/Ad5JoI0TYtlBnJAslM/JIkm/tGC88bkLIwO6OQ5uV6ztS6kVAtCDlg=="
},
"chalk": {
- "version": "2.4.2",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
- "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
+ "version": "4.1.0",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.0.tgz",
+ "integrity": "sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==",
"requires": {
- "ansi-styles": "^3.2.1",
- "escape-string-regexp": "^1.0.5",
- "supports-color": "^5.3.0"
+ "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"
+ }
+ }
}
},
"character-entities": {
@@ -4708,6 +4796,18 @@
"@types/q": "^1.5.1",
"chalk": "^2.4.1",
"q": "^1.1.2"
+ },
+ "dependencies": {
+ "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"
+ }
+ }
}
},
"code-point-at": {
@@ -5142,6 +5242,14 @@
"yaml": "^1.7.2"
}
},
+ "cosmiconfig-toml-loader": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/cosmiconfig-toml-loader/-/cosmiconfig-toml-loader-1.0.0.tgz",
+ "integrity": "sha512-H/2gurFWVi7xXvCyvsWRLCMekl4tITJcX0QEsDMpzxtuxDyM59xLatYNg4s/k9AA/HdtCYfj2su8mgA0GSDLDA==",
+ "requires": {
+ "@iarna/toml": "^2.2.5"
+ }
+ },
"create-ecdh": {
"version": "4.0.4",
"resolved": "https://registry.npmjs.org/create-ecdh/-/create-ecdh-4.0.4.tgz",
@@ -5275,6 +5383,16 @@
"source-list-map": "^2.0.0"
},
"dependencies": {
+ "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"
+ }
+ },
"postcss": {
"version": "6.0.23",
"resolved": "https://registry.npmjs.org/postcss/-/postcss-6.0.23.tgz",
@@ -6017,6 +6135,11 @@
}
}
},
+ "diff": {
+ "version": "4.0.2",
+ "resolved": "https://registry.npmjs.org/diff/-/diff-4.0.2.tgz",
+ "integrity": "sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A=="
+ },
"diff-sequences": {
"version": "25.2.6",
"resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-25.2.6.tgz",
@@ -6290,9 +6413,9 @@
"integrity": "sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0="
},
"electron-to-chromium": {
- "version": "1.3.586",
- "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.586.tgz",
- "integrity": "sha512-or8FCbQCRlPZHkOoqBULOI9hzTiStVIQqDLgAPt8pzY+swTrW+89vsqd24Zn+Iv4guAJLxRBD6OR5AmbpabGDA=="
+ "version": "1.3.588",
+ "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.588.tgz",
+ "integrity": "sha512-0zr+ZfytnLeJZxGgmEpPTcItu5Mm4A5zHPZXLfHcGp0mdsk95rmD7ePNewYtK1yIdLbk8Z1U2oTRRfOtR4gbYg=="
},
"elliptic": {
"version": "6.5.3",
@@ -6627,6 +6750,16 @@
"resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz",
"integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg=="
},
+ "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.2.0",
"resolved": "https://registry.npmjs.org/debug/-/debug-4.2.0.tgz",
@@ -7861,9 +7994,9 @@
"integrity": "sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc="
},
"gatsby": {
- "version": "2.25.1",
- "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-2.25.1.tgz",
- "integrity": "sha512-2MLGL0MooLGmGQhSjIjq+mH95lE3PbrtZ8xgcmN1JOsjR/dJ+Fx/BoZC3CdqPku/zflMNlCb99vuB2HQaXiRdg==",
+ "version": "2.25.2",
+ "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-2.25.2.tgz",
+ "integrity": "sha512-zssz6mH5vpScGq9SCDtkfajJkYVYJ+00x5JRVf9pYlVTRdv+g7jbKTuGdaWKbPoacEtXw3bUaTURUC2YMs/Gmg==",
"requires": {
"@babel/code-frame": "^7.10.4",
"@babel/core": "^7.11.6",
@@ -7890,7 +8023,7 @@
"babel-plugin-dynamic-import-node": "^2.3.3",
"babel-plugin-lodash": "3.3.4",
"babel-plugin-remove-graphql-queries": "^2.9.20",
- "babel-preset-gatsby": "^0.5.15",
+ "babel-preset-gatsby": "^0.5.16",
"better-opn": "^2.0.0",
"better-queue": "^3.8.10",
"bluebird": "^3.7.2",
@@ -7898,7 +8031,7 @@
"browserslist": "^4.12.2",
"cache-manager": "^2.11.1",
"cache-manager-fs-hash": "^0.0.9",
- "chalk": "^2.4.2",
+ "chalk": "^4.1.0",
"chokidar": "^3.4.2",
"common-tags": "^1.8.0",
"compression": "^1.7.4",
@@ -7931,16 +8064,16 @@
"find-cache-dir": "^3.3.1",
"fs-exists-cached": "1.0.0",
"fs-extra": "^8.1.0",
- "gatsby-cli": "^2.12.115",
- "gatsby-core-utils": "^1.3.23",
+ "gatsby-cli": "^2.12.116",
+ "gatsby-core-utils": "^1.3.24",
"gatsby-graphiql-explorer": "^0.4.15",
"gatsby-legacy-polyfills": "^0.0.6",
"gatsby-link": "^2.4.16",
- "gatsby-plugin-page-creator": "^2.3.34",
+ "gatsby-plugin-page-creator": "^2.3.35",
"gatsby-plugin-typescript": "^2.5.0",
"gatsby-plugin-utils": "^0.2.40",
"gatsby-react-router-scroll": "^3.0.15",
- "gatsby-telemetry": "^1.3.39",
+ "gatsby-telemetry": "^1.3.40",
"glob": "^7.1.6",
"got": "8.3.2",
"graphql": "^14.6.0",
@@ -8031,15 +8164,15 @@
}
},
"gatsby-cli": {
- "version": "2.12.115",
- "resolved": "https://registry.npmjs.org/gatsby-cli/-/gatsby-cli-2.12.115.tgz",
- "integrity": "sha512-wOs3tG3tYses4fclXG0FtVZx+K0FDoZFkU1MIJNB+aRt+T7VMCZUIlg2MyrqcngsEW8al4EgyOd3UIl3NepC4A==",
+ "version": "2.12.116",
+ "resolved": "https://registry.npmjs.org/gatsby-cli/-/gatsby-cli-2.12.116.tgz",
+ "integrity": "sha512-vXpyl/ZFF67r/BlBxIjfdknBzxRfRuJ1qkA7//6dhNKDMlvVi5ZqGhOwcMzTgM1e0WZRaMFzf5/foPIA++8xEQ==",
"requires": {
"@babel/code-frame": "^7.10.4",
"@hapi/joi": "^15.1.1",
"@types/common-tags": "^1.8.0",
"better-opn": "^2.0.0",
- "chalk": "^2.4.2",
+ "chalk": "^4.1.0",
"clipboardy": "^2.3.0",
"common-tags": "^1.8.0",
"configstore": "^5.0.1",
@@ -8048,9 +8181,9 @@
"execa": "^3.4.0",
"fs-exists-cached": "^1.0.0",
"fs-extra": "^8.1.0",
- "gatsby-core-utils": "^1.3.23",
- "gatsby-recipes": "^0.2.36",
- "gatsby-telemetry": "^1.3.39",
+ "gatsby-core-utils": "^1.3.24",
+ "gatsby-recipes": "^0.2.37",
+ "gatsby-telemetry": "^1.3.40",
"hosted-git-info": "^3.0.6",
"is-valid-path": "^0.1.1",
"lodash": "^4.17.20",
@@ -8161,9 +8294,9 @@
}
},
"gatsby-core-utils": {
- "version": "1.3.23",
- "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-1.3.23.tgz",
- "integrity": "sha512-H6n6dDeRZ22HAJaBUIt5YjB/BSaE8Jq+kayMUv/YzL1RL2yFZ5lqcLwIL1OE2vWk1mQjMUBZCRxLODU0q1i3bQ==",
+ "version": "1.3.24",
+ "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-1.3.24.tgz",
+ "integrity": "sha512-SlK7rJv/8NBYC8FodYvTINamBHadXNSv//a2uRwh44N1GSSujuCMvtUcpEuAdg9BUQHc54NbbmFuoqf8p85kgA==",
"requires": {
"ci-info": "2.0.0",
"configstore": "^5.0.1",
@@ -8211,15 +8344,15 @@
}
},
"gatsby-page-utils": {
- "version": "0.2.29",
- "resolved": "https://registry.npmjs.org/gatsby-page-utils/-/gatsby-page-utils-0.2.29.tgz",
- "integrity": "sha512-0xN3kBNd7PNwsJB1lJrsy7hEJbIIBcvnmbxGTplGenmGnOMoJqK6kEfM5Ru5dWBdSmwHrS+kcihFi0ZiGxpoww==",
+ "version": "0.2.30",
+ "resolved": "https://registry.npmjs.org/gatsby-page-utils/-/gatsby-page-utils-0.2.30.tgz",
+ "integrity": "sha512-H4a6VgDuO4Obd2UgZmfHCnpN3D6NOOpcgVSf8XuC7fmksVhQ3L2v7zw7y/TNS1Fz74yEKffnaF9pqRfkg8D/yg==",
"requires": {
"@babel/runtime": "^7.11.2",
"bluebird": "^3.7.2",
"chokidar": "^3.4.3",
"fs-exists-cached": "^1.0.0",
- "gatsby-core-utils": "^1.3.23",
+ "gatsby-core-utils": "^1.3.24",
"glob": "^7.1.6",
"lodash": "^4.17.20",
"micromatch": "^4.0.2"
@@ -8249,25 +8382,25 @@
}
},
"gatsby-plugin-manifest": {
- "version": "2.5.1",
- "resolved": "https://registry.npmjs.org/gatsby-plugin-manifest/-/gatsby-plugin-manifest-2.5.1.tgz",
- "integrity": "sha512-RYavr4onu2VFMhLNiRfrsVzKRtqii7mJK27X2mT74wEutSepel8zh+zV7knVJnFK23l/zTW2gq85lqsFcel8/w==",
+ "version": "2.5.2",
+ "resolved": "https://registry.npmjs.org/gatsby-plugin-manifest/-/gatsby-plugin-manifest-2.5.2.tgz",
+ "integrity": "sha512-ULLpUbKMXu0wh6XV+GEqE3w7ggGrEKH3fubwiiE00oUNJGoyFfvS9xGSwPtpE6yO1Xg3m1AH5vajZxfL9dWQ+A==",
"requires": {
"@babel/runtime": "^7.11.2",
- "gatsby-core-utils": "^1.3.23",
+ "gatsby-core-utils": "^1.3.24",
"gatsby-plugin-utils": "^0.2.40",
"semver": "^7.3.2",
"sharp": "^0.25.4"
}
},
"gatsby-plugin-offline": {
- "version": "3.3.1",
- "resolved": "https://registry.npmjs.org/gatsby-plugin-offline/-/gatsby-plugin-offline-3.3.1.tgz",
- "integrity": "sha512-OzMn78YqCXMcG0sR7SBWE7ak2J+0wd4vzODELGMXoOQYaRmKRTnTp79jVTV2/scZZoAnW6ebZTvJ2djBJqqd+A==",
+ "version": "3.3.2",
+ "resolved": "https://registry.npmjs.org/gatsby-plugin-offline/-/gatsby-plugin-offline-3.3.2.tgz",
+ "integrity": "sha512-oW78R9ijWttJA+rTRND+eyWNlnfXaN3PdmjSIpgUVASjLdSJMYkoXp6xWOpXvj/ChzogAskdTxxJ3tkMHENziw==",
"requires": {
"@babel/runtime": "^7.11.2",
"cheerio": "^1.0.0-rc.3",
- "gatsby-core-utils": "^1.3.23",
+ "gatsby-core-utils": "^1.3.24",
"glob": "^7.1.6",
"idb-keyval": "^3.2.0",
"lodash": "^4.17.20",
@@ -8275,15 +8408,15 @@
}
},
"gatsby-plugin-page-creator": {
- "version": "2.3.34",
- "resolved": "https://registry.npmjs.org/gatsby-plugin-page-creator/-/gatsby-plugin-page-creator-2.3.34.tgz",
- "integrity": "sha512-/rFG/ye4m0JJ8NAxTObkKKD8098KOVGE+dZrgBx9I3VN1TcKru0HprVe1xj679HBgKjjNUvchXZbhLl5I+2o4A==",
+ "version": "2.3.35",
+ "resolved": "https://registry.npmjs.org/gatsby-plugin-page-creator/-/gatsby-plugin-page-creator-2.3.35.tgz",
+ "integrity": "sha512-hT6hgkplHSBXin9DECOxNQastvRJq15XrzN8327VU/67tetYGOG7SKDSxN4eCaIwy7VK0nP0C97gyN7kQ3FNJw==",
"requires": {
"@babel/traverse": "^7.11.5",
"@sindresorhus/slugify": "^1.1.0",
"chokidar": "^3.4.2",
"fs-exists-cached": "^1.0.0",
- "gatsby-page-utils": "^0.2.29",
+ "gatsby-page-utils": "^0.2.30",
"globby": "^11.0.1",
"graphql": "^14.7.0",
"lodash": "^4.17.20"
@@ -8313,15 +8446,15 @@
}
},
"gatsby-plugin-sharp": {
- "version": "2.7.0",
- "resolved": "https://registry.npmjs.org/gatsby-plugin-sharp/-/gatsby-plugin-sharp-2.7.0.tgz",
- "integrity": "sha512-l53FeWKDRE3LpNFUsTVBv18FT+u/1gOdBhdhgM2pU4oj/e0gWxTAJ8IoDVQuoYAM/viZfnRnTsU9YEieCzqzjQ==",
+ "version": "2.7.1",
+ "resolved": "https://registry.npmjs.org/gatsby-plugin-sharp/-/gatsby-plugin-sharp-2.7.1.tgz",
+ "integrity": "sha512-sS7vGyJ3J4vRY5NrfmSKqaDMr/vgyBeAlkizvV5xTxzghOLE8u/c6HNCrhwzEP5nMdixepAm1+YgOS/P8tTk4w==",
"requires": {
"@babel/runtime": "^7.11.2",
"async": "^3.2.0",
"bluebird": "^3.7.2",
"fs-extra": "^9.0.1",
- "gatsby-core-utils": "^1.3.23",
+ "gatsby-core-utils": "^1.3.24",
"got": "^10.7.0",
"imagemin": "^7.0.1",
"imagemin-mozjpeg": "^9.0.0",
@@ -8520,9 +8653,9 @@
}
},
"gatsby-recipes": {
- "version": "0.2.36",
- "resolved": "https://registry.npmjs.org/gatsby-recipes/-/gatsby-recipes-0.2.36.tgz",
- "integrity": "sha512-GrXRHdEOyGHe5r1hyePWc7kYM3yIu+RDargLqgHGO/lb76ZXRYhjlQ06chL3NMbmxAMYF3UcIm4RSlTS6rLkIg==",
+ "version": "0.2.37",
+ "resolved": "https://registry.npmjs.org/gatsby-recipes/-/gatsby-recipes-0.2.37.tgz",
+ "integrity": "sha512-3pBvAx8HdrFYHv+o0uUiC5Oyd4206wYuQdETib/fYQhG8JxyGCZTDIzy/9RjBYb2I8xm+TlK6jpucLXWlp5DcA==",
"requires": {
"@babel/core": "^7.11.6",
"@babel/generator": "^7.11.6",
@@ -8532,8 +8665,8 @@
"@babel/standalone": "^7.11.6",
"@babel/template": "^7.10.4",
"@babel/types": "^7.11.5",
- "@graphql-tools/schema": "^6.0.14",
- "@graphql-tools/utils": "^6.0.14",
+ "@graphql-tools/schema": "^7.0.0",
+ "@graphql-tools/utils": "^7.0.2",
"@hapi/hoek": "8.x.x",
"@hapi/joi": "^15.1.1",
"better-queue": "^3.8.10",
@@ -8547,8 +8680,8 @@
"express": "^4.17.1",
"express-graphql": "^0.9.0",
"fs-extra": "^8.1.0",
- "gatsby-core-utils": "^1.3.23",
- "gatsby-telemetry": "^1.3.39",
+ "gatsby-core-utils": "^1.3.24",
+ "gatsby-telemetry": "^1.3.40",
"glob": "^7.1.6",
"graphql": "^14.6.0",
"graphql-compose": "^6.3.8",
@@ -8585,12 +8718,13 @@
"yoga-layout-prebuilt": "^1.9.6"
},
"dependencies": {
- "@graphql-tools/schema": {
- "version": "6.2.4",
- "resolved": "https://registry.npmjs.org/@graphql-tools/schema/-/schema-6.2.4.tgz",
- "integrity": "sha512-rh+14lSY1q8IPbEv2J9x8UBFJ5NrDX9W5asXEUlPp+7vraLp/Tiox4GXdgyA92JhwpYco3nTf5Bo2JDMt1KnAQ==",
+ "@graphql-tools/utils": {
+ "version": "7.0.2",
+ "resolved": "https://registry.npmjs.org/@graphql-tools/utils/-/utils-7.0.2.tgz",
+ "integrity": "sha512-VQQ7krHeoXO0FS3qbWsb/vZb8c8oyiCYPIH4RSgeK9SKOUpatWYt3DW4jmLmyHZLVVMk0yjUbsOhKTBEMejKSA==",
"requires": {
- "@graphql-tools/utils": "^6.2.4",
+ "@ardatan/aggregate-error": "0.0.6",
+ "camel-case": "4.1.1",
"tslib": "~2.0.1"
}
},
@@ -8722,14 +8856,14 @@
}
},
"gatsby-remark-images": {
- "version": "3.4.0",
- "resolved": "https://registry.npmjs.org/gatsby-remark-images/-/gatsby-remark-images-3.4.0.tgz",
- "integrity": "sha512-gSaa1w6zGpIYU9Qhtg81gjG2GogcSuVDM1akIwMkOK0zOF7D2kTNUBHpv/uOoAS59mLhsR4E/yII9NNm5wH1hA==",
+ "version": "3.4.1",
+ "resolved": "https://registry.npmjs.org/gatsby-remark-images/-/gatsby-remark-images-3.4.1.tgz",
+ "integrity": "sha512-6sAnteMX+dIBE3ekHr1dpwmnyItjt/4tKer3EWGhj1QjSK8IImjkH7nhanTuePugj/hBgCbuVzBFIwejQSIbZA==",
"requires": {
"@babel/runtime": "^7.11.2",
- "chalk": "^2.4.2",
+ "chalk": "^4.1.0",
"cheerio": "^1.0.0-rc.3",
- "gatsby-core-utils": "^1.3.23",
+ "gatsby-core-utils": "^1.3.24",
"is-relative-url": "^3.0.0",
"lodash": "^4.17.20",
"mdast-util-definitions": "^1.2.5",
@@ -8857,16 +8991,16 @@
}
},
"gatsby-source-filesystem": {
- "version": "2.4.0",
- "resolved": "https://registry.npmjs.org/gatsby-source-filesystem/-/gatsby-source-filesystem-2.4.0.tgz",
- "integrity": "sha512-YfWSsF1x7vjj2uk3XI9Qldo+iO0TmbcgwX5XBEJJgIg8p3v43EZ1gCj0JGIyYyhvfmUaf5SQgFH03Yt3GURRyQ==",
+ "version": "2.4.1",
+ "resolved": "https://registry.npmjs.org/gatsby-source-filesystem/-/gatsby-source-filesystem-2.4.1.tgz",
+ "integrity": "sha512-JDFgK+873XebNvZreEhDzgRlkZ6jEXuS4A+TuJT3EPfTZ3h15YMGnldR2AWhAWYDFX9i2RfFPDuAo8xYzuFY1Q==",
"requires": {
"@babel/runtime": "^7.11.2",
"better-queue": "^3.8.10",
"chokidar": "^3.4.2",
"file-type": "^12.4.2",
"fs-extra": "^8.1.0",
- "gatsby-core-utils": "^1.3.23",
+ "gatsby-core-utils": "^1.3.24",
"got": "^9.6.0",
"md5-file": "^5.0.0",
"mime": "^2.4.6",
@@ -8906,9 +9040,9 @@
}
},
"gatsby-telemetry": {
- "version": "1.3.39",
- "resolved": "https://registry.npmjs.org/gatsby-telemetry/-/gatsby-telemetry-1.3.39.tgz",
- "integrity": "sha512-25LDAc0+0LDjHTOSIHLT6iJk/zOLLWSttZ0IQNho5fhLdWJ3hQrCWKx8YiVLPPNwnImei6/1FxQlGKUPVAOrRA==",
+ "version": "1.3.40",
+ "resolved": "https://registry.npmjs.org/gatsby-telemetry/-/gatsby-telemetry-1.3.40.tgz",
+ "integrity": "sha512-BfKuSOe9Q2kCrATypvSXGwfffffLG483mP6j7tJy3iUYgnteRcLLP4YbBV3HG7pqW0SQk+JP5iIlsT7VtSZOXw==",
"requires": {
"@babel/code-frame": "^7.10.4",
"@babel/runtime": "^7.11.2",
@@ -8919,7 +9053,7 @@
"configstore": "^5.0.1",
"envinfo": "^7.7.3",
"fs-extra": "^8.1.0",
- "gatsby-core-utils": "^1.3.23",
+ "gatsby-core-utils": "^1.3.24",
"git-up": "^4.0.2",
"is-docker": "^2.1.1",
"lodash": "^4.17.20",
@@ -8928,13 +9062,13 @@
}
},
"gatsby-transformer-remark": {
- "version": "2.9.1",
- "resolved": "https://registry.npmjs.org/gatsby-transformer-remark/-/gatsby-transformer-remark-2.9.1.tgz",
- "integrity": "sha512-/FKEsqTpLF39DTXtugojhSSZq8Xv6i4PLeLvsCwdk+mTc7UiRl476Au8aducblegyi+IPKG+kgNt8dk2/H+//A==",
+ "version": "2.9.2",
+ "resolved": "https://registry.npmjs.org/gatsby-transformer-remark/-/gatsby-transformer-remark-2.9.2.tgz",
+ "integrity": "sha512-XfPF0+QHYbX/8DtG8M7L/omIkexSUG9Rd2rAt0aUagw5z6BDAnzTO2kafEiBz9b2AbYmm8m2KHJiyJByXLiaEw==",
"requires": {
"@babel/runtime": "^7.11.2",
"bluebird": "^3.7.2",
- "gatsby-core-utils": "^1.3.23",
+ "gatsby-core-utils": "^1.3.24",
"gray-matter": "^4.0.2",
"hast-util-raw": "^4.0.0",
"hast-util-to-html": "^4.0.1",
@@ -9493,10 +9627,11 @@
}
},
"graphql-config": {
- "version": "3.0.3",
- "resolved": "https://registry.npmjs.org/graphql-config/-/graphql-config-3.0.3.tgz",
- "integrity": "sha512-MBY0wEjvcgJtZUyoqpPvOE1e5qPI0hJaa1gKTqjonSFiCsNHX2lykNjpOPcodmAgH1V06ELxhGnm9kcVzqvi/g==",
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/graphql-config/-/graphql-config-3.1.0.tgz",
+ "integrity": "sha512-tOjgUqB6W+vIzGRn20LogMujoRTAsdwO1gGg6l3SF3xaUjI9/uaCpvy3kJHbZcRiRuOTocmysdBU+hOs3Npx6Q==",
"requires": {
+ "@endemolshinegroup/cosmiconfig-typescript-loader": "3.0.2",
"@graphql-tools/graphql-file-loader": "^6.0.0",
"@graphql-tools/json-file-loader": "^6.0.0",
"@graphql-tools/load": "^6.0.0",
@@ -9504,6 +9639,7 @@
"@graphql-tools/url-loader": "^6.0.0",
"@graphql-tools/utils": "^6.0.0",
"cosmiconfig": "6.0.0",
+ "cosmiconfig-toml-loader": "1.0.0",
"minimatch": "3.0.4",
"string-env-interpolation": "1.0.1",
"tslib": "^2.0.0"
@@ -10114,6 +10250,16 @@
"postcss": "^6.0.1"
},
"dependencies": {
+ "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"
+ }
+ },
"postcss": {
"version": "6.0.23",
"resolved": "https://registry.npmjs.org/postcss/-/postcss-6.0.23.tgz",
@@ -10365,41 +10511,6 @@
"resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.0.tgz",
"integrity": "sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg=="
},
- "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"
- }
- },
- "chalk": {
- "version": "4.1.0",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.0.tgz",
- "integrity": "sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==",
- "requires": {
- "ansi-styles": "^4.1.0",
- "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=="
- },
"is-fullwidth-code-point": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz",
@@ -10423,14 +10534,6 @@
"ansi-regex": "^5.0.0"
}
},
- "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.11.0",
"resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.11.0.tgz",
@@ -10589,9 +10692,9 @@
}
},
"is-core-module": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.0.0.tgz",
- "integrity": "sha512-jq1AH6C8MuteOoBPwkxHafmByhL9j5q4OaPGdbuD+ZtQJVzH+i6E3BJDQcBA09k57i2Hh2yQbEG8yObZ0jdlWw==",
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.1.0.tgz",
+ "integrity": "sha512-YcV7BgVMRFRua2FqQzKtTDMz8iCuLEyGKjr70q8Zm1yy2qKcurbFEd79PAdHV77oL3NrAaOVQIbMmiHQCHB7ZA==",
"requires": {
"has": "^1.0.3"
}
@@ -11483,6 +11586,11 @@
"resolved": "https://registry.npmjs.org/lodash.foreach/-/lodash.foreach-4.5.0.tgz",
"integrity": "sha1-Gmo16s5AEoDH8G3d7DUWWrJ+PlM="
},
+ "lodash.get": {
+ "version": "4.4.2",
+ "resolved": "https://registry.npmjs.org/lodash.get/-/lodash.get-4.4.2.tgz",
+ "integrity": "sha1-LRd/ZS+jHpObRDjVNBSZ36OCXpk="
+ },
"lodash.map": {
"version": "4.6.0",
"resolved": "https://registry.npmjs.org/lodash.map/-/lodash.map-4.6.0.tgz",
@@ -11646,6 +11754,11 @@
}
}
},
+ "make-error": {
+ "version": "1.3.6",
+ "resolved": "https://registry.npmjs.org/make-error/-/make-error-1.3.6.tgz",
+ "integrity": "sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw=="
+ },
"map-cache": {
"version": "0.2.2",
"resolved": "https://registry.npmjs.org/map-cache/-/map-cache-0.2.2.tgz",
@@ -13457,6 +13570,26 @@
"supports-color": "^6.1.0"
},
"dependencies": {
+ "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"
+ },
+ "dependencies": {
+ "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"
+ }
+ }
+ }
+ },
"source-map": {
"version": "0.6.1",
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
@@ -13753,6 +13886,16 @@
"postcss": "^6.0.1"
},
"dependencies": {
+ "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"
+ }
+ },
"postcss": {
"version": "6.0.23",
"resolved": "https://registry.npmjs.org/postcss/-/postcss-6.0.23.tgz",
@@ -13779,6 +13922,16 @@
"postcss": "^6.0.1"
},
"dependencies": {
+ "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"
+ }
+ },
"postcss": {
"version": "6.0.23",
"resolved": "https://registry.npmjs.org/postcss/-/postcss-6.0.23.tgz",
@@ -13805,6 +13958,16 @@
"postcss": "^6.0.1"
},
"dependencies": {
+ "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"
+ }
+ },
"postcss": {
"version": "6.0.23",
"resolved": "https://registry.npmjs.org/postcss/-/postcss-6.0.23.tgz",
@@ -13831,6 +13994,16 @@
"postcss": "^6.0.1"
},
"dependencies": {
+ "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"
+ }
+ },
"postcss": {
"version": "6.0.23",
"resolved": "https://registry.npmjs.org/postcss/-/postcss-6.0.23.tgz",
@@ -15122,9 +15295,9 @@
},
"dependencies": {
"is-buffer": {
- "version": "2.0.4",
- "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-2.0.4.tgz",
- "integrity": "sha512-Kq1rokWXOPXWuaMAqZiJW4XxsmD9zGx9q4aePabbn3qCRGedtH7Cm+zV8WETitMfu1wdh+Rvd6w5egwSngUX2A=="
+ "version": "2.0.5",
+ "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-2.0.5.tgz",
+ "integrity": "sha512-i2R6zNFDwgEHJyQUtJEk0XFi1i0dPFn/oqjK3/vPCcDeJvW5NQ83V8QbicfF1SupOaB0h8ntgBC2YiE7dfyctQ=="
},
"is-plain-obj": {
"version": "1.1.0",
@@ -17257,6 +17430,16 @@
"util.promisify": "~1.0.0"
},
"dependencies": {
+ "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"
+ }
+ },
"css-select": {
"version": "2.1.0",
"resolved": "https://registry.npmjs.org/css-select/-/css-select-2.1.0.tgz",
@@ -17289,6 +17472,15 @@
"resolved": "https://registry.npmjs.org/symbol-observable/-/symbol-observable-1.2.0.tgz",
"integrity": "sha512-e900nM8RRtGhlV36KGEU9k65K3mPb1WV70OdjfxlG2EAuM1noi/E/BaW/uMhL7bPEssK8QV57vN3esixjUvcXQ=="
},
+ "sync-fetch": {
+ "version": "0.3.0",
+ "resolved": "https://registry.npmjs.org/sync-fetch/-/sync-fetch-0.3.0.tgz",
+ "integrity": "sha512-dJp4qg+x4JwSEW1HibAuMi0IIrBI3wuQr2GimmqB7OXR50wmwzfdusG+p39R9w3R6aFtZ2mzvxvWKQ3Bd/vx3g==",
+ "requires": {
+ "buffer": "^5.7.0",
+ "node-fetch": "^2.6.1"
+ }
+ },
"table": {
"version": "5.4.6",
"resolved": "https://registry.npmjs.org/table/-/table-5.4.6.tgz",
@@ -17662,6 +17854,18 @@
"resolved": "https://registry.npmjs.org/true-case-path/-/true-case-path-2.2.1.tgz",
"integrity": "sha512-0z3j8R7MCjy10kc/g+qg7Ln3alJTodw9aDuVWZa3uiWqfuBMKeAeP2ocWcxoyM3D73yz3Jt/Pu4qPr4wHSdB/Q=="
},
+ "ts-node": {
+ "version": "9.0.0",
+ "resolved": "https://registry.npmjs.org/ts-node/-/ts-node-9.0.0.tgz",
+ "integrity": "sha512-/TqB4SnererCDR/vb4S/QvSZvzQMJN8daAslg7MeaiHvD8rDZsSfXmNeNumyZZzMned72Xoq/isQljYSt8Ynfg==",
+ "requires": {
+ "arg": "^4.1.0",
+ "diff": "^4.0.1",
+ "make-error": "^1.1.1",
+ "source-map-support": "^0.5.17",
+ "yn": "3.1.1"
+ }
+ },
"ts-pnp": {
"version": "1.2.0",
"resolved": "https://registry.npmjs.org/ts-pnp/-/ts-pnp-1.2.0.tgz",
@@ -18350,9 +18554,9 @@
},
"dependencies": {
"is-buffer": {
- "version": "2.0.4",
- "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-2.0.4.tgz",
- "integrity": "sha512-Kq1rokWXOPXWuaMAqZiJW4XxsmD9zGx9q4aePabbn3qCRGedtH7Cm+zV8WETitMfu1wdh+Rvd6w5egwSngUX2A=="
+ "version": "2.0.5",
+ "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-2.0.5.tgz",
+ "integrity": "sha512-i2R6zNFDwgEHJyQUtJEk0XFi1i0dPFn/oqjK3/vPCcDeJvW5NQ83V8QbicfF1SupOaB0h8ntgBC2YiE7dfyctQ=="
}
}
},
@@ -19553,6 +19757,11 @@
"resolved": "https://registry.npmjs.org/yeast/-/yeast-0.1.2.tgz",
"integrity": "sha1-AI4G2AlDIMNy28L47XagymyKxBk="
},
+ "yn": {
+ "version": "3.1.1",
+ "resolved": "https://registry.npmjs.org/yn/-/yn-3.1.1.tgz",
+ "integrity": "sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q=="
+ },
"yoga-layout-prebuilt": {
"version": "1.10.0",
"resolved": "https://registry.npmjs.org/yoga-layout-prebuilt/-/yoga-layout-prebuilt-1.10.0.tgz",
@@ -19592,6 +19801,16 @@
"resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz",
"integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg=="
},
+ "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.2.0",
"resolved": "https://registry.npmjs.org/debug/-/debug-4.2.0.tgz",
diff --git a/starters/blog/package.json b/starters/blog/package.json
index a9de2cc80787f..97fcbceb471c1 100644
--- a/starters/blog/package.json
+++ b/starters/blog/package.json
@@ -8,21 +8,21 @@
"url": "https://github.com/gatsbyjs/gatsby/issues"
},
"dependencies": {
- "gatsby": "^2.25.1",
+ "gatsby": "^2.25.2",
"gatsby-image": "^2.4.21",
"gatsby-plugin-feed": "^2.6.0",
"gatsby-plugin-google-analytics": "^2.4.0",
- "gatsby-plugin-manifest": "^2.5.1",
- "gatsby-plugin-offline": "^3.3.1",
+ "gatsby-plugin-manifest": "^2.5.2",
+ "gatsby-plugin-offline": "^3.3.2",
"gatsby-plugin-react-helmet": "^3.3.14",
- "gatsby-plugin-sharp": "^2.7.0",
+ "gatsby-plugin-sharp": "^2.7.1",
"gatsby-remark-copy-linked-files": "^2.3.19",
- "gatsby-remark-images": "^3.4.0",
+ "gatsby-remark-images": "^3.4.1",
"gatsby-remark-prismjs": "^3.6.0",
"gatsby-remark-responsive-iframe": "^2.4.17",
"gatsby-remark-smartypants": "^2.3.13",
- "gatsby-source-filesystem": "^2.4.0",
- "gatsby-transformer-remark": "^2.9.1",
+ "gatsby-source-filesystem": "^2.4.1",
+ "gatsby-transformer-remark": "^2.9.2",
"gatsby-transformer-sharp": "^2.5.21",
"prismjs": "^1.22.0",
"react": "^16.12.0",
diff --git a/starters/default/package-lock.json b/starters/default/package-lock.json
index 4e38afa02c7c8..ac42b9832dac6 100644
--- a/starters/default/package-lock.json
+++ b/starters/default/package-lock.json
@@ -28,9 +28,9 @@
}
},
"@babel/compat-data": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.12.1.tgz",
- "integrity": "sha512-725AQupWJZ8ba0jbKceeFblZTY90McUBWMwHhkFQ9q1zKPJ95GUktljFcgcsIVwRnTnRKlcYzfiNImg5G9m6ZQ=="
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.12.5.tgz",
+ "integrity": "sha512-DTsS7cxrsH3by8nqQSpFSyjSfSYl57D6Cf4q8dW3LK83tBKBDCkfcay1nYkXq1nIHXnpX8WMMb/O25HOy3h1zg=="
},
"@babel/core": {
"version": "7.12.3",
@@ -71,11 +71,11 @@
}
},
"@babel/generator": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.12.1.tgz",
- "integrity": "sha512-DB+6rafIdc9o72Yc3/Ph5h+6hUjeOp66pF0naQBgUFFuPqzQwIlPTm3xZR7YNvduIMtkDIj2t21LSQwnbCrXvg==",
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.12.5.tgz",
+ "integrity": "sha512-m16TQQJ8hPt7E+OS/XVQg/7U184MLXtvuGbCdA7na61vha+ImkyyNM/9DDA0unYCVZn3ZOhng+qz48/KBOT96A==",
"requires": {
- "@babel/types": "^7.12.1",
+ "@babel/types": "^7.12.5",
"jsesc": "^2.5.1",
"source-map": "^0.5.0"
}
@@ -117,13 +117,13 @@
}
},
"@babel/helper-compilation-targets": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.12.1.tgz",
- "integrity": "sha512-jtBEif7jsPwP27GPHs06v4WBV0KrE8a/P7n0N0sSvHn2hwUCYnolP/CLmz51IzAW4NlN+HuoBtb9QcwnRo9F/g==",
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.12.5.tgz",
+ "integrity": "sha512-+qH6NrscMolUlzOYngSBMIOQpKUGPPsc61Bu5W10mg84LxZ7cmvnBHzARKbDoFxVvqqAbj6Tg6N7bSrWSPXMyw==",
"requires": {
- "@babel/compat-data": "^7.12.1",
+ "@babel/compat-data": "^7.12.5",
"@babel/helper-validator-option": "^7.12.1",
- "browserslist": "^4.12.0",
+ "browserslist": "^4.14.5",
"semver": "^5.5.0"
},
"dependencies": {
@@ -209,11 +209,11 @@
}
},
"@babel/helper-module-imports": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.12.1.tgz",
- "integrity": "sha512-ZeC1TlMSvikvJNy1v/wPIazCu3NdOwgYZLIkmIyAsGhqkNpiDoQQRmaCK8YP4Pq3GPTLPV9WXaPCJKvx06JxKA==",
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.12.5.tgz",
+ "integrity": "sha512-SR713Ogqg6++uexFRORf/+nPXMmWIn80TALu0uaFb+iQIUoR7bOC7zBWyzBs5b3tBBJXuyD0cRu1F15GyzjOWA==",
"requires": {
- "@babel/types": "^7.12.1"
+ "@babel/types": "^7.12.5"
}
},
"@babel/helper-module-transforms": {
@@ -264,14 +264,14 @@
}
},
"@babel/helper-replace-supers": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.12.1.tgz",
- "integrity": "sha512-zJjTvtNJnCFsCXVi5rUInstLd/EIVNmIKA1Q9ynESmMBWPWd+7sdR+G4/wdu+Mppfep0XLyG2m7EBPvjCeFyrw==",
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.12.5.tgz",
+ "integrity": "sha512-5YILoed0ZyIpF4gKcpZitEnXEJ9UoDRki1Ey6xz46rxOzfNMAhVIJMoune1hmPVxh40LRv1+oafz7UsWX+vyWA==",
"requires": {
"@babel/helper-member-expression-to-functions": "^7.12.1",
"@babel/helper-optimise-call-expression": "^7.10.4",
- "@babel/traverse": "^7.12.1",
- "@babel/types": "^7.12.1"
+ "@babel/traverse": "^7.12.5",
+ "@babel/types": "^7.12.5"
}
},
"@babel/helper-simple-access": {
@@ -320,13 +320,13 @@
}
},
"@babel/helpers": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.12.1.tgz",
- "integrity": "sha512-9JoDSBGoWtmbay98efmT2+mySkwjzeFeAL9BuWNoVQpkPFQF8SIIFUfY5os9u8wVzglzoiPRSW7cuJmBDUt43g==",
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.12.5.tgz",
+ "integrity": "sha512-lgKGMQlKqA8meJqKsW6rUnc4MdUk35Ln0ATDqdM1a/UpARODdI4j5Y5lVfUScnSNkJcdCRAaWkspykNoFg9sJA==",
"requires": {
"@babel/template": "^7.10.4",
- "@babel/traverse": "^7.12.1",
- "@babel/types": "^7.12.1"
+ "@babel/traverse": "^7.12.5",
+ "@babel/types": "^7.12.5"
}
},
"@babel/highlight": {
@@ -337,12 +337,24 @@
"@babel/helper-validator-identifier": "^7.10.4",
"chalk": "^2.0.0",
"js-tokens": "^4.0.0"
+ },
+ "dependencies": {
+ "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/parser": {
- "version": "7.12.3",
- "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.12.3.tgz",
- "integrity": "sha512-kFsOS0IbsuhO5ojF8Hc8z/8vEIOkylVBrjiZUbLTE3XFe0Qi+uu6HjzQixkFaqr0ZPAMZcBVxEwmsnsLPZ2Xsw=="
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.12.5.tgz",
+ "integrity": "sha512-FVM6RZQ0mn2KCf1VUED7KepYeUWoVShczewOCfm3nzoBybaih51h+sYVVGthW9M6lPByEPTQf+xm27PBdlpwmQ=="
},
"@babel/plugin-proposal-async-generator-functions": {
"version": "7.12.1",
@@ -409,9 +421,9 @@
}
},
"@babel/plugin-proposal-numeric-separator": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.12.1.tgz",
- "integrity": "sha512-MR7Ok+Af3OhNTCxYVjJZHS0t97ydnJZt/DbR4WISO39iDnhiD8XHrY12xuSJ90FFEGjir0Fzyyn7g/zY6hxbxA==",
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.12.5.tgz",
+ "integrity": "sha512-UiAnkKuOrCyjZ3sYNHlRlfuZJbBHknMQ9VMwVeX97Ofwx7RpD6gS2HfqTCh8KNUQgcOm8IKt103oR4KIjh7Q8g==",
"requires": {
"@babel/helper-plugin-utils": "^7.10.4",
"@babel/plugin-syntax-numeric-separator": "^7.10.4"
@@ -792,9 +804,9 @@
}
},
"@babel/plugin-transform-react-jsx": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.12.1.tgz",
- "integrity": "sha512-RmKejwnT0T0QzQUzcbP5p1VWlpnP8QHtdhEtLG55ZDQnJNalbF3eeDyu3dnGKvGzFIQiBzFhBYTwvv435p9Xpw==",
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.12.5.tgz",
+ "integrity": "sha512-2xkcPqqrYiOQgSlM/iwto1paPijjsDbUynN13tI6bosDz/jOW3CRzYguIE8wKX32h+msbBM22Dv5fwrFkUOZjQ==",
"requires": {
"@babel/helper-builder-react-jsx": "^7.10.4",
"@babel/helper-builder-react-jsx-experimental": "^7.12.1",
@@ -803,9 +815,9 @@
}
},
"@babel/plugin-transform-react-jsx-development": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.12.1.tgz",
- "integrity": "sha512-IilcGWdN1yNgEGOrB96jbTplRh+V2Pz1EoEwsKsHfX1a/L40cUYuD71Zepa7C+ujv7kJIxnDftWeZbKNEqZjCQ==",
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.12.5.tgz",
+ "integrity": "sha512-1JJusg3iPgsZDthyWiCr3KQiGs31ikU/mSf2N2dSYEAO0GEImmVUbWf0VoSDGDFTAn5Dj4DUiR6SdIXHY7tELA==",
"requires": {
"@babel/helper-builder-react-jsx-experimental": "^7.12.1",
"@babel/helper-plugin-utils": "^7.10.4",
@@ -1033,14 +1045,14 @@
}
},
"@babel/preset-react": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/preset-react/-/preset-react-7.12.1.tgz",
- "integrity": "sha512-euCExymHCi0qB9u5fKw7rvlw7AZSjw/NaB9h7EkdTt5+yHRrXdiRTh7fkG3uBPpJg82CqLfp1LHLqWGSCrab+g==",
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/preset-react/-/preset-react-7.12.5.tgz",
+ "integrity": "sha512-jcs++VPrgyFehkMezHtezS2BpnUlR7tQFAyesJn1vGTO9aTFZrgIQrA5YydlTwxbcjMwkFY6i04flCigRRr3GA==",
"requires": {
"@babel/helper-plugin-utils": "^7.10.4",
"@babel/plugin-transform-react-display-name": "^7.12.1",
- "@babel/plugin-transform-react-jsx": "^7.12.1",
- "@babel/plugin-transform-react-jsx-development": "^7.12.1",
+ "@babel/plugin-transform-react-jsx": "^7.12.5",
+ "@babel/plugin-transform-react-jsx-development": "^7.12.5",
"@babel/plugin-transform-react-jsx-self": "^7.12.1",
"@babel/plugin-transform-react-jsx-source": "^7.12.1",
"@babel/plugin-transform-react-pure-annotations": "^7.12.1"
@@ -1064,18 +1076,18 @@
}
},
"@babel/runtime-corejs3": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/runtime-corejs3/-/runtime-corejs3-7.12.1.tgz",
- "integrity": "sha512-umhPIcMrlBZ2aTWlWjUseW9LjQKxi1dpFlQS8DzsxB//5K+u6GLTC/JliPKHsd5kJVPIU6X/Hy0YvWOYPcMxBw==",
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/runtime-corejs3/-/runtime-corejs3-7.12.5.tgz",
+ "integrity": "sha512-roGr54CsTmNPPzZoCP1AmDXuBoNao7tnSA83TXTwt+UK5QVyh1DIJnrgYRPWKCF2flqZQXwa7Yr8v7VmLzF0YQ==",
"requires": {
"core-js-pure": "^3.0.0",
"regenerator-runtime": "^0.13.4"
}
},
"@babel/standalone": {
- "version": "7.12.4",
- "resolved": "https://registry.npmjs.org/@babel/standalone/-/standalone-7.12.4.tgz",
- "integrity": "sha512-9vw7RYK7CWh5MdTfLyC7j6hZmDYmm6DieFP4yetvpVftKQ+yrEY7ovhnhsVHznLqx5luU9Bx4k7xoEc3acrsow=="
+ "version": "7.12.6",
+ "resolved": "https://registry.npmjs.org/@babel/standalone/-/standalone-7.12.6.tgz",
+ "integrity": "sha512-yA/OV3jN1nhr0JsAdYWAqbeZ7cAOw/6Fh52rxVMzujr0HF4Z3cau0JBzJfQppFfR9IArrUtcqhBu/+Q/IevoyQ=="
},
"@babel/template": {
"version": "7.10.4",
@@ -1088,16 +1100,16 @@
}
},
"@babel/traverse": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.12.1.tgz",
- "integrity": "sha512-MA3WPoRt1ZHo2ZmoGKNqi20YnPt0B1S0GTZEPhhd+hw2KGUzBlHuVunj6K4sNuK+reEvyiPwtp0cpaqLzJDmAw==",
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.12.5.tgz",
+ "integrity": "sha512-xa15FbQnias7z9a62LwYAA5SZZPkHIXpd42C6uW68o8uTuua96FHZy1y61Va5P/i83FAAcMpW8+A/QayntzuqA==",
"requires": {
"@babel/code-frame": "^7.10.4",
- "@babel/generator": "^7.12.1",
+ "@babel/generator": "^7.12.5",
"@babel/helper-function-name": "^7.10.4",
"@babel/helper-split-export-declaration": "^7.11.0",
- "@babel/parser": "^7.12.1",
- "@babel/types": "^7.12.1",
+ "@babel/parser": "^7.12.5",
+ "@babel/types": "^7.12.5",
"debug": "^4.1.0",
"globals": "^11.1.0",
"lodash": "^4.17.19"
@@ -1114,15 +1126,33 @@
}
},
"@babel/types": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.12.1.tgz",
- "integrity": "sha512-BzSY3NJBKM4kyatSOWh3D/JJ2O3CVzBybHWxtgxnggaxEuaSTTDqeiSb/xk9lrkw2Tbqyivw5ZU4rT+EfznQsA==",
+ "version": "7.12.6",
+ "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.12.6.tgz",
+ "integrity": "sha512-hwyjw6GvjBLiyy3W0YQf0Z5Zf4NpYejUnKFcfcUhZCSffoBBp30w6wP2Wn6pk31jMYZvcOrB/1b7cGXvEoKogA==",
"requires": {
"@babel/helper-validator-identifier": "^7.10.4",
"lodash": "^4.17.19",
"to-fast-properties": "^2.0.0"
}
},
+ "@endemolshinegroup/cosmiconfig-typescript-loader": {
+ "version": "3.0.2",
+ "resolved": "https://registry.npmjs.org/@endemolshinegroup/cosmiconfig-typescript-loader/-/cosmiconfig-typescript-loader-3.0.2.tgz",
+ "integrity": "sha512-QRVtqJuS1mcT56oHpVegkKBlgtWjXw/gHNWO3eL9oyB5Sc7HBoc2OLG/nYpVfT/Jejvo3NUrD0Udk7XgoyDKkA==",
+ "requires": {
+ "lodash.get": "^4",
+ "make-error": "^1",
+ "ts-node": "^9",
+ "tslib": "^2"
+ },
+ "dependencies": {
+ "tslib": {
+ "version": "2.0.3",
+ "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.0.3.tgz",
+ "integrity": "sha512-uZtkfKblCEQtZKBF6EBXVZeQNl82yqtDQdv+eck8u7tdPxjLu2/lp5/uPW+um2tpuxINHWy3GhiccY7QgEaVHQ=="
+ }
+ }
+ },
"@graphql-tools/batch-execute": {
"version": "7.0.0",
"resolved": "https://registry.npmjs.org/@graphql-tools/batch-execute/-/batch-execute-7.0.0.tgz",
@@ -1152,9 +1182,9 @@
}
},
"@graphql-tools/delegate": {
- "version": "7.0.3",
- "resolved": "https://registry.npmjs.org/@graphql-tools/delegate/-/delegate-7.0.3.tgz",
- "integrity": "sha512-BSRF/Wg9XNllWo3Kdt0QBBaFltexn3vAnTOWH1qLrNcmfQAvUMf17/TsAqH9ZLSKU1NW9XCOsd7YMHhhUuTCEg==",
+ "version": "7.0.4",
+ "resolved": "https://registry.npmjs.org/@graphql-tools/delegate/-/delegate-7.0.4.tgz",
+ "integrity": "sha512-6/qL9V31FgECNPwc5As1359hpsAt4ASWsiYBSYWL+Iq9/K0YRcNeEmSseXIyCP4oh8k/9HS/w/m2lkMk/YSUpQ==",
"requires": {
"@ardatan/aggregate-error": "0.0.6",
"@graphql-tools/batch-execute": "^7.0.0",
@@ -1463,9 +1493,9 @@
}
},
"@graphql-tools/url-loader": {
- "version": "6.3.2",
- "resolved": "https://registry.npmjs.org/@graphql-tools/url-loader/-/url-loader-6.3.2.tgz",
- "integrity": "sha512-nrrZD33T7lFeOjIufCrwk2PAHYqFtdFcb1pe1ULWnvuFmFuhZnRCgIsfCsoy+WOMwmZHQ/eXBem//I/bewXlgw==",
+ "version": "6.4.0",
+ "resolved": "https://registry.npmjs.org/@graphql-tools/url-loader/-/url-loader-6.4.0.tgz",
+ "integrity": "sha512-M3mS/VH6vpnai3b3Fa33kYcdCgZvhFh7RqFE1R3NMfhYjphQ10EWwgf31P+VQcBNB2zz+ubxttI6UcJLiGqwuQ==",
"requires": {
"@graphql-tools/delegate": "^7.0.1",
"@graphql-tools/utils": "^7.0.1",
@@ -1473,6 +1503,7 @@
"@types/websocket": "1.0.1",
"cross-fetch": "3.0.6",
"subscriptions-transport-ws": "0.9.18",
+ "sync-fetch": "0.3.0",
"tslib": "~2.0.1",
"valid-url": "1.0.9",
"websocket": "1.0.32"
@@ -1575,6 +1606,11 @@
"@hapi/hoek": "^8.3.0"
}
},
+ "@iarna/toml": {
+ "version": "2.2.5",
+ "resolved": "https://registry.npmjs.org/@iarna/toml/-/toml-2.2.5.tgz",
+ "integrity": "sha512-trnsAYxU3xnS1gPHPyU961coFyLkh4gAD/0zQ5mymY4yOZ+CYvsPqUbOFSw0aDM4y0tV7tiFxL/1XfXPNC6IPg=="
+ },
"@jest/types": {
"version": "25.5.0",
"resolved": "https://registry.npmjs.org/@jest/types/-/types-25.5.0.tgz",
@@ -2001,6 +2037,18 @@
"error-stack-parser": "^2.0.0",
"string-width": "^2.0.0",
"strip-ansi": "^3"
+ },
+ "dependencies": {
+ "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"
+ }
+ }
}
},
"@pmmmwh/react-refresh-webpack-plugin": {
@@ -2780,6 +2828,11 @@
"readable-stream": "^2.0.6"
}
},
+ "arg": {
+ "version": "4.1.3",
+ "resolved": "https://registry.npmjs.org/arg/-/arg-4.1.3.tgz",
+ "integrity": "sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA=="
+ },
"argparse": {
"version": "1.0.10",
"resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz",
@@ -3215,9 +3268,9 @@
"integrity": "sha512-eqj0hVcJUR57/Ug2zE1Yswsw4LhuqqHhD+8v120T1cl3kjg76QwtyBrdIk4WVwK+lAhBJVYCd/v+4nc4y+8JsA=="
},
"babel-preset-gatsby": {
- "version": "0.5.15",
- "resolved": "https://registry.npmjs.org/babel-preset-gatsby/-/babel-preset-gatsby-0.5.15.tgz",
- "integrity": "sha512-0eno/GAvzmaLW/s+RzsLXrZVQwBMZYU/zMv1HpArGlYbNCon/fK53/Bz3pklJDq1pNAybXQ2RROpPHDyJM2EGA==",
+ "version": "0.5.16",
+ "resolved": "https://registry.npmjs.org/babel-preset-gatsby/-/babel-preset-gatsby-0.5.16.tgz",
+ "integrity": "sha512-zcUYvHRnDxwQmzJnkWtHk4x7cGaMbQjTJIKrvCWpS9u10hQOQUNAz/ZKSH1vUmB4oYap6m+sHDoDIr7PNoCAEQ==",
"requires": {
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.10.4",
@@ -3231,7 +3284,7 @@
"babel-plugin-dynamic-import-node": "^2.3.3",
"babel-plugin-macros": "^2.8.0",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
- "gatsby-core-utils": "^1.3.23",
+ "gatsby-core-utils": "^1.3.24",
"gatsby-legacy-polyfills": "^0.0.6"
}
},
@@ -4295,9 +4348,9 @@
}
},
"caniuse-lite": {
- "version": "1.0.30001154",
- "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001154.tgz",
- "integrity": "sha512-y9DvdSti8NnYB9Be92ddMZQrcOe04kcQtcxtBx4NkB04+qZ+JUWotnXBJTmxlKudhxNTQ3RRknMwNU2YQl/Org=="
+ "version": "1.0.30001156",
+ "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001156.tgz",
+ "integrity": "sha512-z7qztybA2eFZTB6Z3yvaQBIoJpQtsewRD74adw2UbRWwsRq3jIPvgrQGawBMbfafekQaD21FWuXNcywtTDGGCw=="
},
"caseless": {
"version": "0.12.0",
@@ -4321,13 +4374,48 @@
"integrity": "sha512-vlNK021QdI7PNeiUh/lKkC/mNHHfV0m/Ad5JoI0TYtlBnJAslM/JIkm/tGC88bkLIwO6OQ5uV6ztS6kVAtCDlg=="
},
"chalk": {
- "version": "2.4.2",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
- "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
+ "version": "4.1.0",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.0.tgz",
+ "integrity": "sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==",
"requires": {
- "ansi-styles": "^3.2.1",
- "escape-string-regexp": "^1.0.5",
- "supports-color": "^5.3.0"
+ "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"
+ }
+ }
}
},
"character-entities": {
@@ -4658,6 +4746,18 @@
"@types/q": "^1.5.1",
"chalk": "^2.4.1",
"q": "^1.1.2"
+ },
+ "dependencies": {
+ "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"
+ }
+ }
}
},
"code-point-at": {
@@ -5087,6 +5187,14 @@
"yaml": "^1.7.2"
}
},
+ "cosmiconfig-toml-loader": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/cosmiconfig-toml-loader/-/cosmiconfig-toml-loader-1.0.0.tgz",
+ "integrity": "sha512-H/2gurFWVi7xXvCyvsWRLCMekl4tITJcX0QEsDMpzxtuxDyM59xLatYNg4s/k9AA/HdtCYfj2su8mgA0GSDLDA==",
+ "requires": {
+ "@iarna/toml": "^2.2.5"
+ }
+ },
"create-ecdh": {
"version": "4.0.4",
"resolved": "https://registry.npmjs.org/create-ecdh/-/create-ecdh-4.0.4.tgz",
@@ -5220,6 +5328,16 @@
"source-list-map": "^2.0.0"
},
"dependencies": {
+ "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"
+ }
+ },
"postcss": {
"version": "6.0.23",
"resolved": "https://registry.npmjs.org/postcss/-/postcss-6.0.23.tgz",
@@ -5948,6 +6066,11 @@
}
}
},
+ "diff": {
+ "version": "4.0.2",
+ "resolved": "https://registry.npmjs.org/diff/-/diff-4.0.2.tgz",
+ "integrity": "sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A=="
+ },
"diff-sequences": {
"version": "25.2.6",
"resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-25.2.6.tgz",
@@ -6221,9 +6344,9 @@
"integrity": "sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0="
},
"electron-to-chromium": {
- "version": "1.3.586",
- "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.586.tgz",
- "integrity": "sha512-or8FCbQCRlPZHkOoqBULOI9hzTiStVIQqDLgAPt8pzY+swTrW+89vsqd24Zn+Iv4guAJLxRBD6OR5AmbpabGDA=="
+ "version": "1.3.588",
+ "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.588.tgz",
+ "integrity": "sha512-0zr+ZfytnLeJZxGgmEpPTcItu5Mm4A5zHPZXLfHcGp0mdsk95rmD7ePNewYtK1yIdLbk8Z1U2oTRRfOtR4gbYg=="
},
"elliptic": {
"version": "6.5.3",
@@ -6551,6 +6674,16 @@
"resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz",
"integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg=="
},
+ "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.2.0",
"resolved": "https://registry.npmjs.org/debug/-/debug-4.2.0.tgz",
@@ -7785,9 +7918,9 @@
"integrity": "sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc="
},
"gatsby": {
- "version": "2.25.1",
- "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-2.25.1.tgz",
- "integrity": "sha512-2MLGL0MooLGmGQhSjIjq+mH95lE3PbrtZ8xgcmN1JOsjR/dJ+Fx/BoZC3CdqPku/zflMNlCb99vuB2HQaXiRdg==",
+ "version": "2.25.2",
+ "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-2.25.2.tgz",
+ "integrity": "sha512-zssz6mH5vpScGq9SCDtkfajJkYVYJ+00x5JRVf9pYlVTRdv+g7jbKTuGdaWKbPoacEtXw3bUaTURUC2YMs/Gmg==",
"requires": {
"@babel/code-frame": "^7.10.4",
"@babel/core": "^7.11.6",
@@ -7814,7 +7947,7 @@
"babel-plugin-dynamic-import-node": "^2.3.3",
"babel-plugin-lodash": "3.3.4",
"babel-plugin-remove-graphql-queries": "^2.9.20",
- "babel-preset-gatsby": "^0.5.15",
+ "babel-preset-gatsby": "^0.5.16",
"better-opn": "^2.0.0",
"better-queue": "^3.8.10",
"bluebird": "^3.7.2",
@@ -7822,7 +7955,7 @@
"browserslist": "^4.12.2",
"cache-manager": "^2.11.1",
"cache-manager-fs-hash": "^0.0.9",
- "chalk": "^2.4.2",
+ "chalk": "^4.1.0",
"chokidar": "^3.4.2",
"common-tags": "^1.8.0",
"compression": "^1.7.4",
@@ -7855,16 +7988,16 @@
"find-cache-dir": "^3.3.1",
"fs-exists-cached": "1.0.0",
"fs-extra": "^8.1.0",
- "gatsby-cli": "^2.12.115",
- "gatsby-core-utils": "^1.3.23",
+ "gatsby-cli": "^2.12.116",
+ "gatsby-core-utils": "^1.3.24",
"gatsby-graphiql-explorer": "^0.4.15",
"gatsby-legacy-polyfills": "^0.0.6",
"gatsby-link": "^2.4.16",
- "gatsby-plugin-page-creator": "^2.3.34",
+ "gatsby-plugin-page-creator": "^2.3.35",
"gatsby-plugin-typescript": "^2.5.0",
"gatsby-plugin-utils": "^0.2.40",
"gatsby-react-router-scroll": "^3.0.15",
- "gatsby-telemetry": "^1.3.39",
+ "gatsby-telemetry": "^1.3.40",
"glob": "^7.1.6",
"got": "8.3.2",
"graphql": "^14.6.0",
@@ -7955,15 +8088,15 @@
}
},
"gatsby-cli": {
- "version": "2.12.115",
- "resolved": "https://registry.npmjs.org/gatsby-cli/-/gatsby-cli-2.12.115.tgz",
- "integrity": "sha512-wOs3tG3tYses4fclXG0FtVZx+K0FDoZFkU1MIJNB+aRt+T7VMCZUIlg2MyrqcngsEW8al4EgyOd3UIl3NepC4A==",
+ "version": "2.12.116",
+ "resolved": "https://registry.npmjs.org/gatsby-cli/-/gatsby-cli-2.12.116.tgz",
+ "integrity": "sha512-vXpyl/ZFF67r/BlBxIjfdknBzxRfRuJ1qkA7//6dhNKDMlvVi5ZqGhOwcMzTgM1e0WZRaMFzf5/foPIA++8xEQ==",
"requires": {
"@babel/code-frame": "^7.10.4",
"@hapi/joi": "^15.1.1",
"@types/common-tags": "^1.8.0",
"better-opn": "^2.0.0",
- "chalk": "^2.4.2",
+ "chalk": "^4.1.0",
"clipboardy": "^2.3.0",
"common-tags": "^1.8.0",
"configstore": "^5.0.1",
@@ -7972,9 +8105,9 @@
"execa": "^3.4.0",
"fs-exists-cached": "^1.0.0",
"fs-extra": "^8.1.0",
- "gatsby-core-utils": "^1.3.23",
- "gatsby-recipes": "^0.2.36",
- "gatsby-telemetry": "^1.3.39",
+ "gatsby-core-utils": "^1.3.24",
+ "gatsby-recipes": "^0.2.37",
+ "gatsby-telemetry": "^1.3.40",
"hosted-git-info": "^3.0.6",
"is-valid-path": "^0.1.1",
"lodash": "^4.17.20",
@@ -8085,9 +8218,9 @@
}
},
"gatsby-core-utils": {
- "version": "1.3.23",
- "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-1.3.23.tgz",
- "integrity": "sha512-H6n6dDeRZ22HAJaBUIt5YjB/BSaE8Jq+kayMUv/YzL1RL2yFZ5lqcLwIL1OE2vWk1mQjMUBZCRxLODU0q1i3bQ==",
+ "version": "1.3.24",
+ "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-1.3.24.tgz",
+ "integrity": "sha512-SlK7rJv/8NBYC8FodYvTINamBHadXNSv//a2uRwh44N1GSSujuCMvtUcpEuAdg9BUQHc54NbbmFuoqf8p85kgA==",
"requires": {
"ci-info": "2.0.0",
"configstore": "^5.0.1",
@@ -8135,40 +8268,40 @@
}
},
"gatsby-page-utils": {
- "version": "0.2.29",
- "resolved": "https://registry.npmjs.org/gatsby-page-utils/-/gatsby-page-utils-0.2.29.tgz",
- "integrity": "sha512-0xN3kBNd7PNwsJB1lJrsy7hEJbIIBcvnmbxGTplGenmGnOMoJqK6kEfM5Ru5dWBdSmwHrS+kcihFi0ZiGxpoww==",
+ "version": "0.2.30",
+ "resolved": "https://registry.npmjs.org/gatsby-page-utils/-/gatsby-page-utils-0.2.30.tgz",
+ "integrity": "sha512-H4a6VgDuO4Obd2UgZmfHCnpN3D6NOOpcgVSf8XuC7fmksVhQ3L2v7zw7y/TNS1Fz74yEKffnaF9pqRfkg8D/yg==",
"requires": {
"@babel/runtime": "^7.11.2",
"bluebird": "^3.7.2",
"chokidar": "^3.4.3",
"fs-exists-cached": "^1.0.0",
- "gatsby-core-utils": "^1.3.23",
+ "gatsby-core-utils": "^1.3.24",
"glob": "^7.1.6",
"lodash": "^4.17.20",
"micromatch": "^4.0.2"
}
},
"gatsby-plugin-manifest": {
- "version": "2.5.1",
- "resolved": "https://registry.npmjs.org/gatsby-plugin-manifest/-/gatsby-plugin-manifest-2.5.1.tgz",
- "integrity": "sha512-RYavr4onu2VFMhLNiRfrsVzKRtqii7mJK27X2mT74wEutSepel8zh+zV7knVJnFK23l/zTW2gq85lqsFcel8/w==",
+ "version": "2.5.2",
+ "resolved": "https://registry.npmjs.org/gatsby-plugin-manifest/-/gatsby-plugin-manifest-2.5.2.tgz",
+ "integrity": "sha512-ULLpUbKMXu0wh6XV+GEqE3w7ggGrEKH3fubwiiE00oUNJGoyFfvS9xGSwPtpE6yO1Xg3m1AH5vajZxfL9dWQ+A==",
"requires": {
"@babel/runtime": "^7.11.2",
- "gatsby-core-utils": "^1.3.23",
+ "gatsby-core-utils": "^1.3.24",
"gatsby-plugin-utils": "^0.2.40",
"semver": "^7.3.2",
"sharp": "^0.25.4"
}
},
"gatsby-plugin-offline": {
- "version": "3.3.1",
- "resolved": "https://registry.npmjs.org/gatsby-plugin-offline/-/gatsby-plugin-offline-3.3.1.tgz",
- "integrity": "sha512-OzMn78YqCXMcG0sR7SBWE7ak2J+0wd4vzODELGMXoOQYaRmKRTnTp79jVTV2/scZZoAnW6ebZTvJ2djBJqqd+A==",
+ "version": "3.3.2",
+ "resolved": "https://registry.npmjs.org/gatsby-plugin-offline/-/gatsby-plugin-offline-3.3.2.tgz",
+ "integrity": "sha512-oW78R9ijWttJA+rTRND+eyWNlnfXaN3PdmjSIpgUVASjLdSJMYkoXp6xWOpXvj/ChzogAskdTxxJ3tkMHENziw==",
"requires": {
"@babel/runtime": "^7.11.2",
"cheerio": "^1.0.0-rc.3",
- "gatsby-core-utils": "^1.3.23",
+ "gatsby-core-utils": "^1.3.24",
"glob": "^7.1.6",
"idb-keyval": "^3.2.0",
"lodash": "^4.17.20",
@@ -8176,15 +8309,15 @@
}
},
"gatsby-plugin-page-creator": {
- "version": "2.3.34",
- "resolved": "https://registry.npmjs.org/gatsby-plugin-page-creator/-/gatsby-plugin-page-creator-2.3.34.tgz",
- "integrity": "sha512-/rFG/ye4m0JJ8NAxTObkKKD8098KOVGE+dZrgBx9I3VN1TcKru0HprVe1xj679HBgKjjNUvchXZbhLl5I+2o4A==",
+ "version": "2.3.35",
+ "resolved": "https://registry.npmjs.org/gatsby-plugin-page-creator/-/gatsby-plugin-page-creator-2.3.35.tgz",
+ "integrity": "sha512-hT6hgkplHSBXin9DECOxNQastvRJq15XrzN8327VU/67tetYGOG7SKDSxN4eCaIwy7VK0nP0C97gyN7kQ3FNJw==",
"requires": {
"@babel/traverse": "^7.11.5",
"@sindresorhus/slugify": "^1.1.0",
"chokidar": "^3.4.2",
"fs-exists-cached": "^1.0.0",
- "gatsby-page-utils": "^0.2.29",
+ "gatsby-page-utils": "^0.2.30",
"globby": "^11.0.1",
"graphql": "^14.7.0",
"lodash": "^4.17.20"
@@ -8214,15 +8347,15 @@
}
},
"gatsby-plugin-sharp": {
- "version": "2.7.0",
- "resolved": "https://registry.npmjs.org/gatsby-plugin-sharp/-/gatsby-plugin-sharp-2.7.0.tgz",
- "integrity": "sha512-l53FeWKDRE3LpNFUsTVBv18FT+u/1gOdBhdhgM2pU4oj/e0gWxTAJ8IoDVQuoYAM/viZfnRnTsU9YEieCzqzjQ==",
+ "version": "2.7.1",
+ "resolved": "https://registry.npmjs.org/gatsby-plugin-sharp/-/gatsby-plugin-sharp-2.7.1.tgz",
+ "integrity": "sha512-sS7vGyJ3J4vRY5NrfmSKqaDMr/vgyBeAlkizvV5xTxzghOLE8u/c6HNCrhwzEP5nMdixepAm1+YgOS/P8tTk4w==",
"requires": {
"@babel/runtime": "^7.11.2",
"async": "^3.2.0",
"bluebird": "^3.7.2",
"fs-extra": "^9.0.1",
- "gatsby-core-utils": "^1.3.23",
+ "gatsby-core-utils": "^1.3.24",
"got": "^10.7.0",
"imagemin": "^7.0.1",
"imagemin-mozjpeg": "^9.0.0",
@@ -8421,9 +8554,9 @@
}
},
"gatsby-recipes": {
- "version": "0.2.36",
- "resolved": "https://registry.npmjs.org/gatsby-recipes/-/gatsby-recipes-0.2.36.tgz",
- "integrity": "sha512-GrXRHdEOyGHe5r1hyePWc7kYM3yIu+RDargLqgHGO/lb76ZXRYhjlQ06chL3NMbmxAMYF3UcIm4RSlTS6rLkIg==",
+ "version": "0.2.37",
+ "resolved": "https://registry.npmjs.org/gatsby-recipes/-/gatsby-recipes-0.2.37.tgz",
+ "integrity": "sha512-3pBvAx8HdrFYHv+o0uUiC5Oyd4206wYuQdETib/fYQhG8JxyGCZTDIzy/9RjBYb2I8xm+TlK6jpucLXWlp5DcA==",
"requires": {
"@babel/core": "^7.11.6",
"@babel/generator": "^7.11.6",
@@ -8433,8 +8566,8 @@
"@babel/standalone": "^7.11.6",
"@babel/template": "^7.10.4",
"@babel/types": "^7.11.5",
- "@graphql-tools/schema": "^6.0.14",
- "@graphql-tools/utils": "^6.0.14",
+ "@graphql-tools/schema": "^7.0.0",
+ "@graphql-tools/utils": "^7.0.2",
"@hapi/hoek": "8.x.x",
"@hapi/joi": "^15.1.1",
"better-queue": "^3.8.10",
@@ -8448,8 +8581,8 @@
"express": "^4.17.1",
"express-graphql": "^0.9.0",
"fs-extra": "^8.1.0",
- "gatsby-core-utils": "^1.3.23",
- "gatsby-telemetry": "^1.3.39",
+ "gatsby-core-utils": "^1.3.24",
+ "gatsby-telemetry": "^1.3.40",
"glob": "^7.1.6",
"graphql": "^14.6.0",
"graphql-compose": "^6.3.8",
@@ -8486,12 +8619,13 @@
"yoga-layout-prebuilt": "^1.9.6"
},
"dependencies": {
- "@graphql-tools/schema": {
- "version": "6.2.4",
- "resolved": "https://registry.npmjs.org/@graphql-tools/schema/-/schema-6.2.4.tgz",
- "integrity": "sha512-rh+14lSY1q8IPbEv2J9x8UBFJ5NrDX9W5asXEUlPp+7vraLp/Tiox4GXdgyA92JhwpYco3nTf5Bo2JDMt1KnAQ==",
+ "@graphql-tools/utils": {
+ "version": "7.0.2",
+ "resolved": "https://registry.npmjs.org/@graphql-tools/utils/-/utils-7.0.2.tgz",
+ "integrity": "sha512-VQQ7krHeoXO0FS3qbWsb/vZb8c8oyiCYPIH4RSgeK9SKOUpatWYt3DW4jmLmyHZLVVMk0yjUbsOhKTBEMejKSA==",
"requires": {
- "@graphql-tools/utils": "^6.2.4",
+ "@ardatan/aggregate-error": "0.0.6",
+ "camel-case": "4.1.1",
"tslib": "~2.0.1"
}
},
@@ -8585,16 +8719,16 @@
}
},
"gatsby-source-filesystem": {
- "version": "2.4.0",
- "resolved": "https://registry.npmjs.org/gatsby-source-filesystem/-/gatsby-source-filesystem-2.4.0.tgz",
- "integrity": "sha512-YfWSsF1x7vjj2uk3XI9Qldo+iO0TmbcgwX5XBEJJgIg8p3v43EZ1gCj0JGIyYyhvfmUaf5SQgFH03Yt3GURRyQ==",
+ "version": "2.4.1",
+ "resolved": "https://registry.npmjs.org/gatsby-source-filesystem/-/gatsby-source-filesystem-2.4.1.tgz",
+ "integrity": "sha512-JDFgK+873XebNvZreEhDzgRlkZ6jEXuS4A+TuJT3EPfTZ3h15YMGnldR2AWhAWYDFX9i2RfFPDuAo8xYzuFY1Q==",
"requires": {
"@babel/runtime": "^7.11.2",
"better-queue": "^3.8.10",
"chokidar": "^3.4.2",
"file-type": "^12.4.2",
"fs-extra": "^8.1.0",
- "gatsby-core-utils": "^1.3.23",
+ "gatsby-core-utils": "^1.3.24",
"got": "^9.6.0",
"md5-file": "^5.0.0",
"mime": "^2.4.6",
@@ -8634,9 +8768,9 @@
}
},
"gatsby-telemetry": {
- "version": "1.3.39",
- "resolved": "https://registry.npmjs.org/gatsby-telemetry/-/gatsby-telemetry-1.3.39.tgz",
- "integrity": "sha512-25LDAc0+0LDjHTOSIHLT6iJk/zOLLWSttZ0IQNho5fhLdWJ3hQrCWKx8YiVLPPNwnImei6/1FxQlGKUPVAOrRA==",
+ "version": "1.3.40",
+ "resolved": "https://registry.npmjs.org/gatsby-telemetry/-/gatsby-telemetry-1.3.40.tgz",
+ "integrity": "sha512-BfKuSOe9Q2kCrATypvSXGwfffffLG483mP6j7tJy3iUYgnteRcLLP4YbBV3HG7pqW0SQk+JP5iIlsT7VtSZOXw==",
"requires": {
"@babel/code-frame": "^7.10.4",
"@babel/runtime": "^7.11.2",
@@ -8647,7 +8781,7 @@
"configstore": "^5.0.1",
"envinfo": "^7.7.3",
"fs-extra": "^8.1.0",
- "gatsby-core-utils": "^1.3.23",
+ "gatsby-core-utils": "^1.3.24",
"git-up": "^4.0.2",
"is-docker": "^2.1.1",
"lodash": "^4.17.20",
@@ -9046,10 +9180,11 @@
}
},
"graphql-config": {
- "version": "3.0.3",
- "resolved": "https://registry.npmjs.org/graphql-config/-/graphql-config-3.0.3.tgz",
- "integrity": "sha512-MBY0wEjvcgJtZUyoqpPvOE1e5qPI0hJaa1gKTqjonSFiCsNHX2lykNjpOPcodmAgH1V06ELxhGnm9kcVzqvi/g==",
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/graphql-config/-/graphql-config-3.1.0.tgz",
+ "integrity": "sha512-tOjgUqB6W+vIzGRn20LogMujoRTAsdwO1gGg6l3SF3xaUjI9/uaCpvy3kJHbZcRiRuOTocmysdBU+hOs3Npx6Q==",
"requires": {
+ "@endemolshinegroup/cosmiconfig-typescript-loader": "3.0.2",
"@graphql-tools/graphql-file-loader": "^6.0.0",
"@graphql-tools/json-file-loader": "^6.0.0",
"@graphql-tools/load": "^6.0.0",
@@ -9057,6 +9192,7 @@
"@graphql-tools/url-loader": "^6.0.0",
"@graphql-tools/utils": "^6.0.0",
"cosmiconfig": "6.0.0",
+ "cosmiconfig-toml-loader": "1.0.0",
"minimatch": "3.0.4",
"string-env-interpolation": "1.0.1",
"tslib": "^2.0.0"
@@ -9523,6 +9659,16 @@
"postcss": "^6.0.1"
},
"dependencies": {
+ "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"
+ }
+ },
"postcss": {
"version": "6.0.23",
"resolved": "https://registry.npmjs.org/postcss/-/postcss-6.0.23.tgz",
@@ -9774,41 +9920,6 @@
"resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.0.tgz",
"integrity": "sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg=="
},
- "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"
- }
- },
- "chalk": {
- "version": "4.1.0",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.0.tgz",
- "integrity": "sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==",
- "requires": {
- "ansi-styles": "^4.1.0",
- "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=="
- },
"is-fullwidth-code-point": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz",
@@ -9832,14 +9943,6 @@
"ansi-regex": "^5.0.0"
}
},
- "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.11.0",
"resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.11.0.tgz",
@@ -9998,9 +10101,9 @@
}
},
"is-core-module": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.0.0.tgz",
- "integrity": "sha512-jq1AH6C8MuteOoBPwkxHafmByhL9j5q4OaPGdbuD+ZtQJVzH+i6E3BJDQcBA09k57i2Hh2yQbEG8yObZ0jdlWw==",
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.1.0.tgz",
+ "integrity": "sha512-YcV7BgVMRFRua2FqQzKtTDMz8iCuLEyGKjr70q8Zm1yy2qKcurbFEd79PAdHV77oL3NrAaOVQIbMmiHQCHB7ZA==",
"requires": {
"has": "^1.0.3"
}
@@ -10892,6 +10995,11 @@
"resolved": "https://registry.npmjs.org/lodash.foreach/-/lodash.foreach-4.5.0.tgz",
"integrity": "sha1-Gmo16s5AEoDH8G3d7DUWWrJ+PlM="
},
+ "lodash.get": {
+ "version": "4.4.2",
+ "resolved": "https://registry.npmjs.org/lodash.get/-/lodash.get-4.4.2.tgz",
+ "integrity": "sha1-LRd/ZS+jHpObRDjVNBSZ36OCXpk="
+ },
"lodash.map": {
"version": "4.6.0",
"resolved": "https://registry.npmjs.org/lodash.map/-/lodash.map-4.6.0.tgz",
@@ -11050,6 +11158,11 @@
}
}
},
+ "make-error": {
+ "version": "1.3.6",
+ "resolved": "https://registry.npmjs.org/make-error/-/make-error-1.3.6.tgz",
+ "integrity": "sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw=="
+ },
"map-cache": {
"version": "0.2.2",
"resolved": "https://registry.npmjs.org/map-cache/-/map-cache-0.2.2.tgz",
@@ -12721,6 +12834,26 @@
"supports-color": "^6.1.0"
},
"dependencies": {
+ "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"
+ },
+ "dependencies": {
+ "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"
+ }
+ }
+ }
+ },
"source-map": {
"version": "0.6.1",
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
@@ -13017,6 +13150,16 @@
"postcss": "^6.0.1"
},
"dependencies": {
+ "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"
+ }
+ },
"postcss": {
"version": "6.0.23",
"resolved": "https://registry.npmjs.org/postcss/-/postcss-6.0.23.tgz",
@@ -13043,6 +13186,16 @@
"postcss": "^6.0.1"
},
"dependencies": {
+ "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"
+ }
+ },
"postcss": {
"version": "6.0.23",
"resolved": "https://registry.npmjs.org/postcss/-/postcss-6.0.23.tgz",
@@ -13069,6 +13222,16 @@
"postcss": "^6.0.1"
},
"dependencies": {
+ "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"
+ }
+ },
"postcss": {
"version": "6.0.23",
"resolved": "https://registry.npmjs.org/postcss/-/postcss-6.0.23.tgz",
@@ -13095,6 +13258,16 @@
"postcss": "^6.0.1"
},
"dependencies": {
+ "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"
+ }
+ },
"postcss": {
"version": "6.0.23",
"resolved": "https://registry.npmjs.org/postcss/-/postcss-6.0.23.tgz",
@@ -16121,6 +16294,16 @@
"util.promisify": "~1.0.0"
},
"dependencies": {
+ "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"
+ }
+ },
"css-select": {
"version": "2.1.0",
"resolved": "https://registry.npmjs.org/css-select/-/css-select-2.1.0.tgz",
@@ -16153,6 +16336,15 @@
"resolved": "https://registry.npmjs.org/symbol-observable/-/symbol-observable-1.2.0.tgz",
"integrity": "sha512-e900nM8RRtGhlV36KGEU9k65K3mPb1WV70OdjfxlG2EAuM1noi/E/BaW/uMhL7bPEssK8QV57vN3esixjUvcXQ=="
},
+ "sync-fetch": {
+ "version": "0.3.0",
+ "resolved": "https://registry.npmjs.org/sync-fetch/-/sync-fetch-0.3.0.tgz",
+ "integrity": "sha512-dJp4qg+x4JwSEW1HibAuMi0IIrBI3wuQr2GimmqB7OXR50wmwzfdusG+p39R9w3R6aFtZ2mzvxvWKQ3Bd/vx3g==",
+ "requires": {
+ "buffer": "^5.7.0",
+ "node-fetch": "^2.6.1"
+ }
+ },
"table": {
"version": "5.4.6",
"resolved": "https://registry.npmjs.org/table/-/table-5.4.6.tgz",
@@ -16515,6 +16707,18 @@
"resolved": "https://registry.npmjs.org/true-case-path/-/true-case-path-2.2.1.tgz",
"integrity": "sha512-0z3j8R7MCjy10kc/g+qg7Ln3alJTodw9aDuVWZa3uiWqfuBMKeAeP2ocWcxoyM3D73yz3Jt/Pu4qPr4wHSdB/Q=="
},
+ "ts-node": {
+ "version": "9.0.0",
+ "resolved": "https://registry.npmjs.org/ts-node/-/ts-node-9.0.0.tgz",
+ "integrity": "sha512-/TqB4SnererCDR/vb4S/QvSZvzQMJN8daAslg7MeaiHvD8rDZsSfXmNeNumyZZzMned72Xoq/isQljYSt8Ynfg==",
+ "requires": {
+ "arg": "^4.1.0",
+ "diff": "^4.0.1",
+ "make-error": "^1.1.1",
+ "source-map-support": "^0.5.17",
+ "yn": "3.1.1"
+ }
+ },
"ts-pnp": {
"version": "1.2.0",
"resolved": "https://registry.npmjs.org/ts-pnp/-/ts-pnp-1.2.0.tgz",
@@ -17128,9 +17332,9 @@
},
"dependencies": {
"is-buffer": {
- "version": "2.0.4",
- "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-2.0.4.tgz",
- "integrity": "sha512-Kq1rokWXOPXWuaMAqZiJW4XxsmD9zGx9q4aePabbn3qCRGedtH7Cm+zV8WETitMfu1wdh+Rvd6w5egwSngUX2A=="
+ "version": "2.0.5",
+ "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-2.0.5.tgz",
+ "integrity": "sha512-i2R6zNFDwgEHJyQUtJEk0XFi1i0dPFn/oqjK3/vPCcDeJvW5NQ83V8QbicfF1SupOaB0h8ntgBC2YiE7dfyctQ=="
}
}
},
@@ -18316,6 +18520,11 @@
"resolved": "https://registry.npmjs.org/yeast/-/yeast-0.1.2.tgz",
"integrity": "sha1-AI4G2AlDIMNy28L47XagymyKxBk="
},
+ "yn": {
+ "version": "3.1.1",
+ "resolved": "https://registry.npmjs.org/yn/-/yn-3.1.1.tgz",
+ "integrity": "sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q=="
+ },
"yoga-layout-prebuilt": {
"version": "1.10.0",
"resolved": "https://registry.npmjs.org/yoga-layout-prebuilt/-/yoga-layout-prebuilt-1.10.0.tgz",
@@ -18355,6 +18564,16 @@
"resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz",
"integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg=="
},
+ "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.2.0",
"resolved": "https://registry.npmjs.org/debug/-/debug-4.2.0.tgz",
diff --git a/starters/default/package.json b/starters/default/package.json
index 550045e5bedeb..6a5e69292fa52 100644
--- a/starters/default/package.json
+++ b/starters/default/package.json
@@ -5,13 +5,13 @@
"version": "0.1.0",
"author": "Kyle Mathews <[email protected]>",
"dependencies": {
- "gatsby": "^2.25.1",
+ "gatsby": "^2.25.2",
"gatsby-image": "^2.4.21",
- "gatsby-plugin-manifest": "^2.5.1",
- "gatsby-plugin-offline": "^3.3.1",
+ "gatsby-plugin-manifest": "^2.5.2",
+ "gatsby-plugin-offline": "^3.3.2",
"gatsby-plugin-react-helmet": "^3.3.14",
- "gatsby-plugin-sharp": "^2.7.0",
- "gatsby-source-filesystem": "^2.4.0",
+ "gatsby-plugin-sharp": "^2.7.1",
+ "gatsby-source-filesystem": "^2.4.1",
"gatsby-transformer-sharp": "^2.5.21",
"prop-types": "^15.7.2",
"react": "^16.12.0",
diff --git a/starters/gatsby-starter-blog-theme-core/package-lock.json b/starters/gatsby-starter-blog-theme-core/package-lock.json
index 5b79d721f4cb4..e9a03fdc111ea 100644
--- a/starters/gatsby-starter-blog-theme-core/package-lock.json
+++ b/starters/gatsby-starter-blog-theme-core/package-lock.json
@@ -164,16 +164,85 @@
}
},
"@babel/helper-create-class-features-plugin": {
- "version": "7.10.5",
- "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.10.5.tgz",
- "integrity": "sha512-0nkdeijB7VlZoLT3r/mY3bUkw3T8WG/hNw+FATs/6+pG2039IJWjTYL0VTISqsNHMUTEnwbVnc89WIJX9Qed0A==",
+ "version": "7.12.1",
+ "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.12.1.tgz",
+ "integrity": "sha512-hkL++rWeta/OVOBTRJc9a5Azh5mt5WgZUGAKMD8JM141YsE08K//bp1unBBieO6rUKkIPyUE0USQ30jAy3Sk1w==",
"requires": {
"@babel/helper-function-name": "^7.10.4",
- "@babel/helper-member-expression-to-functions": "^7.10.5",
+ "@babel/helper-member-expression-to-functions": "^7.12.1",
"@babel/helper-optimise-call-expression": "^7.10.4",
- "@babel/helper-plugin-utils": "^7.10.4",
- "@babel/helper-replace-supers": "^7.10.4",
+ "@babel/helper-replace-supers": "^7.12.1",
"@babel/helper-split-export-declaration": "^7.10.4"
+ },
+ "dependencies": {
+ "@babel/generator": {
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.12.5.tgz",
+ "integrity": "sha512-m16TQQJ8hPt7E+OS/XVQg/7U184MLXtvuGbCdA7na61vha+ImkyyNM/9DDA0unYCVZn3ZOhng+qz48/KBOT96A==",
+ "requires": {
+ "@babel/types": "^7.12.5",
+ "jsesc": "^2.5.1",
+ "source-map": "^0.5.0"
+ }
+ },
+ "@babel/helper-member-expression-to-functions": {
+ "version": "7.12.1",
+ "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.12.1.tgz",
+ "integrity": "sha512-k0CIe3tXUKTRSoEx1LQEPFU9vRQfqHtl+kf8eNnDqb4AUJEy5pz6aIiog+YWtVm2jpggjS1laH68bPsR+KWWPQ==",
+ "requires": {
+ "@babel/types": "^7.12.1"
+ }
+ },
+ "@babel/helper-replace-supers": {
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.12.5.tgz",
+ "integrity": "sha512-5YILoed0ZyIpF4gKcpZitEnXEJ9UoDRki1Ey6xz46rxOzfNMAhVIJMoune1hmPVxh40LRv1+oafz7UsWX+vyWA==",
+ "requires": {
+ "@babel/helper-member-expression-to-functions": "^7.12.1",
+ "@babel/helper-optimise-call-expression": "^7.10.4",
+ "@babel/traverse": "^7.12.5",
+ "@babel/types": "^7.12.5"
+ }
+ },
+ "@babel/parser": {
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.12.5.tgz",
+ "integrity": "sha512-FVM6RZQ0mn2KCf1VUED7KepYeUWoVShczewOCfm3nzoBybaih51h+sYVVGthW9M6lPByEPTQf+xm27PBdlpwmQ=="
+ },
+ "@babel/traverse": {
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.12.5.tgz",
+ "integrity": "sha512-xa15FbQnias7z9a62LwYAA5SZZPkHIXpd42C6uW68o8uTuua96FHZy1y61Va5P/i83FAAcMpW8+A/QayntzuqA==",
+ "requires": {
+ "@babel/code-frame": "^7.10.4",
+ "@babel/generator": "^7.12.5",
+ "@babel/helper-function-name": "^7.10.4",
+ "@babel/helper-split-export-declaration": "^7.11.0",
+ "@babel/parser": "^7.12.5",
+ "@babel/types": "^7.12.5",
+ "debug": "^4.1.0",
+ "globals": "^11.1.0",
+ "lodash": "^4.17.19"
+ }
+ },
+ "@babel/types": {
+ "version": "7.12.6",
+ "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.12.6.tgz",
+ "integrity": "sha512-hwyjw6GvjBLiyy3W0YQf0Z5Zf4NpYejUnKFcfcUhZCSffoBBp30w6wP2Wn6pk31jMYZvcOrB/1b7cGXvEoKogA==",
+ "requires": {
+ "@babel/helper-validator-identifier": "^7.10.4",
+ "lodash": "^4.17.19",
+ "to-fast-properties": "^2.0.0"
+ }
+ },
+ "debug": {
+ "version": "4.2.0",
+ "resolved": "https://registry.npmjs.org/debug/-/debug-4.2.0.tgz",
+ "integrity": "sha512-IX2ncY78vDTjZMFUdmsvIRFY2Cf4FnD0wRs+nQwJU8Lu99/tPFdb0VybiiMTPe3I6rQmwsqQqRBvxU+bZ/I8sg==",
+ "requires": {
+ "ms": "2.1.2"
+ }
+ }
}
},
"@babel/helper-create-regexp-features-plugin": {
@@ -325,11 +394,23 @@
}
},
"@babel/helper-skip-transparent-expression-wrappers": {
- "version": "7.11.0",
- "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.11.0.tgz",
- "integrity": "sha512-0XIdiQln4Elglgjbwo9wuJpL/K7AGCY26kmEt0+pRP0TAj4jjyNq1MjoRvikrTVqKcx4Gysxt4cXvVFXP/JO2Q==",
+ "version": "7.12.1",
+ "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.12.1.tgz",
+ "integrity": "sha512-Mf5AUuhG1/OCChOJ/HcADmvcHM42WJockombn8ATJG3OnyiSxBK/Mm5x78BQWvmtXZKHgbjdGL2kin/HOLlZGA==",
"requires": {
- "@babel/types": "^7.11.0"
+ "@babel/types": "^7.12.1"
+ },
+ "dependencies": {
+ "@babel/types": {
+ "version": "7.12.6",
+ "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.12.6.tgz",
+ "integrity": "sha512-hwyjw6GvjBLiyy3W0YQf0Z5Zf4NpYejUnKFcfcUhZCSffoBBp30w6wP2Wn6pk31jMYZvcOrB/1b7cGXvEoKogA==",
+ "requires": {
+ "@babel/helper-validator-identifier": "^7.10.4",
+ "lodash": "^4.17.19",
+ "to-fast-properties": "^2.0.0"
+ }
+ }
}
},
"@babel/helper-split-export-declaration": {
@@ -397,11 +478,11 @@
}
},
"@babel/plugin-proposal-class-properties": {
- "version": "7.10.4",
- "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.10.4.tgz",
- "integrity": "sha512-vhwkEROxzcHGNu2mzUC0OFFNXdZ4M23ib8aRRcJSsW8BZK9pQMD7QB7csl97NBbgGZO7ZyHUyKDnxzOaP4IrCg==",
+ "version": "7.12.1",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.12.1.tgz",
+ "integrity": "sha512-cKp3dlQsFsEs5CWKnN7BnSHOd0EOW8EKpEjkoz1pO2E5KzIDNV9Ros1b0CnmbVgAGXJubOYVBOGCT1OmJwOI7w==",
"requires": {
- "@babel/helper-create-class-features-plugin": "^7.10.4",
+ "@babel/helper-create-class-features-plugin": "^7.12.1",
"@babel/helper-plugin-utils": "^7.10.4"
}
},
@@ -442,18 +523,18 @@
}
},
"@babel/plugin-proposal-nullish-coalescing-operator": {
- "version": "7.10.4",
- "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.10.4.tgz",
- "integrity": "sha512-wq5n1M3ZUlHl9sqT2ok1T2/MTt6AXE0e1Lz4WzWBr95LsAZ5qDXe4KnFuauYyEyLiohvXFMdbsOTMyLZs91Zlw==",
+ "version": "7.12.1",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.12.1.tgz",
+ "integrity": "sha512-nZY0ESiaQDI1y96+jk6VxMOaL4LPo/QDHBqL+SF3/vl6dHkTwHlOI8L4ZwuRBHgakRBw5zsVylel7QPbbGuYgg==",
"requires": {
"@babel/helper-plugin-utils": "^7.10.4",
"@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.0"
}
},
"@babel/plugin-proposal-numeric-separator": {
- "version": "7.10.4",
- "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.10.4.tgz",
- "integrity": "sha512-73/G7QoRoeNkLZFxsoCCvlg4ezE4eM+57PnOqgaPOozd5myfj7p0muD1mRVJvbUWbOzD+q3No2bWbaKy+DJ8DA==",
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.12.5.tgz",
+ "integrity": "sha512-UiAnkKuOrCyjZ3sYNHlRlfuZJbBHknMQ9VMwVeX97Ofwx7RpD6gS2HfqTCh8KNUQgcOm8IKt103oR4KIjh7Q8g==",
"requires": {
"@babel/helper-plugin-utils": "^7.10.4",
"@babel/plugin-syntax-numeric-separator": "^7.10.4"
@@ -479,12 +560,12 @@
}
},
"@babel/plugin-proposal-optional-chaining": {
- "version": "7.11.0",
- "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.11.0.tgz",
- "integrity": "sha512-v9fZIu3Y8562RRwhm1BbMRxtqZNFmFA2EG+pT2diuU8PT3H6T/KXoZ54KgYisfOFZHV6PfvAiBIZ9Rcz+/JCxA==",
+ "version": "7.12.1",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.12.1.tgz",
+ "integrity": "sha512-c2uRpY6WzaVDzynVY9liyykS+kVU+WRZPMPYpkelXH8KBt1oXoI89kPbZKKG/jDT5UK92FTW2fZkZaJhdiBabw==",
"requires": {
"@babel/helper-plugin-utils": "^7.10.4",
- "@babel/helper-skip-transparent-expression-wrappers": "^7.11.0",
+ "@babel/helper-skip-transparent-expression-wrappers": "^7.12.1",
"@babel/plugin-syntax-optional-chaining": "^7.8.0"
}
},
@@ -1585,17 +1666,17 @@
},
"dependencies": {
"@babel/helper-module-imports": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.12.1.tgz",
- "integrity": "sha512-ZeC1TlMSvikvJNy1v/wPIazCu3NdOwgYZLIkmIyAsGhqkNpiDoQQRmaCK8YP4Pq3GPTLPV9WXaPCJKvx06JxKA==",
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.12.5.tgz",
+ "integrity": "sha512-SR713Ogqg6++uexFRORf/+nPXMmWIn80TALu0uaFb+iQIUoR7bOC7zBWyzBs5b3tBBJXuyD0cRu1F15GyzjOWA==",
"requires": {
- "@babel/types": "^7.12.1"
+ "@babel/types": "^7.12.5"
}
},
"@babel/types": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.12.1.tgz",
- "integrity": "sha512-BzSY3NJBKM4kyatSOWh3D/JJ2O3CVzBybHWxtgxnggaxEuaSTTDqeiSb/xk9lrkw2Tbqyivw5ZU4rT+EfznQsA==",
+ "version": "7.12.6",
+ "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.12.6.tgz",
+ "integrity": "sha512-hwyjw6GvjBLiyy3W0YQf0Z5Zf4NpYejUnKFcfcUhZCSffoBBp30w6wP2Wn6pk31jMYZvcOrB/1b7cGXvEoKogA==",
"requires": {
"@babel/helper-validator-identifier": "^7.10.4",
"lodash": "^4.17.19",
@@ -1613,12 +1694,12 @@
}
},
"@babel/plugin-transform-spread": {
- "version": "7.11.0",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.11.0.tgz",
- "integrity": "sha512-UwQYGOqIdQJe4aWNyS7noqAnN2VbaczPLiEtln+zPowRNlD+79w3oi2TWfYe0eZgd+gjZCbsydN7lzWysDt+gw==",
+ "version": "7.12.1",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.12.1.tgz",
+ "integrity": "sha512-vuLp8CP0BE18zVYjsEBZ5xoCecMK6LBMMxYzJnh01rxQRvhNhH1csMMmBfNo5tGpGO+NhdSNW2mzIvBu3K1fng==",
"requires": {
"@babel/helper-plugin-utils": "^7.10.4",
- "@babel/helper-skip-transparent-expression-wrappers": "^7.11.0"
+ "@babel/helper-skip-transparent-expression-wrappers": "^7.12.1"
}
},
"@babel/plugin-transform-sticky-regex": {
@@ -1654,88 +1735,6 @@
"@babel/helper-create-class-features-plugin": "^7.12.1",
"@babel/helper-plugin-utils": "^7.10.4",
"@babel/plugin-syntax-typescript": "^7.12.1"
- },
- "dependencies": {
- "@babel/generator": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.12.1.tgz",
- "integrity": "sha512-DB+6rafIdc9o72Yc3/Ph5h+6hUjeOp66pF0naQBgUFFuPqzQwIlPTm3xZR7YNvduIMtkDIj2t21LSQwnbCrXvg==",
- "requires": {
- "@babel/types": "^7.12.1",
- "jsesc": "^2.5.1",
- "source-map": "^0.5.0"
- }
- },
- "@babel/helper-create-class-features-plugin": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.12.1.tgz",
- "integrity": "sha512-hkL++rWeta/OVOBTRJc9a5Azh5mt5WgZUGAKMD8JM141YsE08K//bp1unBBieO6rUKkIPyUE0USQ30jAy3Sk1w==",
- "requires": {
- "@babel/helper-function-name": "^7.10.4",
- "@babel/helper-member-expression-to-functions": "^7.12.1",
- "@babel/helper-optimise-call-expression": "^7.10.4",
- "@babel/helper-replace-supers": "^7.12.1",
- "@babel/helper-split-export-declaration": "^7.10.4"
- }
- },
- "@babel/helper-member-expression-to-functions": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.12.1.tgz",
- "integrity": "sha512-k0CIe3tXUKTRSoEx1LQEPFU9vRQfqHtl+kf8eNnDqb4AUJEy5pz6aIiog+YWtVm2jpggjS1laH68bPsR+KWWPQ==",
- "requires": {
- "@babel/types": "^7.12.1"
- }
- },
- "@babel/helper-replace-supers": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.12.1.tgz",
- "integrity": "sha512-zJjTvtNJnCFsCXVi5rUInstLd/EIVNmIKA1Q9ynESmMBWPWd+7sdR+G4/wdu+Mppfep0XLyG2m7EBPvjCeFyrw==",
- "requires": {
- "@babel/helper-member-expression-to-functions": "^7.12.1",
- "@babel/helper-optimise-call-expression": "^7.10.4",
- "@babel/traverse": "^7.12.1",
- "@babel/types": "^7.12.1"
- }
- },
- "@babel/parser": {
- "version": "7.12.3",
- "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.12.3.tgz",
- "integrity": "sha512-kFsOS0IbsuhO5ojF8Hc8z/8vEIOkylVBrjiZUbLTE3XFe0Qi+uu6HjzQixkFaqr0ZPAMZcBVxEwmsnsLPZ2Xsw=="
- },
- "@babel/traverse": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.12.1.tgz",
- "integrity": "sha512-MA3WPoRt1ZHo2ZmoGKNqi20YnPt0B1S0GTZEPhhd+hw2KGUzBlHuVunj6K4sNuK+reEvyiPwtp0cpaqLzJDmAw==",
- "requires": {
- "@babel/code-frame": "^7.10.4",
- "@babel/generator": "^7.12.1",
- "@babel/helper-function-name": "^7.10.4",
- "@babel/helper-split-export-declaration": "^7.11.0",
- "@babel/parser": "^7.12.1",
- "@babel/types": "^7.12.1",
- "debug": "^4.1.0",
- "globals": "^11.1.0",
- "lodash": "^4.17.19"
- }
- },
- "@babel/types": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.12.1.tgz",
- "integrity": "sha512-BzSY3NJBKM4kyatSOWh3D/JJ2O3CVzBybHWxtgxnggaxEuaSTTDqeiSb/xk9lrkw2Tbqyivw5ZU4rT+EfznQsA==",
- "requires": {
- "@babel/helper-validator-identifier": "^7.10.4",
- "lodash": "^4.17.19",
- "to-fast-properties": "^2.0.0"
- }
- },
- "debug": {
- "version": "4.2.0",
- "resolved": "https://registry.npmjs.org/debug/-/debug-4.2.0.tgz",
- "integrity": "sha512-IX2ncY78vDTjZMFUdmsvIRFY2Cf4FnD0wRs+nQwJU8Lu99/tPFdb0VybiiMTPe3I6rQmwsqQqRBvxU+bZ/I8sg==",
- "requires": {
- "ms": "2.1.2"
- }
- }
}
},
"@babel/plugin-transform-unicode-escapes": {
@@ -2100,18 +2099,18 @@
}
},
"@babel/runtime-corejs3": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/runtime-corejs3/-/runtime-corejs3-7.12.1.tgz",
- "integrity": "sha512-umhPIcMrlBZ2aTWlWjUseW9LjQKxi1dpFlQS8DzsxB//5K+u6GLTC/JliPKHsd5kJVPIU6X/Hy0YvWOYPcMxBw==",
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/runtime-corejs3/-/runtime-corejs3-7.12.5.tgz",
+ "integrity": "sha512-roGr54CsTmNPPzZoCP1AmDXuBoNao7tnSA83TXTwt+UK5QVyh1DIJnrgYRPWKCF2flqZQXwa7Yr8v7VmLzF0YQ==",
"requires": {
"core-js-pure": "^3.0.0",
"regenerator-runtime": "^0.13.4"
}
},
"@babel/standalone": {
- "version": "7.12.4",
- "resolved": "https://registry.npmjs.org/@babel/standalone/-/standalone-7.12.4.tgz",
- "integrity": "sha512-9vw7RYK7CWh5MdTfLyC7j6hZmDYmm6DieFP4yetvpVftKQ+yrEY7ovhnhsVHznLqx5luU9Bx4k7xoEc3acrsow=="
+ "version": "7.12.6",
+ "resolved": "https://registry.npmjs.org/@babel/standalone/-/standalone-7.12.6.tgz",
+ "integrity": "sha512-yA/OV3jN1nhr0JsAdYWAqbeZ7cAOw/6Fh52rxVMzujr0HF4Z3cau0JBzJfQppFfR9IArrUtcqhBu/+Q/IevoyQ=="
},
"@babel/template": {
"version": "7.10.4",
@@ -2159,6 +2158,24 @@
"to-fast-properties": "^2.0.0"
}
},
+ "@endemolshinegroup/cosmiconfig-typescript-loader": {
+ "version": "3.0.2",
+ "resolved": "https://registry.npmjs.org/@endemolshinegroup/cosmiconfig-typescript-loader/-/cosmiconfig-typescript-loader-3.0.2.tgz",
+ "integrity": "sha512-QRVtqJuS1mcT56oHpVegkKBlgtWjXw/gHNWO3eL9oyB5Sc7HBoc2OLG/nYpVfT/Jejvo3NUrD0Udk7XgoyDKkA==",
+ "requires": {
+ "lodash.get": "^4",
+ "make-error": "^1",
+ "ts-node": "^9",
+ "tslib": "^2"
+ },
+ "dependencies": {
+ "tslib": {
+ "version": "2.0.3",
+ "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.0.3.tgz",
+ "integrity": "sha512-uZtkfKblCEQtZKBF6EBXVZeQNl82yqtDQdv+eck8u7tdPxjLu2/lp5/uPW+um2tpuxINHWy3GhiccY7QgEaVHQ=="
+ }
+ }
+ },
"@graphql-tools/batch-execute": {
"version": "7.0.0",
"resolved": "https://registry.npmjs.org/@graphql-tools/batch-execute/-/batch-execute-7.0.0.tgz",
@@ -2193,9 +2210,9 @@
}
},
"@graphql-tools/delegate": {
- "version": "7.0.3",
- "resolved": "https://registry.npmjs.org/@graphql-tools/delegate/-/delegate-7.0.3.tgz",
- "integrity": "sha512-BSRF/Wg9XNllWo3Kdt0QBBaFltexn3vAnTOWH1qLrNcmfQAvUMf17/TsAqH9ZLSKU1NW9XCOsd7YMHhhUuTCEg==",
+ "version": "7.0.4",
+ "resolved": "https://registry.npmjs.org/@graphql-tools/delegate/-/delegate-7.0.4.tgz",
+ "integrity": "sha512-6/qL9V31FgECNPwc5As1359hpsAt4ASWsiYBSYWL+Iq9/K0YRcNeEmSseXIyCP4oh8k/9HS/w/m2lkMk/YSUpQ==",
"requires": {
"@ardatan/aggregate-error": "0.0.6",
"@graphql-tools/batch-execute": "^7.0.0",
@@ -2509,9 +2526,9 @@
}
},
"@graphql-tools/url-loader": {
- "version": "6.3.2",
- "resolved": "https://registry.npmjs.org/@graphql-tools/url-loader/-/url-loader-6.3.2.tgz",
- "integrity": "sha512-nrrZD33T7lFeOjIufCrwk2PAHYqFtdFcb1pe1ULWnvuFmFuhZnRCgIsfCsoy+WOMwmZHQ/eXBem//I/bewXlgw==",
+ "version": "6.4.0",
+ "resolved": "https://registry.npmjs.org/@graphql-tools/url-loader/-/url-loader-6.4.0.tgz",
+ "integrity": "sha512-M3mS/VH6vpnai3b3Fa33kYcdCgZvhFh7RqFE1R3NMfhYjphQ10EWwgf31P+VQcBNB2zz+ubxttI6UcJLiGqwuQ==",
"requires": {
"@graphql-tools/delegate": "^7.0.1",
"@graphql-tools/utils": "^7.0.1",
@@ -2519,6 +2536,7 @@
"@types/websocket": "1.0.1",
"cross-fetch": "3.0.6",
"subscriptions-transport-ws": "0.9.18",
+ "sync-fetch": "0.3.0",
"tslib": "~2.0.1",
"valid-url": "1.0.9",
"websocket": "1.0.32"
@@ -2621,6 +2639,11 @@
"@hapi/hoek": "^8.3.0"
}
},
+ "@iarna/toml": {
+ "version": "2.2.5",
+ "resolved": "https://registry.npmjs.org/@iarna/toml/-/toml-2.2.5.tgz",
+ "integrity": "sha512-trnsAYxU3xnS1gPHPyU961coFyLkh4gAD/0zQ5mymY4yOZ+CYvsPqUbOFSw0aDM4y0tV7tiFxL/1XfXPNC6IPg=="
+ },
"@jest/types": {
"version": "25.5.0",
"resolved": "https://registry.npmjs.org/@jest/types/-/types-25.5.0.tgz",
@@ -3895,6 +3918,26 @@
"normalize-path": "^2.1.1"
},
"dependencies": {
+ "micromatch": {
+ "version": "3.1.10",
+ "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz",
+ "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==",
+ "requires": {
+ "arr-diff": "^4.0.0",
+ "array-unique": "^0.3.2",
+ "braces": "^2.3.1",
+ "define-property": "^2.0.2",
+ "extend-shallow": "^3.0.2",
+ "extglob": "^2.0.4",
+ "fragment-cache": "^0.2.1",
+ "kind-of": "^6.0.2",
+ "nanomatch": "^1.2.9",
+ "object.pick": "^1.3.0",
+ "regex-not": "^1.0.0",
+ "snapdragon": "^0.8.1",
+ "to-regex": "^3.0.2"
+ }
+ },
"normalize-path": {
"version": "2.1.1",
"resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz",
@@ -3944,6 +3987,11 @@
"readable-stream": "^2.0.6"
}
},
+ "arg": {
+ "version": "4.1.3",
+ "resolved": "https://registry.npmjs.org/arg/-/arg-4.1.3.tgz",
+ "integrity": "sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA=="
+ },
"argparse": {
"version": "1.0.10",
"resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz",
@@ -4386,9 +4434,9 @@
"integrity": "sha512-eqj0hVcJUR57/Ug2zE1Yswsw4LhuqqHhD+8v120T1cl3kjg76QwtyBrdIk4WVwK+lAhBJVYCd/v+4nc4y+8JsA=="
},
"babel-preset-gatsby": {
- "version": "0.5.15",
- "resolved": "https://registry.npmjs.org/babel-preset-gatsby/-/babel-preset-gatsby-0.5.15.tgz",
- "integrity": "sha512-0eno/GAvzmaLW/s+RzsLXrZVQwBMZYU/zMv1HpArGlYbNCon/fK53/Bz3pklJDq1pNAybXQ2RROpPHDyJM2EGA==",
+ "version": "0.5.16",
+ "resolved": "https://registry.npmjs.org/babel-preset-gatsby/-/babel-preset-gatsby-0.5.16.tgz",
+ "integrity": "sha512-zcUYvHRnDxwQmzJnkWtHk4x7cGaMbQjTJIKrvCWpS9u10hQOQUNAz/ZKSH1vUmB4oYap6m+sHDoDIr7PNoCAEQ==",
"requires": {
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.10.4",
@@ -4402,709 +4450,47 @@
"babel-plugin-dynamic-import-node": "^2.3.3",
"babel-plugin-macros": "^2.8.0",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
- "gatsby-core-utils": "^1.3.23",
+ "gatsby-core-utils": "^1.3.24",
"gatsby-legacy-polyfills": "^0.0.6"
},
"dependencies": {
- "@babel/compat-data": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.12.1.tgz",
- "integrity": "sha512-725AQupWJZ8ba0jbKceeFblZTY90McUBWMwHhkFQ9q1zKPJ95GUktljFcgcsIVwRnTnRKlcYzfiNImg5G9m6ZQ=="
- },
- "@babel/generator": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.12.1.tgz",
- "integrity": "sha512-DB+6rafIdc9o72Yc3/Ph5h+6hUjeOp66pF0naQBgUFFuPqzQwIlPTm3xZR7YNvduIMtkDIj2t21LSQwnbCrXvg==",
- "requires": {
- "@babel/types": "^7.12.1",
- "jsesc": "^2.5.1",
- "source-map": "^0.5.0"
- }
- },
- "@babel/helper-compilation-targets": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.12.1.tgz",
- "integrity": "sha512-jtBEif7jsPwP27GPHs06v4WBV0KrE8a/P7n0N0sSvHn2hwUCYnolP/CLmz51IzAW4NlN+HuoBtb9QcwnRo9F/g==",
- "requires": {
- "@babel/compat-data": "^7.12.1",
- "@babel/helper-validator-option": "^7.12.1",
- "browserslist": "^4.12.0",
- "semver": "^5.5.0"
- }
- },
- "@babel/helper-create-class-features-plugin": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.12.1.tgz",
- "integrity": "sha512-hkL++rWeta/OVOBTRJc9a5Azh5mt5WgZUGAKMD8JM141YsE08K//bp1unBBieO6rUKkIPyUE0USQ30jAy3Sk1w==",
- "requires": {
- "@babel/helper-function-name": "^7.10.4",
- "@babel/helper-member-expression-to-functions": "^7.12.1",
- "@babel/helper-optimise-call-expression": "^7.10.4",
- "@babel/helper-replace-supers": "^7.12.1",
- "@babel/helper-split-export-declaration": "^7.10.4"
- }
- },
- "@babel/helper-create-regexp-features-plugin": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.12.1.tgz",
- "integrity": "sha512-rsZ4LGvFTZnzdNZR5HZdmJVuXK8834R5QkF3WvcnBhrlVtF0HSIUC6zbreL9MgjTywhKokn8RIYRiq99+DLAxA==",
+ "@babel/runtime": {
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.5.tgz",
+ "integrity": "sha512-plcc+hbExy3McchJCEQG3knOsuh3HH+Prx1P6cLIkET/0dLuQDEnrT+s27Axgc9bqfsmNUNHfscgMUdBpC9xfg==",
"requires": {
- "@babel/helper-annotate-as-pure": "^7.10.4",
- "@babel/helper-regex": "^7.10.4",
- "regexpu-core": "^4.7.1"
+ "regenerator-runtime": "^0.13.4"
}
},
- "@babel/helper-member-expression-to-functions": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.12.1.tgz",
- "integrity": "sha512-k0CIe3tXUKTRSoEx1LQEPFU9vRQfqHtl+kf8eNnDqb4AUJEy5pz6aIiog+YWtVm2jpggjS1laH68bPsR+KWWPQ==",
+ "gatsby-core-utils": {
+ "version": "1.3.24",
+ "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-1.3.24.tgz",
+ "integrity": "sha512-SlK7rJv/8NBYC8FodYvTINamBHadXNSv//a2uRwh44N1GSSujuCMvtUcpEuAdg9BUQHc54NbbmFuoqf8p85kgA==",
"requires": {
- "@babel/types": "^7.12.1"
+ "ci-info": "2.0.0",
+ "configstore": "^5.0.1",
+ "fs-extra": "^8.1.0",
+ "node-object-hash": "^2.0.0",
+ "proper-lockfile": "^4.1.1",
+ "tmp": "^0.2.1",
+ "xdg-basedir": "^4.0.0"
}
- },
- "@babel/helper-module-imports": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.12.1.tgz",
- "integrity": "sha512-ZeC1TlMSvikvJNy1v/wPIazCu3NdOwgYZLIkmIyAsGhqkNpiDoQQRmaCK8YP4Pq3GPTLPV9WXaPCJKvx06JxKA==",
- "requires": {
- "@babel/types": "^7.12.1"
- }
- },
- "@babel/helper-module-transforms": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.12.1.tgz",
- "integrity": "sha512-QQzehgFAZ2bbISiCpmVGfiGux8YVFXQ0abBic2Envhej22DVXV9nCFaS5hIQbkyo1AdGb+gNME2TSh3hYJVV/w==",
- "requires": {
- "@babel/helper-module-imports": "^7.12.1",
- "@babel/helper-replace-supers": "^7.12.1",
- "@babel/helper-simple-access": "^7.12.1",
- "@babel/helper-split-export-declaration": "^7.11.0",
- "@babel/helper-validator-identifier": "^7.10.4",
- "@babel/template": "^7.10.4",
- "@babel/traverse": "^7.12.1",
- "@babel/types": "^7.12.1",
- "lodash": "^4.17.19"
- }
- },
- "@babel/helper-remap-async-to-generator": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.12.1.tgz",
- "integrity": "sha512-9d0KQCRM8clMPcDwo8SevNs+/9a8yWVVmaE80FGJcEP8N1qToREmWEGnBn8BUlJhYRFz6fqxeRL1sl5Ogsed7A==",
- "requires": {
- "@babel/helper-annotate-as-pure": "^7.10.4",
- "@babel/helper-wrap-function": "^7.10.4",
- "@babel/types": "^7.12.1"
- }
- },
- "@babel/helper-replace-supers": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.12.1.tgz",
- "integrity": "sha512-zJjTvtNJnCFsCXVi5rUInstLd/EIVNmIKA1Q9ynESmMBWPWd+7sdR+G4/wdu+Mppfep0XLyG2m7EBPvjCeFyrw==",
- "requires": {
- "@babel/helper-member-expression-to-functions": "^7.12.1",
- "@babel/helper-optimise-call-expression": "^7.10.4",
- "@babel/traverse": "^7.12.1",
- "@babel/types": "^7.12.1"
- }
- },
- "@babel/helper-simple-access": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.12.1.tgz",
- "integrity": "sha512-OxBp7pMrjVewSSC8fXDFrHrBcJATOOFssZwv16F3/6Xtc138GHybBfPbm9kfiqQHKhYQrlamWILwlDCeyMFEaA==",
- "requires": {
- "@babel/types": "^7.12.1"
- }
- },
- "@babel/helper-skip-transparent-expression-wrappers": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.12.1.tgz",
- "integrity": "sha512-Mf5AUuhG1/OCChOJ/HcADmvcHM42WJockombn8ATJG3OnyiSxBK/Mm5x78BQWvmtXZKHgbjdGL2kin/HOLlZGA==",
- "requires": {
- "@babel/types": "^7.12.1"
- }
- },
- "@babel/parser": {
- "version": "7.12.3",
- "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.12.3.tgz",
- "integrity": "sha512-kFsOS0IbsuhO5ojF8Hc8z/8vEIOkylVBrjiZUbLTE3XFe0Qi+uu6HjzQixkFaqr0ZPAMZcBVxEwmsnsLPZ2Xsw=="
- },
- "@babel/plugin-proposal-async-generator-functions": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.12.1.tgz",
- "integrity": "sha512-d+/o30tJxFxrA1lhzJqiUcEJdI6jKlNregCv5bASeGf2Q4MXmnwH7viDo7nhx1/ohf09oaH8j1GVYG/e3Yqk6A==",
- "requires": {
- "@babel/helper-plugin-utils": "^7.10.4",
- "@babel/helper-remap-async-to-generator": "^7.12.1",
- "@babel/plugin-syntax-async-generators": "^7.8.0"
- }
- },
- "@babel/plugin-proposal-dynamic-import": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.12.1.tgz",
- "integrity": "sha512-a4rhUSZFuq5W8/OO8H7BL5zspjnc1FLd9hlOxIK/f7qG4a0qsqk8uvF/ywgBA8/OmjsapjpvaEOYItfGG1qIvQ==",
- "requires": {
- "@babel/helper-plugin-utils": "^7.10.4",
- "@babel/plugin-syntax-dynamic-import": "^7.8.0"
- }
- },
- "@babel/plugin-proposal-export-namespace-from": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.12.1.tgz",
- "integrity": "sha512-6CThGf0irEkzujYS5LQcjBx8j/4aQGiVv7J9+2f7pGfxqyKh3WnmVJYW3hdrQjyksErMGBPQrCnHfOtna+WLbw==",
- "requires": {
- "@babel/helper-plugin-utils": "^7.10.4",
- "@babel/plugin-syntax-export-namespace-from": "^7.8.3"
- }
- },
- "@babel/plugin-proposal-json-strings": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.12.1.tgz",
- "integrity": "sha512-GoLDUi6U9ZLzlSda2Df++VSqDJg3CG+dR0+iWsv6XRw1rEq+zwt4DirM9yrxW6XWaTpmai1cWJLMfM8qQJf+yw==",
- "requires": {
- "@babel/helper-plugin-utils": "^7.10.4",
- "@babel/plugin-syntax-json-strings": "^7.8.0"
- }
- },
- "@babel/plugin-proposal-logical-assignment-operators": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.12.1.tgz",
- "integrity": "sha512-k8ZmVv0JU+4gcUGeCDZOGd0lCIamU/sMtIiX3UWnUc5yzgq6YUGyEolNYD+MLYKfSzgECPcqetVcJP9Afe/aCA==",
- "requires": {
- "@babel/helper-plugin-utils": "^7.10.4",
- "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4"
- }
- },
- "@babel/plugin-proposal-numeric-separator": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.12.1.tgz",
- "integrity": "sha512-MR7Ok+Af3OhNTCxYVjJZHS0t97ydnJZt/DbR4WISO39iDnhiD8XHrY12xuSJ90FFEGjir0Fzyyn7g/zY6hxbxA==",
- "requires": {
- "@babel/helper-plugin-utils": "^7.10.4",
- "@babel/plugin-syntax-numeric-separator": "^7.10.4"
- }
- },
- "@babel/plugin-proposal-object-rest-spread": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.12.1.tgz",
- "integrity": "sha512-s6SowJIjzlhx8o7lsFx5zmY4At6CTtDvgNQDdPzkBQucle58A6b/TTeEBYtyDgmcXjUTM+vE8YOGHZzzbc/ioA==",
- "requires": {
- "@babel/helper-plugin-utils": "^7.10.4",
- "@babel/plugin-syntax-object-rest-spread": "^7.8.0",
- "@babel/plugin-transform-parameters": "^7.12.1"
- }
- },
- "@babel/plugin-proposal-optional-catch-binding": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.12.1.tgz",
- "integrity": "sha512-hFvIjgprh9mMw5v42sJWLI1lzU5L2sznP805zeT6rySVRA0Y18StRhDqhSxlap0oVgItRsB6WSROp4YnJTJz0g==",
- "requires": {
- "@babel/helper-plugin-utils": "^7.10.4",
- "@babel/plugin-syntax-optional-catch-binding": "^7.8.0"
- }
- },
- "@babel/plugin-proposal-private-methods": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.12.1.tgz",
- "integrity": "sha512-mwZ1phvH7/NHK6Kf8LP7MYDogGV+DKB1mryFOEwx5EBNQrosvIczzZFTUmWaeujd5xT6G1ELYWUz3CutMhjE1w==",
- "requires": {
- "@babel/helper-create-class-features-plugin": "^7.12.1",
- "@babel/helper-plugin-utils": "^7.10.4"
- }
- },
- "@babel/plugin-proposal-unicode-property-regex": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.12.1.tgz",
- "integrity": "sha512-MYq+l+PvHuw/rKUz1at/vb6nCnQ2gmJBNaM62z0OgH7B2W1D9pvkpYtlti9bGtizNIU1K3zm4bZF9F91efVY0w==",
- "requires": {
- "@babel/helper-create-regexp-features-plugin": "^7.12.1",
- "@babel/helper-plugin-utils": "^7.10.4"
- }
- },
- "@babel/plugin-syntax-class-properties": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.1.tgz",
- "integrity": "sha512-U40A76x5gTwmESz+qiqssqmeEsKvcSyvtgktrm0uzcARAmM9I1jR221f6Oq+GmHrcD+LvZDag1UTOTe2fL3TeA==",
- "requires": {
- "@babel/helper-plugin-utils": "^7.10.4"
- }
- },
- "@babel/plugin-syntax-top-level-await": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.12.1.tgz",
- "integrity": "sha512-i7ooMZFS+a/Om0crxZodrTzNEPJHZrlMVGMTEpFAj6rYY/bKCddB0Dk/YxfPuYXOopuhKk/e1jV6h+WUU9XN3A==",
- "requires": {
- "@babel/helper-plugin-utils": "^7.10.4"
- }
- },
- "@babel/plugin-transform-arrow-functions": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.12.1.tgz",
- "integrity": "sha512-5QB50qyN44fzzz4/qxDPQMBCTHgxg3n0xRBLJUmBlLoU/sFvxVWGZF/ZUfMVDQuJUKXaBhbupxIzIfZ6Fwk/0A==",
- "requires": {
- "@babel/helper-plugin-utils": "^7.10.4"
- }
- },
- "@babel/plugin-transform-async-to-generator": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.12.1.tgz",
- "integrity": "sha512-SDtqoEcarK1DFlRJ1hHRY5HvJUj5kX4qmtpMAm2QnhOlyuMC4TMdCRgW6WXpv93rZeYNeLP22y8Aq2dbcDRM1A==",
- "requires": {
- "@babel/helper-module-imports": "^7.12.1",
- "@babel/helper-plugin-utils": "^7.10.4",
- "@babel/helper-remap-async-to-generator": "^7.12.1"
- }
- },
- "@babel/plugin-transform-block-scoped-functions": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.12.1.tgz",
- "integrity": "sha512-5OpxfuYnSgPalRpo8EWGPzIYf0lHBWORCkj5M0oLBwHdlux9Ri36QqGW3/LR13RSVOAoUUMzoPI/jpE4ABcHoA==",
- "requires": {
- "@babel/helper-plugin-utils": "^7.10.4"
- }
- },
- "@babel/plugin-transform-block-scoping": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.12.1.tgz",
- "integrity": "sha512-zJyAC9sZdE60r1nVQHblcfCj29Dh2Y0DOvlMkcqSo0ckqjiCwNiUezUKw+RjOCwGfpLRwnAeQ2XlLpsnGkvv9w==",
- "requires": {
- "@babel/helper-plugin-utils": "^7.10.4"
- }
- },
- "@babel/plugin-transform-classes": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.12.1.tgz",
- "integrity": "sha512-/74xkA7bVdzQTBeSUhLLJgYIcxw/dpEpCdRDiHgPJ3Mv6uC11UhjpOhl72CgqbBCmt1qtssCyB2xnJm1+PFjog==",
- "requires": {
- "@babel/helper-annotate-as-pure": "^7.10.4",
- "@babel/helper-define-map": "^7.10.4",
- "@babel/helper-function-name": "^7.10.4",
- "@babel/helper-optimise-call-expression": "^7.10.4",
- "@babel/helper-plugin-utils": "^7.10.4",
- "@babel/helper-replace-supers": "^7.12.1",
- "@babel/helper-split-export-declaration": "^7.10.4",
- "globals": "^11.1.0"
- }
- },
- "@babel/plugin-transform-computed-properties": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.12.1.tgz",
- "integrity": "sha512-vVUOYpPWB7BkgUWPo4C44mUQHpTZXakEqFjbv8rQMg7TC6S6ZhGZ3otQcRH6u7+adSlE5i0sp63eMC/XGffrzg==",
- "requires": {
- "@babel/helper-plugin-utils": "^7.10.4"
- }
- },
- "@babel/plugin-transform-destructuring": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.12.1.tgz",
- "integrity": "sha512-fRMYFKuzi/rSiYb2uRLiUENJOKq4Gnl+6qOv5f8z0TZXg3llUwUhsNNwrwaT/6dUhJTzNpBr+CUvEWBtfNY1cw==",
- "requires": {
- "@babel/helper-plugin-utils": "^7.10.4"
- }
- },
- "@babel/plugin-transform-dotall-regex": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.12.1.tgz",
- "integrity": "sha512-B2pXeRKoLszfEW7J4Hg9LoFaWEbr/kzo3teWHmtFCszjRNa/b40f9mfeqZsIDLLt/FjwQ6pz/Gdlwy85xNckBA==",
- "requires": {
- "@babel/helper-create-regexp-features-plugin": "^7.12.1",
- "@babel/helper-plugin-utils": "^7.10.4"
- }
- },
- "@babel/plugin-transform-duplicate-keys": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.12.1.tgz",
- "integrity": "sha512-iRght0T0HztAb/CazveUpUQrZY+aGKKaWXMJ4uf9YJtqxSUe09j3wteztCUDRHs+SRAL7yMuFqUsLoAKKzgXjw==",
- "requires": {
- "@babel/helper-plugin-utils": "^7.10.4"
- }
- },
- "@babel/plugin-transform-exponentiation-operator": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.12.1.tgz",
- "integrity": "sha512-7tqwy2bv48q+c1EHbXK0Zx3KXd2RVQp6OC7PbwFNt/dPTAV3Lu5sWtWuAj8owr5wqtWnqHfl2/mJlUmqkChKug==",
- "requires": {
- "@babel/helper-builder-binary-assignment-operator-visitor": "^7.10.4",
- "@babel/helper-plugin-utils": "^7.10.4"
- }
- },
- "@babel/plugin-transform-for-of": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.12.1.tgz",
- "integrity": "sha512-Zaeq10naAsuHo7heQvyV0ptj4dlZJwZgNAtBYBnu5nNKJoW62m0zKcIEyVECrUKErkUkg6ajMy4ZfnVZciSBhg==",
- "requires": {
- "@babel/helper-plugin-utils": "^7.10.4"
- }
- },
- "@babel/plugin-transform-function-name": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.12.1.tgz",
- "integrity": "sha512-JF3UgJUILoFrFMEnOJLJkRHSk6LUSXLmEFsA23aR2O5CSLUxbeUX1IZ1YQ7Sn0aXb601Ncwjx73a+FVqgcljVw==",
- "requires": {
- "@babel/helper-function-name": "^7.10.4",
- "@babel/helper-plugin-utils": "^7.10.4"
- }
- },
- "@babel/plugin-transform-literals": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.12.1.tgz",
- "integrity": "sha512-+PxVGA+2Ag6uGgL0A5f+9rklOnnMccwEBzwYFL3EUaKuiyVnUipyXncFcfjSkbimLrODoqki1U9XxZzTvfN7IQ==",
- "requires": {
- "@babel/helper-plugin-utils": "^7.10.4"
- }
- },
- "@babel/plugin-transform-member-expression-literals": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.12.1.tgz",
- "integrity": "sha512-1sxePl6z9ad0gFMB9KqmYofk34flq62aqMt9NqliS/7hPEpURUCMbyHXrMPlo282iY7nAvUB1aQd5mg79UD9Jg==",
- "requires": {
- "@babel/helper-plugin-utils": "^7.10.4"
- }
- },
- "@babel/plugin-transform-modules-amd": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.12.1.tgz",
- "integrity": "sha512-tDW8hMkzad5oDtzsB70HIQQRBiTKrhfgwC/KkJeGsaNFTdWhKNt/BiE8c5yj19XiGyrxpbkOfH87qkNg1YGlOQ==",
- "requires": {
- "@babel/helper-module-transforms": "^7.12.1",
- "@babel/helper-plugin-utils": "^7.10.4",
- "babel-plugin-dynamic-import-node": "^2.3.3"
- }
- },
- "@babel/plugin-transform-modules-commonjs": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.12.1.tgz",
- "integrity": "sha512-dY789wq6l0uLY8py9c1B48V8mVL5gZh/+PQ5ZPrylPYsnAvnEMjqsUXkuoDVPeVK+0VyGar+D08107LzDQ6pag==",
- "requires": {
- "@babel/helper-module-transforms": "^7.12.1",
- "@babel/helper-plugin-utils": "^7.10.4",
- "@babel/helper-simple-access": "^7.12.1",
- "babel-plugin-dynamic-import-node": "^2.3.3"
- }
- },
- "@babel/plugin-transform-modules-systemjs": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.12.1.tgz",
- "integrity": "sha512-Hn7cVvOavVh8yvW6fLwveFqSnd7rbQN3zJvoPNyNaQSvgfKmDBO9U1YL9+PCXGRlZD9tNdWTy5ACKqMuzyn32Q==",
- "requires": {
- "@babel/helper-hoist-variables": "^7.10.4",
- "@babel/helper-module-transforms": "^7.12.1",
- "@babel/helper-plugin-utils": "^7.10.4",
- "@babel/helper-validator-identifier": "^7.10.4",
- "babel-plugin-dynamic-import-node": "^2.3.3"
- }
- },
- "@babel/plugin-transform-modules-umd": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.12.1.tgz",
- "integrity": "sha512-aEIubCS0KHKM0zUos5fIoQm+AZUMt1ZvMpqz0/H5qAQ7vWylr9+PLYurT+Ic7ID/bKLd4q8hDovaG3Zch2uz5Q==",
- "requires": {
- "@babel/helper-module-transforms": "^7.12.1",
- "@babel/helper-plugin-utils": "^7.10.4"
- }
- },
- "@babel/plugin-transform-named-capturing-groups-regex": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.12.1.tgz",
- "integrity": "sha512-tB43uQ62RHcoDp9v2Nsf+dSM8sbNodbEicbQNA53zHz8pWUhsgHSJCGpt7daXxRydjb0KnfmB+ChXOv3oADp1Q==",
- "requires": {
- "@babel/helper-create-regexp-features-plugin": "^7.12.1"
- }
- },
- "@babel/plugin-transform-new-target": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.12.1.tgz",
- "integrity": "sha512-+eW/VLcUL5L9IvJH7rT1sT0CzkdUTvPrXC2PXTn/7z7tXLBuKvezYbGdxD5WMRoyvyaujOq2fWoKl869heKjhw==",
- "requires": {
- "@babel/helper-plugin-utils": "^7.10.4"
- }
- },
- "@babel/plugin-transform-object-super": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.12.1.tgz",
- "integrity": "sha512-AvypiGJH9hsquNUn+RXVcBdeE3KHPZexWRdimhuV59cSoOt5kFBmqlByorAeUlGG2CJWd0U+4ZtNKga/TB0cAw==",
- "requires": {
- "@babel/helper-plugin-utils": "^7.10.4",
- "@babel/helper-replace-supers": "^7.12.1"
- }
- },
- "@babel/plugin-transform-parameters": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.12.1.tgz",
- "integrity": "sha512-xq9C5EQhdPK23ZeCdMxl8bbRnAgHFrw5EOC3KJUsSylZqdkCaFEXxGSBuTSObOpiiHHNyb82es8M1QYgfQGfNg==",
- "requires": {
- "@babel/helper-plugin-utils": "^7.10.4"
- }
- },
- "@babel/plugin-transform-property-literals": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.12.1.tgz",
- "integrity": "sha512-6MTCR/mZ1MQS+AwZLplX4cEySjCpnIF26ToWo942nqn8hXSm7McaHQNeGx/pt7suI1TWOWMfa/NgBhiqSnX0cQ==",
- "requires": {
- "@babel/helper-plugin-utils": "^7.10.4"
- }
- },
- "@babel/plugin-transform-regenerator": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.12.1.tgz",
- "integrity": "sha512-gYrHqs5itw6i4PflFX3OdBPMQdPbF4bj2REIUxlMRUFk0/ZOAIpDFuViuxPjUL7YC8UPnf+XG7/utJvqXdPKng==",
- "requires": {
- "regenerator-transform": "^0.14.2"
- }
- },
- "@babel/plugin-transform-reserved-words": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.12.1.tgz",
- "integrity": "sha512-pOnUfhyPKvZpVyBHhSBoX8vfA09b7r00Pmm1sH+29ae2hMTKVmSp4Ztsr8KBKjLjx17H0eJqaRC3bR2iThM54A==",
- "requires": {
- "@babel/helper-plugin-utils": "^7.10.4"
- }
- },
- "@babel/plugin-transform-shorthand-properties": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.12.1.tgz",
- "integrity": "sha512-GFZS3c/MhX1OusqB1MZ1ct2xRzX5ppQh2JU1h2Pnfk88HtFTM+TWQqJNfwkmxtPQtb/s1tk87oENfXJlx7rSDw==",
- "requires": {
- "@babel/helper-plugin-utils": "^7.10.4"
- }
- },
- "@babel/plugin-transform-sticky-regex": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.12.1.tgz",
- "integrity": "sha512-CiUgKQ3AGVk7kveIaPEET1jNDhZZEl1RPMWdTBE1799bdz++SwqDHStmxfCtDfBhQgCl38YRiSnrMuUMZIWSUQ==",
- "requires": {
- "@babel/helper-plugin-utils": "^7.10.4",
- "@babel/helper-regex": "^7.10.4"
- }
- },
- "@babel/plugin-transform-template-literals": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.12.1.tgz",
- "integrity": "sha512-b4Zx3KHi+taXB1dVRBhVJtEPi9h1THCeKmae2qP0YdUHIFhVjtpqqNfxeVAa1xeHVhAy4SbHxEwx5cltAu5apw==",
- "requires": {
- "@babel/helper-plugin-utils": "^7.10.4"
- }
- },
- "@babel/plugin-transform-typeof-symbol": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.12.1.tgz",
- "integrity": "sha512-EPGgpGy+O5Kg5pJFNDKuxt9RdmTgj5sgrus2XVeMp/ZIbOESadgILUbm50SNpghOh3/6yrbsH+NB5+WJTmsA7Q==",
- "requires": {
- "@babel/helper-plugin-utils": "^7.10.4"
- }
- },
- "@babel/plugin-transform-unicode-escapes": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.12.1.tgz",
- "integrity": "sha512-I8gNHJLIc7GdApm7wkVnStWssPNbSRMPtgHdmH3sRM1zopz09UWPS4x5V4n1yz/MIWTVnJ9sp6IkuXdWM4w+2Q==",
- "requires": {
- "@babel/helper-plugin-utils": "^7.10.4"
- }
- },
- "@babel/plugin-transform-unicode-regex": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.12.1.tgz",
- "integrity": "sha512-SqH4ClNngh/zGwHZOOQMTD+e8FGWexILV+ePMyiDJttAWRh5dhDL8rcl5lSgU3Huiq6Zn6pWTMvdPAb21Dwdyg==",
- "requires": {
- "@babel/helper-create-regexp-features-plugin": "^7.12.1",
- "@babel/helper-plugin-utils": "^7.10.4"
- }
- },
- "@babel/preset-env": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.12.1.tgz",
- "integrity": "sha512-H8kxXmtPaAGT7TyBvSSkoSTUK6RHh61So05SyEbpmr0MCZrsNYn7mGMzzeYoOUCdHzww61k8XBft2TaES+xPLg==",
- "requires": {
- "@babel/compat-data": "^7.12.1",
- "@babel/helper-compilation-targets": "^7.12.1",
- "@babel/helper-module-imports": "^7.12.1",
- "@babel/helper-plugin-utils": "^7.10.4",
- "@babel/helper-validator-option": "^7.12.1",
- "@babel/plugin-proposal-async-generator-functions": "^7.12.1",
- "@babel/plugin-proposal-class-properties": "^7.12.1",
- "@babel/plugin-proposal-dynamic-import": "^7.12.1",
- "@babel/plugin-proposal-export-namespace-from": "^7.12.1",
- "@babel/plugin-proposal-json-strings": "^7.12.1",
- "@babel/plugin-proposal-logical-assignment-operators": "^7.12.1",
- "@babel/plugin-proposal-nullish-coalescing-operator": "^7.12.1",
- "@babel/plugin-proposal-numeric-separator": "^7.12.1",
- "@babel/plugin-proposal-object-rest-spread": "^7.12.1",
- "@babel/plugin-proposal-optional-catch-binding": "^7.12.1",
- "@babel/plugin-proposal-optional-chaining": "^7.12.1",
- "@babel/plugin-proposal-private-methods": "^7.12.1",
- "@babel/plugin-proposal-unicode-property-regex": "^7.12.1",
- "@babel/plugin-syntax-async-generators": "^7.8.0",
- "@babel/plugin-syntax-class-properties": "^7.12.1",
- "@babel/plugin-syntax-dynamic-import": "^7.8.0",
- "@babel/plugin-syntax-export-namespace-from": "^7.8.3",
- "@babel/plugin-syntax-json-strings": "^7.8.0",
- "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4",
- "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.0",
- "@babel/plugin-syntax-numeric-separator": "^7.10.4",
- "@babel/plugin-syntax-object-rest-spread": "^7.8.0",
- "@babel/plugin-syntax-optional-catch-binding": "^7.8.0",
- "@babel/plugin-syntax-optional-chaining": "^7.8.0",
- "@babel/plugin-syntax-top-level-await": "^7.12.1",
- "@babel/plugin-transform-arrow-functions": "^7.12.1",
- "@babel/plugin-transform-async-to-generator": "^7.12.1",
- "@babel/plugin-transform-block-scoped-functions": "^7.12.1",
- "@babel/plugin-transform-block-scoping": "^7.12.1",
- "@babel/plugin-transform-classes": "^7.12.1",
- "@babel/plugin-transform-computed-properties": "^7.12.1",
- "@babel/plugin-transform-destructuring": "^7.12.1",
- "@babel/plugin-transform-dotall-regex": "^7.12.1",
- "@babel/plugin-transform-duplicate-keys": "^7.12.1",
- "@babel/plugin-transform-exponentiation-operator": "^7.12.1",
- "@babel/plugin-transform-for-of": "^7.12.1",
- "@babel/plugin-transform-function-name": "^7.12.1",
- "@babel/plugin-transform-literals": "^7.12.1",
- "@babel/plugin-transform-member-expression-literals": "^7.12.1",
- "@babel/plugin-transform-modules-amd": "^7.12.1",
- "@babel/plugin-transform-modules-commonjs": "^7.12.1",
- "@babel/plugin-transform-modules-systemjs": "^7.12.1",
- "@babel/plugin-transform-modules-umd": "^7.12.1",
- "@babel/plugin-transform-named-capturing-groups-regex": "^7.12.1",
- "@babel/plugin-transform-new-target": "^7.12.1",
- "@babel/plugin-transform-object-super": "^7.12.1",
- "@babel/plugin-transform-parameters": "^7.12.1",
- "@babel/plugin-transform-property-literals": "^7.12.1",
- "@babel/plugin-transform-regenerator": "^7.12.1",
- "@babel/plugin-transform-reserved-words": "^7.12.1",
- "@babel/plugin-transform-shorthand-properties": "^7.12.1",
- "@babel/plugin-transform-spread": "^7.12.1",
- "@babel/plugin-transform-sticky-regex": "^7.12.1",
- "@babel/plugin-transform-template-literals": "^7.12.1",
- "@babel/plugin-transform-typeof-symbol": "^7.12.1",
- "@babel/plugin-transform-unicode-escapes": "^7.12.1",
- "@babel/plugin-transform-unicode-regex": "^7.12.1",
- "@babel/preset-modules": "^0.1.3",
- "@babel/types": "^7.12.1",
- "core-js-compat": "^3.6.2",
- "semver": "^5.5.0"
- },
- "dependencies": {
- "@babel/plugin-proposal-class-properties": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.12.1.tgz",
- "integrity": "sha512-cKp3dlQsFsEs5CWKnN7BnSHOd0EOW8EKpEjkoz1pO2E5KzIDNV9Ros1b0CnmbVgAGXJubOYVBOGCT1OmJwOI7w==",
- "requires": {
- "@babel/helper-create-class-features-plugin": "^7.12.1",
- "@babel/helper-plugin-utils": "^7.10.4"
- }
- },
- "@babel/plugin-proposal-nullish-coalescing-operator": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.12.1.tgz",
- "integrity": "sha512-nZY0ESiaQDI1y96+jk6VxMOaL4LPo/QDHBqL+SF3/vl6dHkTwHlOI8L4ZwuRBHgakRBw5zsVylel7QPbbGuYgg==",
- "requires": {
- "@babel/helper-plugin-utils": "^7.10.4",
- "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.0"
- }
- },
- "@babel/plugin-proposal-optional-chaining": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.12.1.tgz",
- "integrity": "sha512-c2uRpY6WzaVDzynVY9liyykS+kVU+WRZPMPYpkelXH8KBt1oXoI89kPbZKKG/jDT5UK92FTW2fZkZaJhdiBabw==",
- "requires": {
- "@babel/helper-plugin-utils": "^7.10.4",
- "@babel/helper-skip-transparent-expression-wrappers": "^7.12.1",
- "@babel/plugin-syntax-optional-chaining": "^7.8.0"
- }
- },
- "@babel/plugin-transform-spread": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.12.1.tgz",
- "integrity": "sha512-vuLp8CP0BE18zVYjsEBZ5xoCecMK6LBMMxYzJnh01rxQRvhNhH1csMMmBfNo5tGpGO+NhdSNW2mzIvBu3K1fng==",
- "requires": {
- "@babel/helper-plugin-utils": "^7.10.4",
- "@babel/helper-skip-transparent-expression-wrappers": "^7.12.1"
- }
- }
- }
- },
- "@babel/runtime": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.1.tgz",
- "integrity": "sha512-J5AIf3vPj3UwXaAzb5j1xM4WAQDX3EMgemF8rjCP3SoW09LfRKAXQKt6CoVYl230P6iWdRcBbnLDDdnqWxZSCA==",
- "requires": {
- "regenerator-runtime": "^0.13.4"
- }
- },
- "@babel/traverse": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.12.1.tgz",
- "integrity": "sha512-MA3WPoRt1ZHo2ZmoGKNqi20YnPt0B1S0GTZEPhhd+hw2KGUzBlHuVunj6K4sNuK+reEvyiPwtp0cpaqLzJDmAw==",
- "requires": {
- "@babel/code-frame": "^7.10.4",
- "@babel/generator": "^7.12.1",
- "@babel/helper-function-name": "^7.10.4",
- "@babel/helper-split-export-declaration": "^7.11.0",
- "@babel/parser": "^7.12.1",
- "@babel/types": "^7.12.1",
- "debug": "^4.1.0",
- "globals": "^11.1.0",
- "lodash": "^4.17.19"
- }
- },
- "@babel/types": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.12.1.tgz",
- "integrity": "sha512-BzSY3NJBKM4kyatSOWh3D/JJ2O3CVzBybHWxtgxnggaxEuaSTTDqeiSb/xk9lrkw2Tbqyivw5ZU4rT+EfznQsA==",
- "requires": {
- "@babel/helper-validator-identifier": "^7.10.4",
- "lodash": "^4.17.19",
- "to-fast-properties": "^2.0.0"
- }
- },
- "debug": {
- "version": "4.2.0",
- "resolved": "https://registry.npmjs.org/debug/-/debug-4.2.0.tgz",
- "integrity": "sha512-IX2ncY78vDTjZMFUdmsvIRFY2Cf4FnD0wRs+nQwJU8Lu99/tPFdb0VybiiMTPe3I6rQmwsqQqRBvxU+bZ/I8sg==",
- "requires": {
- "ms": "2.1.2"
- }
- },
- "gatsby-core-utils": {
- "version": "1.3.23",
- "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-1.3.23.tgz",
- "integrity": "sha512-H6n6dDeRZ22HAJaBUIt5YjB/BSaE8Jq+kayMUv/YzL1RL2yFZ5lqcLwIL1OE2vWk1mQjMUBZCRxLODU0q1i3bQ==",
- "requires": {
- "ci-info": "2.0.0",
- "configstore": "^5.0.1",
- "fs-extra": "^8.1.0",
- "node-object-hash": "^2.0.0",
- "proper-lockfile": "^4.1.1",
- "tmp": "^0.2.1",
- "xdg-basedir": "^4.0.0"
- }
- },
- "regexpu-core": {
- "version": "4.7.1",
- "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-4.7.1.tgz",
- "integrity": "sha512-ywH2VUraA44DZQuRKzARmw6S66mr48pQVva4LBeRhcOltJ6hExvWly5ZjFLYo67xbIxb6W1q4bAGtgfEl20zfQ==",
- "requires": {
- "regenerate": "^1.4.0",
- "regenerate-unicode-properties": "^8.2.0",
- "regjsgen": "^0.5.1",
- "regjsparser": "^0.6.4",
- "unicode-match-property-ecmascript": "^1.0.4",
- "unicode-match-property-value-ecmascript": "^1.2.0"
- }
- }
- }
- },
- "babel-runtime": {
- "version": "6.26.0",
- "resolved": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.26.0.tgz",
- "integrity": "sha1-llxwWGaOgrVde/4E/yM3vItWR/4=",
- "requires": {
- "core-js": "^2.4.0",
- "regenerator-runtime": "^0.11.0"
- },
- "dependencies": {
- "core-js": {
- "version": "2.6.11",
- "resolved": "https://registry.npmjs.org/core-js/-/core-js-2.6.11.tgz",
- "integrity": "sha512-5wjnpaT/3dV+XB4borEsnAYQchn00XSgTAWKDkEqv+K8KevjbzmofK6hfJ9TZIlpj2N0xQpazy7PiRQiWHqzWg=="
+ }
+ }
+ },
+ "babel-runtime": {
+ "version": "6.26.0",
+ "resolved": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.26.0.tgz",
+ "integrity": "sha1-llxwWGaOgrVde/4E/yM3vItWR/4=",
+ "requires": {
+ "core-js": "^2.4.0",
+ "regenerator-runtime": "^0.11.0"
+ },
+ "dependencies": {
+ "core-js": {
+ "version": "2.6.11",
+ "resolved": "https://registry.npmjs.org/core-js/-/core-js-2.6.11.tgz",
+ "integrity": "sha512-5wjnpaT/3dV+XB4borEsnAYQchn00XSgTAWKDkEqv+K8KevjbzmofK6hfJ9TZIlpj2N0xQpazy7PiRQiWHqzWg=="
},
"regenerator-runtime": {
"version": "0.11.1",
@@ -5480,9 +4866,9 @@
}
},
"bl": {
- "version": "4.0.2",
- "resolved": "https://registry.npmjs.org/bl/-/bl-4.0.2.tgz",
- "integrity": "sha512-j4OH8f6Qg2bGuWfRiltT2HYGx0e1QcBTrK9KAHNMwMZdQnDZFk0ZSYIpADjYCB3U12nicC5tVJwSIhwOWjb4RQ==",
+ "version": "4.0.3",
+ "resolved": "https://registry.npmjs.org/bl/-/bl-4.0.3.tgz",
+ "integrity": "sha512-fs4G6/Hu4/EE+F75J8DuN/0IpQqNjAdC7aEQv7Qt8MHGUH7Ckv2MwTEEeN9QehD0pfIDkMI1bkHYkKy7xHyKIg==",
"requires": {
"buffer": "^5.5.0",
"inherits": "^2.0.4",
@@ -6967,6 +6353,14 @@
"yaml": "^1.7.2"
}
},
+ "cosmiconfig-toml-loader": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/cosmiconfig-toml-loader/-/cosmiconfig-toml-loader-1.0.0.tgz",
+ "integrity": "sha512-H/2gurFWVi7xXvCyvsWRLCMekl4tITJcX0QEsDMpzxtuxDyM59xLatYNg4s/k9AA/HdtCYfj2su8mgA0GSDLDA==",
+ "requires": {
+ "@iarna/toml": "^2.2.5"
+ }
+ },
"create-ecdh": {
"version": "4.0.4",
"resolved": "https://registry.npmjs.org/create-ecdh/-/create-ecdh-4.0.4.tgz",
@@ -7775,6 +7169,11 @@
}
}
},
+ "diff": {
+ "version": "4.0.2",
+ "resolved": "https://registry.npmjs.org/diff/-/diff-4.0.2.tgz",
+ "integrity": "sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A=="
+ },
"diff-sequences": {
"version": "25.2.6",
"resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-25.2.6.tgz",
@@ -8671,9 +8070,9 @@
},
"dependencies": {
"@babel/runtime": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.1.tgz",
- "integrity": "sha512-J5AIf3vPj3UwXaAzb5j1xM4WAQDX3EMgemF8rjCP3SoW09LfRKAXQKt6CoVYl230P6iWdRcBbnLDDdnqWxZSCA==",
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.5.tgz",
+ "integrity": "sha512-plcc+hbExy3McchJCEQG3knOsuh3HH+Prx1P6cLIkET/0dLuQDEnrT+s27Axgc9bqfsmNUNHfscgMUdBpC9xfg==",
"requires": {
"regenerator-runtime": "^0.13.4"
}
@@ -9721,9 +9120,9 @@
"integrity": "sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc="
},
"gatsby": {
- "version": "2.25.1",
- "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-2.25.1.tgz",
- "integrity": "sha512-2MLGL0MooLGmGQhSjIjq+mH95lE3PbrtZ8xgcmN1JOsjR/dJ+Fx/BoZC3CdqPku/zflMNlCb99vuB2HQaXiRdg==",
+ "version": "2.25.2",
+ "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-2.25.2.tgz",
+ "integrity": "sha512-zssz6mH5vpScGq9SCDtkfajJkYVYJ+00x5JRVf9pYlVTRdv+g7jbKTuGdaWKbPoacEtXw3bUaTURUC2YMs/Gmg==",
"requires": {
"@babel/code-frame": "^7.10.4",
"@babel/core": "^7.11.6",
@@ -9750,7 +9149,7 @@
"babel-plugin-dynamic-import-node": "^2.3.3",
"babel-plugin-lodash": "3.3.4",
"babel-plugin-remove-graphql-queries": "^2.9.20",
- "babel-preset-gatsby": "^0.5.15",
+ "babel-preset-gatsby": "^0.5.16",
"better-opn": "^2.0.0",
"better-queue": "^3.8.10",
"bluebird": "^3.7.2",
@@ -9758,7 +9157,7 @@
"browserslist": "^4.12.2",
"cache-manager": "^2.11.1",
"cache-manager-fs-hash": "^0.0.9",
- "chalk": "^2.4.2",
+ "chalk": "^4.1.0",
"chokidar": "^3.4.2",
"common-tags": "^1.8.0",
"compression": "^1.7.4",
@@ -9791,16 +9190,16 @@
"find-cache-dir": "^3.3.1",
"fs-exists-cached": "1.0.0",
"fs-extra": "^8.1.0",
- "gatsby-cli": "^2.12.115",
- "gatsby-core-utils": "^1.3.23",
+ "gatsby-cli": "^2.12.116",
+ "gatsby-core-utils": "^1.3.24",
"gatsby-graphiql-explorer": "^0.4.15",
"gatsby-legacy-polyfills": "^0.0.6",
"gatsby-link": "^2.4.16",
- "gatsby-plugin-page-creator": "^2.3.34",
+ "gatsby-plugin-page-creator": "^2.3.35",
"gatsby-plugin-typescript": "^2.5.0",
"gatsby-plugin-utils": "^0.2.40",
"gatsby-react-router-scroll": "^3.0.15",
- "gatsby-telemetry": "^1.3.39",
+ "gatsby-telemetry": "^1.3.40",
"glob": "^7.1.6",
"got": "8.3.2",
"graphql": "^14.6.0",
@@ -9875,139 +9274,40 @@
"yaml-loader": "^0.6.0"
},
"dependencies": {
- "@babel/core": {
- "version": "7.12.3",
- "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.12.3.tgz",
- "integrity": "sha512-0qXcZYKZp3/6N2jKYVxZv0aNCsxTSVCiK72DTiTYZAu7sjg73W0/aynWjMbiGd87EQL4WyA8reiJVh92AVla9g==",
- "requires": {
- "@babel/code-frame": "^7.10.4",
- "@babel/generator": "^7.12.1",
- "@babel/helper-module-transforms": "^7.12.1",
- "@babel/helpers": "^7.12.1",
- "@babel/parser": "^7.12.3",
- "@babel/template": "^7.10.4",
- "@babel/traverse": "^7.12.1",
- "@babel/types": "^7.12.1",
- "convert-source-map": "^1.7.0",
- "debug": "^4.1.0",
- "gensync": "^1.0.0-beta.1",
- "json5": "^2.1.2",
- "lodash": "^4.17.19",
- "resolve": "^1.3.2",
- "semver": "^5.4.1",
- "source-map": "^0.5.0"
- },
- "dependencies": {
- "debug": {
- "version": "4.2.0",
- "resolved": "https://registry.npmjs.org/debug/-/debug-4.2.0.tgz",
- "integrity": "sha512-IX2ncY78vDTjZMFUdmsvIRFY2Cf4FnD0wRs+nQwJU8Lu99/tPFdb0VybiiMTPe3I6rQmwsqQqRBvxU+bZ/I8sg==",
- "requires": {
- "ms": "2.1.2"
- }
- },
- "semver": {
- "version": "5.7.1",
- "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz",
- "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ=="
- }
- }
- },
"@babel/generator": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.12.1.tgz",
- "integrity": "sha512-DB+6rafIdc9o72Yc3/Ph5h+6hUjeOp66pF0naQBgUFFuPqzQwIlPTm3xZR7YNvduIMtkDIj2t21LSQwnbCrXvg==",
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.12.5.tgz",
+ "integrity": "sha512-m16TQQJ8hPt7E+OS/XVQg/7U184MLXtvuGbCdA7na61vha+ImkyyNM/9DDA0unYCVZn3ZOhng+qz48/KBOT96A==",
"requires": {
- "@babel/types": "^7.12.1",
+ "@babel/types": "^7.12.5",
"jsesc": "^2.5.1",
"source-map": "^0.5.0"
}
},
- "@babel/helper-member-expression-to-functions": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.12.1.tgz",
- "integrity": "sha512-k0CIe3tXUKTRSoEx1LQEPFU9vRQfqHtl+kf8eNnDqb4AUJEy5pz6aIiog+YWtVm2jpggjS1laH68bPsR+KWWPQ==",
- "requires": {
- "@babel/types": "^7.12.1"
- }
- },
- "@babel/helper-module-imports": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.12.1.tgz",
- "integrity": "sha512-ZeC1TlMSvikvJNy1v/wPIazCu3NdOwgYZLIkmIyAsGhqkNpiDoQQRmaCK8YP4Pq3GPTLPV9WXaPCJKvx06JxKA==",
- "requires": {
- "@babel/types": "^7.12.1"
- }
- },
- "@babel/helper-module-transforms": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.12.1.tgz",
- "integrity": "sha512-QQzehgFAZ2bbISiCpmVGfiGux8YVFXQ0abBic2Envhej22DVXV9nCFaS5hIQbkyo1AdGb+gNME2TSh3hYJVV/w==",
- "requires": {
- "@babel/helper-module-imports": "^7.12.1",
- "@babel/helper-replace-supers": "^7.12.1",
- "@babel/helper-simple-access": "^7.12.1",
- "@babel/helper-split-export-declaration": "^7.11.0",
- "@babel/helper-validator-identifier": "^7.10.4",
- "@babel/template": "^7.10.4",
- "@babel/traverse": "^7.12.1",
- "@babel/types": "^7.12.1",
- "lodash": "^4.17.19"
- }
- },
- "@babel/helper-replace-supers": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.12.1.tgz",
- "integrity": "sha512-zJjTvtNJnCFsCXVi5rUInstLd/EIVNmIKA1Q9ynESmMBWPWd+7sdR+G4/wdu+Mppfep0XLyG2m7EBPvjCeFyrw==",
- "requires": {
- "@babel/helper-member-expression-to-functions": "^7.12.1",
- "@babel/helper-optimise-call-expression": "^7.10.4",
- "@babel/traverse": "^7.12.1",
- "@babel/types": "^7.12.1"
- }
- },
- "@babel/helper-simple-access": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.12.1.tgz",
- "integrity": "sha512-OxBp7pMrjVewSSC8fXDFrHrBcJATOOFssZwv16F3/6Xtc138GHybBfPbm9kfiqQHKhYQrlamWILwlDCeyMFEaA==",
- "requires": {
- "@babel/types": "^7.12.1"
- }
- },
- "@babel/helpers": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.12.1.tgz",
- "integrity": "sha512-9JoDSBGoWtmbay98efmT2+mySkwjzeFeAL9BuWNoVQpkPFQF8SIIFUfY5os9u8wVzglzoiPRSW7cuJmBDUt43g==",
- "requires": {
- "@babel/template": "^7.10.4",
- "@babel/traverse": "^7.12.1",
- "@babel/types": "^7.12.1"
- }
- },
"@babel/parser": {
- "version": "7.12.3",
- "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.12.3.tgz",
- "integrity": "sha512-kFsOS0IbsuhO5ojF8Hc8z/8vEIOkylVBrjiZUbLTE3XFe0Qi+uu6HjzQixkFaqr0ZPAMZcBVxEwmsnsLPZ2Xsw=="
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.12.5.tgz",
+ "integrity": "sha512-FVM6RZQ0mn2KCf1VUED7KepYeUWoVShczewOCfm3nzoBybaih51h+sYVVGthW9M6lPByEPTQf+xm27PBdlpwmQ=="
},
"@babel/runtime": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.1.tgz",
- "integrity": "sha512-J5AIf3vPj3UwXaAzb5j1xM4WAQDX3EMgemF8rjCP3SoW09LfRKAXQKt6CoVYl230P6iWdRcBbnLDDdnqWxZSCA==",
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.5.tgz",
+ "integrity": "sha512-plcc+hbExy3McchJCEQG3knOsuh3HH+Prx1P6cLIkET/0dLuQDEnrT+s27Axgc9bqfsmNUNHfscgMUdBpC9xfg==",
"requires": {
"regenerator-runtime": "^0.13.4"
}
},
"@babel/traverse": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.12.1.tgz",
- "integrity": "sha512-MA3WPoRt1ZHo2ZmoGKNqi20YnPt0B1S0GTZEPhhd+hw2KGUzBlHuVunj6K4sNuK+reEvyiPwtp0cpaqLzJDmAw==",
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.12.5.tgz",
+ "integrity": "sha512-xa15FbQnias7z9a62LwYAA5SZZPkHIXpd42C6uW68o8uTuua96FHZy1y61Va5P/i83FAAcMpW8+A/QayntzuqA==",
"requires": {
"@babel/code-frame": "^7.10.4",
- "@babel/generator": "^7.12.1",
+ "@babel/generator": "^7.12.5",
"@babel/helper-function-name": "^7.10.4",
"@babel/helper-split-export-declaration": "^7.11.0",
- "@babel/parser": "^7.12.1",
- "@babel/types": "^7.12.1",
+ "@babel/parser": "^7.12.5",
+ "@babel/types": "^7.12.5",
"debug": "^4.1.0",
"globals": "^11.1.0",
"lodash": "^4.17.19"
@@ -10024,9 +9324,9 @@
}
},
"@babel/types": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.12.1.tgz",
- "integrity": "sha512-BzSY3NJBKM4kyatSOWh3D/JJ2O3CVzBybHWxtgxnggaxEuaSTTDqeiSb/xk9lrkw2Tbqyivw5ZU4rT+EfznQsA==",
+ "version": "7.12.6",
+ "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.12.6.tgz",
+ "integrity": "sha512-hwyjw6GvjBLiyy3W0YQf0Z5Zf4NpYejUnKFcfcUhZCSffoBBp30w6wP2Wn6pk31jMYZvcOrB/1b7cGXvEoKogA==",
"requires": {
"@babel/helper-validator-identifier": "^7.10.4",
"lodash": "^4.17.19",
@@ -10038,43 +9338,36 @@
"resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz",
"integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg=="
},
- "anymatch": {
- "version": "3.1.1",
- "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.1.tgz",
- "integrity": "sha512-mM8522psRCqzV+6LhomX5wgp25YVibjh8Wj23I5RPkPppSVSjyKD2A2mBJmWGa+KN7f2D6LNh9jkBCeyLktzjg==",
+ "ansi-styles": {
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
+ "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
"requires": {
- "normalize-path": "^3.0.0",
- "picomatch": "^2.0.4"
+ "color-convert": "^2.0.1"
}
},
- "binary-extensions": {
- "version": "2.1.0",
- "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.1.0.tgz",
- "integrity": "sha512-1Yj8h9Q+QDF5FzhMs/c9+6UntbD5MkRfRwac8DoEm9ZfUBZ7tZ55YcGVAzEe4bXsdQHEk+s9S5wsOKVdZrw0tQ=="
- },
- "braces": {
- "version": "3.0.2",
- "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz",
- "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==",
+ "chalk": {
+ "version": "4.1.0",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.0.tgz",
+ "integrity": "sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==",
"requires": {
- "fill-range": "^7.0.1"
+ "ansi-styles": "^4.1.0",
+ "supports-color": "^7.1.0"
}
},
- "chokidar": {
- "version": "3.4.3",
- "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.4.3.tgz",
- "integrity": "sha512-DtM3g7juCXQxFVSNPNByEC2+NImtBuxQQvWlHunpJIS5Ocr0lG306cC7FCi7cEA0fzmybPUIl4txBIobk1gGOQ==",
+ "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": {
- "anymatch": "~3.1.1",
- "braces": "~3.0.2",
- "fsevents": "~2.1.2",
- "glob-parent": "~5.1.0",
- "is-binary-path": "~2.1.0",
- "is-glob": "~4.0.1",
- "normalize-path": "~3.0.0",
- "readdirp": "~3.5.0"
+ "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=="
+ },
"cross-spawn": {
"version": "7.0.3",
"resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz",
@@ -10085,30 +9378,16 @@
"which": "^2.0.1"
}
},
- "fill-range": {
- "version": "7.0.1",
- "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz",
- "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==",
- "requires": {
- "to-regex-range": "^5.0.1"
- }
- },
- "fsevents": {
- "version": "2.1.3",
- "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.1.3.tgz",
- "integrity": "sha512-Auw9a4AxqWpa9GUfj370BMPzzyncfBABW8Mab7BGWBYDj4Isgq+cDKtx0i6u9jcX9pQDnswsaaOTgTmA5pEjuQ==",
- "optional": true
- },
"gatsby-cli": {
- "version": "2.12.115",
- "resolved": "https://registry.npmjs.org/gatsby-cli/-/gatsby-cli-2.12.115.tgz",
- "integrity": "sha512-wOs3tG3tYses4fclXG0FtVZx+K0FDoZFkU1MIJNB+aRt+T7VMCZUIlg2MyrqcngsEW8al4EgyOd3UIl3NepC4A==",
+ "version": "2.12.116",
+ "resolved": "https://registry.npmjs.org/gatsby-cli/-/gatsby-cli-2.12.116.tgz",
+ "integrity": "sha512-vXpyl/ZFF67r/BlBxIjfdknBzxRfRuJ1qkA7//6dhNKDMlvVi5ZqGhOwcMzTgM1e0WZRaMFzf5/foPIA++8xEQ==",
"requires": {
"@babel/code-frame": "^7.10.4",
"@hapi/joi": "^15.1.1",
"@types/common-tags": "^1.8.0",
"better-opn": "^2.0.0",
- "chalk": "^2.4.2",
+ "chalk": "^4.1.0",
"clipboardy": "^2.3.0",
"common-tags": "^1.8.0",
"configstore": "^5.0.1",
@@ -10117,9 +9396,9 @@
"execa": "^3.4.0",
"fs-exists-cached": "^1.0.0",
"fs-extra": "^8.1.0",
- "gatsby-core-utils": "^1.3.23",
- "gatsby-recipes": "^0.2.36",
- "gatsby-telemetry": "^1.3.39",
+ "gatsby-core-utils": "^1.3.24",
+ "gatsby-recipes": "^0.2.37",
+ "gatsby-telemetry": "^1.3.40",
"hosted-git-info": "^3.0.6",
"is-valid-path": "^0.1.1",
"lodash": "^4.17.20",
@@ -10168,9 +9447,9 @@
}
},
"gatsby-core-utils": {
- "version": "1.3.23",
- "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-1.3.23.tgz",
- "integrity": "sha512-H6n6dDeRZ22HAJaBUIt5YjB/BSaE8Jq+kayMUv/YzL1RL2yFZ5lqcLwIL1OE2vWk1mQjMUBZCRxLODU0q1i3bQ==",
+ "version": "1.3.24",
+ "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-1.3.24.tgz",
+ "integrity": "sha512-SlK7rJv/8NBYC8FodYvTINamBHadXNSv//a2uRwh44N1GSSujuCMvtUcpEuAdg9BUQHc54NbbmFuoqf8p85kgA==",
"requires": {
"ci-info": "2.0.0",
"configstore": "^5.0.1",
@@ -10189,13 +9468,10 @@
"pump": "^3.0.0"
}
},
- "glob-parent": {
- "version": "5.1.1",
- "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.1.tgz",
- "integrity": "sha512-FnI+VGOpnlGHWZxthPGR+QhR78fuiK0sNLkHQv+bL9fQi57lNNdquIbna/WrfROrolq8GK5Ek6BiMwqL/voRYQ==",
- "requires": {
- "is-glob": "^4.0.1"
- }
+ "has-flag": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
+ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ=="
},
"hosted-git-info": {
"version": "3.0.7",
@@ -10205,19 +9481,6 @@
"lru-cache": "^6.0.0"
}
},
- "is-binary-path": {
- "version": "2.1.0",
- "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz",
- "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==",
- "requires": {
- "binary-extensions": "^2.0.0"
- }
- },
- "is-number": {
- "version": "7.0.0",
- "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz",
- "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng=="
- },
"is-stream": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.0.tgz",
@@ -10236,20 +9499,6 @@
"yallist": "^4.0.0"
}
},
- "md5-file": {
- "version": "5.0.0",
- "resolved": "https://registry.npmjs.org/md5-file/-/md5-file-5.0.0.tgz",
- "integrity": "sha512-xbEFXCYVWrSx/gEKS1VPlg84h/4L20znVIulKw6kMfmBUAZNAnF00eczz9ICMl+/hjQGo5KSXRxbL/47X3rmMw=="
- },
- "micromatch": {
- "version": "4.0.2",
- "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.2.tgz",
- "integrity": "sha512-y7FpHSbMUMoyPbYUSzO6PaZ6FyRnQOpHuKwbo1G+Knck95XVU4QAiKdGEnj5wwoS7PlOgthX/09u5iFJ+aYf5Q==",
- "requires": {
- "braces": "^3.0.1",
- "picomatch": "^2.0.5"
- }
- },
"npm-run-path": {
"version": "4.0.1",
"resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz",
@@ -10268,14 +9517,6 @@
"resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz",
"integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q=="
},
- "readdirp": {
- "version": "3.5.0",
- "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.5.0.tgz",
- "integrity": "sha512-cMhu7c/8rdhkHXWsY+osBhfSy0JikwpHK/5+imo+LpeasTF8ouErHrlYkwT0++njiyuDvc7OFY5T3ukvZ8qmFQ==",
- "requires": {
- "picomatch": "^2.2.1"
- }
- },
"semver": {
"version": "7.3.2",
"resolved": "https://registry.npmjs.org/semver/-/semver-7.3.2.tgz",
@@ -10302,12 +9543,12 @@
"ansi-regex": "^4.1.0"
}
},
- "to-regex-range": {
- "version": "5.0.1",
- "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz",
- "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==",
+ "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": {
- "is-number": "^7.0.0"
+ "has-flag": "^4.0.0"
}
},
"which": {
@@ -10348,9 +9589,9 @@
},
"dependencies": {
"@babel/runtime": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.1.tgz",
- "integrity": "sha512-J5AIf3vPj3UwXaAzb5j1xM4WAQDX3EMgemF8rjCP3SoW09LfRKAXQKt6CoVYl230P6iWdRcBbnLDDdnqWxZSCA==",
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.5.tgz",
+ "integrity": "sha512-plcc+hbExy3McchJCEQG3knOsuh3HH+Prx1P6cLIkET/0dLuQDEnrT+s27Axgc9bqfsmNUNHfscgMUdBpC9xfg==",
"requires": {
"regenerator-runtime": "^0.13.4"
}
@@ -10376,9 +9617,9 @@
},
"dependencies": {
"@babel/runtime": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.1.tgz",
- "integrity": "sha512-J5AIf3vPj3UwXaAzb5j1xM4WAQDX3EMgemF8rjCP3SoW09LfRKAXQKt6CoVYl230P6iWdRcBbnLDDdnqWxZSCA==",
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.5.tgz",
+ "integrity": "sha512-plcc+hbExy3McchJCEQG3knOsuh3HH+Prx1P6cLIkET/0dLuQDEnrT+s27Axgc9bqfsmNUNHfscgMUdBpC9xfg==",
"requires": {
"regenerator-runtime": "^0.13.4"
}
@@ -10386,83 +9627,32 @@
}
},
"gatsby-page-utils": {
- "version": "0.2.29",
- "resolved": "https://registry.npmjs.org/gatsby-page-utils/-/gatsby-page-utils-0.2.29.tgz",
- "integrity": "sha512-0xN3kBNd7PNwsJB1lJrsy7hEJbIIBcvnmbxGTplGenmGnOMoJqK6kEfM5Ru5dWBdSmwHrS+kcihFi0ZiGxpoww==",
+ "version": "0.2.30",
+ "resolved": "https://registry.npmjs.org/gatsby-page-utils/-/gatsby-page-utils-0.2.30.tgz",
+ "integrity": "sha512-H4a6VgDuO4Obd2UgZmfHCnpN3D6NOOpcgVSf8XuC7fmksVhQ3L2v7zw7y/TNS1Fz74yEKffnaF9pqRfkg8D/yg==",
"requires": {
"@babel/runtime": "^7.11.2",
"bluebird": "^3.7.2",
"chokidar": "^3.4.3",
"fs-exists-cached": "^1.0.0",
- "gatsby-core-utils": "^1.3.23",
+ "gatsby-core-utils": "^1.3.24",
"glob": "^7.1.6",
"lodash": "^4.17.20",
"micromatch": "^4.0.2"
},
"dependencies": {
"@babel/runtime": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.1.tgz",
- "integrity": "sha512-J5AIf3vPj3UwXaAzb5j1xM4WAQDX3EMgemF8rjCP3SoW09LfRKAXQKt6CoVYl230P6iWdRcBbnLDDdnqWxZSCA==",
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.5.tgz",
+ "integrity": "sha512-plcc+hbExy3McchJCEQG3knOsuh3HH+Prx1P6cLIkET/0dLuQDEnrT+s27Axgc9bqfsmNUNHfscgMUdBpC9xfg==",
"requires": {
"regenerator-runtime": "^0.13.4"
}
},
- "anymatch": {
- "version": "3.1.1",
- "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.1.tgz",
- "integrity": "sha512-mM8522psRCqzV+6LhomX5wgp25YVibjh8Wj23I5RPkPppSVSjyKD2A2mBJmWGa+KN7f2D6LNh9jkBCeyLktzjg==",
- "requires": {
- "normalize-path": "^3.0.0",
- "picomatch": "^2.0.4"
- }
- },
- "binary-extensions": {
- "version": "2.1.0",
- "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.1.0.tgz",
- "integrity": "sha512-1Yj8h9Q+QDF5FzhMs/c9+6UntbD5MkRfRwac8DoEm9ZfUBZ7tZ55YcGVAzEe4bXsdQHEk+s9S5wsOKVdZrw0tQ=="
- },
- "braces": {
- "version": "3.0.2",
- "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz",
- "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==",
- "requires": {
- "fill-range": "^7.0.1"
- }
- },
- "chokidar": {
- "version": "3.4.3",
- "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.4.3.tgz",
- "integrity": "sha512-DtM3g7juCXQxFVSNPNByEC2+NImtBuxQQvWlHunpJIS5Ocr0lG306cC7FCi7cEA0fzmybPUIl4txBIobk1gGOQ==",
- "requires": {
- "anymatch": "~3.1.1",
- "braces": "~3.0.2",
- "fsevents": "~2.1.2",
- "glob-parent": "~5.1.0",
- "is-binary-path": "~2.1.0",
- "is-glob": "~4.0.1",
- "normalize-path": "~3.0.0",
- "readdirp": "~3.5.0"
- }
- },
- "fill-range": {
- "version": "7.0.1",
- "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz",
- "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==",
- "requires": {
- "to-regex-range": "^5.0.1"
- }
- },
- "fsevents": {
- "version": "2.1.3",
- "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.1.3.tgz",
- "integrity": "sha512-Auw9a4AxqWpa9GUfj370BMPzzyncfBABW8Mab7BGWBYDj4Isgq+cDKtx0i6u9jcX9pQDnswsaaOTgTmA5pEjuQ==",
- "optional": true
- },
"gatsby-core-utils": {
- "version": "1.3.23",
- "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-1.3.23.tgz",
- "integrity": "sha512-H6n6dDeRZ22HAJaBUIt5YjB/BSaE8Jq+kayMUv/YzL1RL2yFZ5lqcLwIL1OE2vWk1mQjMUBZCRxLODU0q1i3bQ==",
+ "version": "1.3.24",
+ "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-1.3.24.tgz",
+ "integrity": "sha512-SlK7rJv/8NBYC8FodYvTINamBHadXNSv//a2uRwh44N1GSSujuCMvtUcpEuAdg9BUQHc54NbbmFuoqf8p85kgA==",
"requires": {
"ci-info": "2.0.0",
"configstore": "^5.0.1",
@@ -10473,56 +9663,10 @@
"xdg-basedir": "^4.0.0"
}
},
- "glob-parent": {
- "version": "5.1.1",
- "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.1.tgz",
- "integrity": "sha512-FnI+VGOpnlGHWZxthPGR+QhR78fuiK0sNLkHQv+bL9fQi57lNNdquIbna/WrfROrolq8GK5Ek6BiMwqL/voRYQ==",
- "requires": {
- "is-glob": "^4.0.1"
- }
- },
- "is-binary-path": {
- "version": "2.1.0",
- "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz",
- "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==",
- "requires": {
- "binary-extensions": "^2.0.0"
- }
- },
- "is-number": {
- "version": "7.0.0",
- "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz",
- "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng=="
- },
"lodash": {
"version": "4.17.20",
"resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.20.tgz",
"integrity": "sha512-PlhdFcillOINfeV7Ni6oF1TAEayyZBoZ8bcshTHqOYJYlrqzRK5hagpagky5o4HfCzzd1TRkXPMFq6cKk9rGmA=="
- },
- "micromatch": {
- "version": "4.0.2",
- "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.2.tgz",
- "integrity": "sha512-y7FpHSbMUMoyPbYUSzO6PaZ6FyRnQOpHuKwbo1G+Knck95XVU4QAiKdGEnj5wwoS7PlOgthX/09u5iFJ+aYf5Q==",
- "requires": {
- "braces": "^3.0.1",
- "picomatch": "^2.0.5"
- }
- },
- "readdirp": {
- "version": "3.5.0",
- "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.5.0.tgz",
- "integrity": "sha512-cMhu7c/8rdhkHXWsY+osBhfSy0JikwpHK/5+imo+LpeasTF8ouErHrlYkwT0++njiyuDvc7OFY5T3ukvZ8qmFQ==",
- "requires": {
- "picomatch": "^2.2.1"
- }
- },
- "to-regex-range": {
- "version": "5.0.1",
- "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz",
- "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==",
- "requires": {
- "is-number": "^7.0.0"
- }
}
}
},
@@ -10634,98 +9778,61 @@
}
},
"gatsby-plugin-page-creator": {
- "version": "2.3.34",
- "resolved": "https://registry.npmjs.org/gatsby-plugin-page-creator/-/gatsby-plugin-page-creator-2.3.34.tgz",
- "integrity": "sha512-/rFG/ye4m0JJ8NAxTObkKKD8098KOVGE+dZrgBx9I3VN1TcKru0HprVe1xj679HBgKjjNUvchXZbhLl5I+2o4A==",
+ "version": "2.3.35",
+ "resolved": "https://registry.npmjs.org/gatsby-plugin-page-creator/-/gatsby-plugin-page-creator-2.3.35.tgz",
+ "integrity": "sha512-hT6hgkplHSBXin9DECOxNQastvRJq15XrzN8327VU/67tetYGOG7SKDSxN4eCaIwy7VK0nP0C97gyN7kQ3FNJw==",
"requires": {
"@babel/traverse": "^7.11.5",
"@sindresorhus/slugify": "^1.1.0",
"chokidar": "^3.4.2",
"fs-exists-cached": "^1.0.0",
- "gatsby-page-utils": "^0.2.29",
+ "gatsby-page-utils": "^0.2.30",
"globby": "^11.0.1",
"graphql": "^14.7.0",
"lodash": "^4.17.20"
},
"dependencies": {
"@babel/generator": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.12.1.tgz",
- "integrity": "sha512-DB+6rafIdc9o72Yc3/Ph5h+6hUjeOp66pF0naQBgUFFuPqzQwIlPTm3xZR7YNvduIMtkDIj2t21LSQwnbCrXvg==",
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.12.5.tgz",
+ "integrity": "sha512-m16TQQJ8hPt7E+OS/XVQg/7U184MLXtvuGbCdA7na61vha+ImkyyNM/9DDA0unYCVZn3ZOhng+qz48/KBOT96A==",
"requires": {
- "@babel/types": "^7.12.1",
+ "@babel/types": "^7.12.5",
"jsesc": "^2.5.1",
"source-map": "^0.5.0"
}
},
"@babel/parser": {
- "version": "7.12.3",
- "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.12.3.tgz",
- "integrity": "sha512-kFsOS0IbsuhO5ojF8Hc8z/8vEIOkylVBrjiZUbLTE3XFe0Qi+uu6HjzQixkFaqr0ZPAMZcBVxEwmsnsLPZ2Xsw=="
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.12.5.tgz",
+ "integrity": "sha512-FVM6RZQ0mn2KCf1VUED7KepYeUWoVShczewOCfm3nzoBybaih51h+sYVVGthW9M6lPByEPTQf+xm27PBdlpwmQ=="
},
"@babel/traverse": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.12.1.tgz",
- "integrity": "sha512-MA3WPoRt1ZHo2ZmoGKNqi20YnPt0B1S0GTZEPhhd+hw2KGUzBlHuVunj6K4sNuK+reEvyiPwtp0cpaqLzJDmAw==",
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.12.5.tgz",
+ "integrity": "sha512-xa15FbQnias7z9a62LwYAA5SZZPkHIXpd42C6uW68o8uTuua96FHZy1y61Va5P/i83FAAcMpW8+A/QayntzuqA==",
"requires": {
"@babel/code-frame": "^7.10.4",
- "@babel/generator": "^7.12.1",
+ "@babel/generator": "^7.12.5",
"@babel/helper-function-name": "^7.10.4",
"@babel/helper-split-export-declaration": "^7.11.0",
- "@babel/parser": "^7.12.1",
- "@babel/types": "^7.12.1",
+ "@babel/parser": "^7.12.5",
+ "@babel/types": "^7.12.5",
"debug": "^4.1.0",
"globals": "^11.1.0",
"lodash": "^4.17.19"
}
},
"@babel/types": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.12.1.tgz",
- "integrity": "sha512-BzSY3NJBKM4kyatSOWh3D/JJ2O3CVzBybHWxtgxnggaxEuaSTTDqeiSb/xk9lrkw2Tbqyivw5ZU4rT+EfznQsA==",
+ "version": "7.12.6",
+ "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.12.6.tgz",
+ "integrity": "sha512-hwyjw6GvjBLiyy3W0YQf0Z5Zf4NpYejUnKFcfcUhZCSffoBBp30w6wP2Wn6pk31jMYZvcOrB/1b7cGXvEoKogA==",
"requires": {
"@babel/helper-validator-identifier": "^7.10.4",
"lodash": "^4.17.19",
"to-fast-properties": "^2.0.0"
}
},
- "anymatch": {
- "version": "3.1.1",
- "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.1.tgz",
- "integrity": "sha512-mM8522psRCqzV+6LhomX5wgp25YVibjh8Wj23I5RPkPppSVSjyKD2A2mBJmWGa+KN7f2D6LNh9jkBCeyLktzjg==",
- "requires": {
- "normalize-path": "^3.0.0",
- "picomatch": "^2.0.4"
- }
- },
- "binary-extensions": {
- "version": "2.1.0",
- "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.1.0.tgz",
- "integrity": "sha512-1Yj8h9Q+QDF5FzhMs/c9+6UntbD5MkRfRwac8DoEm9ZfUBZ7tZ55YcGVAzEe4bXsdQHEk+s9S5wsOKVdZrw0tQ=="
- },
- "braces": {
- "version": "3.0.2",
- "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz",
- "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==",
- "requires": {
- "fill-range": "^7.0.1"
- }
- },
- "chokidar": {
- "version": "3.4.3",
- "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.4.3.tgz",
- "integrity": "sha512-DtM3g7juCXQxFVSNPNByEC2+NImtBuxQQvWlHunpJIS5Ocr0lG306cC7FCi7cEA0fzmybPUIl4txBIobk1gGOQ==",
- "requires": {
- "anymatch": "~3.1.1",
- "braces": "~3.0.2",
- "fsevents": "~2.1.2",
- "glob-parent": "~5.1.0",
- "is-binary-path": "~2.1.0",
- "is-glob": "~4.0.1",
- "normalize-path": "~3.0.0",
- "readdirp": "~3.5.0"
- }
- },
"debug": {
"version": "4.2.0",
"resolved": "https://registry.npmjs.org/debug/-/debug-4.2.0.tgz",
@@ -10734,28 +9841,6 @@
"ms": "2.1.2"
}
},
- "fill-range": {
- "version": "7.0.1",
- "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz",
- "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==",
- "requires": {
- "to-regex-range": "^5.0.1"
- }
- },
- "fsevents": {
- "version": "2.1.3",
- "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.1.3.tgz",
- "integrity": "sha512-Auw9a4AxqWpa9GUfj370BMPzzyncfBABW8Mab7BGWBYDj4Isgq+cDKtx0i6u9jcX9pQDnswsaaOTgTmA5pEjuQ==",
- "optional": true
- },
- "glob-parent": {
- "version": "5.1.1",
- "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.1.tgz",
- "integrity": "sha512-FnI+VGOpnlGHWZxthPGR+QhR78fuiK0sNLkHQv+bL9fQi57lNNdquIbna/WrfROrolq8GK5Ek6BiMwqL/voRYQ==",
- "requires": {
- "is-glob": "^4.0.1"
- }
- },
"globby": {
"version": "11.0.1",
"resolved": "https://registry.npmjs.org/globby/-/globby-11.0.1.tgz",
@@ -10764,44 +9849,15 @@
"array-union": "^2.1.0",
"dir-glob": "^3.0.1",
"fast-glob": "^3.1.1",
- "ignore": "^5.1.4",
- "merge2": "^1.3.0",
- "slash": "^3.0.0"
- }
- },
- "is-binary-path": {
- "version": "2.1.0",
- "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz",
- "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==",
- "requires": {
- "binary-extensions": "^2.0.0"
+ "ignore": "^5.1.4",
+ "merge2": "^1.3.0",
+ "slash": "^3.0.0"
}
},
- "is-number": {
- "version": "7.0.0",
- "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz",
- "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng=="
- },
"lodash": {
"version": "4.17.20",
"resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.20.tgz",
"integrity": "sha512-PlhdFcillOINfeV7Ni6oF1TAEayyZBoZ8bcshTHqOYJYlrqzRK5hagpagky5o4HfCzzd1TRkXPMFq6cKk9rGmA=="
- },
- "readdirp": {
- "version": "3.5.0",
- "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.5.0.tgz",
- "integrity": "sha512-cMhu7c/8rdhkHXWsY+osBhfSy0JikwpHK/5+imo+LpeasTF8ouErHrlYkwT0++njiyuDvc7OFY5T3ukvZ8qmFQ==",
- "requires": {
- "picomatch": "^2.2.1"
- }
- },
- "to-regex-range": {
- "version": "5.0.1",
- "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz",
- "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==",
- "requires": {
- "is-number": "^7.0.0"
- }
}
}
},
@@ -11022,146 +10078,13 @@
"babel-plugin-remove-graphql-queries": "^2.9.20"
},
"dependencies": {
- "@babel/core": {
- "version": "7.12.3",
- "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.12.3.tgz",
- "integrity": "sha512-0qXcZYKZp3/6N2jKYVxZv0aNCsxTSVCiK72DTiTYZAu7sjg73W0/aynWjMbiGd87EQL4WyA8reiJVh92AVla9g==",
- "requires": {
- "@babel/code-frame": "^7.10.4",
- "@babel/generator": "^7.12.1",
- "@babel/helper-module-transforms": "^7.12.1",
- "@babel/helpers": "^7.12.1",
- "@babel/parser": "^7.12.3",
- "@babel/template": "^7.10.4",
- "@babel/traverse": "^7.12.1",
- "@babel/types": "^7.12.1",
- "convert-source-map": "^1.7.0",
- "debug": "^4.1.0",
- "gensync": "^1.0.0-beta.1",
- "json5": "^2.1.2",
- "lodash": "^4.17.19",
- "resolve": "^1.3.2",
- "semver": "^5.4.1",
- "source-map": "^0.5.0"
- }
- },
- "@babel/generator": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.12.1.tgz",
- "integrity": "sha512-DB+6rafIdc9o72Yc3/Ph5h+6hUjeOp66pF0naQBgUFFuPqzQwIlPTm3xZR7YNvduIMtkDIj2t21LSQwnbCrXvg==",
- "requires": {
- "@babel/types": "^7.12.1",
- "jsesc": "^2.5.1",
- "source-map": "^0.5.0"
- }
- },
- "@babel/helper-member-expression-to-functions": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.12.1.tgz",
- "integrity": "sha512-k0CIe3tXUKTRSoEx1LQEPFU9vRQfqHtl+kf8eNnDqb4AUJEy5pz6aIiog+YWtVm2jpggjS1laH68bPsR+KWWPQ==",
- "requires": {
- "@babel/types": "^7.12.1"
- }
- },
- "@babel/helper-module-imports": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.12.1.tgz",
- "integrity": "sha512-ZeC1TlMSvikvJNy1v/wPIazCu3NdOwgYZLIkmIyAsGhqkNpiDoQQRmaCK8YP4Pq3GPTLPV9WXaPCJKvx06JxKA==",
- "requires": {
- "@babel/types": "^7.12.1"
- }
- },
- "@babel/helper-module-transforms": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.12.1.tgz",
- "integrity": "sha512-QQzehgFAZ2bbISiCpmVGfiGux8YVFXQ0abBic2Envhej22DVXV9nCFaS5hIQbkyo1AdGb+gNME2TSh3hYJVV/w==",
- "requires": {
- "@babel/helper-module-imports": "^7.12.1",
- "@babel/helper-replace-supers": "^7.12.1",
- "@babel/helper-simple-access": "^7.12.1",
- "@babel/helper-split-export-declaration": "^7.11.0",
- "@babel/helper-validator-identifier": "^7.10.4",
- "@babel/template": "^7.10.4",
- "@babel/traverse": "^7.12.1",
- "@babel/types": "^7.12.1",
- "lodash": "^4.17.19"
- }
- },
- "@babel/helper-replace-supers": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.12.1.tgz",
- "integrity": "sha512-zJjTvtNJnCFsCXVi5rUInstLd/EIVNmIKA1Q9ynESmMBWPWd+7sdR+G4/wdu+Mppfep0XLyG2m7EBPvjCeFyrw==",
- "requires": {
- "@babel/helper-member-expression-to-functions": "^7.12.1",
- "@babel/helper-optimise-call-expression": "^7.10.4",
- "@babel/traverse": "^7.12.1",
- "@babel/types": "^7.12.1"
- }
- },
- "@babel/helper-simple-access": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.12.1.tgz",
- "integrity": "sha512-OxBp7pMrjVewSSC8fXDFrHrBcJATOOFssZwv16F3/6Xtc138GHybBfPbm9kfiqQHKhYQrlamWILwlDCeyMFEaA==",
- "requires": {
- "@babel/types": "^7.12.1"
- }
- },
- "@babel/helpers": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.12.1.tgz",
- "integrity": "sha512-9JoDSBGoWtmbay98efmT2+mySkwjzeFeAL9BuWNoVQpkPFQF8SIIFUfY5os9u8wVzglzoiPRSW7cuJmBDUt43g==",
- "requires": {
- "@babel/template": "^7.10.4",
- "@babel/traverse": "^7.12.1",
- "@babel/types": "^7.12.1"
- }
- },
- "@babel/parser": {
- "version": "7.12.3",
- "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.12.3.tgz",
- "integrity": "sha512-kFsOS0IbsuhO5ojF8Hc8z/8vEIOkylVBrjiZUbLTE3XFe0Qi+uu6HjzQixkFaqr0ZPAMZcBVxEwmsnsLPZ2Xsw=="
- },
"@babel/runtime": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.1.tgz",
- "integrity": "sha512-J5AIf3vPj3UwXaAzb5j1xM4WAQDX3EMgemF8rjCP3SoW09LfRKAXQKt6CoVYl230P6iWdRcBbnLDDdnqWxZSCA==",
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.5.tgz",
+ "integrity": "sha512-plcc+hbExy3McchJCEQG3knOsuh3HH+Prx1P6cLIkET/0dLuQDEnrT+s27Axgc9bqfsmNUNHfscgMUdBpC9xfg==",
"requires": {
"regenerator-runtime": "^0.13.4"
}
- },
- "@babel/traverse": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.12.1.tgz",
- "integrity": "sha512-MA3WPoRt1ZHo2ZmoGKNqi20YnPt0B1S0GTZEPhhd+hw2KGUzBlHuVunj6K4sNuK+reEvyiPwtp0cpaqLzJDmAw==",
- "requires": {
- "@babel/code-frame": "^7.10.4",
- "@babel/generator": "^7.12.1",
- "@babel/helper-function-name": "^7.10.4",
- "@babel/helper-split-export-declaration": "^7.11.0",
- "@babel/parser": "^7.12.1",
- "@babel/types": "^7.12.1",
- "debug": "^4.1.0",
- "globals": "^11.1.0",
- "lodash": "^4.17.19"
- }
- },
- "@babel/types": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.12.1.tgz",
- "integrity": "sha512-BzSY3NJBKM4kyatSOWh3D/JJ2O3CVzBybHWxtgxnggaxEuaSTTDqeiSb/xk9lrkw2Tbqyivw5ZU4rT+EfznQsA==",
- "requires": {
- "@babel/helper-validator-identifier": "^7.10.4",
- "lodash": "^4.17.19",
- "to-fast-properties": "^2.0.0"
- }
- },
- "debug": {
- "version": "4.2.0",
- "resolved": "https://registry.npmjs.org/debug/-/debug-4.2.0.tgz",
- "integrity": "sha512-IX2ncY78vDTjZMFUdmsvIRFY2Cf4FnD0wRs+nQwJU8Lu99/tPFdb0VybiiMTPe3I6rQmwsqQqRBvxU+bZ/I8sg==",
- "requires": {
- "ms": "2.1.2"
- }
}
}
},
@@ -11182,9 +10105,9 @@
},
"dependencies": {
"@babel/runtime": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.1.tgz",
- "integrity": "sha512-J5AIf3vPj3UwXaAzb5j1xM4WAQDX3EMgemF8rjCP3SoW09LfRKAXQKt6CoVYl230P6iWdRcBbnLDDdnqWxZSCA==",
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.5.tgz",
+ "integrity": "sha512-plcc+hbExy3McchJCEQG3knOsuh3HH+Prx1P6cLIkET/0dLuQDEnrT+s27Axgc9bqfsmNUNHfscgMUdBpC9xfg==",
"requires": {
"regenerator-runtime": "^0.13.4"
}
@@ -11192,9 +10115,9 @@
}
},
"gatsby-recipes": {
- "version": "0.2.36",
- "resolved": "https://registry.npmjs.org/gatsby-recipes/-/gatsby-recipes-0.2.36.tgz",
- "integrity": "sha512-GrXRHdEOyGHe5r1hyePWc7kYM3yIu+RDargLqgHGO/lb76ZXRYhjlQ06chL3NMbmxAMYF3UcIm4RSlTS6rLkIg==",
+ "version": "0.2.37",
+ "resolved": "https://registry.npmjs.org/gatsby-recipes/-/gatsby-recipes-0.2.37.tgz",
+ "integrity": "sha512-3pBvAx8HdrFYHv+o0uUiC5Oyd4206wYuQdETib/fYQhG8JxyGCZTDIzy/9RjBYb2I8xm+TlK6jpucLXWlp5DcA==",
"requires": {
"@babel/core": "^7.11.6",
"@babel/generator": "^7.11.6",
@@ -11204,8 +10127,8 @@
"@babel/standalone": "^7.11.6",
"@babel/template": "^7.10.4",
"@babel/types": "^7.11.5",
- "@graphql-tools/schema": "^6.0.14",
- "@graphql-tools/utils": "^6.0.14",
+ "@graphql-tools/schema": "^7.0.0",
+ "@graphql-tools/utils": "^7.0.2",
"@hapi/hoek": "8.x.x",
"@hapi/joi": "^15.1.1",
"better-queue": "^3.8.10",
@@ -11219,8 +10142,8 @@
"express": "^4.17.1",
"express-graphql": "^0.9.0",
"fs-extra": "^8.1.0",
- "gatsby-core-utils": "^1.3.23",
- "gatsby-telemetry": "^1.3.39",
+ "gatsby-core-utils": "^1.3.24",
+ "gatsby-telemetry": "^1.3.40",
"glob": "^7.1.6",
"graphql": "^14.6.0",
"graphql-compose": "^6.3.8",
@@ -11257,144 +10180,33 @@
"yoga-layout-prebuilt": "^1.9.6"
},
"dependencies": {
- "@babel/core": {
- "version": "7.12.3",
- "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.12.3.tgz",
- "integrity": "sha512-0qXcZYKZp3/6N2jKYVxZv0aNCsxTSVCiK72DTiTYZAu7sjg73W0/aynWjMbiGd87EQL4WyA8reiJVh92AVla9g==",
- "requires": {
- "@babel/code-frame": "^7.10.4",
- "@babel/generator": "^7.12.1",
- "@babel/helper-module-transforms": "^7.12.1",
- "@babel/helpers": "^7.12.1",
- "@babel/parser": "^7.12.3",
- "@babel/template": "^7.10.4",
- "@babel/traverse": "^7.12.1",
- "@babel/types": "^7.12.1",
- "convert-source-map": "^1.7.0",
- "debug": "^4.1.0",
- "gensync": "^1.0.0-beta.1",
- "json5": "^2.1.2",
- "lodash": "^4.17.19",
- "resolve": "^1.3.2",
- "semver": "^5.4.1",
- "source-map": "^0.5.0"
- },
- "dependencies": {
- "semver": {
- "version": "5.7.1",
- "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz",
- "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ=="
- }
- }
- },
- "@babel/generator": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.12.1.tgz",
- "integrity": "sha512-DB+6rafIdc9o72Yc3/Ph5h+6hUjeOp66pF0naQBgUFFuPqzQwIlPTm3xZR7YNvduIMtkDIj2t21LSQwnbCrXvg==",
- "requires": {
- "@babel/types": "^7.12.1",
- "jsesc": "^2.5.1",
- "source-map": "^0.5.0"
- }
- },
- "@babel/helper-member-expression-to-functions": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.12.1.tgz",
- "integrity": "sha512-k0CIe3tXUKTRSoEx1LQEPFU9vRQfqHtl+kf8eNnDqb4AUJEy5pz6aIiog+YWtVm2jpggjS1laH68bPsR+KWWPQ==",
- "requires": {
- "@babel/types": "^7.12.1"
- }
- },
- "@babel/helper-module-imports": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.12.1.tgz",
- "integrity": "sha512-ZeC1TlMSvikvJNy1v/wPIazCu3NdOwgYZLIkmIyAsGhqkNpiDoQQRmaCK8YP4Pq3GPTLPV9WXaPCJKvx06JxKA==",
- "requires": {
- "@babel/types": "^7.12.1"
- }
- },
- "@babel/helper-module-transforms": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.12.1.tgz",
- "integrity": "sha512-QQzehgFAZ2bbISiCpmVGfiGux8YVFXQ0abBic2Envhej22DVXV9nCFaS5hIQbkyo1AdGb+gNME2TSh3hYJVV/w==",
- "requires": {
- "@babel/helper-module-imports": "^7.12.1",
- "@babel/helper-replace-supers": "^7.12.1",
- "@babel/helper-simple-access": "^7.12.1",
- "@babel/helper-split-export-declaration": "^7.11.0",
- "@babel/helper-validator-identifier": "^7.10.4",
- "@babel/template": "^7.10.4",
- "@babel/traverse": "^7.12.1",
- "@babel/types": "^7.12.1",
- "lodash": "^4.17.19"
- }
- },
- "@babel/helper-replace-supers": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.12.1.tgz",
- "integrity": "sha512-zJjTvtNJnCFsCXVi5rUInstLd/EIVNmIKA1Q9ynESmMBWPWd+7sdR+G4/wdu+Mppfep0XLyG2m7EBPvjCeFyrw==",
- "requires": {
- "@babel/helper-member-expression-to-functions": "^7.12.1",
- "@babel/helper-optimise-call-expression": "^7.10.4",
- "@babel/traverse": "^7.12.1",
- "@babel/types": "^7.12.1"
- }
- },
- "@babel/helper-simple-access": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.12.1.tgz",
- "integrity": "sha512-OxBp7pMrjVewSSC8fXDFrHrBcJATOOFssZwv16F3/6Xtc138GHybBfPbm9kfiqQHKhYQrlamWILwlDCeyMFEaA==",
- "requires": {
- "@babel/types": "^7.12.1"
- }
- },
- "@babel/helpers": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.12.1.tgz",
- "integrity": "sha512-9JoDSBGoWtmbay98efmT2+mySkwjzeFeAL9BuWNoVQpkPFQF8SIIFUfY5os9u8wVzglzoiPRSW7cuJmBDUt43g==",
- "requires": {
- "@babel/template": "^7.10.4",
- "@babel/traverse": "^7.12.1",
- "@babel/types": "^7.12.1"
- }
- },
- "@babel/parser": {
- "version": "7.12.3",
- "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.12.3.tgz",
- "integrity": "sha512-kFsOS0IbsuhO5ojF8Hc8z/8vEIOkylVBrjiZUbLTE3XFe0Qi+uu6HjzQixkFaqr0ZPAMZcBVxEwmsnsLPZ2Xsw=="
- },
- "@babel/traverse": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.12.1.tgz",
- "integrity": "sha512-MA3WPoRt1ZHo2ZmoGKNqi20YnPt0B1S0GTZEPhhd+hw2KGUzBlHuVunj6K4sNuK+reEvyiPwtp0cpaqLzJDmAw==",
+ "@babel/generator": {
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.12.5.tgz",
+ "integrity": "sha512-m16TQQJ8hPt7E+OS/XVQg/7U184MLXtvuGbCdA7na61vha+ImkyyNM/9DDA0unYCVZn3ZOhng+qz48/KBOT96A==",
"requires": {
- "@babel/code-frame": "^7.10.4",
- "@babel/generator": "^7.12.1",
- "@babel/helper-function-name": "^7.10.4",
- "@babel/helper-split-export-declaration": "^7.11.0",
- "@babel/parser": "^7.12.1",
- "@babel/types": "^7.12.1",
- "debug": "^4.1.0",
- "globals": "^11.1.0",
- "lodash": "^4.17.19"
+ "@babel/types": "^7.12.5",
+ "jsesc": "^2.5.1",
+ "source-map": "^0.5.0"
}
},
"@babel/types": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.12.1.tgz",
- "integrity": "sha512-BzSY3NJBKM4kyatSOWh3D/JJ2O3CVzBybHWxtgxnggaxEuaSTTDqeiSb/xk9lrkw2Tbqyivw5ZU4rT+EfznQsA==",
+ "version": "7.12.6",
+ "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.12.6.tgz",
+ "integrity": "sha512-hwyjw6GvjBLiyy3W0YQf0Z5Zf4NpYejUnKFcfcUhZCSffoBBp30w6wP2Wn6pk31jMYZvcOrB/1b7cGXvEoKogA==",
"requires": {
"@babel/helper-validator-identifier": "^7.10.4",
"lodash": "^4.17.19",
"to-fast-properties": "^2.0.0"
}
},
- "@graphql-tools/schema": {
- "version": "6.2.4",
- "resolved": "https://registry.npmjs.org/@graphql-tools/schema/-/schema-6.2.4.tgz",
- "integrity": "sha512-rh+14lSY1q8IPbEv2J9x8UBFJ5NrDX9W5asXEUlPp+7vraLp/Tiox4GXdgyA92JhwpYco3nTf5Bo2JDMt1KnAQ==",
+ "@graphql-tools/utils": {
+ "version": "7.0.2",
+ "resolved": "https://registry.npmjs.org/@graphql-tools/utils/-/utils-7.0.2.tgz",
+ "integrity": "sha512-VQQ7krHeoXO0FS3qbWsb/vZb8c8oyiCYPIH4RSgeK9SKOUpatWYt3DW4jmLmyHZLVVMk0yjUbsOhKTBEMejKSA==",
"requires": {
- "@graphql-tools/utils": "^6.2.4",
+ "@ardatan/aggregate-error": "0.0.6",
+ "camel-case": "4.1.1",
"tslib": "~2.0.1"
}
},
@@ -11403,43 +10215,11 @@
"resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.0.tgz",
"integrity": "sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg=="
},
- "anymatch": {
- "version": "3.1.1",
- "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.1.tgz",
- "integrity": "sha512-mM8522psRCqzV+6LhomX5wgp25YVibjh8Wj23I5RPkPppSVSjyKD2A2mBJmWGa+KN7f2D6LNh9jkBCeyLktzjg==",
- "requires": {
- "normalize-path": "^3.0.0",
- "picomatch": "^2.0.4"
- }
- },
"binary-extensions": {
"version": "2.1.0",
"resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.1.0.tgz",
"integrity": "sha512-1Yj8h9Q+QDF5FzhMs/c9+6UntbD5MkRfRwac8DoEm9ZfUBZ7tZ55YcGVAzEe4bXsdQHEk+s9S5wsOKVdZrw0tQ=="
},
- "braces": {
- "version": "3.0.2",
- "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz",
- "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==",
- "requires": {
- "fill-range": "^7.0.1"
- }
- },
- "chokidar": {
- "version": "3.4.3",
- "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.4.3.tgz",
- "integrity": "sha512-DtM3g7juCXQxFVSNPNByEC2+NImtBuxQQvWlHunpJIS5Ocr0lG306cC7FCi7cEA0fzmybPUIl4txBIobk1gGOQ==",
- "requires": {
- "anymatch": "~3.1.1",
- "braces": "~3.0.2",
- "fsevents": "~2.1.2",
- "glob-parent": "~5.1.0",
- "is-binary-path": "~2.1.0",
- "is-glob": "~4.0.1",
- "normalize-path": "~3.0.0",
- "readdirp": "~3.5.0"
- }
- },
"debug": {
"version": "4.2.0",
"resolved": "https://registry.npmjs.org/debug/-/debug-4.2.0.tgz",
@@ -11448,14 +10228,6 @@
"ms": "2.1.2"
}
},
- "fill-range": {
- "version": "7.0.1",
- "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz",
- "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==",
- "requires": {
- "to-regex-range": "^5.0.1"
- }
- },
"find-up": {
"version": "4.1.0",
"resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz",
@@ -11465,16 +10237,10 @@
"path-exists": "^4.0.0"
}
},
- "fsevents": {
- "version": "2.1.3",
- "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.1.3.tgz",
- "integrity": "sha512-Auw9a4AxqWpa9GUfj370BMPzzyncfBABW8Mab7BGWBYDj4Isgq+cDKtx0i6u9jcX9pQDnswsaaOTgTmA5pEjuQ==",
- "optional": true
- },
"gatsby-core-utils": {
- "version": "1.3.23",
- "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-1.3.23.tgz",
- "integrity": "sha512-H6n6dDeRZ22HAJaBUIt5YjB/BSaE8Jq+kayMUv/YzL1RL2yFZ5lqcLwIL1OE2vWk1mQjMUBZCRxLODU0q1i3bQ==",
+ "version": "1.3.24",
+ "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-1.3.24.tgz",
+ "integrity": "sha512-SlK7rJv/8NBYC8FodYvTINamBHadXNSv//a2uRwh44N1GSSujuCMvtUcpEuAdg9BUQHc54NbbmFuoqf8p85kgA==",
"requires": {
"ci-info": "2.0.0",
"configstore": "^5.0.1",
@@ -11485,14 +10251,6 @@
"xdg-basedir": "^4.0.0"
}
},
- "glob-parent": {
- "version": "5.1.1",
- "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.1.tgz",
- "integrity": "sha512-FnI+VGOpnlGHWZxthPGR+QhR78fuiK0sNLkHQv+bL9fQi57lNNdquIbna/WrfROrolq8GK5Ek6BiMwqL/voRYQ==",
- "requires": {
- "is-glob": "^4.0.1"
- }
- },
"is-binary-path": {
"version": "2.1.0",
"resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz",
@@ -11501,11 +10259,6 @@
"binary-extensions": "^2.0.0"
}
},
- "is-number": {
- "version": "7.0.0",
- "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz",
- "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng=="
- },
"locate-path": {
"version": "5.0.0",
"resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz",
@@ -11540,14 +10293,6 @@
"find-up": "^4.0.0"
}
},
- "readdirp": {
- "version": "3.5.0",
- "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.5.0.tgz",
- "integrity": "sha512-cMhu7c/8rdhkHXWsY+osBhfSy0JikwpHK/5+imo+LpeasTF8ouErHrlYkwT0++njiyuDvc7OFY5T3ukvZ8qmFQ==",
- "requires": {
- "picomatch": "^2.2.1"
- }
- },
"resolve-from": {
"version": "5.0.0",
"resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz",
@@ -11566,14 +10311,6 @@
"ansi-regex": "^5.0.0"
}
},
- "to-regex-range": {
- "version": "5.0.1",
- "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz",
- "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==",
- "requires": {
- "is-number": "^7.0.0"
- }
- },
"tslib": {
"version": "2.0.3",
"resolved": "https://registry.npmjs.org/tslib/-/tslib-2.0.3.tgz",
@@ -11881,9 +10618,9 @@
}
},
"gatsby-telemetry": {
- "version": "1.3.39",
- "resolved": "https://registry.npmjs.org/gatsby-telemetry/-/gatsby-telemetry-1.3.39.tgz",
- "integrity": "sha512-25LDAc0+0LDjHTOSIHLT6iJk/zOLLWSttZ0IQNho5fhLdWJ3hQrCWKx8YiVLPPNwnImei6/1FxQlGKUPVAOrRA==",
+ "version": "1.3.40",
+ "resolved": "https://registry.npmjs.org/gatsby-telemetry/-/gatsby-telemetry-1.3.40.tgz",
+ "integrity": "sha512-BfKuSOe9Q2kCrATypvSXGwfffffLG483mP6j7tJy3iUYgnteRcLLP4YbBV3HG7pqW0SQk+JP5iIlsT7VtSZOXw==",
"requires": {
"@babel/code-frame": "^7.10.4",
"@babel/runtime": "^7.11.2",
@@ -11894,7 +10631,7 @@
"configstore": "^5.0.1",
"envinfo": "^7.7.3",
"fs-extra": "^8.1.0",
- "gatsby-core-utils": "^1.3.23",
+ "gatsby-core-utils": "^1.3.24",
"git-up": "^4.0.2",
"is-docker": "^2.1.1",
"lodash": "^4.17.20",
@@ -11903,17 +10640,17 @@
},
"dependencies": {
"@babel/runtime": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.1.tgz",
- "integrity": "sha512-J5AIf3vPj3UwXaAzb5j1xM4WAQDX3EMgemF8rjCP3SoW09LfRKAXQKt6CoVYl230P6iWdRcBbnLDDdnqWxZSCA==",
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.5.tgz",
+ "integrity": "sha512-plcc+hbExy3McchJCEQG3knOsuh3HH+Prx1P6cLIkET/0dLuQDEnrT+s27Axgc9bqfsmNUNHfscgMUdBpC9xfg==",
"requires": {
"regenerator-runtime": "^0.13.4"
}
},
"gatsby-core-utils": {
- "version": "1.3.23",
- "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-1.3.23.tgz",
- "integrity": "sha512-H6n6dDeRZ22HAJaBUIt5YjB/BSaE8Jq+kayMUv/YzL1RL2yFZ5lqcLwIL1OE2vWk1mQjMUBZCRxLODU0q1i3bQ==",
+ "version": "1.3.24",
+ "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-1.3.24.tgz",
+ "integrity": "sha512-SlK7rJv/8NBYC8FodYvTINamBHadXNSv//a2uRwh44N1GSSujuCMvtUcpEuAdg9BUQHc54NbbmFuoqf8p85kgA==",
"requires": {
"ci-info": "2.0.0",
"configstore": "^5.0.1",
@@ -12370,10 +11107,11 @@
}
},
"graphql-config": {
- "version": "3.0.3",
- "resolved": "https://registry.npmjs.org/graphql-config/-/graphql-config-3.0.3.tgz",
- "integrity": "sha512-MBY0wEjvcgJtZUyoqpPvOE1e5qPI0hJaa1gKTqjonSFiCsNHX2lykNjpOPcodmAgH1V06ELxhGnm9kcVzqvi/g==",
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/graphql-config/-/graphql-config-3.1.0.tgz",
+ "integrity": "sha512-tOjgUqB6W+vIzGRn20LogMujoRTAsdwO1gGg6l3SF3xaUjI9/uaCpvy3kJHbZcRiRuOTocmysdBU+hOs3Npx6Q==",
"requires": {
+ "@endemolshinegroup/cosmiconfig-typescript-loader": "3.0.2",
"@graphql-tools/graphql-file-loader": "^6.0.0",
"@graphql-tools/json-file-loader": "^6.0.0",
"@graphql-tools/load": "^6.0.0",
@@ -12381,6 +11119,7 @@
"@graphql-tools/url-loader": "^6.0.0",
"@graphql-tools/utils": "^6.0.0",
"cosmiconfig": "6.0.0",
+ "cosmiconfig-toml-loader": "1.0.0",
"minimatch": "3.0.4",
"string-env-interpolation": "1.0.1",
"tslib": "^2.0.0"
@@ -12902,6 +11641,28 @@
"is-glob": "^4.0.0",
"lodash": "^4.17.11",
"micromatch": "^3.1.10"
+ },
+ "dependencies": {
+ "micromatch": {
+ "version": "3.1.10",
+ "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz",
+ "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==",
+ "requires": {
+ "arr-diff": "^4.0.0",
+ "array-unique": "^0.3.2",
+ "braces": "^2.3.1",
+ "define-property": "^2.0.2",
+ "extend-shallow": "^3.0.2",
+ "extglob": "^2.0.4",
+ "fragment-cache": "^0.2.1",
+ "kind-of": "^6.0.2",
+ "nanomatch": "^1.2.9",
+ "object.pick": "^1.3.0",
+ "regex-not": "^1.0.0",
+ "snapdragon": "^0.8.1",
+ "to-regex": "^3.0.2"
+ }
+ }
}
},
"http-signature": {
@@ -13422,9 +12183,9 @@
}
},
"is-core-module": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.0.0.tgz",
- "integrity": "sha512-jq1AH6C8MuteOoBPwkxHafmByhL9j5q4OaPGdbuD+ZtQJVzH+i6E3BJDQcBA09k57i2Hh2yQbEG8yObZ0jdlWw==",
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.1.0.tgz",
+ "integrity": "sha512-YcV7BgVMRFRua2FqQzKtTDMz8iCuLEyGKjr70q8Zm1yy2qKcurbFEd79PAdHV77oL3NrAaOVQIbMmiHQCHB7ZA==",
"requires": {
"has": "^1.0.3"
}
@@ -14362,6 +13123,11 @@
"resolved": "https://registry.npmjs.org/lodash.foreach/-/lodash.foreach-4.5.0.tgz",
"integrity": "sha1-Gmo16s5AEoDH8G3d7DUWWrJ+PlM="
},
+ "lodash.get": {
+ "version": "4.4.2",
+ "resolved": "https://registry.npmjs.org/lodash.get/-/lodash.get-4.4.2.tgz",
+ "integrity": "sha1-LRd/ZS+jHpObRDjVNBSZ36OCXpk="
+ },
"lodash.map": {
"version": "4.6.0",
"resolved": "https://registry.npmjs.org/lodash.map/-/lodash.map-4.6.0.tgz",
@@ -14536,6 +13302,11 @@
"semver": "^5.6.0"
}
},
+ "make-error": {
+ "version": "1.3.6",
+ "resolved": "https://registry.npmjs.org/make-error/-/make-error-1.3.6.tgz",
+ "integrity": "sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw=="
+ },
"map-cache": {
"version": "0.2.2",
"resolved": "https://registry.npmjs.org/map-cache/-/map-cache-0.2.2.tgz",
@@ -14842,23 +13613,43 @@
"integrity": "sha1-VSmk1nZUE07cxSZmVoNbD4Ua/O4="
},
"micromatch": {
- "version": "3.1.10",
- "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz",
- "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==",
+ "version": "4.0.2",
+ "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.2.tgz",
+ "integrity": "sha512-y7FpHSbMUMoyPbYUSzO6PaZ6FyRnQOpHuKwbo1G+Knck95XVU4QAiKdGEnj5wwoS7PlOgthX/09u5iFJ+aYf5Q==",
"requires": {
- "arr-diff": "^4.0.0",
- "array-unique": "^0.3.2",
- "braces": "^2.3.1",
- "define-property": "^2.0.2",
- "extend-shallow": "^3.0.2",
- "extglob": "^2.0.4",
- "fragment-cache": "^0.2.1",
- "kind-of": "^6.0.2",
- "nanomatch": "^1.2.9",
- "object.pick": "^1.3.0",
- "regex-not": "^1.0.0",
- "snapdragon": "^0.8.1",
- "to-regex": "^3.0.2"
+ "braces": "^3.0.1",
+ "picomatch": "^2.0.5"
+ },
+ "dependencies": {
+ "braces": {
+ "version": "3.0.2",
+ "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz",
+ "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==",
+ "requires": {
+ "fill-range": "^7.0.1"
+ }
+ },
+ "fill-range": {
+ "version": "7.0.1",
+ "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz",
+ "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==",
+ "requires": {
+ "to-regex-range": "^5.0.1"
+ }
+ },
+ "is-number": {
+ "version": "7.0.0",
+ "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz",
+ "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng=="
+ },
+ "to-regex-range": {
+ "version": "5.0.1",
+ "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz",
+ "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==",
+ "requires": {
+ "is-number": "^7.0.0"
+ }
+ }
}
},
"miller-rabin": {
@@ -17283,9 +16074,9 @@
"integrity": "sha512-VCdBRNFTX1fyE7Nb6FYoURo/SPe62QCaAyzJvUjwRaIsc+NePBEniHlvxFmmX56+HZphIGtV0XeCirBtpDrTyQ=="
},
"query-string": {
- "version": "6.13.1",
- "resolved": "https://registry.npmjs.org/query-string/-/query-string-6.13.1.tgz",
- "integrity": "sha512-RfoButmcK+yCta1+FuU8REvisx1oEzhMKwhLUNcepQTPGcNMp1sIqjnfCtfnvGSQZQEhaBHvccujtWoUV3TTbA==",
+ "version": "6.13.6",
+ "resolved": "https://registry.npmjs.org/query-string/-/query-string-6.13.6.tgz",
+ "integrity": "sha512-/WWZ7d9na6s2wMEGdVCVgKWE9Rt7nYyNIf7k8xmHXcesPMlEzicWo3lbYwHyA4wBktI2KrXxxZeACLbE84hvSQ==",
"requires": {
"decode-uri-component": "^0.2.0",
"split-on-first": "^1.0.0",
@@ -17785,6 +16576,28 @@
"graceful-fs": "^4.1.11",
"micromatch": "^3.1.10",
"readable-stream": "^2.0.2"
+ },
+ "dependencies": {
+ "micromatch": {
+ "version": "3.1.10",
+ "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz",
+ "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==",
+ "requires": {
+ "arr-diff": "^4.0.0",
+ "array-unique": "^0.3.2",
+ "braces": "^2.3.1",
+ "define-property": "^2.0.2",
+ "extend-shallow": "^3.0.2",
+ "extglob": "^2.0.4",
+ "fragment-cache": "^0.2.1",
+ "kind-of": "^6.0.2",
+ "nanomatch": "^1.2.9",
+ "object.pick": "^1.3.0",
+ "regex-not": "^1.0.0",
+ "snapdragon": "^0.8.1",
+ "to-regex": "^3.0.2"
+ }
+ }
}
},
"recursive-readdir": {
@@ -20173,6 +18986,26 @@
"resolved": "https://registry.npmjs.org/symbol-observable/-/symbol-observable-1.2.0.tgz",
"integrity": "sha512-e900nM8RRtGhlV36KGEU9k65K3mPb1WV70OdjfxlG2EAuM1noi/E/BaW/uMhL7bPEssK8QV57vN3esixjUvcXQ=="
},
+ "sync-fetch": {
+ "version": "0.3.0",
+ "resolved": "https://registry.npmjs.org/sync-fetch/-/sync-fetch-0.3.0.tgz",
+ "integrity": "sha512-dJp4qg+x4JwSEW1HibAuMi0IIrBI3wuQr2GimmqB7OXR50wmwzfdusG+p39R9w3R6aFtZ2mzvxvWKQ3Bd/vx3g==",
+ "requires": {
+ "buffer": "^5.7.0",
+ "node-fetch": "^2.6.1"
+ },
+ "dependencies": {
+ "buffer": {
+ "version": "5.7.1",
+ "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz",
+ "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==",
+ "requires": {
+ "base64-js": "^1.3.1",
+ "ieee754": "^1.1.13"
+ }
+ }
+ }
+ },
"table": {
"version": "5.4.6",
"resolved": "https://registry.npmjs.org/table/-/table-5.4.6.tgz",
@@ -20594,6 +19427,18 @@
"resolved": "https://registry.npmjs.org/true-case-path/-/true-case-path-2.2.1.tgz",
"integrity": "sha512-0z3j8R7MCjy10kc/g+qg7Ln3alJTodw9aDuVWZa3uiWqfuBMKeAeP2ocWcxoyM3D73yz3Jt/Pu4qPr4wHSdB/Q=="
},
+ "ts-node": {
+ "version": "9.0.0",
+ "resolved": "https://registry.npmjs.org/ts-node/-/ts-node-9.0.0.tgz",
+ "integrity": "sha512-/TqB4SnererCDR/vb4S/QvSZvzQMJN8daAslg7MeaiHvD8rDZsSfXmNeNumyZZzMned72Xoq/isQljYSt8Ynfg==",
+ "requires": {
+ "arg": "^4.1.0",
+ "diff": "^4.0.1",
+ "make-error": "^1.1.1",
+ "source-map-support": "^0.5.17",
+ "yn": "3.1.1"
+ }
+ },
"ts-pnp": {
"version": "1.2.0",
"resolved": "https://registry.npmjs.org/ts-pnp/-/ts-pnp-1.2.0.tgz",
@@ -21309,106 +20154,6 @@
"graceful-fs": "^4.1.2",
"neo-async": "^2.5.0",
"watchpack-chokidar2": "^2.0.0"
- },
- "dependencies": {
- "anymatch": {
- "version": "3.1.1",
- "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.1.tgz",
- "integrity": "sha512-mM8522psRCqzV+6LhomX5wgp25YVibjh8Wj23I5RPkPppSVSjyKD2A2mBJmWGa+KN7f2D6LNh9jkBCeyLktzjg==",
- "optional": true,
- "requires": {
- "normalize-path": "^3.0.0",
- "picomatch": "^2.0.4"
- }
- },
- "binary-extensions": {
- "version": "2.1.0",
- "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.1.0.tgz",
- "integrity": "sha512-1Yj8h9Q+QDF5FzhMs/c9+6UntbD5MkRfRwac8DoEm9ZfUBZ7tZ55YcGVAzEe4bXsdQHEk+s9S5wsOKVdZrw0tQ==",
- "optional": true
- },
- "braces": {
- "version": "3.0.2",
- "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz",
- "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==",
- "optional": true,
- "requires": {
- "fill-range": "^7.0.1"
- }
- },
- "chokidar": {
- "version": "3.4.3",
- "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.4.3.tgz",
- "integrity": "sha512-DtM3g7juCXQxFVSNPNByEC2+NImtBuxQQvWlHunpJIS5Ocr0lG306cC7FCi7cEA0fzmybPUIl4txBIobk1gGOQ==",
- "optional": true,
- "requires": {
- "anymatch": "~3.1.1",
- "braces": "~3.0.2",
- "fsevents": "~2.1.2",
- "glob-parent": "~5.1.0",
- "is-binary-path": "~2.1.0",
- "is-glob": "~4.0.1",
- "normalize-path": "~3.0.0",
- "readdirp": "~3.5.0"
- }
- },
- "fill-range": {
- "version": "7.0.1",
- "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz",
- "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==",
- "optional": true,
- "requires": {
- "to-regex-range": "^5.0.1"
- }
- },
- "fsevents": {
- "version": "2.1.3",
- "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.1.3.tgz",
- "integrity": "sha512-Auw9a4AxqWpa9GUfj370BMPzzyncfBABW8Mab7BGWBYDj4Isgq+cDKtx0i6u9jcX9pQDnswsaaOTgTmA5pEjuQ==",
- "optional": true
- },
- "glob-parent": {
- "version": "5.1.1",
- "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.1.tgz",
- "integrity": "sha512-FnI+VGOpnlGHWZxthPGR+QhR78fuiK0sNLkHQv+bL9fQi57lNNdquIbna/WrfROrolq8GK5Ek6BiMwqL/voRYQ==",
- "optional": true,
- "requires": {
- "is-glob": "^4.0.1"
- }
- },
- "is-binary-path": {
- "version": "2.1.0",
- "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz",
- "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==",
- "optional": true,
- "requires": {
- "binary-extensions": "^2.0.0"
- }
- },
- "is-number": {
- "version": "7.0.0",
- "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz",
- "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==",
- "optional": true
- },
- "readdirp": {
- "version": "3.5.0",
- "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.5.0.tgz",
- "integrity": "sha512-cMhu7c/8rdhkHXWsY+osBhfSy0JikwpHK/5+imo+LpeasTF8ouErHrlYkwT0++njiyuDvc7OFY5T3ukvZ8qmFQ==",
- "optional": true,
- "requires": {
- "picomatch": "^2.2.1"
- }
- },
- "to-regex-range": {
- "version": "5.0.1",
- "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz",
- "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==",
- "optional": true,
- "requires": {
- "is-number": "^7.0.0"
- }
- }
}
},
"watchpack-chokidar2": {
@@ -21544,6 +20289,26 @@
"yallist": "^3.0.2"
}
},
+ "micromatch": {
+ "version": "3.1.10",
+ "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz",
+ "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==",
+ "requires": {
+ "arr-diff": "^4.0.0",
+ "array-unique": "^0.3.2",
+ "braces": "^2.3.1",
+ "define-property": "^2.0.2",
+ "extend-shallow": "^3.0.2",
+ "extglob": "^2.0.4",
+ "fragment-cache": "^0.2.1",
+ "kind-of": "^6.0.2",
+ "nanomatch": "^1.2.9",
+ "object.pick": "^1.3.0",
+ "regex-not": "^1.0.0",
+ "snapdragon": "^0.8.1",
+ "to-regex": "^3.0.2"
+ }
+ },
"rimraf": {
"version": "2.7.1",
"resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz",
@@ -22255,9 +21020,9 @@
}
},
"xstate": {
- "version": "4.11.0",
- "resolved": "https://registry.npmjs.org/xstate/-/xstate-4.11.0.tgz",
- "integrity": "sha512-v+S3jF2YrM2tFOit8o7+4N3FuFd9IIGcIKHyfHeeNjMlmNmwuiv/IbY9uw7ECifx7H/A9aGLcxPSr0jdjTGDww=="
+ "version": "4.13.0",
+ "resolved": "https://registry.npmjs.org/xstate/-/xstate-4.13.0.tgz",
+ "integrity": "sha512-UnUJJzP2KTPqnmxIoD/ymXtpy/hehZnUlO6EXqWC/72XkPb15p9Oz/X4WhS3QE+by7NP+6b5bCi/GTGFzm5D+A=="
},
"xtend": {
"version": "4.0.2",
@@ -22394,6 +21159,11 @@
"resolved": "https://registry.npmjs.org/yeast/-/yeast-0.1.2.tgz",
"integrity": "sha1-AI4G2AlDIMNy28L47XagymyKxBk="
},
+ "yn": {
+ "version": "3.1.1",
+ "resolved": "https://registry.npmjs.org/yn/-/yn-3.1.1.tgz",
+ "integrity": "sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q=="
+ },
"yoga-layout-prebuilt": {
"version": "1.10.0",
"resolved": "https://registry.npmjs.org/yoga-layout-prebuilt/-/yoga-layout-prebuilt-1.10.0.tgz",
diff --git a/starters/gatsby-starter-blog-theme-core/package.json b/starters/gatsby-starter-blog-theme-core/package.json
index 15dce89441a3c..ba53154cbfaf5 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.19",
- "gatsby": "^2.25.1",
+ "gatsby": "^2.25.2",
"gatsby-theme-blog-core": "^2.0.2",
"react": "^16.12.0",
"react-dom": "^16.12.0"
diff --git a/starters/gatsby-starter-blog-theme/package-lock.json b/starters/gatsby-starter-blog-theme/package-lock.json
index a22fbd30d819a..dcc58c88c9c98 100644
--- a/starters/gatsby-starter-blog-theme/package-lock.json
+++ b/starters/gatsby-starter-blog-theme/package-lock.json
@@ -1017,17 +1017,17 @@
},
"dependencies": {
"@babel/helper-module-imports": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.12.1.tgz",
- "integrity": "sha512-ZeC1TlMSvikvJNy1v/wPIazCu3NdOwgYZLIkmIyAsGhqkNpiDoQQRmaCK8YP4Pq3GPTLPV9WXaPCJKvx06JxKA==",
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.12.5.tgz",
+ "integrity": "sha512-SR713Ogqg6++uexFRORf/+nPXMmWIn80TALu0uaFb+iQIUoR7bOC7zBWyzBs5b3tBBJXuyD0cRu1F15GyzjOWA==",
"requires": {
- "@babel/types": "^7.12.1"
+ "@babel/types": "^7.12.5"
}
},
"@babel/types": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.12.1.tgz",
- "integrity": "sha512-BzSY3NJBKM4kyatSOWh3D/JJ2O3CVzBybHWxtgxnggaxEuaSTTDqeiSb/xk9lrkw2Tbqyivw5ZU4rT+EfznQsA==",
+ "version": "7.12.6",
+ "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.12.6.tgz",
+ "integrity": "sha512-hwyjw6GvjBLiyy3W0YQf0Z5Zf4NpYejUnKFcfcUhZCSffoBBp30w6wP2Wn6pk31jMYZvcOrB/1b7cGXvEoKogA==",
"requires": {
"@babel/helper-validator-identifier": "^7.10.4",
"lodash": "^4.17.19",
@@ -1100,11 +1100,11 @@
},
"dependencies": {
"@babel/generator": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.12.1.tgz",
- "integrity": "sha512-DB+6rafIdc9o72Yc3/Ph5h+6hUjeOp66pF0naQBgUFFuPqzQwIlPTm3xZR7YNvduIMtkDIj2t21LSQwnbCrXvg==",
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.12.5.tgz",
+ "integrity": "sha512-m16TQQJ8hPt7E+OS/XVQg/7U184MLXtvuGbCdA7na61vha+ImkyyNM/9DDA0unYCVZn3ZOhng+qz48/KBOT96A==",
"requires": {
- "@babel/types": "^7.12.1",
+ "@babel/types": "^7.12.5",
"jsesc": "^2.5.1",
"source-map": "^0.5.0"
}
@@ -1130,41 +1130,41 @@
}
},
"@babel/helper-replace-supers": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.12.1.tgz",
- "integrity": "sha512-zJjTvtNJnCFsCXVi5rUInstLd/EIVNmIKA1Q9ynESmMBWPWd+7sdR+G4/wdu+Mppfep0XLyG2m7EBPvjCeFyrw==",
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.12.5.tgz",
+ "integrity": "sha512-5YILoed0ZyIpF4gKcpZitEnXEJ9UoDRki1Ey6xz46rxOzfNMAhVIJMoune1hmPVxh40LRv1+oafz7UsWX+vyWA==",
"requires": {
"@babel/helper-member-expression-to-functions": "^7.12.1",
"@babel/helper-optimise-call-expression": "^7.10.4",
- "@babel/traverse": "^7.12.1",
- "@babel/types": "^7.12.1"
+ "@babel/traverse": "^7.12.5",
+ "@babel/types": "^7.12.5"
}
},
"@babel/parser": {
- "version": "7.12.3",
- "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.12.3.tgz",
- "integrity": "sha512-kFsOS0IbsuhO5ojF8Hc8z/8vEIOkylVBrjiZUbLTE3XFe0Qi+uu6HjzQixkFaqr0ZPAMZcBVxEwmsnsLPZ2Xsw=="
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.12.5.tgz",
+ "integrity": "sha512-FVM6RZQ0mn2KCf1VUED7KepYeUWoVShczewOCfm3nzoBybaih51h+sYVVGthW9M6lPByEPTQf+xm27PBdlpwmQ=="
},
"@babel/traverse": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.12.1.tgz",
- "integrity": "sha512-MA3WPoRt1ZHo2ZmoGKNqi20YnPt0B1S0GTZEPhhd+hw2KGUzBlHuVunj6K4sNuK+reEvyiPwtp0cpaqLzJDmAw==",
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.12.5.tgz",
+ "integrity": "sha512-xa15FbQnias7z9a62LwYAA5SZZPkHIXpd42C6uW68o8uTuua96FHZy1y61Va5P/i83FAAcMpW8+A/QayntzuqA==",
"requires": {
"@babel/code-frame": "^7.10.4",
- "@babel/generator": "^7.12.1",
+ "@babel/generator": "^7.12.5",
"@babel/helper-function-name": "^7.10.4",
"@babel/helper-split-export-declaration": "^7.11.0",
- "@babel/parser": "^7.12.1",
- "@babel/types": "^7.12.1",
+ "@babel/parser": "^7.12.5",
+ "@babel/types": "^7.12.5",
"debug": "^4.1.0",
"globals": "^11.1.0",
"lodash": "^4.17.19"
}
},
"@babel/types": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.12.1.tgz",
- "integrity": "sha512-BzSY3NJBKM4kyatSOWh3D/JJ2O3CVzBybHWxtgxnggaxEuaSTTDqeiSb/xk9lrkw2Tbqyivw5ZU4rT+EfznQsA==",
+ "version": "7.12.6",
+ "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.12.6.tgz",
+ "integrity": "sha512-hwyjw6GvjBLiyy3W0YQf0Z5Zf4NpYejUnKFcfcUhZCSffoBBp30w6wP2Wn6pk31jMYZvcOrB/1b7cGXvEoKogA==",
"requires": {
"@babel/helper-validator-identifier": "^7.10.4",
"lodash": "^4.17.19",
@@ -1344,18 +1344,18 @@
}
},
"@babel/runtime-corejs3": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/runtime-corejs3/-/runtime-corejs3-7.12.1.tgz",
- "integrity": "sha512-umhPIcMrlBZ2aTWlWjUseW9LjQKxi1dpFlQS8DzsxB//5K+u6GLTC/JliPKHsd5kJVPIU6X/Hy0YvWOYPcMxBw==",
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/runtime-corejs3/-/runtime-corejs3-7.12.5.tgz",
+ "integrity": "sha512-roGr54CsTmNPPzZoCP1AmDXuBoNao7tnSA83TXTwt+UK5QVyh1DIJnrgYRPWKCF2flqZQXwa7Yr8v7VmLzF0YQ==",
"requires": {
"core-js-pure": "^3.0.0",
"regenerator-runtime": "^0.13.4"
}
},
"@babel/standalone": {
- "version": "7.12.4",
- "resolved": "https://registry.npmjs.org/@babel/standalone/-/standalone-7.12.4.tgz",
- "integrity": "sha512-9vw7RYK7CWh5MdTfLyC7j6hZmDYmm6DieFP4yetvpVftKQ+yrEY7ovhnhsVHznLqx5luU9Bx4k7xoEc3acrsow=="
+ "version": "7.12.6",
+ "resolved": "https://registry.npmjs.org/@babel/standalone/-/standalone-7.12.6.tgz",
+ "integrity": "sha512-yA/OV3jN1nhr0JsAdYWAqbeZ7cAOw/6Fh52rxVMzujr0HF4Z3cau0JBzJfQppFfR9IArrUtcqhBu/+Q/IevoyQ=="
},
"@babel/template": {
"version": "7.10.4",
@@ -1546,6 +1546,24 @@
"resolved": "https://registry.npmjs.org/@emotion/weak-memoize/-/weak-memoize-0.2.5.tgz",
"integrity": "sha512-6U71C2Wp7r5XtFtQzYrW5iKFT67OixrSxjI4MptCHzdSVlgabczzqLe0ZSgnub/5Kp4hSbpDB1tMytZY9pwxxA=="
},
+ "@endemolshinegroup/cosmiconfig-typescript-loader": {
+ "version": "3.0.2",
+ "resolved": "https://registry.npmjs.org/@endemolshinegroup/cosmiconfig-typescript-loader/-/cosmiconfig-typescript-loader-3.0.2.tgz",
+ "integrity": "sha512-QRVtqJuS1mcT56oHpVegkKBlgtWjXw/gHNWO3eL9oyB5Sc7HBoc2OLG/nYpVfT/Jejvo3NUrD0Udk7XgoyDKkA==",
+ "requires": {
+ "lodash.get": "^4",
+ "make-error": "^1",
+ "ts-node": "^9",
+ "tslib": "^2"
+ },
+ "dependencies": {
+ "tslib": {
+ "version": "2.0.3",
+ "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.0.3.tgz",
+ "integrity": "sha512-uZtkfKblCEQtZKBF6EBXVZeQNl82yqtDQdv+eck8u7tdPxjLu2/lp5/uPW+um2tpuxINHWy3GhiccY7QgEaVHQ=="
+ }
+ }
+ },
"@graphql-tools/batch-execute": {
"version": "7.0.0",
"resolved": "https://registry.npmjs.org/@graphql-tools/batch-execute/-/batch-execute-7.0.0.tgz",
@@ -1580,9 +1598,9 @@
}
},
"@graphql-tools/delegate": {
- "version": "7.0.3",
- "resolved": "https://registry.npmjs.org/@graphql-tools/delegate/-/delegate-7.0.3.tgz",
- "integrity": "sha512-BSRF/Wg9XNllWo3Kdt0QBBaFltexn3vAnTOWH1qLrNcmfQAvUMf17/TsAqH9ZLSKU1NW9XCOsd7YMHhhUuTCEg==",
+ "version": "7.0.4",
+ "resolved": "https://registry.npmjs.org/@graphql-tools/delegate/-/delegate-7.0.4.tgz",
+ "integrity": "sha512-6/qL9V31FgECNPwc5As1359hpsAt4ASWsiYBSYWL+Iq9/K0YRcNeEmSseXIyCP4oh8k/9HS/w/m2lkMk/YSUpQ==",
"requires": {
"@ardatan/aggregate-error": "0.0.6",
"@graphql-tools/batch-execute": "^7.0.0",
@@ -1896,9 +1914,9 @@
}
},
"@graphql-tools/url-loader": {
- "version": "6.3.2",
- "resolved": "https://registry.npmjs.org/@graphql-tools/url-loader/-/url-loader-6.3.2.tgz",
- "integrity": "sha512-nrrZD33T7lFeOjIufCrwk2PAHYqFtdFcb1pe1ULWnvuFmFuhZnRCgIsfCsoy+WOMwmZHQ/eXBem//I/bewXlgw==",
+ "version": "6.4.0",
+ "resolved": "https://registry.npmjs.org/@graphql-tools/url-loader/-/url-loader-6.4.0.tgz",
+ "integrity": "sha512-M3mS/VH6vpnai3b3Fa33kYcdCgZvhFh7RqFE1R3NMfhYjphQ10EWwgf31P+VQcBNB2zz+ubxttI6UcJLiGqwuQ==",
"requires": {
"@graphql-tools/delegate": "^7.0.1",
"@graphql-tools/utils": "^7.0.1",
@@ -1906,6 +1924,7 @@
"@types/websocket": "1.0.1",
"cross-fetch": "3.0.6",
"subscriptions-transport-ws": "0.9.18",
+ "sync-fetch": "0.3.0",
"tslib": "~2.0.1",
"valid-url": "1.0.9",
"websocket": "1.0.32"
@@ -2008,6 +2027,11 @@
"@hapi/hoek": "^8.3.0"
}
},
+ "@iarna/toml": {
+ "version": "2.2.5",
+ "resolved": "https://registry.npmjs.org/@iarna/toml/-/toml-2.2.5.tgz",
+ "integrity": "sha512-trnsAYxU3xnS1gPHPyU961coFyLkh4gAD/0zQ5mymY4yOZ+CYvsPqUbOFSw0aDM4y0tV7tiFxL/1XfXPNC6IPg=="
+ },
"@jest/types": {
"version": "25.5.0",
"resolved": "https://registry.npmjs.org/@jest/types/-/types-25.5.0.tgz",
@@ -3485,6 +3509,11 @@
"readable-stream": "^2.0.6"
}
},
+ "arg": {
+ "version": "4.1.3",
+ "resolved": "https://registry.npmjs.org/arg/-/arg-4.1.3.tgz",
+ "integrity": "sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA=="
+ },
"argparse": {
"version": "1.0.10",
"resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz",
@@ -4000,9 +4029,9 @@
"integrity": "sha512-eqj0hVcJUR57/Ug2zE1Yswsw4LhuqqHhD+8v120T1cl3kjg76QwtyBrdIk4WVwK+lAhBJVYCd/v+4nc4y+8JsA=="
},
"babel-preset-gatsby": {
- "version": "0.5.15",
- "resolved": "https://registry.npmjs.org/babel-preset-gatsby/-/babel-preset-gatsby-0.5.15.tgz",
- "integrity": "sha512-0eno/GAvzmaLW/s+RzsLXrZVQwBMZYU/zMv1HpArGlYbNCon/fK53/Bz3pklJDq1pNAybXQ2RROpPHDyJM2EGA==",
+ "version": "0.5.16",
+ "resolved": "https://registry.npmjs.org/babel-preset-gatsby/-/babel-preset-gatsby-0.5.16.tgz",
+ "integrity": "sha512-zcUYvHRnDxwQmzJnkWtHk4x7cGaMbQjTJIKrvCWpS9u10hQOQUNAz/ZKSH1vUmB4oYap6m+sHDoDIr7PNoCAEQ==",
"requires": {
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.10.4",
@@ -4016,22 +4045,22 @@
"babel-plugin-dynamic-import-node": "^2.3.3",
"babel-plugin-macros": "^2.8.0",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
- "gatsby-core-utils": "^1.3.23",
+ "gatsby-core-utils": "^1.3.24",
"gatsby-legacy-polyfills": "^0.0.6"
},
"dependencies": {
"@babel/runtime": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.1.tgz",
- "integrity": "sha512-J5AIf3vPj3UwXaAzb5j1xM4WAQDX3EMgemF8rjCP3SoW09LfRKAXQKt6CoVYl230P6iWdRcBbnLDDdnqWxZSCA==",
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.5.tgz",
+ "integrity": "sha512-plcc+hbExy3McchJCEQG3knOsuh3HH+Prx1P6cLIkET/0dLuQDEnrT+s27Axgc9bqfsmNUNHfscgMUdBpC9xfg==",
"requires": {
"regenerator-runtime": "^0.13.4"
}
},
"gatsby-core-utils": {
- "version": "1.3.23",
- "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-1.3.23.tgz",
- "integrity": "sha512-H6n6dDeRZ22HAJaBUIt5YjB/BSaE8Jq+kayMUv/YzL1RL2yFZ5lqcLwIL1OE2vWk1mQjMUBZCRxLODU0q1i3bQ==",
+ "version": "1.3.24",
+ "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-1.3.24.tgz",
+ "integrity": "sha512-SlK7rJv/8NBYC8FodYvTINamBHadXNSv//a2uRwh44N1GSSujuCMvtUcpEuAdg9BUQHc54NbbmFuoqf8p85kgA==",
"requires": {
"ci-info": "2.0.0",
"configstore": "^5.0.1",
@@ -5969,6 +5998,14 @@
"yaml": "^1.7.2"
}
},
+ "cosmiconfig-toml-loader": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/cosmiconfig-toml-loader/-/cosmiconfig-toml-loader-1.0.0.tgz",
+ "integrity": "sha512-H/2gurFWVi7xXvCyvsWRLCMekl4tITJcX0QEsDMpzxtuxDyM59xLatYNg4s/k9AA/HdtCYfj2su8mgA0GSDLDA==",
+ "requires": {
+ "@iarna/toml": "^2.2.5"
+ }
+ },
"create-ecdh": {
"version": "4.0.4",
"resolved": "https://registry.npmjs.org/create-ecdh/-/create-ecdh-4.0.4.tgz",
@@ -6820,6 +6857,11 @@
}
}
},
+ "diff": {
+ "version": "4.0.2",
+ "resolved": "https://registry.npmjs.org/diff/-/diff-4.0.2.tgz",
+ "integrity": "sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A=="
+ },
"diff-sequences": {
"version": "25.2.6",
"resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-25.2.6.tgz",
@@ -7722,9 +7764,9 @@
},
"dependencies": {
"@babel/runtime": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.1.tgz",
- "integrity": "sha512-J5AIf3vPj3UwXaAzb5j1xM4WAQDX3EMgemF8rjCP3SoW09LfRKAXQKt6CoVYl230P6iWdRcBbnLDDdnqWxZSCA==",
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.5.tgz",
+ "integrity": "sha512-plcc+hbExy3McchJCEQG3knOsuh3HH+Prx1P6cLIkET/0dLuQDEnrT+s27Axgc9bqfsmNUNHfscgMUdBpC9xfg==",
"requires": {
"regenerator-runtime": "^0.13.4"
}
@@ -8756,9 +8798,9 @@
"integrity": "sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc="
},
"gatsby": {
- "version": "2.25.1",
- "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-2.25.1.tgz",
- "integrity": "sha512-2MLGL0MooLGmGQhSjIjq+mH95lE3PbrtZ8xgcmN1JOsjR/dJ+Fx/BoZC3CdqPku/zflMNlCb99vuB2HQaXiRdg==",
+ "version": "2.25.2",
+ "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-2.25.2.tgz",
+ "integrity": "sha512-zssz6mH5vpScGq9SCDtkfajJkYVYJ+00x5JRVf9pYlVTRdv+g7jbKTuGdaWKbPoacEtXw3bUaTURUC2YMs/Gmg==",
"requires": {
"@babel/code-frame": "^7.10.4",
"@babel/core": "^7.11.6",
@@ -8785,7 +8827,7 @@
"babel-plugin-dynamic-import-node": "^2.3.3",
"babel-plugin-lodash": "3.3.4",
"babel-plugin-remove-graphql-queries": "^2.9.20",
- "babel-preset-gatsby": "^0.5.15",
+ "babel-preset-gatsby": "^0.5.16",
"better-opn": "^2.0.0",
"better-queue": "^3.8.10",
"bluebird": "^3.7.2",
@@ -8793,7 +8835,7 @@
"browserslist": "^4.12.2",
"cache-manager": "^2.11.1",
"cache-manager-fs-hash": "^0.0.9",
- "chalk": "^2.4.2",
+ "chalk": "^4.1.0",
"chokidar": "^3.4.2",
"common-tags": "^1.8.0",
"compression": "^1.7.4",
@@ -8826,16 +8868,16 @@
"find-cache-dir": "^3.3.1",
"fs-exists-cached": "1.0.0",
"fs-extra": "^8.1.0",
- "gatsby-cli": "^2.12.115",
- "gatsby-core-utils": "^1.3.23",
+ "gatsby-cli": "^2.12.116",
+ "gatsby-core-utils": "^1.3.24",
"gatsby-graphiql-explorer": "^0.4.15",
"gatsby-legacy-polyfills": "^0.0.6",
"gatsby-link": "^2.4.16",
- "gatsby-plugin-page-creator": "^2.3.34",
+ "gatsby-plugin-page-creator": "^2.3.35",
"gatsby-plugin-typescript": "^2.5.0",
"gatsby-plugin-utils": "^0.2.40",
"gatsby-react-router-scroll": "^3.0.15",
- "gatsby-telemetry": "^1.3.39",
+ "gatsby-telemetry": "^1.3.40",
"glob": "^7.1.6",
"got": "8.3.2",
"graphql": "^14.6.0",
@@ -8911,17 +8953,17 @@
},
"dependencies": {
"@babel/runtime": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.1.tgz",
- "integrity": "sha512-J5AIf3vPj3UwXaAzb5j1xM4WAQDX3EMgemF8rjCP3SoW09LfRKAXQKt6CoVYl230P6iWdRcBbnLDDdnqWxZSCA==",
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.5.tgz",
+ "integrity": "sha512-plcc+hbExy3McchJCEQG3knOsuh3HH+Prx1P6cLIkET/0dLuQDEnrT+s27Axgc9bqfsmNUNHfscgMUdBpC9xfg==",
"requires": {
"regenerator-runtime": "^0.13.4"
}
},
"@babel/types": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.12.1.tgz",
- "integrity": "sha512-BzSY3NJBKM4kyatSOWh3D/JJ2O3CVzBybHWxtgxnggaxEuaSTTDqeiSb/xk9lrkw2Tbqyivw5ZU4rT+EfznQsA==",
+ "version": "7.12.6",
+ "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.12.6.tgz",
+ "integrity": "sha512-hwyjw6GvjBLiyy3W0YQf0Z5Zf4NpYejUnKFcfcUhZCSffoBBp30w6wP2Wn6pk31jMYZvcOrB/1b7cGXvEoKogA==",
"requires": {
"@babel/helper-validator-identifier": "^7.10.4",
"lodash": "^4.17.19",
@@ -8933,6 +8975,36 @@
"resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz",
"integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg=="
},
+ "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"
+ }
+ },
+ "chalk": {
+ "version": "4.1.0",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.0.tgz",
+ "integrity": "sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==",
+ "requires": {
+ "ansi-styles": "^4.1.0",
+ "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=="
+ },
"cross-spawn": {
"version": "7.0.3",
"resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz",
@@ -8944,15 +9016,15 @@
}
},
"gatsby-cli": {
- "version": "2.12.115",
- "resolved": "https://registry.npmjs.org/gatsby-cli/-/gatsby-cli-2.12.115.tgz",
- "integrity": "sha512-wOs3tG3tYses4fclXG0FtVZx+K0FDoZFkU1MIJNB+aRt+T7VMCZUIlg2MyrqcngsEW8al4EgyOd3UIl3NepC4A==",
+ "version": "2.12.116",
+ "resolved": "https://registry.npmjs.org/gatsby-cli/-/gatsby-cli-2.12.116.tgz",
+ "integrity": "sha512-vXpyl/ZFF67r/BlBxIjfdknBzxRfRuJ1qkA7//6dhNKDMlvVi5ZqGhOwcMzTgM1e0WZRaMFzf5/foPIA++8xEQ==",
"requires": {
"@babel/code-frame": "^7.10.4",
"@hapi/joi": "^15.1.1",
"@types/common-tags": "^1.8.0",
"better-opn": "^2.0.0",
- "chalk": "^2.4.2",
+ "chalk": "^4.1.0",
"clipboardy": "^2.3.0",
"common-tags": "^1.8.0",
"configstore": "^5.0.1",
@@ -8961,9 +9033,9 @@
"execa": "^3.4.0",
"fs-exists-cached": "^1.0.0",
"fs-extra": "^8.1.0",
- "gatsby-core-utils": "^1.3.23",
- "gatsby-recipes": "^0.2.36",
- "gatsby-telemetry": "^1.3.39",
+ "gatsby-core-utils": "^1.3.24",
+ "gatsby-recipes": "^0.2.37",
+ "gatsby-telemetry": "^1.3.40",
"hosted-git-info": "^3.0.6",
"is-valid-path": "^0.1.1",
"lodash": "^4.17.20",
@@ -9007,9 +9079,9 @@
}
},
"gatsby-core-utils": {
- "version": "1.3.23",
- "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-1.3.23.tgz",
- "integrity": "sha512-H6n6dDeRZ22HAJaBUIt5YjB/BSaE8Jq+kayMUv/YzL1RL2yFZ5lqcLwIL1OE2vWk1mQjMUBZCRxLODU0q1i3bQ==",
+ "version": "1.3.24",
+ "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-1.3.24.tgz",
+ "integrity": "sha512-SlK7rJv/8NBYC8FodYvTINamBHadXNSv//a2uRwh44N1GSSujuCMvtUcpEuAdg9BUQHc54NbbmFuoqf8p85kgA==",
"requires": {
"ci-info": "2.0.0",
"configstore": "^5.0.1",
@@ -9020,6 +9092,11 @@
"xdg-basedir": "^4.0.0"
}
},
+ "has-flag": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
+ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ=="
+ },
"hosted-git-info": {
"version": "3.0.7",
"resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-3.0.7.tgz",
@@ -9082,6 +9159,14 @@
"ansi-regex": "^4.1.0"
}
},
+ "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"
+ }
+ },
"which": {
"version": "2.0.2",
"resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz",
@@ -9120,9 +9205,9 @@
},
"dependencies": {
"@babel/runtime": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.1.tgz",
- "integrity": "sha512-J5AIf3vPj3UwXaAzb5j1xM4WAQDX3EMgemF8rjCP3SoW09LfRKAXQKt6CoVYl230P6iWdRcBbnLDDdnqWxZSCA==",
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.5.tgz",
+ "integrity": "sha512-plcc+hbExy3McchJCEQG3knOsuh3HH+Prx1P6cLIkET/0dLuQDEnrT+s27Axgc9bqfsmNUNHfscgMUdBpC9xfg==",
"requires": {
"regenerator-runtime": "^0.13.4"
}
@@ -9168,9 +9253,9 @@
},
"dependencies": {
"@babel/runtime": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.1.tgz",
- "integrity": "sha512-J5AIf3vPj3UwXaAzb5j1xM4WAQDX3EMgemF8rjCP3SoW09LfRKAXQKt6CoVYl230P6iWdRcBbnLDDdnqWxZSCA==",
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.5.tgz",
+ "integrity": "sha512-plcc+hbExy3McchJCEQG3knOsuh3HH+Prx1P6cLIkET/0dLuQDEnrT+s27Axgc9bqfsmNUNHfscgMUdBpC9xfg==",
"requires": {
"regenerator-runtime": "^0.13.4"
}
@@ -9178,24 +9263,24 @@
}
},
"gatsby-page-utils": {
- "version": "0.2.29",
- "resolved": "https://registry.npmjs.org/gatsby-page-utils/-/gatsby-page-utils-0.2.29.tgz",
- "integrity": "sha512-0xN3kBNd7PNwsJB1lJrsy7hEJbIIBcvnmbxGTplGenmGnOMoJqK6kEfM5Ru5dWBdSmwHrS+kcihFi0ZiGxpoww==",
+ "version": "0.2.30",
+ "resolved": "https://registry.npmjs.org/gatsby-page-utils/-/gatsby-page-utils-0.2.30.tgz",
+ "integrity": "sha512-H4a6VgDuO4Obd2UgZmfHCnpN3D6NOOpcgVSf8XuC7fmksVhQ3L2v7zw7y/TNS1Fz74yEKffnaF9pqRfkg8D/yg==",
"requires": {
"@babel/runtime": "^7.11.2",
"bluebird": "^3.7.2",
"chokidar": "^3.4.3",
"fs-exists-cached": "^1.0.0",
- "gatsby-core-utils": "^1.3.23",
+ "gatsby-core-utils": "^1.3.24",
"glob": "^7.1.6",
"lodash": "^4.17.20",
"micromatch": "^4.0.2"
},
"dependencies": {
"@babel/runtime": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.1.tgz",
- "integrity": "sha512-J5AIf3vPj3UwXaAzb5j1xM4WAQDX3EMgemF8rjCP3SoW09LfRKAXQKt6CoVYl230P6iWdRcBbnLDDdnqWxZSCA==",
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.5.tgz",
+ "integrity": "sha512-plcc+hbExy3McchJCEQG3knOsuh3HH+Prx1P6cLIkET/0dLuQDEnrT+s27Axgc9bqfsmNUNHfscgMUdBpC9xfg==",
"requires": {
"regenerator-runtime": "^0.13.4"
}
@@ -9252,9 +9337,9 @@
"optional": true
},
"gatsby-core-utils": {
- "version": "1.3.23",
- "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-1.3.23.tgz",
- "integrity": "sha512-H6n6dDeRZ22HAJaBUIt5YjB/BSaE8Jq+kayMUv/YzL1RL2yFZ5lqcLwIL1OE2vWk1mQjMUBZCRxLODU0q1i3bQ==",
+ "version": "1.3.24",
+ "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-1.3.24.tgz",
+ "integrity": "sha512-SlK7rJv/8NBYC8FodYvTINamBHadXNSv//a2uRwh44N1GSSujuCMvtUcpEuAdg9BUQHc54NbbmFuoqf8p85kgA==",
"requires": {
"ci-info": "2.0.0",
"configstore": "^5.0.1",
@@ -9448,15 +9533,15 @@
}
},
"gatsby-plugin-page-creator": {
- "version": "2.3.34",
- "resolved": "https://registry.npmjs.org/gatsby-plugin-page-creator/-/gatsby-plugin-page-creator-2.3.34.tgz",
- "integrity": "sha512-/rFG/ye4m0JJ8NAxTObkKKD8098KOVGE+dZrgBx9I3VN1TcKru0HprVe1xj679HBgKjjNUvchXZbhLl5I+2o4A==",
+ "version": "2.3.35",
+ "resolved": "https://registry.npmjs.org/gatsby-plugin-page-creator/-/gatsby-plugin-page-creator-2.3.35.tgz",
+ "integrity": "sha512-hT6hgkplHSBXin9DECOxNQastvRJq15XrzN8327VU/67tetYGOG7SKDSxN4eCaIwy7VK0nP0C97gyN7kQ3FNJw==",
"requires": {
"@babel/traverse": "^7.11.5",
"@sindresorhus/slugify": "^1.1.0",
"chokidar": "^3.4.2",
"fs-exists-cached": "^1.0.0",
- "gatsby-page-utils": "^0.2.29",
+ "gatsby-page-utils": "^0.2.30",
"globby": "^11.0.1",
"graphql": "^14.7.0",
"lodash": "^4.17.20"
@@ -9721,9 +9806,9 @@
},
"dependencies": {
"@babel/runtime": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.1.tgz",
- "integrity": "sha512-J5AIf3vPj3UwXaAzb5j1xM4WAQDX3EMgemF8rjCP3SoW09LfRKAXQKt6CoVYl230P6iWdRcBbnLDDdnqWxZSCA==",
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.5.tgz",
+ "integrity": "sha512-plcc+hbExy3McchJCEQG3knOsuh3HH+Prx1P6cLIkET/0dLuQDEnrT+s27Axgc9bqfsmNUNHfscgMUdBpC9xfg==",
"requires": {
"regenerator-runtime": "^0.13.4"
}
@@ -9747,9 +9832,9 @@
},
"dependencies": {
"@babel/runtime": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.1.tgz",
- "integrity": "sha512-J5AIf3vPj3UwXaAzb5j1xM4WAQDX3EMgemF8rjCP3SoW09LfRKAXQKt6CoVYl230P6iWdRcBbnLDDdnqWxZSCA==",
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.5.tgz",
+ "integrity": "sha512-plcc+hbExy3McchJCEQG3knOsuh3HH+Prx1P6cLIkET/0dLuQDEnrT+s27Axgc9bqfsmNUNHfscgMUdBpC9xfg==",
"requires": {
"regenerator-runtime": "^0.13.4"
}
@@ -9757,9 +9842,9 @@
}
},
"gatsby-recipes": {
- "version": "0.2.36",
- "resolved": "https://registry.npmjs.org/gatsby-recipes/-/gatsby-recipes-0.2.36.tgz",
- "integrity": "sha512-GrXRHdEOyGHe5r1hyePWc7kYM3yIu+RDargLqgHGO/lb76ZXRYhjlQ06chL3NMbmxAMYF3UcIm4RSlTS6rLkIg==",
+ "version": "0.2.37",
+ "resolved": "https://registry.npmjs.org/gatsby-recipes/-/gatsby-recipes-0.2.37.tgz",
+ "integrity": "sha512-3pBvAx8HdrFYHv+o0uUiC5Oyd4206wYuQdETib/fYQhG8JxyGCZTDIzy/9RjBYb2I8xm+TlK6jpucLXWlp5DcA==",
"requires": {
"@babel/core": "^7.11.6",
"@babel/generator": "^7.11.6",
@@ -9769,8 +9854,8 @@
"@babel/standalone": "^7.11.6",
"@babel/template": "^7.10.4",
"@babel/types": "^7.11.5",
- "@graphql-tools/schema": "^6.0.14",
- "@graphql-tools/utils": "^6.0.14",
+ "@graphql-tools/schema": "^7.0.0",
+ "@graphql-tools/utils": "^7.0.2",
"@hapi/hoek": "8.x.x",
"@hapi/joi": "^15.1.1",
"better-queue": "^3.8.10",
@@ -9784,8 +9869,8 @@
"express": "^4.17.1",
"express-graphql": "^0.9.0",
"fs-extra": "^8.1.0",
- "gatsby-core-utils": "^1.3.23",
- "gatsby-telemetry": "^1.3.39",
+ "gatsby-core-utils": "^1.3.24",
+ "gatsby-telemetry": "^1.3.40",
"glob": "^7.1.6",
"graphql": "^14.6.0",
"graphql-compose": "^6.3.8",
@@ -9823,21 +9908,22 @@
},
"dependencies": {
"@babel/types": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.12.1.tgz",
- "integrity": "sha512-BzSY3NJBKM4kyatSOWh3D/JJ2O3CVzBybHWxtgxnggaxEuaSTTDqeiSb/xk9lrkw2Tbqyivw5ZU4rT+EfznQsA==",
+ "version": "7.12.6",
+ "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.12.6.tgz",
+ "integrity": "sha512-hwyjw6GvjBLiyy3W0YQf0Z5Zf4NpYejUnKFcfcUhZCSffoBBp30w6wP2Wn6pk31jMYZvcOrB/1b7cGXvEoKogA==",
"requires": {
"@babel/helper-validator-identifier": "^7.10.4",
"lodash": "^4.17.19",
"to-fast-properties": "^2.0.0"
}
},
- "@graphql-tools/schema": {
- "version": "6.2.4",
- "resolved": "https://registry.npmjs.org/@graphql-tools/schema/-/schema-6.2.4.tgz",
- "integrity": "sha512-rh+14lSY1q8IPbEv2J9x8UBFJ5NrDX9W5asXEUlPp+7vraLp/Tiox4GXdgyA92JhwpYco3nTf5Bo2JDMt1KnAQ==",
+ "@graphql-tools/utils": {
+ "version": "7.0.2",
+ "resolved": "https://registry.npmjs.org/@graphql-tools/utils/-/utils-7.0.2.tgz",
+ "integrity": "sha512-VQQ7krHeoXO0FS3qbWsb/vZb8c8oyiCYPIH4RSgeK9SKOUpatWYt3DW4jmLmyHZLVVMk0yjUbsOhKTBEMejKSA==",
"requires": {
- "@graphql-tools/utils": "^6.2.4",
+ "@ardatan/aggregate-error": "0.0.6",
+ "camel-case": "4.1.1",
"tslib": "~2.0.1"
}
},
@@ -9869,9 +9955,9 @@
}
},
"gatsby-core-utils": {
- "version": "1.3.23",
- "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-1.3.23.tgz",
- "integrity": "sha512-H6n6dDeRZ22HAJaBUIt5YjB/BSaE8Jq+kayMUv/YzL1RL2yFZ5lqcLwIL1OE2vWk1mQjMUBZCRxLODU0q1i3bQ==",
+ "version": "1.3.24",
+ "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-1.3.24.tgz",
+ "integrity": "sha512-SlK7rJv/8NBYC8FodYvTINamBHadXNSv//a2uRwh44N1GSSujuCMvtUcpEuAdg9BUQHc54NbbmFuoqf8p85kgA==",
"requires": {
"ci-info": "2.0.0",
"configstore": "^5.0.1",
@@ -10233,9 +10319,9 @@
}
},
"gatsby-telemetry": {
- "version": "1.3.39",
- "resolved": "https://registry.npmjs.org/gatsby-telemetry/-/gatsby-telemetry-1.3.39.tgz",
- "integrity": "sha512-25LDAc0+0LDjHTOSIHLT6iJk/zOLLWSttZ0IQNho5fhLdWJ3hQrCWKx8YiVLPPNwnImei6/1FxQlGKUPVAOrRA==",
+ "version": "1.3.40",
+ "resolved": "https://registry.npmjs.org/gatsby-telemetry/-/gatsby-telemetry-1.3.40.tgz",
+ "integrity": "sha512-BfKuSOe9Q2kCrATypvSXGwfffffLG483mP6j7tJy3iUYgnteRcLLP4YbBV3HG7pqW0SQk+JP5iIlsT7VtSZOXw==",
"requires": {
"@babel/code-frame": "^7.10.4",
"@babel/runtime": "^7.11.2",
@@ -10246,7 +10332,7 @@
"configstore": "^5.0.1",
"envinfo": "^7.7.3",
"fs-extra": "^8.1.0",
- "gatsby-core-utils": "^1.3.23",
+ "gatsby-core-utils": "^1.3.24",
"git-up": "^4.0.2",
"is-docker": "^2.1.1",
"lodash": "^4.17.20",
@@ -10255,17 +10341,17 @@
},
"dependencies": {
"@babel/runtime": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.1.tgz",
- "integrity": "sha512-J5AIf3vPj3UwXaAzb5j1xM4WAQDX3EMgemF8rjCP3SoW09LfRKAXQKt6CoVYl230P6iWdRcBbnLDDdnqWxZSCA==",
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.5.tgz",
+ "integrity": "sha512-plcc+hbExy3McchJCEQG3knOsuh3HH+Prx1P6cLIkET/0dLuQDEnrT+s27Axgc9bqfsmNUNHfscgMUdBpC9xfg==",
"requires": {
"regenerator-runtime": "^0.13.4"
}
},
"gatsby-core-utils": {
- "version": "1.3.23",
- "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-1.3.23.tgz",
- "integrity": "sha512-H6n6dDeRZ22HAJaBUIt5YjB/BSaE8Jq+kayMUv/YzL1RL2yFZ5lqcLwIL1OE2vWk1mQjMUBZCRxLODU0q1i3bQ==",
+ "version": "1.3.24",
+ "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-1.3.24.tgz",
+ "integrity": "sha512-SlK7rJv/8NBYC8FodYvTINamBHadXNSv//a2uRwh44N1GSSujuCMvtUcpEuAdg9BUQHc54NbbmFuoqf8p85kgA==",
"requires": {
"ci-info": "2.0.0",
"configstore": "^5.0.1",
@@ -10907,10 +10993,11 @@
}
},
"graphql-config": {
- "version": "3.0.3",
- "resolved": "https://registry.npmjs.org/graphql-config/-/graphql-config-3.0.3.tgz",
- "integrity": "sha512-MBY0wEjvcgJtZUyoqpPvOE1e5qPI0hJaa1gKTqjonSFiCsNHX2lykNjpOPcodmAgH1V06ELxhGnm9kcVzqvi/g==",
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/graphql-config/-/graphql-config-3.1.0.tgz",
+ "integrity": "sha512-tOjgUqB6W+vIzGRn20LogMujoRTAsdwO1gGg6l3SF3xaUjI9/uaCpvy3kJHbZcRiRuOTocmysdBU+hOs3Npx6Q==",
"requires": {
+ "@endemolshinegroup/cosmiconfig-typescript-loader": "3.0.2",
"@graphql-tools/graphql-file-loader": "^6.0.0",
"@graphql-tools/json-file-loader": "^6.0.0",
"@graphql-tools/load": "^6.0.0",
@@ -10918,6 +11005,7 @@
"@graphql-tools/url-loader": "^6.0.0",
"@graphql-tools/utils": "^6.0.0",
"cosmiconfig": "6.0.0",
+ "cosmiconfig-toml-loader": "1.0.0",
"minimatch": "3.0.4",
"string-env-interpolation": "1.0.1",
"tslib": "^2.0.0"
@@ -11996,9 +12084,9 @@
}
},
"is-core-module": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.0.0.tgz",
- "integrity": "sha512-jq1AH6C8MuteOoBPwkxHafmByhL9j5q4OaPGdbuD+ZtQJVzH+i6E3BJDQcBA09k57i2Hh2yQbEG8yObZ0jdlWw==",
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.1.0.tgz",
+ "integrity": "sha512-YcV7BgVMRFRua2FqQzKtTDMz8iCuLEyGKjr70q8Zm1yy2qKcurbFEd79PAdHV77oL3NrAaOVQIbMmiHQCHB7ZA==",
"requires": {
"has": "^1.0.3"
}
@@ -12926,6 +13014,11 @@
"resolved": "https://registry.npmjs.org/lodash.foreach/-/lodash.foreach-4.5.0.tgz",
"integrity": "sha1-Gmo16s5AEoDH8G3d7DUWWrJ+PlM="
},
+ "lodash.get": {
+ "version": "4.4.2",
+ "resolved": "https://registry.npmjs.org/lodash.get/-/lodash.get-4.4.2.tgz",
+ "integrity": "sha1-LRd/ZS+jHpObRDjVNBSZ36OCXpk="
+ },
"lodash.map": {
"version": "4.6.0",
"resolved": "https://registry.npmjs.org/lodash.map/-/lodash.map-4.6.0.tgz",
@@ -13107,6 +13200,11 @@
}
}
},
+ "make-error": {
+ "version": "1.3.6",
+ "resolved": "https://registry.npmjs.org/make-error/-/make-error-1.3.6.tgz",
+ "integrity": "sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw=="
+ },
"map-cache": {
"version": "0.2.2",
"resolved": "https://registry.npmjs.org/map-cache/-/map-cache-0.2.2.tgz",
@@ -16940,9 +17038,9 @@
}
},
"@babel/types": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.12.1.tgz",
- "integrity": "sha512-BzSY3NJBKM4kyatSOWh3D/JJ2O3CVzBybHWxtgxnggaxEuaSTTDqeiSb/xk9lrkw2Tbqyivw5ZU4rT+EfznQsA==",
+ "version": "7.12.6",
+ "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.12.6.tgz",
+ "integrity": "sha512-hwyjw6GvjBLiyy3W0YQf0Z5Zf4NpYejUnKFcfcUhZCSffoBBp30w6wP2Wn6pk31jMYZvcOrB/1b7cGXvEoKogA==",
"requires": {
"@babel/helper-validator-identifier": "^7.10.4",
"lodash": "^4.17.19",
@@ -19037,6 +19135,26 @@
"resolved": "https://registry.npmjs.org/symbol-observable/-/symbol-observable-1.2.0.tgz",
"integrity": "sha512-e900nM8RRtGhlV36KGEU9k65K3mPb1WV70OdjfxlG2EAuM1noi/E/BaW/uMhL7bPEssK8QV57vN3esixjUvcXQ=="
},
+ "sync-fetch": {
+ "version": "0.3.0",
+ "resolved": "https://registry.npmjs.org/sync-fetch/-/sync-fetch-0.3.0.tgz",
+ "integrity": "sha512-dJp4qg+x4JwSEW1HibAuMi0IIrBI3wuQr2GimmqB7OXR50wmwzfdusG+p39R9w3R6aFtZ2mzvxvWKQ3Bd/vx3g==",
+ "requires": {
+ "buffer": "^5.7.0",
+ "node-fetch": "^2.6.1"
+ },
+ "dependencies": {
+ "buffer": {
+ "version": "5.7.1",
+ "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz",
+ "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==",
+ "requires": {
+ "base64-js": "^1.3.1",
+ "ieee754": "^1.1.13"
+ }
+ }
+ }
+ },
"table": {
"version": "5.4.6",
"resolved": "https://registry.npmjs.org/table/-/table-5.4.6.tgz",
@@ -19466,6 +19584,18 @@
"resolved": "https://registry.npmjs.org/true-case-path/-/true-case-path-2.2.1.tgz",
"integrity": "sha512-0z3j8R7MCjy10kc/g+qg7Ln3alJTodw9aDuVWZa3uiWqfuBMKeAeP2ocWcxoyM3D73yz3Jt/Pu4qPr4wHSdB/Q=="
},
+ "ts-node": {
+ "version": "9.0.0",
+ "resolved": "https://registry.npmjs.org/ts-node/-/ts-node-9.0.0.tgz",
+ "integrity": "sha512-/TqB4SnererCDR/vb4S/QvSZvzQMJN8daAslg7MeaiHvD8rDZsSfXmNeNumyZZzMned72Xoq/isQljYSt8Ynfg==",
+ "requires": {
+ "arg": "^4.1.0",
+ "diff": "^4.0.1",
+ "make-error": "^1.1.1",
+ "source-map-support": "^0.5.17",
+ "yn": "3.1.1"
+ }
+ },
"ts-pnp": {
"version": "1.2.0",
"resolved": "https://registry.npmjs.org/ts-pnp/-/ts-pnp-1.2.0.tgz",
@@ -21211,6 +21341,11 @@
"resolved": "https://registry.npmjs.org/yeast/-/yeast-0.1.2.tgz",
"integrity": "sha1-AI4G2AlDIMNy28L47XagymyKxBk="
},
+ "yn": {
+ "version": "3.1.1",
+ "resolved": "https://registry.npmjs.org/yn/-/yn-3.1.1.tgz",
+ "integrity": "sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q=="
+ },
"yoga-layout-prebuilt": {
"version": "1.10.0",
"resolved": "https://registry.npmjs.org/yoga-layout-prebuilt/-/yoga-layout-prebuilt-1.10.0.tgz",
diff --git a/starters/gatsby-starter-blog-theme/package.json b/starters/gatsby-starter-blog-theme/package.json
index 39bb88c2096a2..aa1a08e687d3a 100644
--- a/starters/gatsby-starter-blog-theme/package.json
+++ b/starters/gatsby-starter-blog-theme/package.json
@@ -10,7 +10,7 @@
},
"license": "0BSD",
"dependencies": {
- "gatsby": "^2.25.1",
+ "gatsby": "^2.25.2",
"gatsby-theme-blog": "^2.0.2",
"react": "^16.12.0",
"react-dom": "^16.12.0",
diff --git a/starters/gatsby-starter-mdx-basic/package-lock.json b/starters/gatsby-starter-mdx-basic/package-lock.json
index 8122849a4d0fa..1ab8b8662c8e2 100644
--- a/starters/gatsby-starter-mdx-basic/package-lock.json
+++ b/starters/gatsby-starter-mdx-basic/package-lock.json
@@ -28,9 +28,9 @@
}
},
"@babel/compat-data": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.12.1.tgz",
- "integrity": "sha512-725AQupWJZ8ba0jbKceeFblZTY90McUBWMwHhkFQ9q1zKPJ95GUktljFcgcsIVwRnTnRKlcYzfiNImg5G9m6ZQ=="
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.12.5.tgz",
+ "integrity": "sha512-DTsS7cxrsH3by8nqQSpFSyjSfSYl57D6Cf4q8dW3LK83tBKBDCkfcay1nYkXq1nIHXnpX8WMMb/O25HOy3h1zg=="
},
"@babel/core": {
"version": "7.11.6",
@@ -109,38 +109,33 @@
},
"dependencies": {
"@babel/helper-module-imports": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.12.1.tgz",
- "integrity": "sha512-ZeC1TlMSvikvJNy1v/wPIazCu3NdOwgYZLIkmIyAsGhqkNpiDoQQRmaCK8YP4Pq3GPTLPV9WXaPCJKvx06JxKA==",
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.12.5.tgz",
+ "integrity": "sha512-SR713Ogqg6++uexFRORf/+nPXMmWIn80TALu0uaFb+iQIUoR7bOC7zBWyzBs5b3tBBJXuyD0cRu1F15GyzjOWA==",
"requires": {
- "@babel/types": "^7.12.1"
+ "@babel/types": "^7.12.5"
}
},
"@babel/types": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.12.1.tgz",
- "integrity": "sha512-BzSY3NJBKM4kyatSOWh3D/JJ2O3CVzBybHWxtgxnggaxEuaSTTDqeiSb/xk9lrkw2Tbqyivw5ZU4rT+EfznQsA==",
+ "version": "7.12.6",
+ "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.12.6.tgz",
+ "integrity": "sha512-hwyjw6GvjBLiyy3W0YQf0Z5Zf4NpYejUnKFcfcUhZCSffoBBp30w6wP2Wn6pk31jMYZvcOrB/1b7cGXvEoKogA==",
"requires": {
"@babel/helper-validator-identifier": "^7.10.4",
"lodash": "^4.17.19",
"to-fast-properties": "^2.0.0"
}
- },
- "lodash": {
- "version": "4.17.20",
- "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.20.tgz",
- "integrity": "sha512-PlhdFcillOINfeV7Ni6oF1TAEayyZBoZ8bcshTHqOYJYlrqzRK5hagpagky5o4HfCzzd1TRkXPMFq6cKk9rGmA=="
}
}
},
"@babel/helper-compilation-targets": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.12.1.tgz",
- "integrity": "sha512-jtBEif7jsPwP27GPHs06v4WBV0KrE8a/P7n0N0sSvHn2hwUCYnolP/CLmz51IzAW4NlN+HuoBtb9QcwnRo9F/g==",
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.12.5.tgz",
+ "integrity": "sha512-+qH6NrscMolUlzOYngSBMIOQpKUGPPsc61Bu5W10mg84LxZ7cmvnBHzARKbDoFxVvqqAbj6Tg6N7bSrWSPXMyw==",
"requires": {
- "@babel/compat-data": "^7.12.1",
+ "@babel/compat-data": "^7.12.5",
"@babel/helper-validator-option": "^7.12.1",
- "browserslist": "^4.12.0",
+ "browserslist": "^4.14.5",
"semver": "^5.5.0"
}
},
@@ -157,11 +152,11 @@
},
"dependencies": {
"@babel/generator": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.12.1.tgz",
- "integrity": "sha512-DB+6rafIdc9o72Yc3/Ph5h+6hUjeOp66pF0naQBgUFFuPqzQwIlPTm3xZR7YNvduIMtkDIj2t21LSQwnbCrXvg==",
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.12.5.tgz",
+ "integrity": "sha512-m16TQQJ8hPt7E+OS/XVQg/7U184MLXtvuGbCdA7na61vha+ImkyyNM/9DDA0unYCVZn3ZOhng+qz48/KBOT96A==",
"requires": {
- "@babel/types": "^7.12.1",
+ "@babel/types": "^7.12.5",
"jsesc": "^2.5.1",
"source-map": "^0.5.0"
}
@@ -175,51 +170,46 @@
}
},
"@babel/helper-replace-supers": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.12.1.tgz",
- "integrity": "sha512-zJjTvtNJnCFsCXVi5rUInstLd/EIVNmIKA1Q9ynESmMBWPWd+7sdR+G4/wdu+Mppfep0XLyG2m7EBPvjCeFyrw==",
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.12.5.tgz",
+ "integrity": "sha512-5YILoed0ZyIpF4gKcpZitEnXEJ9UoDRki1Ey6xz46rxOzfNMAhVIJMoune1hmPVxh40LRv1+oafz7UsWX+vyWA==",
"requires": {
"@babel/helper-member-expression-to-functions": "^7.12.1",
"@babel/helper-optimise-call-expression": "^7.10.4",
- "@babel/traverse": "^7.12.1",
- "@babel/types": "^7.12.1"
+ "@babel/traverse": "^7.12.5",
+ "@babel/types": "^7.12.5"
}
},
"@babel/parser": {
- "version": "7.12.3",
- "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.12.3.tgz",
- "integrity": "sha512-kFsOS0IbsuhO5ojF8Hc8z/8vEIOkylVBrjiZUbLTE3XFe0Qi+uu6HjzQixkFaqr0ZPAMZcBVxEwmsnsLPZ2Xsw=="
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.12.5.tgz",
+ "integrity": "sha512-FVM6RZQ0mn2KCf1VUED7KepYeUWoVShczewOCfm3nzoBybaih51h+sYVVGthW9M6lPByEPTQf+xm27PBdlpwmQ=="
},
"@babel/traverse": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.12.1.tgz",
- "integrity": "sha512-MA3WPoRt1ZHo2ZmoGKNqi20YnPt0B1S0GTZEPhhd+hw2KGUzBlHuVunj6K4sNuK+reEvyiPwtp0cpaqLzJDmAw==",
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.12.5.tgz",
+ "integrity": "sha512-xa15FbQnias7z9a62LwYAA5SZZPkHIXpd42C6uW68o8uTuua96FHZy1y61Va5P/i83FAAcMpW8+A/QayntzuqA==",
"requires": {
"@babel/code-frame": "^7.10.4",
- "@babel/generator": "^7.12.1",
+ "@babel/generator": "^7.12.5",
"@babel/helper-function-name": "^7.10.4",
"@babel/helper-split-export-declaration": "^7.11.0",
- "@babel/parser": "^7.12.1",
- "@babel/types": "^7.12.1",
+ "@babel/parser": "^7.12.5",
+ "@babel/types": "^7.12.5",
"debug": "^4.1.0",
"globals": "^11.1.0",
"lodash": "^4.17.19"
}
},
"@babel/types": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.12.1.tgz",
- "integrity": "sha512-BzSY3NJBKM4kyatSOWh3D/JJ2O3CVzBybHWxtgxnggaxEuaSTTDqeiSb/xk9lrkw2Tbqyivw5ZU4rT+EfznQsA==",
+ "version": "7.12.6",
+ "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.12.6.tgz",
+ "integrity": "sha512-hwyjw6GvjBLiyy3W0YQf0Z5Zf4NpYejUnKFcfcUhZCSffoBBp30w6wP2Wn6pk31jMYZvcOrB/1b7cGXvEoKogA==",
"requires": {
"@babel/helper-validator-identifier": "^7.10.4",
"lodash": "^4.17.19",
"to-fast-properties": "^2.0.0"
}
- },
- "lodash": {
- "version": "4.17.20",
- "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.20.tgz",
- "integrity": "sha512-PlhdFcillOINfeV7Ni6oF1TAEayyZBoZ8bcshTHqOYJYlrqzRK5hagpagky5o4HfCzzd1TRkXPMFq6cKk9rGmA=="
}
}
},
@@ -241,13 +231,6 @@
"@babel/helper-function-name": "^7.10.4",
"@babel/types": "^7.10.5",
"lodash": "^4.17.19"
- },
- "dependencies": {
- "lodash": {
- "version": "4.17.20",
- "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.20.tgz",
- "integrity": "sha512-PlhdFcillOINfeV7Ni6oF1TAEayyZBoZ8bcshTHqOYJYlrqzRK5hagpagky5o4HfCzzd1TRkXPMFq6cKk9rGmA=="
- }
}
},
"@babel/helper-explode-assignable-expression": {
@@ -259,19 +242,14 @@
},
"dependencies": {
"@babel/types": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.12.1.tgz",
- "integrity": "sha512-BzSY3NJBKM4kyatSOWh3D/JJ2O3CVzBybHWxtgxnggaxEuaSTTDqeiSb/xk9lrkw2Tbqyivw5ZU4rT+EfznQsA==",
+ "version": "7.12.6",
+ "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.12.6.tgz",
+ "integrity": "sha512-hwyjw6GvjBLiyy3W0YQf0Z5Zf4NpYejUnKFcfcUhZCSffoBBp30w6wP2Wn6pk31jMYZvcOrB/1b7cGXvEoKogA==",
"requires": {
"@babel/helper-validator-identifier": "^7.10.4",
"lodash": "^4.17.19",
"to-fast-properties": "^2.0.0"
}
- },
- "lodash": {
- "version": "4.17.20",
- "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.20.tgz",
- "integrity": "sha512-PlhdFcillOINfeV7Ni6oF1TAEayyZBoZ8bcshTHqOYJYlrqzRK5hagpagky5o4HfCzzd1TRkXPMFq6cKk9rGmA=="
}
}
},
@@ -357,13 +335,6 @@
"integrity": "sha512-68kdUAzDrljqBrio7DYAEgCoJHxppJOERHOgOrDN7WjOzP0ZQ1LsSDRXcemzVZaLvjaJsJEESb6qt+znNuENDg==",
"requires": {
"lodash": "^4.17.19"
- },
- "dependencies": {
- "lodash": {
- "version": "4.17.20",
- "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.20.tgz",
- "integrity": "sha512-PlhdFcillOINfeV7Ni6oF1TAEayyZBoZ8bcshTHqOYJYlrqzRK5hagpagky5o4HfCzzd1TRkXPMFq6cKk9rGmA=="
- }
}
},
"@babel/helper-remap-async-to-generator": {
@@ -377,19 +348,14 @@
},
"dependencies": {
"@babel/types": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.12.1.tgz",
- "integrity": "sha512-BzSY3NJBKM4kyatSOWh3D/JJ2O3CVzBybHWxtgxnggaxEuaSTTDqeiSb/xk9lrkw2Tbqyivw5ZU4rT+EfznQsA==",
+ "version": "7.12.6",
+ "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.12.6.tgz",
+ "integrity": "sha512-hwyjw6GvjBLiyy3W0YQf0Z5Zf4NpYejUnKFcfcUhZCSffoBBp30w6wP2Wn6pk31jMYZvcOrB/1b7cGXvEoKogA==",
"requires": {
"@babel/helper-validator-identifier": "^7.10.4",
"lodash": "^4.17.19",
"to-fast-properties": "^2.0.0"
}
- },
- "lodash": {
- "version": "4.17.20",
- "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.20.tgz",
- "integrity": "sha512-PlhdFcillOINfeV7Ni6oF1TAEayyZBoZ8bcshTHqOYJYlrqzRK5hagpagky5o4HfCzzd1TRkXPMFq6cKk9rGmA=="
}
}
},
@@ -422,19 +388,14 @@
},
"dependencies": {
"@babel/types": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.12.1.tgz",
- "integrity": "sha512-BzSY3NJBKM4kyatSOWh3D/JJ2O3CVzBybHWxtgxnggaxEuaSTTDqeiSb/xk9lrkw2Tbqyivw5ZU4rT+EfznQsA==",
+ "version": "7.12.6",
+ "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.12.6.tgz",
+ "integrity": "sha512-hwyjw6GvjBLiyy3W0YQf0Z5Zf4NpYejUnKFcfcUhZCSffoBBp30w6wP2Wn6pk31jMYZvcOrB/1b7cGXvEoKogA==",
"requires": {
"@babel/helper-validator-identifier": "^7.10.4",
"lodash": "^4.17.19",
"to-fast-properties": "^2.0.0"
}
- },
- "lodash": {
- "version": "4.17.20",
- "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.20.tgz",
- "integrity": "sha512-PlhdFcillOINfeV7Ni6oF1TAEayyZBoZ8bcshTHqOYJYlrqzRK5hagpagky5o4HfCzzd1TRkXPMFq6cKk9rGmA=="
}
}
},
@@ -557,9 +518,9 @@
}
},
"@babel/plugin-proposal-numeric-separator": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.12.1.tgz",
- "integrity": "sha512-MR7Ok+Af3OhNTCxYVjJZHS0t97ydnJZt/DbR4WISO39iDnhiD8XHrY12xuSJ90FFEGjir0Fzyyn7g/zY6hxbxA==",
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.12.5.tgz",
+ "integrity": "sha512-UiAnkKuOrCyjZ3sYNHlRlfuZJbBHknMQ9VMwVeX97Ofwx7RpD6gS2HfqTCh8KNUQgcOm8IKt103oR4KIjh7Q8g==",
"requires": {
"@babel/helper-plugin-utils": "^7.10.4",
"@babel/plugin-syntax-numeric-separator": "^7.10.4"
@@ -743,27 +704,22 @@
},
"dependencies": {
"@babel/helper-module-imports": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.12.1.tgz",
- "integrity": "sha512-ZeC1TlMSvikvJNy1v/wPIazCu3NdOwgYZLIkmIyAsGhqkNpiDoQQRmaCK8YP4Pq3GPTLPV9WXaPCJKvx06JxKA==",
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.12.5.tgz",
+ "integrity": "sha512-SR713Ogqg6++uexFRORf/+nPXMmWIn80TALu0uaFb+iQIUoR7bOC7zBWyzBs5b3tBBJXuyD0cRu1F15GyzjOWA==",
"requires": {
- "@babel/types": "^7.12.1"
+ "@babel/types": "^7.12.5"
}
},
"@babel/types": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.12.1.tgz",
- "integrity": "sha512-BzSY3NJBKM4kyatSOWh3D/JJ2O3CVzBybHWxtgxnggaxEuaSTTDqeiSb/xk9lrkw2Tbqyivw5ZU4rT+EfznQsA==",
+ "version": "7.12.6",
+ "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.12.6.tgz",
+ "integrity": "sha512-hwyjw6GvjBLiyy3W0YQf0Z5Zf4NpYejUnKFcfcUhZCSffoBBp30w6wP2Wn6pk31jMYZvcOrB/1b7cGXvEoKogA==",
"requires": {
"@babel/helper-validator-identifier": "^7.10.4",
"lodash": "^4.17.19",
"to-fast-properties": "^2.0.0"
}
- },
- "lodash": {
- "version": "4.17.20",
- "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.20.tgz",
- "integrity": "sha512-PlhdFcillOINfeV7Ni6oF1TAEayyZBoZ8bcshTHqOYJYlrqzRK5hagpagky5o4HfCzzd1TRkXPMFq6cKk9rGmA=="
}
}
},
@@ -799,11 +755,11 @@
},
"dependencies": {
"@babel/generator": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.12.1.tgz",
- "integrity": "sha512-DB+6rafIdc9o72Yc3/Ph5h+6hUjeOp66pF0naQBgUFFuPqzQwIlPTm3xZR7YNvduIMtkDIj2t21LSQwnbCrXvg==",
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.12.5.tgz",
+ "integrity": "sha512-m16TQQJ8hPt7E+OS/XVQg/7U184MLXtvuGbCdA7na61vha+ImkyyNM/9DDA0unYCVZn3ZOhng+qz48/KBOT96A==",
"requires": {
- "@babel/types": "^7.12.1",
+ "@babel/types": "^7.12.5",
"jsesc": "^2.5.1",
"source-map": "^0.5.0"
}
@@ -817,51 +773,46 @@
}
},
"@babel/helper-replace-supers": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.12.1.tgz",
- "integrity": "sha512-zJjTvtNJnCFsCXVi5rUInstLd/EIVNmIKA1Q9ynESmMBWPWd+7sdR+G4/wdu+Mppfep0XLyG2m7EBPvjCeFyrw==",
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.12.5.tgz",
+ "integrity": "sha512-5YILoed0ZyIpF4gKcpZitEnXEJ9UoDRki1Ey6xz46rxOzfNMAhVIJMoune1hmPVxh40LRv1+oafz7UsWX+vyWA==",
"requires": {
"@babel/helper-member-expression-to-functions": "^7.12.1",
"@babel/helper-optimise-call-expression": "^7.10.4",
- "@babel/traverse": "^7.12.1",
- "@babel/types": "^7.12.1"
+ "@babel/traverse": "^7.12.5",
+ "@babel/types": "^7.12.5"
}
},
"@babel/parser": {
- "version": "7.12.3",
- "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.12.3.tgz",
- "integrity": "sha512-kFsOS0IbsuhO5ojF8Hc8z/8vEIOkylVBrjiZUbLTE3XFe0Qi+uu6HjzQixkFaqr0ZPAMZcBVxEwmsnsLPZ2Xsw=="
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.12.5.tgz",
+ "integrity": "sha512-FVM6RZQ0mn2KCf1VUED7KepYeUWoVShczewOCfm3nzoBybaih51h+sYVVGthW9M6lPByEPTQf+xm27PBdlpwmQ=="
},
"@babel/traverse": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.12.1.tgz",
- "integrity": "sha512-MA3WPoRt1ZHo2ZmoGKNqi20YnPt0B1S0GTZEPhhd+hw2KGUzBlHuVunj6K4sNuK+reEvyiPwtp0cpaqLzJDmAw==",
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.12.5.tgz",
+ "integrity": "sha512-xa15FbQnias7z9a62LwYAA5SZZPkHIXpd42C6uW68o8uTuua96FHZy1y61Va5P/i83FAAcMpW8+A/QayntzuqA==",
"requires": {
"@babel/code-frame": "^7.10.4",
- "@babel/generator": "^7.12.1",
+ "@babel/generator": "^7.12.5",
"@babel/helper-function-name": "^7.10.4",
"@babel/helper-split-export-declaration": "^7.11.0",
- "@babel/parser": "^7.12.1",
- "@babel/types": "^7.12.1",
+ "@babel/parser": "^7.12.5",
+ "@babel/types": "^7.12.5",
"debug": "^4.1.0",
"globals": "^11.1.0",
"lodash": "^4.17.19"
}
},
"@babel/types": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.12.1.tgz",
- "integrity": "sha512-BzSY3NJBKM4kyatSOWh3D/JJ2O3CVzBybHWxtgxnggaxEuaSTTDqeiSb/xk9lrkw2Tbqyivw5ZU4rT+EfznQsA==",
+ "version": "7.12.6",
+ "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.12.6.tgz",
+ "integrity": "sha512-hwyjw6GvjBLiyy3W0YQf0Z5Zf4NpYejUnKFcfcUhZCSffoBBp30w6wP2Wn6pk31jMYZvcOrB/1b7cGXvEoKogA==",
"requires": {
"@babel/helper-validator-identifier": "^7.10.4",
"lodash": "^4.17.19",
"to-fast-properties": "^2.0.0"
}
- },
- "lodash": {
- "version": "4.17.20",
- "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.20.tgz",
- "integrity": "sha512-PlhdFcillOINfeV7Ni6oF1TAEayyZBoZ8bcshTHqOYJYlrqzRK5hagpagky5o4HfCzzd1TRkXPMFq6cKk9rGmA=="
}
}
},
@@ -951,11 +902,11 @@
},
"dependencies": {
"@babel/generator": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.12.1.tgz",
- "integrity": "sha512-DB+6rafIdc9o72Yc3/Ph5h+6hUjeOp66pF0naQBgUFFuPqzQwIlPTm3xZR7YNvduIMtkDIj2t21LSQwnbCrXvg==",
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.12.5.tgz",
+ "integrity": "sha512-m16TQQJ8hPt7E+OS/XVQg/7U184MLXtvuGbCdA7na61vha+ImkyyNM/9DDA0unYCVZn3ZOhng+qz48/KBOT96A==",
"requires": {
- "@babel/types": "^7.12.1",
+ "@babel/types": "^7.12.5",
"jsesc": "^2.5.1",
"source-map": "^0.5.0"
}
@@ -969,11 +920,11 @@
}
},
"@babel/helper-module-imports": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.12.1.tgz",
- "integrity": "sha512-ZeC1TlMSvikvJNy1v/wPIazCu3NdOwgYZLIkmIyAsGhqkNpiDoQQRmaCK8YP4Pq3GPTLPV9WXaPCJKvx06JxKA==",
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.12.5.tgz",
+ "integrity": "sha512-SR713Ogqg6++uexFRORf/+nPXMmWIn80TALu0uaFb+iQIUoR7bOC7zBWyzBs5b3tBBJXuyD0cRu1F15GyzjOWA==",
"requires": {
- "@babel/types": "^7.12.1"
+ "@babel/types": "^7.12.5"
}
},
"@babel/helper-module-transforms": {
@@ -993,14 +944,14 @@
}
},
"@babel/helper-replace-supers": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.12.1.tgz",
- "integrity": "sha512-zJjTvtNJnCFsCXVi5rUInstLd/EIVNmIKA1Q9ynESmMBWPWd+7sdR+G4/wdu+Mppfep0XLyG2m7EBPvjCeFyrw==",
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.12.5.tgz",
+ "integrity": "sha512-5YILoed0ZyIpF4gKcpZitEnXEJ9UoDRki1Ey6xz46rxOzfNMAhVIJMoune1hmPVxh40LRv1+oafz7UsWX+vyWA==",
"requires": {
"@babel/helper-member-expression-to-functions": "^7.12.1",
"@babel/helper-optimise-call-expression": "^7.10.4",
- "@babel/traverse": "^7.12.1",
- "@babel/types": "^7.12.1"
+ "@babel/traverse": "^7.12.5",
+ "@babel/types": "^7.12.5"
}
},
"@babel/helper-simple-access": {
@@ -1012,40 +963,35 @@
}
},
"@babel/parser": {
- "version": "7.12.3",
- "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.12.3.tgz",
- "integrity": "sha512-kFsOS0IbsuhO5ojF8Hc8z/8vEIOkylVBrjiZUbLTE3XFe0Qi+uu6HjzQixkFaqr0ZPAMZcBVxEwmsnsLPZ2Xsw=="
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.12.5.tgz",
+ "integrity": "sha512-FVM6RZQ0mn2KCf1VUED7KepYeUWoVShczewOCfm3nzoBybaih51h+sYVVGthW9M6lPByEPTQf+xm27PBdlpwmQ=="
},
"@babel/traverse": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.12.1.tgz",
- "integrity": "sha512-MA3WPoRt1ZHo2ZmoGKNqi20YnPt0B1S0GTZEPhhd+hw2KGUzBlHuVunj6K4sNuK+reEvyiPwtp0cpaqLzJDmAw==",
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.12.5.tgz",
+ "integrity": "sha512-xa15FbQnias7z9a62LwYAA5SZZPkHIXpd42C6uW68o8uTuua96FHZy1y61Va5P/i83FAAcMpW8+A/QayntzuqA==",
"requires": {
"@babel/code-frame": "^7.10.4",
- "@babel/generator": "^7.12.1",
+ "@babel/generator": "^7.12.5",
"@babel/helper-function-name": "^7.10.4",
"@babel/helper-split-export-declaration": "^7.11.0",
- "@babel/parser": "^7.12.1",
- "@babel/types": "^7.12.1",
+ "@babel/parser": "^7.12.5",
+ "@babel/types": "^7.12.5",
"debug": "^4.1.0",
"globals": "^11.1.0",
"lodash": "^4.17.19"
}
},
"@babel/types": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.12.1.tgz",
- "integrity": "sha512-BzSY3NJBKM4kyatSOWh3D/JJ2O3CVzBybHWxtgxnggaxEuaSTTDqeiSb/xk9lrkw2Tbqyivw5ZU4rT+EfznQsA==",
+ "version": "7.12.6",
+ "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.12.6.tgz",
+ "integrity": "sha512-hwyjw6GvjBLiyy3W0YQf0Z5Zf4NpYejUnKFcfcUhZCSffoBBp30w6wP2Wn6pk31jMYZvcOrB/1b7cGXvEoKogA==",
"requires": {
"@babel/helper-validator-identifier": "^7.10.4",
"lodash": "^4.17.19",
"to-fast-properties": "^2.0.0"
}
- },
- "lodash": {
- "version": "4.17.20",
- "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.20.tgz",
- "integrity": "sha512-PlhdFcillOINfeV7Ni6oF1TAEayyZBoZ8bcshTHqOYJYlrqzRK5hagpagky5o4HfCzzd1TRkXPMFq6cKk9rGmA=="
}
}
},
@@ -1061,11 +1007,11 @@
},
"dependencies": {
"@babel/generator": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.12.1.tgz",
- "integrity": "sha512-DB+6rafIdc9o72Yc3/Ph5h+6hUjeOp66pF0naQBgUFFuPqzQwIlPTm3xZR7YNvduIMtkDIj2t21LSQwnbCrXvg==",
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.12.5.tgz",
+ "integrity": "sha512-m16TQQJ8hPt7E+OS/XVQg/7U184MLXtvuGbCdA7na61vha+ImkyyNM/9DDA0unYCVZn3ZOhng+qz48/KBOT96A==",
"requires": {
- "@babel/types": "^7.12.1",
+ "@babel/types": "^7.12.5",
"jsesc": "^2.5.1",
"source-map": "^0.5.0"
}
@@ -1079,11 +1025,11 @@
}
},
"@babel/helper-module-imports": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.12.1.tgz",
- "integrity": "sha512-ZeC1TlMSvikvJNy1v/wPIazCu3NdOwgYZLIkmIyAsGhqkNpiDoQQRmaCK8YP4Pq3GPTLPV9WXaPCJKvx06JxKA==",
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.12.5.tgz",
+ "integrity": "sha512-SR713Ogqg6++uexFRORf/+nPXMmWIn80TALu0uaFb+iQIUoR7bOC7zBWyzBs5b3tBBJXuyD0cRu1F15GyzjOWA==",
"requires": {
- "@babel/types": "^7.12.1"
+ "@babel/types": "^7.12.5"
}
},
"@babel/helper-module-transforms": {
@@ -1103,14 +1049,14 @@
}
},
"@babel/helper-replace-supers": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.12.1.tgz",
- "integrity": "sha512-zJjTvtNJnCFsCXVi5rUInstLd/EIVNmIKA1Q9ynESmMBWPWd+7sdR+G4/wdu+Mppfep0XLyG2m7EBPvjCeFyrw==",
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.12.5.tgz",
+ "integrity": "sha512-5YILoed0ZyIpF4gKcpZitEnXEJ9UoDRki1Ey6xz46rxOzfNMAhVIJMoune1hmPVxh40LRv1+oafz7UsWX+vyWA==",
"requires": {
"@babel/helper-member-expression-to-functions": "^7.12.1",
"@babel/helper-optimise-call-expression": "^7.10.4",
- "@babel/traverse": "^7.12.1",
- "@babel/types": "^7.12.1"
+ "@babel/traverse": "^7.12.5",
+ "@babel/types": "^7.12.5"
}
},
"@babel/helper-simple-access": {
@@ -1122,40 +1068,35 @@
}
},
"@babel/parser": {
- "version": "7.12.3",
- "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.12.3.tgz",
- "integrity": "sha512-kFsOS0IbsuhO5ojF8Hc8z/8vEIOkylVBrjiZUbLTE3XFe0Qi+uu6HjzQixkFaqr0ZPAMZcBVxEwmsnsLPZ2Xsw=="
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.12.5.tgz",
+ "integrity": "sha512-FVM6RZQ0mn2KCf1VUED7KepYeUWoVShczewOCfm3nzoBybaih51h+sYVVGthW9M6lPByEPTQf+xm27PBdlpwmQ=="
},
"@babel/traverse": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.12.1.tgz",
- "integrity": "sha512-MA3WPoRt1ZHo2ZmoGKNqi20YnPt0B1S0GTZEPhhd+hw2KGUzBlHuVunj6K4sNuK+reEvyiPwtp0cpaqLzJDmAw==",
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.12.5.tgz",
+ "integrity": "sha512-xa15FbQnias7z9a62LwYAA5SZZPkHIXpd42C6uW68o8uTuua96FHZy1y61Va5P/i83FAAcMpW8+A/QayntzuqA==",
"requires": {
"@babel/code-frame": "^7.10.4",
- "@babel/generator": "^7.12.1",
+ "@babel/generator": "^7.12.5",
"@babel/helper-function-name": "^7.10.4",
"@babel/helper-split-export-declaration": "^7.11.0",
- "@babel/parser": "^7.12.1",
- "@babel/types": "^7.12.1",
+ "@babel/parser": "^7.12.5",
+ "@babel/types": "^7.12.5",
"debug": "^4.1.0",
"globals": "^11.1.0",
"lodash": "^4.17.19"
}
},
"@babel/types": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.12.1.tgz",
- "integrity": "sha512-BzSY3NJBKM4kyatSOWh3D/JJ2O3CVzBybHWxtgxnggaxEuaSTTDqeiSb/xk9lrkw2Tbqyivw5ZU4rT+EfznQsA==",
+ "version": "7.12.6",
+ "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.12.6.tgz",
+ "integrity": "sha512-hwyjw6GvjBLiyy3W0YQf0Z5Zf4NpYejUnKFcfcUhZCSffoBBp30w6wP2Wn6pk31jMYZvcOrB/1b7cGXvEoKogA==",
"requires": {
"@babel/helper-validator-identifier": "^7.10.4",
"lodash": "^4.17.19",
"to-fast-properties": "^2.0.0"
}
- },
- "lodash": {
- "version": "4.17.20",
- "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.20.tgz",
- "integrity": "sha512-PlhdFcillOINfeV7Ni6oF1TAEayyZBoZ8bcshTHqOYJYlrqzRK5hagpagky5o4HfCzzd1TRkXPMFq6cKk9rGmA=="
}
}
},
@@ -1172,11 +1113,11 @@
},
"dependencies": {
"@babel/generator": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.12.1.tgz",
- "integrity": "sha512-DB+6rafIdc9o72Yc3/Ph5h+6hUjeOp66pF0naQBgUFFuPqzQwIlPTm3xZR7YNvduIMtkDIj2t21LSQwnbCrXvg==",
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.12.5.tgz",
+ "integrity": "sha512-m16TQQJ8hPt7E+OS/XVQg/7U184MLXtvuGbCdA7na61vha+ImkyyNM/9DDA0unYCVZn3ZOhng+qz48/KBOT96A==",
"requires": {
- "@babel/types": "^7.12.1",
+ "@babel/types": "^7.12.5",
"jsesc": "^2.5.1",
"source-map": "^0.5.0"
}
@@ -1190,11 +1131,11 @@
}
},
"@babel/helper-module-imports": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.12.1.tgz",
- "integrity": "sha512-ZeC1TlMSvikvJNy1v/wPIazCu3NdOwgYZLIkmIyAsGhqkNpiDoQQRmaCK8YP4Pq3GPTLPV9WXaPCJKvx06JxKA==",
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.12.5.tgz",
+ "integrity": "sha512-SR713Ogqg6++uexFRORf/+nPXMmWIn80TALu0uaFb+iQIUoR7bOC7zBWyzBs5b3tBBJXuyD0cRu1F15GyzjOWA==",
"requires": {
- "@babel/types": "^7.12.1"
+ "@babel/types": "^7.12.5"
}
},
"@babel/helper-module-transforms": {
@@ -1214,14 +1155,14 @@
}
},
"@babel/helper-replace-supers": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.12.1.tgz",
- "integrity": "sha512-zJjTvtNJnCFsCXVi5rUInstLd/EIVNmIKA1Q9ynESmMBWPWd+7sdR+G4/wdu+Mppfep0XLyG2m7EBPvjCeFyrw==",
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.12.5.tgz",
+ "integrity": "sha512-5YILoed0ZyIpF4gKcpZitEnXEJ9UoDRki1Ey6xz46rxOzfNMAhVIJMoune1hmPVxh40LRv1+oafz7UsWX+vyWA==",
"requires": {
"@babel/helper-member-expression-to-functions": "^7.12.1",
"@babel/helper-optimise-call-expression": "^7.10.4",
- "@babel/traverse": "^7.12.1",
- "@babel/types": "^7.12.1"
+ "@babel/traverse": "^7.12.5",
+ "@babel/types": "^7.12.5"
}
},
"@babel/helper-simple-access": {
@@ -1233,40 +1174,35 @@
}
},
"@babel/parser": {
- "version": "7.12.3",
- "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.12.3.tgz",
- "integrity": "sha512-kFsOS0IbsuhO5ojF8Hc8z/8vEIOkylVBrjiZUbLTE3XFe0Qi+uu6HjzQixkFaqr0ZPAMZcBVxEwmsnsLPZ2Xsw=="
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.12.5.tgz",
+ "integrity": "sha512-FVM6RZQ0mn2KCf1VUED7KepYeUWoVShczewOCfm3nzoBybaih51h+sYVVGthW9M6lPByEPTQf+xm27PBdlpwmQ=="
},
"@babel/traverse": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.12.1.tgz",
- "integrity": "sha512-MA3WPoRt1ZHo2ZmoGKNqi20YnPt0B1S0GTZEPhhd+hw2KGUzBlHuVunj6K4sNuK+reEvyiPwtp0cpaqLzJDmAw==",
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.12.5.tgz",
+ "integrity": "sha512-xa15FbQnias7z9a62LwYAA5SZZPkHIXpd42C6uW68o8uTuua96FHZy1y61Va5P/i83FAAcMpW8+A/QayntzuqA==",
"requires": {
"@babel/code-frame": "^7.10.4",
- "@babel/generator": "^7.12.1",
+ "@babel/generator": "^7.12.5",
"@babel/helper-function-name": "^7.10.4",
"@babel/helper-split-export-declaration": "^7.11.0",
- "@babel/parser": "^7.12.1",
- "@babel/types": "^7.12.1",
+ "@babel/parser": "^7.12.5",
+ "@babel/types": "^7.12.5",
"debug": "^4.1.0",
"globals": "^11.1.0",
"lodash": "^4.17.19"
}
},
"@babel/types": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.12.1.tgz",
- "integrity": "sha512-BzSY3NJBKM4kyatSOWh3D/JJ2O3CVzBybHWxtgxnggaxEuaSTTDqeiSb/xk9lrkw2Tbqyivw5ZU4rT+EfznQsA==",
+ "version": "7.12.6",
+ "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.12.6.tgz",
+ "integrity": "sha512-hwyjw6GvjBLiyy3W0YQf0Z5Zf4NpYejUnKFcfcUhZCSffoBBp30w6wP2Wn6pk31jMYZvcOrB/1b7cGXvEoKogA==",
"requires": {
"@babel/helper-validator-identifier": "^7.10.4",
"lodash": "^4.17.19",
"to-fast-properties": "^2.0.0"
}
- },
- "lodash": {
- "version": "4.17.20",
- "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.20.tgz",
- "integrity": "sha512-PlhdFcillOINfeV7Ni6oF1TAEayyZBoZ8bcshTHqOYJYlrqzRK5hagpagky5o4HfCzzd1TRkXPMFq6cKk9rGmA=="
}
}
},
@@ -1280,11 +1216,11 @@
},
"dependencies": {
"@babel/generator": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.12.1.tgz",
- "integrity": "sha512-DB+6rafIdc9o72Yc3/Ph5h+6hUjeOp66pF0naQBgUFFuPqzQwIlPTm3xZR7YNvduIMtkDIj2t21LSQwnbCrXvg==",
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.12.5.tgz",
+ "integrity": "sha512-m16TQQJ8hPt7E+OS/XVQg/7U184MLXtvuGbCdA7na61vha+ImkyyNM/9DDA0unYCVZn3ZOhng+qz48/KBOT96A==",
"requires": {
- "@babel/types": "^7.12.1",
+ "@babel/types": "^7.12.5",
"jsesc": "^2.5.1",
"source-map": "^0.5.0"
}
@@ -1298,11 +1234,11 @@
}
},
"@babel/helper-module-imports": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.12.1.tgz",
- "integrity": "sha512-ZeC1TlMSvikvJNy1v/wPIazCu3NdOwgYZLIkmIyAsGhqkNpiDoQQRmaCK8YP4Pq3GPTLPV9WXaPCJKvx06JxKA==",
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.12.5.tgz",
+ "integrity": "sha512-SR713Ogqg6++uexFRORf/+nPXMmWIn80TALu0uaFb+iQIUoR7bOC7zBWyzBs5b3tBBJXuyD0cRu1F15GyzjOWA==",
"requires": {
- "@babel/types": "^7.12.1"
+ "@babel/types": "^7.12.5"
}
},
"@babel/helper-module-transforms": {
@@ -1322,14 +1258,14 @@
}
},
"@babel/helper-replace-supers": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.12.1.tgz",
- "integrity": "sha512-zJjTvtNJnCFsCXVi5rUInstLd/EIVNmIKA1Q9ynESmMBWPWd+7sdR+G4/wdu+Mppfep0XLyG2m7EBPvjCeFyrw==",
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.12.5.tgz",
+ "integrity": "sha512-5YILoed0ZyIpF4gKcpZitEnXEJ9UoDRki1Ey6xz46rxOzfNMAhVIJMoune1hmPVxh40LRv1+oafz7UsWX+vyWA==",
"requires": {
"@babel/helper-member-expression-to-functions": "^7.12.1",
"@babel/helper-optimise-call-expression": "^7.10.4",
- "@babel/traverse": "^7.12.1",
- "@babel/types": "^7.12.1"
+ "@babel/traverse": "^7.12.5",
+ "@babel/types": "^7.12.5"
}
},
"@babel/helper-simple-access": {
@@ -1341,40 +1277,35 @@
}
},
"@babel/parser": {
- "version": "7.12.3",
- "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.12.3.tgz",
- "integrity": "sha512-kFsOS0IbsuhO5ojF8Hc8z/8vEIOkylVBrjiZUbLTE3XFe0Qi+uu6HjzQixkFaqr0ZPAMZcBVxEwmsnsLPZ2Xsw=="
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.12.5.tgz",
+ "integrity": "sha512-FVM6RZQ0mn2KCf1VUED7KepYeUWoVShczewOCfm3nzoBybaih51h+sYVVGthW9M6lPByEPTQf+xm27PBdlpwmQ=="
},
"@babel/traverse": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.12.1.tgz",
- "integrity": "sha512-MA3WPoRt1ZHo2ZmoGKNqi20YnPt0B1S0GTZEPhhd+hw2KGUzBlHuVunj6K4sNuK+reEvyiPwtp0cpaqLzJDmAw==",
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.12.5.tgz",
+ "integrity": "sha512-xa15FbQnias7z9a62LwYAA5SZZPkHIXpd42C6uW68o8uTuua96FHZy1y61Va5P/i83FAAcMpW8+A/QayntzuqA==",
"requires": {
"@babel/code-frame": "^7.10.4",
- "@babel/generator": "^7.12.1",
+ "@babel/generator": "^7.12.5",
"@babel/helper-function-name": "^7.10.4",
"@babel/helper-split-export-declaration": "^7.11.0",
- "@babel/parser": "^7.12.1",
- "@babel/types": "^7.12.1",
+ "@babel/parser": "^7.12.5",
+ "@babel/types": "^7.12.5",
"debug": "^4.1.0",
"globals": "^11.1.0",
"lodash": "^4.17.19"
}
},
"@babel/types": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.12.1.tgz",
- "integrity": "sha512-BzSY3NJBKM4kyatSOWh3D/JJ2O3CVzBybHWxtgxnggaxEuaSTTDqeiSb/xk9lrkw2Tbqyivw5ZU4rT+EfznQsA==",
+ "version": "7.12.6",
+ "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.12.6.tgz",
+ "integrity": "sha512-hwyjw6GvjBLiyy3W0YQf0Z5Zf4NpYejUnKFcfcUhZCSffoBBp30w6wP2Wn6pk31jMYZvcOrB/1b7cGXvEoKogA==",
"requires": {
"@babel/helper-validator-identifier": "^7.10.4",
"lodash": "^4.17.19",
"to-fast-properties": "^2.0.0"
}
- },
- "lodash": {
- "version": "4.17.20",
- "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.20.tgz",
- "integrity": "sha512-PlhdFcillOINfeV7Ni6oF1TAEayyZBoZ8bcshTHqOYJYlrqzRK5hagpagky5o4HfCzzd1TRkXPMFq6cKk9rGmA=="
}
}
},
@@ -1404,11 +1335,11 @@
},
"dependencies": {
"@babel/generator": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.12.1.tgz",
- "integrity": "sha512-DB+6rafIdc9o72Yc3/Ph5h+6hUjeOp66pF0naQBgUFFuPqzQwIlPTm3xZR7YNvduIMtkDIj2t21LSQwnbCrXvg==",
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.12.5.tgz",
+ "integrity": "sha512-m16TQQJ8hPt7E+OS/XVQg/7U184MLXtvuGbCdA7na61vha+ImkyyNM/9DDA0unYCVZn3ZOhng+qz48/KBOT96A==",
"requires": {
- "@babel/types": "^7.12.1",
+ "@babel/types": "^7.12.5",
"jsesc": "^2.5.1",
"source-map": "^0.5.0"
}
@@ -1422,51 +1353,46 @@
}
},
"@babel/helper-replace-supers": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.12.1.tgz",
- "integrity": "sha512-zJjTvtNJnCFsCXVi5rUInstLd/EIVNmIKA1Q9ynESmMBWPWd+7sdR+G4/wdu+Mppfep0XLyG2m7EBPvjCeFyrw==",
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.12.5.tgz",
+ "integrity": "sha512-5YILoed0ZyIpF4gKcpZitEnXEJ9UoDRki1Ey6xz46rxOzfNMAhVIJMoune1hmPVxh40LRv1+oafz7UsWX+vyWA==",
"requires": {
"@babel/helper-member-expression-to-functions": "^7.12.1",
"@babel/helper-optimise-call-expression": "^7.10.4",
- "@babel/traverse": "^7.12.1",
- "@babel/types": "^7.12.1"
+ "@babel/traverse": "^7.12.5",
+ "@babel/types": "^7.12.5"
}
},
"@babel/parser": {
- "version": "7.12.3",
- "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.12.3.tgz",
- "integrity": "sha512-kFsOS0IbsuhO5ojF8Hc8z/8vEIOkylVBrjiZUbLTE3XFe0Qi+uu6HjzQixkFaqr0ZPAMZcBVxEwmsnsLPZ2Xsw=="
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.12.5.tgz",
+ "integrity": "sha512-FVM6RZQ0mn2KCf1VUED7KepYeUWoVShczewOCfm3nzoBybaih51h+sYVVGthW9M6lPByEPTQf+xm27PBdlpwmQ=="
},
"@babel/traverse": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.12.1.tgz",
- "integrity": "sha512-MA3WPoRt1ZHo2ZmoGKNqi20YnPt0B1S0GTZEPhhd+hw2KGUzBlHuVunj6K4sNuK+reEvyiPwtp0cpaqLzJDmAw==",
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.12.5.tgz",
+ "integrity": "sha512-xa15FbQnias7z9a62LwYAA5SZZPkHIXpd42C6uW68o8uTuua96FHZy1y61Va5P/i83FAAcMpW8+A/QayntzuqA==",
"requires": {
"@babel/code-frame": "^7.10.4",
- "@babel/generator": "^7.12.1",
+ "@babel/generator": "^7.12.5",
"@babel/helper-function-name": "^7.10.4",
"@babel/helper-split-export-declaration": "^7.11.0",
- "@babel/parser": "^7.12.1",
- "@babel/types": "^7.12.1",
+ "@babel/parser": "^7.12.5",
+ "@babel/types": "^7.12.5",
"debug": "^4.1.0",
"globals": "^11.1.0",
"lodash": "^4.17.19"
}
},
"@babel/types": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.12.1.tgz",
- "integrity": "sha512-BzSY3NJBKM4kyatSOWh3D/JJ2O3CVzBybHWxtgxnggaxEuaSTTDqeiSb/xk9lrkw2Tbqyivw5ZU4rT+EfznQsA==",
+ "version": "7.12.6",
+ "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.12.6.tgz",
+ "integrity": "sha512-hwyjw6GvjBLiyy3W0YQf0Z5Zf4NpYejUnKFcfcUhZCSffoBBp30w6wP2Wn6pk31jMYZvcOrB/1b7cGXvEoKogA==",
"requires": {
"@babel/helper-validator-identifier": "^7.10.4",
"lodash": "^4.17.19",
"to-fast-properties": "^2.0.0"
}
- },
- "lodash": {
- "version": "4.17.20",
- "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.20.tgz",
- "integrity": "sha512-PlhdFcillOINfeV7Ni6oF1TAEayyZBoZ8bcshTHqOYJYlrqzRK5hagpagky5o4HfCzzd1TRkXPMFq6cKk9rGmA=="
}
}
},
@@ -1496,9 +1422,9 @@
}
},
"@babel/plugin-transform-react-jsx": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.12.1.tgz",
- "integrity": "sha512-RmKejwnT0T0QzQUzcbP5p1VWlpnP8QHtdhEtLG55ZDQnJNalbF3eeDyu3dnGKvGzFIQiBzFhBYTwvv435p9Xpw==",
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.12.5.tgz",
+ "integrity": "sha512-2xkcPqqrYiOQgSlM/iwto1paPijjsDbUynN13tI6bosDz/jOW3CRzYguIE8wKX32h+msbBM22Dv5fwrFkUOZjQ==",
"requires": {
"@babel/helper-builder-react-jsx": "^7.10.4",
"@babel/helper-builder-react-jsx-experimental": "^7.12.1",
@@ -1517,9 +1443,9 @@
}
},
"@babel/plugin-transform-react-jsx-development": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.12.1.tgz",
- "integrity": "sha512-IilcGWdN1yNgEGOrB96jbTplRh+V2Pz1EoEwsKsHfX1a/L40cUYuD71Zepa7C+ujv7kJIxnDftWeZbKNEqZjCQ==",
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.12.5.tgz",
+ "integrity": "sha512-1JJusg3iPgsZDthyWiCr3KQiGs31ikU/mSf2N2dSYEAO0GEImmVUbWf0VoSDGDFTAn5Dj4DUiR6SdIXHY7tELA==",
"requires": {
"@babel/helper-builder-react-jsx-experimental": "^7.12.1",
"@babel/helper-plugin-utils": "^7.10.4",
@@ -1589,27 +1515,22 @@
},
"dependencies": {
"@babel/helper-module-imports": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.12.1.tgz",
- "integrity": "sha512-ZeC1TlMSvikvJNy1v/wPIazCu3NdOwgYZLIkmIyAsGhqkNpiDoQQRmaCK8YP4Pq3GPTLPV9WXaPCJKvx06JxKA==",
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.12.5.tgz",
+ "integrity": "sha512-SR713Ogqg6++uexFRORf/+nPXMmWIn80TALu0uaFb+iQIUoR7bOC7zBWyzBs5b3tBBJXuyD0cRu1F15GyzjOWA==",
"requires": {
- "@babel/types": "^7.12.1"
+ "@babel/types": "^7.12.5"
}
},
"@babel/types": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.12.1.tgz",
- "integrity": "sha512-BzSY3NJBKM4kyatSOWh3D/JJ2O3CVzBybHWxtgxnggaxEuaSTTDqeiSb/xk9lrkw2Tbqyivw5ZU4rT+EfznQsA==",
+ "version": "7.12.6",
+ "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.12.6.tgz",
+ "integrity": "sha512-hwyjw6GvjBLiyy3W0YQf0Z5Zf4NpYejUnKFcfcUhZCSffoBBp30w6wP2Wn6pk31jMYZvcOrB/1b7cGXvEoKogA==",
"requires": {
"@babel/helper-validator-identifier": "^7.10.4",
"lodash": "^4.17.19",
"to-fast-properties": "^2.0.0"
}
- },
- "lodash": {
- "version": "4.17.20",
- "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.20.tgz",
- "integrity": "sha512-PlhdFcillOINfeV7Ni6oF1TAEayyZBoZ8bcshTHqOYJYlrqzRK5hagpagky5o4HfCzzd1TRkXPMFq6cKk9rGmA=="
}
}
},
@@ -1756,11 +1677,11 @@
},
"dependencies": {
"@babel/helper-module-imports": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.12.1.tgz",
- "integrity": "sha512-ZeC1TlMSvikvJNy1v/wPIazCu3NdOwgYZLIkmIyAsGhqkNpiDoQQRmaCK8YP4Pq3GPTLPV9WXaPCJKvx06JxKA==",
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.12.5.tgz",
+ "integrity": "sha512-SR713Ogqg6++uexFRORf/+nPXMmWIn80TALu0uaFb+iQIUoR7bOC7zBWyzBs5b3tBBJXuyD0cRu1F15GyzjOWA==",
"requires": {
- "@babel/types": "^7.12.1"
+ "@babel/types": "^7.12.5"
}
},
"@babel/plugin-proposal-object-rest-spread": {
@@ -1782,19 +1703,14 @@
}
},
"@babel/types": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.12.1.tgz",
- "integrity": "sha512-BzSY3NJBKM4kyatSOWh3D/JJ2O3CVzBybHWxtgxnggaxEuaSTTDqeiSb/xk9lrkw2Tbqyivw5ZU4rT+EfznQsA==",
+ "version": "7.12.6",
+ "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.12.6.tgz",
+ "integrity": "sha512-hwyjw6GvjBLiyy3W0YQf0Z5Zf4NpYejUnKFcfcUhZCSffoBBp30w6wP2Wn6pk31jMYZvcOrB/1b7cGXvEoKogA==",
"requires": {
"@babel/helper-validator-identifier": "^7.10.4",
"lodash": "^4.17.19",
"to-fast-properties": "^2.0.0"
}
- },
- "lodash": {
- "version": "4.17.20",
- "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.20.tgz",
- "integrity": "sha512-PlhdFcillOINfeV7Ni6oF1TAEayyZBoZ8bcshTHqOYJYlrqzRK5hagpagky5o4HfCzzd1TRkXPMFq6cKk9rGmA=="
}
}
},
@@ -1811,14 +1727,14 @@
}
},
"@babel/preset-react": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/preset-react/-/preset-react-7.12.1.tgz",
- "integrity": "sha512-euCExymHCi0qB9u5fKw7rvlw7AZSjw/NaB9h7EkdTt5+yHRrXdiRTh7fkG3uBPpJg82CqLfp1LHLqWGSCrab+g==",
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/preset-react/-/preset-react-7.12.5.tgz",
+ "integrity": "sha512-jcs++VPrgyFehkMezHtezS2BpnUlR7tQFAyesJn1vGTO9aTFZrgIQrA5YydlTwxbcjMwkFY6i04flCigRRr3GA==",
"requires": {
"@babel/helper-plugin-utils": "^7.10.4",
"@babel/plugin-transform-react-display-name": "^7.12.1",
- "@babel/plugin-transform-react-jsx": "^7.12.1",
- "@babel/plugin-transform-react-jsx-development": "^7.12.1",
+ "@babel/plugin-transform-react-jsx": "^7.12.5",
+ "@babel/plugin-transform-react-jsx-development": "^7.12.5",
"@babel/plugin-transform-react-jsx-self": "^7.12.1",
"@babel/plugin-transform-react-jsx-source": "^7.12.1",
"@babel/plugin-transform-react-pure-annotations": "^7.12.1"
@@ -1842,18 +1758,18 @@
}
},
"@babel/runtime-corejs3": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/runtime-corejs3/-/runtime-corejs3-7.12.1.tgz",
- "integrity": "sha512-umhPIcMrlBZ2aTWlWjUseW9LjQKxi1dpFlQS8DzsxB//5K+u6GLTC/JliPKHsd5kJVPIU6X/Hy0YvWOYPcMxBw==",
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/runtime-corejs3/-/runtime-corejs3-7.12.5.tgz",
+ "integrity": "sha512-roGr54CsTmNPPzZoCP1AmDXuBoNao7tnSA83TXTwt+UK5QVyh1DIJnrgYRPWKCF2flqZQXwa7Yr8v7VmLzF0YQ==",
"requires": {
"core-js-pure": "^3.0.0",
"regenerator-runtime": "^0.13.4"
}
},
"@babel/standalone": {
- "version": "7.12.4",
- "resolved": "https://registry.npmjs.org/@babel/standalone/-/standalone-7.12.4.tgz",
- "integrity": "sha512-9vw7RYK7CWh5MdTfLyC7j6hZmDYmm6DieFP4yetvpVftKQ+yrEY7ovhnhsVHznLqx5luU9Bx4k7xoEc3acrsow=="
+ "version": "7.12.6",
+ "resolved": "https://registry.npmjs.org/@babel/standalone/-/standalone-7.12.6.tgz",
+ "integrity": "sha512-yA/OV3jN1nhr0JsAdYWAqbeZ7cAOw/6Fh52rxVMzujr0HF4Z3cau0JBzJfQppFfR9IArrUtcqhBu/+Q/IevoyQ=="
},
"@babel/template": {
"version": "7.10.4",
@@ -1905,6 +1821,24 @@
}
}
},
+ "@endemolshinegroup/cosmiconfig-typescript-loader": {
+ "version": "3.0.2",
+ "resolved": "https://registry.npmjs.org/@endemolshinegroup/cosmiconfig-typescript-loader/-/cosmiconfig-typescript-loader-3.0.2.tgz",
+ "integrity": "sha512-QRVtqJuS1mcT56oHpVegkKBlgtWjXw/gHNWO3eL9oyB5Sc7HBoc2OLG/nYpVfT/Jejvo3NUrD0Udk7XgoyDKkA==",
+ "requires": {
+ "lodash.get": "^4",
+ "make-error": "^1",
+ "ts-node": "^9",
+ "tslib": "^2"
+ },
+ "dependencies": {
+ "tslib": {
+ "version": "2.0.3",
+ "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.0.3.tgz",
+ "integrity": "sha512-uZtkfKblCEQtZKBF6EBXVZeQNl82yqtDQdv+eck8u7tdPxjLu2/lp5/uPW+um2tpuxINHWy3GhiccY7QgEaVHQ=="
+ }
+ }
+ },
"@graphql-tools/batch-execute": {
"version": "7.0.0",
"resolved": "https://registry.npmjs.org/@graphql-tools/batch-execute/-/batch-execute-7.0.0.tgz",
@@ -1934,9 +1868,9 @@
}
},
"@graphql-tools/delegate": {
- "version": "7.0.3",
- "resolved": "https://registry.npmjs.org/@graphql-tools/delegate/-/delegate-7.0.3.tgz",
- "integrity": "sha512-BSRF/Wg9XNllWo3Kdt0QBBaFltexn3vAnTOWH1qLrNcmfQAvUMf17/TsAqH9ZLSKU1NW9XCOsd7YMHhhUuTCEg==",
+ "version": "7.0.4",
+ "resolved": "https://registry.npmjs.org/@graphql-tools/delegate/-/delegate-7.0.4.tgz",
+ "integrity": "sha512-6/qL9V31FgECNPwc5As1359hpsAt4ASWsiYBSYWL+Iq9/K0YRcNeEmSseXIyCP4oh8k/9HS/w/m2lkMk/YSUpQ==",
"requires": {
"@ardatan/aggregate-error": "0.0.6",
"@graphql-tools/batch-execute": "^7.0.0",
@@ -2245,9 +2179,9 @@
}
},
"@graphql-tools/url-loader": {
- "version": "6.3.2",
- "resolved": "https://registry.npmjs.org/@graphql-tools/url-loader/-/url-loader-6.3.2.tgz",
- "integrity": "sha512-nrrZD33T7lFeOjIufCrwk2PAHYqFtdFcb1pe1ULWnvuFmFuhZnRCgIsfCsoy+WOMwmZHQ/eXBem//I/bewXlgw==",
+ "version": "6.4.0",
+ "resolved": "https://registry.npmjs.org/@graphql-tools/url-loader/-/url-loader-6.4.0.tgz",
+ "integrity": "sha512-M3mS/VH6vpnai3b3Fa33kYcdCgZvhFh7RqFE1R3NMfhYjphQ10EWwgf31P+VQcBNB2zz+ubxttI6UcJLiGqwuQ==",
"requires": {
"@graphql-tools/delegate": "^7.0.1",
"@graphql-tools/utils": "^7.0.1",
@@ -2255,6 +2189,7 @@
"@types/websocket": "1.0.1",
"cross-fetch": "3.0.6",
"subscriptions-transport-ws": "0.9.18",
+ "sync-fetch": "0.3.0",
"tslib": "~2.0.1",
"valid-url": "1.0.9",
"websocket": "1.0.32"
@@ -2357,6 +2292,11 @@
"@hapi/hoek": "^8.3.0"
}
},
+ "@iarna/toml": {
+ "version": "2.2.5",
+ "resolved": "https://registry.npmjs.org/@iarna/toml/-/toml-2.2.5.tgz",
+ "integrity": "sha512-trnsAYxU3xnS1gPHPyU961coFyLkh4gAD/0zQ5mymY4yOZ+CYvsPqUbOFSw0aDM4y0tV7tiFxL/1XfXPNC6IPg=="
+ },
"@jest/types": {
"version": "25.5.0",
"resolved": "https://registry.npmjs.org/@jest/types/-/types-25.5.0.tgz",
@@ -3073,9 +3013,9 @@
}
},
"@types/node": {
- "version": "14.0.19",
- "resolved": "https://registry.npmjs.org/@types/node/-/node-14.0.19.tgz",
- "integrity": "sha512-yf3BP/NIXF37BjrK5klu//asUWitOEoUP5xE1mhSUjazotwJ/eJDgEmMQNlOeWOVv72j24QQ+3bqXHE++CFGag=="
+ "version": "14.14.6",
+ "resolved": "https://registry.npmjs.org/@types/node/-/node-14.14.6.tgz",
+ "integrity": "sha512-6QlRuqsQ/Ox/aJEQWBEJG7A9+u7oSYl3mem/K8IzxXG/kAGbV1YPD9Bg9Zw3vyxC/YP+zONKwy8hGkSt1jxFMw=="
},
"@types/node-fetch": {
"version": "2.5.7",
@@ -3629,6 +3569,11 @@
"readable-stream": "^2.0.6"
}
},
+ "arg": {
+ "version": "4.1.3",
+ "resolved": "https://registry.npmjs.org/arg/-/arg-4.1.3.tgz",
+ "integrity": "sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA=="
+ },
"argparse": {
"version": "1.0.10",
"resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz",
@@ -4086,9 +4031,9 @@
"integrity": "sha512-eqj0hVcJUR57/Ug2zE1Yswsw4LhuqqHhD+8v120T1cl3kjg76QwtyBrdIk4WVwK+lAhBJVYCd/v+4nc4y+8JsA=="
},
"babel-preset-gatsby": {
- "version": "0.5.15",
- "resolved": "https://registry.npmjs.org/babel-preset-gatsby/-/babel-preset-gatsby-0.5.15.tgz",
- "integrity": "sha512-0eno/GAvzmaLW/s+RzsLXrZVQwBMZYU/zMv1HpArGlYbNCon/fK53/Bz3pklJDq1pNAybXQ2RROpPHDyJM2EGA==",
+ "version": "0.5.16",
+ "resolved": "https://registry.npmjs.org/babel-preset-gatsby/-/babel-preset-gatsby-0.5.16.tgz",
+ "integrity": "sha512-zcUYvHRnDxwQmzJnkWtHk4x7cGaMbQjTJIKrvCWpS9u10hQOQUNAz/ZKSH1vUmB4oYap6m+sHDoDIr7PNoCAEQ==",
"requires": {
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.10.4",
@@ -4102,14 +4047,14 @@
"babel-plugin-dynamic-import-node": "^2.3.3",
"babel-plugin-macros": "^2.8.0",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
- "gatsby-core-utils": "^1.3.23",
+ "gatsby-core-utils": "^1.3.24",
"gatsby-legacy-polyfills": "^0.0.6"
},
"dependencies": {
"@babel/runtime": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.1.tgz",
- "integrity": "sha512-J5AIf3vPj3UwXaAzb5j1xM4WAQDX3EMgemF8rjCP3SoW09LfRKAXQKt6CoVYl230P6iWdRcBbnLDDdnqWxZSCA==",
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.5.tgz",
+ "integrity": "sha512-plcc+hbExy3McchJCEQG3knOsuh3HH+Prx1P6cLIkET/0dLuQDEnrT+s27Axgc9bqfsmNUNHfscgMUdBpC9xfg==",
"requires": {
"regenerator-runtime": "^0.13.4"
}
@@ -4125,6 +4070,11 @@
"regenerator-runtime": "^0.11.0"
},
"dependencies": {
+ "core-js": {
+ "version": "2.6.11",
+ "resolved": "https://registry.npmjs.org/core-js/-/core-js-2.6.11.tgz",
+ "integrity": "sha512-5wjnpaT/3dV+XB4borEsnAYQchn00XSgTAWKDkEqv+K8KevjbzmofK6hfJ9TZIlpj2N0xQpazy7PiRQiWHqzWg=="
+ },
"regenerator-runtime": {
"version": "0.11.1",
"resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz",
@@ -5169,9 +5119,9 @@
}
},
"caniuse-lite": {
- "version": "1.0.30001154",
- "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001154.tgz",
- "integrity": "sha512-y9DvdSti8NnYB9Be92ddMZQrcOe04kcQtcxtBx4NkB04+qZ+JUWotnXBJTmxlKudhxNTQ3RRknMwNU2YQl/Org=="
+ "version": "1.0.30001156",
+ "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001156.tgz",
+ "integrity": "sha512-z7qztybA2eFZTB6Z3yvaQBIoJpQtsewRD74adw2UbRWwsRq3jIPvgrQGawBMbfafekQaD21FWuXNcywtTDGGCw=="
},
"caseless": {
"version": "0.12.0",
@@ -5992,9 +5942,9 @@
}
},
"core-js": {
- "version": "2.6.11",
- "resolved": "https://registry.npmjs.org/core-js/-/core-js-2.6.11.tgz",
- "integrity": "sha512-5wjnpaT/3dV+XB4borEsnAYQchn00XSgTAWKDkEqv+K8KevjbzmofK6hfJ9TZIlpj2N0xQpazy7PiRQiWHqzWg=="
+ "version": "3.6.5",
+ "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.6.5.tgz",
+ "integrity": "sha512-vZVEEwZoIsI+vPEuoF9Iqf5H7/M3eeQqWlQnYa8FSKKePuYTf5MWnxb5SDAzCa60b3JBRS5g9b+Dq7b1y/RCrA=="
},
"core-js-compat": {
"version": "3.6.5",
@@ -6043,6 +5993,14 @@
"yaml": "^1.7.2"
}
},
+ "cosmiconfig-toml-loader": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/cosmiconfig-toml-loader/-/cosmiconfig-toml-loader-1.0.0.tgz",
+ "integrity": "sha512-H/2gurFWVi7xXvCyvsWRLCMekl4tITJcX0QEsDMpzxtuxDyM59xLatYNg4s/k9AA/HdtCYfj2su8mgA0GSDLDA==",
+ "requires": {
+ "@iarna/toml": "^2.2.5"
+ }
+ },
"create-ecdh": {
"version": "4.0.4",
"resolved": "https://registry.npmjs.org/create-ecdh/-/create-ecdh-4.0.4.tgz",
@@ -6913,6 +6871,11 @@
}
}
},
+ "diff": {
+ "version": "4.0.2",
+ "resolved": "https://registry.npmjs.org/diff/-/diff-4.0.2.tgz",
+ "integrity": "sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A=="
+ },
"diff-sequences": {
"version": "25.2.6",
"resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-25.2.6.tgz",
@@ -6991,9 +6954,9 @@
},
"dependencies": {
"domelementtype": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.0.1.tgz",
- "integrity": "sha512-5HOHUDsYZWV8FGWN0Njbr/Rn7f/eWSQi1v7+HsUVwXgn8nWWlL64zKDkS0n8ZmQ3mlWOMuXOnR+7Nx/5tMO5AQ=="
+ "version": "2.0.2",
+ "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.0.2.tgz",
+ "integrity": "sha512-wFwTwCVebUrMgGeAwRL/NhZtHAUyT9n9yg4IMDwf10+6iCMxSkVq9MGCVEH+QZWo1nNidy8kNvwmv4zWHDTqvA=="
}
}
},
@@ -7209,9 +7172,9 @@
"integrity": "sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0="
},
"electron-to-chromium": {
- "version": "1.3.586",
- "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.586.tgz",
- "integrity": "sha512-or8FCbQCRlPZHkOoqBULOI9hzTiStVIQqDLgAPt8pzY+swTrW+89vsqd24Zn+Iv4guAJLxRBD6OR5AmbpabGDA=="
+ "version": "1.3.588",
+ "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.588.tgz",
+ "integrity": "sha512-0zr+ZfytnLeJZxGgmEpPTcItu5Mm4A5zHPZXLfHcGp0mdsk95rmD7ePNewYtK1yIdLbk8Z1U2oTRRfOtR4gbYg=="
},
"elliptic": {
"version": "6.5.3",
@@ -7367,9 +7330,9 @@
}
},
"entities": {
- "version": "2.0.3",
- "resolved": "https://registry.npmjs.org/entities/-/entities-2.0.3.tgz",
- "integrity": "sha512-MyoZ0jgnLvB2X3Lg5HqpFmn1kybDiIfEQmKzTb5apr51Rb+T3KdmMiqa70T+bhGnyv7bQ6WMj2QMHpGMmlrUYQ=="
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/entities/-/entities-2.1.0.tgz",
+ "integrity": "sha512-hCx1oky9PFrJ611mf0ifBLBRW8lUUVRlFolb5gWRfIELabBlbp9xZvrqZLZAs+NxFnbfQoeGd8wDkygjg7U85w=="
},
"envinfo": {
"version": "7.7.3",
@@ -7791,9 +7754,9 @@
},
"dependencies": {
"@babel/runtime": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.1.tgz",
- "integrity": "sha512-J5AIf3vPj3UwXaAzb5j1xM4WAQDX3EMgemF8rjCP3SoW09LfRKAXQKt6CoVYl230P6iWdRcBbnLDDdnqWxZSCA==",
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.5.tgz",
+ "integrity": "sha512-plcc+hbExy3McchJCEQG3knOsuh3HH+Prx1P6cLIkET/0dLuQDEnrT+s27Axgc9bqfsmNUNHfscgMUdBpC9xfg==",
"requires": {
"regenerator-runtime": "^0.13.4"
}
@@ -8782,9 +8745,9 @@
"integrity": "sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc="
},
"gatsby": {
- "version": "2.25.1",
- "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-2.25.1.tgz",
- "integrity": "sha512-2MLGL0MooLGmGQhSjIjq+mH95lE3PbrtZ8xgcmN1JOsjR/dJ+Fx/BoZC3CdqPku/zflMNlCb99vuB2HQaXiRdg==",
+ "version": "2.25.2",
+ "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-2.25.2.tgz",
+ "integrity": "sha512-zssz6mH5vpScGq9SCDtkfajJkYVYJ+00x5JRVf9pYlVTRdv+g7jbKTuGdaWKbPoacEtXw3bUaTURUC2YMs/Gmg==",
"requires": {
"@babel/code-frame": "^7.10.4",
"@babel/core": "^7.11.6",
@@ -8811,7 +8774,7 @@
"babel-plugin-dynamic-import-node": "^2.3.3",
"babel-plugin-lodash": "3.3.4",
"babel-plugin-remove-graphql-queries": "^2.9.20",
- "babel-preset-gatsby": "^0.5.15",
+ "babel-preset-gatsby": "^0.5.16",
"better-opn": "^2.0.0",
"better-queue": "^3.8.10",
"bluebird": "^3.7.2",
@@ -8819,7 +8782,7 @@
"browserslist": "^4.12.2",
"cache-manager": "^2.11.1",
"cache-manager-fs-hash": "^0.0.9",
- "chalk": "^2.4.2",
+ "chalk": "^4.1.0",
"chokidar": "^3.4.2",
"common-tags": "^1.8.0",
"compression": "^1.7.4",
@@ -8852,16 +8815,16 @@
"find-cache-dir": "^3.3.1",
"fs-exists-cached": "1.0.0",
"fs-extra": "^8.1.0",
- "gatsby-cli": "^2.12.115",
- "gatsby-core-utils": "^1.3.23",
+ "gatsby-cli": "^2.12.116",
+ "gatsby-core-utils": "^1.3.24",
"gatsby-graphiql-explorer": "^0.4.15",
"gatsby-legacy-polyfills": "^0.0.6",
"gatsby-link": "^2.4.16",
- "gatsby-plugin-page-creator": "^2.3.34",
+ "gatsby-plugin-page-creator": "^2.3.35",
"gatsby-plugin-typescript": "^2.5.0",
"gatsby-plugin-utils": "^0.2.40",
"gatsby-react-router-scroll": "^3.0.15",
- "gatsby-telemetry": "^1.3.39",
+ "gatsby-telemetry": "^1.3.40",
"glob": "^7.1.6",
"got": "8.3.2",
"graphql": "^14.6.0",
@@ -8937,35 +8900,47 @@
},
"dependencies": {
"@babel/runtime": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.1.tgz",
- "integrity": "sha512-J5AIf3vPj3UwXaAzb5j1xM4WAQDX3EMgemF8rjCP3SoW09LfRKAXQKt6CoVYl230P6iWdRcBbnLDDdnqWxZSCA==",
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.5.tgz",
+ "integrity": "sha512-plcc+hbExy3McchJCEQG3knOsuh3HH+Prx1P6cLIkET/0dLuQDEnrT+s27Axgc9bqfsmNUNHfscgMUdBpC9xfg==",
"requires": {
"regenerator-runtime": "^0.13.4"
}
},
- "@hapi/hoek": {
- "version": "9.1.0",
- "resolved": "https://registry.npmjs.org/@hapi/hoek/-/hoek-9.1.0.tgz",
- "integrity": "sha512-i9YbZPN3QgfighY/1X1Pu118VUz2Fmmhd6b2n0/O8YVgGGfw0FbUYoA97k7FkpGJ+pLCFEDLUmAPPV4D1kpeFw=="
+ "ansi-regex": {
+ "version": "4.1.0",
+ "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz",
+ "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg=="
},
- "@hapi/topo": {
- "version": "5.0.0",
- "resolved": "https://registry.npmjs.org/@hapi/topo/-/topo-5.0.0.tgz",
- "integrity": "sha512-tFJlT47db0kMqVm3H4nQYgn6Pwg10GTZHb1pwmSiv1K4ks6drQOtfEF5ZnPjkvC+y4/bUPHK+bc87QvLcL+WMw==",
+ "ansi-styles": {
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
+ "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
"requires": {
- "@hapi/hoek": "^9.0.0"
+ "color-convert": "^2.0.1"
}
},
- "ansi-regex": {
+ "chalk": {
"version": "4.1.0",
- "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz",
- "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg=="
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.0.tgz",
+ "integrity": "sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==",
+ "requires": {
+ "ansi-styles": "^4.1.0",
+ "supports-color": "^7.1.0"
+ }
},
- "core-js": {
- "version": "3.6.5",
- "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.6.5.tgz",
- "integrity": "sha512-vZVEEwZoIsI+vPEuoF9Iqf5H7/M3eeQqWlQnYa8FSKKePuYTf5MWnxb5SDAzCa60b3JBRS5g9b+Dq7b1y/RCrA=="
+ "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=="
},
"cross-spawn": {
"version": "7.0.3",
@@ -8986,15 +8961,15 @@
}
},
"gatsby-cli": {
- "version": "2.12.115",
- "resolved": "https://registry.npmjs.org/gatsby-cli/-/gatsby-cli-2.12.115.tgz",
- "integrity": "sha512-wOs3tG3tYses4fclXG0FtVZx+K0FDoZFkU1MIJNB+aRt+T7VMCZUIlg2MyrqcngsEW8al4EgyOd3UIl3NepC4A==",
+ "version": "2.12.116",
+ "resolved": "https://registry.npmjs.org/gatsby-cli/-/gatsby-cli-2.12.116.tgz",
+ "integrity": "sha512-vXpyl/ZFF67r/BlBxIjfdknBzxRfRuJ1qkA7//6dhNKDMlvVi5ZqGhOwcMzTgM1e0WZRaMFzf5/foPIA++8xEQ==",
"requires": {
"@babel/code-frame": "^7.10.4",
"@hapi/joi": "^15.1.1",
"@types/common-tags": "^1.8.0",
"better-opn": "^2.0.0",
- "chalk": "^2.4.2",
+ "chalk": "^4.1.0",
"clipboardy": "^2.3.0",
"common-tags": "^1.8.0",
"configstore": "^5.0.1",
@@ -9003,9 +8978,9 @@
"execa": "^3.4.0",
"fs-exists-cached": "^1.0.0",
"fs-extra": "^8.1.0",
- "gatsby-core-utils": "^1.3.23",
- "gatsby-recipes": "^0.2.36",
- "gatsby-telemetry": "^1.3.39",
+ "gatsby-core-utils": "^1.3.24",
+ "gatsby-recipes": "^0.2.37",
+ "gatsby-telemetry": "^1.3.40",
"hosted-git-info": "^3.0.6",
"is-valid-path": "^0.1.1",
"lodash": "^4.17.20",
@@ -9048,6 +9023,11 @@
}
}
},
+ "has-flag": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
+ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ=="
+ },
"hosted-git-info": {
"version": "3.0.7",
"resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-3.0.7.tgz",
@@ -9056,23 +9036,6 @@
"lru-cache": "^6.0.0"
}
},
- "joi": {
- "version": "17.3.0",
- "resolved": "https://registry.npmjs.org/joi/-/joi-17.3.0.tgz",
- "integrity": "sha512-Qh5gdU6niuYbUIUV5ejbsMiiFmBdw8Kcp8Buj2JntszCkCfxJ9Cz76OtHxOZMPXrt5810iDIXs+n1nNVoquHgg==",
- "requires": {
- "@hapi/hoek": "^9.0.0",
- "@hapi/topo": "^5.0.0",
- "@sideway/address": "^4.1.0",
- "@sideway/formula": "^3.0.0",
- "@sideway/pinpoint": "^2.0.0"
- }
- },
- "lodash": {
- "version": "4.17.20",
- "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.20.tgz",
- "integrity": "sha512-PlhdFcillOINfeV7Ni6oF1TAEayyZBoZ8bcshTHqOYJYlrqzRK5hagpagky5o4HfCzzd1TRkXPMFq6cKk9rGmA=="
- },
"lru-cache": {
"version": "6.0.0",
"resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz",
@@ -9122,6 +9085,14 @@
"ansi-regex": "^4.1.0"
}
},
+ "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"
+ }
+ },
"which": {
"version": "2.0.2",
"resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz",
@@ -9138,9 +9109,9 @@
}
},
"gatsby-core-utils": {
- "version": "1.3.23",
- "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-1.3.23.tgz",
- "integrity": "sha512-H6n6dDeRZ22HAJaBUIt5YjB/BSaE8Jq+kayMUv/YzL1RL2yFZ5lqcLwIL1OE2vWk1mQjMUBZCRxLODU0q1i3bQ==",
+ "version": "1.3.24",
+ "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-1.3.24.tgz",
+ "integrity": "sha512-SlK7rJv/8NBYC8FodYvTINamBHadXNSv//a2uRwh44N1GSSujuCMvtUcpEuAdg9BUQHc54NbbmFuoqf8p85kgA==",
"requires": {
"ci-info": "2.0.0",
"configstore": "^5.0.1",
@@ -9160,9 +9131,9 @@
},
"dependencies": {
"@babel/runtime": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.1.tgz",
- "integrity": "sha512-J5AIf3vPj3UwXaAzb5j1xM4WAQDX3EMgemF8rjCP3SoW09LfRKAXQKt6CoVYl230P6iWdRcBbnLDDdnqWxZSCA==",
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.5.tgz",
+ "integrity": "sha512-plcc+hbExy3McchJCEQG3knOsuh3HH+Prx1P6cLIkET/0dLuQDEnrT+s27Axgc9bqfsmNUNHfscgMUdBpC9xfg==",
"requires": {
"regenerator-runtime": "^0.13.4"
}
@@ -9208,9 +9179,9 @@
},
"dependencies": {
"@babel/runtime": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.1.tgz",
- "integrity": "sha512-J5AIf3vPj3UwXaAzb5j1xM4WAQDX3EMgemF8rjCP3SoW09LfRKAXQKt6CoVYl230P6iWdRcBbnLDDdnqWxZSCA==",
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.5.tgz",
+ "integrity": "sha512-plcc+hbExy3McchJCEQG3knOsuh3HH+Prx1P6cLIkET/0dLuQDEnrT+s27Axgc9bqfsmNUNHfscgMUdBpC9xfg==",
"requires": {
"regenerator-runtime": "^0.13.4"
}
@@ -9218,51 +9189,46 @@
}
},
"gatsby-page-utils": {
- "version": "0.2.29",
- "resolved": "https://registry.npmjs.org/gatsby-page-utils/-/gatsby-page-utils-0.2.29.tgz",
- "integrity": "sha512-0xN3kBNd7PNwsJB1lJrsy7hEJbIIBcvnmbxGTplGenmGnOMoJqK6kEfM5Ru5dWBdSmwHrS+kcihFi0ZiGxpoww==",
+ "version": "0.2.30",
+ "resolved": "https://registry.npmjs.org/gatsby-page-utils/-/gatsby-page-utils-0.2.30.tgz",
+ "integrity": "sha512-H4a6VgDuO4Obd2UgZmfHCnpN3D6NOOpcgVSf8XuC7fmksVhQ3L2v7zw7y/TNS1Fz74yEKffnaF9pqRfkg8D/yg==",
"requires": {
"@babel/runtime": "^7.11.2",
"bluebird": "^3.7.2",
"chokidar": "^3.4.3",
"fs-exists-cached": "^1.0.0",
- "gatsby-core-utils": "^1.3.23",
+ "gatsby-core-utils": "^1.3.24",
"glob": "^7.1.6",
"lodash": "^4.17.20",
"micromatch": "^4.0.2"
},
"dependencies": {
"@babel/runtime": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.1.tgz",
- "integrity": "sha512-J5AIf3vPj3UwXaAzb5j1xM4WAQDX3EMgemF8rjCP3SoW09LfRKAXQKt6CoVYl230P6iWdRcBbnLDDdnqWxZSCA==",
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.5.tgz",
+ "integrity": "sha512-plcc+hbExy3McchJCEQG3knOsuh3HH+Prx1P6cLIkET/0dLuQDEnrT+s27Axgc9bqfsmNUNHfscgMUdBpC9xfg==",
"requires": {
"regenerator-runtime": "^0.13.4"
}
- },
- "lodash": {
- "version": "4.17.20",
- "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.20.tgz",
- "integrity": "sha512-PlhdFcillOINfeV7Ni6oF1TAEayyZBoZ8bcshTHqOYJYlrqzRK5hagpagky5o4HfCzzd1TRkXPMFq6cKk9rGmA=="
}
}
},
"gatsby-plugin-manifest": {
- "version": "2.5.1",
- "resolved": "https://registry.npmjs.org/gatsby-plugin-manifest/-/gatsby-plugin-manifest-2.5.1.tgz",
- "integrity": "sha512-RYavr4onu2VFMhLNiRfrsVzKRtqii7mJK27X2mT74wEutSepel8zh+zV7knVJnFK23l/zTW2gq85lqsFcel8/w==",
+ "version": "2.5.2",
+ "resolved": "https://registry.npmjs.org/gatsby-plugin-manifest/-/gatsby-plugin-manifest-2.5.2.tgz",
+ "integrity": "sha512-ULLpUbKMXu0wh6XV+GEqE3w7ggGrEKH3fubwiiE00oUNJGoyFfvS9xGSwPtpE6yO1Xg3m1AH5vajZxfL9dWQ+A==",
"requires": {
"@babel/runtime": "^7.11.2",
- "gatsby-core-utils": "^1.3.23",
+ "gatsby-core-utils": "^1.3.24",
"gatsby-plugin-utils": "^0.2.40",
"semver": "^7.3.2",
"sharp": "^0.25.4"
},
"dependencies": {
"@babel/runtime": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.1.tgz",
- "integrity": "sha512-J5AIf3vPj3UwXaAzb5j1xM4WAQDX3EMgemF8rjCP3SoW09LfRKAXQKt6CoVYl230P6iWdRcBbnLDDdnqWxZSCA==",
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.5.tgz",
+ "integrity": "sha512-plcc+hbExy3McchJCEQG3knOsuh3HH+Prx1P6cLIkET/0dLuQDEnrT+s27Axgc9bqfsmNUNHfscgMUdBpC9xfg==",
"requires": {
"regenerator-runtime": "^0.13.4"
}
@@ -9275,9 +9241,9 @@
}
},
"gatsby-plugin-mdx": {
- "version": "1.3.0",
- "resolved": "https://registry.npmjs.org/gatsby-plugin-mdx/-/gatsby-plugin-mdx-1.3.0.tgz",
- "integrity": "sha512-3M401qUc76duSTBzocgUuf7ZGTQTfoOsUuse5gwK5KAIB+t0BzBREF6qvjmacVsLI4rBodSkjIkFMtQkjPGLIA==",
+ "version": "1.3.1",
+ "resolved": "https://registry.npmjs.org/gatsby-plugin-mdx/-/gatsby-plugin-mdx-1.3.1.tgz",
+ "integrity": "sha512-orPBGGf0VOaaNm40mQqiRt8SLZecpmX+yop3HmL8ZaroKBQzV2OdKFUV7ZVRc4gDCyWR8qdHkI86yC1qA760/w==",
"requires": {
"@babel/core": "^7.11.6",
"@babel/generator": "^7.11.6",
@@ -9294,7 +9260,7 @@
"escape-string-regexp": "^1.0.5",
"eval": "^0.1.4",
"fs-extra": "^8.1.0",
- "gatsby-core-utils": "^1.3.23",
+ "gatsby-core-utils": "^1.3.24",
"gray-matter": "^4.0.2",
"json5": "^2.1.3",
"loader-utils": "^1.4.0",
@@ -9302,7 +9268,7 @@
"mdast-util-to-string": "^1.1.0",
"mdast-util-toc": "^3.1.0",
"mime": "^2.4.6",
- "p-queue": "^5.0.0",
+ "p-queue": "^6.6.2",
"pretty-bytes": "^5.3.0",
"remark": "^10.0.1",
"remark-retext": "^3.1.3",
@@ -9317,21 +9283,11 @@
"unist-util-visit": "^1.4.1"
},
"dependencies": {
- "core-js": {
- "version": "3.6.5",
- "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.6.5.tgz",
- "integrity": "sha512-vZVEEwZoIsI+vPEuoF9Iqf5H7/M3eeQqWlQnYa8FSKKePuYTf5MWnxb5SDAzCa60b3JBRS5g9b+Dq7b1y/RCrA=="
- },
"dataloader": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/dataloader/-/dataloader-1.4.0.tgz",
"integrity": "sha512-68s5jYdlvasItOJnCuI2Q9s4q98g0pCyL3HrcKJu8KNugUl8ahgmZYg38ysLTgQjjXX3H8CJLkAvWrclWfcalw=="
},
- "lodash": {
- "version": "4.17.20",
- "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.20.tgz",
- "integrity": "sha512-PlhdFcillOINfeV7Ni6oF1TAEayyZBoZ8bcshTHqOYJYlrqzRK5hagpagky5o4HfCzzd1TRkXPMFq6cKk9rGmA=="
- },
"unified": {
"version": "8.4.2",
"resolved": "https://registry.npmjs.org/unified/-/unified-8.4.2.tgz",
@@ -9376,13 +9332,13 @@
}
},
"gatsby-plugin-offline": {
- "version": "3.3.1",
- "resolved": "https://registry.npmjs.org/gatsby-plugin-offline/-/gatsby-plugin-offline-3.3.1.tgz",
- "integrity": "sha512-OzMn78YqCXMcG0sR7SBWE7ak2J+0wd4vzODELGMXoOQYaRmKRTnTp79jVTV2/scZZoAnW6ebZTvJ2djBJqqd+A==",
+ "version": "3.3.2",
+ "resolved": "https://registry.npmjs.org/gatsby-plugin-offline/-/gatsby-plugin-offline-3.3.2.tgz",
+ "integrity": "sha512-oW78R9ijWttJA+rTRND+eyWNlnfXaN3PdmjSIpgUVASjLdSJMYkoXp6xWOpXvj/ChzogAskdTxxJ3tkMHENziw==",
"requires": {
"@babel/runtime": "^7.11.2",
"cheerio": "^1.0.0-rc.3",
- "gatsby-core-utils": "^1.3.23",
+ "gatsby-core-utils": "^1.3.24",
"glob": "^7.1.6",
"idb-keyval": "^3.2.0",
"lodash": "^4.17.20",
@@ -9390,9 +9346,9 @@
},
"dependencies": {
"@babel/runtime": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.1.tgz",
- "integrity": "sha512-J5AIf3vPj3UwXaAzb5j1xM4WAQDX3EMgemF8rjCP3SoW09LfRKAXQKt6CoVYl230P6iWdRcBbnLDDdnqWxZSCA==",
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.5.tgz",
+ "integrity": "sha512-plcc+hbExy3McchJCEQG3knOsuh3HH+Prx1P6cLIkET/0dLuQDEnrT+s27Axgc9bqfsmNUNHfscgMUdBpC9xfg==",
"requires": {
"regenerator-runtime": "^0.13.4"
}
@@ -9424,11 +9380,6 @@
"resolved": "https://registry.npmjs.org/entities/-/entities-1.1.2.tgz",
"integrity": "sha512-f2LZMYl1Fzu7YSBKg+RoROelpOaNrcGmE9AZubeDfrCEia483oW4MI4VyFd5VNHIgQ/7qm1I0wUHK1eJnn2y2w=="
},
- "lodash": {
- "version": "4.17.20",
- "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.20.tgz",
- "integrity": "sha512-PlhdFcillOINfeV7Ni6oF1TAEayyZBoZ8bcshTHqOYJYlrqzRK5hagpagky5o4HfCzzd1TRkXPMFq6cKk9rGmA=="
- },
"parse5": {
"version": "3.0.3",
"resolved": "https://registry.npmjs.org/parse5/-/parse5-3.0.3.tgz",
@@ -9440,15 +9391,15 @@
}
},
"gatsby-plugin-page-creator": {
- "version": "2.3.34",
- "resolved": "https://registry.npmjs.org/gatsby-plugin-page-creator/-/gatsby-plugin-page-creator-2.3.34.tgz",
- "integrity": "sha512-/rFG/ye4m0JJ8NAxTObkKKD8098KOVGE+dZrgBx9I3VN1TcKru0HprVe1xj679HBgKjjNUvchXZbhLl5I+2o4A==",
+ "version": "2.3.35",
+ "resolved": "https://registry.npmjs.org/gatsby-plugin-page-creator/-/gatsby-plugin-page-creator-2.3.35.tgz",
+ "integrity": "sha512-hT6hgkplHSBXin9DECOxNQastvRJq15XrzN8327VU/67tetYGOG7SKDSxN4eCaIwy7VK0nP0C97gyN7kQ3FNJw==",
"requires": {
"@babel/traverse": "^7.11.5",
"@sindresorhus/slugify": "^1.1.0",
"chokidar": "^3.4.2",
"fs-exists-cached": "^1.0.0",
- "gatsby-page-utils": "^0.2.29",
+ "gatsby-page-utils": "^0.2.30",
"globby": "^11.0.1",
"graphql": "^14.7.0",
"lodash": "^4.17.20"
@@ -9466,11 +9417,6 @@
"merge2": "^1.3.0",
"slash": "^3.0.0"
}
- },
- "lodash": {
- "version": "4.17.20",
- "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.20.tgz",
- "integrity": "sha512-PlhdFcillOINfeV7Ni6oF1TAEayyZBoZ8bcshTHqOYJYlrqzRK5hagpagky5o4HfCzzd1TRkXPMFq6cKk9rGmA=="
}
}
},
@@ -9493,15 +9439,15 @@
}
},
"gatsby-plugin-sharp": {
- "version": "2.7.0",
- "resolved": "https://registry.npmjs.org/gatsby-plugin-sharp/-/gatsby-plugin-sharp-2.7.0.tgz",
- "integrity": "sha512-l53FeWKDRE3LpNFUsTVBv18FT+u/1gOdBhdhgM2pU4oj/e0gWxTAJ8IoDVQuoYAM/viZfnRnTsU9YEieCzqzjQ==",
+ "version": "2.7.1",
+ "resolved": "https://registry.npmjs.org/gatsby-plugin-sharp/-/gatsby-plugin-sharp-2.7.1.tgz",
+ "integrity": "sha512-sS7vGyJ3J4vRY5NrfmSKqaDMr/vgyBeAlkizvV5xTxzghOLE8u/c6HNCrhwzEP5nMdixepAm1+YgOS/P8tTk4w==",
"requires": {
"@babel/runtime": "^7.11.2",
"async": "^3.2.0",
"bluebird": "^3.7.2",
"fs-extra": "^9.0.1",
- "gatsby-core-utils": "^1.3.23",
+ "gatsby-core-utils": "^1.3.24",
"got": "^10.7.0",
"imagemin": "^7.0.1",
"imagemin-mozjpeg": "^9.0.0",
@@ -9518,9 +9464,9 @@
},
"dependencies": {
"@babel/runtime": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.1.tgz",
- "integrity": "sha512-J5AIf3vPj3UwXaAzb5j1xM4WAQDX3EMgemF8rjCP3SoW09LfRKAXQKt6CoVYl230P6iWdRcBbnLDDdnqWxZSCA==",
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.5.tgz",
+ "integrity": "sha512-plcc+hbExy3McchJCEQG3knOsuh3HH+Prx1P6cLIkET/0dLuQDEnrT+s27Axgc9bqfsmNUNHfscgMUdBpC9xfg==",
"requires": {
"regenerator-runtime": "^0.13.4"
}
@@ -9632,11 +9578,6 @@
"json-buffer": "3.0.1"
}
},
- "lodash": {
- "version": "4.17.20",
- "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.20.tgz",
- "integrity": "sha512-PlhdFcillOINfeV7Ni6oF1TAEayyZBoZ8bcshTHqOYJYlrqzRK5hagpagky5o4HfCzzd1TRkXPMFq6cKk9rGmA=="
- },
"lowercase-keys": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-2.0.0.tgz",
@@ -9702,9 +9643,9 @@
},
"dependencies": {
"@babel/runtime": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.1.tgz",
- "integrity": "sha512-J5AIf3vPj3UwXaAzb5j1xM4WAQDX3EMgemF8rjCP3SoW09LfRKAXQKt6CoVYl230P6iWdRcBbnLDDdnqWxZSCA==",
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.5.tgz",
+ "integrity": "sha512-plcc+hbExy3McchJCEQG3knOsuh3HH+Prx1P6cLIkET/0dLuQDEnrT+s27Axgc9bqfsmNUNHfscgMUdBpC9xfg==",
"requires": {
"regenerator-runtime": "^0.13.4"
}
@@ -9717,33 +9658,6 @@
"integrity": "sha512-RKjmpPhmi8TDR9hAKxmD4ZJMje3BLs6nt6mxMWT0F8gf5giCYEywplJikyCvaPfuyaFlq1hMmFaVvzmeZNussg==",
"requires": {
"joi": "^17.2.1"
- },
- "dependencies": {
- "@hapi/hoek": {
- "version": "9.1.0",
- "resolved": "https://registry.npmjs.org/@hapi/hoek/-/hoek-9.1.0.tgz",
- "integrity": "sha512-i9YbZPN3QgfighY/1X1Pu118VUz2Fmmhd6b2n0/O8YVgGGfw0FbUYoA97k7FkpGJ+pLCFEDLUmAPPV4D1kpeFw=="
- },
- "@hapi/topo": {
- "version": "5.0.0",
- "resolved": "https://registry.npmjs.org/@hapi/topo/-/topo-5.0.0.tgz",
- "integrity": "sha512-tFJlT47db0kMqVm3H4nQYgn6Pwg10GTZHb1pwmSiv1K4ks6drQOtfEF5ZnPjkvC+y4/bUPHK+bc87QvLcL+WMw==",
- "requires": {
- "@hapi/hoek": "^9.0.0"
- }
- },
- "joi": {
- "version": "17.3.0",
- "resolved": "https://registry.npmjs.org/joi/-/joi-17.3.0.tgz",
- "integrity": "sha512-Qh5gdU6niuYbUIUV5ejbsMiiFmBdw8Kcp8Buj2JntszCkCfxJ9Cz76OtHxOZMPXrt5810iDIXs+n1nNVoquHgg==",
- "requires": {
- "@hapi/hoek": "^9.0.0",
- "@hapi/topo": "^5.0.0",
- "@sideway/address": "^4.1.0",
- "@sideway/formula": "^3.0.0",
- "@sideway/pinpoint": "^2.0.0"
- }
- }
}
},
"gatsby-react-router-scroll": {
@@ -9755,9 +9669,9 @@
},
"dependencies": {
"@babel/runtime": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.1.tgz",
- "integrity": "sha512-J5AIf3vPj3UwXaAzb5j1xM4WAQDX3EMgemF8rjCP3SoW09LfRKAXQKt6CoVYl230P6iWdRcBbnLDDdnqWxZSCA==",
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.5.tgz",
+ "integrity": "sha512-plcc+hbExy3McchJCEQG3knOsuh3HH+Prx1P6cLIkET/0dLuQDEnrT+s27Axgc9bqfsmNUNHfscgMUdBpC9xfg==",
"requires": {
"regenerator-runtime": "^0.13.4"
}
@@ -9765,9 +9679,9 @@
}
},
"gatsby-recipes": {
- "version": "0.2.36",
- "resolved": "https://registry.npmjs.org/gatsby-recipes/-/gatsby-recipes-0.2.36.tgz",
- "integrity": "sha512-GrXRHdEOyGHe5r1hyePWc7kYM3yIu+RDargLqgHGO/lb76ZXRYhjlQ06chL3NMbmxAMYF3UcIm4RSlTS6rLkIg==",
+ "version": "0.2.37",
+ "resolved": "https://registry.npmjs.org/gatsby-recipes/-/gatsby-recipes-0.2.37.tgz",
+ "integrity": "sha512-3pBvAx8HdrFYHv+o0uUiC5Oyd4206wYuQdETib/fYQhG8JxyGCZTDIzy/9RjBYb2I8xm+TlK6jpucLXWlp5DcA==",
"requires": {
"@babel/core": "^7.11.6",
"@babel/generator": "^7.11.6",
@@ -9777,8 +9691,8 @@
"@babel/standalone": "^7.11.6",
"@babel/template": "^7.10.4",
"@babel/types": "^7.11.5",
- "@graphql-tools/schema": "^6.0.14",
- "@graphql-tools/utils": "^6.0.14",
+ "@graphql-tools/schema": "^7.0.0",
+ "@graphql-tools/utils": "^7.0.2",
"@hapi/hoek": "8.x.x",
"@hapi/joi": "^15.1.1",
"better-queue": "^3.8.10",
@@ -9792,8 +9706,8 @@
"express": "^4.17.1",
"express-graphql": "^0.9.0",
"fs-extra": "^8.1.0",
- "gatsby-core-utils": "^1.3.23",
- "gatsby-telemetry": "^1.3.39",
+ "gatsby-core-utils": "^1.3.24",
+ "gatsby-telemetry": "^1.3.40",
"glob": "^7.1.6",
"graphql": "^14.6.0",
"graphql-compose": "^6.3.8",
@@ -9830,12 +9744,13 @@
"yoga-layout-prebuilt": "^1.9.6"
},
"dependencies": {
- "@graphql-tools/schema": {
- "version": "6.2.4",
- "resolved": "https://registry.npmjs.org/@graphql-tools/schema/-/schema-6.2.4.tgz",
- "integrity": "sha512-rh+14lSY1q8IPbEv2J9x8UBFJ5NrDX9W5asXEUlPp+7vraLp/Tiox4GXdgyA92JhwpYco3nTf5Bo2JDMt1KnAQ==",
+ "@graphql-tools/utils": {
+ "version": "7.0.2",
+ "resolved": "https://registry.npmjs.org/@graphql-tools/utils/-/utils-7.0.2.tgz",
+ "integrity": "sha512-VQQ7krHeoXO0FS3qbWsb/vZb8c8oyiCYPIH4RSgeK9SKOUpatWYt3DW4jmLmyHZLVVMk0yjUbsOhKTBEMejKSA==",
"requires": {
- "@graphql-tools/utils": "^6.2.4",
+ "@ardatan/aggregate-error": "0.0.6",
+ "camel-case": "4.1.1",
"tslib": "~2.0.1"
}
},
@@ -9874,11 +9789,6 @@
"p-locate": "^4.1.0"
}
},
- "lodash": {
- "version": "4.17.20",
- "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.20.tgz",
- "integrity": "sha512-PlhdFcillOINfeV7Ni6oF1TAEayyZBoZ8bcshTHqOYJYlrqzRK5hagpagky5o4HfCzzd1TRkXPMFq6cKk9rGmA=="
- },
"p-locate": {
"version": "4.1.0",
"resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz",
@@ -10033,16 +9943,16 @@
}
},
"gatsby-source-filesystem": {
- "version": "2.4.0",
- "resolved": "https://registry.npmjs.org/gatsby-source-filesystem/-/gatsby-source-filesystem-2.4.0.tgz",
- "integrity": "sha512-YfWSsF1x7vjj2uk3XI9Qldo+iO0TmbcgwX5XBEJJgIg8p3v43EZ1gCj0JGIyYyhvfmUaf5SQgFH03Yt3GURRyQ==",
+ "version": "2.4.1",
+ "resolved": "https://registry.npmjs.org/gatsby-source-filesystem/-/gatsby-source-filesystem-2.4.1.tgz",
+ "integrity": "sha512-JDFgK+873XebNvZreEhDzgRlkZ6jEXuS4A+TuJT3EPfTZ3h15YMGnldR2AWhAWYDFX9i2RfFPDuAo8xYzuFY1Q==",
"requires": {
"@babel/runtime": "^7.11.2",
"better-queue": "^3.8.10",
"chokidar": "^3.4.2",
"file-type": "^12.4.2",
"fs-extra": "^8.1.0",
- "gatsby-core-utils": "^1.3.23",
+ "gatsby-core-utils": "^1.3.24",
"got": "^9.6.0",
"md5-file": "^5.0.0",
"mime": "^2.4.6",
@@ -10054,9 +9964,9 @@
},
"dependencies": {
"@babel/runtime": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.1.tgz",
- "integrity": "sha512-J5AIf3vPj3UwXaAzb5j1xM4WAQDX3EMgemF8rjCP3SoW09LfRKAXQKt6CoVYl230P6iWdRcBbnLDDdnqWxZSCA==",
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.5.tgz",
+ "integrity": "sha512-plcc+hbExy3McchJCEQG3knOsuh3HH+Prx1P6cLIkET/0dLuQDEnrT+s27Axgc9bqfsmNUNHfscgMUdBpC9xfg==",
"requires": {
"regenerator-runtime": "^0.13.4"
}
@@ -10090,9 +10000,9 @@
}
},
"gatsby-telemetry": {
- "version": "1.3.39",
- "resolved": "https://registry.npmjs.org/gatsby-telemetry/-/gatsby-telemetry-1.3.39.tgz",
- "integrity": "sha512-25LDAc0+0LDjHTOSIHLT6iJk/zOLLWSttZ0IQNho5fhLdWJ3hQrCWKx8YiVLPPNwnImei6/1FxQlGKUPVAOrRA==",
+ "version": "1.3.40",
+ "resolved": "https://registry.npmjs.org/gatsby-telemetry/-/gatsby-telemetry-1.3.40.tgz",
+ "integrity": "sha512-BfKuSOe9Q2kCrATypvSXGwfffffLG483mP6j7tJy3iUYgnteRcLLP4YbBV3HG7pqW0SQk+JP5iIlsT7VtSZOXw==",
"requires": {
"@babel/code-frame": "^7.10.4",
"@babel/runtime": "^7.11.2",
@@ -10103,7 +10013,7 @@
"configstore": "^5.0.1",
"envinfo": "^7.7.3",
"fs-extra": "^8.1.0",
- "gatsby-core-utils": "^1.3.23",
+ "gatsby-core-utils": "^1.3.24",
"git-up": "^4.0.2",
"is-docker": "^2.1.1",
"lodash": "^4.17.20",
@@ -10112,17 +10022,12 @@
},
"dependencies": {
"@babel/runtime": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.1.tgz",
- "integrity": "sha512-J5AIf3vPj3UwXaAzb5j1xM4WAQDX3EMgemF8rjCP3SoW09LfRKAXQKt6CoVYl230P6iWdRcBbnLDDdnqWxZSCA==",
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.5.tgz",
+ "integrity": "sha512-plcc+hbExy3McchJCEQG3knOsuh3HH+Prx1P6cLIkET/0dLuQDEnrT+s27Axgc9bqfsmNUNHfscgMUdBpC9xfg==",
"requires": {
"regenerator-runtime": "^0.13.4"
}
- },
- "lodash": {
- "version": "4.17.20",
- "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.20.tgz",
- "integrity": "sha512-PlhdFcillOINfeV7Ni6oF1TAEayyZBoZ8bcshTHqOYJYlrqzRK5hagpagky5o4HfCzzd1TRkXPMFq6cKk9rGmA=="
}
}
},
@@ -10545,10 +10450,11 @@
}
},
"graphql-config": {
- "version": "3.0.3",
- "resolved": "https://registry.npmjs.org/graphql-config/-/graphql-config-3.0.3.tgz",
- "integrity": "sha512-MBY0wEjvcgJtZUyoqpPvOE1e5qPI0hJaa1gKTqjonSFiCsNHX2lykNjpOPcodmAgH1V06ELxhGnm9kcVzqvi/g==",
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/graphql-config/-/graphql-config-3.1.0.tgz",
+ "integrity": "sha512-tOjgUqB6W+vIzGRn20LogMujoRTAsdwO1gGg6l3SF3xaUjI9/uaCpvy3kJHbZcRiRuOTocmysdBU+hOs3Npx6Q==",
"requires": {
+ "@endemolshinegroup/cosmiconfig-typescript-loader": "3.0.2",
"@graphql-tools/graphql-file-loader": "^6.0.0",
"@graphql-tools/json-file-loader": "^6.0.0",
"@graphql-tools/load": "^6.0.0",
@@ -10556,6 +10462,7 @@
"@graphql-tools/url-loader": "^6.0.0",
"@graphql-tools/utils": "^6.0.0",
"cosmiconfig": "6.0.0",
+ "cosmiconfig-toml-loader": "1.0.0",
"minimatch": "3.0.4",
"string-env-interpolation": "1.0.1",
"tslib": "^2.0.0"
@@ -11431,11 +11338,6 @@
"resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz",
"integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg=="
},
- "lodash": {
- "version": "4.17.20",
- "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.20.tgz",
- "integrity": "sha512-PlhdFcillOINfeV7Ni6oF1TAEayyZBoZ8bcshTHqOYJYlrqzRK5hagpagky5o4HfCzzd1TRkXPMFq6cKk9rGmA=="
- },
"string-width": {
"version": "4.2.0",
"resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.0.tgz",
@@ -11625,9 +11527,9 @@
}
},
"is-core-module": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.0.0.tgz",
- "integrity": "sha512-jq1AH6C8MuteOoBPwkxHafmByhL9j5q4OaPGdbuD+ZtQJVzH+i6E3BJDQcBA09k57i2Hh2yQbEG8yObZ0jdlWw==",
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.1.0.tgz",
+ "integrity": "sha512-YcV7BgVMRFRua2FqQzKtTDMz8iCuLEyGKjr70q8Zm1yy2qKcurbFEd79PAdHV77oL3NrAaOVQIbMmiHQCHB7ZA==",
"requires": {
"has": "^1.0.3"
}
@@ -12152,6 +12054,33 @@
"regenerator-runtime": "^0.13.3"
}
},
+ "joi": {
+ "version": "17.3.0",
+ "resolved": "https://registry.npmjs.org/joi/-/joi-17.3.0.tgz",
+ "integrity": "sha512-Qh5gdU6niuYbUIUV5ejbsMiiFmBdw8Kcp8Buj2JntszCkCfxJ9Cz76OtHxOZMPXrt5810iDIXs+n1nNVoquHgg==",
+ "requires": {
+ "@hapi/hoek": "^9.0.0",
+ "@hapi/topo": "^5.0.0",
+ "@sideway/address": "^4.1.0",
+ "@sideway/formula": "^3.0.0",
+ "@sideway/pinpoint": "^2.0.0"
+ },
+ "dependencies": {
+ "@hapi/hoek": {
+ "version": "9.1.0",
+ "resolved": "https://registry.npmjs.org/@hapi/hoek/-/hoek-9.1.0.tgz",
+ "integrity": "sha512-i9YbZPN3QgfighY/1X1Pu118VUz2Fmmhd6b2n0/O8YVgGGfw0FbUYoA97k7FkpGJ+pLCFEDLUmAPPV4D1kpeFw=="
+ },
+ "@hapi/topo": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/@hapi/topo/-/topo-5.0.0.tgz",
+ "integrity": "sha512-tFJlT47db0kMqVm3H4nQYgn6Pwg10GTZHb1pwmSiv1K4ks6drQOtfEF5ZnPjkvC+y4/bUPHK+bc87QvLcL+WMw==",
+ "requires": {
+ "@hapi/hoek": "^9.0.0"
+ }
+ }
+ }
+ },
"jpeg-js": {
"version": "0.4.2",
"resolved": "https://registry.npmjs.org/jpeg-js/-/jpeg-js-0.4.2.tgz",
@@ -12486,9 +12415,9 @@
}
},
"lodash": {
- "version": "4.17.17",
- "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.17.tgz",
- "integrity": "sha512-/B2DjOphAoqi5BX4Gg2oh4UR0Gy/A7xYAMh3aSECEKzwS3eCDEpS0Cals1Ktvxwlal3bBJNc+5W9kNIcADdw5Q=="
+ "version": "4.17.20",
+ "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.20.tgz",
+ "integrity": "sha512-PlhdFcillOINfeV7Ni6oF1TAEayyZBoZ8bcshTHqOYJYlrqzRK5hagpagky5o4HfCzzd1TRkXPMFq6cKk9rGmA=="
},
"lodash._reinterpolate": {
"version": "3.0.0",
@@ -12545,6 +12474,11 @@
"resolved": "https://registry.npmjs.org/lodash.foreach/-/lodash.foreach-4.5.0.tgz",
"integrity": "sha1-Gmo16s5AEoDH8G3d7DUWWrJ+PlM="
},
+ "lodash.get": {
+ "version": "4.4.2",
+ "resolved": "https://registry.npmjs.org/lodash.get/-/lodash.get-4.4.2.tgz",
+ "integrity": "sha1-LRd/ZS+jHpObRDjVNBSZ36OCXpk="
+ },
"lodash.map": {
"version": "4.6.0",
"resolved": "https://registry.npmjs.org/lodash.map/-/lodash.map-4.6.0.tgz",
@@ -12736,6 +12670,11 @@
"semver": "^5.6.0"
}
},
+ "make-error": {
+ "version": "1.3.6",
+ "resolved": "https://registry.npmjs.org/make-error/-/make-error-1.3.6.tgz",
+ "integrity": "sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw=="
+ },
"map-cache": {
"version": "0.2.2",
"resolved": "https://registry.npmjs.org/map-cache/-/map-cache-0.2.2.tgz",
@@ -14099,11 +14038,27 @@
"integrity": "sha512-08pj8ATpzMR0Y80x50yJHn37NF6vjrqHutASaX5LiH5npS9XPvrUmscd9MF5R4fuYRHOxQR1FfMIlF7AzwoPqw=="
},
"p-queue": {
- "version": "5.0.0",
- "resolved": "https://registry.npmjs.org/p-queue/-/p-queue-5.0.0.tgz",
- "integrity": "sha512-6QfeouDf236N+MAxHch0CVIy8o/KBnmhttKjxZoOkUlzqU+u9rZgEyXH3OdckhTgawbqf5rpzmyR+07+Lv0+zg==",
+ "version": "6.6.2",
+ "resolved": "https://registry.npmjs.org/p-queue/-/p-queue-6.6.2.tgz",
+ "integrity": "sha512-RwFpb72c/BhQLEXIZ5K2e+AhgNVmIejGlTgiB9MzZ0e93GRvqZ7uSi0dvRF7/XIXDeNkra2fNHBxTyPDGySpjQ==",
"requires": {
- "eventemitter3": "^3.1.0"
+ "eventemitter3": "^4.0.4",
+ "p-timeout": "^3.2.0"
+ },
+ "dependencies": {
+ "eventemitter3": {
+ "version": "4.0.7",
+ "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.7.tgz",
+ "integrity": "sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw=="
+ },
+ "p-timeout": {
+ "version": "3.2.0",
+ "resolved": "https://registry.npmjs.org/p-timeout/-/p-timeout-3.2.0.tgz",
+ "integrity": "sha512-rhIwUycgwwKcP9yTOOFK/AKsAopjjCakVqLHePO3CC6Mir1Z99xT+R63jZxAT5lFZLa2inS5h+ZS2GvR99/FBg==",
+ "requires": {
+ "p-finally": "^1.0.0"
+ }
+ }
}
},
"p-reduce": {
@@ -15298,13 +15253,6 @@
"requires": {
"lodash": "^4.17.20",
"renderkid": "^2.0.4"
- },
- "dependencies": {
- "lodash": {
- "version": "4.17.20",
- "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.20.tgz",
- "integrity": "sha512-PlhdFcillOINfeV7Ni6oF1TAEayyZBoZ8bcshTHqOYJYlrqzRK5hagpagky5o4HfCzzd1TRkXPMFq6cKk9rGmA=="
- }
}
},
"pretty-format": {
@@ -16469,11 +16417,6 @@
"version": "2.0.0-next.8",
"resolved": "https://registry.npmjs.org/@mdx-js/util/-/util-2.0.0-next.8.tgz",
"integrity": "sha512-T0BcXmNzEunFkuxrO8BFw44htvTPuAoKbLvTG41otyZBDV1Rs+JMddcUuaP5vXpTWtgD3grhcrPEwyx88RUumQ=="
- },
- "lodash": {
- "version": "4.17.20",
- "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.20.tgz",
- "integrity": "sha512-PlhdFcillOINfeV7Ni6oF1TAEayyZBoZ8bcshTHqOYJYlrqzRK5hagpagky5o4HfCzzd1TRkXPMFq6cKk9rGmA=="
}
}
},
@@ -16552,13 +16495,6 @@
"htmlparser2": "^3.3.0",
"lodash": "^4.17.20",
"strip-ansi": "^3.0.0"
- },
- "dependencies": {
- "lodash": {
- "version": "4.17.20",
- "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.20.tgz",
- "integrity": "sha512-PlhdFcillOINfeV7Ni6oF1TAEayyZBoZ8bcshTHqOYJYlrqzRK5hagpagky5o4HfCzzd1TRkXPMFq6cKk9rGmA=="
- }
}
},
"repeat-element": {
@@ -18302,6 +18238,15 @@
"resolved": "https://registry.npmjs.org/symbol-observable/-/symbol-observable-1.2.0.tgz",
"integrity": "sha512-e900nM8RRtGhlV36KGEU9k65K3mPb1WV70OdjfxlG2EAuM1noi/E/BaW/uMhL7bPEssK8QV57vN3esixjUvcXQ=="
},
+ "sync-fetch": {
+ "version": "0.3.0",
+ "resolved": "https://registry.npmjs.org/sync-fetch/-/sync-fetch-0.3.0.tgz",
+ "integrity": "sha512-dJp4qg+x4JwSEW1HibAuMi0IIrBI3wuQr2GimmqB7OXR50wmwzfdusG+p39R9w3R6aFtZ2mzvxvWKQ3Bd/vx3g==",
+ "requires": {
+ "buffer": "^5.7.0",
+ "node-fetch": "^2.6.1"
+ }
+ },
"table": {
"version": "5.4.6",
"resolved": "https://registry.npmjs.org/table/-/table-5.4.6.tgz",
@@ -18693,6 +18638,18 @@
"resolved": "https://registry.npmjs.org/true-case-path/-/true-case-path-2.2.1.tgz",
"integrity": "sha512-0z3j8R7MCjy10kc/g+qg7Ln3alJTodw9aDuVWZa3uiWqfuBMKeAeP2ocWcxoyM3D73yz3Jt/Pu4qPr4wHSdB/Q=="
},
+ "ts-node": {
+ "version": "9.0.0",
+ "resolved": "https://registry.npmjs.org/ts-node/-/ts-node-9.0.0.tgz",
+ "integrity": "sha512-/TqB4SnererCDR/vb4S/QvSZvzQMJN8daAslg7MeaiHvD8rDZsSfXmNeNumyZZzMned72Xoq/isQljYSt8Ynfg==",
+ "requires": {
+ "arg": "^4.1.0",
+ "diff": "^4.0.1",
+ "make-error": "^1.1.1",
+ "source-map-support": "^0.5.17",
+ "yn": "3.1.1"
+ }
+ },
"ts-pnp": {
"version": "1.2.0",
"resolved": "https://registry.npmjs.org/ts-pnp/-/ts-pnp-1.2.0.tgz",
@@ -20535,6 +20492,11 @@
"resolved": "https://registry.npmjs.org/yeast/-/yeast-0.1.2.tgz",
"integrity": "sha1-AI4G2AlDIMNy28L47XagymyKxBk="
},
+ "yn": {
+ "version": "3.1.1",
+ "resolved": "https://registry.npmjs.org/yn/-/yn-3.1.1.tgz",
+ "integrity": "sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q=="
+ },
"yoga-layout-prebuilt": {
"version": "1.10.0",
"resolved": "https://registry.npmjs.org/yoga-layout-prebuilt/-/yoga-layout-prebuilt-1.10.0.tgz",
diff --git a/starters/gatsby-starter-mdx-basic/package.json b/starters/gatsby-starter-mdx-basic/package.json
index a6247ffe5ba6d..d2b0eacafd286 100644
--- a/starters/gatsby-starter-mdx-basic/package.json
+++ b/starters/gatsby-starter-mdx-basic/package.json
@@ -6,14 +6,14 @@
"dependencies": {
"@mdx-js/mdx": "^1.6.19",
"@mdx-js/react": "^1.6.19",
- "gatsby": "^2.25.1",
+ "gatsby": "^2.25.2",
"gatsby-image": "^2.4.21",
- "gatsby-plugin-manifest": "^2.5.1",
- "gatsby-plugin-mdx": "^1.3.0",
- "gatsby-plugin-offline": "^3.3.1",
+ "gatsby-plugin-manifest": "^2.5.2",
+ "gatsby-plugin-mdx": "^1.3.1",
+ "gatsby-plugin-offline": "^3.3.2",
"gatsby-plugin-react-helmet": "^3.3.14",
- "gatsby-plugin-sharp": "^2.7.0",
- "gatsby-source-filesystem": "^2.4.0",
+ "gatsby-plugin-sharp": "^2.7.1",
+ "gatsby-source-filesystem": "^2.4.1",
"gatsby-transformer-sharp": "^2.5.21",
"prop-types": "^15.7.2",
"react": "^16.8.6",
diff --git a/starters/gatsby-starter-minimal/package-lock.json b/starters/gatsby-starter-minimal/package-lock.json
index 95201dde88c4b..3cf095cbcf634 100644
--- a/starters/gatsby-starter-minimal/package-lock.json
+++ b/starters/gatsby-starter-minimal/package-lock.json
@@ -28,9 +28,9 @@
}
},
"@babel/compat-data": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.12.1.tgz",
- "integrity": "sha512-725AQupWJZ8ba0jbKceeFblZTY90McUBWMwHhkFQ9q1zKPJ95GUktljFcgcsIVwRnTnRKlcYzfiNImg5G9m6ZQ=="
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.12.5.tgz",
+ "integrity": "sha512-DTsS7cxrsH3by8nqQSpFSyjSfSYl57D6Cf4q8dW3LK83tBKBDCkfcay1nYkXq1nIHXnpX8WMMb/O25HOy3h1zg=="
},
"@babel/core": {
"version": "7.12.3",
@@ -71,11 +71,11 @@
}
},
"@babel/generator": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.12.1.tgz",
- "integrity": "sha512-DB+6rafIdc9o72Yc3/Ph5h+6hUjeOp66pF0naQBgUFFuPqzQwIlPTm3xZR7YNvduIMtkDIj2t21LSQwnbCrXvg==",
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.12.5.tgz",
+ "integrity": "sha512-m16TQQJ8hPt7E+OS/XVQg/7U184MLXtvuGbCdA7na61vha+ImkyyNM/9DDA0unYCVZn3ZOhng+qz48/KBOT96A==",
"requires": {
- "@babel/types": "^7.12.1",
+ "@babel/types": "^7.12.5",
"jsesc": "^2.5.1",
"source-map": "^0.5.0"
}
@@ -117,13 +117,13 @@
}
},
"@babel/helper-compilation-targets": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.12.1.tgz",
- "integrity": "sha512-jtBEif7jsPwP27GPHs06v4WBV0KrE8a/P7n0N0sSvHn2hwUCYnolP/CLmz51IzAW4NlN+HuoBtb9QcwnRo9F/g==",
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.12.5.tgz",
+ "integrity": "sha512-+qH6NrscMolUlzOYngSBMIOQpKUGPPsc61Bu5W10mg84LxZ7cmvnBHzARKbDoFxVvqqAbj6Tg6N7bSrWSPXMyw==",
"requires": {
- "@babel/compat-data": "^7.12.1",
+ "@babel/compat-data": "^7.12.5",
"@babel/helper-validator-option": "^7.12.1",
- "browserslist": "^4.12.0",
+ "browserslist": "^4.14.5",
"semver": "^5.5.0"
},
"dependencies": {
@@ -209,11 +209,11 @@
}
},
"@babel/helper-module-imports": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.12.1.tgz",
- "integrity": "sha512-ZeC1TlMSvikvJNy1v/wPIazCu3NdOwgYZLIkmIyAsGhqkNpiDoQQRmaCK8YP4Pq3GPTLPV9WXaPCJKvx06JxKA==",
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.12.5.tgz",
+ "integrity": "sha512-SR713Ogqg6++uexFRORf/+nPXMmWIn80TALu0uaFb+iQIUoR7bOC7zBWyzBs5b3tBBJXuyD0cRu1F15GyzjOWA==",
"requires": {
- "@babel/types": "^7.12.1"
+ "@babel/types": "^7.12.5"
}
},
"@babel/helper-module-transforms": {
@@ -264,14 +264,14 @@
}
},
"@babel/helper-replace-supers": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.12.1.tgz",
- "integrity": "sha512-zJjTvtNJnCFsCXVi5rUInstLd/EIVNmIKA1Q9ynESmMBWPWd+7sdR+G4/wdu+Mppfep0XLyG2m7EBPvjCeFyrw==",
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.12.5.tgz",
+ "integrity": "sha512-5YILoed0ZyIpF4gKcpZitEnXEJ9UoDRki1Ey6xz46rxOzfNMAhVIJMoune1hmPVxh40LRv1+oafz7UsWX+vyWA==",
"requires": {
"@babel/helper-member-expression-to-functions": "^7.12.1",
"@babel/helper-optimise-call-expression": "^7.10.4",
- "@babel/traverse": "^7.12.1",
- "@babel/types": "^7.12.1"
+ "@babel/traverse": "^7.12.5",
+ "@babel/types": "^7.12.5"
}
},
"@babel/helper-simple-access": {
@@ -320,13 +320,13 @@
}
},
"@babel/helpers": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.12.1.tgz",
- "integrity": "sha512-9JoDSBGoWtmbay98efmT2+mySkwjzeFeAL9BuWNoVQpkPFQF8SIIFUfY5os9u8wVzglzoiPRSW7cuJmBDUt43g==",
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.12.5.tgz",
+ "integrity": "sha512-lgKGMQlKqA8meJqKsW6rUnc4MdUk35Ln0ATDqdM1a/UpARODdI4j5Y5lVfUScnSNkJcdCRAaWkspykNoFg9sJA==",
"requires": {
"@babel/template": "^7.10.4",
- "@babel/traverse": "^7.12.1",
- "@babel/types": "^7.12.1"
+ "@babel/traverse": "^7.12.5",
+ "@babel/types": "^7.12.5"
}
},
"@babel/highlight": {
@@ -337,12 +337,24 @@
"@babel/helper-validator-identifier": "^7.10.4",
"chalk": "^2.0.0",
"js-tokens": "^4.0.0"
+ },
+ "dependencies": {
+ "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/parser": {
- "version": "7.12.3",
- "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.12.3.tgz",
- "integrity": "sha512-kFsOS0IbsuhO5ojF8Hc8z/8vEIOkylVBrjiZUbLTE3XFe0Qi+uu6HjzQixkFaqr0ZPAMZcBVxEwmsnsLPZ2Xsw=="
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.12.5.tgz",
+ "integrity": "sha512-FVM6RZQ0mn2KCf1VUED7KepYeUWoVShczewOCfm3nzoBybaih51h+sYVVGthW9M6lPByEPTQf+xm27PBdlpwmQ=="
},
"@babel/plugin-proposal-async-generator-functions": {
"version": "7.12.1",
@@ -409,9 +421,9 @@
}
},
"@babel/plugin-proposal-numeric-separator": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.12.1.tgz",
- "integrity": "sha512-MR7Ok+Af3OhNTCxYVjJZHS0t97ydnJZt/DbR4WISO39iDnhiD8XHrY12xuSJ90FFEGjir0Fzyyn7g/zY6hxbxA==",
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.12.5.tgz",
+ "integrity": "sha512-UiAnkKuOrCyjZ3sYNHlRlfuZJbBHknMQ9VMwVeX97Ofwx7RpD6gS2HfqTCh8KNUQgcOm8IKt103oR4KIjh7Q8g==",
"requires": {
"@babel/helper-plugin-utils": "^7.10.4",
"@babel/plugin-syntax-numeric-separator": "^7.10.4"
@@ -792,9 +804,9 @@
}
},
"@babel/plugin-transform-react-jsx": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.12.1.tgz",
- "integrity": "sha512-RmKejwnT0T0QzQUzcbP5p1VWlpnP8QHtdhEtLG55ZDQnJNalbF3eeDyu3dnGKvGzFIQiBzFhBYTwvv435p9Xpw==",
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.12.5.tgz",
+ "integrity": "sha512-2xkcPqqrYiOQgSlM/iwto1paPijjsDbUynN13tI6bosDz/jOW3CRzYguIE8wKX32h+msbBM22Dv5fwrFkUOZjQ==",
"requires": {
"@babel/helper-builder-react-jsx": "^7.10.4",
"@babel/helper-builder-react-jsx-experimental": "^7.12.1",
@@ -803,9 +815,9 @@
}
},
"@babel/plugin-transform-react-jsx-development": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.12.1.tgz",
- "integrity": "sha512-IilcGWdN1yNgEGOrB96jbTplRh+V2Pz1EoEwsKsHfX1a/L40cUYuD71Zepa7C+ujv7kJIxnDftWeZbKNEqZjCQ==",
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.12.5.tgz",
+ "integrity": "sha512-1JJusg3iPgsZDthyWiCr3KQiGs31ikU/mSf2N2dSYEAO0GEImmVUbWf0VoSDGDFTAn5Dj4DUiR6SdIXHY7tELA==",
"requires": {
"@babel/helper-builder-react-jsx-experimental": "^7.12.1",
"@babel/helper-plugin-utils": "^7.10.4",
@@ -1033,14 +1045,14 @@
}
},
"@babel/preset-react": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/preset-react/-/preset-react-7.12.1.tgz",
- "integrity": "sha512-euCExymHCi0qB9u5fKw7rvlw7AZSjw/NaB9h7EkdTt5+yHRrXdiRTh7fkG3uBPpJg82CqLfp1LHLqWGSCrab+g==",
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/preset-react/-/preset-react-7.12.5.tgz",
+ "integrity": "sha512-jcs++VPrgyFehkMezHtezS2BpnUlR7tQFAyesJn1vGTO9aTFZrgIQrA5YydlTwxbcjMwkFY6i04flCigRRr3GA==",
"requires": {
"@babel/helper-plugin-utils": "^7.10.4",
"@babel/plugin-transform-react-display-name": "^7.12.1",
- "@babel/plugin-transform-react-jsx": "^7.12.1",
- "@babel/plugin-transform-react-jsx-development": "^7.12.1",
+ "@babel/plugin-transform-react-jsx": "^7.12.5",
+ "@babel/plugin-transform-react-jsx-development": "^7.12.5",
"@babel/plugin-transform-react-jsx-self": "^7.12.1",
"@babel/plugin-transform-react-jsx-source": "^7.12.1",
"@babel/plugin-transform-react-pure-annotations": "^7.12.1"
@@ -1056,26 +1068,26 @@
}
},
"@babel/runtime": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.1.tgz",
- "integrity": "sha512-J5AIf3vPj3UwXaAzb5j1xM4WAQDX3EMgemF8rjCP3SoW09LfRKAXQKt6CoVYl230P6iWdRcBbnLDDdnqWxZSCA==",
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.5.tgz",
+ "integrity": "sha512-plcc+hbExy3McchJCEQG3knOsuh3HH+Prx1P6cLIkET/0dLuQDEnrT+s27Axgc9bqfsmNUNHfscgMUdBpC9xfg==",
"requires": {
"regenerator-runtime": "^0.13.4"
}
},
"@babel/runtime-corejs3": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/runtime-corejs3/-/runtime-corejs3-7.12.1.tgz",
- "integrity": "sha512-umhPIcMrlBZ2aTWlWjUseW9LjQKxi1dpFlQS8DzsxB//5K+u6GLTC/JliPKHsd5kJVPIU6X/Hy0YvWOYPcMxBw==",
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/runtime-corejs3/-/runtime-corejs3-7.12.5.tgz",
+ "integrity": "sha512-roGr54CsTmNPPzZoCP1AmDXuBoNao7tnSA83TXTwt+UK5QVyh1DIJnrgYRPWKCF2flqZQXwa7Yr8v7VmLzF0YQ==",
"requires": {
"core-js-pure": "^3.0.0",
"regenerator-runtime": "^0.13.4"
}
},
"@babel/standalone": {
- "version": "7.12.4",
- "resolved": "https://registry.npmjs.org/@babel/standalone/-/standalone-7.12.4.tgz",
- "integrity": "sha512-9vw7RYK7CWh5MdTfLyC7j6hZmDYmm6DieFP4yetvpVftKQ+yrEY7ovhnhsVHznLqx5luU9Bx4k7xoEc3acrsow=="
+ "version": "7.12.6",
+ "resolved": "https://registry.npmjs.org/@babel/standalone/-/standalone-7.12.6.tgz",
+ "integrity": "sha512-yA/OV3jN1nhr0JsAdYWAqbeZ7cAOw/6Fh52rxVMzujr0HF4Z3cau0JBzJfQppFfR9IArrUtcqhBu/+Q/IevoyQ=="
},
"@babel/template": {
"version": "7.10.4",
@@ -1088,16 +1100,16 @@
}
},
"@babel/traverse": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.12.1.tgz",
- "integrity": "sha512-MA3WPoRt1ZHo2ZmoGKNqi20YnPt0B1S0GTZEPhhd+hw2KGUzBlHuVunj6K4sNuK+reEvyiPwtp0cpaqLzJDmAw==",
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.12.5.tgz",
+ "integrity": "sha512-xa15FbQnias7z9a62LwYAA5SZZPkHIXpd42C6uW68o8uTuua96FHZy1y61Va5P/i83FAAcMpW8+A/QayntzuqA==",
"requires": {
"@babel/code-frame": "^7.10.4",
- "@babel/generator": "^7.12.1",
+ "@babel/generator": "^7.12.5",
"@babel/helper-function-name": "^7.10.4",
"@babel/helper-split-export-declaration": "^7.11.0",
- "@babel/parser": "^7.12.1",
- "@babel/types": "^7.12.1",
+ "@babel/parser": "^7.12.5",
+ "@babel/types": "^7.12.5",
"debug": "^4.1.0",
"globals": "^11.1.0",
"lodash": "^4.17.19"
@@ -1114,15 +1126,33 @@
}
},
"@babel/types": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.12.1.tgz",
- "integrity": "sha512-BzSY3NJBKM4kyatSOWh3D/JJ2O3CVzBybHWxtgxnggaxEuaSTTDqeiSb/xk9lrkw2Tbqyivw5ZU4rT+EfznQsA==",
+ "version": "7.12.6",
+ "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.12.6.tgz",
+ "integrity": "sha512-hwyjw6GvjBLiyy3W0YQf0Z5Zf4NpYejUnKFcfcUhZCSffoBBp30w6wP2Wn6pk31jMYZvcOrB/1b7cGXvEoKogA==",
"requires": {
"@babel/helper-validator-identifier": "^7.10.4",
"lodash": "^4.17.19",
"to-fast-properties": "^2.0.0"
}
},
+ "@endemolshinegroup/cosmiconfig-typescript-loader": {
+ "version": "3.0.2",
+ "resolved": "https://registry.npmjs.org/@endemolshinegroup/cosmiconfig-typescript-loader/-/cosmiconfig-typescript-loader-3.0.2.tgz",
+ "integrity": "sha512-QRVtqJuS1mcT56oHpVegkKBlgtWjXw/gHNWO3eL9oyB5Sc7HBoc2OLG/nYpVfT/Jejvo3NUrD0Udk7XgoyDKkA==",
+ "requires": {
+ "lodash.get": "^4",
+ "make-error": "^1",
+ "ts-node": "^9",
+ "tslib": "^2"
+ },
+ "dependencies": {
+ "tslib": {
+ "version": "2.0.3",
+ "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.0.3.tgz",
+ "integrity": "sha512-uZtkfKblCEQtZKBF6EBXVZeQNl82yqtDQdv+eck8u7tdPxjLu2/lp5/uPW+um2tpuxINHWy3GhiccY7QgEaVHQ=="
+ }
+ }
+ },
"@graphql-tools/batch-execute": {
"version": "7.0.0",
"resolved": "https://registry.npmjs.org/@graphql-tools/batch-execute/-/batch-execute-7.0.0.tgz",
@@ -1152,9 +1182,9 @@
}
},
"@graphql-tools/delegate": {
- "version": "7.0.3",
- "resolved": "https://registry.npmjs.org/@graphql-tools/delegate/-/delegate-7.0.3.tgz",
- "integrity": "sha512-BSRF/Wg9XNllWo3Kdt0QBBaFltexn3vAnTOWH1qLrNcmfQAvUMf17/TsAqH9ZLSKU1NW9XCOsd7YMHhhUuTCEg==",
+ "version": "7.0.4",
+ "resolved": "https://registry.npmjs.org/@graphql-tools/delegate/-/delegate-7.0.4.tgz",
+ "integrity": "sha512-6/qL9V31FgECNPwc5As1359hpsAt4ASWsiYBSYWL+Iq9/K0YRcNeEmSseXIyCP4oh8k/9HS/w/m2lkMk/YSUpQ==",
"requires": {
"@ardatan/aggregate-error": "0.0.6",
"@graphql-tools/batch-execute": "^7.0.0",
@@ -1463,9 +1493,9 @@
}
},
"@graphql-tools/url-loader": {
- "version": "6.3.2",
- "resolved": "https://registry.npmjs.org/@graphql-tools/url-loader/-/url-loader-6.3.2.tgz",
- "integrity": "sha512-nrrZD33T7lFeOjIufCrwk2PAHYqFtdFcb1pe1ULWnvuFmFuhZnRCgIsfCsoy+WOMwmZHQ/eXBem//I/bewXlgw==",
+ "version": "6.4.0",
+ "resolved": "https://registry.npmjs.org/@graphql-tools/url-loader/-/url-loader-6.4.0.tgz",
+ "integrity": "sha512-M3mS/VH6vpnai3b3Fa33kYcdCgZvhFh7RqFE1R3NMfhYjphQ10EWwgf31P+VQcBNB2zz+ubxttI6UcJLiGqwuQ==",
"requires": {
"@graphql-tools/delegate": "^7.0.1",
"@graphql-tools/utils": "^7.0.1",
@@ -1473,6 +1503,7 @@
"@types/websocket": "1.0.1",
"cross-fetch": "3.0.6",
"subscriptions-transport-ws": "0.9.18",
+ "sync-fetch": "0.3.0",
"tslib": "~2.0.1",
"valid-url": "1.0.9",
"websocket": "1.0.32"
@@ -1575,6 +1606,11 @@
"@hapi/hoek": "^8.3.0"
}
},
+ "@iarna/toml": {
+ "version": "2.2.5",
+ "resolved": "https://registry.npmjs.org/@iarna/toml/-/toml-2.2.5.tgz",
+ "integrity": "sha512-trnsAYxU3xnS1gPHPyU961coFyLkh4gAD/0zQ5mymY4yOZ+CYvsPqUbOFSw0aDM4y0tV7tiFxL/1XfXPNC6IPg=="
+ },
"@jest/types": {
"version": "25.5.0",
"resolved": "https://registry.npmjs.org/@jest/types/-/types-25.5.0.tgz",
@@ -1673,6 +1709,18 @@
"error-stack-parser": "^2.0.0",
"string-width": "^2.0.0",
"strip-ansi": "^3"
+ },
+ "dependencies": {
+ "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"
+ }
+ }
}
},
"@pmmmwh/react-refresh-webpack-plugin": {
@@ -2391,6 +2439,11 @@
"resolved": "https://registry.npmjs.org/arch/-/arch-2.2.0.tgz",
"integrity": "sha512-Of/R0wqp83cgHozfIYLbBMnej79U/SVGOOyuB3VVFv1NRM/PSFMK12x9KVtiYzJqmnU5WR2qp0Z5rHb7sWGnFQ=="
},
+ "arg": {
+ "version": "4.1.3",
+ "resolved": "https://registry.npmjs.org/arg/-/arg-4.1.3.tgz",
+ "integrity": "sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA=="
+ },
"argparse": {
"version": "1.0.10",
"resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz",
@@ -2781,9 +2834,9 @@
"integrity": "sha512-eqj0hVcJUR57/Ug2zE1Yswsw4LhuqqHhD+8v120T1cl3kjg76QwtyBrdIk4WVwK+lAhBJVYCd/v+4nc4y+8JsA=="
},
"babel-preset-gatsby": {
- "version": "0.5.15",
- "resolved": "https://registry.npmjs.org/babel-preset-gatsby/-/babel-preset-gatsby-0.5.15.tgz",
- "integrity": "sha512-0eno/GAvzmaLW/s+RzsLXrZVQwBMZYU/zMv1HpArGlYbNCon/fK53/Bz3pklJDq1pNAybXQ2RROpPHDyJM2EGA==",
+ "version": "0.5.16",
+ "resolved": "https://registry.npmjs.org/babel-preset-gatsby/-/babel-preset-gatsby-0.5.16.tgz",
+ "integrity": "sha512-zcUYvHRnDxwQmzJnkWtHk4x7cGaMbQjTJIKrvCWpS9u10hQOQUNAz/ZKSH1vUmB4oYap6m+sHDoDIr7PNoCAEQ==",
"requires": {
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.10.4",
@@ -2797,7 +2850,7 @@
"babel-plugin-dynamic-import-node": "^2.3.3",
"babel-plugin-macros": "^2.8.0",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
- "gatsby-core-utils": "^1.3.23",
+ "gatsby-core-utils": "^1.3.24",
"gatsby-legacy-polyfills": "^0.0.6"
}
},
@@ -3283,9 +3336,9 @@
}
},
"buffer": {
- "version": "5.7.0",
- "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.0.tgz",
- "integrity": "sha512-cd+5r1VLBwUqTrmnzW+D7ABkJUM6mr7uv1dv+6jRw4Rcl7tFIFHDqHPL98LhpGFn3dbAt3gtLxtrWp4m1kFrqg==",
+ "version": "5.7.1",
+ "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz",
+ "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==",
"requires": {
"base64-js": "^1.3.1",
"ieee754": "^1.1.13"
@@ -3505,9 +3558,9 @@
}
},
"caniuse-lite": {
- "version": "1.0.30001154",
- "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001154.tgz",
- "integrity": "sha512-y9DvdSti8NnYB9Be92ddMZQrcOe04kcQtcxtBx4NkB04+qZ+JUWotnXBJTmxlKudhxNTQ3RRknMwNU2YQl/Org=="
+ "version": "1.0.30001156",
+ "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001156.tgz",
+ "integrity": "sha512-z7qztybA2eFZTB6Z3yvaQBIoJpQtsewRD74adw2UbRWwsRq3jIPvgrQGawBMbfafekQaD21FWuXNcywtTDGGCw=="
},
"ccount": {
"version": "1.1.0",
@@ -3515,13 +3568,48 @@
"integrity": "sha512-vlNK021QdI7PNeiUh/lKkC/mNHHfV0m/Ad5JoI0TYtlBnJAslM/JIkm/tGC88bkLIwO6OQ5uV6ztS6kVAtCDlg=="
},
"chalk": {
- "version": "2.4.2",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
- "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
+ "version": "4.1.0",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.0.tgz",
+ "integrity": "sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==",
"requires": {
- "ansi-styles": "^3.2.1",
- "escape-string-regexp": "^1.0.5",
- "supports-color": "^5.3.0"
+ "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"
+ }
+ }
}
},
"character-entities": {
@@ -3823,6 +3911,18 @@
"@types/q": "^1.5.1",
"chalk": "^2.4.1",
"q": "^1.1.2"
+ },
+ "dependencies": {
+ "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"
+ }
+ }
}
},
"collapse-white-space": {
@@ -4228,6 +4328,14 @@
"yaml": "^1.7.2"
}
},
+ "cosmiconfig-toml-loader": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/cosmiconfig-toml-loader/-/cosmiconfig-toml-loader-1.0.0.tgz",
+ "integrity": "sha512-H/2gurFWVi7xXvCyvsWRLCMekl4tITJcX0QEsDMpzxtuxDyM59xLatYNg4s/k9AA/HdtCYfj2su8mgA0GSDLDA==",
+ "requires": {
+ "@iarna/toml": "^2.2.5"
+ }
+ },
"create-ecdh": {
"version": "4.0.4",
"resolved": "https://registry.npmjs.org/create-ecdh/-/create-ecdh-4.0.4.tgz",
@@ -4361,6 +4469,16 @@
"source-list-map": "^2.0.0"
},
"dependencies": {
+ "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"
+ }
+ },
"postcss": {
"version": "6.0.23",
"resolved": "https://registry.npmjs.org/postcss/-/postcss-6.0.23.tgz",
@@ -4906,6 +5024,11 @@
}
}
},
+ "diff": {
+ "version": "4.0.2",
+ "resolved": "https://registry.npmjs.org/diff/-/diff-4.0.2.tgz",
+ "integrity": "sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A=="
+ },
"diff-sequences": {
"version": "25.2.6",
"resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-25.2.6.tgz",
@@ -5062,9 +5185,9 @@
"integrity": "sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0="
},
"electron-to-chromium": {
- "version": "1.3.586",
- "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.586.tgz",
- "integrity": "sha512-or8FCbQCRlPZHkOoqBULOI9hzTiStVIQqDLgAPt8pzY+swTrW+89vsqd24Zn+Iv4guAJLxRBD6OR5AmbpabGDA=="
+ "version": "1.3.588",
+ "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.588.tgz",
+ "integrity": "sha512-0zr+ZfytnLeJZxGgmEpPTcItu5Mm4A5zHPZXLfHcGp0mdsk95rmD7ePNewYtK1yIdLbk8Z1U2oTRRfOtR4gbYg=="
},
"elliptic": {
"version": "6.5.3",
@@ -5392,6 +5515,16 @@
"resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz",
"integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg=="
},
+ "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.2.0",
"resolved": "https://registry.npmjs.org/debug/-/debug-4.2.0.tgz",
@@ -6533,9 +6666,9 @@
"integrity": "sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc="
},
"gatsby": {
- "version": "2.25.1",
- "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-2.25.1.tgz",
- "integrity": "sha512-2MLGL0MooLGmGQhSjIjq+mH95lE3PbrtZ8xgcmN1JOsjR/dJ+Fx/BoZC3CdqPku/zflMNlCb99vuB2HQaXiRdg==",
+ "version": "2.25.2",
+ "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-2.25.2.tgz",
+ "integrity": "sha512-zssz6mH5vpScGq9SCDtkfajJkYVYJ+00x5JRVf9pYlVTRdv+g7jbKTuGdaWKbPoacEtXw3bUaTURUC2YMs/Gmg==",
"requires": {
"@babel/code-frame": "^7.10.4",
"@babel/core": "^7.11.6",
@@ -6562,7 +6695,7 @@
"babel-plugin-dynamic-import-node": "^2.3.3",
"babel-plugin-lodash": "3.3.4",
"babel-plugin-remove-graphql-queries": "^2.9.20",
- "babel-preset-gatsby": "^0.5.15",
+ "babel-preset-gatsby": "^0.5.16",
"better-opn": "^2.0.0",
"better-queue": "^3.8.10",
"bluebird": "^3.7.2",
@@ -6570,7 +6703,7 @@
"browserslist": "^4.12.2",
"cache-manager": "^2.11.1",
"cache-manager-fs-hash": "^0.0.9",
- "chalk": "^2.4.2",
+ "chalk": "^4.1.0",
"chokidar": "^3.4.2",
"common-tags": "^1.8.0",
"compression": "^1.7.4",
@@ -6603,16 +6736,16 @@
"find-cache-dir": "^3.3.1",
"fs-exists-cached": "1.0.0",
"fs-extra": "^8.1.0",
- "gatsby-cli": "^2.12.115",
- "gatsby-core-utils": "^1.3.23",
+ "gatsby-cli": "^2.12.116",
+ "gatsby-core-utils": "^1.3.24",
"gatsby-graphiql-explorer": "^0.4.15",
"gatsby-legacy-polyfills": "^0.0.6",
"gatsby-link": "^2.4.16",
- "gatsby-plugin-page-creator": "^2.3.34",
+ "gatsby-plugin-page-creator": "^2.3.35",
"gatsby-plugin-typescript": "^2.5.0",
"gatsby-plugin-utils": "^0.2.40",
"gatsby-react-router-scroll": "^3.0.15",
- "gatsby-telemetry": "^1.3.39",
+ "gatsby-telemetry": "^1.3.40",
"glob": "^7.1.6",
"got": "8.3.2",
"graphql": "^14.6.0",
@@ -6703,15 +6836,15 @@
}
},
"gatsby-cli": {
- "version": "2.12.115",
- "resolved": "https://registry.npmjs.org/gatsby-cli/-/gatsby-cli-2.12.115.tgz",
- "integrity": "sha512-wOs3tG3tYses4fclXG0FtVZx+K0FDoZFkU1MIJNB+aRt+T7VMCZUIlg2MyrqcngsEW8al4EgyOd3UIl3NepC4A==",
+ "version": "2.12.116",
+ "resolved": "https://registry.npmjs.org/gatsby-cli/-/gatsby-cli-2.12.116.tgz",
+ "integrity": "sha512-vXpyl/ZFF67r/BlBxIjfdknBzxRfRuJ1qkA7//6dhNKDMlvVi5ZqGhOwcMzTgM1e0WZRaMFzf5/foPIA++8xEQ==",
"requires": {
"@babel/code-frame": "^7.10.4",
"@hapi/joi": "^15.1.1",
"@types/common-tags": "^1.8.0",
"better-opn": "^2.0.0",
- "chalk": "^2.4.2",
+ "chalk": "^4.1.0",
"clipboardy": "^2.3.0",
"common-tags": "^1.8.0",
"configstore": "^5.0.1",
@@ -6720,9 +6853,9 @@
"execa": "^3.4.0",
"fs-exists-cached": "^1.0.0",
"fs-extra": "^8.1.0",
- "gatsby-core-utils": "^1.3.23",
- "gatsby-recipes": "^0.2.36",
- "gatsby-telemetry": "^1.3.39",
+ "gatsby-core-utils": "^1.3.24",
+ "gatsby-recipes": "^0.2.37",
+ "gatsby-telemetry": "^1.3.40",
"hosted-git-info": "^3.0.6",
"is-valid-path": "^0.1.1",
"lodash": "^4.17.20",
@@ -6833,9 +6966,9 @@
}
},
"gatsby-core-utils": {
- "version": "1.3.23",
- "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-1.3.23.tgz",
- "integrity": "sha512-H6n6dDeRZ22HAJaBUIt5YjB/BSaE8Jq+kayMUv/YzL1RL2yFZ5lqcLwIL1OE2vWk1mQjMUBZCRxLODU0q1i3bQ==",
+ "version": "1.3.24",
+ "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-1.3.24.tgz",
+ "integrity": "sha512-SlK7rJv/8NBYC8FodYvTINamBHadXNSv//a2uRwh44N1GSSujuCMvtUcpEuAdg9BUQHc54NbbmFuoqf8p85kgA==",
"requires": {
"ci-info": "2.0.0",
"configstore": "^5.0.1",
@@ -6873,30 +7006,30 @@
}
},
"gatsby-page-utils": {
- "version": "0.2.29",
- "resolved": "https://registry.npmjs.org/gatsby-page-utils/-/gatsby-page-utils-0.2.29.tgz",
- "integrity": "sha512-0xN3kBNd7PNwsJB1lJrsy7hEJbIIBcvnmbxGTplGenmGnOMoJqK6kEfM5Ru5dWBdSmwHrS+kcihFi0ZiGxpoww==",
+ "version": "0.2.30",
+ "resolved": "https://registry.npmjs.org/gatsby-page-utils/-/gatsby-page-utils-0.2.30.tgz",
+ "integrity": "sha512-H4a6VgDuO4Obd2UgZmfHCnpN3D6NOOpcgVSf8XuC7fmksVhQ3L2v7zw7y/TNS1Fz74yEKffnaF9pqRfkg8D/yg==",
"requires": {
"@babel/runtime": "^7.11.2",
"bluebird": "^3.7.2",
"chokidar": "^3.4.3",
"fs-exists-cached": "^1.0.0",
- "gatsby-core-utils": "^1.3.23",
+ "gatsby-core-utils": "^1.3.24",
"glob": "^7.1.6",
"lodash": "^4.17.20",
"micromatch": "^4.0.2"
}
},
"gatsby-plugin-page-creator": {
- "version": "2.3.34",
- "resolved": "https://registry.npmjs.org/gatsby-plugin-page-creator/-/gatsby-plugin-page-creator-2.3.34.tgz",
- "integrity": "sha512-/rFG/ye4m0JJ8NAxTObkKKD8098KOVGE+dZrgBx9I3VN1TcKru0HprVe1xj679HBgKjjNUvchXZbhLl5I+2o4A==",
+ "version": "2.3.35",
+ "resolved": "https://registry.npmjs.org/gatsby-plugin-page-creator/-/gatsby-plugin-page-creator-2.3.35.tgz",
+ "integrity": "sha512-hT6hgkplHSBXin9DECOxNQastvRJq15XrzN8327VU/67tetYGOG7SKDSxN4eCaIwy7VK0nP0C97gyN7kQ3FNJw==",
"requires": {
"@babel/traverse": "^7.11.5",
"@sindresorhus/slugify": "^1.1.0",
"chokidar": "^3.4.2",
"fs-exists-cached": "^1.0.0",
- "gatsby-page-utils": "^0.2.29",
+ "gatsby-page-utils": "^0.2.30",
"globby": "^11.0.1",
"graphql": "^14.7.0",
"lodash": "^4.17.20"
@@ -6948,9 +7081,9 @@
}
},
"gatsby-recipes": {
- "version": "0.2.36",
- "resolved": "https://registry.npmjs.org/gatsby-recipes/-/gatsby-recipes-0.2.36.tgz",
- "integrity": "sha512-GrXRHdEOyGHe5r1hyePWc7kYM3yIu+RDargLqgHGO/lb76ZXRYhjlQ06chL3NMbmxAMYF3UcIm4RSlTS6rLkIg==",
+ "version": "0.2.37",
+ "resolved": "https://registry.npmjs.org/gatsby-recipes/-/gatsby-recipes-0.2.37.tgz",
+ "integrity": "sha512-3pBvAx8HdrFYHv+o0uUiC5Oyd4206wYuQdETib/fYQhG8JxyGCZTDIzy/9RjBYb2I8xm+TlK6jpucLXWlp5DcA==",
"requires": {
"@babel/core": "^7.11.6",
"@babel/generator": "^7.11.6",
@@ -6960,8 +7093,8 @@
"@babel/standalone": "^7.11.6",
"@babel/template": "^7.10.4",
"@babel/types": "^7.11.5",
- "@graphql-tools/schema": "^6.0.14",
- "@graphql-tools/utils": "^6.0.14",
+ "@graphql-tools/schema": "^7.0.0",
+ "@graphql-tools/utils": "^7.0.2",
"@hapi/hoek": "8.x.x",
"@hapi/joi": "^15.1.1",
"better-queue": "^3.8.10",
@@ -6975,8 +7108,8 @@
"express": "^4.17.1",
"express-graphql": "^0.9.0",
"fs-extra": "^8.1.0",
- "gatsby-core-utils": "^1.3.23",
- "gatsby-telemetry": "^1.3.39",
+ "gatsby-core-utils": "^1.3.24",
+ "gatsby-telemetry": "^1.3.40",
"glob": "^7.1.6",
"graphql": "^14.6.0",
"graphql-compose": "^6.3.8",
@@ -7013,12 +7146,13 @@
"yoga-layout-prebuilt": "^1.9.6"
},
"dependencies": {
- "@graphql-tools/schema": {
- "version": "6.2.4",
- "resolved": "https://registry.npmjs.org/@graphql-tools/schema/-/schema-6.2.4.tgz",
- "integrity": "sha512-rh+14lSY1q8IPbEv2J9x8UBFJ5NrDX9W5asXEUlPp+7vraLp/Tiox4GXdgyA92JhwpYco3nTf5Bo2JDMt1KnAQ==",
+ "@graphql-tools/utils": {
+ "version": "7.0.2",
+ "resolved": "https://registry.npmjs.org/@graphql-tools/utils/-/utils-7.0.2.tgz",
+ "integrity": "sha512-VQQ7krHeoXO0FS3qbWsb/vZb8c8oyiCYPIH4RSgeK9SKOUpatWYt3DW4jmLmyHZLVVMk0yjUbsOhKTBEMejKSA==",
"requires": {
- "@graphql-tools/utils": "^6.2.4",
+ "@ardatan/aggregate-error": "0.0.6",
+ "camel-case": "4.1.1",
"tslib": "~2.0.1"
}
},
@@ -7112,9 +7246,9 @@
}
},
"gatsby-telemetry": {
- "version": "1.3.39",
- "resolved": "https://registry.npmjs.org/gatsby-telemetry/-/gatsby-telemetry-1.3.39.tgz",
- "integrity": "sha512-25LDAc0+0LDjHTOSIHLT6iJk/zOLLWSttZ0IQNho5fhLdWJ3hQrCWKx8YiVLPPNwnImei6/1FxQlGKUPVAOrRA==",
+ "version": "1.3.40",
+ "resolved": "https://registry.npmjs.org/gatsby-telemetry/-/gatsby-telemetry-1.3.40.tgz",
+ "integrity": "sha512-BfKuSOe9Q2kCrATypvSXGwfffffLG483mP6j7tJy3iUYgnteRcLLP4YbBV3HG7pqW0SQk+JP5iIlsT7VtSZOXw==",
"requires": {
"@babel/code-frame": "^7.10.4",
"@babel/runtime": "^7.11.2",
@@ -7125,7 +7259,7 @@
"configstore": "^5.0.1",
"envinfo": "^7.7.3",
"fs-extra": "^8.1.0",
- "gatsby-core-utils": "^1.3.23",
+ "gatsby-core-utils": "^1.3.24",
"git-up": "^4.0.2",
"is-docker": "^2.1.1",
"lodash": "^4.17.20",
@@ -7406,10 +7540,11 @@
}
},
"graphql-config": {
- "version": "3.0.3",
- "resolved": "https://registry.npmjs.org/graphql-config/-/graphql-config-3.0.3.tgz",
- "integrity": "sha512-MBY0wEjvcgJtZUyoqpPvOE1e5qPI0hJaa1gKTqjonSFiCsNHX2lykNjpOPcodmAgH1V06ELxhGnm9kcVzqvi/g==",
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/graphql-config/-/graphql-config-3.1.0.tgz",
+ "integrity": "sha512-tOjgUqB6W+vIzGRn20LogMujoRTAsdwO1gGg6l3SF3xaUjI9/uaCpvy3kJHbZcRiRuOTocmysdBU+hOs3Npx6Q==",
"requires": {
+ "@endemolshinegroup/cosmiconfig-typescript-loader": "3.0.2",
"@graphql-tools/graphql-file-loader": "^6.0.0",
"@graphql-tools/json-file-loader": "^6.0.0",
"@graphql-tools/load": "^6.0.0",
@@ -7417,6 +7552,7 @@
"@graphql-tools/url-loader": "^6.0.0",
"@graphql-tools/utils": "^6.0.0",
"cosmiconfig": "6.0.0",
+ "cosmiconfig-toml-loader": "1.0.0",
"minimatch": "3.0.4",
"string-env-interpolation": "1.0.1",
"tslib": "^2.0.0"
@@ -7854,6 +7990,16 @@
"postcss": "^6.0.1"
},
"dependencies": {
+ "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"
+ }
+ },
"postcss": {
"version": "6.0.23",
"resolved": "https://registry.npmjs.org/postcss/-/postcss-6.0.23.tgz",
@@ -8044,41 +8190,6 @@
"resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.0.tgz",
"integrity": "sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg=="
},
- "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"
- }
- },
- "chalk": {
- "version": "4.1.0",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.0.tgz",
- "integrity": "sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==",
- "requires": {
- "ansi-styles": "^4.1.0",
- "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=="
- },
"is-fullwidth-code-point": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz",
@@ -8102,14 +8213,6 @@
"ansi-regex": "^5.0.0"
}
},
- "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.11.0",
"resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.11.0.tgz",
@@ -8268,9 +8371,9 @@
}
},
"is-core-module": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.0.0.tgz",
- "integrity": "sha512-jq1AH6C8MuteOoBPwkxHafmByhL9j5q4OaPGdbuD+ZtQJVzH+i6E3BJDQcBA09k57i2Hh2yQbEG8yObZ0jdlWw==",
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.1.0.tgz",
+ "integrity": "sha512-YcV7BgVMRFRua2FqQzKtTDMz8iCuLEyGKjr70q8Zm1yy2qKcurbFEd79PAdHV77oL3NrAaOVQIbMmiHQCHB7ZA==",
"requires": {
"has": "^1.0.3"
}
@@ -9052,6 +9155,11 @@
"resolved": "https://registry.npmjs.org/lodash.foreach/-/lodash.foreach-4.5.0.tgz",
"integrity": "sha1-Gmo16s5AEoDH8G3d7DUWWrJ+PlM="
},
+ "lodash.get": {
+ "version": "4.4.2",
+ "resolved": "https://registry.npmjs.org/lodash.get/-/lodash.get-4.4.2.tgz",
+ "integrity": "sha1-LRd/ZS+jHpObRDjVNBSZ36OCXpk="
+ },
"lodash.map": {
"version": "4.6.0",
"resolved": "https://registry.npmjs.org/lodash.map/-/lodash.map-4.6.0.tgz",
@@ -9147,6 +9255,11 @@
}
}
},
+ "make-error": {
+ "version": "1.3.6",
+ "resolved": "https://registry.npmjs.org/make-error/-/make-error-1.3.6.tgz",
+ "integrity": "sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw=="
+ },
"map-cache": {
"version": "0.2.2",
"resolved": "https://registry.npmjs.org/map-cache/-/map-cache-0.2.2.tgz",
@@ -10463,6 +10576,26 @@
"supports-color": "^6.1.0"
},
"dependencies": {
+ "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"
+ },
+ "dependencies": {
+ "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"
+ }
+ }
+ }
+ },
"source-map": {
"version": "0.6.1",
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
@@ -10759,6 +10892,16 @@
"postcss": "^6.0.1"
},
"dependencies": {
+ "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"
+ }
+ },
"postcss": {
"version": "6.0.23",
"resolved": "https://registry.npmjs.org/postcss/-/postcss-6.0.23.tgz",
@@ -10785,6 +10928,16 @@
"postcss": "^6.0.1"
},
"dependencies": {
+ "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"
+ }
+ },
"postcss": {
"version": "6.0.23",
"resolved": "https://registry.npmjs.org/postcss/-/postcss-6.0.23.tgz",
@@ -10811,6 +10964,16 @@
"postcss": "^6.0.1"
},
"dependencies": {
+ "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"
+ }
+ },
"postcss": {
"version": "6.0.23",
"resolved": "https://registry.npmjs.org/postcss/-/postcss-6.0.23.tgz",
@@ -10837,6 +11000,16 @@
"postcss": "^6.0.1"
},
"dependencies": {
+ "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"
+ }
+ },
"postcss": {
"version": "6.0.23",
"resolved": "https://registry.npmjs.org/postcss/-/postcss-6.0.23.tgz",
@@ -13458,6 +13631,16 @@
"util.promisify": "~1.0.0"
},
"dependencies": {
+ "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"
+ }
+ },
"css-select": {
"version": "2.1.0",
"resolved": "https://registry.npmjs.org/css-select/-/css-select-2.1.0.tgz",
@@ -13490,6 +13673,15 @@
"resolved": "https://registry.npmjs.org/symbol-observable/-/symbol-observable-1.2.0.tgz",
"integrity": "sha512-e900nM8RRtGhlV36KGEU9k65K3mPb1WV70OdjfxlG2EAuM1noi/E/BaW/uMhL7bPEssK8QV57vN3esixjUvcXQ=="
},
+ "sync-fetch": {
+ "version": "0.3.0",
+ "resolved": "https://registry.npmjs.org/sync-fetch/-/sync-fetch-0.3.0.tgz",
+ "integrity": "sha512-dJp4qg+x4JwSEW1HibAuMi0IIrBI3wuQr2GimmqB7OXR50wmwzfdusG+p39R9w3R6aFtZ2mzvxvWKQ3Bd/vx3g==",
+ "requires": {
+ "buffer": "^5.7.0",
+ "node-fetch": "^2.6.1"
+ }
+ },
"table": {
"version": "5.4.6",
"resolved": "https://registry.npmjs.org/table/-/table-5.4.6.tgz",
@@ -13736,6 +13928,18 @@
"resolved": "https://registry.npmjs.org/true-case-path/-/true-case-path-2.2.1.tgz",
"integrity": "sha512-0z3j8R7MCjy10kc/g+qg7Ln3alJTodw9aDuVWZa3uiWqfuBMKeAeP2ocWcxoyM3D73yz3Jt/Pu4qPr4wHSdB/Q=="
},
+ "ts-node": {
+ "version": "9.0.0",
+ "resolved": "https://registry.npmjs.org/ts-node/-/ts-node-9.0.0.tgz",
+ "integrity": "sha512-/TqB4SnererCDR/vb4S/QvSZvzQMJN8daAslg7MeaiHvD8rDZsSfXmNeNumyZZzMned72Xoq/isQljYSt8Ynfg==",
+ "requires": {
+ "arg": "^4.1.0",
+ "diff": "^4.0.1",
+ "make-error": "^1.1.1",
+ "source-map-support": "^0.5.17",
+ "yn": "3.1.1"
+ }
+ },
"ts-pnp": {
"version": "1.2.0",
"resolved": "https://registry.npmjs.org/ts-pnp/-/ts-pnp-1.2.0.tgz",
@@ -14309,9 +14513,9 @@
},
"dependencies": {
"is-buffer": {
- "version": "2.0.4",
- "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-2.0.4.tgz",
- "integrity": "sha512-Kq1rokWXOPXWuaMAqZiJW4XxsmD9zGx9q4aePabbn3qCRGedtH7Cm+zV8WETitMfu1wdh+Rvd6w5egwSngUX2A=="
+ "version": "2.0.5",
+ "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-2.0.5.tgz",
+ "integrity": "sha512-i2R6zNFDwgEHJyQUtJEk0XFi1i0dPFn/oqjK3/vPCcDeJvW5NQ83V8QbicfF1SupOaB0h8ntgBC2YiE7dfyctQ=="
}
}
},
@@ -15268,6 +15472,11 @@
"resolved": "https://registry.npmjs.org/yeast/-/yeast-0.1.2.tgz",
"integrity": "sha1-AI4G2AlDIMNy28L47XagymyKxBk="
},
+ "yn": {
+ "version": "3.1.1",
+ "resolved": "https://registry.npmjs.org/yn/-/yn-3.1.1.tgz",
+ "integrity": "sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q=="
+ },
"yoga-layout-prebuilt": {
"version": "1.10.0",
"resolved": "https://registry.npmjs.org/yoga-layout-prebuilt/-/yoga-layout-prebuilt-1.10.0.tgz",
@@ -15307,6 +15516,16 @@
"resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz",
"integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg=="
},
+ "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.2.0",
"resolved": "https://registry.npmjs.org/debug/-/debug-4.2.0.tgz",
diff --git a/starters/gatsby-starter-minimal/package.json b/starters/gatsby-starter-minimal/package.json
index d2884715c01ac..187fa66065cfa 100644
--- a/starters/gatsby-starter-minimal/package.json
+++ b/starters/gatsby-starter-minimal/package.json
@@ -15,7 +15,7 @@
},
"license": "0BSD",
"dependencies": {
- "gatsby": "^2.25.1",
+ "gatsby": "^2.25.2",
"react": "^16.13.1",
"react-dom": "^16.13.1"
}
diff --git a/starters/gatsby-starter-notes-theme/package-lock.json b/starters/gatsby-starter-notes-theme/package-lock.json
index f570b086fc5f8..00744a49b34f6 100644
--- a/starters/gatsby-starter-notes-theme/package-lock.json
+++ b/starters/gatsby-starter-notes-theme/package-lock.json
@@ -164,16 +164,85 @@
}
},
"@babel/helper-create-class-features-plugin": {
- "version": "7.10.5",
- "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.10.5.tgz",
- "integrity": "sha512-0nkdeijB7VlZoLT3r/mY3bUkw3T8WG/hNw+FATs/6+pG2039IJWjTYL0VTISqsNHMUTEnwbVnc89WIJX9Qed0A==",
+ "version": "7.12.1",
+ "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.12.1.tgz",
+ "integrity": "sha512-hkL++rWeta/OVOBTRJc9a5Azh5mt5WgZUGAKMD8JM141YsE08K//bp1unBBieO6rUKkIPyUE0USQ30jAy3Sk1w==",
"requires": {
"@babel/helper-function-name": "^7.10.4",
- "@babel/helper-member-expression-to-functions": "^7.10.5",
+ "@babel/helper-member-expression-to-functions": "^7.12.1",
"@babel/helper-optimise-call-expression": "^7.10.4",
- "@babel/helper-plugin-utils": "^7.10.4",
- "@babel/helper-replace-supers": "^7.10.4",
+ "@babel/helper-replace-supers": "^7.12.1",
"@babel/helper-split-export-declaration": "^7.10.4"
+ },
+ "dependencies": {
+ "@babel/generator": {
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.12.5.tgz",
+ "integrity": "sha512-m16TQQJ8hPt7E+OS/XVQg/7U184MLXtvuGbCdA7na61vha+ImkyyNM/9DDA0unYCVZn3ZOhng+qz48/KBOT96A==",
+ "requires": {
+ "@babel/types": "^7.12.5",
+ "jsesc": "^2.5.1",
+ "source-map": "^0.5.0"
+ }
+ },
+ "@babel/helper-member-expression-to-functions": {
+ "version": "7.12.1",
+ "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.12.1.tgz",
+ "integrity": "sha512-k0CIe3tXUKTRSoEx1LQEPFU9vRQfqHtl+kf8eNnDqb4AUJEy5pz6aIiog+YWtVm2jpggjS1laH68bPsR+KWWPQ==",
+ "requires": {
+ "@babel/types": "^7.12.1"
+ }
+ },
+ "@babel/helper-replace-supers": {
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.12.5.tgz",
+ "integrity": "sha512-5YILoed0ZyIpF4gKcpZitEnXEJ9UoDRki1Ey6xz46rxOzfNMAhVIJMoune1hmPVxh40LRv1+oafz7UsWX+vyWA==",
+ "requires": {
+ "@babel/helper-member-expression-to-functions": "^7.12.1",
+ "@babel/helper-optimise-call-expression": "^7.10.4",
+ "@babel/traverse": "^7.12.5",
+ "@babel/types": "^7.12.5"
+ }
+ },
+ "@babel/parser": {
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.12.5.tgz",
+ "integrity": "sha512-FVM6RZQ0mn2KCf1VUED7KepYeUWoVShczewOCfm3nzoBybaih51h+sYVVGthW9M6lPByEPTQf+xm27PBdlpwmQ=="
+ },
+ "@babel/traverse": {
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.12.5.tgz",
+ "integrity": "sha512-xa15FbQnias7z9a62LwYAA5SZZPkHIXpd42C6uW68o8uTuua96FHZy1y61Va5P/i83FAAcMpW8+A/QayntzuqA==",
+ "requires": {
+ "@babel/code-frame": "^7.10.4",
+ "@babel/generator": "^7.12.5",
+ "@babel/helper-function-name": "^7.10.4",
+ "@babel/helper-split-export-declaration": "^7.11.0",
+ "@babel/parser": "^7.12.5",
+ "@babel/types": "^7.12.5",
+ "debug": "^4.1.0",
+ "globals": "^11.1.0",
+ "lodash": "^4.17.19"
+ }
+ },
+ "@babel/types": {
+ "version": "7.12.6",
+ "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.12.6.tgz",
+ "integrity": "sha512-hwyjw6GvjBLiyy3W0YQf0Z5Zf4NpYejUnKFcfcUhZCSffoBBp30w6wP2Wn6pk31jMYZvcOrB/1b7cGXvEoKogA==",
+ "requires": {
+ "@babel/helper-validator-identifier": "^7.10.4",
+ "lodash": "^4.17.19",
+ "to-fast-properties": "^2.0.0"
+ }
+ },
+ "debug": {
+ "version": "4.2.0",
+ "resolved": "https://registry.npmjs.org/debug/-/debug-4.2.0.tgz",
+ "integrity": "sha512-IX2ncY78vDTjZMFUdmsvIRFY2Cf4FnD0wRs+nQwJU8Lu99/tPFdb0VybiiMTPe3I6rQmwsqQqRBvxU+bZ/I8sg==",
+ "requires": {
+ "ms": "2.1.2"
+ }
+ }
}
},
"@babel/helper-create-regexp-features-plugin": {
@@ -325,11 +394,23 @@
}
},
"@babel/helper-skip-transparent-expression-wrappers": {
- "version": "7.11.0",
- "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.11.0.tgz",
- "integrity": "sha512-0XIdiQln4Elglgjbwo9wuJpL/K7AGCY26kmEt0+pRP0TAj4jjyNq1MjoRvikrTVqKcx4Gysxt4cXvVFXP/JO2Q==",
+ "version": "7.12.1",
+ "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.12.1.tgz",
+ "integrity": "sha512-Mf5AUuhG1/OCChOJ/HcADmvcHM42WJockombn8ATJG3OnyiSxBK/Mm5x78BQWvmtXZKHgbjdGL2kin/HOLlZGA==",
"requires": {
- "@babel/types": "^7.11.0"
+ "@babel/types": "^7.12.1"
+ },
+ "dependencies": {
+ "@babel/types": {
+ "version": "7.12.6",
+ "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.12.6.tgz",
+ "integrity": "sha512-hwyjw6GvjBLiyy3W0YQf0Z5Zf4NpYejUnKFcfcUhZCSffoBBp30w6wP2Wn6pk31jMYZvcOrB/1b7cGXvEoKogA==",
+ "requires": {
+ "@babel/helper-validator-identifier": "^7.10.4",
+ "lodash": "^4.17.19",
+ "to-fast-properties": "^2.0.0"
+ }
+ }
}
},
"@babel/helper-split-export-declaration": {
@@ -397,11 +478,11 @@
}
},
"@babel/plugin-proposal-class-properties": {
- "version": "7.10.4",
- "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.10.4.tgz",
- "integrity": "sha512-vhwkEROxzcHGNu2mzUC0OFFNXdZ4M23ib8aRRcJSsW8BZK9pQMD7QB7csl97NBbgGZO7ZyHUyKDnxzOaP4IrCg==",
+ "version": "7.12.1",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.12.1.tgz",
+ "integrity": "sha512-cKp3dlQsFsEs5CWKnN7BnSHOd0EOW8EKpEjkoz1pO2E5KzIDNV9Ros1b0CnmbVgAGXJubOYVBOGCT1OmJwOI7w==",
"requires": {
- "@babel/helper-create-class-features-plugin": "^7.10.4",
+ "@babel/helper-create-class-features-plugin": "^7.12.1",
"@babel/helper-plugin-utils": "^7.10.4"
}
},
@@ -442,18 +523,18 @@
}
},
"@babel/plugin-proposal-nullish-coalescing-operator": {
- "version": "7.10.4",
- "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.10.4.tgz",
- "integrity": "sha512-wq5n1M3ZUlHl9sqT2ok1T2/MTt6AXE0e1Lz4WzWBr95LsAZ5qDXe4KnFuauYyEyLiohvXFMdbsOTMyLZs91Zlw==",
+ "version": "7.12.1",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.12.1.tgz",
+ "integrity": "sha512-nZY0ESiaQDI1y96+jk6VxMOaL4LPo/QDHBqL+SF3/vl6dHkTwHlOI8L4ZwuRBHgakRBw5zsVylel7QPbbGuYgg==",
"requires": {
"@babel/helper-plugin-utils": "^7.10.4",
"@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.0"
}
},
"@babel/plugin-proposal-numeric-separator": {
- "version": "7.10.4",
- "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.10.4.tgz",
- "integrity": "sha512-73/G7QoRoeNkLZFxsoCCvlg4ezE4eM+57PnOqgaPOozd5myfj7p0muD1mRVJvbUWbOzD+q3No2bWbaKy+DJ8DA==",
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.12.5.tgz",
+ "integrity": "sha512-UiAnkKuOrCyjZ3sYNHlRlfuZJbBHknMQ9VMwVeX97Ofwx7RpD6gS2HfqTCh8KNUQgcOm8IKt103oR4KIjh7Q8g==",
"requires": {
"@babel/helper-plugin-utils": "^7.10.4",
"@babel/plugin-syntax-numeric-separator": "^7.10.4"
@@ -479,12 +560,12 @@
}
},
"@babel/plugin-proposal-optional-chaining": {
- "version": "7.11.0",
- "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.11.0.tgz",
- "integrity": "sha512-v9fZIu3Y8562RRwhm1BbMRxtqZNFmFA2EG+pT2diuU8PT3H6T/KXoZ54KgYisfOFZHV6PfvAiBIZ9Rcz+/JCxA==",
+ "version": "7.12.1",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.12.1.tgz",
+ "integrity": "sha512-c2uRpY6WzaVDzynVY9liyykS+kVU+WRZPMPYpkelXH8KBt1oXoI89kPbZKKG/jDT5UK92FTW2fZkZaJhdiBabw==",
"requires": {
"@babel/helper-plugin-utils": "^7.10.4",
- "@babel/helper-skip-transparent-expression-wrappers": "^7.11.0",
+ "@babel/helper-skip-transparent-expression-wrappers": "^7.12.1",
"@babel/plugin-syntax-optional-chaining": "^7.8.0"
}
},
@@ -1585,17 +1666,17 @@
},
"dependencies": {
"@babel/helper-module-imports": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.12.1.tgz",
- "integrity": "sha512-ZeC1TlMSvikvJNy1v/wPIazCu3NdOwgYZLIkmIyAsGhqkNpiDoQQRmaCK8YP4Pq3GPTLPV9WXaPCJKvx06JxKA==",
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.12.5.tgz",
+ "integrity": "sha512-SR713Ogqg6++uexFRORf/+nPXMmWIn80TALu0uaFb+iQIUoR7bOC7zBWyzBs5b3tBBJXuyD0cRu1F15GyzjOWA==",
"requires": {
- "@babel/types": "^7.12.1"
+ "@babel/types": "^7.12.5"
}
},
"@babel/types": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.12.1.tgz",
- "integrity": "sha512-BzSY3NJBKM4kyatSOWh3D/JJ2O3CVzBybHWxtgxnggaxEuaSTTDqeiSb/xk9lrkw2Tbqyivw5ZU4rT+EfznQsA==",
+ "version": "7.12.6",
+ "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.12.6.tgz",
+ "integrity": "sha512-hwyjw6GvjBLiyy3W0YQf0Z5Zf4NpYejUnKFcfcUhZCSffoBBp30w6wP2Wn6pk31jMYZvcOrB/1b7cGXvEoKogA==",
"requires": {
"@babel/helper-validator-identifier": "^7.10.4",
"lodash": "^4.17.19",
@@ -1613,12 +1694,12 @@
}
},
"@babel/plugin-transform-spread": {
- "version": "7.11.0",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.11.0.tgz",
- "integrity": "sha512-UwQYGOqIdQJe4aWNyS7noqAnN2VbaczPLiEtln+zPowRNlD+79w3oi2TWfYe0eZgd+gjZCbsydN7lzWysDt+gw==",
+ "version": "7.12.1",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.12.1.tgz",
+ "integrity": "sha512-vuLp8CP0BE18zVYjsEBZ5xoCecMK6LBMMxYzJnh01rxQRvhNhH1csMMmBfNo5tGpGO+NhdSNW2mzIvBu3K1fng==",
"requires": {
"@babel/helper-plugin-utils": "^7.10.4",
- "@babel/helper-skip-transparent-expression-wrappers": "^7.11.0"
+ "@babel/helper-skip-transparent-expression-wrappers": "^7.12.1"
}
},
"@babel/plugin-transform-sticky-regex": {
@@ -1654,88 +1735,6 @@
"@babel/helper-create-class-features-plugin": "^7.12.1",
"@babel/helper-plugin-utils": "^7.10.4",
"@babel/plugin-syntax-typescript": "^7.12.1"
- },
- "dependencies": {
- "@babel/generator": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.12.1.tgz",
- "integrity": "sha512-DB+6rafIdc9o72Yc3/Ph5h+6hUjeOp66pF0naQBgUFFuPqzQwIlPTm3xZR7YNvduIMtkDIj2t21LSQwnbCrXvg==",
- "requires": {
- "@babel/types": "^7.12.1",
- "jsesc": "^2.5.1",
- "source-map": "^0.5.0"
- }
- },
- "@babel/helper-create-class-features-plugin": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.12.1.tgz",
- "integrity": "sha512-hkL++rWeta/OVOBTRJc9a5Azh5mt5WgZUGAKMD8JM141YsE08K//bp1unBBieO6rUKkIPyUE0USQ30jAy3Sk1w==",
- "requires": {
- "@babel/helper-function-name": "^7.10.4",
- "@babel/helper-member-expression-to-functions": "^7.12.1",
- "@babel/helper-optimise-call-expression": "^7.10.4",
- "@babel/helper-replace-supers": "^7.12.1",
- "@babel/helper-split-export-declaration": "^7.10.4"
- }
- },
- "@babel/helper-member-expression-to-functions": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.12.1.tgz",
- "integrity": "sha512-k0CIe3tXUKTRSoEx1LQEPFU9vRQfqHtl+kf8eNnDqb4AUJEy5pz6aIiog+YWtVm2jpggjS1laH68bPsR+KWWPQ==",
- "requires": {
- "@babel/types": "^7.12.1"
- }
- },
- "@babel/helper-replace-supers": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.12.1.tgz",
- "integrity": "sha512-zJjTvtNJnCFsCXVi5rUInstLd/EIVNmIKA1Q9ynESmMBWPWd+7sdR+G4/wdu+Mppfep0XLyG2m7EBPvjCeFyrw==",
- "requires": {
- "@babel/helper-member-expression-to-functions": "^7.12.1",
- "@babel/helper-optimise-call-expression": "^7.10.4",
- "@babel/traverse": "^7.12.1",
- "@babel/types": "^7.12.1"
- }
- },
- "@babel/parser": {
- "version": "7.12.3",
- "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.12.3.tgz",
- "integrity": "sha512-kFsOS0IbsuhO5ojF8Hc8z/8vEIOkylVBrjiZUbLTE3XFe0Qi+uu6HjzQixkFaqr0ZPAMZcBVxEwmsnsLPZ2Xsw=="
- },
- "@babel/traverse": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.12.1.tgz",
- "integrity": "sha512-MA3WPoRt1ZHo2ZmoGKNqi20YnPt0B1S0GTZEPhhd+hw2KGUzBlHuVunj6K4sNuK+reEvyiPwtp0cpaqLzJDmAw==",
- "requires": {
- "@babel/code-frame": "^7.10.4",
- "@babel/generator": "^7.12.1",
- "@babel/helper-function-name": "^7.10.4",
- "@babel/helper-split-export-declaration": "^7.11.0",
- "@babel/parser": "^7.12.1",
- "@babel/types": "^7.12.1",
- "debug": "^4.1.0",
- "globals": "^11.1.0",
- "lodash": "^4.17.19"
- }
- },
- "@babel/types": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.12.1.tgz",
- "integrity": "sha512-BzSY3NJBKM4kyatSOWh3D/JJ2O3CVzBybHWxtgxnggaxEuaSTTDqeiSb/xk9lrkw2Tbqyivw5ZU4rT+EfznQsA==",
- "requires": {
- "@babel/helper-validator-identifier": "^7.10.4",
- "lodash": "^4.17.19",
- "to-fast-properties": "^2.0.0"
- }
- },
- "debug": {
- "version": "4.2.0",
- "resolved": "https://registry.npmjs.org/debug/-/debug-4.2.0.tgz",
- "integrity": "sha512-IX2ncY78vDTjZMFUdmsvIRFY2Cf4FnD0wRs+nQwJU8Lu99/tPFdb0VybiiMTPe3I6rQmwsqQqRBvxU+bZ/I8sg==",
- "requires": {
- "ms": "2.1.2"
- }
- }
}
},
"@babel/plugin-transform-unicode-escapes": {
@@ -2100,18 +2099,18 @@
}
},
"@babel/runtime-corejs3": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/runtime-corejs3/-/runtime-corejs3-7.12.1.tgz",
- "integrity": "sha512-umhPIcMrlBZ2aTWlWjUseW9LjQKxi1dpFlQS8DzsxB//5K+u6GLTC/JliPKHsd5kJVPIU6X/Hy0YvWOYPcMxBw==",
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/runtime-corejs3/-/runtime-corejs3-7.12.5.tgz",
+ "integrity": "sha512-roGr54CsTmNPPzZoCP1AmDXuBoNao7tnSA83TXTwt+UK5QVyh1DIJnrgYRPWKCF2flqZQXwa7Yr8v7VmLzF0YQ==",
"requires": {
"core-js-pure": "^3.0.0",
"regenerator-runtime": "^0.13.4"
}
},
"@babel/standalone": {
- "version": "7.12.4",
- "resolved": "https://registry.npmjs.org/@babel/standalone/-/standalone-7.12.4.tgz",
- "integrity": "sha512-9vw7RYK7CWh5MdTfLyC7j6hZmDYmm6DieFP4yetvpVftKQ+yrEY7ovhnhsVHznLqx5luU9Bx4k7xoEc3acrsow=="
+ "version": "7.12.6",
+ "resolved": "https://registry.npmjs.org/@babel/standalone/-/standalone-7.12.6.tgz",
+ "integrity": "sha512-yA/OV3jN1nhr0JsAdYWAqbeZ7cAOw/6Fh52rxVMzujr0HF4Z3cau0JBzJfQppFfR9IArrUtcqhBu/+Q/IevoyQ=="
},
"@babel/template": {
"version": "7.10.4",
@@ -2347,6 +2346,24 @@
"resolved": "https://registry.npmjs.org/@emotion/weak-memoize/-/weak-memoize-0.2.5.tgz",
"integrity": "sha512-6U71C2Wp7r5XtFtQzYrW5iKFT67OixrSxjI4MptCHzdSVlgabczzqLe0ZSgnub/5Kp4hSbpDB1tMytZY9pwxxA=="
},
+ "@endemolshinegroup/cosmiconfig-typescript-loader": {
+ "version": "3.0.2",
+ "resolved": "https://registry.npmjs.org/@endemolshinegroup/cosmiconfig-typescript-loader/-/cosmiconfig-typescript-loader-3.0.2.tgz",
+ "integrity": "sha512-QRVtqJuS1mcT56oHpVegkKBlgtWjXw/gHNWO3eL9oyB5Sc7HBoc2OLG/nYpVfT/Jejvo3NUrD0Udk7XgoyDKkA==",
+ "requires": {
+ "lodash.get": "^4",
+ "make-error": "^1",
+ "ts-node": "^9",
+ "tslib": "^2"
+ },
+ "dependencies": {
+ "tslib": {
+ "version": "2.0.3",
+ "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.0.3.tgz",
+ "integrity": "sha512-uZtkfKblCEQtZKBF6EBXVZeQNl82yqtDQdv+eck8u7tdPxjLu2/lp5/uPW+um2tpuxINHWy3GhiccY7QgEaVHQ=="
+ }
+ }
+ },
"@graphql-tools/batch-execute": {
"version": "7.0.0",
"resolved": "https://registry.npmjs.org/@graphql-tools/batch-execute/-/batch-execute-7.0.0.tgz",
@@ -2381,9 +2398,9 @@
}
},
"@graphql-tools/delegate": {
- "version": "7.0.3",
- "resolved": "https://registry.npmjs.org/@graphql-tools/delegate/-/delegate-7.0.3.tgz",
- "integrity": "sha512-BSRF/Wg9XNllWo3Kdt0QBBaFltexn3vAnTOWH1qLrNcmfQAvUMf17/TsAqH9ZLSKU1NW9XCOsd7YMHhhUuTCEg==",
+ "version": "7.0.4",
+ "resolved": "https://registry.npmjs.org/@graphql-tools/delegate/-/delegate-7.0.4.tgz",
+ "integrity": "sha512-6/qL9V31FgECNPwc5As1359hpsAt4ASWsiYBSYWL+Iq9/K0YRcNeEmSseXIyCP4oh8k/9HS/w/m2lkMk/YSUpQ==",
"requires": {
"@ardatan/aggregate-error": "0.0.6",
"@graphql-tools/batch-execute": "^7.0.0",
@@ -2697,9 +2714,9 @@
}
},
"@graphql-tools/url-loader": {
- "version": "6.3.2",
- "resolved": "https://registry.npmjs.org/@graphql-tools/url-loader/-/url-loader-6.3.2.tgz",
- "integrity": "sha512-nrrZD33T7lFeOjIufCrwk2PAHYqFtdFcb1pe1ULWnvuFmFuhZnRCgIsfCsoy+WOMwmZHQ/eXBem//I/bewXlgw==",
+ "version": "6.4.0",
+ "resolved": "https://registry.npmjs.org/@graphql-tools/url-loader/-/url-loader-6.4.0.tgz",
+ "integrity": "sha512-M3mS/VH6vpnai3b3Fa33kYcdCgZvhFh7RqFE1R3NMfhYjphQ10EWwgf31P+VQcBNB2zz+ubxttI6UcJLiGqwuQ==",
"requires": {
"@graphql-tools/delegate": "^7.0.1",
"@graphql-tools/utils": "^7.0.1",
@@ -2707,6 +2724,7 @@
"@types/websocket": "1.0.1",
"cross-fetch": "3.0.6",
"subscriptions-transport-ws": "0.9.18",
+ "sync-fetch": "0.3.0",
"tslib": "~2.0.1",
"valid-url": "1.0.9",
"websocket": "1.0.32"
@@ -2809,6 +2827,11 @@
"@hapi/hoek": "^8.3.0"
}
},
+ "@iarna/toml": {
+ "version": "2.2.5",
+ "resolved": "https://registry.npmjs.org/@iarna/toml/-/toml-2.2.5.tgz",
+ "integrity": "sha512-trnsAYxU3xnS1gPHPyU961coFyLkh4gAD/0zQ5mymY4yOZ+CYvsPqUbOFSw0aDM4y0tV7tiFxL/1XfXPNC6IPg=="
+ },
"@jest/types": {
"version": "25.5.0",
"resolved": "https://registry.npmjs.org/@jest/types/-/types-25.5.0.tgz",
@@ -3945,6 +3968,11 @@
"resolved": "https://registry.npmjs.org/arch/-/arch-2.2.0.tgz",
"integrity": "sha512-Of/R0wqp83cgHozfIYLbBMnej79U/SVGOOyuB3VVFv1NRM/PSFMK12x9KVtiYzJqmnU5WR2qp0Z5rHb7sWGnFQ=="
},
+ "arg": {
+ "version": "4.1.3",
+ "resolved": "https://registry.npmjs.org/arg/-/arg-4.1.3.tgz",
+ "integrity": "sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA=="
+ },
"argparse": {
"version": "1.0.10",
"resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz",
@@ -4386,9 +4414,9 @@
"integrity": "sha512-eqj0hVcJUR57/Ug2zE1Yswsw4LhuqqHhD+8v120T1cl3kjg76QwtyBrdIk4WVwK+lAhBJVYCd/v+4nc4y+8JsA=="
},
"babel-preset-gatsby": {
- "version": "0.5.15",
- "resolved": "https://registry.npmjs.org/babel-preset-gatsby/-/babel-preset-gatsby-0.5.15.tgz",
- "integrity": "sha512-0eno/GAvzmaLW/s+RzsLXrZVQwBMZYU/zMv1HpArGlYbNCon/fK53/Bz3pklJDq1pNAybXQ2RROpPHDyJM2EGA==",
+ "version": "0.5.16",
+ "resolved": "https://registry.npmjs.org/babel-preset-gatsby/-/babel-preset-gatsby-0.5.16.tgz",
+ "integrity": "sha512-zcUYvHRnDxwQmzJnkWtHk4x7cGaMbQjTJIKrvCWpS9u10hQOQUNAz/ZKSH1vUmB4oYap6m+sHDoDIr7PNoCAEQ==",
"requires": {
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.10.4",
@@ -4402,959 +4430,1110 @@
"babel-plugin-dynamic-import-node": "^2.3.3",
"babel-plugin-macros": "^2.8.0",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
- "gatsby-core-utils": "^1.3.23",
+ "gatsby-core-utils": "^1.3.24",
"gatsby-legacy-polyfills": "^0.0.6"
},
"dependencies": {
- "@babel/compat-data": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.12.1.tgz",
- "integrity": "sha512-725AQupWJZ8ba0jbKceeFblZTY90McUBWMwHhkFQ9q1zKPJ95GUktljFcgcsIVwRnTnRKlcYzfiNImg5G9m6ZQ=="
- },
- "@babel/generator": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.12.1.tgz",
- "integrity": "sha512-DB+6rafIdc9o72Yc3/Ph5h+6hUjeOp66pF0naQBgUFFuPqzQwIlPTm3xZR7YNvduIMtkDIj2t21LSQwnbCrXvg==",
- "requires": {
- "@babel/types": "^7.12.1",
- "jsesc": "^2.5.1",
- "source-map": "^0.5.0"
- }
- },
- "@babel/helper-compilation-targets": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.12.1.tgz",
- "integrity": "sha512-jtBEif7jsPwP27GPHs06v4WBV0KrE8a/P7n0N0sSvHn2hwUCYnolP/CLmz51IzAW4NlN+HuoBtb9QcwnRo9F/g==",
- "requires": {
- "@babel/compat-data": "^7.12.1",
- "@babel/helper-validator-option": "^7.12.1",
- "browserslist": "^4.12.0",
- "semver": "^5.5.0"
- }
- },
- "@babel/helper-create-class-features-plugin": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.12.1.tgz",
- "integrity": "sha512-hkL++rWeta/OVOBTRJc9a5Azh5mt5WgZUGAKMD8JM141YsE08K//bp1unBBieO6rUKkIPyUE0USQ30jAy3Sk1w==",
- "requires": {
- "@babel/helper-function-name": "^7.10.4",
- "@babel/helper-member-expression-to-functions": "^7.12.1",
- "@babel/helper-optimise-call-expression": "^7.10.4",
- "@babel/helper-replace-supers": "^7.12.1",
- "@babel/helper-split-export-declaration": "^7.10.4"
- }
- },
- "@babel/helper-create-regexp-features-plugin": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.12.1.tgz",
- "integrity": "sha512-rsZ4LGvFTZnzdNZR5HZdmJVuXK8834R5QkF3WvcnBhrlVtF0HSIUC6zbreL9MgjTywhKokn8RIYRiq99+DLAxA==",
+ "@babel/runtime": {
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.5.tgz",
+ "integrity": "sha512-plcc+hbExy3McchJCEQG3knOsuh3HH+Prx1P6cLIkET/0dLuQDEnrT+s27Axgc9bqfsmNUNHfscgMUdBpC9xfg==",
"requires": {
- "@babel/helper-annotate-as-pure": "^7.10.4",
- "@babel/helper-regex": "^7.10.4",
- "regexpu-core": "^4.7.1"
+ "regenerator-runtime": "^0.13.4"
}
},
- "@babel/helper-member-expression-to-functions": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.12.1.tgz",
- "integrity": "sha512-k0CIe3tXUKTRSoEx1LQEPFU9vRQfqHtl+kf8eNnDqb4AUJEy5pz6aIiog+YWtVm2jpggjS1laH68bPsR+KWWPQ==",
+ "gatsby-core-utils": {
+ "version": "1.3.24",
+ "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-1.3.24.tgz",
+ "integrity": "sha512-SlK7rJv/8NBYC8FodYvTINamBHadXNSv//a2uRwh44N1GSSujuCMvtUcpEuAdg9BUQHc54NbbmFuoqf8p85kgA==",
"requires": {
- "@babel/types": "^7.12.1"
+ "ci-info": "2.0.0",
+ "configstore": "^5.0.1",
+ "fs-extra": "^8.1.0",
+ "node-object-hash": "^2.0.0",
+ "proper-lockfile": "^4.1.1",
+ "tmp": "^0.2.1",
+ "xdg-basedir": "^4.0.0"
}
+ }
+ }
+ },
+ "babel-runtime": {
+ "version": "6.26.0",
+ "resolved": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.26.0.tgz",
+ "integrity": "sha1-llxwWGaOgrVde/4E/yM3vItWR/4=",
+ "requires": {
+ "core-js": "^2.4.0",
+ "regenerator-runtime": "^0.11.0"
+ },
+ "dependencies": {
+ "core-js": {
+ "version": "2.6.11",
+ "resolved": "https://registry.npmjs.org/core-js/-/core-js-2.6.11.tgz",
+ "integrity": "sha512-5wjnpaT/3dV+XB4borEsnAYQchn00XSgTAWKDkEqv+K8KevjbzmofK6hfJ9TZIlpj2N0xQpazy7PiRQiWHqzWg=="
},
- "@babel/helper-module-imports": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.12.1.tgz",
- "integrity": "sha512-ZeC1TlMSvikvJNy1v/wPIazCu3NdOwgYZLIkmIyAsGhqkNpiDoQQRmaCK8YP4Pq3GPTLPV9WXaPCJKvx06JxKA==",
- "requires": {
- "@babel/types": "^7.12.1"
- }
- },
- "@babel/helper-module-transforms": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.12.1.tgz",
- "integrity": "sha512-QQzehgFAZ2bbISiCpmVGfiGux8YVFXQ0abBic2Envhej22DVXV9nCFaS5hIQbkyo1AdGb+gNME2TSh3hYJVV/w==",
- "requires": {
- "@babel/helper-module-imports": "^7.12.1",
- "@babel/helper-replace-supers": "^7.12.1",
- "@babel/helper-simple-access": "^7.12.1",
- "@babel/helper-split-export-declaration": "^7.11.0",
- "@babel/helper-validator-identifier": "^7.10.4",
- "@babel/template": "^7.10.4",
- "@babel/traverse": "^7.12.1",
- "@babel/types": "^7.12.1",
- "lodash": "^4.17.19"
- }
- },
- "@babel/helper-remap-async-to-generator": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.12.1.tgz",
- "integrity": "sha512-9d0KQCRM8clMPcDwo8SevNs+/9a8yWVVmaE80FGJcEP8N1qToREmWEGnBn8BUlJhYRFz6fqxeRL1sl5Ogsed7A==",
- "requires": {
- "@babel/helper-annotate-as-pure": "^7.10.4",
- "@babel/helper-wrap-function": "^7.10.4",
- "@babel/types": "^7.12.1"
- }
- },
- "@babel/helper-replace-supers": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.12.1.tgz",
- "integrity": "sha512-zJjTvtNJnCFsCXVi5rUInstLd/EIVNmIKA1Q9ynESmMBWPWd+7sdR+G4/wdu+Mppfep0XLyG2m7EBPvjCeFyrw==",
- "requires": {
- "@babel/helper-member-expression-to-functions": "^7.12.1",
- "@babel/helper-optimise-call-expression": "^7.10.4",
- "@babel/traverse": "^7.12.1",
- "@babel/types": "^7.12.1"
- }
- },
- "@babel/helper-simple-access": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.12.1.tgz",
- "integrity": "sha512-OxBp7pMrjVewSSC8fXDFrHrBcJATOOFssZwv16F3/6Xtc138GHybBfPbm9kfiqQHKhYQrlamWILwlDCeyMFEaA==",
- "requires": {
- "@babel/types": "^7.12.1"
- }
- },
- "@babel/helper-skip-transparent-expression-wrappers": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.12.1.tgz",
- "integrity": "sha512-Mf5AUuhG1/OCChOJ/HcADmvcHM42WJockombn8ATJG3OnyiSxBK/Mm5x78BQWvmtXZKHgbjdGL2kin/HOLlZGA==",
+ "regenerator-runtime": {
+ "version": "0.11.1",
+ "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz",
+ "integrity": "sha512-MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg=="
+ }
+ }
+ },
+ "backo2": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/backo2/-/backo2-1.0.2.tgz",
+ "integrity": "sha1-MasayLEpNjRj41s+u2n038+6eUc="
+ },
+ "bail": {
+ "version": "1.0.5",
+ "resolved": "https://registry.npmjs.org/bail/-/bail-1.0.5.tgz",
+ "integrity": "sha512-xFbRxM1tahm08yHBP16MMjVUAvDaBMD38zsM9EMAUN61omwLmKlOpB/Zku5QkjZ8TZ4vn53pj+t518cH0S03RQ=="
+ },
+ "balanced-match": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz",
+ "integrity": "sha1-ibTRmasr7kneFk6gK4nORi1xt2c="
+ },
+ "base": {
+ "version": "0.11.2",
+ "resolved": "https://registry.npmjs.org/base/-/base-0.11.2.tgz",
+ "integrity": "sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==",
+ "requires": {
+ "cache-base": "^1.0.1",
+ "class-utils": "^0.3.5",
+ "component-emitter": "^1.2.1",
+ "define-property": "^1.0.0",
+ "isobject": "^3.0.1",
+ "mixin-deep": "^1.2.0",
+ "pascalcase": "^0.1.1"
+ },
+ "dependencies": {
+ "define-property": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz",
+ "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=",
"requires": {
- "@babel/types": "^7.12.1"
+ "is-descriptor": "^1.0.0"
}
},
- "@babel/parser": {
- "version": "7.12.3",
- "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.12.3.tgz",
- "integrity": "sha512-kFsOS0IbsuhO5ojF8Hc8z/8vEIOkylVBrjiZUbLTE3XFe0Qi+uu6HjzQixkFaqr0ZPAMZcBVxEwmsnsLPZ2Xsw=="
- },
- "@babel/plugin-proposal-async-generator-functions": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.12.1.tgz",
- "integrity": "sha512-d+/o30tJxFxrA1lhzJqiUcEJdI6jKlNregCv5bASeGf2Q4MXmnwH7viDo7nhx1/ohf09oaH8j1GVYG/e3Yqk6A==",
+ "is-accessor-descriptor": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz",
+ "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==",
"requires": {
- "@babel/helper-plugin-utils": "^7.10.4",
- "@babel/helper-remap-async-to-generator": "^7.12.1",
- "@babel/plugin-syntax-async-generators": "^7.8.0"
+ "kind-of": "^6.0.0"
}
},
- "@babel/plugin-proposal-dynamic-import": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.12.1.tgz",
- "integrity": "sha512-a4rhUSZFuq5W8/OO8H7BL5zspjnc1FLd9hlOxIK/f7qG4a0qsqk8uvF/ywgBA8/OmjsapjpvaEOYItfGG1qIvQ==",
+ "is-data-descriptor": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz",
+ "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==",
"requires": {
- "@babel/helper-plugin-utils": "^7.10.4",
- "@babel/plugin-syntax-dynamic-import": "^7.8.0"
+ "kind-of": "^6.0.0"
}
},
- "@babel/plugin-proposal-export-namespace-from": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.12.1.tgz",
- "integrity": "sha512-6CThGf0irEkzujYS5LQcjBx8j/4aQGiVv7J9+2f7pGfxqyKh3WnmVJYW3hdrQjyksErMGBPQrCnHfOtna+WLbw==",
+ "is-descriptor": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz",
+ "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==",
"requires": {
- "@babel/helper-plugin-utils": "^7.10.4",
- "@babel/plugin-syntax-export-namespace-from": "^7.8.3"
+ "is-accessor-descriptor": "^1.0.0",
+ "is-data-descriptor": "^1.0.0",
+ "kind-of": "^6.0.2"
}
- },
- "@babel/plugin-proposal-json-strings": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.12.1.tgz",
- "integrity": "sha512-GoLDUi6U9ZLzlSda2Df++VSqDJg3CG+dR0+iWsv6XRw1rEq+zwt4DirM9yrxW6XWaTpmai1cWJLMfM8qQJf+yw==",
+ }
+ }
+ },
+ "base64-arraybuffer": {
+ "version": "0.1.4",
+ "resolved": "https://registry.npmjs.org/base64-arraybuffer/-/base64-arraybuffer-0.1.4.tgz",
+ "integrity": "sha1-mBjHngWbE1X5fgQooBfIOOkLqBI="
+ },
+ "base64-js": {
+ "version": "1.3.1",
+ "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.3.1.tgz",
+ "integrity": "sha512-mLQ4i2QO1ytvGWFWmcngKO//JXAQueZvwEKtjgQFM4jIK0kU+ytMfplL8j+n5mspOfjHwoAg+9yhb7BwAHm36g=="
+ },
+ "base64id": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/base64id/-/base64id-2.0.0.tgz",
+ "integrity": "sha512-lGe34o6EHj9y3Kts9R4ZYs/Gr+6N7MCaMlIFA3F1R2O5/m7K06AxfSeO5530PEERE6/WyEg3lsuyw4GHlPZHog=="
+ },
+ "batch": {
+ "version": "0.6.1",
+ "resolved": "https://registry.npmjs.org/batch/-/batch-0.6.1.tgz",
+ "integrity": "sha1-3DQxT05nkxgJP8dgJyUl+UvyXBY="
+ },
+ "better-assert": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/better-assert/-/better-assert-1.0.2.tgz",
+ "integrity": "sha1-QIZrnhueC1W0gYlDEeaPr/rrxSI=",
+ "requires": {
+ "callsite": "1.0.0"
+ }
+ },
+ "better-opn": {
+ "version": "2.1.1",
+ "resolved": "https://registry.npmjs.org/better-opn/-/better-opn-2.1.1.tgz",
+ "integrity": "sha512-kIPXZS5qwyKiX/HcRvDYfmBQUa8XP17I0mYZZ0y4UhpYOSvtsLHDYqmomS+Mj20aDvD3knEiQ0ecQy2nhio3yA==",
+ "requires": {
+ "open": "^7.0.3"
+ }
+ },
+ "better-queue": {
+ "version": "3.8.10",
+ "resolved": "https://registry.npmjs.org/better-queue/-/better-queue-3.8.10.tgz",
+ "integrity": "sha512-e3gwNZgDCnNWl0An0Tz6sUjKDV9m6aB+K9Xg//vYeo8+KiH8pWhLFxkawcXhm6FpM//GfD9IQv/kmvWCAVVpKA==",
+ "requires": {
+ "better-queue-memory": "^1.0.1",
+ "node-eta": "^0.9.0",
+ "uuid": "^3.0.0"
+ }
+ },
+ "better-queue-memory": {
+ "version": "1.0.4",
+ "resolved": "https://registry.npmjs.org/better-queue-memory/-/better-queue-memory-1.0.4.tgz",
+ "integrity": "sha512-SWg5wFIShYffEmJpI6LgbL8/3Dqhku7xI1oEiy6FroP9DbcZlG0ZDjxvPdP9t7hTGW40IpIcC6zVoGT1oxjOuA=="
+ },
+ "big.js": {
+ "version": "5.2.2",
+ "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz",
+ "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ=="
+ },
+ "binary-extensions": {
+ "version": "1.13.1",
+ "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-1.13.1.tgz",
+ "integrity": "sha512-Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw=="
+ },
+ "bindings": {
+ "version": "1.5.0",
+ "resolved": "https://registry.npmjs.org/bindings/-/bindings-1.5.0.tgz",
+ "integrity": "sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==",
+ "optional": true,
+ "requires": {
+ "file-uri-to-path": "1.0.0"
+ }
+ },
+ "bl": {
+ "version": "4.0.3",
+ "resolved": "https://registry.npmjs.org/bl/-/bl-4.0.3.tgz",
+ "integrity": "sha512-fs4G6/Hu4/EE+F75J8DuN/0IpQqNjAdC7aEQv7Qt8MHGUH7Ckv2MwTEEeN9QehD0pfIDkMI1bkHYkKy7xHyKIg==",
+ "requires": {
+ "buffer": "^5.5.0",
+ "inherits": "^2.0.4",
+ "readable-stream": "^3.4.0"
+ },
+ "dependencies": {
+ "readable-stream": {
+ "version": "3.6.0",
+ "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz",
+ "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==",
"requires": {
- "@babel/helper-plugin-utils": "^7.10.4",
- "@babel/plugin-syntax-json-strings": "^7.8.0"
+ "inherits": "^2.0.3",
+ "string_decoder": "^1.1.1",
+ "util-deprecate": "^1.0.1"
}
- },
- "@babel/plugin-proposal-logical-assignment-operators": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.12.1.tgz",
- "integrity": "sha512-k8ZmVv0JU+4gcUGeCDZOGd0lCIamU/sMtIiX3UWnUc5yzgq6YUGyEolNYD+MLYKfSzgECPcqetVcJP9Afe/aCA==",
+ }
+ }
+ },
+ "blob": {
+ "version": "0.0.5",
+ "resolved": "https://registry.npmjs.org/blob/-/blob-0.0.5.tgz",
+ "integrity": "sha512-gaqbzQPqOoamawKg0LGVd7SzLgXS+JH61oWprSLH+P+abTczqJbhTR8CmJ2u9/bUYNmHTGJx/UEmn6doAvvuig=="
+ },
+ "bluebird": {
+ "version": "3.7.2",
+ "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.7.2.tgz",
+ "integrity": "sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg=="
+ },
+ "bn.js": {
+ "version": "5.1.3",
+ "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-5.1.3.tgz",
+ "integrity": "sha512-GkTiFpjFtUzU9CbMeJ5iazkCzGL3jrhzerzZIuqLABjbwRaFt33I9tUdSNryIptM+RxDet6OKm2WnLXzW51KsQ=="
+ },
+ "body-parser": {
+ "version": "1.19.0",
+ "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.19.0.tgz",
+ "integrity": "sha512-dhEPs72UPbDnAQJ9ZKMNTP6ptJaionhP5cBb541nXPlW60Jepo9RV/a4fX4XWW9CuFNK22krhrj1+rgzifNCsw==",
+ "requires": {
+ "bytes": "3.1.0",
+ "content-type": "~1.0.4",
+ "debug": "2.6.9",
+ "depd": "~1.1.2",
+ "http-errors": "1.7.2",
+ "iconv-lite": "0.4.24",
+ "on-finished": "~2.3.0",
+ "qs": "6.7.0",
+ "raw-body": "2.4.0",
+ "type-is": "~1.6.17"
+ },
+ "dependencies": {
+ "debug": {
+ "version": "2.6.9",
+ "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
+ "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
"requires": {
- "@babel/helper-plugin-utils": "^7.10.4",
- "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4"
+ "ms": "2.0.0"
}
},
- "@babel/plugin-proposal-numeric-separator": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.12.1.tgz",
- "integrity": "sha512-MR7Ok+Af3OhNTCxYVjJZHS0t97ydnJZt/DbR4WISO39iDnhiD8XHrY12xuSJ90FFEGjir0Fzyyn7g/zY6hxbxA==",
- "requires": {
- "@babel/helper-plugin-utils": "^7.10.4",
- "@babel/plugin-syntax-numeric-separator": "^7.10.4"
- }
+ "ms": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
+ "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g="
+ }
+ }
+ },
+ "bonjour": {
+ "version": "3.5.0",
+ "resolved": "https://registry.npmjs.org/bonjour/-/bonjour-3.5.0.tgz",
+ "integrity": "sha1-jokKGD2O6aI5OzhExpGkK897yfU=",
+ "requires": {
+ "array-flatten": "^2.1.0",
+ "deep-equal": "^1.0.1",
+ "dns-equal": "^1.0.0",
+ "dns-txt": "^2.0.2",
+ "multicast-dns": "^6.0.1",
+ "multicast-dns-service-types": "^1.1.0"
+ },
+ "dependencies": {
+ "array-flatten": {
+ "version": "2.1.2",
+ "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-2.1.2.tgz",
+ "integrity": "sha512-hNfzcOV8W4NdualtqBFPyVO+54DSJuZGY9qT4pRroB6S9e3iiido2ISIC5h9R2sPJ8H3FHCIiEnsv1lPXO3KtQ=="
+ }
+ }
+ },
+ "boolbase": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz",
+ "integrity": "sha1-aN/1++YMUes3cl6p4+0xDcwed24="
+ },
+ "boxen": {
+ "version": "4.2.0",
+ "resolved": "https://registry.npmjs.org/boxen/-/boxen-4.2.0.tgz",
+ "integrity": "sha512-eB4uT9RGzg2odpER62bBwSLvUeGC+WbRjjyyFhGsKnc8wp/m0+hQsMUvUe3H2V0D5vw0nBdO1hCJoZo5mKeuIQ==",
+ "requires": {
+ "ansi-align": "^3.0.0",
+ "camelcase": "^5.3.1",
+ "chalk": "^3.0.0",
+ "cli-boxes": "^2.2.0",
+ "string-width": "^4.1.0",
+ "term-size": "^2.1.0",
+ "type-fest": "^0.8.1",
+ "widest-line": "^3.1.0"
+ },
+ "dependencies": {
+ "ansi-regex": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.0.tgz",
+ "integrity": "sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg=="
},
- "@babel/plugin-proposal-object-rest-spread": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.12.1.tgz",
- "integrity": "sha512-s6SowJIjzlhx8o7lsFx5zmY4At6CTtDvgNQDdPzkBQucle58A6b/TTeEBYtyDgmcXjUTM+vE8YOGHZzzbc/ioA==",
+ "ansi-styles": {
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
+ "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
"requires": {
- "@babel/helper-plugin-utils": "^7.10.4",
- "@babel/plugin-syntax-object-rest-spread": "^7.8.0",
- "@babel/plugin-transform-parameters": "^7.12.1"
+ "color-convert": "^2.0.1"
}
},
- "@babel/plugin-proposal-optional-catch-binding": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.12.1.tgz",
- "integrity": "sha512-hFvIjgprh9mMw5v42sJWLI1lzU5L2sznP805zeT6rySVRA0Y18StRhDqhSxlap0oVgItRsB6WSROp4YnJTJz0g==",
+ "chalk": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz",
+ "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==",
"requires": {
- "@babel/helper-plugin-utils": "^7.10.4",
- "@babel/plugin-syntax-optional-catch-binding": "^7.8.0"
+ "ansi-styles": "^4.1.0",
+ "supports-color": "^7.1.0"
}
},
- "@babel/plugin-proposal-private-methods": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.12.1.tgz",
- "integrity": "sha512-mwZ1phvH7/NHK6Kf8LP7MYDogGV+DKB1mryFOEwx5EBNQrosvIczzZFTUmWaeujd5xT6G1ELYWUz3CutMhjE1w==",
+ "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": {
- "@babel/helper-create-class-features-plugin": "^7.12.1",
- "@babel/helper-plugin-utils": "^7.10.4"
+ "color-name": "~1.1.4"
}
},
- "@babel/plugin-proposal-unicode-property-regex": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.12.1.tgz",
- "integrity": "sha512-MYq+l+PvHuw/rKUz1at/vb6nCnQ2gmJBNaM62z0OgH7B2W1D9pvkpYtlti9bGtizNIU1K3zm4bZF9F91efVY0w==",
- "requires": {
- "@babel/helper-create-regexp-features-plugin": "^7.12.1",
- "@babel/helper-plugin-utils": "^7.10.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=="
},
- "@babel/plugin-syntax-class-properties": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.1.tgz",
- "integrity": "sha512-U40A76x5gTwmESz+qiqssqmeEsKvcSyvtgktrm0uzcARAmM9I1jR221f6Oq+GmHrcD+LvZDag1UTOTe2fL3TeA==",
- "requires": {
- "@babel/helper-plugin-utils": "^7.10.4"
- }
+ "has-flag": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
+ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ=="
},
- "@babel/plugin-syntax-top-level-await": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.12.1.tgz",
- "integrity": "sha512-i7ooMZFS+a/Om0crxZodrTzNEPJHZrlMVGMTEpFAj6rYY/bKCddB0Dk/YxfPuYXOopuhKk/e1jV6h+WUU9XN3A==",
+ "is-fullwidth-code-point": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz",
+ "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg=="
+ },
+ "string-width": {
+ "version": "4.2.0",
+ "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.0.tgz",
+ "integrity": "sha512-zUz5JD+tgqtuDjMhwIg5uFVV3dtqZ9yQJlZVfq4I01/K5Paj5UHj7VyrQOJvzawSVlKpObApbfD0Ed6yJc+1eg==",
"requires": {
- "@babel/helper-plugin-utils": "^7.10.4"
+ "emoji-regex": "^8.0.0",
+ "is-fullwidth-code-point": "^3.0.0",
+ "strip-ansi": "^6.0.0"
}
},
- "@babel/plugin-transform-arrow-functions": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.12.1.tgz",
- "integrity": "sha512-5QB50qyN44fzzz4/qxDPQMBCTHgxg3n0xRBLJUmBlLoU/sFvxVWGZF/ZUfMVDQuJUKXaBhbupxIzIfZ6Fwk/0A==",
+ "strip-ansi": {
+ "version": "6.0.0",
+ "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.0.tgz",
+ "integrity": "sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w==",
"requires": {
- "@babel/helper-plugin-utils": "^7.10.4"
+ "ansi-regex": "^5.0.0"
}
},
- "@babel/plugin-transform-async-to-generator": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.12.1.tgz",
- "integrity": "sha512-SDtqoEcarK1DFlRJ1hHRY5HvJUj5kX4qmtpMAm2QnhOlyuMC4TMdCRgW6WXpv93rZeYNeLP22y8Aq2dbcDRM1A==",
+ "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": {
- "@babel/helper-module-imports": "^7.12.1",
- "@babel/helper-plugin-utils": "^7.10.4",
- "@babel/helper-remap-async-to-generator": "^7.12.1"
+ "has-flag": "^4.0.0"
}
- },
- "@babel/plugin-transform-block-scoped-functions": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.12.1.tgz",
- "integrity": "sha512-5OpxfuYnSgPalRpo8EWGPzIYf0lHBWORCkj5M0oLBwHdlux9Ri36QqGW3/LR13RSVOAoUUMzoPI/jpE4ABcHoA==",
+ }
+ }
+ },
+ "brace-expansion": {
+ "version": "1.1.11",
+ "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz",
+ "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==",
+ "requires": {
+ "balanced-match": "^1.0.0",
+ "concat-map": "0.0.1"
+ }
+ },
+ "braces": {
+ "version": "2.3.2",
+ "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz",
+ "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==",
+ "requires": {
+ "arr-flatten": "^1.1.0",
+ "array-unique": "^0.3.2",
+ "extend-shallow": "^2.0.1",
+ "fill-range": "^4.0.0",
+ "isobject": "^3.0.1",
+ "repeat-element": "^1.1.2",
+ "snapdragon": "^0.8.1",
+ "snapdragon-node": "^2.0.1",
+ "split-string": "^3.0.2",
+ "to-regex": "^3.0.1"
+ },
+ "dependencies": {
+ "extend-shallow": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz",
+ "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=",
"requires": {
- "@babel/helper-plugin-utils": "^7.10.4"
+ "is-extendable": "^0.1.0"
}
- },
- "@babel/plugin-transform-block-scoping": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.12.1.tgz",
- "integrity": "sha512-zJyAC9sZdE60r1nVQHblcfCj29Dh2Y0DOvlMkcqSo0ckqjiCwNiUezUKw+RjOCwGfpLRwnAeQ2XlLpsnGkvv9w==",
+ }
+ }
+ },
+ "brorand": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/brorand/-/brorand-1.1.0.tgz",
+ "integrity": "sha1-EsJe/kCkXjwyPrhnWgoM5XsiNx8="
+ },
+ "browserify-aes": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/browserify-aes/-/browserify-aes-1.2.0.tgz",
+ "integrity": "sha512-+7CHXqGuspUn/Sl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc/uzk5zSOI3H52CYnjCfb5hA==",
+ "requires": {
+ "buffer-xor": "^1.0.3",
+ "cipher-base": "^1.0.0",
+ "create-hash": "^1.1.0",
+ "evp_bytestokey": "^1.0.3",
+ "inherits": "^2.0.1",
+ "safe-buffer": "^5.0.1"
+ }
+ },
+ "browserify-cipher": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/browserify-cipher/-/browserify-cipher-1.0.1.tgz",
+ "integrity": "sha512-sPhkz0ARKbf4rRQt2hTpAHqn47X3llLkUGn+xEJzLjwY8LRs2p0v7ljvI5EyoRO/mexrNunNECisZs+gw2zz1w==",
+ "requires": {
+ "browserify-aes": "^1.0.4",
+ "browserify-des": "^1.0.0",
+ "evp_bytestokey": "^1.0.0"
+ }
+ },
+ "browserify-des": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/browserify-des/-/browserify-des-1.0.2.tgz",
+ "integrity": "sha512-BioO1xf3hFwz4kc6iBhI3ieDFompMhrMlnDFC4/0/vd5MokpuAc3R+LYbwTA9A5Yc9pq9UYPqffKpW2ObuwX5A==",
+ "requires": {
+ "cipher-base": "^1.0.1",
+ "des.js": "^1.0.0",
+ "inherits": "^2.0.1",
+ "safe-buffer": "^5.1.2"
+ }
+ },
+ "browserify-rsa": {
+ "version": "4.0.1",
+ "resolved": "https://registry.npmjs.org/browserify-rsa/-/browserify-rsa-4.0.1.tgz",
+ "integrity": "sha1-IeCr+vbyApzy+vsTNWenAdQTVSQ=",
+ "requires": {
+ "bn.js": "^4.1.0",
+ "randombytes": "^2.0.1"
+ },
+ "dependencies": {
+ "bn.js": {
+ "version": "4.11.9",
+ "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.11.9.tgz",
+ "integrity": "sha512-E6QoYqCKZfgatHTdHzs1RRKP7ip4vvm+EyRUeE2RF0NblwVvb0p6jSVeNTOFxPn26QXN2o6SMfNxKp6kU8zQaw=="
+ }
+ }
+ },
+ "browserify-sign": {
+ "version": "4.2.1",
+ "resolved": "https://registry.npmjs.org/browserify-sign/-/browserify-sign-4.2.1.tgz",
+ "integrity": "sha512-/vrA5fguVAKKAVTNJjgSm1tRQDHUU6DbwO9IROu/0WAzC8PKhucDSh18J0RMvVeHAn5puMd+QHC2erPRNf8lmg==",
+ "requires": {
+ "bn.js": "^5.1.1",
+ "browserify-rsa": "^4.0.1",
+ "create-hash": "^1.2.0",
+ "create-hmac": "^1.1.7",
+ "elliptic": "^6.5.3",
+ "inherits": "^2.0.4",
+ "parse-asn1": "^5.1.5",
+ "readable-stream": "^3.6.0",
+ "safe-buffer": "^5.2.0"
+ },
+ "dependencies": {
+ "readable-stream": {
+ "version": "3.6.0",
+ "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz",
+ "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==",
"requires": {
- "@babel/helper-plugin-utils": "^7.10.4"
+ "inherits": "^2.0.3",
+ "string_decoder": "^1.1.1",
+ "util-deprecate": "^1.0.1"
}
},
- "@babel/plugin-transform-classes": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.12.1.tgz",
- "integrity": "sha512-/74xkA7bVdzQTBeSUhLLJgYIcxw/dpEpCdRDiHgPJ3Mv6uC11UhjpOhl72CgqbBCmt1qtssCyB2xnJm1+PFjog==",
- "requires": {
- "@babel/helper-annotate-as-pure": "^7.10.4",
- "@babel/helper-define-map": "^7.10.4",
- "@babel/helper-function-name": "^7.10.4",
- "@babel/helper-optimise-call-expression": "^7.10.4",
- "@babel/helper-plugin-utils": "^7.10.4",
- "@babel/helper-replace-supers": "^7.12.1",
- "@babel/helper-split-export-declaration": "^7.10.4",
- "globals": "^11.1.0"
- }
- },
- "@babel/plugin-transform-computed-properties": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.12.1.tgz",
- "integrity": "sha512-vVUOYpPWB7BkgUWPo4C44mUQHpTZXakEqFjbv8rQMg7TC6S6ZhGZ3otQcRH6u7+adSlE5i0sp63eMC/XGffrzg==",
- "requires": {
- "@babel/helper-plugin-utils": "^7.10.4"
- }
- },
- "@babel/plugin-transform-destructuring": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.12.1.tgz",
- "integrity": "sha512-fRMYFKuzi/rSiYb2uRLiUENJOKq4Gnl+6qOv5f8z0TZXg3llUwUhsNNwrwaT/6dUhJTzNpBr+CUvEWBtfNY1cw==",
- "requires": {
- "@babel/helper-plugin-utils": "^7.10.4"
- }
- },
- "@babel/plugin-transform-dotall-regex": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.12.1.tgz",
- "integrity": "sha512-B2pXeRKoLszfEW7J4Hg9LoFaWEbr/kzo3teWHmtFCszjRNa/b40f9mfeqZsIDLLt/FjwQ6pz/Gdlwy85xNckBA==",
- "requires": {
- "@babel/helper-create-regexp-features-plugin": "^7.12.1",
- "@babel/helper-plugin-utils": "^7.10.4"
- }
- },
- "@babel/plugin-transform-duplicate-keys": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.12.1.tgz",
- "integrity": "sha512-iRght0T0HztAb/CazveUpUQrZY+aGKKaWXMJ4uf9YJtqxSUe09j3wteztCUDRHs+SRAL7yMuFqUsLoAKKzgXjw==",
- "requires": {
- "@babel/helper-plugin-utils": "^7.10.4"
- }
- },
- "@babel/plugin-transform-exponentiation-operator": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.12.1.tgz",
- "integrity": "sha512-7tqwy2bv48q+c1EHbXK0Zx3KXd2RVQp6OC7PbwFNt/dPTAV3Lu5sWtWuAj8owr5wqtWnqHfl2/mJlUmqkChKug==",
- "requires": {
- "@babel/helper-builder-binary-assignment-operator-visitor": "^7.10.4",
- "@babel/helper-plugin-utils": "^7.10.4"
- }
- },
- "@babel/plugin-transform-for-of": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.12.1.tgz",
- "integrity": "sha512-Zaeq10naAsuHo7heQvyV0ptj4dlZJwZgNAtBYBnu5nNKJoW62m0zKcIEyVECrUKErkUkg6ajMy4ZfnVZciSBhg==",
- "requires": {
- "@babel/helper-plugin-utils": "^7.10.4"
- }
- },
- "@babel/plugin-transform-function-name": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.12.1.tgz",
- "integrity": "sha512-JF3UgJUILoFrFMEnOJLJkRHSk6LUSXLmEFsA23aR2O5CSLUxbeUX1IZ1YQ7Sn0aXb601Ncwjx73a+FVqgcljVw==",
- "requires": {
- "@babel/helper-function-name": "^7.10.4",
- "@babel/helper-plugin-utils": "^7.10.4"
- }
- },
- "@babel/plugin-transform-literals": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.12.1.tgz",
- "integrity": "sha512-+PxVGA+2Ag6uGgL0A5f+9rklOnnMccwEBzwYFL3EUaKuiyVnUipyXncFcfjSkbimLrODoqki1U9XxZzTvfN7IQ==",
- "requires": {
- "@babel/helper-plugin-utils": "^7.10.4"
- }
- },
- "@babel/plugin-transform-member-expression-literals": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.12.1.tgz",
- "integrity": "sha512-1sxePl6z9ad0gFMB9KqmYofk34flq62aqMt9NqliS/7hPEpURUCMbyHXrMPlo282iY7nAvUB1aQd5mg79UD9Jg==",
- "requires": {
- "@babel/helper-plugin-utils": "^7.10.4"
- }
- },
- "@babel/plugin-transform-modules-amd": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.12.1.tgz",
- "integrity": "sha512-tDW8hMkzad5oDtzsB70HIQQRBiTKrhfgwC/KkJeGsaNFTdWhKNt/BiE8c5yj19XiGyrxpbkOfH87qkNg1YGlOQ==",
- "requires": {
- "@babel/helper-module-transforms": "^7.12.1",
- "@babel/helper-plugin-utils": "^7.10.4",
- "babel-plugin-dynamic-import-node": "^2.3.3"
- }
- },
- "@babel/plugin-transform-modules-commonjs": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.12.1.tgz",
- "integrity": "sha512-dY789wq6l0uLY8py9c1B48V8mVL5gZh/+PQ5ZPrylPYsnAvnEMjqsUXkuoDVPeVK+0VyGar+D08107LzDQ6pag==",
- "requires": {
- "@babel/helper-module-transforms": "^7.12.1",
- "@babel/helper-plugin-utils": "^7.10.4",
- "@babel/helper-simple-access": "^7.12.1",
- "babel-plugin-dynamic-import-node": "^2.3.3"
- }
- },
- "@babel/plugin-transform-modules-systemjs": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.12.1.tgz",
- "integrity": "sha512-Hn7cVvOavVh8yvW6fLwveFqSnd7rbQN3zJvoPNyNaQSvgfKmDBO9U1YL9+PCXGRlZD9tNdWTy5ACKqMuzyn32Q==",
- "requires": {
- "@babel/helper-hoist-variables": "^7.10.4",
- "@babel/helper-module-transforms": "^7.12.1",
- "@babel/helper-plugin-utils": "^7.10.4",
- "@babel/helper-validator-identifier": "^7.10.4",
- "babel-plugin-dynamic-import-node": "^2.3.3"
- }
- },
- "@babel/plugin-transform-modules-umd": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.12.1.tgz",
- "integrity": "sha512-aEIubCS0KHKM0zUos5fIoQm+AZUMt1ZvMpqz0/H5qAQ7vWylr9+PLYurT+Ic7ID/bKLd4q8hDovaG3Zch2uz5Q==",
+ "safe-buffer": {
+ "version": "5.2.1",
+ "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz",
+ "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ=="
+ }
+ }
+ },
+ "browserify-zlib": {
+ "version": "0.2.0",
+ "resolved": "https://registry.npmjs.org/browserify-zlib/-/browserify-zlib-0.2.0.tgz",
+ "integrity": "sha512-Z942RysHXmJrhqk88FmKBVq/v5tqmSkDz7p54G/MGyjMnCFFnC79XWNbg+Vta8W6Wb2qtSZTSxIGkJrRpCFEiA==",
+ "requires": {
+ "pako": "~1.0.5"
+ }
+ },
+ "browserslist": {
+ "version": "4.13.0",
+ "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.13.0.tgz",
+ "integrity": "sha512-MINatJ5ZNrLnQ6blGvePd/QOz9Xtu+Ne+x29iQSCHfkU5BugKVJwZKn/iiL8UbpIpa3JhviKjz+XxMo0m2caFQ==",
+ "requires": {
+ "caniuse-lite": "^1.0.30001093",
+ "electron-to-chromium": "^1.3.488",
+ "escalade": "^3.0.1",
+ "node-releases": "^1.1.58"
+ }
+ },
+ "buffer": {
+ "version": "5.7.1",
+ "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz",
+ "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==",
+ "requires": {
+ "base64-js": "^1.3.1",
+ "ieee754": "^1.1.13"
+ }
+ },
+ "buffer-from": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.1.tgz",
+ "integrity": "sha512-MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A=="
+ },
+ "buffer-indexof": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/buffer-indexof/-/buffer-indexof-1.1.1.tgz",
+ "integrity": "sha512-4/rOEg86jivtPTeOUUT61jJO1Ya1TrR/OkqCSZDyq84WJh3LuuiphBYJN+fm5xufIk4XAFcEwte/8WzC8If/1g=="
+ },
+ "buffer-xor": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/buffer-xor/-/buffer-xor-1.0.3.tgz",
+ "integrity": "sha1-JuYe0UIvtw3ULm42cp7VHYVf6Nk="
+ },
+ "bufferutil": {
+ "version": "4.0.2",
+ "resolved": "https://registry.npmjs.org/bufferutil/-/bufferutil-4.0.2.tgz",
+ "integrity": "sha512-AtnG3W6M8B2n4xDQ5R+70EXvOpnXsFYg/AK2yTZd+HQ/oxAdz+GI+DvjmhBw3L0ole+LJ0ngqY4JMbDzkfNzhA==",
+ "requires": {
+ "node-gyp-build": "^4.2.0"
+ }
+ },
+ "builtin-modules": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/builtin-modules/-/builtin-modules-3.1.0.tgz",
+ "integrity": "sha512-k0KL0aWZuBt2lrxrcASWDfwOLMnodeQjodT/1SxEQAXsHANgo6ZC/VEaSEHCXt7aSTZ4/4H5LKa+tBXmW7Vtvw=="
+ },
+ "builtin-status-codes": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz",
+ "integrity": "sha1-hZgoeOIbmOHGZCXgPQF0eI9Wnug="
+ },
+ "bytes": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.0.tgz",
+ "integrity": "sha512-zauLjrfCG+xvoyaqLoV8bLVXXNGC4JqlxFCutSDWA6fJrTo2ZuvLYTqZ7aHBLZSMOopbzwv8f+wZcVzfVTI2Dg=="
+ },
+ "cacache": {
+ "version": "13.0.1",
+ "resolved": "https://registry.npmjs.org/cacache/-/cacache-13.0.1.tgz",
+ "integrity": "sha512-5ZvAxd05HDDU+y9BVvcqYu2LLXmPnQ0hW62h32g4xBTgL/MppR4/04NHfj/ycM2y6lmTnbw6HVi+1eN0Psba6w==",
+ "requires": {
+ "chownr": "^1.1.2",
+ "figgy-pudding": "^3.5.1",
+ "fs-minipass": "^2.0.0",
+ "glob": "^7.1.4",
+ "graceful-fs": "^4.2.2",
+ "infer-owner": "^1.0.4",
+ "lru-cache": "^5.1.1",
+ "minipass": "^3.0.0",
+ "minipass-collect": "^1.0.2",
+ "minipass-flush": "^1.0.5",
+ "minipass-pipeline": "^1.2.2",
+ "mkdirp": "^0.5.1",
+ "move-concurrently": "^1.0.1",
+ "p-map": "^3.0.0",
+ "promise-inflight": "^1.0.1",
+ "rimraf": "^2.7.1",
+ "ssri": "^7.0.0",
+ "unique-filename": "^1.1.1"
+ },
+ "dependencies": {
+ "lru-cache": {
+ "version": "5.1.1",
+ "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz",
+ "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==",
"requires": {
- "@babel/helper-module-transforms": "^7.12.1",
- "@babel/helper-plugin-utils": "^7.10.4"
+ "yallist": "^3.0.2"
}
},
- "@babel/plugin-transform-named-capturing-groups-regex": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.12.1.tgz",
- "integrity": "sha512-tB43uQ62RHcoDp9v2Nsf+dSM8sbNodbEicbQNA53zHz8pWUhsgHSJCGpt7daXxRydjb0KnfmB+ChXOv3oADp1Q==",
+ "rimraf": {
+ "version": "2.7.1",
+ "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz",
+ "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==",
"requires": {
- "@babel/helper-create-regexp-features-plugin": "^7.12.1"
+ "glob": "^7.1.3"
}
},
- "@babel/plugin-transform-new-target": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.12.1.tgz",
- "integrity": "sha512-+eW/VLcUL5L9IvJH7rT1sT0CzkdUTvPrXC2PXTn/7z7tXLBuKvezYbGdxD5WMRoyvyaujOq2fWoKl869heKjhw==",
+ "yallist": {
+ "version": "3.1.1",
+ "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz",
+ "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g=="
+ }
+ }
+ },
+ "cache-base": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/cache-base/-/cache-base-1.0.1.tgz",
+ "integrity": "sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==",
+ "requires": {
+ "collection-visit": "^1.0.0",
+ "component-emitter": "^1.2.1",
+ "get-value": "^2.0.6",
+ "has-value": "^1.0.0",
+ "isobject": "^3.0.1",
+ "set-value": "^2.0.0",
+ "to-object-path": "^0.3.0",
+ "union-value": "^1.0.0",
+ "unset-value": "^1.0.0"
+ }
+ },
+ "cache-manager": {
+ "version": "2.11.1",
+ "resolved": "https://registry.npmjs.org/cache-manager/-/cache-manager-2.11.1.tgz",
+ "integrity": "sha512-XhUuc9eYwkzpK89iNewFwtvcDYMUsvtwzHeyEOPJna/WsVsXcrzsA1ft2M0QqPNunEzLhNCYPo05tEfG+YuNow==",
+ "requires": {
+ "async": "1.5.2",
+ "lodash.clonedeep": "4.5.0",
+ "lru-cache": "4.0.0"
+ }
+ },
+ "cache-manager-fs-hash": {
+ "version": "0.0.9",
+ "resolved": "https://registry.npmjs.org/cache-manager-fs-hash/-/cache-manager-fs-hash-0.0.9.tgz",
+ "integrity": "sha512-G0RUUSMZADiMx/0tHjPa+uzJyjtVB/Xt9yuFm6g/rBpm0p/IMr4atUWX2G2f1yGCPmDnyUcFz4RlSpgNRgvldg==",
+ "requires": {
+ "lockfile": "^1.0.4"
+ }
+ },
+ "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.1.0",
+ "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.1.0.tgz",
+ "integrity": "sha512-EXr1FOzrzTfGeL0gQdeFEvOMm2mzMOglyiOXSTpPC+iAjAKftbr3jpCMWynogwYnM+eSj9sHGc6wjIcDvYiygw==",
"requires": {
- "@babel/helper-plugin-utils": "^7.10.4"
+ "pump": "^3.0.0"
}
},
- "@babel/plugin-transform-object-super": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.12.1.tgz",
- "integrity": "sha512-AvypiGJH9hsquNUn+RXVcBdeE3KHPZexWRdimhuV59cSoOt5kFBmqlByorAeUlGG2CJWd0U+4ZtNKga/TB0cAw==",
- "requires": {
- "@babel/helper-plugin-utils": "^7.10.4",
- "@babel/helper-replace-supers": "^7.12.1"
- }
+ "lowercase-keys": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-2.0.0.tgz",
+ "integrity": "sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA=="
},
- "@babel/plugin-transform-parameters": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.12.1.tgz",
- "integrity": "sha512-xq9C5EQhdPK23ZeCdMxl8bbRnAgHFrw5EOC3KJUsSylZqdkCaFEXxGSBuTSObOpiiHHNyb82es8M1QYgfQGfNg==",
+ "normalize-url": {
+ "version": "4.5.0",
+ "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-4.5.0.tgz",
+ "integrity": "sha512-2s47yzUxdexf1OhyRi4Em83iQk0aPvwTddtFz4hnSSw9dCEsLEGf6SwIO8ss/19S9iBb5sJaOuTvTGDeZI00BQ=="
+ }
+ }
+ },
+ "call-bind": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.0.tgz",
+ "integrity": "sha512-AEXsYIyyDY3MCzbwdhzG3Jx1R0J2wetQyUynn6dYHAO+bg8l1k7jwZtRv4ryryFs7EP+NDlikJlVe59jr0cM2w==",
+ "requires": {
+ "function-bind": "^1.1.1",
+ "get-intrinsic": "^1.0.0"
+ }
+ },
+ "caller-callsite": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/caller-callsite/-/caller-callsite-2.0.0.tgz",
+ "integrity": "sha1-hH4PzgoiN1CpoCfFSzNzGtMVQTQ=",
+ "requires": {
+ "callsites": "^2.0.0"
+ },
+ "dependencies": {
+ "callsites": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/callsites/-/callsites-2.0.0.tgz",
+ "integrity": "sha1-BuuE8A7qQT2oav/vrL/7Ngk7PFA="
+ }
+ }
+ },
+ "caller-path": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/caller-path/-/caller-path-2.0.0.tgz",
+ "integrity": "sha1-Ro+DBE42mrIBD6xfBs7uFbsssfQ=",
+ "requires": {
+ "caller-callsite": "^2.0.0"
+ }
+ },
+ "callsite": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/callsite/-/callsite-1.0.0.tgz",
+ "integrity": "sha1-KAOY5dZkvXQDi28JBRU+borxvCA="
+ },
+ "callsites": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz",
+ "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ=="
+ },
+ "camel-case": {
+ "version": "4.1.1",
+ "resolved": "https://registry.npmjs.org/camel-case/-/camel-case-4.1.1.tgz",
+ "integrity": "sha512-7fa2WcG4fYFkclIvEmxBbTvmibwF2/agfEBc6q3lOpVu0A13ltLsA+Hr/8Hp6kp5f+G7hKi6t8lys6XxP+1K6Q==",
+ "requires": {
+ "pascal-case": "^3.1.1",
+ "tslib": "^1.10.0"
+ }
+ },
+ "camelcase": {
+ "version": "5.3.1",
+ "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz",
+ "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg=="
+ },
+ "camelcase-css": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/camelcase-css/-/camelcase-css-2.0.1.tgz",
+ "integrity": "sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA=="
+ },
+ "caniuse-api": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/caniuse-api/-/caniuse-api-3.0.0.tgz",
+ "integrity": "sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==",
+ "requires": {
+ "browserslist": "^4.0.0",
+ "caniuse-lite": "^1.0.0",
+ "lodash.memoize": "^4.1.2",
+ "lodash.uniq": "^4.5.0"
+ }
+ },
+ "caniuse-lite": {
+ "version": "1.0.30001109",
+ "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001109.tgz",
+ "integrity": "sha512-4JIXRodHzdS3HdK8nSgIqXYLExOvG+D2/EenSvcub2Kp3QEADjo2v2oUn5g0n0D+UNwG9BtwKOyGcSq2qvQXvQ=="
+ },
+ "ccount": {
+ "version": "1.0.5",
+ "resolved": "https://registry.npmjs.org/ccount/-/ccount-1.0.5.tgz",
+ "integrity": "sha512-MOli1W+nfbPLlKEhInaxhRdp7KVLFxLN5ykwzHgLsLI3H3gs5jjFAK4Eoj3OzzcxCtumDaI8onoVDeQyWaNTkw=="
+ },
+ "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"
+ }
+ },
+ "change-case": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/change-case/-/change-case-3.1.0.tgz",
+ "integrity": "sha512-2AZp7uJZbYEzRPsFoa+ijKdvp9zsrnnt6+yFokfwEpeJm0xuJDVoxiRCAaTzyJND8GJkofo2IcKWaUZ/OECVzw==",
+ "requires": {
+ "camel-case": "^3.0.0",
+ "constant-case": "^2.0.0",
+ "dot-case": "^2.1.0",
+ "header-case": "^1.0.0",
+ "is-lower-case": "^1.1.0",
+ "is-upper-case": "^1.1.0",
+ "lower-case": "^1.1.1",
+ "lower-case-first": "^1.0.0",
+ "no-case": "^2.3.2",
+ "param-case": "^2.1.0",
+ "pascal-case": "^2.0.0",
+ "path-case": "^2.1.0",
+ "sentence-case": "^2.1.0",
+ "snake-case": "^2.1.0",
+ "swap-case": "^1.1.0",
+ "title-case": "^2.1.0",
+ "upper-case": "^1.1.1",
+ "upper-case-first": "^1.1.0"
+ },
+ "dependencies": {
+ "camel-case": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/camel-case/-/camel-case-3.0.0.tgz",
+ "integrity": "sha1-yjw2iKTpzzpM2nd9xNy8cTJJz3M=",
"requires": {
- "@babel/helper-plugin-utils": "^7.10.4"
+ "no-case": "^2.2.0",
+ "upper-case": "^1.1.1"
}
},
- "@babel/plugin-transform-property-literals": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.12.1.tgz",
- "integrity": "sha512-6MTCR/mZ1MQS+AwZLplX4cEySjCpnIF26ToWo942nqn8hXSm7McaHQNeGx/pt7suI1TWOWMfa/NgBhiqSnX0cQ==",
- "requires": {
- "@babel/helper-plugin-utils": "^7.10.4"
- }
+ "lower-case": {
+ "version": "1.1.4",
+ "resolved": "https://registry.npmjs.org/lower-case/-/lower-case-1.1.4.tgz",
+ "integrity": "sha1-miyr0bno4K6ZOkv31YdcOcQujqw="
},
- "@babel/plugin-transform-regenerator": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.12.1.tgz",
- "integrity": "sha512-gYrHqs5itw6i4PflFX3OdBPMQdPbF4bj2REIUxlMRUFk0/ZOAIpDFuViuxPjUL7YC8UPnf+XG7/utJvqXdPKng==",
+ "no-case": {
+ "version": "2.3.2",
+ "resolved": "https://registry.npmjs.org/no-case/-/no-case-2.3.2.tgz",
+ "integrity": "sha512-rmTZ9kz+f3rCvK2TD1Ue/oZlns7OGoIWP4fc3llxxRXlOkHKoWPPWJOfFYpITabSow43QJbRIoHQXtt10VldyQ==",
"requires": {
- "regenerator-transform": "^0.14.2"
+ "lower-case": "^1.1.1"
}
},
- "@babel/plugin-transform-reserved-words": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.12.1.tgz",
- "integrity": "sha512-pOnUfhyPKvZpVyBHhSBoX8vfA09b7r00Pmm1sH+29ae2hMTKVmSp4Ztsr8KBKjLjx17H0eJqaRC3bR2iThM54A==",
+ "pascal-case": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/pascal-case/-/pascal-case-2.0.1.tgz",
+ "integrity": "sha1-LVeNNFX2YNpl7KGO+VtODekSdh4=",
"requires": {
- "@babel/helper-plugin-utils": "^7.10.4"
+ "camel-case": "^3.0.0",
+ "upper-case-first": "^1.1.0"
}
- },
- "@babel/plugin-transform-shorthand-properties": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.12.1.tgz",
- "integrity": "sha512-GFZS3c/MhX1OusqB1MZ1ct2xRzX5ppQh2JU1h2Pnfk88HtFTM+TWQqJNfwkmxtPQtb/s1tk87oENfXJlx7rSDw==",
+ }
+ }
+ },
+ "character-entities": {
+ "version": "1.2.4",
+ "resolved": "https://registry.npmjs.org/character-entities/-/character-entities-1.2.4.tgz",
+ "integrity": "sha512-iBMyeEHxfVnIakwOuDXpVkc54HijNgCyQB2w0VfGQThle6NXn50zU6V/u+LDhxHcDUPojn6Kpga3PTAD8W1bQw=="
+ },
+ "character-entities-html4": {
+ "version": "1.1.4",
+ "resolved": "https://registry.npmjs.org/character-entities-html4/-/character-entities-html4-1.1.4.tgz",
+ "integrity": "sha512-HRcDxZuZqMx3/a+qrzxdBKBPUpxWEq9xw2OPZ3a/174ihfrQKVsFhqtthBInFy1zZ9GgZyFXOatNujm8M+El3g=="
+ },
+ "character-entities-legacy": {
+ "version": "1.1.4",
+ "resolved": "https://registry.npmjs.org/character-entities-legacy/-/character-entities-legacy-1.1.4.tgz",
+ "integrity": "sha512-3Xnr+7ZFS1uxeiUDvV02wQ+QDbc55o97tIV5zHScSPJpcLm/r0DFPcoY3tYRp+VZukxuMeKgXYmsXQHO05zQeA=="
+ },
+ "character-reference-invalid": {
+ "version": "1.1.4",
+ "resolved": "https://registry.npmjs.org/character-reference-invalid/-/character-reference-invalid-1.1.4.tgz",
+ "integrity": "sha512-mKKUkUbhPpQlCOfIuZkvSEgktjPFIsZKRRbC6KWVEMvlzblj3i3asQv5ODsrwt0N3pHAEvjP8KTQPHkp0+6jOg=="
+ },
+ "chardet": {
+ "version": "0.7.0",
+ "resolved": "https://registry.npmjs.org/chardet/-/chardet-0.7.0.tgz",
+ "integrity": "sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA=="
+ },
+ "cheerio": {
+ "version": "0.22.0",
+ "resolved": "https://registry.npmjs.org/cheerio/-/cheerio-0.22.0.tgz",
+ "integrity": "sha1-qbqoYKP5tZWmuBsahocxIe06Jp4=",
+ "requires": {
+ "css-select": "~1.2.0",
+ "dom-serializer": "~0.1.0",
+ "entities": "~1.1.1",
+ "htmlparser2": "^3.9.1",
+ "lodash.assignin": "^4.0.9",
+ "lodash.bind": "^4.1.4",
+ "lodash.defaults": "^4.0.1",
+ "lodash.filter": "^4.4.0",
+ "lodash.flatten": "^4.2.0",
+ "lodash.foreach": "^4.3.0",
+ "lodash.map": "^4.4.0",
+ "lodash.merge": "^4.4.0",
+ "lodash.pick": "^4.2.1",
+ "lodash.reduce": "^4.4.0",
+ "lodash.reject": "^4.4.0",
+ "lodash.some": "^4.4.0"
+ },
+ "dependencies": {
+ "dom-serializer": {
+ "version": "0.1.1",
+ "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-0.1.1.tgz",
+ "integrity": "sha512-l0IU0pPzLWSHBcieZbpOKgkIn3ts3vAh7ZuFyXNwJxJXk/c4Gwj9xaTJwIDVQCXawWD0qb3IzMGH5rglQaO0XA==",
"requires": {
- "@babel/helper-plugin-utils": "^7.10.4"
+ "domelementtype": "^1.3.0",
+ "entities": "^1.1.1"
}
},
- "@babel/plugin-transform-sticky-regex": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.12.1.tgz",
- "integrity": "sha512-CiUgKQ3AGVk7kveIaPEET1jNDhZZEl1RPMWdTBE1799bdz++SwqDHStmxfCtDfBhQgCl38YRiSnrMuUMZIWSUQ==",
+ "entities": {
+ "version": "1.1.2",
+ "resolved": "https://registry.npmjs.org/entities/-/entities-1.1.2.tgz",
+ "integrity": "sha512-f2LZMYl1Fzu7YSBKg+RoROelpOaNrcGmE9AZubeDfrCEia483oW4MI4VyFd5VNHIgQ/7qm1I0wUHK1eJnn2y2w=="
+ }
+ }
+ },
+ "chokidar": {
+ "version": "3.4.3",
+ "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.4.3.tgz",
+ "integrity": "sha512-DtM3g7juCXQxFVSNPNByEC2+NImtBuxQQvWlHunpJIS5Ocr0lG306cC7FCi7cEA0fzmybPUIl4txBIobk1gGOQ==",
+ "requires": {
+ "anymatch": "~3.1.1",
+ "braces": "~3.0.2",
+ "fsevents": "~2.1.2",
+ "glob-parent": "~5.1.0",
+ "is-binary-path": "~2.1.0",
+ "is-glob": "~4.0.1",
+ "normalize-path": "~3.0.0",
+ "readdirp": "~3.5.0"
+ },
+ "dependencies": {
+ "anymatch": {
+ "version": "3.1.1",
+ "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.1.tgz",
+ "integrity": "sha512-mM8522psRCqzV+6LhomX5wgp25YVibjh8Wj23I5RPkPppSVSjyKD2A2mBJmWGa+KN7f2D6LNh9jkBCeyLktzjg==",
"requires": {
- "@babel/helper-plugin-utils": "^7.10.4",
- "@babel/helper-regex": "^7.10.4"
+ "normalize-path": "^3.0.0",
+ "picomatch": "^2.0.4"
}
},
- "@babel/plugin-transform-template-literals": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.12.1.tgz",
- "integrity": "sha512-b4Zx3KHi+taXB1dVRBhVJtEPi9h1THCeKmae2qP0YdUHIFhVjtpqqNfxeVAa1xeHVhAy4SbHxEwx5cltAu5apw==",
+ "binary-extensions": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.1.0.tgz",
+ "integrity": "sha512-1Yj8h9Q+QDF5FzhMs/c9+6UntbD5MkRfRwac8DoEm9ZfUBZ7tZ55YcGVAzEe4bXsdQHEk+s9S5wsOKVdZrw0tQ=="
+ },
+ "braces": {
+ "version": "3.0.2",
+ "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz",
+ "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==",
"requires": {
- "@babel/helper-plugin-utils": "^7.10.4"
+ "fill-range": "^7.0.1"
}
},
- "@babel/plugin-transform-typeof-symbol": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.12.1.tgz",
- "integrity": "sha512-EPGgpGy+O5Kg5pJFNDKuxt9RdmTgj5sgrus2XVeMp/ZIbOESadgILUbm50SNpghOh3/6yrbsH+NB5+WJTmsA7Q==",
- "requires": {
- "@babel/helper-plugin-utils": "^7.10.4"
- }
- },
- "@babel/plugin-transform-unicode-escapes": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.12.1.tgz",
- "integrity": "sha512-I8gNHJLIc7GdApm7wkVnStWssPNbSRMPtgHdmH3sRM1zopz09UWPS4x5V4n1yz/MIWTVnJ9sp6IkuXdWM4w+2Q==",
- "requires": {
- "@babel/helper-plugin-utils": "^7.10.4"
- }
- },
- "@babel/plugin-transform-unicode-regex": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.12.1.tgz",
- "integrity": "sha512-SqH4ClNngh/zGwHZOOQMTD+e8FGWexILV+ePMyiDJttAWRh5dhDL8rcl5lSgU3Huiq6Zn6pWTMvdPAb21Dwdyg==",
- "requires": {
- "@babel/helper-create-regexp-features-plugin": "^7.12.1",
- "@babel/helper-plugin-utils": "^7.10.4"
- }
- },
- "@babel/preset-env": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.12.1.tgz",
- "integrity": "sha512-H8kxXmtPaAGT7TyBvSSkoSTUK6RHh61So05SyEbpmr0MCZrsNYn7mGMzzeYoOUCdHzww61k8XBft2TaES+xPLg==",
+ "fill-range": {
+ "version": "7.0.1",
+ "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz",
+ "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==",
"requires": {
- "@babel/compat-data": "^7.12.1",
- "@babel/helper-compilation-targets": "^7.12.1",
- "@babel/helper-module-imports": "^7.12.1",
- "@babel/helper-plugin-utils": "^7.10.4",
- "@babel/helper-validator-option": "^7.12.1",
- "@babel/plugin-proposal-async-generator-functions": "^7.12.1",
- "@babel/plugin-proposal-class-properties": "^7.12.1",
- "@babel/plugin-proposal-dynamic-import": "^7.12.1",
- "@babel/plugin-proposal-export-namespace-from": "^7.12.1",
- "@babel/plugin-proposal-json-strings": "^7.12.1",
- "@babel/plugin-proposal-logical-assignment-operators": "^7.12.1",
- "@babel/plugin-proposal-nullish-coalescing-operator": "^7.12.1",
- "@babel/plugin-proposal-numeric-separator": "^7.12.1",
- "@babel/plugin-proposal-object-rest-spread": "^7.12.1",
- "@babel/plugin-proposal-optional-catch-binding": "^7.12.1",
- "@babel/plugin-proposal-optional-chaining": "^7.12.1",
- "@babel/plugin-proposal-private-methods": "^7.12.1",
- "@babel/plugin-proposal-unicode-property-regex": "^7.12.1",
- "@babel/plugin-syntax-async-generators": "^7.8.0",
- "@babel/plugin-syntax-class-properties": "^7.12.1",
- "@babel/plugin-syntax-dynamic-import": "^7.8.0",
- "@babel/plugin-syntax-export-namespace-from": "^7.8.3",
- "@babel/plugin-syntax-json-strings": "^7.8.0",
- "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4",
- "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.0",
- "@babel/plugin-syntax-numeric-separator": "^7.10.4",
- "@babel/plugin-syntax-object-rest-spread": "^7.8.0",
- "@babel/plugin-syntax-optional-catch-binding": "^7.8.0",
- "@babel/plugin-syntax-optional-chaining": "^7.8.0",
- "@babel/plugin-syntax-top-level-await": "^7.12.1",
- "@babel/plugin-transform-arrow-functions": "^7.12.1",
- "@babel/plugin-transform-async-to-generator": "^7.12.1",
- "@babel/plugin-transform-block-scoped-functions": "^7.12.1",
- "@babel/plugin-transform-block-scoping": "^7.12.1",
- "@babel/plugin-transform-classes": "^7.12.1",
- "@babel/plugin-transform-computed-properties": "^7.12.1",
- "@babel/plugin-transform-destructuring": "^7.12.1",
- "@babel/plugin-transform-dotall-regex": "^7.12.1",
- "@babel/plugin-transform-duplicate-keys": "^7.12.1",
- "@babel/plugin-transform-exponentiation-operator": "^7.12.1",
- "@babel/plugin-transform-for-of": "^7.12.1",
- "@babel/plugin-transform-function-name": "^7.12.1",
- "@babel/plugin-transform-literals": "^7.12.1",
- "@babel/plugin-transform-member-expression-literals": "^7.12.1",
- "@babel/plugin-transform-modules-amd": "^7.12.1",
- "@babel/plugin-transform-modules-commonjs": "^7.12.1",
- "@babel/plugin-transform-modules-systemjs": "^7.12.1",
- "@babel/plugin-transform-modules-umd": "^7.12.1",
- "@babel/plugin-transform-named-capturing-groups-regex": "^7.12.1",
- "@babel/plugin-transform-new-target": "^7.12.1",
- "@babel/plugin-transform-object-super": "^7.12.1",
- "@babel/plugin-transform-parameters": "^7.12.1",
- "@babel/plugin-transform-property-literals": "^7.12.1",
- "@babel/plugin-transform-regenerator": "^7.12.1",
- "@babel/plugin-transform-reserved-words": "^7.12.1",
- "@babel/plugin-transform-shorthand-properties": "^7.12.1",
- "@babel/plugin-transform-spread": "^7.12.1",
- "@babel/plugin-transform-sticky-regex": "^7.12.1",
- "@babel/plugin-transform-template-literals": "^7.12.1",
- "@babel/plugin-transform-typeof-symbol": "^7.12.1",
- "@babel/plugin-transform-unicode-escapes": "^7.12.1",
- "@babel/plugin-transform-unicode-regex": "^7.12.1",
- "@babel/preset-modules": "^0.1.3",
- "@babel/types": "^7.12.1",
- "core-js-compat": "^3.6.2",
- "semver": "^5.5.0"
- },
- "dependencies": {
- "@babel/plugin-proposal-class-properties": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.12.1.tgz",
- "integrity": "sha512-cKp3dlQsFsEs5CWKnN7BnSHOd0EOW8EKpEjkoz1pO2E5KzIDNV9Ros1b0CnmbVgAGXJubOYVBOGCT1OmJwOI7w==",
- "requires": {
- "@babel/helper-create-class-features-plugin": "^7.12.1",
- "@babel/helper-plugin-utils": "^7.10.4"
- }
- },
- "@babel/plugin-proposal-nullish-coalescing-operator": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.12.1.tgz",
- "integrity": "sha512-nZY0ESiaQDI1y96+jk6VxMOaL4LPo/QDHBqL+SF3/vl6dHkTwHlOI8L4ZwuRBHgakRBw5zsVylel7QPbbGuYgg==",
- "requires": {
- "@babel/helper-plugin-utils": "^7.10.4",
- "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.0"
- }
- },
- "@babel/plugin-proposal-optional-chaining": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.12.1.tgz",
- "integrity": "sha512-c2uRpY6WzaVDzynVY9liyykS+kVU+WRZPMPYpkelXH8KBt1oXoI89kPbZKKG/jDT5UK92FTW2fZkZaJhdiBabw==",
- "requires": {
- "@babel/helper-plugin-utils": "^7.10.4",
- "@babel/helper-skip-transparent-expression-wrappers": "^7.12.1",
- "@babel/plugin-syntax-optional-chaining": "^7.8.0"
- }
- },
- "@babel/plugin-transform-spread": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.12.1.tgz",
- "integrity": "sha512-vuLp8CP0BE18zVYjsEBZ5xoCecMK6LBMMxYzJnh01rxQRvhNhH1csMMmBfNo5tGpGO+NhdSNW2mzIvBu3K1fng==",
- "requires": {
- "@babel/helper-plugin-utils": "^7.10.4",
- "@babel/helper-skip-transparent-expression-wrappers": "^7.12.1"
- }
- }
+ "to-regex-range": "^5.0.1"
}
},
- "@babel/runtime": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.1.tgz",
- "integrity": "sha512-J5AIf3vPj3UwXaAzb5j1xM4WAQDX3EMgemF8rjCP3SoW09LfRKAXQKt6CoVYl230P6iWdRcBbnLDDdnqWxZSCA==",
- "requires": {
- "regenerator-runtime": "^0.13.4"
- }
+ "fsevents": {
+ "version": "2.1.3",
+ "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.1.3.tgz",
+ "integrity": "sha512-Auw9a4AxqWpa9GUfj370BMPzzyncfBABW8Mab7BGWBYDj4Isgq+cDKtx0i6u9jcX9pQDnswsaaOTgTmA5pEjuQ==",
+ "optional": true
},
- "@babel/traverse": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.12.1.tgz",
- "integrity": "sha512-MA3WPoRt1ZHo2ZmoGKNqi20YnPt0B1S0GTZEPhhd+hw2KGUzBlHuVunj6K4sNuK+reEvyiPwtp0cpaqLzJDmAw==",
+ "glob-parent": {
+ "version": "5.1.1",
+ "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.1.tgz",
+ "integrity": "sha512-FnI+VGOpnlGHWZxthPGR+QhR78fuiK0sNLkHQv+bL9fQi57lNNdquIbna/WrfROrolq8GK5Ek6BiMwqL/voRYQ==",
"requires": {
- "@babel/code-frame": "^7.10.4",
- "@babel/generator": "^7.12.1",
- "@babel/helper-function-name": "^7.10.4",
- "@babel/helper-split-export-declaration": "^7.11.0",
- "@babel/parser": "^7.12.1",
- "@babel/types": "^7.12.1",
- "debug": "^4.1.0",
- "globals": "^11.1.0",
- "lodash": "^4.17.19"
+ "is-glob": "^4.0.1"
}
},
- "@babel/types": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.12.1.tgz",
- "integrity": "sha512-BzSY3NJBKM4kyatSOWh3D/JJ2O3CVzBybHWxtgxnggaxEuaSTTDqeiSb/xk9lrkw2Tbqyivw5ZU4rT+EfznQsA==",
+ "is-binary-path": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz",
+ "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==",
"requires": {
- "@babel/helper-validator-identifier": "^7.10.4",
- "lodash": "^4.17.19",
- "to-fast-properties": "^2.0.0"
+ "binary-extensions": "^2.0.0"
}
},
- "debug": {
- "version": "4.2.0",
- "resolved": "https://registry.npmjs.org/debug/-/debug-4.2.0.tgz",
- "integrity": "sha512-IX2ncY78vDTjZMFUdmsvIRFY2Cf4FnD0wRs+nQwJU8Lu99/tPFdb0VybiiMTPe3I6rQmwsqQqRBvxU+bZ/I8sg==",
- "requires": {
- "ms": "2.1.2"
- }
+ "is-number": {
+ "version": "7.0.0",
+ "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz",
+ "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng=="
},
- "gatsby-core-utils": {
- "version": "1.3.23",
- "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-1.3.23.tgz",
- "integrity": "sha512-H6n6dDeRZ22HAJaBUIt5YjB/BSaE8Jq+kayMUv/YzL1RL2yFZ5lqcLwIL1OE2vWk1mQjMUBZCRxLODU0q1i3bQ==",
+ "readdirp": {
+ "version": "3.5.0",
+ "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.5.0.tgz",
+ "integrity": "sha512-cMhu7c/8rdhkHXWsY+osBhfSy0JikwpHK/5+imo+LpeasTF8ouErHrlYkwT0++njiyuDvc7OFY5T3ukvZ8qmFQ==",
"requires": {
- "ci-info": "2.0.0",
- "configstore": "^5.0.1",
- "fs-extra": "^8.1.0",
- "node-object-hash": "^2.0.0",
- "proper-lockfile": "^4.1.1",
- "tmp": "^0.2.1",
- "xdg-basedir": "^4.0.0"
+ "picomatch": "^2.2.1"
}
},
- "regexpu-core": {
- "version": "4.7.1",
- "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-4.7.1.tgz",
- "integrity": "sha512-ywH2VUraA44DZQuRKzARmw6S66mr48pQVva4LBeRhcOltJ6hExvWly5ZjFLYo67xbIxb6W1q4bAGtgfEl20zfQ==",
+ "to-regex-range": {
+ "version": "5.0.1",
+ "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz",
+ "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==",
"requires": {
- "regenerate": "^1.4.0",
- "regenerate-unicode-properties": "^8.2.0",
- "regjsgen": "^0.5.1",
- "regjsparser": "^0.6.4",
- "unicode-match-property-ecmascript": "^1.0.4",
- "unicode-match-property-value-ecmascript": "^1.2.0"
+ "is-number": "^7.0.0"
}
}
}
},
- "babel-runtime": {
- "version": "6.26.0",
- "resolved": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.26.0.tgz",
- "integrity": "sha1-llxwWGaOgrVde/4E/yM3vItWR/4=",
- "requires": {
- "core-js": "^2.4.0",
- "regenerator-runtime": "^0.11.0"
- },
- "dependencies": {
- "core-js": {
- "version": "2.6.11",
- "resolved": "https://registry.npmjs.org/core-js/-/core-js-2.6.11.tgz",
- "integrity": "sha512-5wjnpaT/3dV+XB4borEsnAYQchn00XSgTAWKDkEqv+K8KevjbzmofK6hfJ9TZIlpj2N0xQpazy7PiRQiWHqzWg=="
- },
- "regenerator-runtime": {
- "version": "0.11.1",
- "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz",
- "integrity": "sha512-MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg=="
- }
- }
+ "chownr": {
+ "version": "1.1.4",
+ "resolved": "https://registry.npmjs.org/chownr/-/chownr-1.1.4.tgz",
+ "integrity": "sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg=="
},
- "backo2": {
+ "chrome-trace-event": {
"version": "1.0.2",
- "resolved": "https://registry.npmjs.org/backo2/-/backo2-1.0.2.tgz",
- "integrity": "sha1-MasayLEpNjRj41s+u2n038+6eUc="
+ "resolved": "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.2.tgz",
+ "integrity": "sha512-9e/zx1jw7B4CO+c/RXoCsfg/x1AfUBioy4owYH0bJprEYAx5hRFLRhWBqHAG57D0ZM4H7vxbP7bPe0VwhQRYDQ==",
+ "requires": {
+ "tslib": "^1.9.0"
+ }
},
- "bail": {
- "version": "1.0.5",
- "resolved": "https://registry.npmjs.org/bail/-/bail-1.0.5.tgz",
- "integrity": "sha512-xFbRxM1tahm08yHBP16MMjVUAvDaBMD38zsM9EMAUN61omwLmKlOpB/Zku5QkjZ8TZ4vn53pj+t518cH0S03RQ=="
+ "ci-info": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-2.0.0.tgz",
+ "integrity": "sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ=="
},
- "balanced-match": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz",
- "integrity": "sha1-ibTRmasr7kneFk6gK4nORi1xt2c="
+ "cipher-base": {
+ "version": "1.0.4",
+ "resolved": "https://registry.npmjs.org/cipher-base/-/cipher-base-1.0.4.tgz",
+ "integrity": "sha512-Kkht5ye6ZGmwv40uUDZztayT2ThLQGfnj/T71N/XzeZeo3nf8foyW7zGTsPYkEya3m5f3cAypH+qe7YOrM1U2Q==",
+ "requires": {
+ "inherits": "^2.0.1",
+ "safe-buffer": "^5.0.1"
+ }
},
- "base": {
- "version": "0.11.2",
- "resolved": "https://registry.npmjs.org/base/-/base-0.11.2.tgz",
- "integrity": "sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==",
+ "class-utils": {
+ "version": "0.3.6",
+ "resolved": "https://registry.npmjs.org/class-utils/-/class-utils-0.3.6.tgz",
+ "integrity": "sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==",
"requires": {
- "cache-base": "^1.0.1",
- "class-utils": "^0.3.5",
- "component-emitter": "^1.2.1",
- "define-property": "^1.0.0",
- "isobject": "^3.0.1",
- "mixin-deep": "^1.2.0",
- "pascalcase": "^0.1.1"
+ "arr-union": "^3.1.0",
+ "define-property": "^0.2.5",
+ "isobject": "^3.0.0",
+ "static-extend": "^0.1.1"
},
"dependencies": {
"define-property": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz",
- "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=",
- "requires": {
- "is-descriptor": "^1.0.0"
- }
- },
- "is-accessor-descriptor": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz",
- "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==",
- "requires": {
- "kind-of": "^6.0.0"
- }
- },
- "is-data-descriptor": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz",
- "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==",
- "requires": {
- "kind-of": "^6.0.0"
- }
- },
- "is-descriptor": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz",
- "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==",
+ "version": "0.2.5",
+ "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz",
+ "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=",
"requires": {
- "is-accessor-descriptor": "^1.0.0",
- "is-data-descriptor": "^1.0.0",
- "kind-of": "^6.0.2"
+ "is-descriptor": "^0.1.0"
}
}
}
},
- "base64-arraybuffer": {
- "version": "0.1.4",
- "resolved": "https://registry.npmjs.org/base64-arraybuffer/-/base64-arraybuffer-0.1.4.tgz",
- "integrity": "sha1-mBjHngWbE1X5fgQooBfIOOkLqBI="
+ "clean-stack": {
+ "version": "2.2.0",
+ "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-2.2.0.tgz",
+ "integrity": "sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A=="
},
- "base64-js": {
- "version": "1.3.1",
- "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.3.1.tgz",
- "integrity": "sha512-mLQ4i2QO1ytvGWFWmcngKO//JXAQueZvwEKtjgQFM4jIK0kU+ytMfplL8j+n5mspOfjHwoAg+9yhb7BwAHm36g=="
+ "cli-boxes": {
+ "version": "2.2.1",
+ "resolved": "https://registry.npmjs.org/cli-boxes/-/cli-boxes-2.2.1.tgz",
+ "integrity": "sha512-y4coMcylgSCdVinjiDBuR8PCC2bLjyGTwEmPb9NHR/QaNU6EUOXcTY/s6VjGMD6ENSEaeQYHCY0GNGS5jfMwPw=="
},
- "base64id": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/base64id/-/base64id-2.0.0.tgz",
- "integrity": "sha512-lGe34o6EHj9y3Kts9R4ZYs/Gr+6N7MCaMlIFA3F1R2O5/m7K06AxfSeO5530PEERE6/WyEg3lsuyw4GHlPZHog=="
+ "cli-cursor": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-3.1.0.tgz",
+ "integrity": "sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==",
+ "requires": {
+ "restore-cursor": "^3.1.0"
+ }
},
- "batch": {
- "version": "0.6.1",
- "resolved": "https://registry.npmjs.org/batch/-/batch-0.6.1.tgz",
- "integrity": "sha1-3DQxT05nkxgJP8dgJyUl+UvyXBY="
- },
- "better-assert": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/better-assert/-/better-assert-1.0.2.tgz",
- "integrity": "sha1-QIZrnhueC1W0gYlDEeaPr/rrxSI=",
- "requires": {
- "callsite": "1.0.0"
- }
- },
- "better-opn": {
- "version": "2.1.1",
- "resolved": "https://registry.npmjs.org/better-opn/-/better-opn-2.1.1.tgz",
- "integrity": "sha512-kIPXZS5qwyKiX/HcRvDYfmBQUa8XP17I0mYZZ0y4UhpYOSvtsLHDYqmomS+Mj20aDvD3knEiQ0ecQy2nhio3yA==",
- "requires": {
- "open": "^7.0.3"
- }
- },
- "better-queue": {
- "version": "3.8.10",
- "resolved": "https://registry.npmjs.org/better-queue/-/better-queue-3.8.10.tgz",
- "integrity": "sha512-e3gwNZgDCnNWl0An0Tz6sUjKDV9m6aB+K9Xg//vYeo8+KiH8pWhLFxkawcXhm6FpM//GfD9IQv/kmvWCAVVpKA==",
+ "cli-table3": {
+ "version": "0.5.1",
+ "resolved": "https://registry.npmjs.org/cli-table3/-/cli-table3-0.5.1.tgz",
+ "integrity": "sha512-7Qg2Jrep1S/+Q3EceiZtQcDPWxhAvBw+ERf1162v4sikJrvojMHFqXt8QIVha8UlH9rgU0BeWPytZ9/TzYqlUw==",
"requires": {
- "better-queue-memory": "^1.0.1",
- "node-eta": "^0.9.0",
- "uuid": "^3.0.0"
+ "colors": "^1.1.2",
+ "object-assign": "^4.1.0",
+ "string-width": "^2.1.1"
}
},
- "better-queue-memory": {
- "version": "1.0.4",
- "resolved": "https://registry.npmjs.org/better-queue-memory/-/better-queue-memory-1.0.4.tgz",
- "integrity": "sha512-SWg5wFIShYffEmJpI6LgbL8/3Dqhku7xI1oEiy6FroP9DbcZlG0ZDjxvPdP9t7hTGW40IpIcC6zVoGT1oxjOuA=="
- },
- "big.js": {
- "version": "5.2.2",
- "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz",
- "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ=="
- },
- "binary-extensions": {
- "version": "1.13.1",
- "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-1.13.1.tgz",
- "integrity": "sha512-Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw=="
- },
- "bindings": {
- "version": "1.5.0",
- "resolved": "https://registry.npmjs.org/bindings/-/bindings-1.5.0.tgz",
- "integrity": "sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==",
- "optional": true,
- "requires": {
- "file-uri-to-path": "1.0.0"
- }
+ "cli-width": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/cli-width/-/cli-width-3.0.0.tgz",
+ "integrity": "sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw=="
},
- "bl": {
- "version": "4.0.3",
- "resolved": "https://registry.npmjs.org/bl/-/bl-4.0.3.tgz",
- "integrity": "sha512-fs4G6/Hu4/EE+F75J8DuN/0IpQqNjAdC7aEQv7Qt8MHGUH7Ckv2MwTEEeN9QehD0pfIDkMI1bkHYkKy7xHyKIg==",
+ "clipboardy": {
+ "version": "2.3.0",
+ "resolved": "https://registry.npmjs.org/clipboardy/-/clipboardy-2.3.0.tgz",
+ "integrity": "sha512-mKhiIL2DrQIsuXMgBgnfEHOZOryC7kY7YO//TN6c63wlEm3NG5tz+YgY5rVi29KCmq/QQjKYvM7a19+MDOTHOQ==",
"requires": {
- "buffer": "^5.5.0",
- "inherits": "^2.0.4",
- "readable-stream": "^3.4.0"
+ "arch": "^2.1.1",
+ "execa": "^1.0.0",
+ "is-wsl": "^2.1.1"
},
"dependencies": {
- "readable-stream": {
- "version": "3.6.0",
- "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz",
- "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==",
+ "execa": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/execa/-/execa-1.0.0.tgz",
+ "integrity": "sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==",
"requires": {
- "inherits": "^2.0.3",
- "string_decoder": "^1.1.1",
- "util-deprecate": "^1.0.1"
+ "cross-spawn": "^6.0.0",
+ "get-stream": "^4.0.0",
+ "is-stream": "^1.1.0",
+ "npm-run-path": "^2.0.0",
+ "p-finally": "^1.0.0",
+ "signal-exit": "^3.0.0",
+ "strip-eof": "^1.0.0"
}
- }
- }
- },
- "blob": {
- "version": "0.0.5",
- "resolved": "https://registry.npmjs.org/blob/-/blob-0.0.5.tgz",
- "integrity": "sha512-gaqbzQPqOoamawKg0LGVd7SzLgXS+JH61oWprSLH+P+abTczqJbhTR8CmJ2u9/bUYNmHTGJx/UEmn6doAvvuig=="
- },
- "bluebird": {
- "version": "3.7.2",
- "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.7.2.tgz",
- "integrity": "sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg=="
- },
- "bn.js": {
- "version": "5.1.3",
- "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-5.1.3.tgz",
- "integrity": "sha512-GkTiFpjFtUzU9CbMeJ5iazkCzGL3jrhzerzZIuqLABjbwRaFt33I9tUdSNryIptM+RxDet6OKm2WnLXzW51KsQ=="
- },
- "body-parser": {
- "version": "1.19.0",
- "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.19.0.tgz",
- "integrity": "sha512-dhEPs72UPbDnAQJ9ZKMNTP6ptJaionhP5cBb541nXPlW60Jepo9RV/a4fX4XWW9CuFNK22krhrj1+rgzifNCsw==",
- "requires": {
- "bytes": "3.1.0",
- "content-type": "~1.0.4",
- "debug": "2.6.9",
- "depd": "~1.1.2",
- "http-errors": "1.7.2",
- "iconv-lite": "0.4.24",
- "on-finished": "~2.3.0",
- "qs": "6.7.0",
- "raw-body": "2.4.0",
- "type-is": "~1.6.17"
- },
- "dependencies": {
- "debug": {
- "version": "2.6.9",
- "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
- "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
+ },
+ "is-stream": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz",
+ "integrity": "sha1-EtSj3U5o4Lec6428hBc66A2RykQ="
+ },
+ "npm-run-path": {
+ "version": "2.0.2",
+ "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz",
+ "integrity": "sha1-NakjLfo11wZ7TLLd8jV7GHFTbF8=",
"requires": {
- "ms": "2.0.0"
+ "path-key": "^2.0.0"
}
- },
- "ms": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
- "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g="
- }
- }
- },
- "bonjour": {
- "version": "3.5.0",
- "resolved": "https://registry.npmjs.org/bonjour/-/bonjour-3.5.0.tgz",
- "integrity": "sha1-jokKGD2O6aI5OzhExpGkK897yfU=",
- "requires": {
- "array-flatten": "^2.1.0",
- "deep-equal": "^1.0.1",
- "dns-equal": "^1.0.0",
- "dns-txt": "^2.0.2",
- "multicast-dns": "^6.0.1",
- "multicast-dns-service-types": "^1.1.0"
- },
- "dependencies": {
- "array-flatten": {
- "version": "2.1.2",
- "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-2.1.2.tgz",
- "integrity": "sha512-hNfzcOV8W4NdualtqBFPyVO+54DSJuZGY9qT4pRroB6S9e3iiido2ISIC5h9R2sPJ8H3FHCIiEnsv1lPXO3KtQ=="
}
}
},
- "boolbase": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz",
- "integrity": "sha1-aN/1++YMUes3cl6p4+0xDcwed24="
- },
- "boxen": {
- "version": "4.2.0",
- "resolved": "https://registry.npmjs.org/boxen/-/boxen-4.2.0.tgz",
- "integrity": "sha512-eB4uT9RGzg2odpER62bBwSLvUeGC+WbRjjyyFhGsKnc8wp/m0+hQsMUvUe3H2V0D5vw0nBdO1hCJoZo5mKeuIQ==",
+ "cliui": {
+ "version": "6.0.0",
+ "resolved": "https://registry.npmjs.org/cliui/-/cliui-6.0.0.tgz",
+ "integrity": "sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==",
"requires": {
- "ansi-align": "^3.0.0",
- "camelcase": "^5.3.1",
- "chalk": "^3.0.0",
- "cli-boxes": "^2.2.0",
- "string-width": "^4.1.0",
- "term-size": "^2.1.0",
- "type-fest": "^0.8.1",
- "widest-line": "^3.1.0"
+ "string-width": "^4.2.0",
+ "strip-ansi": "^6.0.0",
+ "wrap-ansi": "^6.2.0"
},
"dependencies": {
"ansi-regex": {
@@ -5362,41 +5541,6 @@
"resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.0.tgz",
"integrity": "sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg=="
},
- "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"
- }
- },
- "chalk": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz",
- "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==",
- "requires": {
- "ansi-styles": "^4.1.0",
- "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=="
- },
"is-fullwidth-code-point": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz",
@@ -5419,1134 +5563,1110 @@
"requires": {
"ansi-regex": "^5.0.0"
}
- },
- "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"
- }
}
}
},
- "brace-expansion": {
- "version": "1.1.11",
- "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz",
- "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==",
+ "clone-response": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/clone-response/-/clone-response-1.0.2.tgz",
+ "integrity": "sha1-0dyXOSAxTfZ/vrlCI7TuNQI56Ws=",
"requires": {
- "balanced-match": "^1.0.0",
- "concat-map": "0.0.1"
+ "mimic-response": "^1.0.0"
}
},
- "braces": {
- "version": "2.3.2",
- "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz",
- "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==",
+ "coa": {
+ "version": "2.0.2",
+ "resolved": "https://registry.npmjs.org/coa/-/coa-2.0.2.tgz",
+ "integrity": "sha512-q5/jG+YQnSy4nRTV4F7lPepBJZ8qBNJJDBuJdoejDyLXgmL7IEo+Le2JDZudFTFt7mrCqIRaSjws4ygRCTCAXA==",
"requires": {
- "arr-flatten": "^1.1.0",
- "array-unique": "^0.3.2",
- "extend-shallow": "^2.0.1",
- "fill-range": "^4.0.0",
- "isobject": "^3.0.1",
- "repeat-element": "^1.1.2",
- "snapdragon": "^0.8.1",
- "snapdragon-node": "^2.0.1",
- "split-string": "^3.0.2",
- "to-regex": "^3.0.1"
- },
- "dependencies": {
- "extend-shallow": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz",
- "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=",
- "requires": {
- "is-extendable": "^0.1.0"
- }
- }
+ "@types/q": "^1.5.1",
+ "chalk": "^2.4.1",
+ "q": "^1.1.2"
}
},
- "brorand": {
- "version": "1.1.0",
- "resolved": "https://registry.npmjs.org/brorand/-/brorand-1.1.0.tgz",
- "integrity": "sha1-EsJe/kCkXjwyPrhnWgoM5XsiNx8="
+ "collapse-white-space": {
+ "version": "1.0.6",
+ "resolved": "https://registry.npmjs.org/collapse-white-space/-/collapse-white-space-1.0.6.tgz",
+ "integrity": "sha512-jEovNnrhMuqyCcjfEJA56v0Xq8SkIoPKDyaHahwo3POf4qcSXqMYuwNcOTzp74vTsR9Tn08z4MxWqAhcekogkQ=="
},
- "browserify-aes": {
- "version": "1.2.0",
- "resolved": "https://registry.npmjs.org/browserify-aes/-/browserify-aes-1.2.0.tgz",
- "integrity": "sha512-+7CHXqGuspUn/Sl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc/uzk5zSOI3H52CYnjCfb5hA==",
+ "collection-visit": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/collection-visit/-/collection-visit-1.0.0.tgz",
+ "integrity": "sha1-S8A3PBZLwykbTTaMgpzxqApZ3KA=",
"requires": {
- "buffer-xor": "^1.0.3",
- "cipher-base": "^1.0.0",
- "create-hash": "^1.1.0",
- "evp_bytestokey": "^1.0.3",
- "inherits": "^2.0.1",
- "safe-buffer": "^5.0.1"
+ "map-visit": "^1.0.0",
+ "object-visit": "^1.0.0"
}
},
- "browserify-cipher": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/browserify-cipher/-/browserify-cipher-1.0.1.tgz",
- "integrity": "sha512-sPhkz0ARKbf4rRQt2hTpAHqn47X3llLkUGn+xEJzLjwY8LRs2p0v7ljvI5EyoRO/mexrNunNECisZs+gw2zz1w==",
+ "color": {
+ "version": "3.1.3",
+ "resolved": "https://registry.npmjs.org/color/-/color-3.1.3.tgz",
+ "integrity": "sha512-xgXAcTHa2HeFCGLE9Xs/R82hujGtu9Jd9x4NW3T34+OMs7VoPsjwzRczKHvTAHeJwWFwX5j15+MgAppE8ztObQ==",
"requires": {
- "browserify-aes": "^1.0.4",
- "browserify-des": "^1.0.0",
- "evp_bytestokey": "^1.0.0"
+ "color-convert": "^1.9.1",
+ "color-string": "^1.5.4"
}
},
- "browserify-des": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/browserify-des/-/browserify-des-1.0.2.tgz",
- "integrity": "sha512-BioO1xf3hFwz4kc6iBhI3ieDFompMhrMlnDFC4/0/vd5MokpuAc3R+LYbwTA9A5Yc9pq9UYPqffKpW2ObuwX5A==",
+ "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": {
- "cipher-base": "^1.0.1",
- "des.js": "^1.0.0",
- "inherits": "^2.0.1",
- "safe-buffer": "^5.1.2"
+ "color-name": "1.1.3"
}
},
- "browserify-rsa": {
- "version": "4.0.1",
- "resolved": "https://registry.npmjs.org/browserify-rsa/-/browserify-rsa-4.0.1.tgz",
- "integrity": "sha1-IeCr+vbyApzy+vsTNWenAdQTVSQ=",
- "requires": {
- "bn.js": "^4.1.0",
- "randombytes": "^2.0.1"
- },
- "dependencies": {
- "bn.js": {
- "version": "4.11.9",
- "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.11.9.tgz",
- "integrity": "sha512-E6QoYqCKZfgatHTdHzs1RRKP7ip4vvm+EyRUeE2RF0NblwVvb0p6jSVeNTOFxPn26QXN2o6SMfNxKp6kU8zQaw=="
- }
- }
+ "color-name": {
+ "version": "1.1.3",
+ "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz",
+ "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU="
},
- "browserify-sign": {
- "version": "4.2.1",
- "resolved": "https://registry.npmjs.org/browserify-sign/-/browserify-sign-4.2.1.tgz",
- "integrity": "sha512-/vrA5fguVAKKAVTNJjgSm1tRQDHUU6DbwO9IROu/0WAzC8PKhucDSh18J0RMvVeHAn5puMd+QHC2erPRNf8lmg==",
+ "color-string": {
+ "version": "1.5.4",
+ "resolved": "https://registry.npmjs.org/color-string/-/color-string-1.5.4.tgz",
+ "integrity": "sha512-57yF5yt8Xa3czSEW1jfQDE79Idk0+AkN/4KWad6tbdxUmAs3MvjxlWSWD4deYytcRfoZ9nhKyFl1kj5tBvidbw==",
"requires": {
- "bn.js": "^5.1.1",
- "browserify-rsa": "^4.0.1",
- "create-hash": "^1.2.0",
- "create-hmac": "^1.1.7",
- "elliptic": "^6.5.3",
- "inherits": "^2.0.4",
- "parse-asn1": "^5.1.5",
- "readable-stream": "^3.6.0",
- "safe-buffer": "^5.2.0"
- },
- "dependencies": {
- "readable-stream": {
- "version": "3.6.0",
- "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz",
- "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==",
- "requires": {
- "inherits": "^2.0.3",
- "string_decoder": "^1.1.1",
- "util-deprecate": "^1.0.1"
- }
- },
- "safe-buffer": {
- "version": "5.2.1",
- "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz",
- "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ=="
- }
+ "color-name": "^1.0.0",
+ "simple-swizzle": "^0.2.2"
}
},
- "browserify-zlib": {
- "version": "0.2.0",
- "resolved": "https://registry.npmjs.org/browserify-zlib/-/browserify-zlib-0.2.0.tgz",
- "integrity": "sha512-Z942RysHXmJrhqk88FmKBVq/v5tqmSkDz7p54G/MGyjMnCFFnC79XWNbg+Vta8W6Wb2qtSZTSxIGkJrRpCFEiA==",
- "requires": {
- "pako": "~1.0.5"
- }
+ "colorette": {
+ "version": "1.2.1",
+ "resolved": "https://registry.npmjs.org/colorette/-/colorette-1.2.1.tgz",
+ "integrity": "sha512-puCDz0CzydiSYOrnXpz/PKd69zRrribezjtE9yd4zvytoRc8+RY/KJPvtPFKZS3E3wP6neGyMe0vOTlHO5L3Pw=="
},
- "browserslist": {
- "version": "4.13.0",
- "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.13.0.tgz",
- "integrity": "sha512-MINatJ5ZNrLnQ6blGvePd/QOz9Xtu+Ne+x29iQSCHfkU5BugKVJwZKn/iiL8UbpIpa3JhviKjz+XxMo0m2caFQ==",
- "requires": {
- "caniuse-lite": "^1.0.30001093",
- "electron-to-chromium": "^1.3.488",
- "escalade": "^3.0.1",
- "node-releases": "^1.1.58"
- }
+ "colors": {
+ "version": "1.4.0",
+ "resolved": "https://registry.npmjs.org/colors/-/colors-1.4.0.tgz",
+ "integrity": "sha512-a+UqTh4kgZg/SlGvfbzDHpgRu7AAQOmmqRHJnxhRZICKFUT91brVhNNt58CMWU9PsBbv3PDCZUHbVxuDiH2mtA==",
+ "optional": true
},
- "buffer": {
- "version": "5.7.0",
- "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.0.tgz",
- "integrity": "sha512-cd+5r1VLBwUqTrmnzW+D7ABkJUM6mr7uv1dv+6jRw4Rcl7tFIFHDqHPL98LhpGFn3dbAt3gtLxtrWp4m1kFrqg==",
+ "combined-stream": {
+ "version": "1.0.8",
+ "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz",
+ "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==",
"requires": {
- "base64-js": "^1.3.1",
- "ieee754": "^1.1.13"
+ "delayed-stream": "~1.0.0"
}
},
- "buffer-from": {
- "version": "1.1.1",
- "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.1.tgz",
- "integrity": "sha512-MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A=="
+ "comma-separated-tokens": {
+ "version": "1.0.8",
+ "resolved": "https://registry.npmjs.org/comma-separated-tokens/-/comma-separated-tokens-1.0.8.tgz",
+ "integrity": "sha512-GHuDRO12Sypu2cV70d1dkA2EUmXHgntrzbpvOB+Qy+49ypNfGgFQIC2fhhXbnyrJRynDCAARsT7Ou0M6hirpfw=="
},
- "buffer-indexof": {
- "version": "1.1.1",
- "resolved": "https://registry.npmjs.org/buffer-indexof/-/buffer-indexof-1.1.1.tgz",
- "integrity": "sha512-4/rOEg86jivtPTeOUUT61jJO1Ya1TrR/OkqCSZDyq84WJh3LuuiphBYJN+fm5xufIk4XAFcEwte/8WzC8If/1g=="
+ "command-exists": {
+ "version": "1.2.9",
+ "resolved": "https://registry.npmjs.org/command-exists/-/command-exists-1.2.9.tgz",
+ "integrity": "sha512-LTQ/SGc+s0Xc0Fu5WaKnR0YiygZkm9eKFvyS+fRsU7/ZWFF8ykFM6Pc9aCVf1+xasOOZpO3BAVgVrKvsqKHV7w=="
},
- "buffer-xor": {
- "version": "1.0.3",
- "resolved": "https://registry.npmjs.org/buffer-xor/-/buffer-xor-1.0.3.tgz",
- "integrity": "sha1-JuYe0UIvtw3ULm42cp7VHYVf6Nk="
+ "commander": {
+ "version": "2.20.3",
+ "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz",
+ "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ=="
},
- "bufferutil": {
- "version": "4.0.2",
- "resolved": "https://registry.npmjs.org/bufferutil/-/bufferutil-4.0.2.tgz",
- "integrity": "sha512-AtnG3W6M8B2n4xDQ5R+70EXvOpnXsFYg/AK2yTZd+HQ/oxAdz+GI+DvjmhBw3L0ole+LJ0ngqY4JMbDzkfNzhA==",
- "requires": {
- "node-gyp-build": "^4.2.0"
- }
+ "common-tags": {
+ "version": "1.8.0",
+ "resolved": "https://registry.npmjs.org/common-tags/-/common-tags-1.8.0.tgz",
+ "integrity": "sha512-6P6g0uetGpW/sdyUy/iQQCbFF0kWVMSIVSyYz7Zgjcgh8mgw8PQzDNZeyZ5DQ2gM7LBoZPHmnjz8rUthkBG5tw=="
},
- "builtin-modules": {
- "version": "3.1.0",
- "resolved": "https://registry.npmjs.org/builtin-modules/-/builtin-modules-3.1.0.tgz",
- "integrity": "sha512-k0KL0aWZuBt2lrxrcASWDfwOLMnodeQjodT/1SxEQAXsHANgo6ZC/VEaSEHCXt7aSTZ4/4H5LKa+tBXmW7Vtvw=="
+ "commondir": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz",
+ "integrity": "sha1-3dgA2gxmEnOTzKWVDqloo6rxJTs="
},
- "builtin-status-codes": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz",
- "integrity": "sha1-hZgoeOIbmOHGZCXgPQF0eI9Wnug="
+ "component-bind": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/component-bind/-/component-bind-1.0.0.tgz",
+ "integrity": "sha1-AMYIq33Nk4l8AAllGx06jh5zu9E="
},
- "bytes": {
- "version": "3.1.0",
- "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.0.tgz",
- "integrity": "sha512-zauLjrfCG+xvoyaqLoV8bLVXXNGC4JqlxFCutSDWA6fJrTo2ZuvLYTqZ7aHBLZSMOopbzwv8f+wZcVzfVTI2Dg=="
+ "component-emitter": {
+ "version": "1.3.0",
+ "resolved": "https://registry.npmjs.org/component-emitter/-/component-emitter-1.3.0.tgz",
+ "integrity": "sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg=="
},
- "cacache": {
- "version": "13.0.1",
- "resolved": "https://registry.npmjs.org/cacache/-/cacache-13.0.1.tgz",
- "integrity": "sha512-5ZvAxd05HDDU+y9BVvcqYu2LLXmPnQ0hW62h32g4xBTgL/MppR4/04NHfj/ycM2y6lmTnbw6HVi+1eN0Psba6w==",
+ "component-inherit": {
+ "version": "0.0.3",
+ "resolved": "https://registry.npmjs.org/component-inherit/-/component-inherit-0.0.3.tgz",
+ "integrity": "sha1-ZF/ErfWLcrZJ1crmUTVhnbJv8UM="
+ },
+ "compressible": {
+ "version": "2.0.18",
+ "resolved": "https://registry.npmjs.org/compressible/-/compressible-2.0.18.tgz",
+ "integrity": "sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==",
"requires": {
- "chownr": "^1.1.2",
- "figgy-pudding": "^3.5.1",
- "fs-minipass": "^2.0.0",
- "glob": "^7.1.4",
- "graceful-fs": "^4.2.2",
- "infer-owner": "^1.0.4",
- "lru-cache": "^5.1.1",
- "minipass": "^3.0.0",
- "minipass-collect": "^1.0.2",
- "minipass-flush": "^1.0.5",
- "minipass-pipeline": "^1.2.2",
- "mkdirp": "^0.5.1",
- "move-concurrently": "^1.0.1",
- "p-map": "^3.0.0",
- "promise-inflight": "^1.0.1",
- "rimraf": "^2.7.1",
- "ssri": "^7.0.0",
- "unique-filename": "^1.1.1"
- },
- "dependencies": {
- "lru-cache": {
- "version": "5.1.1",
- "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz",
- "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==",
- "requires": {
- "yallist": "^3.0.2"
- }
+ "mime-db": ">= 1.43.0 < 2"
+ }
+ },
+ "compression": {
+ "version": "1.7.4",
+ "resolved": "https://registry.npmjs.org/compression/-/compression-1.7.4.tgz",
+ "integrity": "sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==",
+ "requires": {
+ "accepts": "~1.3.5",
+ "bytes": "3.0.0",
+ "compressible": "~2.0.16",
+ "debug": "2.6.9",
+ "on-headers": "~1.0.2",
+ "safe-buffer": "5.1.2",
+ "vary": "~1.1.2"
+ },
+ "dependencies": {
+ "bytes": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz",
+ "integrity": "sha1-0ygVQE1olpn4Wk6k+odV3ROpYEg="
},
- "rimraf": {
- "version": "2.7.1",
- "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz",
- "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==",
+ "debug": {
+ "version": "2.6.9",
+ "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
+ "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
"requires": {
- "glob": "^7.1.3"
+ "ms": "2.0.0"
}
},
- "yallist": {
- "version": "3.1.1",
- "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz",
- "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g=="
+ "ms": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
+ "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g="
}
}
},
- "cache-base": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/cache-base/-/cache-base-1.0.1.tgz",
- "integrity": "sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==",
- "requires": {
- "collection-visit": "^1.0.0",
- "component-emitter": "^1.2.1",
- "get-value": "^2.0.6",
- "has-value": "^1.0.0",
- "isobject": "^3.0.1",
- "set-value": "^2.0.0",
- "to-object-path": "^0.3.0",
- "union-value": "^1.0.0",
- "unset-value": "^1.0.0"
- }
- },
- "cache-manager": {
- "version": "2.11.1",
- "resolved": "https://registry.npmjs.org/cache-manager/-/cache-manager-2.11.1.tgz",
- "integrity": "sha512-XhUuc9eYwkzpK89iNewFwtvcDYMUsvtwzHeyEOPJna/WsVsXcrzsA1ft2M0QqPNunEzLhNCYPo05tEfG+YuNow==",
- "requires": {
- "async": "1.5.2",
- "lodash.clonedeep": "4.5.0",
- "lru-cache": "4.0.0"
- }
+ "concat-map": {
+ "version": "0.0.1",
+ "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz",
+ "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s="
},
- "cache-manager-fs-hash": {
- "version": "0.0.9",
- "resolved": "https://registry.npmjs.org/cache-manager-fs-hash/-/cache-manager-fs-hash-0.0.9.tgz",
- "integrity": "sha512-G0RUUSMZADiMx/0tHjPa+uzJyjtVB/Xt9yuFm6g/rBpm0p/IMr4atUWX2G2f1yGCPmDnyUcFz4RlSpgNRgvldg==",
+ "concat-stream": {
+ "version": "1.6.2",
+ "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.2.tgz",
+ "integrity": "sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==",
"requires": {
- "lockfile": "^1.0.4"
+ "buffer-from": "^1.0.0",
+ "inherits": "^2.0.3",
+ "readable-stream": "^2.2.2",
+ "typedarray": "^0.0.6"
}
},
- "cacheable-request": {
- "version": "6.1.0",
- "resolved": "https://registry.npmjs.org/cacheable-request/-/cacheable-request-6.1.0.tgz",
- "integrity": "sha512-Oj3cAGPCqOZX7Rz64Uny2GYAZNliQSqfbePrgAQ1wKAihYmCUnraBtJtKcGR4xz7wF+LoJC+ssFZvv5BgF9Igg==",
+ "configstore": {
+ "version": "5.0.1",
+ "resolved": "https://registry.npmjs.org/configstore/-/configstore-5.0.1.tgz",
+ "integrity": "sha512-aMKprgk5YhBNyH25hj8wGt2+D52Sw1DRRIzqBwLp2Ya9mFmY8KPvvtvmna8SxVR9JMZ4kzMD68N22vlaRpkeFA==",
"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"
+ "dot-prop": "^5.2.0",
+ "graceful-fs": "^4.1.2",
+ "make-dir": "^3.0.0",
+ "unique-string": "^2.0.0",
+ "write-file-atomic": "^3.0.0",
+ "xdg-basedir": "^4.0.0"
},
"dependencies": {
- "get-stream": {
- "version": "5.1.0",
- "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.1.0.tgz",
- "integrity": "sha512-EXr1FOzrzTfGeL0gQdeFEvOMm2mzMOglyiOXSTpPC+iAjAKftbr3jpCMWynogwYnM+eSj9sHGc6wjIcDvYiygw==",
+ "make-dir": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz",
+ "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==",
"requires": {
- "pump": "^3.0.0"
+ "semver": "^6.0.0"
}
},
- "lowercase-keys": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-2.0.0.tgz",
- "integrity": "sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA=="
- },
- "normalize-url": {
- "version": "4.5.0",
- "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-4.5.0.tgz",
- "integrity": "sha512-2s47yzUxdexf1OhyRi4Em83iQk0aPvwTddtFz4hnSSw9dCEsLEGf6SwIO8ss/19S9iBb5sJaOuTvTGDeZI00BQ=="
+ "semver": {
+ "version": "6.3.0",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz",
+ "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw=="
}
}
},
- "call-bind": {
+ "confusing-browser-globals": {
+ "version": "1.0.10",
+ "resolved": "https://registry.npmjs.org/confusing-browser-globals/-/confusing-browser-globals-1.0.10.tgz",
+ "integrity": "sha512-gNld/3lySHwuhaVluJUKLePYirM3QNCKzVxqAdhJII9/WXKVX5PURzMVJspS1jTslSqjeuG4KMVTSouit5YPHA=="
+ },
+ "connect-history-api-fallback": {
+ "version": "1.6.0",
+ "resolved": "https://registry.npmjs.org/connect-history-api-fallback/-/connect-history-api-fallback-1.6.0.tgz",
+ "integrity": "sha512-e54B99q/OUoH64zYYRf3HBP5z24G38h5D3qXu23JGRoigpX5Ss4r9ZnDk3g0Z8uQC2x2lPaJ+UlWBc1ZWBWdLg=="
+ },
+ "console-browserify": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/console-browserify/-/console-browserify-1.2.0.tgz",
+ "integrity": "sha512-ZMkYO/LkF17QvCPqM0gxw8yUzigAOZOSWSHg91FH6orS7vcEj5dVZTidN2fQ14yBSdg97RqhSNwLUXInd52OTA=="
+ },
+ "constant-case": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/constant-case/-/constant-case-2.0.0.tgz",
+ "integrity": "sha1-QXV2TTidP6nI7NKRhu1gBSQ7akY=",
+ "requires": {
+ "snake-case": "^2.1.0",
+ "upper-case": "^1.1.1"
+ }
+ },
+ "constants-browserify": {
"version": "1.0.0",
- "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.0.tgz",
- "integrity": "sha512-AEXsYIyyDY3MCzbwdhzG3Jx1R0J2wetQyUynn6dYHAO+bg8l1k7jwZtRv4ryryFs7EP+NDlikJlVe59jr0cM2w==",
+ "resolved": "https://registry.npmjs.org/constants-browserify/-/constants-browserify-1.0.0.tgz",
+ "integrity": "sha1-wguW2MYXdIqvHBYCF2DNJ/y4y3U="
+ },
+ "contains-path": {
+ "version": "0.1.0",
+ "resolved": "https://registry.npmjs.org/contains-path/-/contains-path-0.1.0.tgz",
+ "integrity": "sha1-/ozxhP9mcLa67wGp1IYaXL7EEgo="
+ },
+ "content-disposition": {
+ "version": "0.5.3",
+ "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.3.tgz",
+ "integrity": "sha512-ExO0774ikEObIAEV9kDo50o+79VCUdEB6n6lzKgGwupcVeRlhrj3qGAfwq8G6uBJjkqLrhT0qEYFcWng8z1z0g==",
"requires": {
- "function-bind": "^1.1.1",
- "get-intrinsic": "^1.0.0"
+ "safe-buffer": "5.1.2"
}
},
- "caller-callsite": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/caller-callsite/-/caller-callsite-2.0.0.tgz",
- "integrity": "sha1-hH4PzgoiN1CpoCfFSzNzGtMVQTQ=",
+ "content-type": {
+ "version": "1.0.4",
+ "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.4.tgz",
+ "integrity": "sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA=="
+ },
+ "contentful-management": {
+ "version": "5.28.0",
+ "resolved": "https://registry.npmjs.org/contentful-management/-/contentful-management-5.28.0.tgz",
+ "integrity": "sha512-o+qihN3zrD6+/BT/e8n26jl/zQvmV6+9S6NY5QDmzM+IaiSeCk6yvPMq74s+IZT9mOS54igl6qFTbeIpdJ9FDA==",
"requires": {
- "callsites": "^2.0.0"
+ "axios": "^0.19.0",
+ "contentful-sdk-core": "^6.4.0",
+ "lodash": "^4.17.11",
+ "type-fest": "0.15.1"
},
"dependencies": {
- "callsites": {
+ "axios": {
+ "version": "0.19.2",
+ "resolved": "https://registry.npmjs.org/axios/-/axios-0.19.2.tgz",
+ "integrity": "sha512-fjgm5MvRHLhx+osE2xoekY70AhARk3a6hkN+3Io1jc00jtquGvxYlKlsFUhmUET0V5te6CcZI7lcv2Ym61mjHA==",
+ "requires": {
+ "follow-redirects": "1.5.10"
+ }
+ },
+ "debug": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/debug/-/debug-3.1.0.tgz",
+ "integrity": "sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==",
+ "requires": {
+ "ms": "2.0.0"
+ }
+ },
+ "follow-redirects": {
+ "version": "1.5.10",
+ "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.5.10.tgz",
+ "integrity": "sha512-0V5l4Cizzvqt5D44aTXbFZz+FtyXV1vrDN6qrelxtfYQKW0KO0W2T/hkE8xvGa/540LkZlkaUjO4ailYTFtHVQ==",
+ "requires": {
+ "debug": "=3.1.0"
+ }
+ },
+ "ms": {
"version": "2.0.0",
- "resolved": "https://registry.npmjs.org/callsites/-/callsites-2.0.0.tgz",
- "integrity": "sha1-BuuE8A7qQT2oav/vrL/7Ngk7PFA="
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
+ "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g="
+ },
+ "type-fest": {
+ "version": "0.15.1",
+ "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.15.1.tgz",
+ "integrity": "sha512-n+UXrN8i5ioo7kqT/nF8xsEzLaqFra7k32SEsSPwvXVGyAcRgV/FUQN/sgfptJTR1oRmmq7z4IXMFSM7im7C9A=="
}
}
},
- "caller-path": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/caller-path/-/caller-path-2.0.0.tgz",
- "integrity": "sha1-Ro+DBE42mrIBD6xfBs7uFbsssfQ=",
+ "contentful-sdk-core": {
+ "version": "6.4.6",
+ "resolved": "https://registry.npmjs.org/contentful-sdk-core/-/contentful-sdk-core-6.4.6.tgz",
+ "integrity": "sha512-6KVLeCdn1akqjGvVMUgMxQ3B+zNIYeq3MUlqWsSLLJozr++0ZYWU76XmHf4n5MPTMoX9RGbRSR8hJAaKcUNDFw==",
"requires": {
- "caller-callsite": "^2.0.0"
+ "lodash": "^4.17.10",
+ "qs": "^6.5.2"
}
},
- "callsite": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/callsite/-/callsite-1.0.0.tgz",
- "integrity": "sha1-KAOY5dZkvXQDi28JBRU+borxvCA="
- },
- "callsites": {
- "version": "3.1.0",
- "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz",
- "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ=="
+ "convert-hrtime": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/convert-hrtime/-/convert-hrtime-3.0.0.tgz",
+ "integrity": "sha512-7V+KqSvMiHp8yWDuwfww06XleMWVVB9b9tURBx+G7UTADuo5hYPuowKloz4OzOqbPezxgo+fdQ1522WzPG4OeA=="
},
- "camel-case": {
- "version": "4.1.1",
- "resolved": "https://registry.npmjs.org/camel-case/-/camel-case-4.1.1.tgz",
- "integrity": "sha512-7fa2WcG4fYFkclIvEmxBbTvmibwF2/agfEBc6q3lOpVu0A13ltLsA+Hr/8Hp6kp5f+G7hKi6t8lys6XxP+1K6Q==",
+ "convert-source-map": {
+ "version": "1.7.0",
+ "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.7.0.tgz",
+ "integrity": "sha512-4FJkXzKXEDB1snCFZlLP4gpC3JILicCpGbzG9f9G7tGqGCzETQ2hWPrcinA9oU4wtf2biUaEH5065UnMeR33oA==",
"requires": {
- "pascal-case": "^3.1.1",
- "tslib": "^1.10.0"
+ "safe-buffer": "~5.1.1"
}
},
- "camelcase": {
- "version": "5.3.1",
- "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz",
- "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg=="
+ "cookie": {
+ "version": "0.4.0",
+ "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.4.0.tgz",
+ "integrity": "sha512-+Hp8fLp57wnUSt0tY0tHEXh4voZRDnoIrZPqlo3DPiI4y9lwg/jqx+1Om94/W6ZaPDOUbnjOt/99w66zk+l1Xg=="
},
- "camelcase-css": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/camelcase-css/-/camelcase-css-2.0.1.tgz",
- "integrity": "sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA=="
+ "cookie-signature": {
+ "version": "1.0.6",
+ "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz",
+ "integrity": "sha1-4wOogrNCzD7oylE6eZmXNNqzriw="
},
- "caniuse-api": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/caniuse-api/-/caniuse-api-3.0.0.tgz",
- "integrity": "sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==",
+ "copy-concurrently": {
+ "version": "1.0.5",
+ "resolved": "https://registry.npmjs.org/copy-concurrently/-/copy-concurrently-1.0.5.tgz",
+ "integrity": "sha512-f2domd9fsVDFtaFcbaRZuYXwtdmnzqbADSwhSWYxYB/Q8zsdUUFMXVRwXGDMWmbEzAn1kdRrtI1T/KTFOL4X2A==",
"requires": {
- "browserslist": "^4.0.0",
- "caniuse-lite": "^1.0.0",
- "lodash.memoize": "^4.1.2",
- "lodash.uniq": "^4.5.0"
+ "aproba": "^1.1.1",
+ "fs-write-stream-atomic": "^1.0.8",
+ "iferr": "^0.1.5",
+ "mkdirp": "^0.5.1",
+ "rimraf": "^2.5.4",
+ "run-queue": "^1.0.0"
+ },
+ "dependencies": {
+ "rimraf": {
+ "version": "2.7.1",
+ "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz",
+ "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==",
+ "requires": {
+ "glob": "^7.1.3"
+ }
+ }
}
},
- "caniuse-lite": {
- "version": "1.0.30001109",
- "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001109.tgz",
- "integrity": "sha512-4JIXRodHzdS3HdK8nSgIqXYLExOvG+D2/EenSvcub2Kp3QEADjo2v2oUn5g0n0D+UNwG9BtwKOyGcSq2qvQXvQ=="
- },
- "ccount": {
- "version": "1.0.5",
- "resolved": "https://registry.npmjs.org/ccount/-/ccount-1.0.5.tgz",
- "integrity": "sha512-MOli1W+nfbPLlKEhInaxhRdp7KVLFxLN5ykwzHgLsLI3H3gs5jjFAK4Eoj3OzzcxCtumDaI8onoVDeQyWaNTkw=="
+ "copy-descriptor": {
+ "version": "0.1.1",
+ "resolved": "https://registry.npmjs.org/copy-descriptor/-/copy-descriptor-0.1.1.tgz",
+ "integrity": "sha1-Z29us8OZl8LuGsOpJP1hJHSPV40="
},
- "chalk": {
- "version": "2.4.2",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
- "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
+ "copyfiles": {
+ "version": "2.4.0",
+ "resolved": "https://registry.npmjs.org/copyfiles/-/copyfiles-2.4.0.tgz",
+ "integrity": "sha512-yGjpR3yjQdxccW8EcJ4a7ZCA6wGER6/Q2Y+b7bXbVxGeSHBf93i9d7MzTsx+VV1CpMKQa3v4ThZfXBcltMzl0w==",
"requires": {
- "ansi-styles": "^3.2.1",
- "escape-string-regexp": "^1.0.5",
- "supports-color": "^5.3.0"
+ "glob": "^7.0.5",
+ "minimatch": "^3.0.3",
+ "mkdirp": "^1.0.4",
+ "noms": "0.0.0",
+ "through2": "^2.0.1",
+ "untildify": "^4.0.0",
+ "yargs": "^15.3.1"
+ },
+ "dependencies": {
+ "mkdirp": {
+ "version": "1.0.4",
+ "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz",
+ "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw=="
+ }
}
},
- "change-case": {
- "version": "3.1.0",
- "resolved": "https://registry.npmjs.org/change-case/-/change-case-3.1.0.tgz",
- "integrity": "sha512-2AZp7uJZbYEzRPsFoa+ijKdvp9zsrnnt6+yFokfwEpeJm0xuJDVoxiRCAaTzyJND8GJkofo2IcKWaUZ/OECVzw==",
+ "core-js": {
+ "version": "3.6.5",
+ "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.6.5.tgz",
+ "integrity": "sha512-vZVEEwZoIsI+vPEuoF9Iqf5H7/M3eeQqWlQnYa8FSKKePuYTf5MWnxb5SDAzCa60b3JBRS5g9b+Dq7b1y/RCrA=="
+ },
+ "core-js-compat": {
+ "version": "3.6.5",
+ "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.6.5.tgz",
+ "integrity": "sha512-7ItTKOhOZbznhXAQ2g/slGg1PJV5zDO/WdkTwi7UEOJmkvsE32PWvx6mKtDjiMpjnR2CNf6BAD6sSxIlv7ptng==",
"requires": {
- "camel-case": "^3.0.0",
- "constant-case": "^2.0.0",
- "dot-case": "^2.1.0",
- "header-case": "^1.0.0",
- "is-lower-case": "^1.1.0",
- "is-upper-case": "^1.1.0",
- "lower-case": "^1.1.1",
- "lower-case-first": "^1.0.0",
- "no-case": "^2.3.2",
- "param-case": "^2.1.0",
- "pascal-case": "^2.0.0",
- "path-case": "^2.1.0",
- "sentence-case": "^2.1.0",
- "snake-case": "^2.1.0",
- "swap-case": "^1.1.0",
- "title-case": "^2.1.0",
- "upper-case": "^1.1.1",
- "upper-case-first": "^1.1.0"
+ "browserslist": "^4.8.5",
+ "semver": "7.0.0"
},
"dependencies": {
- "camel-case": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/camel-case/-/camel-case-3.0.0.tgz",
- "integrity": "sha1-yjw2iKTpzzpM2nd9xNy8cTJJz3M=",
- "requires": {
- "no-case": "^2.2.0",
- "upper-case": "^1.1.1"
- }
- },
- "lower-case": {
- "version": "1.1.4",
- "resolved": "https://registry.npmjs.org/lower-case/-/lower-case-1.1.4.tgz",
- "integrity": "sha1-miyr0bno4K6ZOkv31YdcOcQujqw="
- },
- "no-case": {
- "version": "2.3.2",
- "resolved": "https://registry.npmjs.org/no-case/-/no-case-2.3.2.tgz",
- "integrity": "sha512-rmTZ9kz+f3rCvK2TD1Ue/oZlns7OGoIWP4fc3llxxRXlOkHKoWPPWJOfFYpITabSow43QJbRIoHQXtt10VldyQ==",
- "requires": {
- "lower-case": "^1.1.1"
- }
- },
- "pascal-case": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/pascal-case/-/pascal-case-2.0.1.tgz",
- "integrity": "sha1-LVeNNFX2YNpl7KGO+VtODekSdh4=",
- "requires": {
- "camel-case": "^3.0.0",
- "upper-case-first": "^1.1.0"
- }
+ "semver": {
+ "version": "7.0.0",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-7.0.0.tgz",
+ "integrity": "sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A=="
}
}
},
- "character-entities": {
- "version": "1.2.4",
- "resolved": "https://registry.npmjs.org/character-entities/-/character-entities-1.2.4.tgz",
- "integrity": "sha512-iBMyeEHxfVnIakwOuDXpVkc54HijNgCyQB2w0VfGQThle6NXn50zU6V/u+LDhxHcDUPojn6Kpga3PTAD8W1bQw=="
+ "core-js-pure": {
+ "version": "3.6.5",
+ "resolved": "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.6.5.tgz",
+ "integrity": "sha512-lacdXOimsiD0QyNf9BC/mxivNJ/ybBGJXQFKzRekp1WTHoVUWsUHEn+2T8GJAzzIhyOuXA+gOxCVN3l+5PLPUA=="
},
- "character-entities-html4": {
- "version": "1.1.4",
- "resolved": "https://registry.npmjs.org/character-entities-html4/-/character-entities-html4-1.1.4.tgz",
- "integrity": "sha512-HRcDxZuZqMx3/a+qrzxdBKBPUpxWEq9xw2OPZ3a/174ihfrQKVsFhqtthBInFy1zZ9GgZyFXOatNujm8M+El3g=="
+ "core-util-is": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz",
+ "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac="
},
- "character-entities-legacy": {
- "version": "1.1.4",
- "resolved": "https://registry.npmjs.org/character-entities-legacy/-/character-entities-legacy-1.1.4.tgz",
- "integrity": "sha512-3Xnr+7ZFS1uxeiUDvV02wQ+QDbc55o97tIV5zHScSPJpcLm/r0DFPcoY3tYRp+VZukxuMeKgXYmsXQHO05zQeA=="
+ "cors": {
+ "version": "2.8.5",
+ "resolved": "https://registry.npmjs.org/cors/-/cors-2.8.5.tgz",
+ "integrity": "sha512-KIHbLJqu73RGr/hnbrO9uBeixNGuvSQjul/jdFvS/KFSIH1hWVd1ng7zOHx+YrEfInLG7q4n6GHQ9cDtxv/P6g==",
+ "requires": {
+ "object-assign": "^4",
+ "vary": "^1"
+ }
},
- "character-reference-invalid": {
- "version": "1.1.4",
- "resolved": "https://registry.npmjs.org/character-reference-invalid/-/character-reference-invalid-1.1.4.tgz",
- "integrity": "sha512-mKKUkUbhPpQlCOfIuZkvSEgktjPFIsZKRRbC6KWVEMvlzblj3i3asQv5ODsrwt0N3pHAEvjP8KTQPHkp0+6jOg=="
+ "cosmiconfig": {
+ "version": "6.0.0",
+ "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-6.0.0.tgz",
+ "integrity": "sha512-xb3ZL6+L8b9JLLCx3ZdoZy4+2ECphCMo2PwqgP1tlfVq6M6YReyzBJtvWWtbDSpNr9hn96pkCiZqUcFEc+54Qg==",
+ "requires": {
+ "@types/parse-json": "^4.0.0",
+ "import-fresh": "^3.1.0",
+ "parse-json": "^5.0.0",
+ "path-type": "^4.0.0",
+ "yaml": "^1.7.2"
+ }
},
- "chardet": {
- "version": "0.7.0",
- "resolved": "https://registry.npmjs.org/chardet/-/chardet-0.7.0.tgz",
- "integrity": "sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA=="
+ "cosmiconfig-toml-loader": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/cosmiconfig-toml-loader/-/cosmiconfig-toml-loader-1.0.0.tgz",
+ "integrity": "sha512-H/2gurFWVi7xXvCyvsWRLCMekl4tITJcX0QEsDMpzxtuxDyM59xLatYNg4s/k9AA/HdtCYfj2su8mgA0GSDLDA==",
+ "requires": {
+ "@iarna/toml": "^2.2.5"
+ }
},
- "cheerio": {
- "version": "0.22.0",
- "resolved": "https://registry.npmjs.org/cheerio/-/cheerio-0.22.0.tgz",
- "integrity": "sha1-qbqoYKP5tZWmuBsahocxIe06Jp4=",
+ "create-ecdh": {
+ "version": "4.0.4",
+ "resolved": "https://registry.npmjs.org/create-ecdh/-/create-ecdh-4.0.4.tgz",
+ "integrity": "sha512-mf+TCx8wWc9VpuxfP2ht0iSISLZnt0JgWlrOKZiNqyUZWnjIaCIVNQArMHnCZKfEYRg6IM7A+NeJoN8gf/Ws0A==",
"requires": {
- "css-select": "~1.2.0",
- "dom-serializer": "~0.1.0",
- "entities": "~1.1.1",
- "htmlparser2": "^3.9.1",
- "lodash.assignin": "^4.0.9",
- "lodash.bind": "^4.1.4",
- "lodash.defaults": "^4.0.1",
- "lodash.filter": "^4.4.0",
- "lodash.flatten": "^4.2.0",
- "lodash.foreach": "^4.3.0",
- "lodash.map": "^4.4.0",
- "lodash.merge": "^4.4.0",
- "lodash.pick": "^4.2.1",
- "lodash.reduce": "^4.4.0",
- "lodash.reject": "^4.4.0",
- "lodash.some": "^4.4.0"
+ "bn.js": "^4.1.0",
+ "elliptic": "^6.5.3"
},
"dependencies": {
- "dom-serializer": {
- "version": "0.1.1",
- "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-0.1.1.tgz",
- "integrity": "sha512-l0IU0pPzLWSHBcieZbpOKgkIn3ts3vAh7ZuFyXNwJxJXk/c4Gwj9xaTJwIDVQCXawWD0qb3IzMGH5rglQaO0XA==",
- "requires": {
- "domelementtype": "^1.3.0",
- "entities": "^1.1.1"
- }
- },
- "entities": {
- "version": "1.1.2",
- "resolved": "https://registry.npmjs.org/entities/-/entities-1.1.2.tgz",
- "integrity": "sha512-f2LZMYl1Fzu7YSBKg+RoROelpOaNrcGmE9AZubeDfrCEia483oW4MI4VyFd5VNHIgQ/7qm1I0wUHK1eJnn2y2w=="
+ "bn.js": {
+ "version": "4.11.9",
+ "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.11.9.tgz",
+ "integrity": "sha512-E6QoYqCKZfgatHTdHzs1RRKP7ip4vvm+EyRUeE2RF0NblwVvb0p6jSVeNTOFxPn26QXN2o6SMfNxKp6kU8zQaw=="
}
}
},
- "chokidar": {
- "version": "3.4.3",
- "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.4.3.tgz",
- "integrity": "sha512-DtM3g7juCXQxFVSNPNByEC2+NImtBuxQQvWlHunpJIS5Ocr0lG306cC7FCi7cEA0fzmybPUIl4txBIobk1gGOQ==",
+ "create-hash": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/create-hash/-/create-hash-1.2.0.tgz",
+ "integrity": "sha512-z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg==",
"requires": {
- "anymatch": "~3.1.1",
- "braces": "~3.0.2",
- "fsevents": "~2.1.2",
- "glob-parent": "~5.1.0",
- "is-binary-path": "~2.1.0",
- "is-glob": "~4.0.1",
- "normalize-path": "~3.0.0",
- "readdirp": "~3.5.0"
- },
- "dependencies": {
- "anymatch": {
- "version": "3.1.1",
- "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.1.tgz",
- "integrity": "sha512-mM8522psRCqzV+6LhomX5wgp25YVibjh8Wj23I5RPkPppSVSjyKD2A2mBJmWGa+KN7f2D6LNh9jkBCeyLktzjg==",
- "requires": {
- "normalize-path": "^3.0.0",
- "picomatch": "^2.0.4"
- }
- },
- "binary-extensions": {
- "version": "2.1.0",
- "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.1.0.tgz",
- "integrity": "sha512-1Yj8h9Q+QDF5FzhMs/c9+6UntbD5MkRfRwac8DoEm9ZfUBZ7tZ55YcGVAzEe4bXsdQHEk+s9S5wsOKVdZrw0tQ=="
- },
- "braces": {
- "version": "3.0.2",
- "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz",
- "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==",
- "requires": {
- "fill-range": "^7.0.1"
- }
- },
- "fill-range": {
- "version": "7.0.1",
- "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz",
- "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==",
- "requires": {
- "to-regex-range": "^5.0.1"
- }
- },
- "fsevents": {
- "version": "2.1.3",
- "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.1.3.tgz",
- "integrity": "sha512-Auw9a4AxqWpa9GUfj370BMPzzyncfBABW8Mab7BGWBYDj4Isgq+cDKtx0i6u9jcX9pQDnswsaaOTgTmA5pEjuQ==",
- "optional": true
- },
- "glob-parent": {
- "version": "5.1.1",
- "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.1.tgz",
- "integrity": "sha512-FnI+VGOpnlGHWZxthPGR+QhR78fuiK0sNLkHQv+bL9fQi57lNNdquIbna/WrfROrolq8GK5Ek6BiMwqL/voRYQ==",
- "requires": {
- "is-glob": "^4.0.1"
- }
- },
- "is-binary-path": {
- "version": "2.1.0",
- "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz",
- "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==",
- "requires": {
- "binary-extensions": "^2.0.0"
- }
- },
- "is-number": {
- "version": "7.0.0",
- "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz",
- "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng=="
- },
- "readdirp": {
- "version": "3.5.0",
- "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.5.0.tgz",
- "integrity": "sha512-cMhu7c/8rdhkHXWsY+osBhfSy0JikwpHK/5+imo+LpeasTF8ouErHrlYkwT0++njiyuDvc7OFY5T3ukvZ8qmFQ==",
- "requires": {
- "picomatch": "^2.2.1"
- }
- },
- "to-regex-range": {
- "version": "5.0.1",
- "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz",
- "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==",
- "requires": {
- "is-number": "^7.0.0"
- }
- }
+ "cipher-base": "^1.0.1",
+ "inherits": "^2.0.1",
+ "md5.js": "^1.3.4",
+ "ripemd160": "^2.0.1",
+ "sha.js": "^2.4.0"
}
},
- "chownr": {
- "version": "1.1.4",
- "resolved": "https://registry.npmjs.org/chownr/-/chownr-1.1.4.tgz",
- "integrity": "sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg=="
- },
- "chrome-trace-event": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.2.tgz",
- "integrity": "sha512-9e/zx1jw7B4CO+c/RXoCsfg/x1AfUBioy4owYH0bJprEYAx5hRFLRhWBqHAG57D0ZM4H7vxbP7bPe0VwhQRYDQ==",
+ "create-hmac": {
+ "version": "1.1.7",
+ "resolved": "https://registry.npmjs.org/create-hmac/-/create-hmac-1.1.7.tgz",
+ "integrity": "sha512-MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg==",
"requires": {
- "tslib": "^1.9.0"
+ "cipher-base": "^1.0.3",
+ "create-hash": "^1.1.0",
+ "inherits": "^2.0.1",
+ "ripemd160": "^2.0.0",
+ "safe-buffer": "^5.0.1",
+ "sha.js": "^2.4.8"
}
},
- "ci-info": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-2.0.0.tgz",
- "integrity": "sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ=="
- },
- "cipher-base": {
- "version": "1.0.4",
- "resolved": "https://registry.npmjs.org/cipher-base/-/cipher-base-1.0.4.tgz",
- "integrity": "sha512-Kkht5ye6ZGmwv40uUDZztayT2ThLQGfnj/T71N/XzeZeo3nf8foyW7zGTsPYkEya3m5f3cAypH+qe7YOrM1U2Q==",
+ "create-react-context": {
+ "version": "0.3.0",
+ "resolved": "https://registry.npmjs.org/create-react-context/-/create-react-context-0.3.0.tgz",
+ "integrity": "sha512-dNldIoSuNSvlTJ7slIKC/ZFGKexBMBrrcc+TTe1NdmROnaASuLPvqpwj9v4XS4uXZ8+YPu0sNmShX2rXI5LNsw==",
"requires": {
- "inherits": "^2.0.1",
- "safe-buffer": "^5.0.1"
+ "gud": "^1.0.0",
+ "warning": "^4.0.3"
}
},
- "class-utils": {
- "version": "0.3.6",
- "resolved": "https://registry.npmjs.org/class-utils/-/class-utils-0.3.6.tgz",
- "integrity": "sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==",
+ "cross-fetch": {
+ "version": "3.0.6",
+ "resolved": "https://registry.npmjs.org/cross-fetch/-/cross-fetch-3.0.6.tgz",
+ "integrity": "sha512-KBPUbqgFjzWlVcURG+Svp9TlhA5uliYtiNx/0r8nv0pdypeQCRJ9IaSIc3q/x3q8t3F75cHuwxVql1HFGHCNJQ==",
"requires": {
- "arr-union": "^3.1.0",
- "define-property": "^0.2.5",
- "isobject": "^3.0.0",
- "static-extend": "^0.1.1"
- },
- "dependencies": {
- "define-property": {
- "version": "0.2.5",
- "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz",
- "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=",
- "requires": {
- "is-descriptor": "^0.1.0"
- }
- }
+ "node-fetch": "2.6.1"
}
},
- "clean-stack": {
- "version": "2.2.0",
- "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-2.2.0.tgz",
- "integrity": "sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A=="
- },
- "cli-boxes": {
- "version": "2.2.1",
- "resolved": "https://registry.npmjs.org/cli-boxes/-/cli-boxes-2.2.1.tgz",
- "integrity": "sha512-y4coMcylgSCdVinjiDBuR8PCC2bLjyGTwEmPb9NHR/QaNU6EUOXcTY/s6VjGMD6ENSEaeQYHCY0GNGS5jfMwPw=="
- },
- "cli-cursor": {
- "version": "3.1.0",
- "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-3.1.0.tgz",
- "integrity": "sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==",
+ "cross-spawn": {
+ "version": "6.0.5",
+ "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz",
+ "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==",
"requires": {
- "restore-cursor": "^3.1.0"
+ "nice-try": "^1.0.4",
+ "path-key": "^2.0.1",
+ "semver": "^5.5.0",
+ "shebang-command": "^1.2.0",
+ "which": "^1.2.9"
}
},
- "cli-table3": {
- "version": "0.5.1",
- "resolved": "https://registry.npmjs.org/cli-table3/-/cli-table3-0.5.1.tgz",
- "integrity": "sha512-7Qg2Jrep1S/+Q3EceiZtQcDPWxhAvBw+ERf1162v4sikJrvojMHFqXt8QIVha8UlH9rgU0BeWPytZ9/TzYqlUw==",
+ "crypto-browserify": {
+ "version": "3.12.0",
+ "resolved": "https://registry.npmjs.org/crypto-browserify/-/crypto-browserify-3.12.0.tgz",
+ "integrity": "sha512-fz4spIh+znjO2VjL+IdhEpRJ3YN6sMzITSBijk6FK2UvTqruSQW+/cCZTSNsMiZNvUeq0CqurF+dAbyiGOY6Wg==",
"requires": {
- "colors": "^1.1.2",
- "object-assign": "^4.1.0",
- "string-width": "^2.1.1"
+ "browserify-cipher": "^1.0.0",
+ "browserify-sign": "^4.0.0",
+ "create-ecdh": "^4.0.0",
+ "create-hash": "^1.1.0",
+ "create-hmac": "^1.1.0",
+ "diffie-hellman": "^5.0.0",
+ "inherits": "^2.0.1",
+ "pbkdf2": "^3.0.3",
+ "public-encrypt": "^4.0.0",
+ "randombytes": "^2.0.0",
+ "randomfill": "^1.0.3"
}
},
- "cli-width": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/cli-width/-/cli-width-3.0.0.tgz",
- "integrity": "sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw=="
+ "crypto-random-string": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/crypto-random-string/-/crypto-random-string-2.0.0.tgz",
+ "integrity": "sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA=="
},
- "clipboardy": {
- "version": "2.3.0",
- "resolved": "https://registry.npmjs.org/clipboardy/-/clipboardy-2.3.0.tgz",
- "integrity": "sha512-mKhiIL2DrQIsuXMgBgnfEHOZOryC7kY7YO//TN6c63wlEm3NG5tz+YgY5rVi29KCmq/QQjKYvM7a19+MDOTHOQ==",
+ "css-color-names": {
+ "version": "0.0.4",
+ "resolved": "https://registry.npmjs.org/css-color-names/-/css-color-names-0.0.4.tgz",
+ "integrity": "sha1-gIrcLnnPhHOAabZGyyDsJ762KeA="
+ },
+ "css-declaration-sorter": {
+ "version": "4.0.1",
+ "resolved": "https://registry.npmjs.org/css-declaration-sorter/-/css-declaration-sorter-4.0.1.tgz",
+ "integrity": "sha512-BcxQSKTSEEQUftYpBVnsH4SF05NTuBokb19/sBt6asXGKZ/6VP7PLG1CBCkFDYOnhXhPh0jMhO6xZ71oYHXHBA==",
"requires": {
- "arch": "^2.1.1",
- "execa": "^1.0.0",
- "is-wsl": "^2.1.1"
+ "postcss": "^7.0.1",
+ "timsort": "^0.3.0"
+ }
+ },
+ "css-loader": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/css-loader/-/css-loader-1.0.1.tgz",
+ "integrity": "sha512-+ZHAZm/yqvJ2kDtPne3uX0C+Vr3Zn5jFn2N4HywtS5ujwvsVkyg0VArEXpl3BgczDA8anieki1FIzhchX4yrDw==",
+ "requires": {
+ "babel-code-frame": "^6.26.0",
+ "css-selector-tokenizer": "^0.7.0",
+ "icss-utils": "^2.1.0",
+ "loader-utils": "^1.0.2",
+ "lodash": "^4.17.11",
+ "postcss": "^6.0.23",
+ "postcss-modules-extract-imports": "^1.2.0",
+ "postcss-modules-local-by-default": "^1.2.0",
+ "postcss-modules-scope": "^1.1.0",
+ "postcss-modules-values": "^1.3.0",
+ "postcss-value-parser": "^3.3.0",
+ "source-list-map": "^2.0.0"
},
"dependencies": {
- "execa": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/execa/-/execa-1.0.0.tgz",
- "integrity": "sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==",
+ "postcss": {
+ "version": "6.0.23",
+ "resolved": "https://registry.npmjs.org/postcss/-/postcss-6.0.23.tgz",
+ "integrity": "sha512-soOk1h6J3VMTZtVeVpv15/Hpdl2cBLX3CAw4TAbkpTJiNPk9YP/zWcD1ND+xEtvyuuvKzbxliTOIyvkSeSJ6ag==",
"requires": {
- "cross-spawn": "^6.0.0",
- "get-stream": "^4.0.0",
- "is-stream": "^1.1.0",
- "npm-run-path": "^2.0.0",
- "p-finally": "^1.0.0",
- "signal-exit": "^3.0.0",
- "strip-eof": "^1.0.0"
+ "chalk": "^2.4.1",
+ "source-map": "^0.6.1",
+ "supports-color": "^5.4.0"
}
},
- "is-stream": {
- "version": "1.1.0",
- "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz",
- "integrity": "sha1-EtSj3U5o4Lec6428hBc66A2RykQ="
+ "postcss-value-parser": {
+ "version": "3.3.1",
+ "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz",
+ "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ=="
},
- "npm-run-path": {
- "version": "2.0.2",
- "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz",
- "integrity": "sha1-NakjLfo11wZ7TLLd8jV7GHFTbF8=",
- "requires": {
- "path-key": "^2.0.0"
- }
+ "source-map": {
+ "version": "0.6.1",
+ "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
+ "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g=="
}
}
},
- "cliui": {
- "version": "6.0.0",
- "resolved": "https://registry.npmjs.org/cliui/-/cliui-6.0.0.tgz",
- "integrity": "sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==",
+ "css-select": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/css-select/-/css-select-1.2.0.tgz",
+ "integrity": "sha1-KzoRBTnFNV8c2NMUYj6HCxIeyFg=",
"requires": {
- "string-width": "^4.2.0",
- "strip-ansi": "^6.0.0",
- "wrap-ansi": "^6.2.0"
+ "boolbase": "~1.0.0",
+ "css-what": "2.1",
+ "domutils": "1.5.1",
+ "nth-check": "~1.0.1"
+ }
+ },
+ "css-select-base-adapter": {
+ "version": "0.1.1",
+ "resolved": "https://registry.npmjs.org/css-select-base-adapter/-/css-select-base-adapter-0.1.1.tgz",
+ "integrity": "sha512-jQVeeRG70QI08vSTwf1jHxp74JoZsr2XSgETae8/xC8ovSnL2WF87GTLO86Sbwdt2lK4Umg4HnnwMO4YF3Ce7w=="
+ },
+ "css-selector-tokenizer": {
+ "version": "0.7.3",
+ "resolved": "https://registry.npmjs.org/css-selector-tokenizer/-/css-selector-tokenizer-0.7.3.tgz",
+ "integrity": "sha512-jWQv3oCEL5kMErj4wRnK/OPoBi0D+P1FR2cDCKYPaMeD2eW3/mttav8HT4hT1CKopiJI/psEULjkClhvJo4Lvg==",
+ "requires": {
+ "cssesc": "^3.0.0",
+ "fastparse": "^1.1.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"
},
"dependencies": {
- "ansi-regex": {
- "version": "5.0.0",
- "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.0.tgz",
- "integrity": "sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg=="
- },
- "is-fullwidth-code-point": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz",
- "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg=="
+ "source-map": {
+ "version": "0.6.1",
+ "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
+ "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g=="
+ }
+ }
+ },
+ "css-what": {
+ "version": "2.1.3",
+ "resolved": "https://registry.npmjs.org/css-what/-/css-what-2.1.3.tgz",
+ "integrity": "sha512-a+EPoD+uZiNfh+5fxw2nO9QwFa6nJe2Or35fGY6Ipw1R3R4AGz1d1TEZrCegvw2YTmZ0jXirGYlzxxpYSHwpEg=="
+ },
+ "cssesc": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz",
+ "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg=="
+ },
+ "cssfilter": {
+ "version": "0.0.10",
+ "resolved": "https://registry.npmjs.org/cssfilter/-/cssfilter-0.0.10.tgz",
+ "integrity": "sha1-xtJnJjKi5cg+AT5oZKQs6N79IK4="
+ },
+ "cssnano": {
+ "version": "4.1.10",
+ "resolved": "https://registry.npmjs.org/cssnano/-/cssnano-4.1.10.tgz",
+ "integrity": "sha512-5wny+F6H4/8RgNlaqab4ktc3e0/blKutmq8yNlBFXA//nSFFAqAngjNVRzUvCgYROULmZZUoosL/KSoZo5aUaQ==",
+ "requires": {
+ "cosmiconfig": "^5.0.0",
+ "cssnano-preset-default": "^4.0.7",
+ "is-resolvable": "^1.0.0",
+ "postcss": "^7.0.0"
+ },
+ "dependencies": {
+ "cosmiconfig": {
+ "version": "5.2.1",
+ "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-5.2.1.tgz",
+ "integrity": "sha512-H65gsXo1SKjf8zmrJ67eJk8aIRKV5ff2D4uKZIBZShbhGSpEmsQOPW/SKMKYhSTrqR7ufy6RP69rPogdaPh/kA==",
+ "requires": {
+ "import-fresh": "^2.0.0",
+ "is-directory": "^0.3.1",
+ "js-yaml": "^3.13.1",
+ "parse-json": "^4.0.0"
+ }
},
- "string-width": {
- "version": "4.2.0",
- "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.0.tgz",
- "integrity": "sha512-zUz5JD+tgqtuDjMhwIg5uFVV3dtqZ9yQJlZVfq4I01/K5Paj5UHj7VyrQOJvzawSVlKpObApbfD0Ed6yJc+1eg==",
+ "import-fresh": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-2.0.0.tgz",
+ "integrity": "sha1-2BNVwVYS04bGH53dOSLUMEgipUY=",
"requires": {
- "emoji-regex": "^8.0.0",
- "is-fullwidth-code-point": "^3.0.0",
- "strip-ansi": "^6.0.0"
+ "caller-path": "^2.0.0",
+ "resolve-from": "^3.0.0"
}
},
- "strip-ansi": {
- "version": "6.0.0",
- "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.0.tgz",
- "integrity": "sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w==",
+ "parse-json": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz",
+ "integrity": "sha1-vjX1Qlvh9/bHRxhPmKeIy5lHfuA=",
"requires": {
- "ansi-regex": "^5.0.0"
+ "error-ex": "^1.3.1",
+ "json-parse-better-errors": "^1.0.1"
}
+ },
+ "resolve-from": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-3.0.0.tgz",
+ "integrity": "sha1-six699nWiBvItuZTM17rywoYh0g="
}
}
},
- "clone-response": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/clone-response/-/clone-response-1.0.2.tgz",
- "integrity": "sha1-0dyXOSAxTfZ/vrlCI7TuNQI56Ws=",
+ "cssnano-preset-default": {
+ "version": "4.0.7",
+ "resolved": "https://registry.npmjs.org/cssnano-preset-default/-/cssnano-preset-default-4.0.7.tgz",
+ "integrity": "sha512-x0YHHx2h6p0fCl1zY9L9roD7rnlltugGu7zXSKQx6k2rYw0Hi3IqxcoAGF7u9Q5w1nt7vK0ulxV8Lo+EvllGsA==",
"requires": {
- "mimic-response": "^1.0.0"
+ "css-declaration-sorter": "^4.0.1",
+ "cssnano-util-raw-cache": "^4.0.1",
+ "postcss": "^7.0.0",
+ "postcss-calc": "^7.0.1",
+ "postcss-colormin": "^4.0.3",
+ "postcss-convert-values": "^4.0.1",
+ "postcss-discard-comments": "^4.0.2",
+ "postcss-discard-duplicates": "^4.0.2",
+ "postcss-discard-empty": "^4.0.1",
+ "postcss-discard-overridden": "^4.0.1",
+ "postcss-merge-longhand": "^4.0.11",
+ "postcss-merge-rules": "^4.0.3",
+ "postcss-minify-font-values": "^4.0.2",
+ "postcss-minify-gradients": "^4.0.2",
+ "postcss-minify-params": "^4.0.2",
+ "postcss-minify-selectors": "^4.0.2",
+ "postcss-normalize-charset": "^4.0.1",
+ "postcss-normalize-display-values": "^4.0.2",
+ "postcss-normalize-positions": "^4.0.2",
+ "postcss-normalize-repeat-style": "^4.0.2",
+ "postcss-normalize-string": "^4.0.2",
+ "postcss-normalize-timing-functions": "^4.0.2",
+ "postcss-normalize-unicode": "^4.0.1",
+ "postcss-normalize-url": "^4.0.1",
+ "postcss-normalize-whitespace": "^4.0.2",
+ "postcss-ordered-values": "^4.1.2",
+ "postcss-reduce-initial": "^4.0.3",
+ "postcss-reduce-transforms": "^4.0.2",
+ "postcss-svgo": "^4.0.2",
+ "postcss-unique-selectors": "^4.0.1"
}
},
- "coa": {
- "version": "2.0.2",
- "resolved": "https://registry.npmjs.org/coa/-/coa-2.0.2.tgz",
- "integrity": "sha512-q5/jG+YQnSy4nRTV4F7lPepBJZ8qBNJJDBuJdoejDyLXgmL7IEo+Le2JDZudFTFt7mrCqIRaSjws4ygRCTCAXA==",
+ "cssnano-util-get-arguments": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/cssnano-util-get-arguments/-/cssnano-util-get-arguments-4.0.0.tgz",
+ "integrity": "sha1-7ToIKZ8h11dBsg87gfGU7UnMFQ8="
+ },
+ "cssnano-util-get-match": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/cssnano-util-get-match/-/cssnano-util-get-match-4.0.0.tgz",
+ "integrity": "sha1-wOTKB/U4a7F+xeUiULT1lhNlFW0="
+ },
+ "cssnano-util-raw-cache": {
+ "version": "4.0.1",
+ "resolved": "https://registry.npmjs.org/cssnano-util-raw-cache/-/cssnano-util-raw-cache-4.0.1.tgz",
+ "integrity": "sha512-qLuYtWK2b2Dy55I8ZX3ky1Z16WYsx544Q0UWViebptpwn/xDBmog2TLg4f+DBMg1rJ6JDWtn96WHbOKDWt1WQA==",
"requires": {
- "@types/q": "^1.5.1",
- "chalk": "^2.4.1",
- "q": "^1.1.2"
+ "postcss": "^7.0.0"
}
},
- "collapse-white-space": {
- "version": "1.0.6",
- "resolved": "https://registry.npmjs.org/collapse-white-space/-/collapse-white-space-1.0.6.tgz",
- "integrity": "sha512-jEovNnrhMuqyCcjfEJA56v0Xq8SkIoPKDyaHahwo3POf4qcSXqMYuwNcOTzp74vTsR9Tn08z4MxWqAhcekogkQ=="
+ "cssnano-util-same-parent": {
+ "version": "4.0.1",
+ "resolved": "https://registry.npmjs.org/cssnano-util-same-parent/-/cssnano-util-same-parent-4.0.1.tgz",
+ "integrity": "sha512-WcKx5OY+KoSIAxBW6UBBRay1U6vkYheCdjyVNDm85zt5K9mHoGOfsOsqIszfAqrQQFIIKgjh2+FDgIj/zsl21Q=="
},
- "collection-visit": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/collection-visit/-/collection-visit-1.0.0.tgz",
- "integrity": "sha1-S8A3PBZLwykbTTaMgpzxqApZ3KA=",
+ "csso": {
+ "version": "4.1.0",
+ "resolved": "https://registry.npmjs.org/csso/-/csso-4.1.0.tgz",
+ "integrity": "sha512-h+6w/W1WqXaJA4tb1dk7r5tVbOm97MsKxzwnvOR04UQ6GILroryjMWu3pmCCtL2mLaEStQ0fZgeGiy99mo7iyg==",
"requires": {
- "map-visit": "^1.0.0",
- "object-visit": "^1.0.0"
+ "css-tree": "^1.0.0"
+ },
+ "dependencies": {
+ "css-tree": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-1.0.0.tgz",
+ "integrity": "sha512-CdVYz/Yuqw0VdKhXPBIgi8DO3NicJVYZNWeX9XcIuSp9ZoFT5IcleVRW07O5rMjdcx1mb+MEJPknTTEW7DdsYw==",
+ "requires": {
+ "mdn-data": "2.0.12",
+ "source-map": "^0.6.1"
+ }
+ },
+ "mdn-data": {
+ "version": "2.0.12",
+ "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.12.tgz",
+ "integrity": "sha512-ULbAlgzVb8IqZ0Hsxm6hHSlQl3Jckst2YEQS7fODu9ilNWy2LvcoSY7TRFIktABP2mdppBioc66va90T+NUs8Q=="
+ },
+ "source-map": {
+ "version": "0.6.1",
+ "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
+ "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g=="
+ }
}
},
- "color": {
- "version": "3.1.3",
- "resolved": "https://registry.npmjs.org/color/-/color-3.1.3.tgz",
- "integrity": "sha512-xgXAcTHa2HeFCGLE9Xs/R82hujGtu9Jd9x4NW3T34+OMs7VoPsjwzRczKHvTAHeJwWFwX5j15+MgAppE8ztObQ==",
+ "csstype": {
+ "version": "2.6.13",
+ "resolved": "https://registry.npmjs.org/csstype/-/csstype-2.6.13.tgz",
+ "integrity": "sha512-ul26pfSQTZW8dcOnD2iiJssfXw0gdNVX9IJDH/X3K5DGPfj+fUYe3kB+swUY6BF3oZDxaID3AJt+9/ojSAE05A=="
+ },
+ "currently-unhandled": {
+ "version": "0.4.1",
+ "resolved": "https://registry.npmjs.org/currently-unhandled/-/currently-unhandled-0.4.1.tgz",
+ "integrity": "sha1-mI3zP+qxke95mmE2nddsF635V+o=",
"requires": {
- "color-convert": "^1.9.1",
- "color-string": "^1.5.4"
+ "array-find-index": "^1.0.1"
}
},
- "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": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU="
+ "cyclist": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/cyclist/-/cyclist-1.0.1.tgz",
+ "integrity": "sha1-WW6WmP0MgOEgOMK4LW6xs1tiJNk="
},
- "color-string": {
- "version": "1.5.4",
- "resolved": "https://registry.npmjs.org/color-string/-/color-string-1.5.4.tgz",
- "integrity": "sha512-57yF5yt8Xa3czSEW1jfQDE79Idk0+AkN/4KWad6tbdxUmAs3MvjxlWSWD4deYytcRfoZ9nhKyFl1kj5tBvidbw==",
+ "d": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/d/-/d-1.0.1.tgz",
+ "integrity": "sha512-m62ShEObQ39CfralilEQRjH6oAMtNCV1xJyEx5LpRYUVN+EviphDgUc/F3hnYbADmkiNs67Y+3ylmlG7Lnu+FA==",
"requires": {
- "color-name": "^1.0.0",
- "simple-swizzle": "^0.2.2"
+ "es5-ext": "^0.10.50",
+ "type": "^1.0.1"
}
},
- "colorette": {
- "version": "1.2.1",
- "resolved": "https://registry.npmjs.org/colorette/-/colorette-1.2.1.tgz",
- "integrity": "sha512-puCDz0CzydiSYOrnXpz/PKd69zRrribezjtE9yd4zvytoRc8+RY/KJPvtPFKZS3E3wP6neGyMe0vOTlHO5L3Pw=="
+ "damerau-levenshtein": {
+ "version": "1.0.6",
+ "resolved": "https://registry.npmjs.org/damerau-levenshtein/-/damerau-levenshtein-1.0.6.tgz",
+ "integrity": "sha512-JVrozIeElnj3QzfUIt8tB8YMluBJom4Vw9qTPpjGYQ9fYlB3D/rb6OordUxf3xeFB35LKWs0xqcO5U6ySvBtug=="
},
- "colors": {
+ "dataloader": {
"version": "1.4.0",
- "resolved": "https://registry.npmjs.org/colors/-/colors-1.4.0.tgz",
- "integrity": "sha512-a+UqTh4kgZg/SlGvfbzDHpgRu7AAQOmmqRHJnxhRZICKFUT91brVhNNt58CMWU9PsBbv3PDCZUHbVxuDiH2mtA==",
- "optional": true
+ "resolved": "https://registry.npmjs.org/dataloader/-/dataloader-1.4.0.tgz",
+ "integrity": "sha512-68s5jYdlvasItOJnCuI2Q9s4q98g0pCyL3HrcKJu8KNugUl8ahgmZYg38ysLTgQjjXX3H8CJLkAvWrclWfcalw=="
},
- "combined-stream": {
- "version": "1.0.8",
- "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz",
- "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==",
+ "date-fns": {
+ "version": "2.16.1",
+ "resolved": "https://registry.npmjs.org/date-fns/-/date-fns-2.16.1.tgz",
+ "integrity": "sha512-sAJVKx/FqrLYHAQeN7VpJrPhagZc9R4ImZIWYRFZaaohR3KzmuK88touwsSwSVT8Qcbd4zoDsnGfX4GFB4imyQ=="
+ },
+ "debug": {
+ "version": "3.2.6",
+ "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.6.tgz",
+ "integrity": "sha512-mel+jf7nrtEl5Pn1Qx46zARXKDpBbvzezse7p7LqINmdoIk8PYP5SySaxEmYv6TZ0JyEKA1hsCId6DIhgITtWQ==",
"requires": {
- "delayed-stream": "~1.0.0"
+ "ms": "^2.1.1"
}
},
- "comma-separated-tokens": {
- "version": "1.0.8",
- "resolved": "https://registry.npmjs.org/comma-separated-tokens/-/comma-separated-tokens-1.0.8.tgz",
- "integrity": "sha512-GHuDRO12Sypu2cV70d1dkA2EUmXHgntrzbpvOB+Qy+49ypNfGgFQIC2fhhXbnyrJRynDCAARsT7Ou0M6hirpfw=="
- },
- "command-exists": {
- "version": "1.2.9",
- "resolved": "https://registry.npmjs.org/command-exists/-/command-exists-1.2.9.tgz",
- "integrity": "sha512-LTQ/SGc+s0Xc0Fu5WaKnR0YiygZkm9eKFvyS+fRsU7/ZWFF8ykFM6Pc9aCVf1+xasOOZpO3BAVgVrKvsqKHV7w=="
- },
- "commander": {
- "version": "2.20.3",
- "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz",
- "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ=="
+ "decamelize": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz",
+ "integrity": "sha1-9lNNFRSCabIDUue+4m9QH5oZEpA="
},
- "common-tags": {
- "version": "1.8.0",
- "resolved": "https://registry.npmjs.org/common-tags/-/common-tags-1.8.0.tgz",
- "integrity": "sha512-6P6g0uetGpW/sdyUy/iQQCbFF0kWVMSIVSyYz7Zgjcgh8mgw8PQzDNZeyZ5DQ2gM7LBoZPHmnjz8rUthkBG5tw=="
+ "decode-uri-component": {
+ "version": "0.2.0",
+ "resolved": "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.0.tgz",
+ "integrity": "sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU="
},
- "commondir": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz",
- "integrity": "sha1-3dgA2gxmEnOTzKWVDqloo6rxJTs="
+ "decompress-response": {
+ "version": "3.3.0",
+ "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-3.3.0.tgz",
+ "integrity": "sha1-gKTdMjdIOEv6JICDYirt7Jgq3/M=",
+ "requires": {
+ "mimic-response": "^1.0.0"
+ }
},
- "component-bind": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/component-bind/-/component-bind-1.0.0.tgz",
- "integrity": "sha1-AMYIq33Nk4l8AAllGx06jh5zu9E="
+ "deep-equal": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/deep-equal/-/deep-equal-1.1.1.tgz",
+ "integrity": "sha512-yd9c5AdiqVcR+JjcwUQb9DkhJc8ngNr0MahEBGvDiJw8puWab2yZlh+nkasOnZP+EGTAP6rRp2JzJhJZzvNF8g==",
+ "requires": {
+ "is-arguments": "^1.0.4",
+ "is-date-object": "^1.0.1",
+ "is-regex": "^1.0.4",
+ "object-is": "^1.0.1",
+ "object-keys": "^1.1.1",
+ "regexp.prototype.flags": "^1.2.0"
+ }
},
- "component-emitter": {
- "version": "1.3.0",
- "resolved": "https://registry.npmjs.org/component-emitter/-/component-emitter-1.3.0.tgz",
- "integrity": "sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg=="
+ "deep-extend": {
+ "version": "0.6.0",
+ "resolved": "https://registry.npmjs.org/deep-extend/-/deep-extend-0.6.0.tgz",
+ "integrity": "sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA=="
},
- "component-inherit": {
- "version": "0.0.3",
- "resolved": "https://registry.npmjs.org/component-inherit/-/component-inherit-0.0.3.tgz",
- "integrity": "sha1-ZF/ErfWLcrZJ1crmUTVhnbJv8UM="
+ "deep-is": {
+ "version": "0.1.3",
+ "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.3.tgz",
+ "integrity": "sha1-s2nW+128E+7PUk+RsHD+7cNXzzQ="
},
- "compressible": {
- "version": "2.0.18",
- "resolved": "https://registry.npmjs.org/compressible/-/compressible-2.0.18.tgz",
- "integrity": "sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==",
- "requires": {
- "mime-db": ">= 1.43.0 < 2"
- }
+ "deepmerge": {
+ "version": "4.2.2",
+ "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.2.2.tgz",
+ "integrity": "sha512-FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg=="
},
- "compression": {
- "version": "1.7.4",
- "resolved": "https://registry.npmjs.org/compression/-/compression-1.7.4.tgz",
- "integrity": "sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==",
+ "default-gateway": {
+ "version": "4.2.0",
+ "resolved": "https://registry.npmjs.org/default-gateway/-/default-gateway-4.2.0.tgz",
+ "integrity": "sha512-h6sMrVB1VMWVrW13mSc6ia/DwYYw5MN6+exNu1OaJeFac5aSAvwM7lZ0NVfTABuSkQelr4h5oebg3KB1XPdjgA==",
"requires": {
- "accepts": "~1.3.5",
- "bytes": "3.0.0",
- "compressible": "~2.0.16",
- "debug": "2.6.9",
- "on-headers": "~1.0.2",
- "safe-buffer": "5.1.2",
- "vary": "~1.1.2"
+ "execa": "^1.0.0",
+ "ip-regex": "^2.1.0"
},
"dependencies": {
- "bytes": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz",
- "integrity": "sha1-0ygVQE1olpn4Wk6k+odV3ROpYEg="
- },
- "debug": {
- "version": "2.6.9",
- "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
- "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
+ "execa": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/execa/-/execa-1.0.0.tgz",
+ "integrity": "sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==",
"requires": {
- "ms": "2.0.0"
+ "cross-spawn": "^6.0.0",
+ "get-stream": "^4.0.0",
+ "is-stream": "^1.1.0",
+ "npm-run-path": "^2.0.0",
+ "p-finally": "^1.0.0",
+ "signal-exit": "^3.0.0",
+ "strip-eof": "^1.0.0"
}
},
- "ms": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
- "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g="
+ "is-stream": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz",
+ "integrity": "sha1-EtSj3U5o4Lec6428hBc66A2RykQ="
+ },
+ "npm-run-path": {
+ "version": "2.0.2",
+ "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz",
+ "integrity": "sha1-NakjLfo11wZ7TLLd8jV7GHFTbF8=",
+ "requires": {
+ "path-key": "^2.0.0"
+ }
}
}
},
- "concat-map": {
- "version": "0.0.1",
- "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz",
- "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s="
+ "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=="
},
- "concat-stream": {
- "version": "1.6.2",
- "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.2.tgz",
- "integrity": "sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==",
+ "define-properties": {
+ "version": "1.1.3",
+ "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.1.3.tgz",
+ "integrity": "sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ==",
"requires": {
- "buffer-from": "^1.0.0",
- "inherits": "^2.0.3",
- "readable-stream": "^2.2.2",
- "typedarray": "^0.0.6"
+ "object-keys": "^1.0.12"
}
},
- "configstore": {
- "version": "5.0.1",
- "resolved": "https://registry.npmjs.org/configstore/-/configstore-5.0.1.tgz",
- "integrity": "sha512-aMKprgk5YhBNyH25hj8wGt2+D52Sw1DRRIzqBwLp2Ya9mFmY8KPvvtvmna8SxVR9JMZ4kzMD68N22vlaRpkeFA==",
+ "define-property": {
+ "version": "2.0.2",
+ "resolved": "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz",
+ "integrity": "sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==",
"requires": {
- "dot-prop": "^5.2.0",
- "graceful-fs": "^4.1.2",
- "make-dir": "^3.0.0",
- "unique-string": "^2.0.0",
- "write-file-atomic": "^3.0.0",
- "xdg-basedir": "^4.0.0"
+ "is-descriptor": "^1.0.2",
+ "isobject": "^3.0.1"
},
"dependencies": {
- "make-dir": {
- "version": "3.1.0",
- "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz",
- "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==",
+ "is-accessor-descriptor": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz",
+ "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==",
"requires": {
- "semver": "^6.0.0"
+ "kind-of": "^6.0.0"
}
},
- "semver": {
- "version": "6.3.0",
- "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz",
- "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw=="
+ "is-data-descriptor": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz",
+ "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==",
+ "requires": {
+ "kind-of": "^6.0.0"
+ }
+ },
+ "is-descriptor": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz",
+ "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==",
+ "requires": {
+ "is-accessor-descriptor": "^1.0.0",
+ "is-data-descriptor": "^1.0.0",
+ "kind-of": "^6.0.2"
+ }
}
}
},
- "confusing-browser-globals": {
- "version": "1.0.10",
- "resolved": "https://registry.npmjs.org/confusing-browser-globals/-/confusing-browser-globals-1.0.10.tgz",
- "integrity": "sha512-gNld/3lySHwuhaVluJUKLePYirM3QNCKzVxqAdhJII9/WXKVX5PURzMVJspS1jTslSqjeuG4KMVTSouit5YPHA=="
+ "del": {
+ "version": "5.1.0",
+ "resolved": "https://registry.npmjs.org/del/-/del-5.1.0.tgz",
+ "integrity": "sha512-wH9xOVHnczo9jN2IW68BabcecVPxacIA3g/7z6vhSU/4stOKQzeCRK0yD0A24WiAAUJmmVpWqrERcTxnLo3AnA==",
+ "requires": {
+ "globby": "^10.0.1",
+ "graceful-fs": "^4.2.2",
+ "is-glob": "^4.0.1",
+ "is-path-cwd": "^2.2.0",
+ "is-path-inside": "^3.0.1",
+ "p-map": "^3.0.0",
+ "rimraf": "^3.0.0",
+ "slash": "^3.0.0"
+ }
},
- "connect-history-api-fallback": {
- "version": "1.6.0",
- "resolved": "https://registry.npmjs.org/connect-history-api-fallback/-/connect-history-api-fallback-1.6.0.tgz",
- "integrity": "sha512-e54B99q/OUoH64zYYRf3HBP5z24G38h5D3qXu23JGRoigpX5Ss4r9ZnDk3g0Z8uQC2x2lPaJ+UlWBc1ZWBWdLg=="
+ "delayed-stream": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz",
+ "integrity": "sha1-3zrhmayt+31ECqrgsp4icrJOxhk="
},
- "console-browserify": {
- "version": "1.2.0",
- "resolved": "https://registry.npmjs.org/console-browserify/-/console-browserify-1.2.0.tgz",
- "integrity": "sha512-ZMkYO/LkF17QvCPqM0gxw8yUzigAOZOSWSHg91FH6orS7vcEj5dVZTidN2fQ14yBSdg97RqhSNwLUXInd52OTA=="
+ "depd": {
+ "version": "1.1.2",
+ "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz",
+ "integrity": "sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak="
},
- "constant-case": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/constant-case/-/constant-case-2.0.0.tgz",
- "integrity": "sha1-QXV2TTidP6nI7NKRhu1gBSQ7akY=",
+ "des.js": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/des.js/-/des.js-1.0.1.tgz",
+ "integrity": "sha512-Q0I4pfFrv2VPd34/vfLrFOoRmlYj3OV50i7fskps1jZWK1kApMWWT9G6RRUeYedLcBDIhnSDaUvJMb3AhUlaEA==",
"requires": {
- "snake-case": "^2.1.0",
- "upper-case": "^1.1.1"
+ "inherits": "^2.0.1",
+ "minimalistic-assert": "^1.0.0"
}
},
- "constants-browserify": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/constants-browserify/-/constants-browserify-1.0.0.tgz",
- "integrity": "sha1-wguW2MYXdIqvHBYCF2DNJ/y4y3U="
+ "destroy": {
+ "version": "1.0.4",
+ "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.0.4.tgz",
+ "integrity": "sha1-l4hXRCxEdJ5CBmE+N5RiBYJqvYA="
},
- "contains-path": {
- "version": "0.1.0",
- "resolved": "https://registry.npmjs.org/contains-path/-/contains-path-0.1.0.tgz",
- "integrity": "sha1-/ozxhP9mcLa67wGp1IYaXL7EEgo="
+ "detab": {
+ "version": "2.0.3",
+ "resolved": "https://registry.npmjs.org/detab/-/detab-2.0.3.tgz",
+ "integrity": "sha512-Up8P0clUVwq0FnFjDclzZsy9PadzRn5FFxrr47tQQvMHqyiFYVbpH8oXDzWtF0Q7pYy3l+RPmtBl+BsFF6wH0A==",
+ "requires": {
+ "repeat-string": "^1.5.4"
+ }
},
- "content-disposition": {
- "version": "0.5.3",
- "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.3.tgz",
- "integrity": "sha512-ExO0774ikEObIAEV9kDo50o+79VCUdEB6n6lzKgGwupcVeRlhrj3qGAfwq8G6uBJjkqLrhT0qEYFcWng8z1z0g==",
+ "detect-indent": {
+ "version": "6.0.0",
+ "resolved": "https://registry.npmjs.org/detect-indent/-/detect-indent-6.0.0.tgz",
+ "integrity": "sha512-oSyFlqaTHCItVRGK5RmrmjB+CmaMOW7IaNA/kdxqhoa6d17j/5ce9O9eWXmV/KEdRwqpQA+Vqe8a8Bsybu4YnA=="
+ },
+ "detect-newline": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/detect-newline/-/detect-newline-1.0.3.tgz",
+ "integrity": "sha1-6XsQA4d9cMCa8a81v63/Fo3kkg0=",
"requires": {
- "safe-buffer": "5.1.2"
+ "get-stdin": "^4.0.1",
+ "minimist": "^1.1.0"
}
},
- "content-type": {
- "version": "1.0.4",
- "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.4.tgz",
- "integrity": "sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA=="
+ "detect-node": {
+ "version": "2.0.4",
+ "resolved": "https://registry.npmjs.org/detect-node/-/detect-node-2.0.4.tgz",
+ "integrity": "sha512-ZIzRpLJrOj7jjP2miAtgqIfmzbxa4ZOr5jJc601zklsfEx9oTzmmj2nVpIPRpNlRTIh8lc1kyViIY7BWSGNmKw=="
},
- "contentful-management": {
- "version": "5.28.0",
- "resolved": "https://registry.npmjs.org/contentful-management/-/contentful-management-5.28.0.tgz",
- "integrity": "sha512-o+qihN3zrD6+/BT/e8n26jl/zQvmV6+9S6NY5QDmzM+IaiSeCk6yvPMq74s+IZT9mOS54igl6qFTbeIpdJ9FDA==",
+ "detect-port": {
+ "version": "1.3.0",
+ "resolved": "https://registry.npmjs.org/detect-port/-/detect-port-1.3.0.tgz",
+ "integrity": "sha512-E+B1gzkl2gqxt1IhUzwjrxBKRqx1UzC3WLONHinn8S3T6lwV/agVCyitiFOsGJ/eYuEUBvD71MZHy3Pv1G9doQ==",
"requires": {
- "axios": "^0.19.0",
- "contentful-sdk-core": "^6.4.0",
- "lodash": "^4.17.11",
- "type-fest": "0.15.1"
+ "address": "^1.0.1",
+ "debug": "^2.6.0"
},
"dependencies": {
- "axios": {
- "version": "0.19.2",
- "resolved": "https://registry.npmjs.org/axios/-/axios-0.19.2.tgz",
- "integrity": "sha512-fjgm5MvRHLhx+osE2xoekY70AhARk3a6hkN+3Io1jc00jtquGvxYlKlsFUhmUET0V5te6CcZI7lcv2Ym61mjHA==",
- "requires": {
- "follow-redirects": "1.5.10"
- }
- },
"debug": {
- "version": "3.1.0",
- "resolved": "https://registry.npmjs.org/debug/-/debug-3.1.0.tgz",
- "integrity": "sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==",
+ "version": "2.6.9",
+ "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
+ "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
"requires": {
"ms": "2.0.0"
}
},
- "follow-redirects": {
- "version": "1.5.10",
- "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.5.10.tgz",
- "integrity": "sha512-0V5l4Cizzvqt5D44aTXbFZz+FtyXV1vrDN6qrelxtfYQKW0KO0W2T/hkE8xvGa/540LkZlkaUjO4ailYTFtHVQ==",
- "requires": {
- "debug": "=3.1.0"
- }
- },
"ms": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
"integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g="
- },
- "type-fest": {
- "version": "0.15.1",
- "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.15.1.tgz",
- "integrity": "sha512-n+UXrN8i5ioo7kqT/nF8xsEzLaqFra7k32SEsSPwvXVGyAcRgV/FUQN/sgfptJTR1oRmmq7z4IXMFSM7im7C9A=="
}
}
},
- "contentful-sdk-core": {
- "version": "6.4.6",
- "resolved": "https://registry.npmjs.org/contentful-sdk-core/-/contentful-sdk-core-6.4.6.tgz",
- "integrity": "sha512-6KVLeCdn1akqjGvVMUgMxQ3B+zNIYeq3MUlqWsSLLJozr++0ZYWU76XmHf4n5MPTMoX9RGbRSR8hJAaKcUNDFw==",
- "requires": {
- "lodash": "^4.17.10",
- "qs": "^6.5.2"
- }
- },
- "convert-hrtime": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/convert-hrtime/-/convert-hrtime-3.0.0.tgz",
- "integrity": "sha512-7V+KqSvMiHp8yWDuwfww06XleMWVVB9b9tURBx+G7UTADuo5hYPuowKloz4OzOqbPezxgo+fdQ1522WzPG4OeA=="
- },
- "convert-source-map": {
- "version": "1.7.0",
- "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.7.0.tgz",
- "integrity": "sha512-4FJkXzKXEDB1snCFZlLP4gpC3JILicCpGbzG9f9G7tGqGCzETQ2hWPrcinA9oU4wtf2biUaEH5065UnMeR33oA==",
- "requires": {
- "safe-buffer": "~5.1.1"
- }
- },
- "cookie": {
- "version": "0.4.0",
- "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.4.0.tgz",
- "integrity": "sha512-+Hp8fLp57wnUSt0tY0tHEXh4voZRDnoIrZPqlo3DPiI4y9lwg/jqx+1Om94/W6ZaPDOUbnjOt/99w66zk+l1Xg=="
- },
- "cookie-signature": {
- "version": "1.0.6",
- "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz",
- "integrity": "sha1-4wOogrNCzD7oylE6eZmXNNqzriw="
- },
- "copy-concurrently": {
- "version": "1.0.5",
- "resolved": "https://registry.npmjs.org/copy-concurrently/-/copy-concurrently-1.0.5.tgz",
- "integrity": "sha512-f2domd9fsVDFtaFcbaRZuYXwtdmnzqbADSwhSWYxYB/Q8zsdUUFMXVRwXGDMWmbEzAn1kdRrtI1T/KTFOL4X2A==",
+ "devcert": {
+ "version": "1.1.3",
+ "resolved": "https://registry.npmjs.org/devcert/-/devcert-1.1.3.tgz",
+ "integrity": "sha512-7/nIzKdQ8y2K0imjIP7dyg2GJ2h38Ps6VOMXWZHIarNDV3p6mTXyEugKFnkmsZ2DD58JEG34ILyVb3qdOMmP9w==",
"requires": {
- "aproba": "^1.1.1",
- "fs-write-stream-atomic": "^1.0.8",
- "iferr": "^0.1.5",
+ "@types/configstore": "^2.1.1",
+ "@types/debug": "^0.0.30",
+ "@types/get-port": "^3.2.0",
+ "@types/glob": "^5.0.34",
+ "@types/lodash": "^4.14.92",
+ "@types/mkdirp": "^0.5.2",
+ "@types/node": "^8.5.7",
+ "@types/rimraf": "^2.0.2",
+ "@types/tmp": "^0.0.33",
+ "application-config-path": "^0.1.0",
+ "command-exists": "^1.2.4",
+ "debug": "^3.1.0",
+ "eol": "^0.9.1",
+ "get-port": "^3.2.0",
+ "glob": "^7.1.2",
+ "lodash": "^4.17.4",
"mkdirp": "^0.5.1",
- "rimraf": "^2.5.4",
- "run-queue": "^1.0.0"
+ "password-prompt": "^1.0.4",
+ "rimraf": "^2.6.2",
+ "sudo-prompt": "^8.2.0",
+ "tmp": "^0.0.33",
+ "tslib": "^1.10.0"
},
"dependencies": {
+ "@types/glob": {
+ "version": "5.0.36",
+ "resolved": "https://registry.npmjs.org/@types/glob/-/glob-5.0.36.tgz",
+ "integrity": "sha512-KEzSKuP2+3oOjYYjujue6Z3Yqis5HKA1BsIC+jZ1v3lrRNdsqyNNtX0rQf6LSuI4DJJ2z5UV//zBZCcvM0xikg==",
+ "requires": {
+ "@types/events": "*",
+ "@types/minimatch": "*",
+ "@types/node": "*"
+ }
+ },
+ "@types/node": {
+ "version": "8.10.66",
+ "resolved": "https://registry.npmjs.org/@types/node/-/node-8.10.66.tgz",
+ "integrity": "sha512-tktOkFUA4kXx2hhhrB8bIFb5TbwzS4uOhKEmwiD+NoiL0qtP2OQ9mFldbgD4dV1djrlBYP6eBuQZiWjuHUpqFw=="
+ },
"rimraf": {
"version": "2.7.1",
"resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz",
@@ -6554,684 +6674,621 @@
"requires": {
"glob": "^7.1.3"
}
+ },
+ "tmp": {
+ "version": "0.0.33",
+ "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.0.33.tgz",
+ "integrity": "sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==",
+ "requires": {
+ "os-tmpdir": "~1.0.2"
+ }
}
}
},
- "copy-descriptor": {
- "version": "0.1.1",
- "resolved": "https://registry.npmjs.org/copy-descriptor/-/copy-descriptor-0.1.1.tgz",
- "integrity": "sha1-Z29us8OZl8LuGsOpJP1hJHSPV40="
+ "diff": {
+ "version": "4.0.2",
+ "resolved": "https://registry.npmjs.org/diff/-/diff-4.0.2.tgz",
+ "integrity": "sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A=="
},
- "copyfiles": {
- "version": "2.4.0",
- "resolved": "https://registry.npmjs.org/copyfiles/-/copyfiles-2.4.0.tgz",
- "integrity": "sha512-yGjpR3yjQdxccW8EcJ4a7ZCA6wGER6/Q2Y+b7bXbVxGeSHBf93i9d7MzTsx+VV1CpMKQa3v4ThZfXBcltMzl0w==",
+ "diff-sequences": {
+ "version": "25.2.6",
+ "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-25.2.6.tgz",
+ "integrity": "sha512-Hq8o7+6GaZeoFjtpgvRBUknSXNeJiCx7V9Fr94ZMljNiCr9n9L8H8aJqgWOQiDDGdyn29fRNcDdRVJ5fdyihfg=="
+ },
+ "diffie-hellman": {
+ "version": "5.0.3",
+ "resolved": "https://registry.npmjs.org/diffie-hellman/-/diffie-hellman-5.0.3.tgz",
+ "integrity": "sha512-kqag/Nl+f3GwyK25fhUMYj81BUOrZ9IuJsjIcDE5icNM9FJHAVm3VcUDxdLPoQtTuUylWm6ZIknYJwwaPxsUzg==",
"requires": {
- "glob": "^7.0.5",
- "minimatch": "^3.0.3",
- "mkdirp": "^1.0.4",
- "noms": "0.0.0",
- "through2": "^2.0.1",
- "untildify": "^4.0.0",
- "yargs": "^15.3.1"
+ "bn.js": "^4.1.0",
+ "miller-rabin": "^4.0.0",
+ "randombytes": "^2.0.0"
},
"dependencies": {
- "mkdirp": {
- "version": "1.0.4",
- "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz",
- "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw=="
+ "bn.js": {
+ "version": "4.11.9",
+ "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.11.9.tgz",
+ "integrity": "sha512-E6QoYqCKZfgatHTdHzs1RRKP7ip4vvm+EyRUeE2RF0NblwVvb0p6jSVeNTOFxPn26QXN2o6SMfNxKp6kU8zQaw=="
}
}
},
- "core-js": {
- "version": "3.6.5",
- "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.6.5.tgz",
- "integrity": "sha512-vZVEEwZoIsI+vPEuoF9Iqf5H7/M3eeQqWlQnYa8FSKKePuYTf5MWnxb5SDAzCa60b3JBRS5g9b+Dq7b1y/RCrA=="
- },
- "core-js-compat": {
- "version": "3.6.5",
- "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.6.5.tgz",
- "integrity": "sha512-7ItTKOhOZbznhXAQ2g/slGg1PJV5zDO/WdkTwi7UEOJmkvsE32PWvx6mKtDjiMpjnR2CNf6BAD6sSxIlv7ptng==",
+ "dir-glob": {
+ "version": "3.0.1",
+ "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz",
+ "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==",
"requires": {
- "browserslist": "^4.8.5",
- "semver": "7.0.0"
- },
- "dependencies": {
- "semver": {
- "version": "7.0.0",
- "resolved": "https://registry.npmjs.org/semver/-/semver-7.0.0.tgz",
- "integrity": "sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A=="
- }
+ "path-type": "^4.0.0"
}
},
- "core-js-pure": {
- "version": "3.6.5",
- "resolved": "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.6.5.tgz",
- "integrity": "sha512-lacdXOimsiD0QyNf9BC/mxivNJ/ybBGJXQFKzRekp1WTHoVUWsUHEn+2T8GJAzzIhyOuXA+gOxCVN3l+5PLPUA=="
+ "dns-equal": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/dns-equal/-/dns-equal-1.0.0.tgz",
+ "integrity": "sha1-s55/HabrCnW6nBcySzR1PEfgZU0="
},
- "core-util-is": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz",
- "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac="
+ "dns-packet": {
+ "version": "1.3.1",
+ "resolved": "https://registry.npmjs.org/dns-packet/-/dns-packet-1.3.1.tgz",
+ "integrity": "sha512-0UxfQkMhYAUaZI+xrNZOz/as5KgDU0M/fQ9b6SpkyLbk3GEswDi6PADJVaYJradtRVsRIlF1zLyOodbcTCDzUg==",
+ "requires": {
+ "ip": "^1.1.0",
+ "safe-buffer": "^5.0.1"
+ }
},
- "cors": {
- "version": "2.8.5",
- "resolved": "https://registry.npmjs.org/cors/-/cors-2.8.5.tgz",
- "integrity": "sha512-KIHbLJqu73RGr/hnbrO9uBeixNGuvSQjul/jdFvS/KFSIH1hWVd1ng7zOHx+YrEfInLG7q4n6GHQ9cDtxv/P6g==",
+ "dns-txt": {
+ "version": "2.0.2",
+ "resolved": "https://registry.npmjs.org/dns-txt/-/dns-txt-2.0.2.tgz",
+ "integrity": "sha1-uR2Ab10nGI5Ks+fRB9iBocxGQrY=",
"requires": {
- "object-assign": "^4",
- "vary": "^1"
+ "buffer-indexof": "^1.0.0"
}
},
- "cosmiconfig": {
- "version": "6.0.0",
- "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-6.0.0.tgz",
- "integrity": "sha512-xb3ZL6+L8b9JLLCx3ZdoZy4+2ECphCMo2PwqgP1tlfVq6M6YReyzBJtvWWtbDSpNr9hn96pkCiZqUcFEc+54Qg==",
+ "doctrine": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz",
+ "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==",
"requires": {
- "@types/parse-json": "^4.0.0",
- "import-fresh": "^3.1.0",
- "parse-json": "^5.0.0",
- "path-type": "^4.0.0",
- "yaml": "^1.7.2"
+ "esutils": "^2.0.2"
}
},
- "create-ecdh": {
- "version": "4.0.4",
- "resolved": "https://registry.npmjs.org/create-ecdh/-/create-ecdh-4.0.4.tgz",
- "integrity": "sha512-mf+TCx8wWc9VpuxfP2ht0iSISLZnt0JgWlrOKZiNqyUZWnjIaCIVNQArMHnCZKfEYRg6IM7A+NeJoN8gf/Ws0A==",
+ "dom-converter": {
+ "version": "0.2.0",
+ "resolved": "https://registry.npmjs.org/dom-converter/-/dom-converter-0.2.0.tgz",
+ "integrity": "sha512-gd3ypIPfOMr9h5jIKq8E3sHOTCjeirnl0WK5ZdS1AW0Odt0b1PaWaHdJ4Qk4klv+YB9aJBS7mESXjFoDQPu6DA==",
"requires": {
- "bn.js": "^4.1.0",
- "elliptic": "^6.5.3"
+ "utila": "~0.4"
+ }
+ },
+ "dom-serializer": {
+ "version": "0.2.2",
+ "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-0.2.2.tgz",
+ "integrity": "sha512-2/xPb3ORsQ42nHYiSunXkDjPLBaEj/xTwUO4B7XCZQTRk7EBtTOPaygh10YAAh2OI1Qrp6NWfpAhzswj0ydt9g==",
+ "requires": {
+ "domelementtype": "^2.0.1",
+ "entities": "^2.0.0"
},
"dependencies": {
- "bn.js": {
- "version": "4.11.9",
- "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.11.9.tgz",
- "integrity": "sha512-E6QoYqCKZfgatHTdHzs1RRKP7ip4vvm+EyRUeE2RF0NblwVvb0p6jSVeNTOFxPn26QXN2o6SMfNxKp6kU8zQaw=="
+ "domelementtype": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.0.1.tgz",
+ "integrity": "sha512-5HOHUDsYZWV8FGWN0Njbr/Rn7f/eWSQi1v7+HsUVwXgn8nWWlL64zKDkS0n8ZmQ3mlWOMuXOnR+7Nx/5tMO5AQ=="
}
}
},
- "create-hash": {
+ "dom-walk": {
+ "version": "0.1.2",
+ "resolved": "https://registry.npmjs.org/dom-walk/-/dom-walk-0.1.2.tgz",
+ "integrity": "sha512-6QvTW9mrGeIegrFXdtQi9pk7O/nSK6lSdXW2eqUspN5LWD7UTji2Fqw5V2YLjBpHEoU9Xl/eUWNpDeZvoyOv2w=="
+ },
+ "domain-browser": {
"version": "1.2.0",
- "resolved": "https://registry.npmjs.org/create-hash/-/create-hash-1.2.0.tgz",
- "integrity": "sha512-z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg==",
- "requires": {
- "cipher-base": "^1.0.1",
- "inherits": "^2.0.1",
- "md5.js": "^1.3.4",
- "ripemd160": "^2.0.1",
- "sha.js": "^2.4.0"
- }
+ "resolved": "https://registry.npmjs.org/domain-browser/-/domain-browser-1.2.0.tgz",
+ "integrity": "sha512-jnjyiM6eRyZl2H+W8Q/zLMA481hzi0eszAaBUzIVnmYVDBbnLxVNnfu1HgEBvCbL+71FrxMl3E6lpKH7Ge3OXA=="
},
- "create-hmac": {
- "version": "1.1.7",
- "resolved": "https://registry.npmjs.org/create-hmac/-/create-hmac-1.1.7.tgz",
- "integrity": "sha512-MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg==",
- "requires": {
- "cipher-base": "^1.0.3",
- "create-hash": "^1.1.0",
- "inherits": "^2.0.1",
- "ripemd160": "^2.0.0",
- "safe-buffer": "^5.0.1",
- "sha.js": "^2.4.8"
- }
+ "domelementtype": {
+ "version": "1.3.1",
+ "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-1.3.1.tgz",
+ "integrity": "sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w=="
},
- "create-react-context": {
- "version": "0.3.0",
- "resolved": "https://registry.npmjs.org/create-react-context/-/create-react-context-0.3.0.tgz",
- "integrity": "sha512-dNldIoSuNSvlTJ7slIKC/ZFGKexBMBrrcc+TTe1NdmROnaASuLPvqpwj9v4XS4uXZ8+YPu0sNmShX2rXI5LNsw==",
+ "domhandler": {
+ "version": "2.4.2",
+ "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-2.4.2.tgz",
+ "integrity": "sha512-JiK04h0Ht5u/80fdLMCEmV4zkNh2BcoMFBmZ/91WtYZ8qVXSKjiw7fXMgFPnHcSZgOo3XdinHvmnDUeMf5R4wA==",
"requires": {
- "gud": "^1.0.0",
- "warning": "^4.0.3"
+ "domelementtype": "1"
}
},
- "cross-fetch": {
- "version": "3.0.6",
- "resolved": "https://registry.npmjs.org/cross-fetch/-/cross-fetch-3.0.6.tgz",
- "integrity": "sha512-KBPUbqgFjzWlVcURG+Svp9TlhA5uliYtiNx/0r8nv0pdypeQCRJ9IaSIc3q/x3q8t3F75cHuwxVql1HFGHCNJQ==",
+ "domutils": {
+ "version": "1.5.1",
+ "resolved": "https://registry.npmjs.org/domutils/-/domutils-1.5.1.tgz",
+ "integrity": "sha1-3NhIiib1Y9YQeeSMn3t+Mjc2gs8=",
"requires": {
- "node-fetch": "2.6.1"
+ "dom-serializer": "0",
+ "domelementtype": "1"
}
},
- "cross-spawn": {
- "version": "6.0.5",
- "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz",
- "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==",
+ "dot-case": {
+ "version": "2.1.1",
+ "resolved": "https://registry.npmjs.org/dot-case/-/dot-case-2.1.1.tgz",
+ "integrity": "sha1-NNzzf1Co6TwrO8qLt/uRVcfaO+4=",
"requires": {
- "nice-try": "^1.0.4",
- "path-key": "^2.0.1",
- "semver": "^5.5.0",
- "shebang-command": "^1.2.0",
- "which": "^1.2.9"
+ "no-case": "^2.2.0"
+ },
+ "dependencies": {
+ "lower-case": {
+ "version": "1.1.4",
+ "resolved": "https://registry.npmjs.org/lower-case/-/lower-case-1.1.4.tgz",
+ "integrity": "sha1-miyr0bno4K6ZOkv31YdcOcQujqw="
+ },
+ "no-case": {
+ "version": "2.3.2",
+ "resolved": "https://registry.npmjs.org/no-case/-/no-case-2.3.2.tgz",
+ "integrity": "sha512-rmTZ9kz+f3rCvK2TD1Ue/oZlns7OGoIWP4fc3llxxRXlOkHKoWPPWJOfFYpITabSow43QJbRIoHQXtt10VldyQ==",
+ "requires": {
+ "lower-case": "^1.1.1"
+ }
+ }
}
},
- "crypto-browserify": {
- "version": "3.12.0",
- "resolved": "https://registry.npmjs.org/crypto-browserify/-/crypto-browserify-3.12.0.tgz",
- "integrity": "sha512-fz4spIh+znjO2VjL+IdhEpRJ3YN6sMzITSBijk6FK2UvTqruSQW+/cCZTSNsMiZNvUeq0CqurF+dAbyiGOY6Wg==",
+ "dot-prop": {
+ "version": "5.2.0",
+ "resolved": "https://registry.npmjs.org/dot-prop/-/dot-prop-5.2.0.tgz",
+ "integrity": "sha512-uEUyaDKoSQ1M4Oq8l45hSE26SnTxL6snNnqvK/VWx5wJhmff5z0FUVJDKDanor/6w3kzE3i7XZOk+7wC0EXr1A==",
"requires": {
- "browserify-cipher": "^1.0.0",
- "browserify-sign": "^4.0.0",
- "create-ecdh": "^4.0.0",
- "create-hash": "^1.1.0",
- "create-hmac": "^1.1.0",
- "diffie-hellman": "^5.0.0",
- "inherits": "^2.0.1",
- "pbkdf2": "^3.0.3",
- "public-encrypt": "^4.0.0",
- "randombytes": "^2.0.0",
- "randomfill": "^1.0.3"
+ "is-obj": "^2.0.0"
}
},
- "crypto-random-string": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/crypto-random-string/-/crypto-random-string-2.0.0.tgz",
- "integrity": "sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA=="
+ "dotenv": {
+ "version": "8.2.0",
+ "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-8.2.0.tgz",
+ "integrity": "sha512-8sJ78ElpbDJBHNeBzUbUVLsqKdccaa/BXF1uPTw3GrvQTBgrQrtObr2mUrE38vzYd8cEv+m/JBfDLioYcfXoaw=="
},
- "css-color-names": {
- "version": "0.0.4",
- "resolved": "https://registry.npmjs.org/css-color-names/-/css-color-names-0.0.4.tgz",
- "integrity": "sha1-gIrcLnnPhHOAabZGyyDsJ762KeA="
+ "duplexer": {
+ "version": "0.1.2",
+ "resolved": "https://registry.npmjs.org/duplexer/-/duplexer-0.1.2.tgz",
+ "integrity": "sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg=="
},
- "css-declaration-sorter": {
- "version": "4.0.1",
- "resolved": "https://registry.npmjs.org/css-declaration-sorter/-/css-declaration-sorter-4.0.1.tgz",
- "integrity": "sha512-BcxQSKTSEEQUftYpBVnsH4SF05NTuBokb19/sBt6asXGKZ/6VP7PLG1CBCkFDYOnhXhPh0jMhO6xZ71oYHXHBA==",
+ "duplexer3": {
+ "version": "0.1.4",
+ "resolved": "https://registry.npmjs.org/duplexer3/-/duplexer3-0.1.4.tgz",
+ "integrity": "sha1-7gHdHKwO08vH/b6jfcCo8c4ALOI="
+ },
+ "duplexify": {
+ "version": "3.7.1",
+ "resolved": "https://registry.npmjs.org/duplexify/-/duplexify-3.7.1.tgz",
+ "integrity": "sha512-07z8uv2wMyS51kKhD1KsdXJg5WQ6t93RneqRxUHnskXVtlYYkLqM0gqStQZ3pj073g687jPCHrqNfCzawLYh5g==",
"requires": {
- "postcss": "^7.0.1",
- "timsort": "^0.3.0"
+ "end-of-stream": "^1.0.0",
+ "inherits": "^2.0.1",
+ "readable-stream": "^2.0.0",
+ "stream-shift": "^1.0.0"
}
},
- "css-loader": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/css-loader/-/css-loader-1.0.1.tgz",
- "integrity": "sha512-+ZHAZm/yqvJ2kDtPne3uX0C+Vr3Zn5jFn2N4HywtS5ujwvsVkyg0VArEXpl3BgczDA8anieki1FIzhchX4yrDw==",
+ "ee-first": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz",
+ "integrity": "sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0="
+ },
+ "electron-to-chromium": {
+ "version": "1.3.517",
+ "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.517.tgz",
+ "integrity": "sha512-8wucrMsmXxeBxaM3TPg+YiwIJwPd1IZMudOj1XytmkP3UPXRagMhO9vo4nzzbSWeq91N1zhfUhJW2u9/MVhPxw=="
+ },
+ "elliptic": {
+ "version": "6.5.3",
+ "resolved": "https://registry.npmjs.org/elliptic/-/elliptic-6.5.3.tgz",
+ "integrity": "sha512-IMqzv5wNQf+E6aHeIqATs0tOLeOTwj1QKbRcS3jBbYkl5oLAserA8yJTT7/VyHUYG91PRmPyeQDObKLPpeS4dw==",
"requires": {
- "babel-code-frame": "^6.26.0",
- "css-selector-tokenizer": "^0.7.0",
- "icss-utils": "^2.1.0",
- "loader-utils": "^1.0.2",
- "lodash": "^4.17.11",
- "postcss": "^6.0.23",
- "postcss-modules-extract-imports": "^1.2.0",
- "postcss-modules-local-by-default": "^1.2.0",
- "postcss-modules-scope": "^1.1.0",
- "postcss-modules-values": "^1.3.0",
- "postcss-value-parser": "^3.3.0",
- "source-list-map": "^2.0.0"
+ "bn.js": "^4.4.0",
+ "brorand": "^1.0.1",
+ "hash.js": "^1.0.0",
+ "hmac-drbg": "^1.0.0",
+ "inherits": "^2.0.1",
+ "minimalistic-assert": "^1.0.0",
+ "minimalistic-crypto-utils": "^1.0.0"
},
"dependencies": {
- "postcss": {
- "version": "6.0.23",
- "resolved": "https://registry.npmjs.org/postcss/-/postcss-6.0.23.tgz",
- "integrity": "sha512-soOk1h6J3VMTZtVeVpv15/Hpdl2cBLX3CAw4TAbkpTJiNPk9YP/zWcD1ND+xEtvyuuvKzbxliTOIyvkSeSJ6ag==",
- "requires": {
- "chalk": "^2.4.1",
- "source-map": "^0.6.1",
- "supports-color": "^5.4.0"
- }
- },
- "postcss-value-parser": {
- "version": "3.3.1",
- "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz",
- "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ=="
- },
- "source-map": {
- "version": "0.6.1",
- "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
- "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g=="
+ "bn.js": {
+ "version": "4.11.9",
+ "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.11.9.tgz",
+ "integrity": "sha512-E6QoYqCKZfgatHTdHzs1RRKP7ip4vvm+EyRUeE2RF0NblwVvb0p6jSVeNTOFxPn26QXN2o6SMfNxKp6kU8zQaw=="
}
}
},
- "css-select": {
- "version": "1.2.0",
- "resolved": "https://registry.npmjs.org/css-select/-/css-select-1.2.0.tgz",
- "integrity": "sha1-KzoRBTnFNV8c2NMUYj6HCxIeyFg=",
- "requires": {
- "boolbase": "~1.0.0",
- "css-what": "2.1",
- "domutils": "1.5.1",
- "nth-check": "~1.0.1"
- }
+ "emoji-regex": {
+ "version": "8.0.0",
+ "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz",
+ "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A=="
},
- "css-select-base-adapter": {
- "version": "0.1.1",
- "resolved": "https://registry.npmjs.org/css-select-base-adapter/-/css-select-base-adapter-0.1.1.tgz",
- "integrity": "sha512-jQVeeRG70QI08vSTwf1jHxp74JoZsr2XSgETae8/xC8ovSnL2WF87GTLO86Sbwdt2lK4Umg4HnnwMO4YF3Ce7w=="
+ "emojis-list": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz",
+ "integrity": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q=="
},
- "css-selector-tokenizer": {
- "version": "0.7.3",
- "resolved": "https://registry.npmjs.org/css-selector-tokenizer/-/css-selector-tokenizer-0.7.3.tgz",
- "integrity": "sha512-jWQv3oCEL5kMErj4wRnK/OPoBi0D+P1FR2cDCKYPaMeD2eW3/mttav8HT4hT1CKopiJI/psEULjkClhvJo4Lvg==",
+ "encodeurl": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz",
+ "integrity": "sha1-rT/0yG7C0CkyL1oCw6mmBslbP1k="
+ },
+ "end-of-stream": {
+ "version": "1.4.4",
+ "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz",
+ "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==",
"requires": {
- "cssesc": "^3.0.0",
- "fastparse": "^1.1.2"
+ "once": "^1.4.0"
}
},
- "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==",
+ "engine.io": {
+ "version": "3.4.2",
+ "resolved": "https://registry.npmjs.org/engine.io/-/engine.io-3.4.2.tgz",
+ "integrity": "sha512-b4Q85dFkGw+TqgytGPrGgACRUhsdKc9S9ErRAXpPGy/CXKs4tYoHDkvIRdsseAF7NjfVwjRFIn6KTnbw7LwJZg==",
"requires": {
- "mdn-data": "2.0.4",
- "source-map": "^0.6.1"
+ "accepts": "~1.3.4",
+ "base64id": "2.0.0",
+ "cookie": "0.3.1",
+ "debug": "~4.1.0",
+ "engine.io-parser": "~2.2.0",
+ "ws": "^7.1.2"
},
"dependencies": {
- "source-map": {
- "version": "0.6.1",
- "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
- "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g=="
+ "cookie": {
+ "version": "0.3.1",
+ "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.3.1.tgz",
+ "integrity": "sha1-5+Ch+e9DtMi6klxcWpboBtFoc7s="
+ },
+ "debug": {
+ "version": "4.1.1",
+ "resolved": "https://registry.npmjs.org/debug/-/debug-4.1.1.tgz",
+ "integrity": "sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw==",
+ "requires": {
+ "ms": "^2.1.1"
+ }
+ },
+ "ws": {
+ "version": "7.3.1",
+ "resolved": "https://registry.npmjs.org/ws/-/ws-7.3.1.tgz",
+ "integrity": "sha512-D3RuNkynyHmEJIpD2qrgVkc9DQ23OrN/moAwZX4L8DfvszsJxpjQuUq3LMx6HoYji9fbIOBY18XWBsAux1ZZUA=="
}
}
},
- "css-what": {
- "version": "2.1.3",
- "resolved": "https://registry.npmjs.org/css-what/-/css-what-2.1.3.tgz",
- "integrity": "sha512-a+EPoD+uZiNfh+5fxw2nO9QwFa6nJe2Or35fGY6Ipw1R3R4AGz1d1TEZrCegvw2YTmZ0jXirGYlzxxpYSHwpEg=="
- },
- "cssesc": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz",
- "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg=="
- },
- "cssfilter": {
- "version": "0.0.10",
- "resolved": "https://registry.npmjs.org/cssfilter/-/cssfilter-0.0.10.tgz",
- "integrity": "sha1-xtJnJjKi5cg+AT5oZKQs6N79IK4="
- },
- "cssnano": {
- "version": "4.1.10",
- "resolved": "https://registry.npmjs.org/cssnano/-/cssnano-4.1.10.tgz",
- "integrity": "sha512-5wny+F6H4/8RgNlaqab4ktc3e0/blKutmq8yNlBFXA//nSFFAqAngjNVRzUvCgYROULmZZUoosL/KSoZo5aUaQ==",
+ "engine.io-client": {
+ "version": "3.4.4",
+ "resolved": "https://registry.npmjs.org/engine.io-client/-/engine.io-client-3.4.4.tgz",
+ "integrity": "sha512-iU4CRr38Fecj8HoZEnFtm2EiKGbYZcPn3cHxqNGl/tmdWRf60KhK+9vE0JeSjgnlS/0oynEfLgKbT9ALpim0sQ==",
"requires": {
- "cosmiconfig": "^5.0.0",
- "cssnano-preset-default": "^4.0.7",
- "is-resolvable": "^1.0.0",
- "postcss": "^7.0.0"
+ "component-emitter": "~1.3.0",
+ "component-inherit": "0.0.3",
+ "debug": "~3.1.0",
+ "engine.io-parser": "~2.2.0",
+ "has-cors": "1.1.0",
+ "indexof": "0.0.1",
+ "parseqs": "0.0.6",
+ "parseuri": "0.0.6",
+ "ws": "~6.1.0",
+ "xmlhttprequest-ssl": "~1.5.4",
+ "yeast": "0.1.2"
},
"dependencies": {
- "cosmiconfig": {
- "version": "5.2.1",
- "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-5.2.1.tgz",
- "integrity": "sha512-H65gsXo1SKjf8zmrJ67eJk8aIRKV5ff2D4uKZIBZShbhGSpEmsQOPW/SKMKYhSTrqR7ufy6RP69rPogdaPh/kA==",
+ "debug": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/debug/-/debug-3.1.0.tgz",
+ "integrity": "sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==",
"requires": {
- "import-fresh": "^2.0.0",
- "is-directory": "^0.3.1",
- "js-yaml": "^3.13.1",
- "parse-json": "^4.0.0"
+ "ms": "2.0.0"
}
},
- "import-fresh": {
+ "ms": {
"version": "2.0.0",
- "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-2.0.0.tgz",
- "integrity": "sha1-2BNVwVYS04bGH53dOSLUMEgipUY=",
- "requires": {
- "caller-path": "^2.0.0",
- "resolve-from": "^3.0.0"
- }
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
+ "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g="
},
- "parse-json": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz",
- "integrity": "sha1-vjX1Qlvh9/bHRxhPmKeIy5lHfuA=",
+ "parseqs": {
+ "version": "0.0.6",
+ "resolved": "https://registry.npmjs.org/parseqs/-/parseqs-0.0.6.tgz",
+ "integrity": "sha512-jeAGzMDbfSHHA091hr0r31eYfTig+29g3GKKE/PPbEQ65X0lmMwlEoqmhzu0iztID5uJpZsFlUPDP8ThPL7M8w=="
+ },
+ "parseuri": {
+ "version": "0.0.6",
+ "resolved": "https://registry.npmjs.org/parseuri/-/parseuri-0.0.6.tgz",
+ "integrity": "sha512-AUjen8sAkGgao7UyCX6Ahv0gIK2fABKmYjvP4xmy5JaKvcbTRueIqIPHLAfq30xJddqSE033IOMUSOMCcK3Sow=="
+ },
+ "ws": {
+ "version": "6.1.4",
+ "resolved": "https://registry.npmjs.org/ws/-/ws-6.1.4.tgz",
+ "integrity": "sha512-eqZfL+NE/YQc1/ZynhojeV8q+H050oR8AZ2uIev7RU10svA9ZnJUddHcOUZTJLinZ9yEfdA2kSATS2qZK5fhJA==",
"requires": {
- "error-ex": "^1.3.1",
- "json-parse-better-errors": "^1.0.1"
+ "async-limiter": "~1.0.0"
}
- },
- "resolve-from": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-3.0.0.tgz",
- "integrity": "sha1-six699nWiBvItuZTM17rywoYh0g="
}
}
},
- "cssnano-preset-default": {
- "version": "4.0.7",
- "resolved": "https://registry.npmjs.org/cssnano-preset-default/-/cssnano-preset-default-4.0.7.tgz",
- "integrity": "sha512-x0YHHx2h6p0fCl1zY9L9roD7rnlltugGu7zXSKQx6k2rYw0Hi3IqxcoAGF7u9Q5w1nt7vK0ulxV8Lo+EvllGsA==",
+ "engine.io-parser": {
+ "version": "2.2.1",
+ "resolved": "https://registry.npmjs.org/engine.io-parser/-/engine.io-parser-2.2.1.tgz",
+ "integrity": "sha512-x+dN/fBH8Ro8TFwJ+rkB2AmuVw9Yu2mockR/p3W8f8YtExwFgDvBDi0GWyb4ZLkpahtDGZgtr3zLovanJghPqg==",
"requires": {
- "css-declaration-sorter": "^4.0.1",
- "cssnano-util-raw-cache": "^4.0.1",
- "postcss": "^7.0.0",
- "postcss-calc": "^7.0.1",
- "postcss-colormin": "^4.0.3",
- "postcss-convert-values": "^4.0.1",
- "postcss-discard-comments": "^4.0.2",
- "postcss-discard-duplicates": "^4.0.2",
- "postcss-discard-empty": "^4.0.1",
- "postcss-discard-overridden": "^4.0.1",
- "postcss-merge-longhand": "^4.0.11",
- "postcss-merge-rules": "^4.0.3",
- "postcss-minify-font-values": "^4.0.2",
- "postcss-minify-gradients": "^4.0.2",
- "postcss-minify-params": "^4.0.2",
- "postcss-minify-selectors": "^4.0.2",
- "postcss-normalize-charset": "^4.0.1",
- "postcss-normalize-display-values": "^4.0.2",
- "postcss-normalize-positions": "^4.0.2",
- "postcss-normalize-repeat-style": "^4.0.2",
- "postcss-normalize-string": "^4.0.2",
- "postcss-normalize-timing-functions": "^4.0.2",
- "postcss-normalize-unicode": "^4.0.1",
- "postcss-normalize-url": "^4.0.1",
- "postcss-normalize-whitespace": "^4.0.2",
- "postcss-ordered-values": "^4.1.2",
- "postcss-reduce-initial": "^4.0.3",
- "postcss-reduce-transforms": "^4.0.2",
- "postcss-svgo": "^4.0.2",
- "postcss-unique-selectors": "^4.0.1"
+ "after": "0.8.2",
+ "arraybuffer.slice": "~0.0.7",
+ "base64-arraybuffer": "0.1.4",
+ "blob": "0.0.5",
+ "has-binary2": "~1.0.2"
}
},
- "cssnano-util-get-arguments": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/cssnano-util-get-arguments/-/cssnano-util-get-arguments-4.0.0.tgz",
- "integrity": "sha1-7ToIKZ8h11dBsg87gfGU7UnMFQ8="
- },
- "cssnano-util-get-match": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/cssnano-util-get-match/-/cssnano-util-get-match-4.0.0.tgz",
- "integrity": "sha1-wOTKB/U4a7F+xeUiULT1lhNlFW0="
- },
- "cssnano-util-raw-cache": {
- "version": "4.0.1",
- "resolved": "https://registry.npmjs.org/cssnano-util-raw-cache/-/cssnano-util-raw-cache-4.0.1.tgz",
- "integrity": "sha512-qLuYtWK2b2Dy55I8ZX3ky1Z16WYsx544Q0UWViebptpwn/xDBmog2TLg4f+DBMg1rJ6JDWtn96WHbOKDWt1WQA==",
- "requires": {
- "postcss": "^7.0.0"
- }
- },
- "cssnano-util-same-parent": {
- "version": "4.0.1",
- "resolved": "https://registry.npmjs.org/cssnano-util-same-parent/-/cssnano-util-same-parent-4.0.1.tgz",
- "integrity": "sha512-WcKx5OY+KoSIAxBW6UBBRay1U6vkYheCdjyVNDm85zt5K9mHoGOfsOsqIszfAqrQQFIIKgjh2+FDgIj/zsl21Q=="
- },
- "csso": {
- "version": "4.1.0",
- "resolved": "https://registry.npmjs.org/csso/-/csso-4.1.0.tgz",
- "integrity": "sha512-h+6w/W1WqXaJA4tb1dk7r5tVbOm97MsKxzwnvOR04UQ6GILroryjMWu3pmCCtL2mLaEStQ0fZgeGiy99mo7iyg==",
+ "enhanced-resolve": {
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-4.3.0.tgz",
+ "integrity": "sha512-3e87LvavsdxyoCfGusJnrZ5G8SLPOFeHSNpZI/ATL9a5leXo2k0w6MKnbqhdBad9qTobSfB20Ld7UmgoNbAZkQ==",
"requires": {
- "css-tree": "^1.0.0"
+ "graceful-fs": "^4.1.2",
+ "memory-fs": "^0.5.0",
+ "tapable": "^1.0.0"
},
"dependencies": {
- "css-tree": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-1.0.0.tgz",
- "integrity": "sha512-CdVYz/Yuqw0VdKhXPBIgi8DO3NicJVYZNWeX9XcIuSp9ZoFT5IcleVRW07O5rMjdcx1mb+MEJPknTTEW7DdsYw==",
+ "memory-fs": {
+ "version": "0.5.0",
+ "resolved": "https://registry.npmjs.org/memory-fs/-/memory-fs-0.5.0.tgz",
+ "integrity": "sha512-jA0rdU5KoQMC0e6ppoNRtpp6vjFq6+NY7r8hywnC7V+1Xj/MtHwGIbB1QaK/dunyjWteJzmkpd7ooeWg10T7GA==",
"requires": {
- "mdn-data": "2.0.12",
- "source-map": "^0.6.1"
+ "errno": "^0.1.3",
+ "readable-stream": "^2.0.1"
}
- },
- "mdn-data": {
- "version": "2.0.12",
- "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.12.tgz",
- "integrity": "sha512-ULbAlgzVb8IqZ0Hsxm6hHSlQl3Jckst2YEQS7fODu9ilNWy2LvcoSY7TRFIktABP2mdppBioc66va90T+NUs8Q=="
- },
- "source-map": {
- "version": "0.6.1",
- "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
- "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g=="
}
}
},
- "csstype": {
- "version": "2.6.13",
- "resolved": "https://registry.npmjs.org/csstype/-/csstype-2.6.13.tgz",
- "integrity": "sha512-ul26pfSQTZW8dcOnD2iiJssfXw0gdNVX9IJDH/X3K5DGPfj+fUYe3kB+swUY6BF3oZDxaID3AJt+9/ojSAE05A=="
+ "entities": {
+ "version": "2.0.3",
+ "resolved": "https://registry.npmjs.org/entities/-/entities-2.0.3.tgz",
+ "integrity": "sha512-MyoZ0jgnLvB2X3Lg5HqpFmn1kybDiIfEQmKzTb5apr51Rb+T3KdmMiqa70T+bhGnyv7bQ6WMj2QMHpGMmlrUYQ=="
},
- "currently-unhandled": {
- "version": "0.4.1",
- "resolved": "https://registry.npmjs.org/currently-unhandled/-/currently-unhandled-0.4.1.tgz",
- "integrity": "sha1-mI3zP+qxke95mmE2nddsF635V+o=",
- "requires": {
- "array-find-index": "^1.0.1"
- }
+ "envinfo": {
+ "version": "7.7.3",
+ "resolved": "https://registry.npmjs.org/envinfo/-/envinfo-7.7.3.tgz",
+ "integrity": "sha512-46+j5QxbPWza0PB1i15nZx0xQ4I/EfQxg9J8Had3b408SV63nEtor2e+oiY63amTo9KTuh2a3XLObNwduxYwwA=="
},
- "cyclist": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/cyclist/-/cyclist-1.0.1.tgz",
- "integrity": "sha1-WW6WmP0MgOEgOMK4LW6xs1tiJNk="
+ "eol": {
+ "version": "0.9.1",
+ "resolved": "https://registry.npmjs.org/eol/-/eol-0.9.1.tgz",
+ "integrity": "sha512-Ds/TEoZjwggRoz/Q2O7SE3i4Jm66mqTDfmdHdq/7DKVk3bro9Q8h6WdXKdPqFLMoqxrDK5SVRzHVPOS6uuGtrg=="
},
- "d": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/d/-/d-1.0.1.tgz",
- "integrity": "sha512-m62ShEObQ39CfralilEQRjH6oAMtNCV1xJyEx5LpRYUVN+EviphDgUc/F3hnYbADmkiNs67Y+3ylmlG7Lnu+FA==",
+ "errno": {
+ "version": "0.1.7",
+ "resolved": "https://registry.npmjs.org/errno/-/errno-0.1.7.tgz",
+ "integrity": "sha512-MfrRBDWzIWifgq6tJj60gkAwtLNb6sQPlcFrSOflcP1aFmmruKQ2wRnze/8V6kgyz7H3FF8Npzv78mZ7XLLflg==",
"requires": {
- "es5-ext": "^0.10.50",
- "type": "^1.0.1"
+ "prr": "~1.0.1"
}
},
- "damerau-levenshtein": {
- "version": "1.0.6",
- "resolved": "https://registry.npmjs.org/damerau-levenshtein/-/damerau-levenshtein-1.0.6.tgz",
- "integrity": "sha512-JVrozIeElnj3QzfUIt8tB8YMluBJom4Vw9qTPpjGYQ9fYlB3D/rb6OordUxf3xeFB35LKWs0xqcO5U6ySvBtug=="
- },
- "dataloader": {
- "version": "1.4.0",
- "resolved": "https://registry.npmjs.org/dataloader/-/dataloader-1.4.0.tgz",
- "integrity": "sha512-68s5jYdlvasItOJnCuI2Q9s4q98g0pCyL3HrcKJu8KNugUl8ahgmZYg38ysLTgQjjXX3H8CJLkAvWrclWfcalw=="
- },
- "date-fns": {
- "version": "2.16.1",
- "resolved": "https://registry.npmjs.org/date-fns/-/date-fns-2.16.1.tgz",
- "integrity": "sha512-sAJVKx/FqrLYHAQeN7VpJrPhagZc9R4ImZIWYRFZaaohR3KzmuK88touwsSwSVT8Qcbd4zoDsnGfX4GFB4imyQ=="
- },
- "debug": {
- "version": "3.2.6",
- "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.6.tgz",
- "integrity": "sha512-mel+jf7nrtEl5Pn1Qx46zARXKDpBbvzezse7p7LqINmdoIk8PYP5SySaxEmYv6TZ0JyEKA1hsCId6DIhgITtWQ==",
+ "error-ex": {
+ "version": "1.3.2",
+ "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz",
+ "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==",
"requires": {
- "ms": "^2.1.1"
+ "is-arrayish": "^0.2.1"
}
},
- "decamelize": {
- "version": "1.2.0",
- "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz",
- "integrity": "sha1-9lNNFRSCabIDUue+4m9QH5oZEpA="
- },
- "decode-uri-component": {
- "version": "0.2.0",
- "resolved": "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.0.tgz",
- "integrity": "sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU="
- },
- "decompress-response": {
- "version": "3.3.0",
- "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-3.3.0.tgz",
- "integrity": "sha1-gKTdMjdIOEv6JICDYirt7Jgq3/M=",
+ "error-stack-parser": {
+ "version": "2.0.6",
+ "resolved": "https://registry.npmjs.org/error-stack-parser/-/error-stack-parser-2.0.6.tgz",
+ "integrity": "sha512-d51brTeqC+BHlwF0BhPtcYgF5nlzf9ZZ0ZIUQNZpc9ZB9qw5IJ2diTrBY9jlCJkTLITYPjmiX6OWCwH+fuyNgQ==",
"requires": {
- "mimic-response": "^1.0.0"
+ "stackframe": "^1.1.1"
}
},
- "deep-equal": {
- "version": "1.1.1",
- "resolved": "https://registry.npmjs.org/deep-equal/-/deep-equal-1.1.1.tgz",
- "integrity": "sha512-yd9c5AdiqVcR+JjcwUQb9DkhJc8ngNr0MahEBGvDiJw8puWab2yZlh+nkasOnZP+EGTAP6rRp2JzJhJZzvNF8g==",
+ "es-abstract": {
+ "version": "1.17.7",
+ "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.17.7.tgz",
+ "integrity": "sha512-VBl/gnfcJ7OercKA9MVaegWsBHFjV492syMudcnQZvt/Dw8ezpcOHYZXa/J96O8vx+g4x65YKhxOwDUh63aS5g==",
"requires": {
- "is-arguments": "^1.0.4",
- "is-date-object": "^1.0.1",
- "is-regex": "^1.0.4",
- "object-is": "^1.0.1",
+ "es-to-primitive": "^1.2.1",
+ "function-bind": "^1.1.1",
+ "has": "^1.0.3",
+ "has-symbols": "^1.0.1",
+ "is-callable": "^1.2.2",
+ "is-regex": "^1.1.1",
+ "object-inspect": "^1.8.0",
"object-keys": "^1.1.1",
- "regexp.prototype.flags": "^1.2.0"
- }
- },
- "deep-extend": {
- "version": "0.6.0",
- "resolved": "https://registry.npmjs.org/deep-extend/-/deep-extend-0.6.0.tgz",
- "integrity": "sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA=="
- },
- "deep-is": {
- "version": "0.1.3",
- "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.3.tgz",
- "integrity": "sha1-s2nW+128E+7PUk+RsHD+7cNXzzQ="
- },
- "deepmerge": {
- "version": "4.2.2",
- "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.2.2.tgz",
- "integrity": "sha512-FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg=="
- },
- "default-gateway": {
- "version": "4.2.0",
- "resolved": "https://registry.npmjs.org/default-gateway/-/default-gateway-4.2.0.tgz",
- "integrity": "sha512-h6sMrVB1VMWVrW13mSc6ia/DwYYw5MN6+exNu1OaJeFac5aSAvwM7lZ0NVfTABuSkQelr4h5oebg3KB1XPdjgA==",
- "requires": {
- "execa": "^1.0.0",
- "ip-regex": "^2.1.0"
+ "object.assign": "^4.1.1",
+ "string.prototype.trimend": "^1.0.1",
+ "string.prototype.trimstart": "^1.0.1"
},
"dependencies": {
- "execa": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/execa/-/execa-1.0.0.tgz",
- "integrity": "sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==",
- "requires": {
- "cross-spawn": "^6.0.0",
- "get-stream": "^4.0.0",
- "is-stream": "^1.1.0",
- "npm-run-path": "^2.0.0",
- "p-finally": "^1.0.0",
- "signal-exit": "^3.0.0",
- "strip-eof": "^1.0.0"
- }
- },
- "is-stream": {
- "version": "1.1.0",
- "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz",
- "integrity": "sha1-EtSj3U5o4Lec6428hBc66A2RykQ="
- },
- "npm-run-path": {
- "version": "2.0.2",
- "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz",
- "integrity": "sha1-NakjLfo11wZ7TLLd8jV7GHFTbF8=",
+ "object.assign": {
+ "version": "4.1.2",
+ "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.2.tgz",
+ "integrity": "sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ==",
"requires": {
- "path-key": "^2.0.0"
+ "call-bind": "^1.0.0",
+ "define-properties": "^1.1.3",
+ "has-symbols": "^1.0.1",
+ "object-keys": "^1.1.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=="
+ "es-to-primitive": {
+ "version": "1.2.1",
+ "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz",
+ "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==",
+ "requires": {
+ "is-callable": "^1.1.4",
+ "is-date-object": "^1.0.1",
+ "is-symbol": "^1.0.2"
+ }
},
- "define-properties": {
- "version": "1.1.3",
- "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.1.3.tgz",
- "integrity": "sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ==",
+ "es5-ext": {
+ "version": "0.10.53",
+ "resolved": "https://registry.npmjs.org/es5-ext/-/es5-ext-0.10.53.tgz",
+ "integrity": "sha512-Xs2Stw6NiNHWypzRTY1MtaG/uJlwCk8kH81920ma8mvN8Xq1gsfhZvpkImLQArw8AHnv8MT2I45J3c0R8slE+Q==",
"requires": {
- "object-keys": "^1.0.12"
+ "es6-iterator": "~2.0.3",
+ "es6-symbol": "~3.1.3",
+ "next-tick": "~1.0.0"
}
},
- "define-property": {
- "version": "2.0.2",
- "resolved": "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz",
- "integrity": "sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==",
+ "es6-iterator": {
+ "version": "2.0.3",
+ "resolved": "https://registry.npmjs.org/es6-iterator/-/es6-iterator-2.0.3.tgz",
+ "integrity": "sha1-p96IkUGgWpSwhUQDstCg+/qY87c=",
"requires": {
- "is-descriptor": "^1.0.2",
- "isobject": "^3.0.1"
- },
- "dependencies": {
- "is-accessor-descriptor": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz",
- "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==",
- "requires": {
- "kind-of": "^6.0.0"
- }
- },
- "is-data-descriptor": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz",
- "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==",
- "requires": {
- "kind-of": "^6.0.0"
- }
- },
- "is-descriptor": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz",
- "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==",
- "requires": {
- "is-accessor-descriptor": "^1.0.0",
- "is-data-descriptor": "^1.0.0",
- "kind-of": "^6.0.2"
- }
- }
+ "d": "1",
+ "es5-ext": "^0.10.35",
+ "es6-symbol": "^3.1.1"
}
},
- "del": {
- "version": "5.1.0",
- "resolved": "https://registry.npmjs.org/del/-/del-5.1.0.tgz",
- "integrity": "sha512-wH9xOVHnczo9jN2IW68BabcecVPxacIA3g/7z6vhSU/4stOKQzeCRK0yD0A24WiAAUJmmVpWqrERcTxnLo3AnA==",
+ "es6-symbol": {
+ "version": "3.1.3",
+ "resolved": "https://registry.npmjs.org/es6-symbol/-/es6-symbol-3.1.3.tgz",
+ "integrity": "sha512-NJ6Yn3FuDinBaBRWl/q5X/s4koRHBrgKAu+yGI6JCBeiu3qrcbJhwT2GeR/EXVfylRk8dpQVJoLEFhK+Mu31NA==",
"requires": {
- "globby": "^10.0.1",
- "graceful-fs": "^4.2.2",
- "is-glob": "^4.0.1",
- "is-path-cwd": "^2.2.0",
- "is-path-inside": "^3.0.1",
- "p-map": "^3.0.0",
- "rimraf": "^3.0.0",
- "slash": "^3.0.0"
+ "d": "^1.0.1",
+ "ext": "^1.1.2"
}
},
- "delayed-stream": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz",
- "integrity": "sha1-3zrhmayt+31ECqrgsp4icrJOxhk="
+ "escalade": {
+ "version": "3.0.2",
+ "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.0.2.tgz",
+ "integrity": "sha512-gPYAU37hYCUhW5euPeR+Y74F7BL+IBsV93j5cvGriSaD1aG6MGsqsV1yamRdrWrb2j3aiZvb0X+UBOWpx3JWtQ=="
},
- "depd": {
- "version": "1.1.2",
- "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz",
- "integrity": "sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak="
+ "escape-goat": {
+ "version": "2.1.1",
+ "resolved": "https://registry.npmjs.org/escape-goat/-/escape-goat-2.1.1.tgz",
+ "integrity": "sha512-8/uIhbG12Csjy2JEW7D9pHbreaVaS/OpN3ycnyvElTdwM5n6GY6W6e2IPemfvGZeUMqZ9A/3GqIZMgKnBhAw/Q=="
},
- "des.js": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/des.js/-/des.js-1.0.1.tgz",
- "integrity": "sha512-Q0I4pfFrv2VPd34/vfLrFOoRmlYj3OV50i7fskps1jZWK1kApMWWT9G6RRUeYedLcBDIhnSDaUvJMb3AhUlaEA==",
- "requires": {
- "inherits": "^2.0.1",
- "minimalistic-assert": "^1.0.0"
- }
+ "escape-html": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz",
+ "integrity": "sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg="
},
- "destroy": {
- "version": "1.0.4",
- "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.0.4.tgz",
- "integrity": "sha1-l4hXRCxEdJ5CBmE+N5RiBYJqvYA="
+ "escape-string-regexp": {
+ "version": "1.0.5",
+ "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz",
+ "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ="
},
- "detab": {
- "version": "2.0.3",
- "resolved": "https://registry.npmjs.org/detab/-/detab-2.0.3.tgz",
- "integrity": "sha512-Up8P0clUVwq0FnFjDclzZsy9PadzRn5FFxrr47tQQvMHqyiFYVbpH8oXDzWtF0Q7pYy3l+RPmtBl+BsFF6wH0A==",
+ "eslint": {
+ "version": "6.8.0",
+ "resolved": "https://registry.npmjs.org/eslint/-/eslint-6.8.0.tgz",
+ "integrity": "sha512-K+Iayyo2LtyYhDSYwz5D5QdWw0hCacNzyq1Y821Xna2xSJj7cijoLLYmLxTQgcgZ9mC61nryMy9S7GRbYpI5Ig==",
"requires": {
- "repeat-string": "^1.5.4"
+ "@babel/code-frame": "^7.0.0",
+ "ajv": "^6.10.0",
+ "chalk": "^2.1.0",
+ "cross-spawn": "^6.0.5",
+ "debug": "^4.0.1",
+ "doctrine": "^3.0.0",
+ "eslint-scope": "^5.0.0",
+ "eslint-utils": "^1.4.3",
+ "eslint-visitor-keys": "^1.1.0",
+ "espree": "^6.1.2",
+ "esquery": "^1.0.1",
+ "esutils": "^2.0.2",
+ "file-entry-cache": "^5.0.1",
+ "functional-red-black-tree": "^1.0.1",
+ "glob-parent": "^5.0.0",
+ "globals": "^12.1.0",
+ "ignore": "^4.0.6",
+ "import-fresh": "^3.0.0",
+ "imurmurhash": "^0.1.4",
+ "inquirer": "^7.0.0",
+ "is-glob": "^4.0.0",
+ "js-yaml": "^3.13.1",
+ "json-stable-stringify-without-jsonify": "^1.0.1",
+ "levn": "^0.3.0",
+ "lodash": "^4.17.14",
+ "minimatch": "^3.0.4",
+ "mkdirp": "^0.5.1",
+ "natural-compare": "^1.4.0",
+ "optionator": "^0.8.3",
+ "progress": "^2.0.0",
+ "regexpp": "^2.0.1",
+ "semver": "^6.1.2",
+ "strip-ansi": "^5.2.0",
+ "strip-json-comments": "^3.0.1",
+ "table": "^5.2.3",
+ "text-table": "^0.2.0",
+ "v8-compile-cache": "^2.0.3"
+ },
+ "dependencies": {
+ "ansi-regex": {
+ "version": "4.1.0",
+ "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz",
+ "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg=="
+ },
+ "debug": {
+ "version": "4.2.0",
+ "resolved": "https://registry.npmjs.org/debug/-/debug-4.2.0.tgz",
+ "integrity": "sha512-IX2ncY78vDTjZMFUdmsvIRFY2Cf4FnD0wRs+nQwJU8Lu99/tPFdb0VybiiMTPe3I6rQmwsqQqRBvxU+bZ/I8sg==",
+ "requires": {
+ "ms": "2.1.2"
+ }
+ },
+ "eslint-utils": {
+ "version": "1.4.3",
+ "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-1.4.3.tgz",
+ "integrity": "sha512-fbBN5W2xdY45KulGXmLHZ3c3FHfVYmKg0IrAKGOkT/464PQsx2UeIzfz1RmEci+KLm1bBaAzZAh8+/E+XAeZ8Q==",
+ "requires": {
+ "eslint-visitor-keys": "^1.1.0"
+ }
+ },
+ "glob-parent": {
+ "version": "5.1.1",
+ "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.1.tgz",
+ "integrity": "sha512-FnI+VGOpnlGHWZxthPGR+QhR78fuiK0sNLkHQv+bL9fQi57lNNdquIbna/WrfROrolq8GK5Ek6BiMwqL/voRYQ==",
+ "requires": {
+ "is-glob": "^4.0.1"
+ }
+ },
+ "globals": {
+ "version": "12.4.0",
+ "resolved": "https://registry.npmjs.org/globals/-/globals-12.4.0.tgz",
+ "integrity": "sha512-BWICuzzDvDoH54NHKCseDanAhE3CeDorgDL5MT6LMXXj2WCnd9UC2szdk4AWLfjdgNBCXLUanXYcpBBKOSWGwg==",
+ "requires": {
+ "type-fest": "^0.8.1"
+ }
+ },
+ "ignore": {
+ "version": "4.0.6",
+ "resolved": "https://registry.npmjs.org/ignore/-/ignore-4.0.6.tgz",
+ "integrity": "sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg=="
+ },
+ "regexpp": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/regexpp/-/regexpp-2.0.1.tgz",
+ "integrity": "sha512-lv0M6+TkDVniA3aD1Eg0DVpfU/booSu7Eev3TDO/mZKHBfVjgCGTV4t4buppESEYDtkArYFOxTJWv6S5C+iaNw=="
+ },
+ "semver": {
+ "version": "6.3.0",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz",
+ "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw=="
+ },
+ "strip-ansi": {
+ "version": "5.2.0",
+ "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz",
+ "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==",
+ "requires": {
+ "ansi-regex": "^4.1.0"
+ }
+ },
+ "v8-compile-cache": {
+ "version": "2.2.0",
+ "resolved": "https://registry.npmjs.org/v8-compile-cache/-/v8-compile-cache-2.2.0.tgz",
+ "integrity": "sha512-gTpR5XQNKFwOd4clxfnhaqvfqMpqEwr4tOtCyz4MtYZX2JYhfr1JvBFKdS+7K/9rfpZR3VLX+YWBbKoxCgS43Q=="
+ }
}
},
- "detect-indent": {
- "version": "6.0.0",
- "resolved": "https://registry.npmjs.org/detect-indent/-/detect-indent-6.0.0.tgz",
- "integrity": "sha512-oSyFlqaTHCItVRGK5RmrmjB+CmaMOW7IaNA/kdxqhoa6d17j/5ce9O9eWXmV/KEdRwqpQA+Vqe8a8Bsybu4YnA=="
- },
- "detect-newline": {
- "version": "1.0.3",
- "resolved": "https://registry.npmjs.org/detect-newline/-/detect-newline-1.0.3.tgz",
- "integrity": "sha1-6XsQA4d9cMCa8a81v63/Fo3kkg0=",
+ "eslint-config-react-app": {
+ "version": "5.2.1",
+ "resolved": "https://registry.npmjs.org/eslint-config-react-app/-/eslint-config-react-app-5.2.1.tgz",
+ "integrity": "sha512-pGIZ8t0mFLcV+6ZirRgYK6RVqUIKRIi9MmgzUEmrIknsn3AdO0I32asO86dJgloHq+9ZPl8UIg8mYrvgP5u2wQ==",
"requires": {
- "get-stdin": "^4.0.1",
- "minimist": "^1.1.0"
+ "confusing-browser-globals": "^1.0.9"
}
},
- "detect-node": {
- "version": "2.0.4",
- "resolved": "https://registry.npmjs.org/detect-node/-/detect-node-2.0.4.tgz",
- "integrity": "sha512-ZIzRpLJrOj7jjP2miAtgqIfmzbxa4ZOr5jJc601zklsfEx9oTzmmj2nVpIPRpNlRTIh8lc1kyViIY7BWSGNmKw=="
- },
- "detect-port": {
- "version": "1.3.0",
- "resolved": "https://registry.npmjs.org/detect-port/-/detect-port-1.3.0.tgz",
- "integrity": "sha512-E+B1gzkl2gqxt1IhUzwjrxBKRqx1UzC3WLONHinn8S3T6lwV/agVCyitiFOsGJ/eYuEUBvD71MZHy3Pv1G9doQ==",
+ "eslint-import-resolver-node": {
+ "version": "0.3.4",
+ "resolved": "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.4.tgz",
+ "integrity": "sha512-ogtf+5AB/O+nM6DIeBUNr2fuT7ot9Qg/1harBfBtaP13ekEWFQEEMP94BCB7zaNW3gyY+8SHYF00rnqYwXKWOA==",
"requires": {
- "address": "^1.0.1",
- "debug": "^2.6.0"
+ "debug": "^2.6.9",
+ "resolve": "^1.13.1"
},
"dependencies": {
"debug": {
@@ -7249,50 +7306,18 @@
}
}
},
- "devcert": {
- "version": "1.1.3",
- "resolved": "https://registry.npmjs.org/devcert/-/devcert-1.1.3.tgz",
- "integrity": "sha512-7/nIzKdQ8y2K0imjIP7dyg2GJ2h38Ps6VOMXWZHIarNDV3p6mTXyEugKFnkmsZ2DD58JEG34ILyVb3qdOMmP9w==",
+ "eslint-loader": {
+ "version": "2.2.1",
+ "resolved": "https://registry.npmjs.org/eslint-loader/-/eslint-loader-2.2.1.tgz",
+ "integrity": "sha512-RLgV9hoCVsMLvOxCuNjdqOrUqIj9oJg8hF44vzJaYqsAHuY9G2YAeN3joQ9nxP0p5Th9iFSIpKo+SD8KISxXRg==",
"requires": {
- "@types/configstore": "^2.1.1",
- "@types/debug": "^0.0.30",
- "@types/get-port": "^3.2.0",
- "@types/glob": "^5.0.34",
- "@types/lodash": "^4.14.92",
- "@types/mkdirp": "^0.5.2",
- "@types/node": "^8.5.7",
- "@types/rimraf": "^2.0.2",
- "@types/tmp": "^0.0.33",
- "application-config-path": "^0.1.0",
- "command-exists": "^1.2.4",
- "debug": "^3.1.0",
- "eol": "^0.9.1",
- "get-port": "^3.2.0",
- "glob": "^7.1.2",
- "lodash": "^4.17.4",
- "mkdirp": "^0.5.1",
- "password-prompt": "^1.0.4",
- "rimraf": "^2.6.2",
- "sudo-prompt": "^8.2.0",
- "tmp": "^0.0.33",
- "tslib": "^1.10.0"
+ "loader-fs-cache": "^1.0.0",
+ "loader-utils": "^1.0.2",
+ "object-assign": "^4.0.1",
+ "object-hash": "^1.1.4",
+ "rimraf": "^2.6.1"
},
"dependencies": {
- "@types/glob": {
- "version": "5.0.36",
- "resolved": "https://registry.npmjs.org/@types/glob/-/glob-5.0.36.tgz",
- "integrity": "sha512-KEzSKuP2+3oOjYYjujue6Z3Yqis5HKA1BsIC+jZ1v3lrRNdsqyNNtX0rQf6LSuI4DJJ2z5UV//zBZCcvM0xikg==",
- "requires": {
- "@types/events": "*",
- "@types/minimatch": "*",
- "@types/node": "*"
- }
- },
- "@types/node": {
- "version": "8.10.66",
- "resolved": "https://registry.npmjs.org/@types/node/-/node-8.10.66.tgz",
- "integrity": "sha512-tktOkFUA4kXx2hhhrB8bIFb5TbwzS4uOhKEmwiD+NoiL0qtP2OQ9mFldbgD4dV1djrlBYP6eBuQZiWjuHUpqFw=="
- },
"rimraf": {
"version": "2.7.1",
"resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz",
@@ -7300,2191 +7325,702 @@
"requires": {
"glob": "^7.1.3"
}
- },
- "tmp": {
- "version": "0.0.33",
- "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.0.33.tgz",
- "integrity": "sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==",
- "requires": {
- "os-tmpdir": "~1.0.2"
- }
}
}
},
- "diff-sequences": {
- "version": "25.2.6",
- "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-25.2.6.tgz",
- "integrity": "sha512-Hq8o7+6GaZeoFjtpgvRBUknSXNeJiCx7V9Fr94ZMljNiCr9n9L8H8aJqgWOQiDDGdyn29fRNcDdRVJ5fdyihfg=="
- },
- "diffie-hellman": {
- "version": "5.0.3",
- "resolved": "https://registry.npmjs.org/diffie-hellman/-/diffie-hellman-5.0.3.tgz",
- "integrity": "sha512-kqag/Nl+f3GwyK25fhUMYj81BUOrZ9IuJsjIcDE5icNM9FJHAVm3VcUDxdLPoQtTuUylWm6ZIknYJwwaPxsUzg==",
+ "eslint-module-utils": {
+ "version": "2.6.0",
+ "resolved": "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.6.0.tgz",
+ "integrity": "sha512-6j9xxegbqe8/kZY8cYpcp0xhbK0EgJlg3g9mib3/miLaExuuwc3n5UEfSnU6hWMbT0FAYVvDbL9RrRgpUeQIvA==",
"requires": {
- "bn.js": "^4.1.0",
- "miller-rabin": "^4.0.0",
- "randombytes": "^2.0.0"
+ "debug": "^2.6.9",
+ "pkg-dir": "^2.0.0"
},
"dependencies": {
- "bn.js": {
- "version": "4.11.9",
- "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.11.9.tgz",
- "integrity": "sha512-E6QoYqCKZfgatHTdHzs1RRKP7ip4vvm+EyRUeE2RF0NblwVvb0p6jSVeNTOFxPn26QXN2o6SMfNxKp6kU8zQaw=="
+ "debug": {
+ "version": "2.6.9",
+ "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
+ "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
+ "requires": {
+ "ms": "2.0.0"
+ }
+ },
+ "find-up": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/find-up/-/find-up-2.1.0.tgz",
+ "integrity": "sha1-RdG35QbHF93UgndaK3eSCjwMV6c=",
+ "requires": {
+ "locate-path": "^2.0.0"
+ }
+ },
+ "locate-path": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-2.0.0.tgz",
+ "integrity": "sha1-K1aLJl7slExtnA3pw9u7ygNUzY4=",
+ "requires": {
+ "p-locate": "^2.0.0",
+ "path-exists": "^3.0.0"
+ }
+ },
+ "ms": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
+ "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g="
+ },
+ "p-limit": {
+ "version": "1.3.0",
+ "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-1.3.0.tgz",
+ "integrity": "sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==",
+ "requires": {
+ "p-try": "^1.0.0"
+ }
+ },
+ "p-locate": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-2.0.0.tgz",
+ "integrity": "sha1-IKAQOyIqcMj9OcwuWAaA893l7EM=",
+ "requires": {
+ "p-limit": "^1.1.0"
+ }
+ },
+ "p-try": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/p-try/-/p-try-1.0.0.tgz",
+ "integrity": "sha1-y8ec26+P1CKOE/Yh8rGiN8GyB7M="
+ },
+ "pkg-dir": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-2.0.0.tgz",
+ "integrity": "sha1-9tXREJ4Z1j7fQo4L1X4Sd3YVM0s=",
+ "requires": {
+ "find-up": "^2.1.0"
+ }
}
}
},
- "dir-glob": {
- "version": "3.0.1",
- "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz",
- "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==",
- "requires": {
- "path-type": "^4.0.0"
- }
- },
- "dns-equal": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/dns-equal/-/dns-equal-1.0.0.tgz",
- "integrity": "sha1-s55/HabrCnW6nBcySzR1PEfgZU0="
- },
- "dns-packet": {
- "version": "1.3.1",
- "resolved": "https://registry.npmjs.org/dns-packet/-/dns-packet-1.3.1.tgz",
- "integrity": "sha512-0UxfQkMhYAUaZI+xrNZOz/as5KgDU0M/fQ9b6SpkyLbk3GEswDi6PADJVaYJradtRVsRIlF1zLyOodbcTCDzUg==",
- "requires": {
- "ip": "^1.1.0",
- "safe-buffer": "^5.0.1"
- }
- },
- "dns-txt": {
- "version": "2.0.2",
- "resolved": "https://registry.npmjs.org/dns-txt/-/dns-txt-2.0.2.tgz",
- "integrity": "sha1-uR2Ab10nGI5Ks+fRB9iBocxGQrY=",
- "requires": {
- "buffer-indexof": "^1.0.0"
- }
- },
- "doctrine": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz",
- "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==",
+ "eslint-plugin-flowtype": {
+ "version": "3.13.0",
+ "resolved": "https://registry.npmjs.org/eslint-plugin-flowtype/-/eslint-plugin-flowtype-3.13.0.tgz",
+ "integrity": "sha512-bhewp36P+t7cEV0b6OdmoRWJCBYRiHFlqPZAG1oS3SF+Y0LQkeDvFSM4oxoxvczD1OdONCXMlJfQFiWLcV9urw==",
"requires": {
- "esutils": "^2.0.2"
+ "lodash": "^4.17.15"
}
},
- "dom-converter": {
- "version": "0.2.0",
- "resolved": "https://registry.npmjs.org/dom-converter/-/dom-converter-0.2.0.tgz",
- "integrity": "sha512-gd3ypIPfOMr9h5jIKq8E3sHOTCjeirnl0WK5ZdS1AW0Odt0b1PaWaHdJ4Qk4klv+YB9aJBS7mESXjFoDQPu6DA==",
+ "eslint-plugin-graphql": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/eslint-plugin-graphql/-/eslint-plugin-graphql-4.0.0.tgz",
+ "integrity": "sha512-d5tQm24YkVvCEk29ZR5ScsgXqAGCjKlMS8lx3mS7FS/EKsWbkvXQImpvic03EpMIvNTBW5e+2xnHzXB/VHNZJw==",
"requires": {
- "utila": "~0.4"
+ "@babel/runtime": "^7.10.0",
+ "graphql-config": "^3.0.2",
+ "lodash.flatten": "^4.4.0",
+ "lodash.without": "^4.4.0"
}
},
- "dom-serializer": {
- "version": "0.2.2",
- "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-0.2.2.tgz",
- "integrity": "sha512-2/xPb3ORsQ42nHYiSunXkDjPLBaEj/xTwUO4B7XCZQTRk7EBtTOPaygh10YAAh2OI1Qrp6NWfpAhzswj0ydt9g==",
+ "eslint-plugin-import": {
+ "version": "2.22.1",
+ "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.22.1.tgz",
+ "integrity": "sha512-8K7JjINHOpH64ozkAhpT3sd+FswIZTfMZTjdx052pnWrgRCVfp8op9tbjpAk3DdUeI/Ba4C8OjdC0r90erHEOw==",
"requires": {
- "domelementtype": "^2.0.1",
- "entities": "^2.0.0"
+ "array-includes": "^3.1.1",
+ "array.prototype.flat": "^1.2.3",
+ "contains-path": "^0.1.0",
+ "debug": "^2.6.9",
+ "doctrine": "1.5.0",
+ "eslint-import-resolver-node": "^0.3.4",
+ "eslint-module-utils": "^2.6.0",
+ "has": "^1.0.3",
+ "minimatch": "^3.0.4",
+ "object.values": "^1.1.1",
+ "read-pkg-up": "^2.0.0",
+ "resolve": "^1.17.0",
+ "tsconfig-paths": "^3.9.0"
},
"dependencies": {
- "domelementtype": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.0.1.tgz",
- "integrity": "sha512-5HOHUDsYZWV8FGWN0Njbr/Rn7f/eWSQi1v7+HsUVwXgn8nWWlL64zKDkS0n8ZmQ3mlWOMuXOnR+7Nx/5tMO5AQ=="
+ "debug": {
+ "version": "2.6.9",
+ "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
+ "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
+ "requires": {
+ "ms": "2.0.0"
+ }
+ },
+ "doctrine": {
+ "version": "1.5.0",
+ "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-1.5.0.tgz",
+ "integrity": "sha1-N53Ocw9hZvds76TmcHoVmwLFpvo=",
+ "requires": {
+ "esutils": "^2.0.2",
+ "isarray": "^1.0.0"
+ }
+ },
+ "ms": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
+ "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g="
}
}
},
- "dom-walk": {
- "version": "0.1.2",
- "resolved": "https://registry.npmjs.org/dom-walk/-/dom-walk-0.1.2.tgz",
- "integrity": "sha512-6QvTW9mrGeIegrFXdtQi9pk7O/nSK6lSdXW2eqUspN5LWD7UTji2Fqw5V2YLjBpHEoU9Xl/eUWNpDeZvoyOv2w=="
- },
- "domain-browser": {
- "version": "1.2.0",
- "resolved": "https://registry.npmjs.org/domain-browser/-/domain-browser-1.2.0.tgz",
- "integrity": "sha512-jnjyiM6eRyZl2H+W8Q/zLMA481hzi0eszAaBUzIVnmYVDBbnLxVNnfu1HgEBvCbL+71FrxMl3E6lpKH7Ge3OXA=="
- },
- "domelementtype": {
- "version": "1.3.1",
- "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-1.3.1.tgz",
- "integrity": "sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w=="
- },
- "domhandler": {
- "version": "2.4.2",
- "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-2.4.2.tgz",
- "integrity": "sha512-JiK04h0Ht5u/80fdLMCEmV4zkNh2BcoMFBmZ/91WtYZ8qVXSKjiw7fXMgFPnHcSZgOo3XdinHvmnDUeMf5R4wA==",
+ "eslint-plugin-jsx-a11y": {
+ "version": "6.4.1",
+ "resolved": "https://registry.npmjs.org/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.4.1.tgz",
+ "integrity": "sha512-0rGPJBbwHoGNPU73/QCLP/vveMlM1b1Z9PponxO87jfr6tuH5ligXbDT6nHSSzBC8ovX2Z+BQu7Bk5D/Xgq9zg==",
"requires": {
- "domelementtype": "1"
+ "@babel/runtime": "^7.11.2",
+ "aria-query": "^4.2.2",
+ "array-includes": "^3.1.1",
+ "ast-types-flow": "^0.0.7",
+ "axe-core": "^4.0.2",
+ "axobject-query": "^2.2.0",
+ "damerau-levenshtein": "^1.0.6",
+ "emoji-regex": "^9.0.0",
+ "has": "^1.0.3",
+ "jsx-ast-utils": "^3.1.0",
+ "language-tags": "^1.0.5"
+ },
+ "dependencies": {
+ "@babel/runtime": {
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.5.tgz",
+ "integrity": "sha512-plcc+hbExy3McchJCEQG3knOsuh3HH+Prx1P6cLIkET/0dLuQDEnrT+s27Axgc9bqfsmNUNHfscgMUdBpC9xfg==",
+ "requires": {
+ "regenerator-runtime": "^0.13.4"
+ }
+ },
+ "emoji-regex": {
+ "version": "9.2.0",
+ "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.0.tgz",
+ "integrity": "sha512-DNc3KFPK18bPdElMJnf/Pkv5TXhxFU3YFDEuGLDRtPmV4rkmCjBkCSEp22u6rBHdSN9Vlp/GK7k98prmE1Jgug=="
+ }
}
},
- "domutils": {
- "version": "1.5.1",
- "resolved": "https://registry.npmjs.org/domutils/-/domutils-1.5.1.tgz",
- "integrity": "sha1-3NhIiib1Y9YQeeSMn3t+Mjc2gs8=",
+ "eslint-plugin-react": {
+ "version": "7.21.5",
+ "resolved": "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.21.5.tgz",
+ "integrity": "sha512-8MaEggC2et0wSF6bUeywF7qQ46ER81irOdWS4QWxnnlAEsnzeBevk1sWh7fhpCghPpXb+8Ks7hvaft6L/xsR6g==",
"requires": {
- "dom-serializer": "0",
- "domelementtype": "1"
- }
- },
- "dot-case": {
- "version": "2.1.1",
- "resolved": "https://registry.npmjs.org/dot-case/-/dot-case-2.1.1.tgz",
- "integrity": "sha1-NNzzf1Co6TwrO8qLt/uRVcfaO+4=",
- "requires": {
- "no-case": "^2.2.0"
- },
- "dependencies": {
- "lower-case": {
- "version": "1.1.4",
- "resolved": "https://registry.npmjs.org/lower-case/-/lower-case-1.1.4.tgz",
- "integrity": "sha1-miyr0bno4K6ZOkv31YdcOcQujqw="
- },
- "no-case": {
- "version": "2.3.2",
- "resolved": "https://registry.npmjs.org/no-case/-/no-case-2.3.2.tgz",
- "integrity": "sha512-rmTZ9kz+f3rCvK2TD1Ue/oZlns7OGoIWP4fc3llxxRXlOkHKoWPPWJOfFYpITabSow43QJbRIoHQXtt10VldyQ==",
- "requires": {
- "lower-case": "^1.1.1"
- }
- }
- }
- },
- "dot-prop": {
- "version": "5.2.0",
- "resolved": "https://registry.npmjs.org/dot-prop/-/dot-prop-5.2.0.tgz",
- "integrity": "sha512-uEUyaDKoSQ1M4Oq8l45hSE26SnTxL6snNnqvK/VWx5wJhmff5z0FUVJDKDanor/6w3kzE3i7XZOk+7wC0EXr1A==",
- "requires": {
- "is-obj": "^2.0.0"
- }
- },
- "dotenv": {
- "version": "8.2.0",
- "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-8.2.0.tgz",
- "integrity": "sha512-8sJ78ElpbDJBHNeBzUbUVLsqKdccaa/BXF1uPTw3GrvQTBgrQrtObr2mUrE38vzYd8cEv+m/JBfDLioYcfXoaw=="
- },
- "duplexer": {
- "version": "0.1.2",
- "resolved": "https://registry.npmjs.org/duplexer/-/duplexer-0.1.2.tgz",
- "integrity": "sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg=="
- },
- "duplexer3": {
- "version": "0.1.4",
- "resolved": "https://registry.npmjs.org/duplexer3/-/duplexer3-0.1.4.tgz",
- "integrity": "sha1-7gHdHKwO08vH/b6jfcCo8c4ALOI="
- },
- "duplexify": {
- "version": "3.7.1",
- "resolved": "https://registry.npmjs.org/duplexify/-/duplexify-3.7.1.tgz",
- "integrity": "sha512-07z8uv2wMyS51kKhD1KsdXJg5WQ6t93RneqRxUHnskXVtlYYkLqM0gqStQZ3pj073g687jPCHrqNfCzawLYh5g==",
- "requires": {
- "end-of-stream": "^1.0.0",
- "inherits": "^2.0.1",
- "readable-stream": "^2.0.0",
- "stream-shift": "^1.0.0"
- }
- },
- "ee-first": {
- "version": "1.1.1",
- "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz",
- "integrity": "sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0="
- },
- "electron-to-chromium": {
- "version": "1.3.517",
- "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.517.tgz",
- "integrity": "sha512-8wucrMsmXxeBxaM3TPg+YiwIJwPd1IZMudOj1XytmkP3UPXRagMhO9vo4nzzbSWeq91N1zhfUhJW2u9/MVhPxw=="
- },
- "elliptic": {
- "version": "6.5.3",
- "resolved": "https://registry.npmjs.org/elliptic/-/elliptic-6.5.3.tgz",
- "integrity": "sha512-IMqzv5wNQf+E6aHeIqATs0tOLeOTwj1QKbRcS3jBbYkl5oLAserA8yJTT7/VyHUYG91PRmPyeQDObKLPpeS4dw==",
- "requires": {
- "bn.js": "^4.4.0",
- "brorand": "^1.0.1",
- "hash.js": "^1.0.0",
- "hmac-drbg": "^1.0.0",
- "inherits": "^2.0.1",
- "minimalistic-assert": "^1.0.0",
- "minimalistic-crypto-utils": "^1.0.0"
- },
- "dependencies": {
- "bn.js": {
- "version": "4.11.9",
- "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.11.9.tgz",
- "integrity": "sha512-E6QoYqCKZfgatHTdHzs1RRKP7ip4vvm+EyRUeE2RF0NblwVvb0p6jSVeNTOFxPn26QXN2o6SMfNxKp6kU8zQaw=="
- }
- }
- },
- "emoji-regex": {
- "version": "8.0.0",
- "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz",
- "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A=="
- },
- "emojis-list": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz",
- "integrity": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q=="
- },
- "encodeurl": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz",
- "integrity": "sha1-rT/0yG7C0CkyL1oCw6mmBslbP1k="
- },
- "end-of-stream": {
- "version": "1.4.4",
- "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz",
- "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==",
- "requires": {
- "once": "^1.4.0"
- }
- },
- "engine.io": {
- "version": "3.4.2",
- "resolved": "https://registry.npmjs.org/engine.io/-/engine.io-3.4.2.tgz",
- "integrity": "sha512-b4Q85dFkGw+TqgytGPrGgACRUhsdKc9S9ErRAXpPGy/CXKs4tYoHDkvIRdsseAF7NjfVwjRFIn6KTnbw7LwJZg==",
- "requires": {
- "accepts": "~1.3.4",
- "base64id": "2.0.0",
- "cookie": "0.3.1",
- "debug": "~4.1.0",
- "engine.io-parser": "~2.2.0",
- "ws": "^7.1.2"
- },
- "dependencies": {
- "cookie": {
- "version": "0.3.1",
- "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.3.1.tgz",
- "integrity": "sha1-5+Ch+e9DtMi6klxcWpboBtFoc7s="
- },
- "debug": {
- "version": "4.1.1",
- "resolved": "https://registry.npmjs.org/debug/-/debug-4.1.1.tgz",
- "integrity": "sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw==",
- "requires": {
- "ms": "^2.1.1"
- }
- },
- "ws": {
- "version": "7.3.1",
- "resolved": "https://registry.npmjs.org/ws/-/ws-7.3.1.tgz",
- "integrity": "sha512-D3RuNkynyHmEJIpD2qrgVkc9DQ23OrN/moAwZX4L8DfvszsJxpjQuUq3LMx6HoYji9fbIOBY18XWBsAux1ZZUA=="
- }
- }
- },
- "engine.io-client": {
- "version": "3.4.4",
- "resolved": "https://registry.npmjs.org/engine.io-client/-/engine.io-client-3.4.4.tgz",
- "integrity": "sha512-iU4CRr38Fecj8HoZEnFtm2EiKGbYZcPn3cHxqNGl/tmdWRf60KhK+9vE0JeSjgnlS/0oynEfLgKbT9ALpim0sQ==",
- "requires": {
- "component-emitter": "~1.3.0",
- "component-inherit": "0.0.3",
- "debug": "~3.1.0",
- "engine.io-parser": "~2.2.0",
- "has-cors": "1.1.0",
- "indexof": "0.0.1",
- "parseqs": "0.0.6",
- "parseuri": "0.0.6",
- "ws": "~6.1.0",
- "xmlhttprequest-ssl": "~1.5.4",
- "yeast": "0.1.2"
- },
- "dependencies": {
- "debug": {
- "version": "3.1.0",
- "resolved": "https://registry.npmjs.org/debug/-/debug-3.1.0.tgz",
- "integrity": "sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==",
- "requires": {
- "ms": "2.0.0"
- }
- },
- "ms": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
- "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g="
- },
- "parseqs": {
- "version": "0.0.6",
- "resolved": "https://registry.npmjs.org/parseqs/-/parseqs-0.0.6.tgz",
- "integrity": "sha512-jeAGzMDbfSHHA091hr0r31eYfTig+29g3GKKE/PPbEQ65X0lmMwlEoqmhzu0iztID5uJpZsFlUPDP8ThPL7M8w=="
- },
- "parseuri": {
- "version": "0.0.6",
- "resolved": "https://registry.npmjs.org/parseuri/-/parseuri-0.0.6.tgz",
- "integrity": "sha512-AUjen8sAkGgao7UyCX6Ahv0gIK2fABKmYjvP4xmy5JaKvcbTRueIqIPHLAfq30xJddqSE033IOMUSOMCcK3Sow=="
- },
- "ws": {
- "version": "6.1.4",
- "resolved": "https://registry.npmjs.org/ws/-/ws-6.1.4.tgz",
- "integrity": "sha512-eqZfL+NE/YQc1/ZynhojeV8q+H050oR8AZ2uIev7RU10svA9ZnJUddHcOUZTJLinZ9yEfdA2kSATS2qZK5fhJA==",
- "requires": {
- "async-limiter": "~1.0.0"
- }
- }
- }
- },
- "engine.io-parser": {
- "version": "2.2.1",
- "resolved": "https://registry.npmjs.org/engine.io-parser/-/engine.io-parser-2.2.1.tgz",
- "integrity": "sha512-x+dN/fBH8Ro8TFwJ+rkB2AmuVw9Yu2mockR/p3W8f8YtExwFgDvBDi0GWyb4ZLkpahtDGZgtr3zLovanJghPqg==",
- "requires": {
- "after": "0.8.2",
- "arraybuffer.slice": "~0.0.7",
- "base64-arraybuffer": "0.1.4",
- "blob": "0.0.5",
- "has-binary2": "~1.0.2"
- }
- },
- "enhanced-resolve": {
- "version": "4.3.0",
- "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-4.3.0.tgz",
- "integrity": "sha512-3e87LvavsdxyoCfGusJnrZ5G8SLPOFeHSNpZI/ATL9a5leXo2k0w6MKnbqhdBad9qTobSfB20Ld7UmgoNbAZkQ==",
- "requires": {
- "graceful-fs": "^4.1.2",
- "memory-fs": "^0.5.0",
- "tapable": "^1.0.0"
- },
- "dependencies": {
- "memory-fs": {
- "version": "0.5.0",
- "resolved": "https://registry.npmjs.org/memory-fs/-/memory-fs-0.5.0.tgz",
- "integrity": "sha512-jA0rdU5KoQMC0e6ppoNRtpp6vjFq6+NY7r8hywnC7V+1Xj/MtHwGIbB1QaK/dunyjWteJzmkpd7ooeWg10T7GA==",
- "requires": {
- "errno": "^0.1.3",
- "readable-stream": "^2.0.1"
- }
- }
- }
- },
- "entities": {
- "version": "2.0.3",
- "resolved": "https://registry.npmjs.org/entities/-/entities-2.0.3.tgz",
- "integrity": "sha512-MyoZ0jgnLvB2X3Lg5HqpFmn1kybDiIfEQmKzTb5apr51Rb+T3KdmMiqa70T+bhGnyv7bQ6WMj2QMHpGMmlrUYQ=="
- },
- "envinfo": {
- "version": "7.7.3",
- "resolved": "https://registry.npmjs.org/envinfo/-/envinfo-7.7.3.tgz",
- "integrity": "sha512-46+j5QxbPWza0PB1i15nZx0xQ4I/EfQxg9J8Had3b408SV63nEtor2e+oiY63amTo9KTuh2a3XLObNwduxYwwA=="
- },
- "eol": {
- "version": "0.9.1",
- "resolved": "https://registry.npmjs.org/eol/-/eol-0.9.1.tgz",
- "integrity": "sha512-Ds/TEoZjwggRoz/Q2O7SE3i4Jm66mqTDfmdHdq/7DKVk3bro9Q8h6WdXKdPqFLMoqxrDK5SVRzHVPOS6uuGtrg=="
- },
- "errno": {
- "version": "0.1.7",
- "resolved": "https://registry.npmjs.org/errno/-/errno-0.1.7.tgz",
- "integrity": "sha512-MfrRBDWzIWifgq6tJj60gkAwtLNb6sQPlcFrSOflcP1aFmmruKQ2wRnze/8V6kgyz7H3FF8Npzv78mZ7XLLflg==",
- "requires": {
- "prr": "~1.0.1"
- }
- },
- "error-ex": {
- "version": "1.3.2",
- "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz",
- "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==",
- "requires": {
- "is-arrayish": "^0.2.1"
- }
- },
- "error-stack-parser": {
- "version": "2.0.6",
- "resolved": "https://registry.npmjs.org/error-stack-parser/-/error-stack-parser-2.0.6.tgz",
- "integrity": "sha512-d51brTeqC+BHlwF0BhPtcYgF5nlzf9ZZ0ZIUQNZpc9ZB9qw5IJ2diTrBY9jlCJkTLITYPjmiX6OWCwH+fuyNgQ==",
- "requires": {
- "stackframe": "^1.1.1"
- }
- },
- "es-abstract": {
- "version": "1.17.7",
- "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.17.7.tgz",
- "integrity": "sha512-VBl/gnfcJ7OercKA9MVaegWsBHFjV492syMudcnQZvt/Dw8ezpcOHYZXa/J96O8vx+g4x65YKhxOwDUh63aS5g==",
- "requires": {
- "es-to-primitive": "^1.2.1",
- "function-bind": "^1.1.1",
- "has": "^1.0.3",
- "has-symbols": "^1.0.1",
- "is-callable": "^1.2.2",
- "is-regex": "^1.1.1",
- "object-inspect": "^1.8.0",
- "object-keys": "^1.1.1",
- "object.assign": "^4.1.1",
- "string.prototype.trimend": "^1.0.1",
- "string.prototype.trimstart": "^1.0.1"
- },
- "dependencies": {
- "object.assign": {
- "version": "4.1.2",
- "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.2.tgz",
- "integrity": "sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ==",
- "requires": {
- "call-bind": "^1.0.0",
- "define-properties": "^1.1.3",
- "has-symbols": "^1.0.1",
- "object-keys": "^1.1.1"
- }
- }
- }
- },
- "es-to-primitive": {
- "version": "1.2.1",
- "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz",
- "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==",
- "requires": {
- "is-callable": "^1.1.4",
- "is-date-object": "^1.0.1",
- "is-symbol": "^1.0.2"
- }
- },
- "es5-ext": {
- "version": "0.10.53",
- "resolved": "https://registry.npmjs.org/es5-ext/-/es5-ext-0.10.53.tgz",
- "integrity": "sha512-Xs2Stw6NiNHWypzRTY1MtaG/uJlwCk8kH81920ma8mvN8Xq1gsfhZvpkImLQArw8AHnv8MT2I45J3c0R8slE+Q==",
- "requires": {
- "es6-iterator": "~2.0.3",
- "es6-symbol": "~3.1.3",
- "next-tick": "~1.0.0"
- }
- },
- "es6-iterator": {
- "version": "2.0.3",
- "resolved": "https://registry.npmjs.org/es6-iterator/-/es6-iterator-2.0.3.tgz",
- "integrity": "sha1-p96IkUGgWpSwhUQDstCg+/qY87c=",
- "requires": {
- "d": "1",
- "es5-ext": "^0.10.35",
- "es6-symbol": "^3.1.1"
- }
- },
- "es6-symbol": {
- "version": "3.1.3",
- "resolved": "https://registry.npmjs.org/es6-symbol/-/es6-symbol-3.1.3.tgz",
- "integrity": "sha512-NJ6Yn3FuDinBaBRWl/q5X/s4koRHBrgKAu+yGI6JCBeiu3qrcbJhwT2GeR/EXVfylRk8dpQVJoLEFhK+Mu31NA==",
- "requires": {
- "d": "^1.0.1",
- "ext": "^1.1.2"
- }
- },
- "escalade": {
- "version": "3.0.2",
- "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.0.2.tgz",
- "integrity": "sha512-gPYAU37hYCUhW5euPeR+Y74F7BL+IBsV93j5cvGriSaD1aG6MGsqsV1yamRdrWrb2j3aiZvb0X+UBOWpx3JWtQ=="
- },
- "escape-goat": {
- "version": "2.1.1",
- "resolved": "https://registry.npmjs.org/escape-goat/-/escape-goat-2.1.1.tgz",
- "integrity": "sha512-8/uIhbG12Csjy2JEW7D9pHbreaVaS/OpN3ycnyvElTdwM5n6GY6W6e2IPemfvGZeUMqZ9A/3GqIZMgKnBhAw/Q=="
- },
- "escape-html": {
- "version": "1.0.3",
- "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz",
- "integrity": "sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg="
- },
- "escape-string-regexp": {
- "version": "1.0.5",
- "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz",
- "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ="
- },
- "eslint": {
- "version": "6.8.0",
- "resolved": "https://registry.npmjs.org/eslint/-/eslint-6.8.0.tgz",
- "integrity": "sha512-K+Iayyo2LtyYhDSYwz5D5QdWw0hCacNzyq1Y821Xna2xSJj7cijoLLYmLxTQgcgZ9mC61nryMy9S7GRbYpI5Ig==",
- "requires": {
- "@babel/code-frame": "^7.0.0",
- "ajv": "^6.10.0",
- "chalk": "^2.1.0",
- "cross-spawn": "^6.0.5",
- "debug": "^4.0.1",
- "doctrine": "^3.0.0",
- "eslint-scope": "^5.0.0",
- "eslint-utils": "^1.4.3",
- "eslint-visitor-keys": "^1.1.0",
- "espree": "^6.1.2",
- "esquery": "^1.0.1",
- "esutils": "^2.0.2",
- "file-entry-cache": "^5.0.1",
- "functional-red-black-tree": "^1.0.1",
- "glob-parent": "^5.0.0",
- "globals": "^12.1.0",
- "ignore": "^4.0.6",
- "import-fresh": "^3.0.0",
- "imurmurhash": "^0.1.4",
- "inquirer": "^7.0.0",
- "is-glob": "^4.0.0",
- "js-yaml": "^3.13.1",
- "json-stable-stringify-without-jsonify": "^1.0.1",
- "levn": "^0.3.0",
- "lodash": "^4.17.14",
- "minimatch": "^3.0.4",
- "mkdirp": "^0.5.1",
- "natural-compare": "^1.4.0",
- "optionator": "^0.8.3",
- "progress": "^2.0.0",
- "regexpp": "^2.0.1",
- "semver": "^6.1.2",
- "strip-ansi": "^5.2.0",
- "strip-json-comments": "^3.0.1",
- "table": "^5.2.3",
- "text-table": "^0.2.0",
- "v8-compile-cache": "^2.0.3"
- },
- "dependencies": {
- "ansi-regex": {
- "version": "4.1.0",
- "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz",
- "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg=="
- },
- "debug": {
- "version": "4.2.0",
- "resolved": "https://registry.npmjs.org/debug/-/debug-4.2.0.tgz",
- "integrity": "sha512-IX2ncY78vDTjZMFUdmsvIRFY2Cf4FnD0wRs+nQwJU8Lu99/tPFdb0VybiiMTPe3I6rQmwsqQqRBvxU+bZ/I8sg==",
- "requires": {
- "ms": "2.1.2"
- }
- },
- "eslint-utils": {
- "version": "1.4.3",
- "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-1.4.3.tgz",
- "integrity": "sha512-fbBN5W2xdY45KulGXmLHZ3c3FHfVYmKg0IrAKGOkT/464PQsx2UeIzfz1RmEci+KLm1bBaAzZAh8+/E+XAeZ8Q==",
- "requires": {
- "eslint-visitor-keys": "^1.1.0"
- }
- },
- "glob-parent": {
- "version": "5.1.1",
- "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.1.tgz",
- "integrity": "sha512-FnI+VGOpnlGHWZxthPGR+QhR78fuiK0sNLkHQv+bL9fQi57lNNdquIbna/WrfROrolq8GK5Ek6BiMwqL/voRYQ==",
- "requires": {
- "is-glob": "^4.0.1"
- }
- },
- "globals": {
- "version": "12.4.0",
- "resolved": "https://registry.npmjs.org/globals/-/globals-12.4.0.tgz",
- "integrity": "sha512-BWICuzzDvDoH54NHKCseDanAhE3CeDorgDL5MT6LMXXj2WCnd9UC2szdk4AWLfjdgNBCXLUanXYcpBBKOSWGwg==",
- "requires": {
- "type-fest": "^0.8.1"
- }
- },
- "ignore": {
- "version": "4.0.6",
- "resolved": "https://registry.npmjs.org/ignore/-/ignore-4.0.6.tgz",
- "integrity": "sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg=="
- },
- "regexpp": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/regexpp/-/regexpp-2.0.1.tgz",
- "integrity": "sha512-lv0M6+TkDVniA3aD1Eg0DVpfU/booSu7Eev3TDO/mZKHBfVjgCGTV4t4buppESEYDtkArYFOxTJWv6S5C+iaNw=="
- },
- "semver": {
- "version": "6.3.0",
- "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz",
- "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw=="
- },
- "strip-ansi": {
- "version": "5.2.0",
- "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz",
- "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==",
- "requires": {
- "ansi-regex": "^4.1.0"
- }
- },
- "v8-compile-cache": {
- "version": "2.2.0",
- "resolved": "https://registry.npmjs.org/v8-compile-cache/-/v8-compile-cache-2.2.0.tgz",
- "integrity": "sha512-gTpR5XQNKFwOd4clxfnhaqvfqMpqEwr4tOtCyz4MtYZX2JYhfr1JvBFKdS+7K/9rfpZR3VLX+YWBbKoxCgS43Q=="
- }
- }
- },
- "eslint-config-react-app": {
- "version": "5.2.1",
- "resolved": "https://registry.npmjs.org/eslint-config-react-app/-/eslint-config-react-app-5.2.1.tgz",
- "integrity": "sha512-pGIZ8t0mFLcV+6ZirRgYK6RVqUIKRIi9MmgzUEmrIknsn3AdO0I32asO86dJgloHq+9ZPl8UIg8mYrvgP5u2wQ==",
- "requires": {
- "confusing-browser-globals": "^1.0.9"
- }
- },
- "eslint-import-resolver-node": {
- "version": "0.3.4",
- "resolved": "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.4.tgz",
- "integrity": "sha512-ogtf+5AB/O+nM6DIeBUNr2fuT7ot9Qg/1harBfBtaP13ekEWFQEEMP94BCB7zaNW3gyY+8SHYF00rnqYwXKWOA==",
- "requires": {
- "debug": "^2.6.9",
- "resolve": "^1.13.1"
- },
- "dependencies": {
- "debug": {
- "version": "2.6.9",
- "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
- "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
- "requires": {
- "ms": "2.0.0"
- }
- },
- "ms": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
- "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g="
- }
- }
- },
- "eslint-loader": {
- "version": "2.2.1",
- "resolved": "https://registry.npmjs.org/eslint-loader/-/eslint-loader-2.2.1.tgz",
- "integrity": "sha512-RLgV9hoCVsMLvOxCuNjdqOrUqIj9oJg8hF44vzJaYqsAHuY9G2YAeN3joQ9nxP0p5Th9iFSIpKo+SD8KISxXRg==",
- "requires": {
- "loader-fs-cache": "^1.0.0",
- "loader-utils": "^1.0.2",
- "object-assign": "^4.0.1",
- "object-hash": "^1.1.4",
- "rimraf": "^2.6.1"
- },
- "dependencies": {
- "rimraf": {
- "version": "2.7.1",
- "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz",
- "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==",
- "requires": {
- "glob": "^7.1.3"
- }
- }
- }
- },
- "eslint-module-utils": {
- "version": "2.6.0",
- "resolved": "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.6.0.tgz",
- "integrity": "sha512-6j9xxegbqe8/kZY8cYpcp0xhbK0EgJlg3g9mib3/miLaExuuwc3n5UEfSnU6hWMbT0FAYVvDbL9RrRgpUeQIvA==",
- "requires": {
- "debug": "^2.6.9",
- "pkg-dir": "^2.0.0"
- },
- "dependencies": {
- "debug": {
- "version": "2.6.9",
- "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
- "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
- "requires": {
- "ms": "2.0.0"
- }
- },
- "find-up": {
- "version": "2.1.0",
- "resolved": "https://registry.npmjs.org/find-up/-/find-up-2.1.0.tgz",
- "integrity": "sha1-RdG35QbHF93UgndaK3eSCjwMV6c=",
- "requires": {
- "locate-path": "^2.0.0"
- }
- },
- "locate-path": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-2.0.0.tgz",
- "integrity": "sha1-K1aLJl7slExtnA3pw9u7ygNUzY4=",
- "requires": {
- "p-locate": "^2.0.0",
- "path-exists": "^3.0.0"
- }
- },
- "ms": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
- "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g="
- },
- "p-limit": {
- "version": "1.3.0",
- "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-1.3.0.tgz",
- "integrity": "sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==",
- "requires": {
- "p-try": "^1.0.0"
- }
- },
- "p-locate": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-2.0.0.tgz",
- "integrity": "sha1-IKAQOyIqcMj9OcwuWAaA893l7EM=",
- "requires": {
- "p-limit": "^1.1.0"
- }
- },
- "p-try": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/p-try/-/p-try-1.0.0.tgz",
- "integrity": "sha1-y8ec26+P1CKOE/Yh8rGiN8GyB7M="
- },
- "pkg-dir": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-2.0.0.tgz",
- "integrity": "sha1-9tXREJ4Z1j7fQo4L1X4Sd3YVM0s=",
- "requires": {
- "find-up": "^2.1.0"
- }
- }
- }
- },
- "eslint-plugin-flowtype": {
- "version": "3.13.0",
- "resolved": "https://registry.npmjs.org/eslint-plugin-flowtype/-/eslint-plugin-flowtype-3.13.0.tgz",
- "integrity": "sha512-bhewp36P+t7cEV0b6OdmoRWJCBYRiHFlqPZAG1oS3SF+Y0LQkeDvFSM4oxoxvczD1OdONCXMlJfQFiWLcV9urw==",
- "requires": {
- "lodash": "^4.17.15"
- }
- },
- "eslint-plugin-graphql": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/eslint-plugin-graphql/-/eslint-plugin-graphql-4.0.0.tgz",
- "integrity": "sha512-d5tQm24YkVvCEk29ZR5ScsgXqAGCjKlMS8lx3mS7FS/EKsWbkvXQImpvic03EpMIvNTBW5e+2xnHzXB/VHNZJw==",
- "requires": {
- "@babel/runtime": "^7.10.0",
- "graphql-config": "^3.0.2",
- "lodash.flatten": "^4.4.0",
- "lodash.without": "^4.4.0"
- }
- },
- "eslint-plugin-import": {
- "version": "2.22.1",
- "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.22.1.tgz",
- "integrity": "sha512-8K7JjINHOpH64ozkAhpT3sd+FswIZTfMZTjdx052pnWrgRCVfp8op9tbjpAk3DdUeI/Ba4C8OjdC0r90erHEOw==",
- "requires": {
- "array-includes": "^3.1.1",
- "array.prototype.flat": "^1.2.3",
- "contains-path": "^0.1.0",
- "debug": "^2.6.9",
- "doctrine": "1.5.0",
- "eslint-import-resolver-node": "^0.3.4",
- "eslint-module-utils": "^2.6.0",
- "has": "^1.0.3",
- "minimatch": "^3.0.4",
- "object.values": "^1.1.1",
- "read-pkg-up": "^2.0.0",
- "resolve": "^1.17.0",
- "tsconfig-paths": "^3.9.0"
- },
- "dependencies": {
- "debug": {
- "version": "2.6.9",
- "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
- "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
- "requires": {
- "ms": "2.0.0"
- }
- },
- "doctrine": {
- "version": "1.5.0",
- "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-1.5.0.tgz",
- "integrity": "sha1-N53Ocw9hZvds76TmcHoVmwLFpvo=",
- "requires": {
- "esutils": "^2.0.2",
- "isarray": "^1.0.0"
- }
- },
- "ms": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
- "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g="
- }
- }
- },
- "eslint-plugin-jsx-a11y": {
- "version": "6.4.1",
- "resolved": "https://registry.npmjs.org/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.4.1.tgz",
- "integrity": "sha512-0rGPJBbwHoGNPU73/QCLP/vveMlM1b1Z9PponxO87jfr6tuH5ligXbDT6nHSSzBC8ovX2Z+BQu7Bk5D/Xgq9zg==",
- "requires": {
- "@babel/runtime": "^7.11.2",
- "aria-query": "^4.2.2",
- "array-includes": "^3.1.1",
- "ast-types-flow": "^0.0.7",
- "axe-core": "^4.0.2",
- "axobject-query": "^2.2.0",
- "damerau-levenshtein": "^1.0.6",
- "emoji-regex": "^9.0.0",
- "has": "^1.0.3",
- "jsx-ast-utils": "^3.1.0",
- "language-tags": "^1.0.5"
- },
- "dependencies": {
- "@babel/runtime": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.1.tgz",
- "integrity": "sha512-J5AIf3vPj3UwXaAzb5j1xM4WAQDX3EMgemF8rjCP3SoW09LfRKAXQKt6CoVYl230P6iWdRcBbnLDDdnqWxZSCA==",
- "requires": {
- "regenerator-runtime": "^0.13.4"
- }
- },
- "emoji-regex": {
- "version": "9.2.0",
- "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.0.tgz",
- "integrity": "sha512-DNc3KFPK18bPdElMJnf/Pkv5TXhxFU3YFDEuGLDRtPmV4rkmCjBkCSEp22u6rBHdSN9Vlp/GK7k98prmE1Jgug=="
- }
- }
- },
- "eslint-plugin-react": {
- "version": "7.21.5",
- "resolved": "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.21.5.tgz",
- "integrity": "sha512-8MaEggC2et0wSF6bUeywF7qQ46ER81irOdWS4QWxnnlAEsnzeBevk1sWh7fhpCghPpXb+8Ks7hvaft6L/xsR6g==",
- "requires": {
- "array-includes": "^3.1.1",
- "array.prototype.flatmap": "^1.2.3",
- "doctrine": "^2.1.0",
- "has": "^1.0.3",
- "jsx-ast-utils": "^2.4.1 || ^3.0.0",
- "object.entries": "^1.1.2",
- "object.fromentries": "^2.0.2",
- "object.values": "^1.1.1",
- "prop-types": "^15.7.2",
- "resolve": "^1.18.1",
- "string.prototype.matchall": "^4.0.2"
- },
- "dependencies": {
- "doctrine": {
- "version": "2.1.0",
- "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz",
- "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==",
- "requires": {
- "esutils": "^2.0.2"
- }
- },
- "resolve": {
- "version": "1.18.1",
- "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.18.1.tgz",
- "integrity": "sha512-lDfCPaMKfOJXjy0dPayzPdF1phampNWr3qFCjAu+rw/qbQmr5jWH5xN2hwh9QKfw9E5v4hwV7A+jrCmL8yjjqA==",
- "requires": {
- "is-core-module": "^2.0.0",
- "path-parse": "^1.0.6"
- }
- }
- }
- },
- "eslint-plugin-react-hooks": {
- "version": "1.7.0",
- "resolved": "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-1.7.0.tgz",
- "integrity": "sha512-iXTCFcOmlWvw4+TOE8CLWj6yX1GwzT0Y6cUfHHZqWnSk144VmVIRcVGtUAzrLES7C798lmvnt02C7rxaOX1HNA=="
- },
- "eslint-scope": {
- "version": "5.1.1",
- "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz",
- "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==",
- "requires": {
- "esrecurse": "^4.3.0",
- "estraverse": "^4.1.1"
- }
- },
- "eslint-utils": {
- "version": "2.1.0",
- "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-2.1.0.tgz",
- "integrity": "sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==",
- "requires": {
- "eslint-visitor-keys": "^1.1.0"
- }
- },
- "eslint-visitor-keys": {
- "version": "1.3.0",
- "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz",
- "integrity": "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ=="
- },
- "espree": {
- "version": "6.2.1",
- "resolved": "https://registry.npmjs.org/espree/-/espree-6.2.1.tgz",
- "integrity": "sha512-ysCxRQY3WaXJz9tdbWOwuWr5Y/XrPTGX9Kiz3yoUXwW0VZ4w30HTkQLaGx/+ttFjF8i+ACbArnB4ce68a9m5hw==",
- "requires": {
- "acorn": "^7.1.1",
- "acorn-jsx": "^5.2.0",
- "eslint-visitor-keys": "^1.1.0"
- }
- },
- "esprima": {
- "version": "4.0.1",
- "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz",
- "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A=="
- },
- "esquery": {
- "version": "1.3.1",
- "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.3.1.tgz",
- "integrity": "sha512-olpvt9QG0vniUBZspVRN6lwB7hOZoTRtT+jzR+tS4ffYx2mzbw+z0XCOk44aaLYKApNX5nMm+E+P6o25ip/DHQ==",
- "requires": {
- "estraverse": "^5.1.0"
- },
- "dependencies": {
- "estraverse": {
- "version": "5.2.0",
- "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.2.0.tgz",
- "integrity": "sha512-BxbNGGNm0RyRYvUdHpIwv9IWzeM9XClbOxwoATuFdOE7ZE6wHL+HQ5T8hoPM+zHvmKzzsEqhgy0GrQ5X13afiQ=="
- }
- }
- },
- "esrecurse": {
- "version": "4.3.0",
- "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz",
- "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==",
- "requires": {
- "estraverse": "^5.2.0"
- },
- "dependencies": {
- "estraverse": {
- "version": "5.2.0",
- "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.2.0.tgz",
- "integrity": "sha512-BxbNGGNm0RyRYvUdHpIwv9IWzeM9XClbOxwoATuFdOE7ZE6wHL+HQ5T8hoPM+zHvmKzzsEqhgy0GrQ5X13afiQ=="
- }
- }
- },
- "estraverse": {
- "version": "4.3.0",
- "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz",
- "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw=="
- },
- "esutils": {
- "version": "2.0.3",
- "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz",
- "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g=="
- },
- "etag": {
- "version": "1.8.1",
- "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz",
- "integrity": "sha1-Qa4u62XvpiJorr/qg6x9eSmbCIc="
- },
- "eval": {
- "version": "0.1.4",
- "resolved": "https://registry.npmjs.org/eval/-/eval-0.1.4.tgz",
- "integrity": "sha512-npGsebJejyjMRnLdFu+T/97dnigqIU0Ov3IGrZ8ygd1v7RL1vGkEKtvyWZobqUH1AQgKlg0Yqqe2BtMA9/QZLw==",
- "requires": {
- "require-like": ">= 0.1.1"
- }
- },
- "event-source-polyfill": {
- "version": "1.0.21",
- "resolved": "https://registry.npmjs.org/event-source-polyfill/-/event-source-polyfill-1.0.21.tgz",
- "integrity": "sha512-Mz8LO8hPgg2X6VcSXmq7gvgFU3kUnTZb4zU3tTYDx8cJHRXP15tjdpGUiP2IUUwOqAGZ1TEfe+KagjMXfFgwLA=="
- },
- "eventemitter3": {
- "version": "3.1.2",
- "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-3.1.2.tgz",
- "integrity": "sha512-tvtQIeLVHjDkJYnzf2dgVMxfuSGJeM/7UCG17TT4EumTfNtF+0nebF/4zWOIkCreAbtNqhGEboB6BWrwqNaw4Q=="
- },
- "events": {
- "version": "3.2.0",
- "resolved": "https://registry.npmjs.org/events/-/events-3.2.0.tgz",
- "integrity": "sha512-/46HWwbfCX2xTawVfkKLGxMifJYQBWMwY1mjywRtb4c9x8l5NP3KoJtnIOiL1hfdRkIuYhETxQlo62IF8tcnlg=="
- },
- "eventsource": {
- "version": "0.1.6",
- "resolved": "https://registry.npmjs.org/eventsource/-/eventsource-0.1.6.tgz",
- "integrity": "sha1-Cs7ehJ7X3RzMMsgRuxG5RNTykjI=",
- "requires": {
- "original": ">=0.0.5"
- }
- },
- "evp_bytestokey": {
- "version": "1.0.3",
- "resolved": "https://registry.npmjs.org/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz",
- "integrity": "sha512-/f2Go4TognH/KvCISP7OUsHn85hT9nUkxxA9BEWxFn+Oj9o8ZNLm/40hdlgSLyuOimsrTKLUMEorQexp/aPQeA==",
- "requires": {
- "md5.js": "^1.3.4",
- "safe-buffer": "^5.1.1"
- }
- },
- "execa": {
- "version": "4.1.0",
- "resolved": "https://registry.npmjs.org/execa/-/execa-4.1.0.tgz",
- "integrity": "sha512-j5W0//W7f8UxAn8hXVnwG8tLwdiUy4FJLcSupCg6maBYZDpyBvTApK7KyuI4bKj8KOh1r2YH+6ucuYtJv1bTZA==",
- "requires": {
- "cross-spawn": "^7.0.0",
- "get-stream": "^5.0.0",
- "human-signals": "^1.1.1",
- "is-stream": "^2.0.0",
- "merge-stream": "^2.0.0",
- "npm-run-path": "^4.0.0",
- "onetime": "^5.1.0",
- "signal-exit": "^3.0.2",
- "strip-final-newline": "^2.0.0"
- },
- "dependencies": {
- "cross-spawn": {
- "version": "7.0.3",
- "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz",
- "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==",
- "requires": {
- "path-key": "^3.1.0",
- "shebang-command": "^2.0.0",
- "which": "^2.0.1"
- }
- },
- "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"
- }
- },
- "path-key": {
- "version": "3.1.1",
- "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz",
- "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q=="
- },
- "shebang-command": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz",
- "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==",
- "requires": {
- "shebang-regex": "^3.0.0"
- }
- },
- "shebang-regex": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz",
- "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A=="
- },
- "which": {
- "version": "2.0.2",
- "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz",
- "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==",
- "requires": {
- "isexe": "^2.0.0"
- }
- }
- }
- },
- "expand-brackets": {
- "version": "2.1.4",
- "resolved": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-2.1.4.tgz",
- "integrity": "sha1-t3c14xXOMPa27/D4OwQVGiJEliI=",
- "requires": {
- "debug": "^2.3.3",
- "define-property": "^0.2.5",
- "extend-shallow": "^2.0.1",
- "posix-character-classes": "^0.1.0",
- "regex-not": "^1.0.0",
- "snapdragon": "^0.8.1",
- "to-regex": "^3.0.1"
- },
- "dependencies": {
- "debug": {
- "version": "2.6.9",
- "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
- "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
- "requires": {
- "ms": "2.0.0"
- }
- },
- "define-property": {
- "version": "0.2.5",
- "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz",
- "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=",
- "requires": {
- "is-descriptor": "^0.1.0"
- }
- },
- "extend-shallow": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz",
- "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=",
- "requires": {
- "is-extendable": "^0.1.0"
- }
- },
- "ms": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
- "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g="
- }
- }
- },
- "expand-tilde": {
- "version": "2.0.2",
- "resolved": "https://registry.npmjs.org/expand-tilde/-/expand-tilde-2.0.2.tgz",
- "integrity": "sha1-l+gBqgUt8CRU3kawK/YhZCzchQI=",
- "requires": {
- "homedir-polyfill": "^1.0.1"
- }
- },
- "express": {
- "version": "4.17.1",
- "resolved": "https://registry.npmjs.org/express/-/express-4.17.1.tgz",
- "integrity": "sha512-mHJ9O79RqluphRrcw2X/GTh3k9tVv8YcoyY4Kkh4WDMUYKRZUq0h1o0w2rrrxBqM7VoeUVqgb27xlEMXTnYt4g==",
- "requires": {
- "accepts": "~1.3.7",
- "array-flatten": "1.1.1",
- "body-parser": "1.19.0",
- "content-disposition": "0.5.3",
- "content-type": "~1.0.4",
- "cookie": "0.4.0",
- "cookie-signature": "1.0.6",
- "debug": "2.6.9",
- "depd": "~1.1.2",
- "encodeurl": "~1.0.2",
- "escape-html": "~1.0.3",
- "etag": "~1.8.1",
- "finalhandler": "~1.1.2",
- "fresh": "0.5.2",
- "merge-descriptors": "1.0.1",
- "methods": "~1.1.2",
- "on-finished": "~2.3.0",
- "parseurl": "~1.3.3",
- "path-to-regexp": "0.1.7",
- "proxy-addr": "~2.0.5",
- "qs": "6.7.0",
- "range-parser": "~1.2.1",
- "safe-buffer": "5.1.2",
- "send": "0.17.1",
- "serve-static": "1.14.1",
- "setprototypeof": "1.1.1",
- "statuses": "~1.5.0",
- "type-is": "~1.6.18",
- "utils-merge": "1.0.1",
- "vary": "~1.1.2"
- },
- "dependencies": {
- "debug": {
- "version": "2.6.9",
- "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
- "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
- "requires": {
- "ms": "2.0.0"
- }
- },
- "ms": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
- "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g="
- }
- }
- },
- "express-graphql": {
- "version": "0.9.0",
- "resolved": "https://registry.npmjs.org/express-graphql/-/express-graphql-0.9.0.tgz",
- "integrity": "sha512-wccd9Lb6oeJ8yHpUs/8LcnGjFUUQYmOG9A5BNLybRdCzGw0PeUrtBxsIR8bfiur6uSW4OvPkVDoYH06z6/N9+w==",
- "requires": {
- "accepts": "^1.3.7",
- "content-type": "^1.0.4",
- "http-errors": "^1.7.3",
- "raw-body": "^2.4.1"
- },
- "dependencies": {
- "http-errors": {
- "version": "1.8.0",
- "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.8.0.tgz",
- "integrity": "sha512-4I8r0C5JDhT5VkvI47QktDW75rNlGVsUf/8hzjCC/wkWI/jdTRmBb9aI7erSG82r1bjKY3F6k28WnsVxB1C73A==",
- "requires": {
- "depd": "~1.1.2",
- "inherits": "2.0.4",
- "setprototypeof": "1.2.0",
- "statuses": ">= 1.5.0 < 2",
- "toidentifier": "1.0.0"
- }
- },
- "raw-body": {
- "version": "2.4.1",
- "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.4.1.tgz",
- "integrity": "sha512-9WmIKF6mkvA0SLmA2Knm9+qj89e+j1zqgyn8aXGd7+nAduPoqgI9lO57SAZNn/Byzo5P7JhXTyg9PzaJbH73bA==",
- "requires": {
- "bytes": "3.1.0",
- "http-errors": "1.7.3",
- "iconv-lite": "0.4.24",
- "unpipe": "1.0.0"
- },
- "dependencies": {
- "http-errors": {
- "version": "1.7.3",
- "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.7.3.tgz",
- "integrity": "sha512-ZTTX0MWrsQ2ZAhA1cejAwDLycFsd7I7nVtnkT3Ol0aqodaKW+0CTZDQ1uBv5whptCnc8e8HeRRJxRs0kmm/Qfw==",
- "requires": {
- "depd": "~1.1.2",
- "inherits": "2.0.4",
- "setprototypeof": "1.1.1",
- "statuses": ">= 1.5.0 < 2",
- "toidentifier": "1.0.0"
- }
- },
- "setprototypeof": {
- "version": "1.1.1",
- "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.1.tgz",
- "integrity": "sha512-JvdAWfbXeIGaZ9cILp38HntZSFSo3mWg6xGcJJsd+d4aRMOqauag1C63dJfDw7OaMYwEbHMOxEZ1lqVRYP2OAw=="
- }
- }
- },
- "setprototypeof": {
- "version": "1.2.0",
- "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz",
- "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw=="
- }
- }
- },
- "ext": {
- "version": "1.4.0",
- "resolved": "https://registry.npmjs.org/ext/-/ext-1.4.0.tgz",
- "integrity": "sha512-Key5NIsUxdqKg3vIsdw9dSuXpPCQ297y6wBjL30edxwPgt2E44WcWBZey/ZvUc6sERLTxKdyCu4gZFmUbk1Q7A==",
- "requires": {
- "type": "^2.0.0"
- },
- "dependencies": {
- "type": {
- "version": "2.1.0",
- "resolved": "https://registry.npmjs.org/type/-/type-2.1.0.tgz",
- "integrity": "sha512-G9absDWvhAWCV2gmF1zKud3OyC61nZDwWvBL2DApaVFogI07CprggiQAOOjvp2NRjYWFzPyu7vwtDrQFq8jeSA=="
- }
- }
- },
- "extend": {
- "version": "3.0.2",
- "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz",
- "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g=="
- },
- "extend-shallow": {
- "version": "3.0.2",
- "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz",
- "integrity": "sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=",
- "requires": {
- "assign-symbols": "^1.0.0",
- "is-extendable": "^1.0.1"
- },
- "dependencies": {
- "is-extendable": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz",
- "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==",
- "requires": {
- "is-plain-object": "^2.0.4"
- }
- }
- }
- },
- "external-editor": {
- "version": "3.1.0",
- "resolved": "https://registry.npmjs.org/external-editor/-/external-editor-3.1.0.tgz",
- "integrity": "sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==",
- "requires": {
- "chardet": "^0.7.0",
- "iconv-lite": "^0.4.24",
- "tmp": "^0.0.33"
- },
- "dependencies": {
- "tmp": {
- "version": "0.0.33",
- "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.0.33.tgz",
- "integrity": "sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==",
- "requires": {
- "os-tmpdir": "~1.0.2"
- }
- }
- }
- },
- "extglob": {
- "version": "2.0.4",
- "resolved": "https://registry.npmjs.org/extglob/-/extglob-2.0.4.tgz",
- "integrity": "sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==",
- "requires": {
- "array-unique": "^0.3.2",
- "define-property": "^1.0.0",
- "expand-brackets": "^2.1.4",
- "extend-shallow": "^2.0.1",
- "fragment-cache": "^0.2.1",
- "regex-not": "^1.0.0",
- "snapdragon": "^0.8.1",
- "to-regex": "^3.0.1"
- },
- "dependencies": {
- "define-property": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz",
- "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=",
- "requires": {
- "is-descriptor": "^1.0.0"
- }
- },
- "extend-shallow": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz",
- "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=",
- "requires": {
- "is-extendable": "^0.1.0"
- }
- },
- "is-accessor-descriptor": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz",
- "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==",
- "requires": {
- "kind-of": "^6.0.0"
- }
- },
- "is-data-descriptor": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz",
- "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==",
- "requires": {
- "kind-of": "^6.0.0"
- }
- },
- "is-descriptor": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz",
- "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==",
- "requires": {
- "is-accessor-descriptor": "^1.0.0",
- "is-data-descriptor": "^1.0.0",
- "kind-of": "^6.0.2"
- }
- }
- }
- },
- "fast-deep-equal": {
- "version": "3.1.3",
- "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz",
- "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q=="
- },
- "fast-glob": {
- "version": "3.2.4",
- "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.4.tgz",
- "integrity": "sha512-kr/Oo6PX51265qeuCYsyGypiO5uJFgBS0jksyG7FUeCyQzNwYnzrNIMR1NXfkZXsMYXYLRAHgISHBz8gQcxKHQ==",
- "requires": {
- "@nodelib/fs.stat": "^2.0.2",
- "@nodelib/fs.walk": "^1.2.3",
- "glob-parent": "^5.1.0",
- "merge2": "^1.3.0",
- "micromatch": "^4.0.2",
- "picomatch": "^2.2.1"
- },
- "dependencies": {
- "glob-parent": {
- "version": "5.1.1",
- "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.1.tgz",
- "integrity": "sha512-FnI+VGOpnlGHWZxthPGR+QhR78fuiK0sNLkHQv+bL9fQi57lNNdquIbna/WrfROrolq8GK5Ek6BiMwqL/voRYQ==",
- "requires": {
- "is-glob": "^4.0.1"
- }
- }
- }
- },
- "fast-json-stable-stringify": {
- "version": "2.1.0",
- "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz",
- "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw=="
- },
- "fast-levenshtein": {
- "version": "2.0.6",
- "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz",
- "integrity": "sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc="
- },
- "fastest-levenshtein": {
- "version": "1.0.12",
- "resolved": "https://registry.npmjs.org/fastest-levenshtein/-/fastest-levenshtein-1.0.12.tgz",
- "integrity": "sha512-On2N+BpYJ15xIC974QNVuYGMOlEVt4s0EOI3wwMqOmK1fdDY+FN/zltPV8vosq4ad4c/gJ1KHScUn/6AWIgiow=="
- },
- "fastparse": {
- "version": "1.1.2",
- "resolved": "https://registry.npmjs.org/fastparse/-/fastparse-1.1.2.tgz",
- "integrity": "sha512-483XLLxTVIwWK3QTrMGRqUfUpoOs/0hbQrl2oz4J0pAcm3A3bu84wxTFqGqkJzewCLdME38xJLJAxBABfQT8sQ=="
- },
- "fastq": {
- "version": "1.9.0",
- "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.9.0.tgz",
- "integrity": "sha512-i7FVWL8HhVY+CTkwFxkN2mk3h+787ixS5S63eb78diVRc1MCssarHq3W5cj0av7YDSwmaV928RNag+U1etRQ7w==",
- "requires": {
- "reusify": "^1.0.4"
- }
- },
- "faye-websocket": {
- "version": "0.11.3",
- "resolved": "https://registry.npmjs.org/faye-websocket/-/faye-websocket-0.11.3.tgz",
- "integrity": "sha512-D2y4bovYpzziGgbHYtGCMjlJM36vAl/y+xUyn1C+FVx8szd1E+86KwVw6XvYSzOP8iMpm1X0I4xJD+QtUb36OA==",
- "requires": {
- "websocket-driver": ">=0.5.1"
- }
- },
- "fd": {
- "version": "0.0.3",
- "resolved": "https://registry.npmjs.org/fd/-/fd-0.0.3.tgz",
- "integrity": "sha512-iAHrIslQb3U68OcMSP0kkNWabp7sSN6d2TBSb2JO3gcLJVDd4owr/hKM4SFJovFOUeeXeItjYgouEDTMWiVAnA=="
- },
- "figgy-pudding": {
- "version": "3.5.2",
- "resolved": "https://registry.npmjs.org/figgy-pudding/-/figgy-pudding-3.5.2.tgz",
- "integrity": "sha512-0btnI/H8f2pavGMN8w40mlSKOfTK2SVJmBfBeVIj3kNw0swwgzyRq0d5TJVOwodFmtvpPeWPN/MCcfuWF0Ezbw=="
- },
- "figures": {
- "version": "3.2.0",
- "resolved": "https://registry.npmjs.org/figures/-/figures-3.2.0.tgz",
- "integrity": "sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==",
- "requires": {
- "escape-string-regexp": "^1.0.5"
- }
- },
- "file-entry-cache": {
- "version": "5.0.1",
- "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-5.0.1.tgz",
- "integrity": "sha512-bCg29ictuBaKUwwArK4ouCaqDgLZcysCFLmM/Yn/FDoqndh/9vNuQfXRDvTuXKLxfD/JtZQGKFT8MGcJBK644g==",
- "requires": {
- "flat-cache": "^2.0.1"
- }
- },
- "file-loader": {
- "version": "1.1.11",
- "resolved": "https://registry.npmjs.org/file-loader/-/file-loader-1.1.11.tgz",
- "integrity": "sha512-TGR4HU7HUsGg6GCOPJnFk06RhWgEWFLAGWiT6rcD+GRC2keU3s9RGJ+b3Z6/U73jwwNb2gKLJ7YCrp+jvU4ALg==",
- "requires": {
- "loader-utils": "^1.0.2",
- "schema-utils": "^0.4.5"
- },
- "dependencies": {
- "schema-utils": {
- "version": "0.4.7",
- "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-0.4.7.tgz",
- "integrity": "sha512-v/iwU6wvwGK8HbU9yi3/nhGzP0yGSuhQMzL6ySiec1FSrZZDkhm4noOSWzrNFo/jEc+SJY6jRTwuwbSXJPDUnQ==",
- "requires": {
- "ajv": "^6.1.0",
- "ajv-keywords": "^3.1.0"
- }
- }
- }
- },
- "file-type": {
- "version": "12.4.2",
- "resolved": "https://registry.npmjs.org/file-type/-/file-type-12.4.2.tgz",
- "integrity": "sha512-UssQP5ZgIOKelfsaB5CuGAL+Y+q7EmONuiwF3N5HAH0t27rvrttgi6Ra9k/+DVaY9UF6+ybxu5pOXLUdA8N7Vg=="
- },
- "file-uri-to-path": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz",
- "integrity": "sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==",
- "optional": true
- },
- "filesize": {
- "version": "3.5.11",
- "resolved": "https://registry.npmjs.org/filesize/-/filesize-3.5.11.tgz",
- "integrity": "sha512-ZH7loueKBoDb7yG9esn1U+fgq7BzlzW6NRi5/rMdxIZ05dj7GFD/Xc5rq2CDt5Yq86CyfSYVyx4242QQNZbx1g=="
- },
- "fill-range": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz",
- "integrity": "sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=",
- "requires": {
- "extend-shallow": "^2.0.1",
- "is-number": "^3.0.0",
- "repeat-string": "^1.6.1",
- "to-regex-range": "^2.1.0"
- },
- "dependencies": {
- "extend-shallow": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz",
- "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=",
- "requires": {
- "is-extendable": "^0.1.0"
- }
- }
- }
- },
- "finalhandler": {
- "version": "1.1.2",
- "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.1.2.tgz",
- "integrity": "sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA==",
- "requires": {
- "debug": "2.6.9",
- "encodeurl": "~1.0.2",
- "escape-html": "~1.0.3",
- "on-finished": "~2.3.0",
- "parseurl": "~1.3.3",
- "statuses": "~1.5.0",
- "unpipe": "~1.0.0"
- },
- "dependencies": {
- "debug": {
- "version": "2.6.9",
- "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
- "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
- "requires": {
- "ms": "2.0.0"
- }
- },
- "ms": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
- "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g="
- }
- }
- },
- "find-cache-dir": {
- "version": "3.3.1",
- "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.3.1.tgz",
- "integrity": "sha512-t2GDMt3oGC/v+BMwzmllWDuJF/xcDtE5j/fCGbqDD7OLuJkj0cfh1YSA5VKPvwMeLFLNDBkwOKZ2X85jGLVftQ==",
- "requires": {
- "commondir": "^1.0.1",
- "make-dir": "^3.0.2",
- "pkg-dir": "^4.1.0"
- },
- "dependencies": {
- "find-up": {
- "version": "4.1.0",
- "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz",
- "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==",
- "requires": {
- "locate-path": "^5.0.0",
- "path-exists": "^4.0.0"
- }
- },
- "locate-path": {
- "version": "5.0.0",
- "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz",
- "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==",
- "requires": {
- "p-locate": "^4.1.0"
- }
- },
- "make-dir": {
- "version": "3.1.0",
- "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz",
- "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==",
- "requires": {
- "semver": "^6.0.0"
- }
- },
- "p-locate": {
- "version": "4.1.0",
- "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz",
- "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==",
- "requires": {
- "p-limit": "^2.2.0"
- }
- },
- "path-exists": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz",
- "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w=="
- },
- "pkg-dir": {
- "version": "4.2.0",
- "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz",
- "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==",
- "requires": {
- "find-up": "^4.0.0"
- }
- },
- "semver": {
- "version": "6.3.0",
- "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz",
- "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw=="
- }
- }
- },
- "find-root": {
- "version": "1.1.0",
- "resolved": "https://registry.npmjs.org/find-root/-/find-root-1.1.0.tgz",
- "integrity": "sha512-NKfW6bec6GfKc0SGx1e07QZY9PE99u0Bft/0rzSD5k3sO/vwkVUpDUKVm5Gpp5Ue3YfShPFTX2070tDs5kB9Ng=="
- },
- "find-up": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz",
- "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==",
- "requires": {
- "locate-path": "^3.0.0"
- }
- },
- "flat-cache": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-2.0.1.tgz",
- "integrity": "sha512-LoQe6yDuUMDzQAEH8sgmh4Md6oZnc/7PjtwjNFSzveXqSHt6ka9fPBuso7IGf9Rz4uqnSnWiFH2B/zj24a5ReA==",
- "requires": {
- "flatted": "^2.0.0",
- "rimraf": "2.6.3",
- "write": "1.0.3"
- },
- "dependencies": {
- "rimraf": {
- "version": "2.6.3",
- "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.6.3.tgz",
- "integrity": "sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA==",
- "requires": {
- "glob": "^7.1.3"
- }
- }
- }
- },
- "flatted": {
- "version": "2.0.2",
- "resolved": "https://registry.npmjs.org/flatted/-/flatted-2.0.2.tgz",
- "integrity": "sha512-r5wGx7YeOwNWNlCA0wQ86zKyDLMQr+/RB8xy74M4hTphfmjlijTSSXGuH8rnvKZnfT9i+75zmd8jcKdMR4O6jA=="
- },
- "flush-write-stream": {
- "version": "1.1.1",
- "resolved": "https://registry.npmjs.org/flush-write-stream/-/flush-write-stream-1.1.1.tgz",
- "integrity": "sha512-3Z4XhFZ3992uIq0XOqb9AreonueSYphE6oYbpt5+3u06JWklbsPkNv3ZKkP9Bz/r+1MWCaMoSQ28P85+1Yc77w==",
- "requires": {
- "inherits": "^2.0.3",
- "readable-stream": "^2.3.6"
- }
- },
- "follow-redirects": {
- "version": "1.13.0",
- "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.13.0.tgz",
- "integrity": "sha512-aq6gF1BEKje4a9i9+5jimNFIpq4Q1WiwBToeRK5NvZBd/TRsmW8BsJfOEGkr76TbOyPVD3OVDN910EcUNtRYEA=="
- },
- "for-in": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz",
- "integrity": "sha1-gQaNKVqBQuwKxybG4iAMMPttXoA="
- },
- "form-data": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/form-data/-/form-data-3.0.0.tgz",
- "integrity": "sha512-CKMFDglpbMi6PyN+brwB9Q/GOw0eAnsrEZDgcsH5Krhz5Od/haKHAX0NmQfha2zPPz0JpWzA7GJHGSnvCRLWsg==",
- "requires": {
- "asynckit": "^0.4.0",
- "combined-stream": "^1.0.8",
- "mime-types": "^2.1.12"
- }
- },
- "forwarded": {
- "version": "0.1.2",
- "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.1.2.tgz",
- "integrity": "sha1-mMI9qxF1ZXuMBXPozszZGw/xjIQ="
- },
- "fragment-cache": {
- "version": "0.2.1",
- "resolved": "https://registry.npmjs.org/fragment-cache/-/fragment-cache-0.2.1.tgz",
- "integrity": "sha1-QpD60n8T6Jvn8zeZxrxaCr//DRk=",
- "requires": {
- "map-cache": "^0.2.2"
- }
- },
- "fresh": {
- "version": "0.5.2",
- "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz",
- "integrity": "sha1-PYyt2Q2XZWn6g1qx+OSyOhBWBac="
- },
- "from2": {
- "version": "2.3.0",
- "resolved": "https://registry.npmjs.org/from2/-/from2-2.3.0.tgz",
- "integrity": "sha1-i/tVAr3kpNNs/e6gB/zKIdfjgq8=",
- "requires": {
- "inherits": "^2.0.1",
- "readable-stream": "^2.0.0"
- }
- },
- "fs-exists-cached": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/fs-exists-cached/-/fs-exists-cached-1.0.0.tgz",
- "integrity": "sha1-zyVVTKBQ3EmuZla0HeQiWJidy84="
- },
- "fs-extra": {
- "version": "8.1.0",
- "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-8.1.0.tgz",
- "integrity": "sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==",
- "requires": {
- "graceful-fs": "^4.2.0",
- "jsonfile": "^4.0.0",
- "universalify": "^0.1.0"
- }
- },
- "fs-minipass": {
- "version": "2.1.0",
- "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-2.1.0.tgz",
- "integrity": "sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==",
- "requires": {
- "minipass": "^3.0.0"
- }
- },
- "fs-write-stream-atomic": {
- "version": "1.0.10",
- "resolved": "https://registry.npmjs.org/fs-write-stream-atomic/-/fs-write-stream-atomic-1.0.10.tgz",
- "integrity": "sha1-tH31NJPvkR33VzHnCp3tAYnbQMk=",
- "requires": {
- "graceful-fs": "^4.1.2",
- "iferr": "^0.1.5",
- "imurmurhash": "^0.1.4",
- "readable-stream": "1 || 2"
- }
- },
- "fs.realpath": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz",
- "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8="
- },
- "fsevents": {
- "version": "1.2.13",
- "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-1.2.13.tgz",
- "integrity": "sha512-oWb1Z6mkHIskLzEJ/XWX0srkpkTQ7vaopMQkyaEIoq0fmtFVxOthb8cCxeT+p3ynTdkk/RZwbgG4brR5BeWECw==",
- "optional": true,
- "requires": {
- "bindings": "^1.5.0",
- "nan": "^2.12.1"
- }
- },
- "function-bind": {
- "version": "1.1.1",
- "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz",
- "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A=="
- },
- "functional-red-black-tree": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz",
- "integrity": "sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc="
- },
- "gatsby": {
- "version": "2.25.1",
- "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-2.25.1.tgz",
- "integrity": "sha512-2MLGL0MooLGmGQhSjIjq+mH95lE3PbrtZ8xgcmN1JOsjR/dJ+Fx/BoZC3CdqPku/zflMNlCb99vuB2HQaXiRdg==",
- "requires": {
- "@babel/code-frame": "^7.10.4",
- "@babel/core": "^7.11.6",
- "@babel/parser": "^7.11.5",
- "@babel/runtime": "^7.11.2",
- "@babel/traverse": "^7.11.5",
- "@babel/types": "^7.11.5",
- "@hapi/joi": "^15.1.1",
- "@mikaelkristiansson/domready": "^1.0.10",
- "@nodelib/fs.walk": "^1.2.4",
- "@pieh/friendly-errors-webpack-plugin": "1.7.0-chalk-2",
- "@pmmmwh/react-refresh-webpack-plugin": "^0.4.1",
- "@reach/router": "^1.3.4",
- "@types/http-proxy": "^1.17.4",
- "@typescript-eslint/eslint-plugin": "^2.24.0",
- "@typescript-eslint/parser": "^2.24.0",
- "address": "1.1.2",
- "autoprefixer": "^9.8.4",
- "axios": "^0.20.0",
- "babel-core": "7.0.0-bridge.0",
- "babel-eslint": "^10.1.0",
- "babel-loader": "^8.1.0",
- "babel-plugin-add-module-exports": "^0.3.3",
- "babel-plugin-dynamic-import-node": "^2.3.3",
- "babel-plugin-lodash": "3.3.4",
- "babel-plugin-remove-graphql-queries": "^2.9.20",
- "babel-preset-gatsby": "^0.5.15",
- "better-opn": "^2.0.0",
- "better-queue": "^3.8.10",
- "bluebird": "^3.7.2",
- "body-parser": "^1.19.0",
- "browserslist": "^4.12.2",
- "cache-manager": "^2.11.1",
- "cache-manager-fs-hash": "^0.0.9",
- "chalk": "^2.4.2",
- "chokidar": "^3.4.2",
- "common-tags": "^1.8.0",
- "compression": "^1.7.4",
- "convert-hrtime": "^3.0.0",
- "copyfiles": "^2.3.0",
- "core-js": "^3.6.5",
- "cors": "^2.8.5",
- "css-loader": "^1.0.1",
- "date-fns": "^2.14.0",
- "debug": "^3.2.6",
- "del": "^5.1.0",
- "detect-port": "^1.3.0",
- "devcert": "^1.1.3",
- "dotenv": "^8.2.0",
- "eslint": "^6.8.0",
- "eslint-config-react-app": "^5.2.1",
- "eslint-loader": "^2.2.1",
- "eslint-plugin-flowtype": "^3.13.0",
- "eslint-plugin-graphql": "^4.0.0",
- "eslint-plugin-import": "^2.22.0",
- "eslint-plugin-jsx-a11y": "^6.3.1",
- "eslint-plugin-react": "^7.20.6",
- "eslint-plugin-react-hooks": "^1.7.0",
- "event-source-polyfill": "^1.0.15",
- "execa": "^4.0.3",
- "express": "^4.17.1",
- "express-graphql": "^0.9.0",
- "fastest-levenshtein": "^1.0.12",
- "file-loader": "^1.1.11",
- "find-cache-dir": "^3.3.1",
- "fs-exists-cached": "1.0.0",
- "fs-extra": "^8.1.0",
- "gatsby-cli": "^2.12.115",
- "gatsby-core-utils": "^1.3.23",
- "gatsby-graphiql-explorer": "^0.4.15",
- "gatsby-legacy-polyfills": "^0.0.6",
- "gatsby-link": "^2.4.16",
- "gatsby-plugin-page-creator": "^2.3.34",
- "gatsby-plugin-typescript": "^2.5.0",
- "gatsby-plugin-utils": "^0.2.40",
- "gatsby-react-router-scroll": "^3.0.15",
- "gatsby-telemetry": "^1.3.39",
- "glob": "^7.1.6",
- "got": "8.3.2",
- "graphql": "^14.6.0",
- "graphql-compose": "^6.3.8",
- "graphql-playground-middleware-express": "^1.7.18",
- "hasha": "^5.2.0",
- "http-proxy": "^1.18.1",
- "invariant": "^2.2.4",
- "is-relative": "^1.0.0",
- "is-relative-url": "^3.0.0",
- "jest-worker": "^24.9.0",
- "joi": "^17.2.1",
- "json-loader": "^0.5.7",
- "json-stringify-safe": "^5.0.1",
- "latest-version": "5.1.0",
- "lodash": "^4.17.20",
- "md5-file": "^5.0.0",
- "meant": "^1.0.1",
- "micromatch": "^4.0.2",
- "mime": "^2.4.6",
- "mini-css-extract-plugin": "^0.11.2",
- "mitt": "^1.2.0",
- "mkdirp": "^0.5.1",
- "moment": "^2.27.0",
- "name-all-modules-plugin": "^1.0.1",
- "normalize-path": "^3.0.0",
- "null-loader": "^3.0.0",
- "opentracing": "^0.14.4",
- "optimize-css-assets-webpack-plugin": "^5.0.3",
- "p-defer": "^3.0.0",
- "parseurl": "^1.3.3",
- "physical-cpu-count": "^2.0.0",
- "pnp-webpack-plugin": "^1.6.4",
- "postcss-flexbugs-fixes": "^4.2.1",
- "postcss-loader": "^3.0.0",
- "prompts": "^2.3.2",
- "prop-types": "^15.7.2",
- "query-string": "^6.13.1",
- "raw-loader": "^0.5.1",
- "react-dev-utils": "^4.2.3",
- "react-error-overlay": "^6.0.7",
- "react-hot-loader": "^4.12.21",
- "react-refresh": "^0.8.3",
- "redux": "^4.0.5",
- "redux-thunk": "^2.3.0",
- "semver": "^7.3.2",
- "shallow-compare": "^1.2.2",
- "signal-exit": "^3.0.3",
- "slugify": "^1.4.4",
- "socket.io": "^2.3.0",
- "socket.io-client": "2.3.0",
- "st": "^2.0.0",
- "stack-trace": "^0.0.10",
- "string-similarity": "^1.2.2",
- "style-loader": "^0.23.1",
- "terser-webpack-plugin": "^2.3.8",
- "tmp": "^0.2.1",
- "true-case-path": "^2.2.1",
- "type-of": "^2.0.1",
- "url-loader": "^1.1.2",
- "util.promisify": "^1.0.1",
- "uuid": "3.4.0",
- "v8-compile-cache": "^1.1.2",
- "webpack": "^4.44.1",
- "webpack-dev-middleware": "^3.7.2",
- "webpack-dev-server": "^3.11.0",
- "webpack-hot-middleware": "^2.25.0",
- "webpack-merge": "^4.2.2",
- "webpack-stats-plugin": "^0.3.2",
- "webpack-virtual-modules": "^0.2.2",
- "xstate": "^4.11.0",
- "yaml-loader": "^0.6.0"
- },
- "dependencies": {
- "@babel/core": {
- "version": "7.12.3",
- "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.12.3.tgz",
- "integrity": "sha512-0qXcZYKZp3/6N2jKYVxZv0aNCsxTSVCiK72DTiTYZAu7sjg73W0/aynWjMbiGd87EQL4WyA8reiJVh92AVla9g==",
- "requires": {
- "@babel/code-frame": "^7.10.4",
- "@babel/generator": "^7.12.1",
- "@babel/helper-module-transforms": "^7.12.1",
- "@babel/helpers": "^7.12.1",
- "@babel/parser": "^7.12.3",
- "@babel/template": "^7.10.4",
- "@babel/traverse": "^7.12.1",
- "@babel/types": "^7.12.1",
- "convert-source-map": "^1.7.0",
- "debug": "^4.1.0",
- "gensync": "^1.0.0-beta.1",
- "json5": "^2.1.2",
- "lodash": "^4.17.19",
- "resolve": "^1.3.2",
- "semver": "^5.4.1",
- "source-map": "^0.5.0"
- },
- "dependencies": {
- "debug": {
- "version": "4.2.0",
- "resolved": "https://registry.npmjs.org/debug/-/debug-4.2.0.tgz",
- "integrity": "sha512-IX2ncY78vDTjZMFUdmsvIRFY2Cf4FnD0wRs+nQwJU8Lu99/tPFdb0VybiiMTPe3I6rQmwsqQqRBvxU+bZ/I8sg==",
- "requires": {
- "ms": "2.1.2"
- }
- },
- "semver": {
- "version": "5.7.1",
- "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz",
- "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ=="
- }
+ "array-includes": "^3.1.1",
+ "array.prototype.flatmap": "^1.2.3",
+ "doctrine": "^2.1.0",
+ "has": "^1.0.3",
+ "jsx-ast-utils": "^2.4.1 || ^3.0.0",
+ "object.entries": "^1.1.2",
+ "object.fromentries": "^2.0.2",
+ "object.values": "^1.1.1",
+ "prop-types": "^15.7.2",
+ "resolve": "^1.18.1",
+ "string.prototype.matchall": "^4.0.2"
+ },
+ "dependencies": {
+ "doctrine": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz",
+ "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==",
+ "requires": {
+ "esutils": "^2.0.2"
}
},
- "@babel/generator": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.12.1.tgz",
- "integrity": "sha512-DB+6rafIdc9o72Yc3/Ph5h+6hUjeOp66pF0naQBgUFFuPqzQwIlPTm3xZR7YNvduIMtkDIj2t21LSQwnbCrXvg==",
+ "resolve": {
+ "version": "1.18.1",
+ "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.18.1.tgz",
+ "integrity": "sha512-lDfCPaMKfOJXjy0dPayzPdF1phampNWr3qFCjAu+rw/qbQmr5jWH5xN2hwh9QKfw9E5v4hwV7A+jrCmL8yjjqA==",
"requires": {
- "@babel/types": "^7.12.1",
- "jsesc": "^2.5.1",
- "source-map": "^0.5.0"
+ "is-core-module": "^2.0.0",
+ "path-parse": "^1.0.6"
}
- },
- "@babel/helper-member-expression-to-functions": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.12.1.tgz",
- "integrity": "sha512-k0CIe3tXUKTRSoEx1LQEPFU9vRQfqHtl+kf8eNnDqb4AUJEy5pz6aIiog+YWtVm2jpggjS1laH68bPsR+KWWPQ==",
+ }
+ }
+ },
+ "eslint-plugin-react-hooks": {
+ "version": "1.7.0",
+ "resolved": "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-1.7.0.tgz",
+ "integrity": "sha512-iXTCFcOmlWvw4+TOE8CLWj6yX1GwzT0Y6cUfHHZqWnSk144VmVIRcVGtUAzrLES7C798lmvnt02C7rxaOX1HNA=="
+ },
+ "eslint-scope": {
+ "version": "5.1.1",
+ "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz",
+ "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==",
+ "requires": {
+ "esrecurse": "^4.3.0",
+ "estraverse": "^4.1.1"
+ }
+ },
+ "eslint-utils": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-2.1.0.tgz",
+ "integrity": "sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==",
+ "requires": {
+ "eslint-visitor-keys": "^1.1.0"
+ }
+ },
+ "eslint-visitor-keys": {
+ "version": "1.3.0",
+ "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz",
+ "integrity": "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ=="
+ },
+ "espree": {
+ "version": "6.2.1",
+ "resolved": "https://registry.npmjs.org/espree/-/espree-6.2.1.tgz",
+ "integrity": "sha512-ysCxRQY3WaXJz9tdbWOwuWr5Y/XrPTGX9Kiz3yoUXwW0VZ4w30HTkQLaGx/+ttFjF8i+ACbArnB4ce68a9m5hw==",
+ "requires": {
+ "acorn": "^7.1.1",
+ "acorn-jsx": "^5.2.0",
+ "eslint-visitor-keys": "^1.1.0"
+ }
+ },
+ "esprima": {
+ "version": "4.0.1",
+ "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz",
+ "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A=="
+ },
+ "esquery": {
+ "version": "1.3.1",
+ "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.3.1.tgz",
+ "integrity": "sha512-olpvt9QG0vniUBZspVRN6lwB7hOZoTRtT+jzR+tS4ffYx2mzbw+z0XCOk44aaLYKApNX5nMm+E+P6o25ip/DHQ==",
+ "requires": {
+ "estraverse": "^5.1.0"
+ },
+ "dependencies": {
+ "estraverse": {
+ "version": "5.2.0",
+ "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.2.0.tgz",
+ "integrity": "sha512-BxbNGGNm0RyRYvUdHpIwv9IWzeM9XClbOxwoATuFdOE7ZE6wHL+HQ5T8hoPM+zHvmKzzsEqhgy0GrQ5X13afiQ=="
+ }
+ }
+ },
+ "esrecurse": {
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz",
+ "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==",
+ "requires": {
+ "estraverse": "^5.2.0"
+ },
+ "dependencies": {
+ "estraverse": {
+ "version": "5.2.0",
+ "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.2.0.tgz",
+ "integrity": "sha512-BxbNGGNm0RyRYvUdHpIwv9IWzeM9XClbOxwoATuFdOE7ZE6wHL+HQ5T8hoPM+zHvmKzzsEqhgy0GrQ5X13afiQ=="
+ }
+ }
+ },
+ "estraverse": {
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz",
+ "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw=="
+ },
+ "esutils": {
+ "version": "2.0.3",
+ "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz",
+ "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g=="
+ },
+ "etag": {
+ "version": "1.8.1",
+ "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz",
+ "integrity": "sha1-Qa4u62XvpiJorr/qg6x9eSmbCIc="
+ },
+ "eval": {
+ "version": "0.1.4",
+ "resolved": "https://registry.npmjs.org/eval/-/eval-0.1.4.tgz",
+ "integrity": "sha512-npGsebJejyjMRnLdFu+T/97dnigqIU0Ov3IGrZ8ygd1v7RL1vGkEKtvyWZobqUH1AQgKlg0Yqqe2BtMA9/QZLw==",
+ "requires": {
+ "require-like": ">= 0.1.1"
+ }
+ },
+ "event-source-polyfill": {
+ "version": "1.0.21",
+ "resolved": "https://registry.npmjs.org/event-source-polyfill/-/event-source-polyfill-1.0.21.tgz",
+ "integrity": "sha512-Mz8LO8hPgg2X6VcSXmq7gvgFU3kUnTZb4zU3tTYDx8cJHRXP15tjdpGUiP2IUUwOqAGZ1TEfe+KagjMXfFgwLA=="
+ },
+ "eventemitter3": {
+ "version": "3.1.2",
+ "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-3.1.2.tgz",
+ "integrity": "sha512-tvtQIeLVHjDkJYnzf2dgVMxfuSGJeM/7UCG17TT4EumTfNtF+0nebF/4zWOIkCreAbtNqhGEboB6BWrwqNaw4Q=="
+ },
+ "events": {
+ "version": "3.2.0",
+ "resolved": "https://registry.npmjs.org/events/-/events-3.2.0.tgz",
+ "integrity": "sha512-/46HWwbfCX2xTawVfkKLGxMifJYQBWMwY1mjywRtb4c9x8l5NP3KoJtnIOiL1hfdRkIuYhETxQlo62IF8tcnlg=="
+ },
+ "eventsource": {
+ "version": "0.1.6",
+ "resolved": "https://registry.npmjs.org/eventsource/-/eventsource-0.1.6.tgz",
+ "integrity": "sha1-Cs7ehJ7X3RzMMsgRuxG5RNTykjI=",
+ "requires": {
+ "original": ">=0.0.5"
+ }
+ },
+ "evp_bytestokey": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz",
+ "integrity": "sha512-/f2Go4TognH/KvCISP7OUsHn85hT9nUkxxA9BEWxFn+Oj9o8ZNLm/40hdlgSLyuOimsrTKLUMEorQexp/aPQeA==",
+ "requires": {
+ "md5.js": "^1.3.4",
+ "safe-buffer": "^5.1.1"
+ }
+ },
+ "execa": {
+ "version": "4.1.0",
+ "resolved": "https://registry.npmjs.org/execa/-/execa-4.1.0.tgz",
+ "integrity": "sha512-j5W0//W7f8UxAn8hXVnwG8tLwdiUy4FJLcSupCg6maBYZDpyBvTApK7KyuI4bKj8KOh1r2YH+6ucuYtJv1bTZA==",
+ "requires": {
+ "cross-spawn": "^7.0.0",
+ "get-stream": "^5.0.0",
+ "human-signals": "^1.1.1",
+ "is-stream": "^2.0.0",
+ "merge-stream": "^2.0.0",
+ "npm-run-path": "^4.0.0",
+ "onetime": "^5.1.0",
+ "signal-exit": "^3.0.2",
+ "strip-final-newline": "^2.0.0"
+ },
+ "dependencies": {
+ "cross-spawn": {
+ "version": "7.0.3",
+ "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz",
+ "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==",
"requires": {
- "@babel/types": "^7.12.1"
+ "path-key": "^3.1.0",
+ "shebang-command": "^2.0.0",
+ "which": "^2.0.1"
}
},
- "@babel/helper-module-imports": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.12.1.tgz",
- "integrity": "sha512-ZeC1TlMSvikvJNy1v/wPIazCu3NdOwgYZLIkmIyAsGhqkNpiDoQQRmaCK8YP4Pq3GPTLPV9WXaPCJKvx06JxKA==",
+ "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": {
- "@babel/types": "^7.12.1"
+ "pump": "^3.0.0"
}
},
- "@babel/helper-module-transforms": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.12.1.tgz",
- "integrity": "sha512-QQzehgFAZ2bbISiCpmVGfiGux8YVFXQ0abBic2Envhej22DVXV9nCFaS5hIQbkyo1AdGb+gNME2TSh3hYJVV/w==",
+ "path-key": {
+ "version": "3.1.1",
+ "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz",
+ "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q=="
+ },
+ "shebang-command": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz",
+ "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==",
"requires": {
- "@babel/helper-module-imports": "^7.12.1",
- "@babel/helper-replace-supers": "^7.12.1",
- "@babel/helper-simple-access": "^7.12.1",
- "@babel/helper-split-export-declaration": "^7.11.0",
- "@babel/helper-validator-identifier": "^7.10.4",
- "@babel/template": "^7.10.4",
- "@babel/traverse": "^7.12.1",
- "@babel/types": "^7.12.1",
- "lodash": "^4.17.19"
+ "shebang-regex": "^3.0.0"
}
},
- "@babel/helper-replace-supers": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.12.1.tgz",
- "integrity": "sha512-zJjTvtNJnCFsCXVi5rUInstLd/EIVNmIKA1Q9ynESmMBWPWd+7sdR+G4/wdu+Mppfep0XLyG2m7EBPvjCeFyrw==",
+ "shebang-regex": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz",
+ "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A=="
+ },
+ "which": {
+ "version": "2.0.2",
+ "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz",
+ "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==",
"requires": {
- "@babel/helper-member-expression-to-functions": "^7.12.1",
- "@babel/helper-optimise-call-expression": "^7.10.4",
- "@babel/traverse": "^7.12.1",
- "@babel/types": "^7.12.1"
+ "isexe": "^2.0.0"
+ }
+ }
+ }
+ },
+ "expand-brackets": {
+ "version": "2.1.4",
+ "resolved": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-2.1.4.tgz",
+ "integrity": "sha1-t3c14xXOMPa27/D4OwQVGiJEliI=",
+ "requires": {
+ "debug": "^2.3.3",
+ "define-property": "^0.2.5",
+ "extend-shallow": "^2.0.1",
+ "posix-character-classes": "^0.1.0",
+ "regex-not": "^1.0.0",
+ "snapdragon": "^0.8.1",
+ "to-regex": "^3.0.1"
+ },
+ "dependencies": {
+ "debug": {
+ "version": "2.6.9",
+ "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
+ "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
+ "requires": {
+ "ms": "2.0.0"
}
},
- "@babel/helper-simple-access": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.12.1.tgz",
- "integrity": "sha512-OxBp7pMrjVewSSC8fXDFrHrBcJATOOFssZwv16F3/6Xtc138GHybBfPbm9kfiqQHKhYQrlamWILwlDCeyMFEaA==",
+ "define-property": {
+ "version": "0.2.5",
+ "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz",
+ "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=",
"requires": {
- "@babel/types": "^7.12.1"
+ "is-descriptor": "^0.1.0"
}
},
- "@babel/helpers": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.12.1.tgz",
- "integrity": "sha512-9JoDSBGoWtmbay98efmT2+mySkwjzeFeAL9BuWNoVQpkPFQF8SIIFUfY5os9u8wVzglzoiPRSW7cuJmBDUt43g==",
+ "extend-shallow": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz",
+ "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=",
"requires": {
- "@babel/template": "^7.10.4",
- "@babel/traverse": "^7.12.1",
- "@babel/types": "^7.12.1"
+ "is-extendable": "^0.1.0"
}
},
- "@babel/parser": {
- "version": "7.12.3",
- "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.12.3.tgz",
- "integrity": "sha512-kFsOS0IbsuhO5ojF8Hc8z/8vEIOkylVBrjiZUbLTE3XFe0Qi+uu6HjzQixkFaqr0ZPAMZcBVxEwmsnsLPZ2Xsw=="
+ "ms": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
+ "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g="
+ }
+ }
+ },
+ "expand-tilde": {
+ "version": "2.0.2",
+ "resolved": "https://registry.npmjs.org/expand-tilde/-/expand-tilde-2.0.2.tgz",
+ "integrity": "sha1-l+gBqgUt8CRU3kawK/YhZCzchQI=",
+ "requires": {
+ "homedir-polyfill": "^1.0.1"
+ }
+ },
+ "express": {
+ "version": "4.17.1",
+ "resolved": "https://registry.npmjs.org/express/-/express-4.17.1.tgz",
+ "integrity": "sha512-mHJ9O79RqluphRrcw2X/GTh3k9tVv8YcoyY4Kkh4WDMUYKRZUq0h1o0w2rrrxBqM7VoeUVqgb27xlEMXTnYt4g==",
+ "requires": {
+ "accepts": "~1.3.7",
+ "array-flatten": "1.1.1",
+ "body-parser": "1.19.0",
+ "content-disposition": "0.5.3",
+ "content-type": "~1.0.4",
+ "cookie": "0.4.0",
+ "cookie-signature": "1.0.6",
+ "debug": "2.6.9",
+ "depd": "~1.1.2",
+ "encodeurl": "~1.0.2",
+ "escape-html": "~1.0.3",
+ "etag": "~1.8.1",
+ "finalhandler": "~1.1.2",
+ "fresh": "0.5.2",
+ "merge-descriptors": "1.0.1",
+ "methods": "~1.1.2",
+ "on-finished": "~2.3.0",
+ "parseurl": "~1.3.3",
+ "path-to-regexp": "0.1.7",
+ "proxy-addr": "~2.0.5",
+ "qs": "6.7.0",
+ "range-parser": "~1.2.1",
+ "safe-buffer": "5.1.2",
+ "send": "0.17.1",
+ "serve-static": "1.14.1",
+ "setprototypeof": "1.1.1",
+ "statuses": "~1.5.0",
+ "type-is": "~1.6.18",
+ "utils-merge": "1.0.1",
+ "vary": "~1.1.2"
+ },
+ "dependencies": {
+ "debug": {
+ "version": "2.6.9",
+ "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
+ "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
+ "requires": {
+ "ms": "2.0.0"
+ }
},
- "@babel/runtime": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.1.tgz",
- "integrity": "sha512-J5AIf3vPj3UwXaAzb5j1xM4WAQDX3EMgemF8rjCP3SoW09LfRKAXQKt6CoVYl230P6iWdRcBbnLDDdnqWxZSCA==",
+ "ms": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
+ "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g="
+ }
+ }
+ },
+ "express-graphql": {
+ "version": "0.9.0",
+ "resolved": "https://registry.npmjs.org/express-graphql/-/express-graphql-0.9.0.tgz",
+ "integrity": "sha512-wccd9Lb6oeJ8yHpUs/8LcnGjFUUQYmOG9A5BNLybRdCzGw0PeUrtBxsIR8bfiur6uSW4OvPkVDoYH06z6/N9+w==",
+ "requires": {
+ "accepts": "^1.3.7",
+ "content-type": "^1.0.4",
+ "http-errors": "^1.7.3",
+ "raw-body": "^2.4.1"
+ },
+ "dependencies": {
+ "http-errors": {
+ "version": "1.8.0",
+ "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.8.0.tgz",
+ "integrity": "sha512-4I8r0C5JDhT5VkvI47QktDW75rNlGVsUf/8hzjCC/wkWI/jdTRmBb9aI7erSG82r1bjKY3F6k28WnsVxB1C73A==",
"requires": {
- "regenerator-runtime": "^0.13.4"
+ "depd": "~1.1.2",
+ "inherits": "2.0.4",
+ "setprototypeof": "1.2.0",
+ "statuses": ">= 1.5.0 < 2",
+ "toidentifier": "1.0.0"
}
},
- "@babel/traverse": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.12.1.tgz",
- "integrity": "sha512-MA3WPoRt1ZHo2ZmoGKNqi20YnPt0B1S0GTZEPhhd+hw2KGUzBlHuVunj6K4sNuK+reEvyiPwtp0cpaqLzJDmAw==",
+ "raw-body": {
+ "version": "2.4.1",
+ "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.4.1.tgz",
+ "integrity": "sha512-9WmIKF6mkvA0SLmA2Knm9+qj89e+j1zqgyn8aXGd7+nAduPoqgI9lO57SAZNn/Byzo5P7JhXTyg9PzaJbH73bA==",
"requires": {
- "@babel/code-frame": "^7.10.4",
- "@babel/generator": "^7.12.1",
- "@babel/helper-function-name": "^7.10.4",
- "@babel/helper-split-export-declaration": "^7.11.0",
- "@babel/parser": "^7.12.1",
- "@babel/types": "^7.12.1",
- "debug": "^4.1.0",
- "globals": "^11.1.0",
- "lodash": "^4.17.19"
+ "bytes": "3.1.0",
+ "http-errors": "1.7.3",
+ "iconv-lite": "0.4.24",
+ "unpipe": "1.0.0"
},
"dependencies": {
- "debug": {
- "version": "4.2.0",
- "resolved": "https://registry.npmjs.org/debug/-/debug-4.2.0.tgz",
- "integrity": "sha512-IX2ncY78vDTjZMFUdmsvIRFY2Cf4FnD0wRs+nQwJU8Lu99/tPFdb0VybiiMTPe3I6rQmwsqQqRBvxU+bZ/I8sg==",
+ "http-errors": {
+ "version": "1.7.3",
+ "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.7.3.tgz",
+ "integrity": "sha512-ZTTX0MWrsQ2ZAhA1cejAwDLycFsd7I7nVtnkT3Ol0aqodaKW+0CTZDQ1uBv5whptCnc8e8HeRRJxRs0kmm/Qfw==",
"requires": {
- "ms": "2.1.2"
+ "depd": "~1.1.2",
+ "inherits": "2.0.4",
+ "setprototypeof": "1.1.1",
+ "statuses": ">= 1.5.0 < 2",
+ "toidentifier": "1.0.0"
}
+ },
+ "setprototypeof": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.1.tgz",
+ "integrity": "sha512-JvdAWfbXeIGaZ9cILp38HntZSFSo3mWg6xGcJJsd+d4aRMOqauag1C63dJfDw7OaMYwEbHMOxEZ1lqVRYP2OAw=="
}
}
},
- "@babel/types": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.12.1.tgz",
- "integrity": "sha512-BzSY3NJBKM4kyatSOWh3D/JJ2O3CVzBybHWxtgxnggaxEuaSTTDqeiSb/xk9lrkw2Tbqyivw5ZU4rT+EfznQsA==",
- "requires": {
- "@babel/helper-validator-identifier": "^7.10.4",
- "lodash": "^4.17.19",
- "to-fast-properties": "^2.0.0"
- }
- },
- "ansi-regex": {
- "version": "4.1.0",
- "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz",
- "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg=="
- },
- "anymatch": {
- "version": "3.1.1",
- "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.1.tgz",
- "integrity": "sha512-mM8522psRCqzV+6LhomX5wgp25YVibjh8Wj23I5RPkPppSVSjyKD2A2mBJmWGa+KN7f2D6LNh9jkBCeyLktzjg==",
- "requires": {
- "normalize-path": "^3.0.0",
- "picomatch": "^2.0.4"
- }
- },
- "binary-extensions": {
+ "setprototypeof": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz",
+ "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw=="
+ }
+ }
+ },
+ "ext": {
+ "version": "1.4.0",
+ "resolved": "https://registry.npmjs.org/ext/-/ext-1.4.0.tgz",
+ "integrity": "sha512-Key5NIsUxdqKg3vIsdw9dSuXpPCQ297y6wBjL30edxwPgt2E44WcWBZey/ZvUc6sERLTxKdyCu4gZFmUbk1Q7A==",
+ "requires": {
+ "type": "^2.0.0"
+ },
+ "dependencies": {
+ "type": {
"version": "2.1.0",
- "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.1.0.tgz",
- "integrity": "sha512-1Yj8h9Q+QDF5FzhMs/c9+6UntbD5MkRfRwac8DoEm9ZfUBZ7tZ55YcGVAzEe4bXsdQHEk+s9S5wsOKVdZrw0tQ=="
- },
- "braces": {
- "version": "3.0.2",
- "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz",
- "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==",
+ "resolved": "https://registry.npmjs.org/type/-/type-2.1.0.tgz",
+ "integrity": "sha512-G9absDWvhAWCV2gmF1zKud3OyC61nZDwWvBL2DApaVFogI07CprggiQAOOjvp2NRjYWFzPyu7vwtDrQFq8jeSA=="
+ }
+ }
+ },
+ "extend": {
+ "version": "3.0.2",
+ "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz",
+ "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g=="
+ },
+ "extend-shallow": {
+ "version": "3.0.2",
+ "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz",
+ "integrity": "sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=",
+ "requires": {
+ "assign-symbols": "^1.0.0",
+ "is-extendable": "^1.0.1"
+ },
+ "dependencies": {
+ "is-extendable": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz",
+ "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==",
"requires": {
- "fill-range": "^7.0.1"
+ "is-plain-object": "^2.0.4"
}
- },
- "chokidar": {
- "version": "3.4.3",
- "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.4.3.tgz",
- "integrity": "sha512-DtM3g7juCXQxFVSNPNByEC2+NImtBuxQQvWlHunpJIS5Ocr0lG306cC7FCi7cEA0fzmybPUIl4txBIobk1gGOQ==",
+ }
+ }
+ },
+ "external-editor": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/external-editor/-/external-editor-3.1.0.tgz",
+ "integrity": "sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==",
+ "requires": {
+ "chardet": "^0.7.0",
+ "iconv-lite": "^0.4.24",
+ "tmp": "^0.0.33"
+ },
+ "dependencies": {
+ "tmp": {
+ "version": "0.0.33",
+ "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.0.33.tgz",
+ "integrity": "sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==",
"requires": {
- "anymatch": "~3.1.1",
- "braces": "~3.0.2",
- "fsevents": "~2.1.2",
- "glob-parent": "~5.1.0",
- "is-binary-path": "~2.1.0",
- "is-glob": "~4.0.1",
- "normalize-path": "~3.0.0",
- "readdirp": "~3.5.0"
- }
- },
- "cross-spawn": {
- "version": "7.0.3",
- "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz",
- "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==",
+ "os-tmpdir": "~1.0.2"
+ }
+ }
+ }
+ },
+ "extglob": {
+ "version": "2.0.4",
+ "resolved": "https://registry.npmjs.org/extglob/-/extglob-2.0.4.tgz",
+ "integrity": "sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==",
+ "requires": {
+ "array-unique": "^0.3.2",
+ "define-property": "^1.0.0",
+ "expand-brackets": "^2.1.4",
+ "extend-shallow": "^2.0.1",
+ "fragment-cache": "^0.2.1",
+ "regex-not": "^1.0.0",
+ "snapdragon": "^0.8.1",
+ "to-regex": "^3.0.1"
+ },
+ "dependencies": {
+ "define-property": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz",
+ "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=",
"requires": {
- "path-key": "^3.1.0",
- "shebang-command": "^2.0.0",
- "which": "^2.0.1"
+ "is-descriptor": "^1.0.0"
}
},
- "fill-range": {
- "version": "7.0.1",
- "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz",
- "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==",
+ "extend-shallow": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz",
+ "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=",
"requires": {
- "to-regex-range": "^5.0.1"
+ "is-extendable": "^0.1.0"
}
},
- "fsevents": {
- "version": "2.1.3",
- "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.1.3.tgz",
- "integrity": "sha512-Auw9a4AxqWpa9GUfj370BMPzzyncfBABW8Mab7BGWBYDj4Isgq+cDKtx0i6u9jcX9pQDnswsaaOTgTmA5pEjuQ==",
- "optional": true
- },
- "gatsby-cli": {
- "version": "2.12.115",
- "resolved": "https://registry.npmjs.org/gatsby-cli/-/gatsby-cli-2.12.115.tgz",
- "integrity": "sha512-wOs3tG3tYses4fclXG0FtVZx+K0FDoZFkU1MIJNB+aRt+T7VMCZUIlg2MyrqcngsEW8al4EgyOd3UIl3NepC4A==",
+ "is-accessor-descriptor": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz",
+ "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==",
"requires": {
- "@babel/code-frame": "^7.10.4",
- "@hapi/joi": "^15.1.1",
- "@types/common-tags": "^1.8.0",
- "better-opn": "^2.0.0",
- "chalk": "^2.4.2",
- "clipboardy": "^2.3.0",
- "common-tags": "^1.8.0",
- "configstore": "^5.0.1",
- "convert-hrtime": "^3.0.0",
- "envinfo": "^7.7.3",
- "execa": "^3.4.0",
- "fs-exists-cached": "^1.0.0",
- "fs-extra": "^8.1.0",
- "gatsby-core-utils": "^1.3.23",
- "gatsby-recipes": "^0.2.36",
- "gatsby-telemetry": "^1.3.39",
- "hosted-git-info": "^3.0.6",
- "is-valid-path": "^0.1.1",
- "lodash": "^4.17.20",
- "meant": "^1.0.2",
- "node-fetch": "^2.6.1",
- "opentracing": "^0.14.4",
- "pretty-error": "^2.1.1",
- "progress": "^2.0.3",
- "prompts": "^2.3.2",
- "redux": "^4.0.5",
- "resolve-cwd": "^3.0.0",
- "semver": "^7.3.2",
- "signal-exit": "^3.0.3",
- "source-map": "0.7.3",
- "stack-trace": "^0.0.10",
- "strip-ansi": "^5.2.0",
- "update-notifier": "^4.1.3",
- "uuid": "3.4.0",
- "yargs": "^15.4.1",
- "yoga-layout-prebuilt": "^1.9.6",
- "yurnalist": "^1.1.2"
- },
- "dependencies": {
- "execa": {
- "version": "3.4.0",
- "resolved": "https://registry.npmjs.org/execa/-/execa-3.4.0.tgz",
- "integrity": "sha512-r9vdGQk4bmCuK1yKQu1KTwcT2zwfWdbdaXfCtAh+5nU/4fSX+JAb7vZGvI5naJrQlvONrEB20jeruESI69530g==",
- "requires": {
- "cross-spawn": "^7.0.0",
- "get-stream": "^5.0.0",
- "human-signals": "^1.1.1",
- "is-stream": "^2.0.0",
- "merge-stream": "^2.0.0",
- "npm-run-path": "^4.0.0",
- "onetime": "^5.1.0",
- "p-finally": "^2.0.0",
- "signal-exit": "^3.0.2",
- "strip-final-newline": "^2.0.0"
- }
- },
- "source-map": {
- "version": "0.7.3",
- "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.3.tgz",
- "integrity": "sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ=="
- }
+ "kind-of": "^6.0.0"
}
},
- "gatsby-core-utils": {
- "version": "1.3.23",
- "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-1.3.23.tgz",
- "integrity": "sha512-H6n6dDeRZ22HAJaBUIt5YjB/BSaE8Jq+kayMUv/YzL1RL2yFZ5lqcLwIL1OE2vWk1mQjMUBZCRxLODU0q1i3bQ==",
+ "is-data-descriptor": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz",
+ "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==",
"requires": {
- "ci-info": "2.0.0",
- "configstore": "^5.0.1",
- "fs-extra": "^8.1.0",
- "node-object-hash": "^2.0.0",
- "proper-lockfile": "^4.1.1",
- "tmp": "^0.2.1",
- "xdg-basedir": "^4.0.0"
+ "kind-of": "^6.0.0"
}
},
- "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==",
+ "is-descriptor": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz",
+ "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==",
"requires": {
- "pump": "^3.0.0"
+ "is-accessor-descriptor": "^1.0.0",
+ "is-data-descriptor": "^1.0.0",
+ "kind-of": "^6.0.2"
}
- },
+ }
+ }
+ },
+ "fast-deep-equal": {
+ "version": "3.1.3",
+ "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz",
+ "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q=="
+ },
+ "fast-glob": {
+ "version": "3.2.4",
+ "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.4.tgz",
+ "integrity": "sha512-kr/Oo6PX51265qeuCYsyGypiO5uJFgBS0jksyG7FUeCyQzNwYnzrNIMR1NXfkZXsMYXYLRAHgISHBz8gQcxKHQ==",
+ "requires": {
+ "@nodelib/fs.stat": "^2.0.2",
+ "@nodelib/fs.walk": "^1.2.3",
+ "glob-parent": "^5.1.0",
+ "merge2": "^1.3.0",
+ "micromatch": "^4.0.2",
+ "picomatch": "^2.2.1"
+ },
+ "dependencies": {
"glob-parent": {
"version": "5.1.1",
"resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.1.tgz",
@@ -9492,402 +8028,733 @@
"requires": {
"is-glob": "^4.0.1"
}
- },
- "hosted-git-info": {
- "version": "3.0.7",
- "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-3.0.7.tgz",
- "integrity": "sha512-fWqc0IcuXs+BmE9orLDyVykAG9GJtGLGuZAAqgcckPgv5xad4AcXGIv8galtQvlwutxSlaMcdw7BUtq2EIvqCQ==",
+ }
+ }
+ },
+ "fast-json-stable-stringify": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz",
+ "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw=="
+ },
+ "fast-levenshtein": {
+ "version": "2.0.6",
+ "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz",
+ "integrity": "sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc="
+ },
+ "fastest-levenshtein": {
+ "version": "1.0.12",
+ "resolved": "https://registry.npmjs.org/fastest-levenshtein/-/fastest-levenshtein-1.0.12.tgz",
+ "integrity": "sha512-On2N+BpYJ15xIC974QNVuYGMOlEVt4s0EOI3wwMqOmK1fdDY+FN/zltPV8vosq4ad4c/gJ1KHScUn/6AWIgiow=="
+ },
+ "fastparse": {
+ "version": "1.1.2",
+ "resolved": "https://registry.npmjs.org/fastparse/-/fastparse-1.1.2.tgz",
+ "integrity": "sha512-483XLLxTVIwWK3QTrMGRqUfUpoOs/0hbQrl2oz4J0pAcm3A3bu84wxTFqGqkJzewCLdME38xJLJAxBABfQT8sQ=="
+ },
+ "fastq": {
+ "version": "1.9.0",
+ "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.9.0.tgz",
+ "integrity": "sha512-i7FVWL8HhVY+CTkwFxkN2mk3h+787ixS5S63eb78diVRc1MCssarHq3W5cj0av7YDSwmaV928RNag+U1etRQ7w==",
+ "requires": {
+ "reusify": "^1.0.4"
+ }
+ },
+ "faye-websocket": {
+ "version": "0.11.3",
+ "resolved": "https://registry.npmjs.org/faye-websocket/-/faye-websocket-0.11.3.tgz",
+ "integrity": "sha512-D2y4bovYpzziGgbHYtGCMjlJM36vAl/y+xUyn1C+FVx8szd1E+86KwVw6XvYSzOP8iMpm1X0I4xJD+QtUb36OA==",
+ "requires": {
+ "websocket-driver": ">=0.5.1"
+ }
+ },
+ "fd": {
+ "version": "0.0.3",
+ "resolved": "https://registry.npmjs.org/fd/-/fd-0.0.3.tgz",
+ "integrity": "sha512-iAHrIslQb3U68OcMSP0kkNWabp7sSN6d2TBSb2JO3gcLJVDd4owr/hKM4SFJovFOUeeXeItjYgouEDTMWiVAnA=="
+ },
+ "figgy-pudding": {
+ "version": "3.5.2",
+ "resolved": "https://registry.npmjs.org/figgy-pudding/-/figgy-pudding-3.5.2.tgz",
+ "integrity": "sha512-0btnI/H8f2pavGMN8w40mlSKOfTK2SVJmBfBeVIj3kNw0swwgzyRq0d5TJVOwodFmtvpPeWPN/MCcfuWF0Ezbw=="
+ },
+ "figures": {
+ "version": "3.2.0",
+ "resolved": "https://registry.npmjs.org/figures/-/figures-3.2.0.tgz",
+ "integrity": "sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==",
+ "requires": {
+ "escape-string-regexp": "^1.0.5"
+ }
+ },
+ "file-entry-cache": {
+ "version": "5.0.1",
+ "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-5.0.1.tgz",
+ "integrity": "sha512-bCg29ictuBaKUwwArK4ouCaqDgLZcysCFLmM/Yn/FDoqndh/9vNuQfXRDvTuXKLxfD/JtZQGKFT8MGcJBK644g==",
+ "requires": {
+ "flat-cache": "^2.0.1"
+ }
+ },
+ "file-loader": {
+ "version": "1.1.11",
+ "resolved": "https://registry.npmjs.org/file-loader/-/file-loader-1.1.11.tgz",
+ "integrity": "sha512-TGR4HU7HUsGg6GCOPJnFk06RhWgEWFLAGWiT6rcD+GRC2keU3s9RGJ+b3Z6/U73jwwNb2gKLJ7YCrp+jvU4ALg==",
+ "requires": {
+ "loader-utils": "^1.0.2",
+ "schema-utils": "^0.4.5"
+ },
+ "dependencies": {
+ "schema-utils": {
+ "version": "0.4.7",
+ "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-0.4.7.tgz",
+ "integrity": "sha512-v/iwU6wvwGK8HbU9yi3/nhGzP0yGSuhQMzL6ySiec1FSrZZDkhm4noOSWzrNFo/jEc+SJY6jRTwuwbSXJPDUnQ==",
+ "requires": {
+ "ajv": "^6.1.0",
+ "ajv-keywords": "^3.1.0"
+ }
+ }
+ }
+ },
+ "file-type": {
+ "version": "12.4.2",
+ "resolved": "https://registry.npmjs.org/file-type/-/file-type-12.4.2.tgz",
+ "integrity": "sha512-UssQP5ZgIOKelfsaB5CuGAL+Y+q7EmONuiwF3N5HAH0t27rvrttgi6Ra9k/+DVaY9UF6+ybxu5pOXLUdA8N7Vg=="
+ },
+ "file-uri-to-path": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz",
+ "integrity": "sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==",
+ "optional": true
+ },
+ "filesize": {
+ "version": "3.5.11",
+ "resolved": "https://registry.npmjs.org/filesize/-/filesize-3.5.11.tgz",
+ "integrity": "sha512-ZH7loueKBoDb7yG9esn1U+fgq7BzlzW6NRi5/rMdxIZ05dj7GFD/Xc5rq2CDt5Yq86CyfSYVyx4242QQNZbx1g=="
+ },
+ "fill-range": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz",
+ "integrity": "sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=",
+ "requires": {
+ "extend-shallow": "^2.0.1",
+ "is-number": "^3.0.0",
+ "repeat-string": "^1.6.1",
+ "to-regex-range": "^2.1.0"
+ },
+ "dependencies": {
+ "extend-shallow": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz",
+ "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=",
"requires": {
- "lru-cache": "^6.0.0"
+ "is-extendable": "^0.1.0"
}
- },
- "is-binary-path": {
- "version": "2.1.0",
- "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz",
- "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==",
+ }
+ }
+ },
+ "finalhandler": {
+ "version": "1.1.2",
+ "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.1.2.tgz",
+ "integrity": "sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA==",
+ "requires": {
+ "debug": "2.6.9",
+ "encodeurl": "~1.0.2",
+ "escape-html": "~1.0.3",
+ "on-finished": "~2.3.0",
+ "parseurl": "~1.3.3",
+ "statuses": "~1.5.0",
+ "unpipe": "~1.0.0"
+ },
+ "dependencies": {
+ "debug": {
+ "version": "2.6.9",
+ "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
+ "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
"requires": {
- "binary-extensions": "^2.0.0"
+ "ms": "2.0.0"
}
},
- "is-number": {
- "version": "7.0.0",
- "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz",
- "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng=="
- },
- "lodash": {
- "version": "4.17.20",
- "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.20.tgz",
- "integrity": "sha512-PlhdFcillOINfeV7Ni6oF1TAEayyZBoZ8bcshTHqOYJYlrqzRK5hagpagky5o4HfCzzd1TRkXPMFq6cKk9rGmA=="
- },
- "lru-cache": {
- "version": "6.0.0",
- "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz",
- "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==",
+ "ms": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
+ "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g="
+ }
+ }
+ },
+ "find-cache-dir": {
+ "version": "3.3.1",
+ "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.3.1.tgz",
+ "integrity": "sha512-t2GDMt3oGC/v+BMwzmllWDuJF/xcDtE5j/fCGbqDD7OLuJkj0cfh1YSA5VKPvwMeLFLNDBkwOKZ2X85jGLVftQ==",
+ "requires": {
+ "commondir": "^1.0.1",
+ "make-dir": "^3.0.2",
+ "pkg-dir": "^4.1.0"
+ },
+ "dependencies": {
+ "find-up": {
+ "version": "4.1.0",
+ "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz",
+ "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==",
"requires": {
- "yallist": "^4.0.0"
+ "locate-path": "^5.0.0",
+ "path-exists": "^4.0.0"
}
},
- "md5-file": {
+ "locate-path": {
"version": "5.0.0",
- "resolved": "https://registry.npmjs.org/md5-file/-/md5-file-5.0.0.tgz",
- "integrity": "sha512-xbEFXCYVWrSx/gEKS1VPlg84h/4L20znVIulKw6kMfmBUAZNAnF00eczz9ICMl+/hjQGo5KSXRxbL/47X3rmMw=="
- },
- "p-finally": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/p-finally/-/p-finally-2.0.1.tgz",
- "integrity": "sha512-vpm09aKwq6H9phqRQzecoDpD8TmVyGw70qmWlyq5onxY7tqyTTFVvxMykxQSQKILBSFlbXpypIw2T1Ml7+DDtw=="
- },
- "path-key": {
- "version": "3.1.1",
- "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz",
- "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q=="
- },
- "readdirp": {
- "version": "3.5.0",
- "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.5.0.tgz",
- "integrity": "sha512-cMhu7c/8rdhkHXWsY+osBhfSy0JikwpHK/5+imo+LpeasTF8ouErHrlYkwT0++njiyuDvc7OFY5T3ukvZ8qmFQ==",
+ "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz",
+ "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==",
"requires": {
- "picomatch": "^2.2.1"
+ "p-locate": "^4.1.0"
}
},
- "semver": {
- "version": "7.3.2",
- "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.2.tgz",
- "integrity": "sha512-OrOb32TeeambH6UrhtShmF7CRDqhL6/5XpPNp2DuRH6+9QLw/orhp72j87v8Qa1ScDkvrrBNpZcDejAirJmfXQ=="
- },
- "shebang-command": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz",
- "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==",
+ "make-dir": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz",
+ "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==",
"requires": {
- "shebang-regex": "^3.0.0"
+ "semver": "^6.0.0"
}
},
- "shebang-regex": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz",
- "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A=="
- },
- "strip-ansi": {
- "version": "5.2.0",
- "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz",
- "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==",
+ "p-locate": {
+ "version": "4.1.0",
+ "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz",
+ "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==",
"requires": {
- "ansi-regex": "^4.1.0"
+ "p-limit": "^2.2.0"
}
},
- "to-regex-range": {
- "version": "5.0.1",
- "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz",
- "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==",
+ "path-exists": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz",
+ "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w=="
+ },
+ "pkg-dir": {
+ "version": "4.2.0",
+ "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz",
+ "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==",
"requires": {
- "is-number": "^7.0.0"
+ "find-up": "^4.0.0"
}
},
- "which": {
- "version": "2.0.2",
- "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz",
- "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==",
+ "semver": {
+ "version": "6.3.0",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz",
+ "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw=="
+ }
+ }
+ },
+ "find-root": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/find-root/-/find-root-1.1.0.tgz",
+ "integrity": "sha512-NKfW6bec6GfKc0SGx1e07QZY9PE99u0Bft/0rzSD5k3sO/vwkVUpDUKVm5Gpp5Ue3YfShPFTX2070tDs5kB9Ng=="
+ },
+ "find-up": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz",
+ "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==",
+ "requires": {
+ "locate-path": "^3.0.0"
+ }
+ },
+ "flat-cache": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-2.0.1.tgz",
+ "integrity": "sha512-LoQe6yDuUMDzQAEH8sgmh4Md6oZnc/7PjtwjNFSzveXqSHt6ka9fPBuso7IGf9Rz4uqnSnWiFH2B/zj24a5ReA==",
+ "requires": {
+ "flatted": "^2.0.0",
+ "rimraf": "2.6.3",
+ "write": "1.0.3"
+ },
+ "dependencies": {
+ "rimraf": {
+ "version": "2.6.3",
+ "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.6.3.tgz",
+ "integrity": "sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA==",
"requires": {
- "isexe": "^2.0.0"
+ "glob": "^7.1.3"
}
- },
- "yallist": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz",
- "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A=="
}
}
},
- "gatsby-core-utils": {
- "version": "1.3.23",
- "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-1.3.23.tgz",
- "integrity": "sha512-H6n6dDeRZ22HAJaBUIt5YjB/BSaE8Jq+kayMUv/YzL1RL2yFZ5lqcLwIL1OE2vWk1mQjMUBZCRxLODU0q1i3bQ==",
+ "flatted": {
+ "version": "2.0.2",
+ "resolved": "https://registry.npmjs.org/flatted/-/flatted-2.0.2.tgz",
+ "integrity": "sha512-r5wGx7YeOwNWNlCA0wQ86zKyDLMQr+/RB8xy74M4hTphfmjlijTSSXGuH8rnvKZnfT9i+75zmd8jcKdMR4O6jA=="
+ },
+ "flush-write-stream": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/flush-write-stream/-/flush-write-stream-1.1.1.tgz",
+ "integrity": "sha512-3Z4XhFZ3992uIq0XOqb9AreonueSYphE6oYbpt5+3u06JWklbsPkNv3ZKkP9Bz/r+1MWCaMoSQ28P85+1Yc77w==",
+ "requires": {
+ "inherits": "^2.0.3",
+ "readable-stream": "^2.3.6"
+ }
+ },
+ "follow-redirects": {
+ "version": "1.13.0",
+ "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.13.0.tgz",
+ "integrity": "sha512-aq6gF1BEKje4a9i9+5jimNFIpq4Q1WiwBToeRK5NvZBd/TRsmW8BsJfOEGkr76TbOyPVD3OVDN910EcUNtRYEA=="
+ },
+ "for-in": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz",
+ "integrity": "sha1-gQaNKVqBQuwKxybG4iAMMPttXoA="
+ },
+ "form-data": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/form-data/-/form-data-3.0.0.tgz",
+ "integrity": "sha512-CKMFDglpbMi6PyN+brwB9Q/GOw0eAnsrEZDgcsH5Krhz5Od/haKHAX0NmQfha2zPPz0JpWzA7GJHGSnvCRLWsg==",
+ "requires": {
+ "asynckit": "^0.4.0",
+ "combined-stream": "^1.0.8",
+ "mime-types": "^2.1.12"
+ }
+ },
+ "forwarded": {
+ "version": "0.1.2",
+ "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.1.2.tgz",
+ "integrity": "sha1-mMI9qxF1ZXuMBXPozszZGw/xjIQ="
+ },
+ "fragment-cache": {
+ "version": "0.2.1",
+ "resolved": "https://registry.npmjs.org/fragment-cache/-/fragment-cache-0.2.1.tgz",
+ "integrity": "sha1-QpD60n8T6Jvn8zeZxrxaCr//DRk=",
+ "requires": {
+ "map-cache": "^0.2.2"
+ }
+ },
+ "fresh": {
+ "version": "0.5.2",
+ "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz",
+ "integrity": "sha1-PYyt2Q2XZWn6g1qx+OSyOhBWBac="
+ },
+ "from2": {
+ "version": "2.3.0",
+ "resolved": "https://registry.npmjs.org/from2/-/from2-2.3.0.tgz",
+ "integrity": "sha1-i/tVAr3kpNNs/e6gB/zKIdfjgq8=",
+ "requires": {
+ "inherits": "^2.0.1",
+ "readable-stream": "^2.0.0"
+ }
+ },
+ "fs-exists-cached": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/fs-exists-cached/-/fs-exists-cached-1.0.0.tgz",
+ "integrity": "sha1-zyVVTKBQ3EmuZla0HeQiWJidy84="
+ },
+ "fs-extra": {
+ "version": "8.1.0",
+ "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-8.1.0.tgz",
+ "integrity": "sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==",
"requires": {
- "ci-info": "2.0.0",
- "configstore": "^5.0.1",
- "fs-extra": "^8.1.0",
- "node-object-hash": "^2.0.0",
- "proper-lockfile": "^4.1.1",
- "tmp": "^0.2.1",
- "xdg-basedir": "^4.0.0"
+ "graceful-fs": "^4.2.0",
+ "jsonfile": "^4.0.0",
+ "universalify": "^0.1.0"
}
},
- "gatsby-graphiql-explorer": {
- "version": "0.4.15",
- "resolved": "https://registry.npmjs.org/gatsby-graphiql-explorer/-/gatsby-graphiql-explorer-0.4.15.tgz",
- "integrity": "sha512-Mo6wo6EX3pIL7ErKI0yJIfJw9iYDZyPyEsCQJDhcxymhqf1x0d8DRGDjyJDndDBiSuSUfgdBrHz/MKh3ZOZnAg==",
+ "fs-minipass": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-2.1.0.tgz",
+ "integrity": "sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==",
"requires": {
- "@babel/runtime": "^7.11.2"
- },
- "dependencies": {
- "@babel/runtime": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.1.tgz",
- "integrity": "sha512-J5AIf3vPj3UwXaAzb5j1xM4WAQDX3EMgemF8rjCP3SoW09LfRKAXQKt6CoVYl230P6iWdRcBbnLDDdnqWxZSCA==",
- "requires": {
- "regenerator-runtime": "^0.13.4"
- }
- }
+ "minipass": "^3.0.0"
}
},
- "gatsby-legacy-polyfills": {
- "version": "0.0.6",
- "resolved": "https://registry.npmjs.org/gatsby-legacy-polyfills/-/gatsby-legacy-polyfills-0.0.6.tgz",
- "integrity": "sha512-23O0orFhu1zkCluIFBs8pu8psfyyWquczfRk2NNdT2x4wW/HkZEjonWM5AkM6kjzZL9JrVCAZEgL4qf9OjgUoA==",
+ "fs-write-stream-atomic": {
+ "version": "1.0.10",
+ "resolved": "https://registry.npmjs.org/fs-write-stream-atomic/-/fs-write-stream-atomic-1.0.10.tgz",
+ "integrity": "sha1-tH31NJPvkR33VzHnCp3tAYnbQMk=",
"requires": {
- "core-js-compat": "^3.6.5"
+ "graceful-fs": "^4.1.2",
+ "iferr": "^0.1.5",
+ "imurmurhash": "^0.1.4",
+ "readable-stream": "1 || 2"
}
},
- "gatsby-link": {
- "version": "2.4.16",
- "resolved": "https://registry.npmjs.org/gatsby-link/-/gatsby-link-2.4.16.tgz",
- "integrity": "sha512-wsccuSOIAjhRDQRKmIj2+FUNR94QEBnELki0giN+lLKvWB3EO8mXjTIccXC0bMpe8VQcBlv3DHpUo72EAkkFAg==",
+ "fs.realpath": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz",
+ "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8="
+ },
+ "fsevents": {
+ "version": "1.2.13",
+ "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-1.2.13.tgz",
+ "integrity": "sha512-oWb1Z6mkHIskLzEJ/XWX0srkpkTQ7vaopMQkyaEIoq0fmtFVxOthb8cCxeT+p3ynTdkk/RZwbgG4brR5BeWECw==",
+ "optional": true,
"requires": {
- "@babel/runtime": "^7.11.2",
- "@types/reach__router": "^1.3.6",
- "prop-types": "^15.7.2"
- },
- "dependencies": {
- "@babel/runtime": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.1.tgz",
- "integrity": "sha512-J5AIf3vPj3UwXaAzb5j1xM4WAQDX3EMgemF8rjCP3SoW09LfRKAXQKt6CoVYl230P6iWdRcBbnLDDdnqWxZSCA==",
- "requires": {
- "regenerator-runtime": "^0.13.4"
- }
- }
+ "bindings": "^1.5.0",
+ "nan": "^2.12.1"
}
},
- "gatsby-page-utils": {
- "version": "0.2.29",
- "resolved": "https://registry.npmjs.org/gatsby-page-utils/-/gatsby-page-utils-0.2.29.tgz",
- "integrity": "sha512-0xN3kBNd7PNwsJB1lJrsy7hEJbIIBcvnmbxGTplGenmGnOMoJqK6kEfM5Ru5dWBdSmwHrS+kcihFi0ZiGxpoww==",
+ "function-bind": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz",
+ "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A=="
+ },
+ "functional-red-black-tree": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz",
+ "integrity": "sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc="
+ },
+ "gatsby": {
+ "version": "2.25.2",
+ "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-2.25.2.tgz",
+ "integrity": "sha512-zssz6mH5vpScGq9SCDtkfajJkYVYJ+00x5JRVf9pYlVTRdv+g7jbKTuGdaWKbPoacEtXw3bUaTURUC2YMs/Gmg==",
"requires": {
+ "@babel/code-frame": "^7.10.4",
+ "@babel/core": "^7.11.6",
+ "@babel/parser": "^7.11.5",
"@babel/runtime": "^7.11.2",
+ "@babel/traverse": "^7.11.5",
+ "@babel/types": "^7.11.5",
+ "@hapi/joi": "^15.1.1",
+ "@mikaelkristiansson/domready": "^1.0.10",
+ "@nodelib/fs.walk": "^1.2.4",
+ "@pieh/friendly-errors-webpack-plugin": "1.7.0-chalk-2",
+ "@pmmmwh/react-refresh-webpack-plugin": "^0.4.1",
+ "@reach/router": "^1.3.4",
+ "@types/http-proxy": "^1.17.4",
+ "@typescript-eslint/eslint-plugin": "^2.24.0",
+ "@typescript-eslint/parser": "^2.24.0",
+ "address": "1.1.2",
+ "autoprefixer": "^9.8.4",
+ "axios": "^0.20.0",
+ "babel-core": "7.0.0-bridge.0",
+ "babel-eslint": "^10.1.0",
+ "babel-loader": "^8.1.0",
+ "babel-plugin-add-module-exports": "^0.3.3",
+ "babel-plugin-dynamic-import-node": "^2.3.3",
+ "babel-plugin-lodash": "3.3.4",
+ "babel-plugin-remove-graphql-queries": "^2.9.20",
+ "babel-preset-gatsby": "^0.5.16",
+ "better-opn": "^2.0.0",
+ "better-queue": "^3.8.10",
"bluebird": "^3.7.2",
- "chokidar": "^3.4.3",
- "fs-exists-cached": "^1.0.0",
- "gatsby-core-utils": "^1.3.23",
+ "body-parser": "^1.19.0",
+ "browserslist": "^4.12.2",
+ "cache-manager": "^2.11.1",
+ "cache-manager-fs-hash": "^0.0.9",
+ "chalk": "^4.1.0",
+ "chokidar": "^3.4.2",
+ "common-tags": "^1.8.0",
+ "compression": "^1.7.4",
+ "convert-hrtime": "^3.0.0",
+ "copyfiles": "^2.3.0",
+ "core-js": "^3.6.5",
+ "cors": "^2.8.5",
+ "css-loader": "^1.0.1",
+ "date-fns": "^2.14.0",
+ "debug": "^3.2.6",
+ "del": "^5.1.0",
+ "detect-port": "^1.3.0",
+ "devcert": "^1.1.3",
+ "dotenv": "^8.2.0",
+ "eslint": "^6.8.0",
+ "eslint-config-react-app": "^5.2.1",
+ "eslint-loader": "^2.2.1",
+ "eslint-plugin-flowtype": "^3.13.0",
+ "eslint-plugin-graphql": "^4.0.0",
+ "eslint-plugin-import": "^2.22.0",
+ "eslint-plugin-jsx-a11y": "^6.3.1",
+ "eslint-plugin-react": "^7.20.6",
+ "eslint-plugin-react-hooks": "^1.7.0",
+ "event-source-polyfill": "^1.0.15",
+ "execa": "^4.0.3",
+ "express": "^4.17.1",
+ "express-graphql": "^0.9.0",
+ "fastest-levenshtein": "^1.0.12",
+ "file-loader": "^1.1.11",
+ "find-cache-dir": "^3.3.1",
+ "fs-exists-cached": "1.0.0",
+ "fs-extra": "^8.1.0",
+ "gatsby-cli": "^2.12.116",
+ "gatsby-core-utils": "^1.3.24",
+ "gatsby-graphiql-explorer": "^0.4.15",
+ "gatsby-legacy-polyfills": "^0.0.6",
+ "gatsby-link": "^2.4.16",
+ "gatsby-plugin-page-creator": "^2.3.35",
+ "gatsby-plugin-typescript": "^2.5.0",
+ "gatsby-plugin-utils": "^0.2.40",
+ "gatsby-react-router-scroll": "^3.0.15",
+ "gatsby-telemetry": "^1.3.40",
"glob": "^7.1.6",
+ "got": "8.3.2",
+ "graphql": "^14.6.0",
+ "graphql-compose": "^6.3.8",
+ "graphql-playground-middleware-express": "^1.7.18",
+ "hasha": "^5.2.0",
+ "http-proxy": "^1.18.1",
+ "invariant": "^2.2.4",
+ "is-relative": "^1.0.0",
+ "is-relative-url": "^3.0.0",
+ "jest-worker": "^24.9.0",
+ "joi": "^17.2.1",
+ "json-loader": "^0.5.7",
+ "json-stringify-safe": "^5.0.1",
+ "latest-version": "5.1.0",
"lodash": "^4.17.20",
- "micromatch": "^4.0.2"
+ "md5-file": "^5.0.0",
+ "meant": "^1.0.1",
+ "micromatch": "^4.0.2",
+ "mime": "^2.4.6",
+ "mini-css-extract-plugin": "^0.11.2",
+ "mitt": "^1.2.0",
+ "mkdirp": "^0.5.1",
+ "moment": "^2.27.0",
+ "name-all-modules-plugin": "^1.0.1",
+ "normalize-path": "^3.0.0",
+ "null-loader": "^3.0.0",
+ "opentracing": "^0.14.4",
+ "optimize-css-assets-webpack-plugin": "^5.0.3",
+ "p-defer": "^3.0.0",
+ "parseurl": "^1.3.3",
+ "physical-cpu-count": "^2.0.0",
+ "pnp-webpack-plugin": "^1.6.4",
+ "postcss-flexbugs-fixes": "^4.2.1",
+ "postcss-loader": "^3.0.0",
+ "prompts": "^2.3.2",
+ "prop-types": "^15.7.2",
+ "query-string": "^6.13.1",
+ "raw-loader": "^0.5.1",
+ "react-dev-utils": "^4.2.3",
+ "react-error-overlay": "^6.0.7",
+ "react-hot-loader": "^4.12.21",
+ "react-refresh": "^0.8.3",
+ "redux": "^4.0.5",
+ "redux-thunk": "^2.3.0",
+ "semver": "^7.3.2",
+ "shallow-compare": "^1.2.2",
+ "signal-exit": "^3.0.3",
+ "slugify": "^1.4.4",
+ "socket.io": "^2.3.0",
+ "socket.io-client": "2.3.0",
+ "st": "^2.0.0",
+ "stack-trace": "^0.0.10",
+ "string-similarity": "^1.2.2",
+ "style-loader": "^0.23.1",
+ "terser-webpack-plugin": "^2.3.8",
+ "tmp": "^0.2.1",
+ "true-case-path": "^2.2.1",
+ "type-of": "^2.0.1",
+ "url-loader": "^1.1.2",
+ "util.promisify": "^1.0.1",
+ "uuid": "3.4.0",
+ "v8-compile-cache": "^1.1.2",
+ "webpack": "^4.44.1",
+ "webpack-dev-middleware": "^3.7.2",
+ "webpack-dev-server": "^3.11.0",
+ "webpack-hot-middleware": "^2.25.0",
+ "webpack-merge": "^4.2.2",
+ "webpack-stats-plugin": "^0.3.2",
+ "webpack-virtual-modules": "^0.2.2",
+ "xstate": "^4.11.0",
+ "yaml-loader": "^0.6.0"
},
"dependencies": {
- "@babel/runtime": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.1.tgz",
- "integrity": "sha512-J5AIf3vPj3UwXaAzb5j1xM4WAQDX3EMgemF8rjCP3SoW09LfRKAXQKt6CoVYl230P6iWdRcBbnLDDdnqWxZSCA==",
- "requires": {
- "regenerator-runtime": "^0.13.4"
- }
- },
- "anymatch": {
- "version": "3.1.1",
- "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.1.tgz",
- "integrity": "sha512-mM8522psRCqzV+6LhomX5wgp25YVibjh8Wj23I5RPkPppSVSjyKD2A2mBJmWGa+KN7f2D6LNh9jkBCeyLktzjg==",
+ "@babel/generator": {
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.12.5.tgz",
+ "integrity": "sha512-m16TQQJ8hPt7E+OS/XVQg/7U184MLXtvuGbCdA7na61vha+ImkyyNM/9DDA0unYCVZn3ZOhng+qz48/KBOT96A==",
"requires": {
- "normalize-path": "^3.0.0",
- "picomatch": "^2.0.4"
+ "@babel/types": "^7.12.5",
+ "jsesc": "^2.5.1",
+ "source-map": "^0.5.0"
}
},
- "binary-extensions": {
- "version": "2.1.0",
- "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.1.0.tgz",
- "integrity": "sha512-1Yj8h9Q+QDF5FzhMs/c9+6UntbD5MkRfRwac8DoEm9ZfUBZ7tZ55YcGVAzEe4bXsdQHEk+s9S5wsOKVdZrw0tQ=="
+ "@babel/parser": {
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.12.5.tgz",
+ "integrity": "sha512-FVM6RZQ0mn2KCf1VUED7KepYeUWoVShczewOCfm3nzoBybaih51h+sYVVGthW9M6lPByEPTQf+xm27PBdlpwmQ=="
},
- "braces": {
- "version": "3.0.2",
- "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz",
- "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==",
+ "@babel/runtime": {
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.5.tgz",
+ "integrity": "sha512-plcc+hbExy3McchJCEQG3knOsuh3HH+Prx1P6cLIkET/0dLuQDEnrT+s27Axgc9bqfsmNUNHfscgMUdBpC9xfg==",
"requires": {
- "fill-range": "^7.0.1"
+ "regenerator-runtime": "^0.13.4"
}
},
- "chokidar": {
- "version": "3.4.3",
- "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.4.3.tgz",
- "integrity": "sha512-DtM3g7juCXQxFVSNPNByEC2+NImtBuxQQvWlHunpJIS5Ocr0lG306cC7FCi7cEA0fzmybPUIl4txBIobk1gGOQ==",
+ "@babel/traverse": {
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.12.5.tgz",
+ "integrity": "sha512-xa15FbQnias7z9a62LwYAA5SZZPkHIXpd42C6uW68o8uTuua96FHZy1y61Va5P/i83FAAcMpW8+A/QayntzuqA==",
"requires": {
- "anymatch": "~3.1.1",
- "braces": "~3.0.2",
- "fsevents": "~2.1.2",
- "glob-parent": "~5.1.0",
- "is-binary-path": "~2.1.0",
- "is-glob": "~4.0.1",
- "normalize-path": "~3.0.0",
- "readdirp": "~3.5.0"
+ "@babel/code-frame": "^7.10.4",
+ "@babel/generator": "^7.12.5",
+ "@babel/helper-function-name": "^7.10.4",
+ "@babel/helper-split-export-declaration": "^7.11.0",
+ "@babel/parser": "^7.12.5",
+ "@babel/types": "^7.12.5",
+ "debug": "^4.1.0",
+ "globals": "^11.1.0",
+ "lodash": "^4.17.19"
+ },
+ "dependencies": {
+ "debug": {
+ "version": "4.2.0",
+ "resolved": "https://registry.npmjs.org/debug/-/debug-4.2.0.tgz",
+ "integrity": "sha512-IX2ncY78vDTjZMFUdmsvIRFY2Cf4FnD0wRs+nQwJU8Lu99/tPFdb0VybiiMTPe3I6rQmwsqQqRBvxU+bZ/I8sg==",
+ "requires": {
+ "ms": "2.1.2"
+ }
+ }
}
},
- "fill-range": {
- "version": "7.0.1",
- "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz",
- "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==",
+ "@babel/types": {
+ "version": "7.12.6",
+ "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.12.6.tgz",
+ "integrity": "sha512-hwyjw6GvjBLiyy3W0YQf0Z5Zf4NpYejUnKFcfcUhZCSffoBBp30w6wP2Wn6pk31jMYZvcOrB/1b7cGXvEoKogA==",
"requires": {
- "to-regex-range": "^5.0.1"
+ "@babel/helper-validator-identifier": "^7.10.4",
+ "lodash": "^4.17.19",
+ "to-fast-properties": "^2.0.0"
}
},
- "fsevents": {
- "version": "2.1.3",
- "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.1.3.tgz",
- "integrity": "sha512-Auw9a4AxqWpa9GUfj370BMPzzyncfBABW8Mab7BGWBYDj4Isgq+cDKtx0i6u9jcX9pQDnswsaaOTgTmA5pEjuQ==",
- "optional": true
+ "ansi-regex": {
+ "version": "4.1.0",
+ "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz",
+ "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg=="
},
- "gatsby-core-utils": {
- "version": "1.3.23",
- "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-1.3.23.tgz",
- "integrity": "sha512-H6n6dDeRZ22HAJaBUIt5YjB/BSaE8Jq+kayMUv/YzL1RL2yFZ5lqcLwIL1OE2vWk1mQjMUBZCRxLODU0q1i3bQ==",
+ "ansi-styles": {
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
+ "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
"requires": {
- "ci-info": "2.0.0",
- "configstore": "^5.0.1",
- "fs-extra": "^8.1.0",
- "node-object-hash": "^2.0.0",
- "proper-lockfile": "^4.1.1",
- "tmp": "^0.2.1",
- "xdg-basedir": "^4.0.0"
+ "color-convert": "^2.0.1"
}
},
- "glob-parent": {
- "version": "5.1.1",
- "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.1.tgz",
- "integrity": "sha512-FnI+VGOpnlGHWZxthPGR+QhR78fuiK0sNLkHQv+bL9fQi57lNNdquIbna/WrfROrolq8GK5Ek6BiMwqL/voRYQ==",
+ "chalk": {
+ "version": "4.1.0",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.0.tgz",
+ "integrity": "sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==",
"requires": {
- "is-glob": "^4.0.1"
+ "ansi-styles": "^4.1.0",
+ "supports-color": "^7.1.0"
}
},
- "is-binary-path": {
- "version": "2.1.0",
- "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz",
- "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==",
+ "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": {
- "binary-extensions": "^2.0.0"
+ "color-name": "~1.1.4"
}
},
- "is-number": {
- "version": "7.0.0",
- "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz",
- "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng=="
- },
- "lodash": {
- "version": "4.17.20",
- "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.20.tgz",
- "integrity": "sha512-PlhdFcillOINfeV7Ni6oF1TAEayyZBoZ8bcshTHqOYJYlrqzRK5hagpagky5o4HfCzzd1TRkXPMFq6cKk9rGmA=="
+ "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=="
},
- "readdirp": {
- "version": "3.5.0",
- "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.5.0.tgz",
- "integrity": "sha512-cMhu7c/8rdhkHXWsY+osBhfSy0JikwpHK/5+imo+LpeasTF8ouErHrlYkwT0++njiyuDvc7OFY5T3ukvZ8qmFQ==",
+ "cross-spawn": {
+ "version": "7.0.3",
+ "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz",
+ "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==",
"requires": {
- "picomatch": "^2.2.1"
+ "path-key": "^3.1.0",
+ "shebang-command": "^2.0.0",
+ "which": "^2.0.1"
}
},
- "to-regex-range": {
- "version": "5.0.1",
- "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz",
- "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==",
- "requires": {
- "is-number": "^7.0.0"
- }
- }
- }
- },
- "gatsby-plugin-compile-es6-packages": {
- "version": "2.1.0",
- "resolved": "https://registry.npmjs.org/gatsby-plugin-compile-es6-packages/-/gatsby-plugin-compile-es6-packages-2.1.0.tgz",
- "integrity": "sha512-yrYAAjabHWJr3ARi8xzDm01dbBfyOxEWTwGkL3BMdgL/opfLvTrwLmfium4kSelnLs70DYY3rYDwyHjqyFsnFQ==",
- "requires": {
- "@babel/runtime": "^7.0.0",
- "regex-escape": "^3.4.8"
- }
- },
- "gatsby-plugin-emotion": {
- "version": "4.3.15",
- "resolved": "https://registry.npmjs.org/gatsby-plugin-emotion/-/gatsby-plugin-emotion-4.3.15.tgz",
- "integrity": "sha512-cuZGk/c+uxz4idAPFvayXWqjnw1mLheitUVkbPLiGkk2ZQGkzQ0z0iGX+nY7wzEKvmBXV9745jkdwnwa5GC8/Q==",
- "requires": {
- "@babel/runtime": "^7.11.2",
- "@emotion/babel-preset-css-prop": "^10.0.27"
- },
- "dependencies": {
- "@babel/runtime": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.1.tgz",
- "integrity": "sha512-J5AIf3vPj3UwXaAzb5j1xM4WAQDX3EMgemF8rjCP3SoW09LfRKAXQKt6CoVYl230P6iWdRcBbnLDDdnqWxZSCA==",
+ "gatsby-cli": {
+ "version": "2.12.116",
+ "resolved": "https://registry.npmjs.org/gatsby-cli/-/gatsby-cli-2.12.116.tgz",
+ "integrity": "sha512-vXpyl/ZFF67r/BlBxIjfdknBzxRfRuJ1qkA7//6dhNKDMlvVi5ZqGhOwcMzTgM1e0WZRaMFzf5/foPIA++8xEQ==",
"requires": {
- "regenerator-runtime": "^0.13.4"
+ "@babel/code-frame": "^7.10.4",
+ "@hapi/joi": "^15.1.1",
+ "@types/common-tags": "^1.8.0",
+ "better-opn": "^2.0.0",
+ "chalk": "^4.1.0",
+ "clipboardy": "^2.3.0",
+ "common-tags": "^1.8.0",
+ "configstore": "^5.0.1",
+ "convert-hrtime": "^3.0.0",
+ "envinfo": "^7.7.3",
+ "execa": "^3.4.0",
+ "fs-exists-cached": "^1.0.0",
+ "fs-extra": "^8.1.0",
+ "gatsby-core-utils": "^1.3.24",
+ "gatsby-recipes": "^0.2.37",
+ "gatsby-telemetry": "^1.3.40",
+ "hosted-git-info": "^3.0.6",
+ "is-valid-path": "^0.1.1",
+ "lodash": "^4.17.20",
+ "meant": "^1.0.2",
+ "node-fetch": "^2.6.1",
+ "opentracing": "^0.14.4",
+ "pretty-error": "^2.1.1",
+ "progress": "^2.0.3",
+ "prompts": "^2.3.2",
+ "redux": "^4.0.5",
+ "resolve-cwd": "^3.0.0",
+ "semver": "^7.3.2",
+ "signal-exit": "^3.0.3",
+ "source-map": "0.7.3",
+ "stack-trace": "^0.0.10",
+ "strip-ansi": "^5.2.0",
+ "update-notifier": "^4.1.3",
+ "uuid": "3.4.0",
+ "yargs": "^15.4.1",
+ "yoga-layout-prebuilt": "^1.9.6",
+ "yurnalist": "^1.1.2"
+ },
+ "dependencies": {
+ "execa": {
+ "version": "3.4.0",
+ "resolved": "https://registry.npmjs.org/execa/-/execa-3.4.0.tgz",
+ "integrity": "sha512-r9vdGQk4bmCuK1yKQu1KTwcT2zwfWdbdaXfCtAh+5nU/4fSX+JAb7vZGvI5naJrQlvONrEB20jeruESI69530g==",
+ "requires": {
+ "cross-spawn": "^7.0.0",
+ "get-stream": "^5.0.0",
+ "human-signals": "^1.1.1",
+ "is-stream": "^2.0.0",
+ "merge-stream": "^2.0.0",
+ "npm-run-path": "^4.0.0",
+ "onetime": "^5.1.0",
+ "p-finally": "^2.0.0",
+ "signal-exit": "^3.0.2",
+ "strip-final-newline": "^2.0.0"
+ }
+ },
+ "source-map": {
+ "version": "0.7.3",
+ "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.3.tgz",
+ "integrity": "sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ=="
+ }
}
- }
- }
- },
- "gatsby-plugin-mdx": {
- "version": "1.3.0",
- "resolved": "https://registry.npmjs.org/gatsby-plugin-mdx/-/gatsby-plugin-mdx-1.3.0.tgz",
- "integrity": "sha512-3M401qUc76duSTBzocgUuf7ZGTQTfoOsUuse5gwK5KAIB+t0BzBREF6qvjmacVsLI4rBodSkjIkFMtQkjPGLIA==",
- "requires": {
- "@babel/core": "^7.11.6",
- "@babel/generator": "^7.11.6",
- "@babel/helper-plugin-utils": "^7.10.4",
- "@babel/plugin-proposal-object-rest-spread": "^7.11.0",
- "@babel/preset-env": "^7.11.5",
- "@babel/preset-react": "^7.10.4",
- "@babel/types": "^7.11.5",
- "camelcase-css": "^2.0.1",
- "change-case": "^3.1.0",
- "core-js": "^3.6.5",
- "dataloader": "^1.4.0",
- "debug": "^4.1.1",
- "escape-string-regexp": "^1.0.5",
- "eval": "^0.1.4",
- "fs-extra": "^8.1.0",
- "gatsby-core-utils": "^1.3.23",
- "gray-matter": "^4.0.2",
- "json5": "^2.1.3",
- "loader-utils": "^1.4.0",
- "lodash": "^4.17.20",
- "mdast-util-to-string": "^1.1.0",
- "mdast-util-toc": "^3.1.0",
- "mime": "^2.4.6",
- "p-queue": "^5.0.0",
- "pretty-bytes": "^5.3.0",
- "remark": "^10.0.1",
- "remark-retext": "^3.1.3",
- "retext-english": "^3.0.4",
- "slugify": "^1.4.4",
- "static-site-generator-webpack-plugin": "^3.4.2",
- "style-to-object": "^0.3.0",
- "underscore.string": "^3.3.5",
- "unified": "^8.4.2",
- "unist-util-map": "^1.0.5",
- "unist-util-remove": "^1.0.3",
- "unist-util-visit": "^1.4.1"
- },
- "dependencies": {
- "@babel/generator": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.12.1.tgz",
- "integrity": "sha512-DB+6rafIdc9o72Yc3/Ph5h+6hUjeOp66pF0naQBgUFFuPqzQwIlPTm3xZR7YNvduIMtkDIj2t21LSQwnbCrXvg==",
+ },
+ "gatsby-core-utils": {
+ "version": "1.3.24",
+ "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-1.3.24.tgz",
+ "integrity": "sha512-SlK7rJv/8NBYC8FodYvTINamBHadXNSv//a2uRwh44N1GSSujuCMvtUcpEuAdg9BUQHc54NbbmFuoqf8p85kgA==",
"requires": {
- "@babel/types": "^7.12.1",
- "jsesc": "^2.5.1",
- "source-map": "^0.5.0"
+ "ci-info": "2.0.0",
+ "configstore": "^5.0.1",
+ "fs-extra": "^8.1.0",
+ "node-object-hash": "^2.0.0",
+ "proper-lockfile": "^4.1.1",
+ "tmp": "^0.2.1",
+ "xdg-basedir": "^4.0.0"
}
},
- "@babel/types": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.12.1.tgz",
- "integrity": "sha512-BzSY3NJBKM4kyatSOWh3D/JJ2O3CVzBybHWxtgxnggaxEuaSTTDqeiSb/xk9lrkw2Tbqyivw5ZU4rT+EfznQsA==",
+ "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": {
- "@babel/helper-validator-identifier": "^7.10.4",
- "lodash": "^4.17.19",
- "to-fast-properties": "^2.0.0"
+ "pump": "^3.0.0"
}
},
- "debug": {
- "version": "4.2.0",
- "resolved": "https://registry.npmjs.org/debug/-/debug-4.2.0.tgz",
- "integrity": "sha512-IX2ncY78vDTjZMFUdmsvIRFY2Cf4FnD0wRs+nQwJU8Lu99/tPFdb0VybiiMTPe3I6rQmwsqQqRBvxU+bZ/I8sg==",
+ "has-flag": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
+ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ=="
+ },
+ "hosted-git-info": {
+ "version": "3.0.7",
+ "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-3.0.7.tgz",
+ "integrity": "sha512-fWqc0IcuXs+BmE9orLDyVykAG9GJtGLGuZAAqgcckPgv5xad4AcXGIv8galtQvlwutxSlaMcdw7BUtq2EIvqCQ==",
"requires": {
- "ms": "2.1.2"
+ "lru-cache": "^6.0.0"
}
},
"lodash": {
@@ -9895,279 +8762,248 @@
"resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.20.tgz",
"integrity": "sha512-PlhdFcillOINfeV7Ni6oF1TAEayyZBoZ8bcshTHqOYJYlrqzRK5hagpagky5o4HfCzzd1TRkXPMFq6cKk9rGmA=="
},
- "unist-util-is": {
+ "lru-cache": {
+ "version": "6.0.0",
+ "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz",
+ "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==",
+ "requires": {
+ "yallist": "^4.0.0"
+ }
+ },
+ "p-finally": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/p-finally/-/p-finally-2.0.1.tgz",
+ "integrity": "sha512-vpm09aKwq6H9phqRQzecoDpD8TmVyGw70qmWlyq5onxY7tqyTTFVvxMykxQSQKILBSFlbXpypIw2T1Ml7+DDtw=="
+ },
+ "path-key": {
+ "version": "3.1.1",
+ "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz",
+ "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q=="
+ },
+ "semver": {
+ "version": "7.3.2",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.2.tgz",
+ "integrity": "sha512-OrOb32TeeambH6UrhtShmF7CRDqhL6/5XpPNp2DuRH6+9QLw/orhp72j87v8Qa1ScDkvrrBNpZcDejAirJmfXQ=="
+ },
+ "shebang-command": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz",
+ "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==",
+ "requires": {
+ "shebang-regex": "^3.0.0"
+ }
+ },
+ "shebang-regex": {
"version": "3.0.0",
- "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-3.0.0.tgz",
- "integrity": "sha512-sVZZX3+kspVNmLWBPAB6r+7D9ZgAFPNWm66f7YNb420RlQSbn+n8rG8dGZSkrER7ZIXGQYNm5pqC3v3HopH24A=="
+ "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz",
+ "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A=="
},
- "unist-util-remove": {
- "version": "1.0.3",
- "resolved": "https://registry.npmjs.org/unist-util-remove/-/unist-util-remove-1.0.3.tgz",
- "integrity": "sha512-mB6nCHCQK0pQffUAcCVmKgIWzG/AXs/V8qpS8K72tMPtOSCMSjDeMc5yN+Ye8rB0FhcE+JvW++o1xRNc0R+++g==",
+ "strip-ansi": {
+ "version": "5.2.0",
+ "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz",
+ "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==",
"requires": {
- "unist-util-is": "^3.0.0"
+ "ansi-regex": "^4.1.0"
}
},
- "unist-util-visit": {
- "version": "1.4.1",
- "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-1.4.1.tgz",
- "integrity": "sha512-AvGNk7Bb//EmJZyhtRUnNMEpId/AZ5Ph/KUpTI09WHQuDZHKovQ1oEv3mfmKpWKtoMzyMC4GLBm1Zy5k12fjIw==",
+ "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": {
- "unist-util-visit-parents": "^2.0.0"
+ "has-flag": "^4.0.0"
}
},
- "unist-util-visit-parents": {
- "version": "2.1.2",
- "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-2.1.2.tgz",
- "integrity": "sha512-DyN5vD4NE3aSeB+PXYNKxzGsfocxp6asDc2XXE3b0ekO2BaRUpBicbbUygfSvYfUz1IkmjFR1YF7dPklraMZ2g==",
+ "which": {
+ "version": "2.0.2",
+ "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz",
+ "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==",
"requires": {
- "unist-util-is": "^3.0.0"
+ "isexe": "^2.0.0"
}
+ },
+ "yallist": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz",
+ "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A=="
}
}
},
- "gatsby-plugin-meta-redirect": {
- "version": "1.1.1",
- "resolved": "https://registry.npmjs.org/gatsby-plugin-meta-redirect/-/gatsby-plugin-meta-redirect-1.1.1.tgz",
- "integrity": "sha512-Oc4qgU3SlDUM9qoxIMKO+re2bdMs3/a2KXrfL65gb8XMLsHylBbveWtXZRhgjd2QDL/49RX4S9SEykuadRju2w==",
+ "gatsby-core-utils": {
+ "version": "1.3.23",
+ "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-1.3.23.tgz",
+ "integrity": "sha512-H6n6dDeRZ22HAJaBUIt5YjB/BSaE8Jq+kayMUv/YzL1RL2yFZ5lqcLwIL1OE2vWk1mQjMUBZCRxLODU0q1i3bQ==",
"requires": {
- "fs-extra": "^7.0.0"
+ "ci-info": "2.0.0",
+ "configstore": "^5.0.1",
+ "fs-extra": "^8.1.0",
+ "node-object-hash": "^2.0.0",
+ "proper-lockfile": "^4.1.1",
+ "tmp": "^0.2.1",
+ "xdg-basedir": "^4.0.0"
+ }
+ },
+ "gatsby-graphiql-explorer": {
+ "version": "0.4.15",
+ "resolved": "https://registry.npmjs.org/gatsby-graphiql-explorer/-/gatsby-graphiql-explorer-0.4.15.tgz",
+ "integrity": "sha512-Mo6wo6EX3pIL7ErKI0yJIfJw9iYDZyPyEsCQJDhcxymhqf1x0d8DRGDjyJDndDBiSuSUfgdBrHz/MKh3ZOZnAg==",
+ "requires": {
+ "@babel/runtime": "^7.11.2"
},
"dependencies": {
- "fs-extra": {
- "version": "7.0.1",
- "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-7.0.1.tgz",
- "integrity": "sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw==",
+ "@babel/runtime": {
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.5.tgz",
+ "integrity": "sha512-plcc+hbExy3McchJCEQG3knOsuh3HH+Prx1P6cLIkET/0dLuQDEnrT+s27Axgc9bqfsmNUNHfscgMUdBpC9xfg==",
"requires": {
- "graceful-fs": "^4.1.2",
- "jsonfile": "^4.0.0",
- "universalify": "^0.1.0"
+ "regenerator-runtime": "^0.13.4"
}
}
}
},
- "gatsby-plugin-page-creator": {
- "version": "2.3.34",
- "resolved": "https://registry.npmjs.org/gatsby-plugin-page-creator/-/gatsby-plugin-page-creator-2.3.34.tgz",
- "integrity": "sha512-/rFG/ye4m0JJ8NAxTObkKKD8098KOVGE+dZrgBx9I3VN1TcKru0HprVe1xj679HBgKjjNUvchXZbhLl5I+2o4A==",
+ "gatsby-legacy-polyfills": {
+ "version": "0.0.6",
+ "resolved": "https://registry.npmjs.org/gatsby-legacy-polyfills/-/gatsby-legacy-polyfills-0.0.6.tgz",
+ "integrity": "sha512-23O0orFhu1zkCluIFBs8pu8psfyyWquczfRk2NNdT2x4wW/HkZEjonWM5AkM6kjzZL9JrVCAZEgL4qf9OjgUoA==",
"requires": {
- "@babel/traverse": "^7.11.5",
- "@sindresorhus/slugify": "^1.1.0",
- "chokidar": "^3.4.2",
- "fs-exists-cached": "^1.0.0",
- "gatsby-page-utils": "^0.2.29",
- "globby": "^11.0.1",
- "graphql": "^14.7.0",
- "lodash": "^4.17.20"
- },
- "dependencies": {
- "@babel/generator": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.12.1.tgz",
- "integrity": "sha512-DB+6rafIdc9o72Yc3/Ph5h+6hUjeOp66pF0naQBgUFFuPqzQwIlPTm3xZR7YNvduIMtkDIj2t21LSQwnbCrXvg==",
- "requires": {
- "@babel/types": "^7.12.1",
- "jsesc": "^2.5.1",
- "source-map": "^0.5.0"
- }
- },
- "@babel/parser": {
- "version": "7.12.3",
- "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.12.3.tgz",
- "integrity": "sha512-kFsOS0IbsuhO5ojF8Hc8z/8vEIOkylVBrjiZUbLTE3XFe0Qi+uu6HjzQixkFaqr0ZPAMZcBVxEwmsnsLPZ2Xsw=="
- },
- "@babel/traverse": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.12.1.tgz",
- "integrity": "sha512-MA3WPoRt1ZHo2ZmoGKNqi20YnPt0B1S0GTZEPhhd+hw2KGUzBlHuVunj6K4sNuK+reEvyiPwtp0cpaqLzJDmAw==",
- "requires": {
- "@babel/code-frame": "^7.10.4",
- "@babel/generator": "^7.12.1",
- "@babel/helper-function-name": "^7.10.4",
- "@babel/helper-split-export-declaration": "^7.11.0",
- "@babel/parser": "^7.12.1",
- "@babel/types": "^7.12.1",
- "debug": "^4.1.0",
- "globals": "^11.1.0",
- "lodash": "^4.17.19"
- }
- },
- "@babel/types": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.12.1.tgz",
- "integrity": "sha512-BzSY3NJBKM4kyatSOWh3D/JJ2O3CVzBybHWxtgxnggaxEuaSTTDqeiSb/xk9lrkw2Tbqyivw5ZU4rT+EfznQsA==",
- "requires": {
- "@babel/helper-validator-identifier": "^7.10.4",
- "lodash": "^4.17.19",
- "to-fast-properties": "^2.0.0"
- }
- },
- "anymatch": {
- "version": "3.1.1",
- "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.1.tgz",
- "integrity": "sha512-mM8522psRCqzV+6LhomX5wgp25YVibjh8Wj23I5RPkPppSVSjyKD2A2mBJmWGa+KN7f2D6LNh9jkBCeyLktzjg==",
- "requires": {
- "normalize-path": "^3.0.0",
- "picomatch": "^2.0.4"
- }
- },
- "binary-extensions": {
- "version": "2.1.0",
- "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.1.0.tgz",
- "integrity": "sha512-1Yj8h9Q+QDF5FzhMs/c9+6UntbD5MkRfRwac8DoEm9ZfUBZ7tZ55YcGVAzEe4bXsdQHEk+s9S5wsOKVdZrw0tQ=="
- },
- "braces": {
- "version": "3.0.2",
- "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz",
- "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==",
- "requires": {
- "fill-range": "^7.0.1"
- }
- },
- "chokidar": {
- "version": "3.4.3",
- "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.4.3.tgz",
- "integrity": "sha512-DtM3g7juCXQxFVSNPNByEC2+NImtBuxQQvWlHunpJIS5Ocr0lG306cC7FCi7cEA0fzmybPUIl4txBIobk1gGOQ==",
- "requires": {
- "anymatch": "~3.1.1",
- "braces": "~3.0.2",
- "fsevents": "~2.1.2",
- "glob-parent": "~5.1.0",
- "is-binary-path": "~2.1.0",
- "is-glob": "~4.0.1",
- "normalize-path": "~3.0.0",
- "readdirp": "~3.5.0"
- }
- },
- "debug": {
- "version": "4.2.0",
- "resolved": "https://registry.npmjs.org/debug/-/debug-4.2.0.tgz",
- "integrity": "sha512-IX2ncY78vDTjZMFUdmsvIRFY2Cf4FnD0wRs+nQwJU8Lu99/tPFdb0VybiiMTPe3I6rQmwsqQqRBvxU+bZ/I8sg==",
- "requires": {
- "ms": "2.1.2"
- }
- },
- "fill-range": {
- "version": "7.0.1",
- "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz",
- "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==",
- "requires": {
- "to-regex-range": "^5.0.1"
- }
- },
- "fsevents": {
- "version": "2.1.3",
- "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.1.3.tgz",
- "integrity": "sha512-Auw9a4AxqWpa9GUfj370BMPzzyncfBABW8Mab7BGWBYDj4Isgq+cDKtx0i6u9jcX9pQDnswsaaOTgTmA5pEjuQ==",
- "optional": true
- },
- "glob-parent": {
- "version": "5.1.1",
- "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.1.tgz",
- "integrity": "sha512-FnI+VGOpnlGHWZxthPGR+QhR78fuiK0sNLkHQv+bL9fQi57lNNdquIbna/WrfROrolq8GK5Ek6BiMwqL/voRYQ==",
+ "core-js-compat": "^3.6.5"
+ }
+ },
+ "gatsby-link": {
+ "version": "2.4.16",
+ "resolved": "https://registry.npmjs.org/gatsby-link/-/gatsby-link-2.4.16.tgz",
+ "integrity": "sha512-wsccuSOIAjhRDQRKmIj2+FUNR94QEBnELki0giN+lLKvWB3EO8mXjTIccXC0bMpe8VQcBlv3DHpUo72EAkkFAg==",
+ "requires": {
+ "@babel/runtime": "^7.11.2",
+ "@types/reach__router": "^1.3.6",
+ "prop-types": "^15.7.2"
+ },
+ "dependencies": {
+ "@babel/runtime": {
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.5.tgz",
+ "integrity": "sha512-plcc+hbExy3McchJCEQG3knOsuh3HH+Prx1P6cLIkET/0dLuQDEnrT+s27Axgc9bqfsmNUNHfscgMUdBpC9xfg==",
"requires": {
- "is-glob": "^4.0.1"
+ "regenerator-runtime": "^0.13.4"
}
- },
- "globby": {
- "version": "11.0.1",
- "resolved": "https://registry.npmjs.org/globby/-/globby-11.0.1.tgz",
- "integrity": "sha512-iH9RmgwCmUJHi2z5o2l3eTtGBtXek1OYlHrbcxOYugyHLmAsZrPj43OtHThd62Buh/Vv6VyCBD2bdyWcGNQqoQ==",
+ }
+ }
+ },
+ "gatsby-page-utils": {
+ "version": "0.2.30",
+ "resolved": "https://registry.npmjs.org/gatsby-page-utils/-/gatsby-page-utils-0.2.30.tgz",
+ "integrity": "sha512-H4a6VgDuO4Obd2UgZmfHCnpN3D6NOOpcgVSf8XuC7fmksVhQ3L2v7zw7y/TNS1Fz74yEKffnaF9pqRfkg8D/yg==",
+ "requires": {
+ "@babel/runtime": "^7.11.2",
+ "bluebird": "^3.7.2",
+ "chokidar": "^3.4.3",
+ "fs-exists-cached": "^1.0.0",
+ "gatsby-core-utils": "^1.3.24",
+ "glob": "^7.1.6",
+ "lodash": "^4.17.20",
+ "micromatch": "^4.0.2"
+ },
+ "dependencies": {
+ "@babel/runtime": {
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.5.tgz",
+ "integrity": "sha512-plcc+hbExy3McchJCEQG3knOsuh3HH+Prx1P6cLIkET/0dLuQDEnrT+s27Axgc9bqfsmNUNHfscgMUdBpC9xfg==",
"requires": {
- "array-union": "^2.1.0",
- "dir-glob": "^3.0.1",
- "fast-glob": "^3.1.1",
- "ignore": "^5.1.4",
- "merge2": "^1.3.0",
- "slash": "^3.0.0"
+ "regenerator-runtime": "^0.13.4"
}
},
- "is-binary-path": {
- "version": "2.1.0",
- "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz",
- "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==",
+ "gatsby-core-utils": {
+ "version": "1.3.24",
+ "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-1.3.24.tgz",
+ "integrity": "sha512-SlK7rJv/8NBYC8FodYvTINamBHadXNSv//a2uRwh44N1GSSujuCMvtUcpEuAdg9BUQHc54NbbmFuoqf8p85kgA==",
"requires": {
- "binary-extensions": "^2.0.0"
+ "ci-info": "2.0.0",
+ "configstore": "^5.0.1",
+ "fs-extra": "^8.1.0",
+ "node-object-hash": "^2.0.0",
+ "proper-lockfile": "^4.1.1",
+ "tmp": "^0.2.1",
+ "xdg-basedir": "^4.0.0"
}
},
- "is-number": {
- "version": "7.0.0",
- "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz",
- "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng=="
- },
"lodash": {
"version": "4.17.20",
"resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.20.tgz",
"integrity": "sha512-PlhdFcillOINfeV7Ni6oF1TAEayyZBoZ8bcshTHqOYJYlrqzRK5hagpagky5o4HfCzzd1TRkXPMFq6cKk9rGmA=="
- },
- "readdirp": {
- "version": "3.5.0",
- "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.5.0.tgz",
- "integrity": "sha512-cMhu7c/8rdhkHXWsY+osBhfSy0JikwpHK/5+imo+LpeasTF8ouErHrlYkwT0++njiyuDvc7OFY5T3ukvZ8qmFQ==",
- "requires": {
- "picomatch": "^2.2.1"
- }
- },
- "to-regex-range": {
- "version": "5.0.1",
- "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz",
- "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==",
- "requires": {
- "is-number": "^7.0.0"
- }
}
}
},
- "gatsby-plugin-redirects": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/gatsby-plugin-redirects/-/gatsby-plugin-redirects-1.0.0.tgz",
- "integrity": "sha512-FB3pIqAfE4sD86DKndHuildhJaNJllzu2n1yJYjRpSImv8Ln1f7JH/HWoxYbNMj1n/r+Ktu8zh0TsulyaqvyOg==",
+ "gatsby-plugin-compile-es6-packages": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/gatsby-plugin-compile-es6-packages/-/gatsby-plugin-compile-es6-packages-2.1.0.tgz",
+ "integrity": "sha512-yrYAAjabHWJr3ARi8xzDm01dbBfyOxEWTwGkL3BMdgL/opfLvTrwLmfium4kSelnLs70DYY3rYDwyHjqyFsnFQ==",
"requires": {
- "gatsby-plugin-meta-redirect": "^1.1.1"
+ "@babel/runtime": "^7.0.0",
+ "regex-escape": "^3.4.8"
}
},
- "gatsby-plugin-theme-ui": {
- "version": "0.4.0-alpha.3",
- "resolved": "https://registry.npmjs.org/gatsby-plugin-theme-ui/-/gatsby-plugin-theme-ui-0.4.0-alpha.3.tgz",
- "integrity": "sha512-jaEN95M7z5f6pV4/4eaPxNx48GNpAYzNcnFtZ03Hou4RtXyzmM9A87zisXbQFayAWTF+C7efZ4Bp3Pv2+NAvbA=="
- },
- "gatsby-plugin-typescript": {
- "version": "2.5.0",
- "resolved": "https://registry.npmjs.org/gatsby-plugin-typescript/-/gatsby-plugin-typescript-2.5.0.tgz",
- "integrity": "sha512-AGsUvjh/iiX5zo5cR88Rsj0da20oOVgzQK9bidMoDa42tjbskiu7oq6hl6NBo8TCuLeoHvf/enxXF1aByU7JGw==",
+ "gatsby-plugin-emotion": {
+ "version": "4.3.15",
+ "resolved": "https://registry.npmjs.org/gatsby-plugin-emotion/-/gatsby-plugin-emotion-4.3.15.tgz",
+ "integrity": "sha512-cuZGk/c+uxz4idAPFvayXWqjnw1mLheitUVkbPLiGkk2ZQGkzQ0z0iGX+nY7wzEKvmBXV9745jkdwnwa5GC8/Q==",
"requires": {
- "@babel/core": "^7.11.6",
- "@babel/plugin-proposal-nullish-coalescing-operator": "^7.10.4",
- "@babel/plugin-proposal-numeric-separator": "^7.10.4",
- "@babel/plugin-proposal-optional-chaining": "^7.11.0",
- "@babel/preset-typescript": "^7.10.4",
"@babel/runtime": "^7.11.2",
- "babel-plugin-remove-graphql-queries": "^2.9.20"
+ "@emotion/babel-preset-css-prop": "^10.0.27"
},
"dependencies": {
- "@babel/core": {
- "version": "7.12.3",
- "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.12.3.tgz",
- "integrity": "sha512-0qXcZYKZp3/6N2jKYVxZv0aNCsxTSVCiK72DTiTYZAu7sjg73W0/aynWjMbiGd87EQL4WyA8reiJVh92AVla9g==",
+ "@babel/runtime": {
+ "version": "7.12.1",
+ "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.1.tgz",
+ "integrity": "sha512-J5AIf3vPj3UwXaAzb5j1xM4WAQDX3EMgemF8rjCP3SoW09LfRKAXQKt6CoVYl230P6iWdRcBbnLDDdnqWxZSCA==",
"requires": {
- "@babel/code-frame": "^7.10.4",
- "@babel/generator": "^7.12.1",
- "@babel/helper-module-transforms": "^7.12.1",
- "@babel/helpers": "^7.12.1",
- "@babel/parser": "^7.12.3",
- "@babel/template": "^7.10.4",
- "@babel/traverse": "^7.12.1",
- "@babel/types": "^7.12.1",
- "convert-source-map": "^1.7.0",
- "debug": "^4.1.0",
- "gensync": "^1.0.0-beta.1",
- "json5": "^2.1.2",
- "lodash": "^4.17.19",
- "resolve": "^1.3.2",
- "semver": "^5.4.1",
- "source-map": "^0.5.0"
+ "regenerator-runtime": "^0.13.4"
}
- },
+ }
+ }
+ },
+ "gatsby-plugin-mdx": {
+ "version": "1.3.0",
+ "resolved": "https://registry.npmjs.org/gatsby-plugin-mdx/-/gatsby-plugin-mdx-1.3.0.tgz",
+ "integrity": "sha512-3M401qUc76duSTBzocgUuf7ZGTQTfoOsUuse5gwK5KAIB+t0BzBREF6qvjmacVsLI4rBodSkjIkFMtQkjPGLIA==",
+ "requires": {
+ "@babel/core": "^7.11.6",
+ "@babel/generator": "^7.11.6",
+ "@babel/helper-plugin-utils": "^7.10.4",
+ "@babel/plugin-proposal-object-rest-spread": "^7.11.0",
+ "@babel/preset-env": "^7.11.5",
+ "@babel/preset-react": "^7.10.4",
+ "@babel/types": "^7.11.5",
+ "camelcase-css": "^2.0.1",
+ "change-case": "^3.1.0",
+ "core-js": "^3.6.5",
+ "dataloader": "^1.4.0",
+ "debug": "^4.1.1",
+ "escape-string-regexp": "^1.0.5",
+ "eval": "^0.1.4",
+ "fs-extra": "^8.1.0",
+ "gatsby-core-utils": "^1.3.23",
+ "gray-matter": "^4.0.2",
+ "json5": "^2.1.3",
+ "loader-utils": "^1.4.0",
+ "lodash": "^4.17.20",
+ "mdast-util-to-string": "^1.1.0",
+ "mdast-util-toc": "^3.1.0",
+ "mime": "^2.4.6",
+ "p-queue": "^5.0.0",
+ "pretty-bytes": "^5.3.0",
+ "remark": "^10.0.1",
+ "remark-retext": "^3.1.3",
+ "retext-english": "^3.0.4",
+ "slugify": "^1.4.4",
+ "static-site-generator-webpack-plugin": "^3.4.2",
+ "style-to-object": "^0.3.0",
+ "underscore.string": "^3.3.5",
+ "unified": "^8.4.2",
+ "unist-util-map": "^1.0.5",
+ "unist-util-remove": "^1.0.3",
+ "unist-util-visit": "^1.4.1"
+ },
+ "dependencies": {
"@babel/generator": {
"version": "7.12.1",
"resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.12.1.tgz",
@@ -10178,100 +9014,130 @@
"source-map": "^0.5.0"
}
},
- "@babel/helper-member-expression-to-functions": {
+ "@babel/types": {
"version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.12.1.tgz",
- "integrity": "sha512-k0CIe3tXUKTRSoEx1LQEPFU9vRQfqHtl+kf8eNnDqb4AUJEy5pz6aIiog+YWtVm2jpggjS1laH68bPsR+KWWPQ==",
+ "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.12.1.tgz",
+ "integrity": "sha512-BzSY3NJBKM4kyatSOWh3D/JJ2O3CVzBybHWxtgxnggaxEuaSTTDqeiSb/xk9lrkw2Tbqyivw5ZU4rT+EfznQsA==",
"requires": {
- "@babel/types": "^7.12.1"
+ "@babel/helper-validator-identifier": "^7.10.4",
+ "lodash": "^4.17.19",
+ "to-fast-properties": "^2.0.0"
}
},
- "@babel/helper-module-imports": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.12.1.tgz",
- "integrity": "sha512-ZeC1TlMSvikvJNy1v/wPIazCu3NdOwgYZLIkmIyAsGhqkNpiDoQQRmaCK8YP4Pq3GPTLPV9WXaPCJKvx06JxKA==",
+ "debug": {
+ "version": "4.2.0",
+ "resolved": "https://registry.npmjs.org/debug/-/debug-4.2.0.tgz",
+ "integrity": "sha512-IX2ncY78vDTjZMFUdmsvIRFY2Cf4FnD0wRs+nQwJU8Lu99/tPFdb0VybiiMTPe3I6rQmwsqQqRBvxU+bZ/I8sg==",
"requires": {
- "@babel/types": "^7.12.1"
+ "ms": "2.1.2"
}
},
- "@babel/helper-module-transforms": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.12.1.tgz",
- "integrity": "sha512-QQzehgFAZ2bbISiCpmVGfiGux8YVFXQ0abBic2Envhej22DVXV9nCFaS5hIQbkyo1AdGb+gNME2TSh3hYJVV/w==",
+ "lodash": {
+ "version": "4.17.20",
+ "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.20.tgz",
+ "integrity": "sha512-PlhdFcillOINfeV7Ni6oF1TAEayyZBoZ8bcshTHqOYJYlrqzRK5hagpagky5o4HfCzzd1TRkXPMFq6cKk9rGmA=="
+ },
+ "unist-util-is": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-3.0.0.tgz",
+ "integrity": "sha512-sVZZX3+kspVNmLWBPAB6r+7D9ZgAFPNWm66f7YNb420RlQSbn+n8rG8dGZSkrER7ZIXGQYNm5pqC3v3HopH24A=="
+ },
+ "unist-util-remove": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/unist-util-remove/-/unist-util-remove-1.0.3.tgz",
+ "integrity": "sha512-mB6nCHCQK0pQffUAcCVmKgIWzG/AXs/V8qpS8K72tMPtOSCMSjDeMc5yN+Ye8rB0FhcE+JvW++o1xRNc0R+++g==",
"requires": {
- "@babel/helper-module-imports": "^7.12.1",
- "@babel/helper-replace-supers": "^7.12.1",
- "@babel/helper-simple-access": "^7.12.1",
- "@babel/helper-split-export-declaration": "^7.11.0",
- "@babel/helper-validator-identifier": "^7.10.4",
- "@babel/template": "^7.10.4",
- "@babel/traverse": "^7.12.1",
- "@babel/types": "^7.12.1",
- "lodash": "^4.17.19"
+ "unist-util-is": "^3.0.0"
}
},
- "@babel/helper-replace-supers": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.12.1.tgz",
- "integrity": "sha512-zJjTvtNJnCFsCXVi5rUInstLd/EIVNmIKA1Q9ynESmMBWPWd+7sdR+G4/wdu+Mppfep0XLyG2m7EBPvjCeFyrw==",
+ "unist-util-visit": {
+ "version": "1.4.1",
+ "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-1.4.1.tgz",
+ "integrity": "sha512-AvGNk7Bb//EmJZyhtRUnNMEpId/AZ5Ph/KUpTI09WHQuDZHKovQ1oEv3mfmKpWKtoMzyMC4GLBm1Zy5k12fjIw==",
"requires": {
- "@babel/helper-member-expression-to-functions": "^7.12.1",
- "@babel/helper-optimise-call-expression": "^7.10.4",
- "@babel/traverse": "^7.12.1",
- "@babel/types": "^7.12.1"
+ "unist-util-visit-parents": "^2.0.0"
}
},
- "@babel/helper-simple-access": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.12.1.tgz",
- "integrity": "sha512-OxBp7pMrjVewSSC8fXDFrHrBcJATOOFssZwv16F3/6Xtc138GHybBfPbm9kfiqQHKhYQrlamWILwlDCeyMFEaA==",
+ "unist-util-visit-parents": {
+ "version": "2.1.2",
+ "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-2.1.2.tgz",
+ "integrity": "sha512-DyN5vD4NE3aSeB+PXYNKxzGsfocxp6asDc2XXE3b0ekO2BaRUpBicbbUygfSvYfUz1IkmjFR1YF7dPklraMZ2g==",
"requires": {
- "@babel/types": "^7.12.1"
+ "unist-util-is": "^3.0.0"
}
- },
- "@babel/helpers": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.12.1.tgz",
- "integrity": "sha512-9JoDSBGoWtmbay98efmT2+mySkwjzeFeAL9BuWNoVQpkPFQF8SIIFUfY5os9u8wVzglzoiPRSW7cuJmBDUt43g==",
+ }
+ }
+ },
+ "gatsby-plugin-meta-redirect": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/gatsby-plugin-meta-redirect/-/gatsby-plugin-meta-redirect-1.1.1.tgz",
+ "integrity": "sha512-Oc4qgU3SlDUM9qoxIMKO+re2bdMs3/a2KXrfL65gb8XMLsHylBbveWtXZRhgjd2QDL/49RX4S9SEykuadRju2w==",
+ "requires": {
+ "fs-extra": "^7.0.0"
+ },
+ "dependencies": {
+ "fs-extra": {
+ "version": "7.0.1",
+ "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-7.0.1.tgz",
+ "integrity": "sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw==",
+ "requires": {
+ "graceful-fs": "^4.1.2",
+ "jsonfile": "^4.0.0",
+ "universalify": "^0.1.0"
+ }
+ }
+ }
+ },
+ "gatsby-plugin-page-creator": {
+ "version": "2.3.35",
+ "resolved": "https://registry.npmjs.org/gatsby-plugin-page-creator/-/gatsby-plugin-page-creator-2.3.35.tgz",
+ "integrity": "sha512-hT6hgkplHSBXin9DECOxNQastvRJq15XrzN8327VU/67tetYGOG7SKDSxN4eCaIwy7VK0nP0C97gyN7kQ3FNJw==",
+ "requires": {
+ "@babel/traverse": "^7.11.5",
+ "@sindresorhus/slugify": "^1.1.0",
+ "chokidar": "^3.4.2",
+ "fs-exists-cached": "^1.0.0",
+ "gatsby-page-utils": "^0.2.30",
+ "globby": "^11.0.1",
+ "graphql": "^14.7.0",
+ "lodash": "^4.17.20"
+ },
+ "dependencies": {
+ "@babel/generator": {
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.12.5.tgz",
+ "integrity": "sha512-m16TQQJ8hPt7E+OS/XVQg/7U184MLXtvuGbCdA7na61vha+ImkyyNM/9DDA0unYCVZn3ZOhng+qz48/KBOT96A==",
"requires": {
- "@babel/template": "^7.10.4",
- "@babel/traverse": "^7.12.1",
- "@babel/types": "^7.12.1"
+ "@babel/types": "^7.12.5",
+ "jsesc": "^2.5.1",
+ "source-map": "^0.5.0"
}
},
"@babel/parser": {
- "version": "7.12.3",
- "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.12.3.tgz",
- "integrity": "sha512-kFsOS0IbsuhO5ojF8Hc8z/8vEIOkylVBrjiZUbLTE3XFe0Qi+uu6HjzQixkFaqr0ZPAMZcBVxEwmsnsLPZ2Xsw=="
- },
- "@babel/runtime": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.1.tgz",
- "integrity": "sha512-J5AIf3vPj3UwXaAzb5j1xM4WAQDX3EMgemF8rjCP3SoW09LfRKAXQKt6CoVYl230P6iWdRcBbnLDDdnqWxZSCA==",
- "requires": {
- "regenerator-runtime": "^0.13.4"
- }
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.12.5.tgz",
+ "integrity": "sha512-FVM6RZQ0mn2KCf1VUED7KepYeUWoVShczewOCfm3nzoBybaih51h+sYVVGthW9M6lPByEPTQf+xm27PBdlpwmQ=="
},
"@babel/traverse": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.12.1.tgz",
- "integrity": "sha512-MA3WPoRt1ZHo2ZmoGKNqi20YnPt0B1S0GTZEPhhd+hw2KGUzBlHuVunj6K4sNuK+reEvyiPwtp0cpaqLzJDmAw==",
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.12.5.tgz",
+ "integrity": "sha512-xa15FbQnias7z9a62LwYAA5SZZPkHIXpd42C6uW68o8uTuua96FHZy1y61Va5P/i83FAAcMpW8+A/QayntzuqA==",
"requires": {
"@babel/code-frame": "^7.10.4",
- "@babel/generator": "^7.12.1",
+ "@babel/generator": "^7.12.5",
"@babel/helper-function-name": "^7.10.4",
"@babel/helper-split-export-declaration": "^7.11.0",
- "@babel/parser": "^7.12.1",
- "@babel/types": "^7.12.1",
+ "@babel/parser": "^7.12.5",
+ "@babel/types": "^7.12.5",
"debug": "^4.1.0",
"globals": "^11.1.0",
"lodash": "^4.17.19"
}
},
"@babel/types": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.12.1.tgz",
- "integrity": "sha512-BzSY3NJBKM4kyatSOWh3D/JJ2O3CVzBybHWxtgxnggaxEuaSTTDqeiSb/xk9lrkw2Tbqyivw5ZU4rT+EfznQsA==",
+ "version": "7.12.6",
+ "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.12.6.tgz",
+ "integrity": "sha512-hwyjw6GvjBLiyy3W0YQf0Z5Zf4NpYejUnKFcfcUhZCSffoBBp30w6wP2Wn6pk31jMYZvcOrB/1b7cGXvEoKogA==",
"requires": {
"@babel/helper-validator-identifier": "^7.10.4",
"lodash": "^4.17.19",
@@ -10285,6 +9151,61 @@
"requires": {
"ms": "2.1.2"
}
+ },
+ "globby": {
+ "version": "11.0.1",
+ "resolved": "https://registry.npmjs.org/globby/-/globby-11.0.1.tgz",
+ "integrity": "sha512-iH9RmgwCmUJHi2z5o2l3eTtGBtXek1OYlHrbcxOYugyHLmAsZrPj43OtHThd62Buh/Vv6VyCBD2bdyWcGNQqoQ==",
+ "requires": {
+ "array-union": "^2.1.0",
+ "dir-glob": "^3.0.1",
+ "fast-glob": "^3.1.1",
+ "ignore": "^5.1.4",
+ "merge2": "^1.3.0",
+ "slash": "^3.0.0"
+ }
+ },
+ "lodash": {
+ "version": "4.17.20",
+ "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.20.tgz",
+ "integrity": "sha512-PlhdFcillOINfeV7Ni6oF1TAEayyZBoZ8bcshTHqOYJYlrqzRK5hagpagky5o4HfCzzd1TRkXPMFq6cKk9rGmA=="
+ }
+ }
+ },
+ "gatsby-plugin-redirects": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/gatsby-plugin-redirects/-/gatsby-plugin-redirects-1.0.0.tgz",
+ "integrity": "sha512-FB3pIqAfE4sD86DKndHuildhJaNJllzu2n1yJYjRpSImv8Ln1f7JH/HWoxYbNMj1n/r+Ktu8zh0TsulyaqvyOg==",
+ "requires": {
+ "gatsby-plugin-meta-redirect": "^1.1.1"
+ }
+ },
+ "gatsby-plugin-theme-ui": {
+ "version": "0.4.0-alpha.3",
+ "resolved": "https://registry.npmjs.org/gatsby-plugin-theme-ui/-/gatsby-plugin-theme-ui-0.4.0-alpha.3.tgz",
+ "integrity": "sha512-jaEN95M7z5f6pV4/4eaPxNx48GNpAYzNcnFtZ03Hou4RtXyzmM9A87zisXbQFayAWTF+C7efZ4Bp3Pv2+NAvbA=="
+ },
+ "gatsby-plugin-typescript": {
+ "version": "2.5.0",
+ "resolved": "https://registry.npmjs.org/gatsby-plugin-typescript/-/gatsby-plugin-typescript-2.5.0.tgz",
+ "integrity": "sha512-AGsUvjh/iiX5zo5cR88Rsj0da20oOVgzQK9bidMoDa42tjbskiu7oq6hl6NBo8TCuLeoHvf/enxXF1aByU7JGw==",
+ "requires": {
+ "@babel/core": "^7.11.6",
+ "@babel/plugin-proposal-nullish-coalescing-operator": "^7.10.4",
+ "@babel/plugin-proposal-numeric-separator": "^7.10.4",
+ "@babel/plugin-proposal-optional-chaining": "^7.11.0",
+ "@babel/preset-typescript": "^7.10.4",
+ "@babel/runtime": "^7.11.2",
+ "babel-plugin-remove-graphql-queries": "^2.9.20"
+ },
+ "dependencies": {
+ "@babel/runtime": {
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.5.tgz",
+ "integrity": "sha512-plcc+hbExy3McchJCEQG3knOsuh3HH+Prx1P6cLIkET/0dLuQDEnrT+s27Axgc9bqfsmNUNHfscgMUdBpC9xfg==",
+ "requires": {
+ "regenerator-runtime": "^0.13.4"
+ }
}
}
},
@@ -10305,219 +9226,108 @@
},
"dependencies": {
"@babel/runtime": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.1.tgz",
- "integrity": "sha512-J5AIf3vPj3UwXaAzb5j1xM4WAQDX3EMgemF8rjCP3SoW09LfRKAXQKt6CoVYl230P6iWdRcBbnLDDdnqWxZSCA==",
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.5.tgz",
+ "integrity": "sha512-plcc+hbExy3McchJCEQG3knOsuh3HH+Prx1P6cLIkET/0dLuQDEnrT+s27Axgc9bqfsmNUNHfscgMUdBpC9xfg==",
"requires": {
"regenerator-runtime": "^0.13.4"
}
}
- }
- },
- "gatsby-recipes": {
- "version": "0.2.36",
- "resolved": "https://registry.npmjs.org/gatsby-recipes/-/gatsby-recipes-0.2.36.tgz",
- "integrity": "sha512-GrXRHdEOyGHe5r1hyePWc7kYM3yIu+RDargLqgHGO/lb76ZXRYhjlQ06chL3NMbmxAMYF3UcIm4RSlTS6rLkIg==",
- "requires": {
- "@babel/core": "^7.11.6",
- "@babel/generator": "^7.11.6",
- "@babel/helper-plugin-utils": "^7.10.4",
- "@babel/plugin-proposal-optional-chaining": "^7.11.0",
- "@babel/plugin-transform-react-jsx": "^7.10.4",
- "@babel/standalone": "^7.11.6",
- "@babel/template": "^7.10.4",
- "@babel/types": "^7.11.5",
- "@graphql-tools/schema": "^6.0.14",
- "@graphql-tools/utils": "^6.0.14",
- "@hapi/hoek": "8.x.x",
- "@hapi/joi": "^15.1.1",
- "better-queue": "^3.8.10",
- "chokidar": "^3.4.2",
- "contentful-management": "^5.26.3",
- "cors": "^2.8.5",
- "debug": "^4.1.1",
- "detect-port": "^1.3.0",
- "dotenv": "^8.2.0",
- "execa": "^4.0.2",
- "express": "^4.17.1",
- "express-graphql": "^0.9.0",
- "fs-extra": "^8.1.0",
- "gatsby-core-utils": "^1.3.23",
- "gatsby-telemetry": "^1.3.39",
- "glob": "^7.1.6",
- "graphql": "^14.6.0",
- "graphql-compose": "^6.3.8",
- "graphql-subscriptions": "^1.1.0",
- "graphql-type-json": "^0.3.2",
- "hicat": "^0.7.0",
- "is-binary-path": "^2.1.0",
- "is-url": "^1.2.4",
- "jest-diff": "^25.5.0",
- "lock": "^1.0.0",
- "lodash": "^4.17.20",
- "mitt": "^1.2.0",
- "mkdirp": "^0.5.1",
- "node-fetch": "^2.5.0",
- "pkg-dir": "^4.2.0",
- "prettier": "^2.0.5",
- "prop-types": "^15.6.1",
- "remark-mdx": "^2.0.0-next.4",
- "remark-mdxjs": "^2.0.0-next.4",
- "remark-parse": "^6.0.3",
- "remark-stringify": "^8.1.0",
- "resolve-cwd": "^3.0.0",
- "resolve-from": "^5.0.0",
- "semver": "^7.3.2",
- "single-trailing-newline": "^1.0.0",
- "strip-ansi": "^6.0.0",
- "style-to-object": "^0.3.0",
- "unified": "^8.4.2",
- "unist-util-remove": "^2.0.0",
- "unist-util-visit": "^2.0.2",
- "uuid": "3.4.0",
- "ws": "^7.3.0",
- "xstate": "^4.9.1",
- "yoga-layout-prebuilt": "^1.9.6"
- },
- "dependencies": {
- "@babel/core": {
- "version": "7.12.3",
- "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.12.3.tgz",
- "integrity": "sha512-0qXcZYKZp3/6N2jKYVxZv0aNCsxTSVCiK72DTiTYZAu7sjg73W0/aynWjMbiGd87EQL4WyA8reiJVh92AVla9g==",
- "requires": {
- "@babel/code-frame": "^7.10.4",
- "@babel/generator": "^7.12.1",
- "@babel/helper-module-transforms": "^7.12.1",
- "@babel/helpers": "^7.12.1",
- "@babel/parser": "^7.12.3",
- "@babel/template": "^7.10.4",
- "@babel/traverse": "^7.12.1",
- "@babel/types": "^7.12.1",
- "convert-source-map": "^1.7.0",
- "debug": "^4.1.0",
- "gensync": "^1.0.0-beta.1",
- "json5": "^2.1.2",
- "lodash": "^4.17.19",
- "resolve": "^1.3.2",
- "semver": "^5.4.1",
- "source-map": "^0.5.0"
- },
- "dependencies": {
- "semver": {
- "version": "5.7.1",
- "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz",
- "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ=="
- }
- }
- },
- "@babel/generator": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.12.1.tgz",
- "integrity": "sha512-DB+6rafIdc9o72Yc3/Ph5h+6hUjeOp66pF0naQBgUFFuPqzQwIlPTm3xZR7YNvduIMtkDIj2t21LSQwnbCrXvg==",
- "requires": {
- "@babel/types": "^7.12.1",
- "jsesc": "^2.5.1",
- "source-map": "^0.5.0"
- }
- },
- "@babel/helper-member-expression-to-functions": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.12.1.tgz",
- "integrity": "sha512-k0CIe3tXUKTRSoEx1LQEPFU9vRQfqHtl+kf8eNnDqb4AUJEy5pz6aIiog+YWtVm2jpggjS1laH68bPsR+KWWPQ==",
- "requires": {
- "@babel/types": "^7.12.1"
- }
- },
- "@babel/helper-module-imports": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.12.1.tgz",
- "integrity": "sha512-ZeC1TlMSvikvJNy1v/wPIazCu3NdOwgYZLIkmIyAsGhqkNpiDoQQRmaCK8YP4Pq3GPTLPV9WXaPCJKvx06JxKA==",
- "requires": {
- "@babel/types": "^7.12.1"
- }
- },
- "@babel/helper-module-transforms": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.12.1.tgz",
- "integrity": "sha512-QQzehgFAZ2bbISiCpmVGfiGux8YVFXQ0abBic2Envhej22DVXV9nCFaS5hIQbkyo1AdGb+gNME2TSh3hYJVV/w==",
- "requires": {
- "@babel/helper-module-imports": "^7.12.1",
- "@babel/helper-replace-supers": "^7.12.1",
- "@babel/helper-simple-access": "^7.12.1",
- "@babel/helper-split-export-declaration": "^7.11.0",
- "@babel/helper-validator-identifier": "^7.10.4",
- "@babel/template": "^7.10.4",
- "@babel/traverse": "^7.12.1",
- "@babel/types": "^7.12.1",
- "lodash": "^4.17.19"
- }
- },
- "@babel/helper-replace-supers": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.12.1.tgz",
- "integrity": "sha512-zJjTvtNJnCFsCXVi5rUInstLd/EIVNmIKA1Q9ynESmMBWPWd+7sdR+G4/wdu+Mppfep0XLyG2m7EBPvjCeFyrw==",
- "requires": {
- "@babel/helper-member-expression-to-functions": "^7.12.1",
- "@babel/helper-optimise-call-expression": "^7.10.4",
- "@babel/traverse": "^7.12.1",
- "@babel/types": "^7.12.1"
- }
- },
- "@babel/helper-simple-access": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.12.1.tgz",
- "integrity": "sha512-OxBp7pMrjVewSSC8fXDFrHrBcJATOOFssZwv16F3/6Xtc138GHybBfPbm9kfiqQHKhYQrlamWILwlDCeyMFEaA==",
- "requires": {
- "@babel/types": "^7.12.1"
- }
- },
- "@babel/helpers": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.12.1.tgz",
- "integrity": "sha512-9JoDSBGoWtmbay98efmT2+mySkwjzeFeAL9BuWNoVQpkPFQF8SIIFUfY5os9u8wVzglzoiPRSW7cuJmBDUt43g==",
- "requires": {
- "@babel/template": "^7.10.4",
- "@babel/traverse": "^7.12.1",
- "@babel/types": "^7.12.1"
- }
- },
- "@babel/parser": {
- "version": "7.12.3",
- "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.12.3.tgz",
- "integrity": "sha512-kFsOS0IbsuhO5ojF8Hc8z/8vEIOkylVBrjiZUbLTE3XFe0Qi+uu6HjzQixkFaqr0ZPAMZcBVxEwmsnsLPZ2Xsw=="
- },
- "@babel/traverse": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.12.1.tgz",
- "integrity": "sha512-MA3WPoRt1ZHo2ZmoGKNqi20YnPt0B1S0GTZEPhhd+hw2KGUzBlHuVunj6K4sNuK+reEvyiPwtp0cpaqLzJDmAw==",
+ }
+ },
+ "gatsby-recipes": {
+ "version": "0.2.37",
+ "resolved": "https://registry.npmjs.org/gatsby-recipes/-/gatsby-recipes-0.2.37.tgz",
+ "integrity": "sha512-3pBvAx8HdrFYHv+o0uUiC5Oyd4206wYuQdETib/fYQhG8JxyGCZTDIzy/9RjBYb2I8xm+TlK6jpucLXWlp5DcA==",
+ "requires": {
+ "@babel/core": "^7.11.6",
+ "@babel/generator": "^7.11.6",
+ "@babel/helper-plugin-utils": "^7.10.4",
+ "@babel/plugin-proposal-optional-chaining": "^7.11.0",
+ "@babel/plugin-transform-react-jsx": "^7.10.4",
+ "@babel/standalone": "^7.11.6",
+ "@babel/template": "^7.10.4",
+ "@babel/types": "^7.11.5",
+ "@graphql-tools/schema": "^7.0.0",
+ "@graphql-tools/utils": "^7.0.2",
+ "@hapi/hoek": "8.x.x",
+ "@hapi/joi": "^15.1.1",
+ "better-queue": "^3.8.10",
+ "chokidar": "^3.4.2",
+ "contentful-management": "^5.26.3",
+ "cors": "^2.8.5",
+ "debug": "^4.1.1",
+ "detect-port": "^1.3.0",
+ "dotenv": "^8.2.0",
+ "execa": "^4.0.2",
+ "express": "^4.17.1",
+ "express-graphql": "^0.9.0",
+ "fs-extra": "^8.1.0",
+ "gatsby-core-utils": "^1.3.24",
+ "gatsby-telemetry": "^1.3.40",
+ "glob": "^7.1.6",
+ "graphql": "^14.6.0",
+ "graphql-compose": "^6.3.8",
+ "graphql-subscriptions": "^1.1.0",
+ "graphql-type-json": "^0.3.2",
+ "hicat": "^0.7.0",
+ "is-binary-path": "^2.1.0",
+ "is-url": "^1.2.4",
+ "jest-diff": "^25.5.0",
+ "lock": "^1.0.0",
+ "lodash": "^4.17.20",
+ "mitt": "^1.2.0",
+ "mkdirp": "^0.5.1",
+ "node-fetch": "^2.5.0",
+ "pkg-dir": "^4.2.0",
+ "prettier": "^2.0.5",
+ "prop-types": "^15.6.1",
+ "remark-mdx": "^2.0.0-next.4",
+ "remark-mdxjs": "^2.0.0-next.4",
+ "remark-parse": "^6.0.3",
+ "remark-stringify": "^8.1.0",
+ "resolve-cwd": "^3.0.0",
+ "resolve-from": "^5.0.0",
+ "semver": "^7.3.2",
+ "single-trailing-newline": "^1.0.0",
+ "strip-ansi": "^6.0.0",
+ "style-to-object": "^0.3.0",
+ "unified": "^8.4.2",
+ "unist-util-remove": "^2.0.0",
+ "unist-util-visit": "^2.0.2",
+ "uuid": "3.4.0",
+ "ws": "^7.3.0",
+ "xstate": "^4.9.1",
+ "yoga-layout-prebuilt": "^1.9.6"
+ },
+ "dependencies": {
+ "@babel/generator": {
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.12.5.tgz",
+ "integrity": "sha512-m16TQQJ8hPt7E+OS/XVQg/7U184MLXtvuGbCdA7na61vha+ImkyyNM/9DDA0unYCVZn3ZOhng+qz48/KBOT96A==",
"requires": {
- "@babel/code-frame": "^7.10.4",
- "@babel/generator": "^7.12.1",
- "@babel/helper-function-name": "^7.10.4",
- "@babel/helper-split-export-declaration": "^7.11.0",
- "@babel/parser": "^7.12.1",
- "@babel/types": "^7.12.1",
- "debug": "^4.1.0",
- "globals": "^11.1.0",
- "lodash": "^4.17.19"
+ "@babel/types": "^7.12.5",
+ "jsesc": "^2.5.1",
+ "source-map": "^0.5.0"
}
},
"@babel/types": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.12.1.tgz",
- "integrity": "sha512-BzSY3NJBKM4kyatSOWh3D/JJ2O3CVzBybHWxtgxnggaxEuaSTTDqeiSb/xk9lrkw2Tbqyivw5ZU4rT+EfznQsA==",
+ "version": "7.12.6",
+ "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.12.6.tgz",
+ "integrity": "sha512-hwyjw6GvjBLiyy3W0YQf0Z5Zf4NpYejUnKFcfcUhZCSffoBBp30w6wP2Wn6pk31jMYZvcOrB/1b7cGXvEoKogA==",
"requires": {
"@babel/helper-validator-identifier": "^7.10.4",
"lodash": "^4.17.19",
"to-fast-properties": "^2.0.0"
}
},
- "@graphql-tools/schema": {
- "version": "6.2.4",
- "resolved": "https://registry.npmjs.org/@graphql-tools/schema/-/schema-6.2.4.tgz",
- "integrity": "sha512-rh+14lSY1q8IPbEv2J9x8UBFJ5NrDX9W5asXEUlPp+7vraLp/Tiox4GXdgyA92JhwpYco3nTf5Bo2JDMt1KnAQ==",
+ "@graphql-tools/utils": {
+ "version": "7.0.2",
+ "resolved": "https://registry.npmjs.org/@graphql-tools/utils/-/utils-7.0.2.tgz",
+ "integrity": "sha512-VQQ7krHeoXO0FS3qbWsb/vZb8c8oyiCYPIH4RSgeK9SKOUpatWYt3DW4jmLmyHZLVVMk0yjUbsOhKTBEMejKSA==",
"requires": {
- "@graphql-tools/utils": "^6.2.4",
+ "@ardatan/aggregate-error": "0.0.6",
+ "camel-case": "4.1.1",
"tslib": "~2.0.1"
}
},
@@ -10526,43 +9336,11 @@
"resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.0.tgz",
"integrity": "sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg=="
},
- "anymatch": {
- "version": "3.1.1",
- "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.1.tgz",
- "integrity": "sha512-mM8522psRCqzV+6LhomX5wgp25YVibjh8Wj23I5RPkPppSVSjyKD2A2mBJmWGa+KN7f2D6LNh9jkBCeyLktzjg==",
- "requires": {
- "normalize-path": "^3.0.0",
- "picomatch": "^2.0.4"
- }
- },
"binary-extensions": {
"version": "2.1.0",
"resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.1.0.tgz",
"integrity": "sha512-1Yj8h9Q+QDF5FzhMs/c9+6UntbD5MkRfRwac8DoEm9ZfUBZ7tZ55YcGVAzEe4bXsdQHEk+s9S5wsOKVdZrw0tQ=="
},
- "braces": {
- "version": "3.0.2",
- "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz",
- "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==",
- "requires": {
- "fill-range": "^7.0.1"
- }
- },
- "chokidar": {
- "version": "3.4.3",
- "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.4.3.tgz",
- "integrity": "sha512-DtM3g7juCXQxFVSNPNByEC2+NImtBuxQQvWlHunpJIS5Ocr0lG306cC7FCi7cEA0fzmybPUIl4txBIobk1gGOQ==",
- "requires": {
- "anymatch": "~3.1.1",
- "braces": "~3.0.2",
- "fsevents": "~2.1.2",
- "glob-parent": "~5.1.0",
- "is-binary-path": "~2.1.0",
- "is-glob": "~4.0.1",
- "normalize-path": "~3.0.0",
- "readdirp": "~3.5.0"
- }
- },
"debug": {
"version": "4.2.0",
"resolved": "https://registry.npmjs.org/debug/-/debug-4.2.0.tgz",
@@ -10571,14 +9349,6 @@
"ms": "2.1.2"
}
},
- "fill-range": {
- "version": "7.0.1",
- "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz",
- "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==",
- "requires": {
- "to-regex-range": "^5.0.1"
- }
- },
"find-up": {
"version": "4.1.0",
"resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz",
@@ -10588,16 +9358,10 @@
"path-exists": "^4.0.0"
}
},
- "fsevents": {
- "version": "2.1.3",
- "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.1.3.tgz",
- "integrity": "sha512-Auw9a4AxqWpa9GUfj370BMPzzyncfBABW8Mab7BGWBYDj4Isgq+cDKtx0i6u9jcX9pQDnswsaaOTgTmA5pEjuQ==",
- "optional": true
- },
"gatsby-core-utils": {
- "version": "1.3.23",
- "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-1.3.23.tgz",
- "integrity": "sha512-H6n6dDeRZ22HAJaBUIt5YjB/BSaE8Jq+kayMUv/YzL1RL2yFZ5lqcLwIL1OE2vWk1mQjMUBZCRxLODU0q1i3bQ==",
+ "version": "1.3.24",
+ "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-1.3.24.tgz",
+ "integrity": "sha512-SlK7rJv/8NBYC8FodYvTINamBHadXNSv//a2uRwh44N1GSSujuCMvtUcpEuAdg9BUQHc54NbbmFuoqf8p85kgA==",
"requires": {
"ci-info": "2.0.0",
"configstore": "^5.0.1",
@@ -10608,14 +9372,6 @@
"xdg-basedir": "^4.0.0"
}
},
- "glob-parent": {
- "version": "5.1.1",
- "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.1.tgz",
- "integrity": "sha512-FnI+VGOpnlGHWZxthPGR+QhR78fuiK0sNLkHQv+bL9fQi57lNNdquIbna/WrfROrolq8GK5Ek6BiMwqL/voRYQ==",
- "requires": {
- "is-glob": "^4.0.1"
- }
- },
"is-binary-path": {
"version": "2.1.0",
"resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz",
@@ -10624,11 +9380,6 @@
"binary-extensions": "^2.0.0"
}
},
- "is-number": {
- "version": "7.0.0",
- "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz",
- "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng=="
- },
"locate-path": {
"version": "5.0.0",
"resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz",
@@ -10663,14 +9414,6 @@
"find-up": "^4.0.0"
}
},
- "readdirp": {
- "version": "3.5.0",
- "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.5.0.tgz",
- "integrity": "sha512-cMhu7c/8rdhkHXWsY+osBhfSy0JikwpHK/5+imo+LpeasTF8ouErHrlYkwT0++njiyuDvc7OFY5T3ukvZ8qmFQ==",
- "requires": {
- "picomatch": "^2.2.1"
- }
- },
"resolve-from": {
"version": "5.0.0",
"resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz",
@@ -10689,14 +9432,6 @@
"ansi-regex": "^5.0.0"
}
},
- "to-regex-range": {
- "version": "5.0.1",
- "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz",
- "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==",
- "requires": {
- "is-number": "^7.0.0"
- }
- },
"tslib": {
"version": "2.0.3",
"resolved": "https://registry.npmjs.org/tslib/-/tslib-2.0.3.tgz",
@@ -10764,9 +9499,9 @@
}
},
"gatsby-telemetry": {
- "version": "1.3.39",
- "resolved": "https://registry.npmjs.org/gatsby-telemetry/-/gatsby-telemetry-1.3.39.tgz",
- "integrity": "sha512-25LDAc0+0LDjHTOSIHLT6iJk/zOLLWSttZ0IQNho5fhLdWJ3hQrCWKx8YiVLPPNwnImei6/1FxQlGKUPVAOrRA==",
+ "version": "1.3.40",
+ "resolved": "https://registry.npmjs.org/gatsby-telemetry/-/gatsby-telemetry-1.3.40.tgz",
+ "integrity": "sha512-BfKuSOe9Q2kCrATypvSXGwfffffLG483mP6j7tJy3iUYgnteRcLLP4YbBV3HG7pqW0SQk+JP5iIlsT7VtSZOXw==",
"requires": {
"@babel/code-frame": "^7.10.4",
"@babel/runtime": "^7.11.2",
@@ -10777,7 +9512,7 @@
"configstore": "^5.0.1",
"envinfo": "^7.7.3",
"fs-extra": "^8.1.0",
- "gatsby-core-utils": "^1.3.23",
+ "gatsby-core-utils": "^1.3.24",
"git-up": "^4.0.2",
"is-docker": "^2.1.1",
"lodash": "^4.17.20",
@@ -10786,17 +9521,17 @@
},
"dependencies": {
"@babel/runtime": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.1.tgz",
- "integrity": "sha512-J5AIf3vPj3UwXaAzb5j1xM4WAQDX3EMgemF8rjCP3SoW09LfRKAXQKt6CoVYl230P6iWdRcBbnLDDdnqWxZSCA==",
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.5.tgz",
+ "integrity": "sha512-plcc+hbExy3McchJCEQG3knOsuh3HH+Prx1P6cLIkET/0dLuQDEnrT+s27Axgc9bqfsmNUNHfscgMUdBpC9xfg==",
"requires": {
"regenerator-runtime": "^0.13.4"
}
},
"gatsby-core-utils": {
- "version": "1.3.23",
- "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-1.3.23.tgz",
- "integrity": "sha512-H6n6dDeRZ22HAJaBUIt5YjB/BSaE8Jq+kayMUv/YzL1RL2yFZ5lqcLwIL1OE2vWk1mQjMUBZCRxLODU0q1i3bQ==",
+ "version": "1.3.24",
+ "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-1.3.24.tgz",
+ "integrity": "sha512-SlK7rJv/8NBYC8FodYvTINamBHadXNSv//a2uRwh44N1GSSujuCMvtUcpEuAdg9BUQHc54NbbmFuoqf8p85kgA==",
"requires": {
"ci-info": "2.0.0",
"configstore": "^5.0.1",
@@ -11130,10 +9865,11 @@
}
},
"graphql-config": {
- "version": "3.0.3",
- "resolved": "https://registry.npmjs.org/graphql-config/-/graphql-config-3.0.3.tgz",
- "integrity": "sha512-MBY0wEjvcgJtZUyoqpPvOE1e5qPI0hJaa1gKTqjonSFiCsNHX2lykNjpOPcodmAgH1V06ELxhGnm9kcVzqvi/g==",
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/graphql-config/-/graphql-config-3.1.0.tgz",
+ "integrity": "sha512-tOjgUqB6W+vIzGRn20LogMujoRTAsdwO1gGg6l3SF3xaUjI9/uaCpvy3kJHbZcRiRuOTocmysdBU+hOs3Npx6Q==",
"requires": {
+ "@endemolshinegroup/cosmiconfig-typescript-loader": "3.0.2",
"@graphql-tools/graphql-file-loader": "^6.0.0",
"@graphql-tools/json-file-loader": "^6.0.0",
"@graphql-tools/load": "^6.0.0",
@@ -11141,6 +9877,7 @@
"@graphql-tools/url-loader": "^6.0.0",
"@graphql-tools/utils": "^6.0.0",
"cosmiconfig": "6.0.0",
+ "cosmiconfig-toml-loader": "1.0.0",
"minimatch": "3.0.4",
"string-env-interpolation": "1.0.1",
"tslib": "^2.0.0"
@@ -12114,9 +10851,9 @@
}
},
"is-core-module": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.0.0.tgz",
- "integrity": "sha512-jq1AH6C8MuteOoBPwkxHafmByhL9j5q4OaPGdbuD+ZtQJVzH+i6E3BJDQcBA09k57i2Hh2yQbEG8yObZ0jdlWw==",
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.1.0.tgz",
+ "integrity": "sha512-YcV7BgVMRFRua2FqQzKtTDMz8iCuLEyGKjr70q8Zm1yy2qKcurbFEd79PAdHV77oL3NrAaOVQIbMmiHQCHB7ZA==",
"requires": {
"has": "^1.0.3"
}
@@ -12967,6 +11704,11 @@
"resolved": "https://registry.npmjs.org/lodash.foreach/-/lodash.foreach-4.5.0.tgz",
"integrity": "sha1-Gmo16s5AEoDH8G3d7DUWWrJ+PlM="
},
+ "lodash.get": {
+ "version": "4.4.2",
+ "resolved": "https://registry.npmjs.org/lodash.get/-/lodash.get-4.4.2.tgz",
+ "integrity": "sha1-LRd/ZS+jHpObRDjVNBSZ36OCXpk="
+ },
"lodash.map": {
"version": "4.6.0",
"resolved": "https://registry.npmjs.org/lodash.map/-/lodash.map-4.6.0.tgz",
@@ -13095,6 +11837,11 @@
"semver": "^5.6.0"
}
},
+ "make-error": {
+ "version": "1.3.6",
+ "resolved": "https://registry.npmjs.org/make-error/-/make-error-1.3.6.tgz",
+ "integrity": "sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw=="
+ },
"map-cache": {
"version": "0.2.2",
"resolved": "https://registry.npmjs.org/map-cache/-/map-cache-0.2.2.tgz",
@@ -18033,6 +16780,15 @@
"resolved": "https://registry.npmjs.org/symbol-observable/-/symbol-observable-1.2.0.tgz",
"integrity": "sha512-e900nM8RRtGhlV36KGEU9k65K3mPb1WV70OdjfxlG2EAuM1noi/E/BaW/uMhL7bPEssK8QV57vN3esixjUvcXQ=="
},
+ "sync-fetch": {
+ "version": "0.3.0",
+ "resolved": "https://registry.npmjs.org/sync-fetch/-/sync-fetch-0.3.0.tgz",
+ "integrity": "sha512-dJp4qg+x4JwSEW1HibAuMi0IIrBI3wuQr2GimmqB7OXR50wmwzfdusG+p39R9w3R6aFtZ2mzvxvWKQ3Bd/vx3g==",
+ "requires": {
+ "buffer": "^5.7.0",
+ "node-fetch": "^2.6.1"
+ }
+ },
"table": {
"version": "5.4.6",
"resolved": "https://registry.npmjs.org/table/-/table-5.4.6.tgz",
@@ -18316,6 +17072,18 @@
"resolved": "https://registry.npmjs.org/true-case-path/-/true-case-path-2.2.1.tgz",
"integrity": "sha512-0z3j8R7MCjy10kc/g+qg7Ln3alJTodw9aDuVWZa3uiWqfuBMKeAeP2ocWcxoyM3D73yz3Jt/Pu4qPr4wHSdB/Q=="
},
+ "ts-node": {
+ "version": "9.0.0",
+ "resolved": "https://registry.npmjs.org/ts-node/-/ts-node-9.0.0.tgz",
+ "integrity": "sha512-/TqB4SnererCDR/vb4S/QvSZvzQMJN8daAslg7MeaiHvD8rDZsSfXmNeNumyZZzMned72Xoq/isQljYSt8Ynfg==",
+ "requires": {
+ "arg": "^4.1.0",
+ "diff": "^4.0.1",
+ "make-error": "^1.1.1",
+ "source-map-support": "^0.5.17",
+ "yn": "3.1.1"
+ }
+ },
"ts-pnp": {
"version": "1.2.0",
"resolved": "https://registry.npmjs.org/ts-pnp/-/ts-pnp-1.2.0.tgz",
@@ -18966,106 +17734,6 @@
"graceful-fs": "^4.1.2",
"neo-async": "^2.5.0",
"watchpack-chokidar2": "^2.0.0"
- },
- "dependencies": {
- "anymatch": {
- "version": "3.1.1",
- "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.1.tgz",
- "integrity": "sha512-mM8522psRCqzV+6LhomX5wgp25YVibjh8Wj23I5RPkPppSVSjyKD2A2mBJmWGa+KN7f2D6LNh9jkBCeyLktzjg==",
- "optional": true,
- "requires": {
- "normalize-path": "^3.0.0",
- "picomatch": "^2.0.4"
- }
- },
- "binary-extensions": {
- "version": "2.1.0",
- "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.1.0.tgz",
- "integrity": "sha512-1Yj8h9Q+QDF5FzhMs/c9+6UntbD5MkRfRwac8DoEm9ZfUBZ7tZ55YcGVAzEe4bXsdQHEk+s9S5wsOKVdZrw0tQ==",
- "optional": true
- },
- "braces": {
- "version": "3.0.2",
- "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz",
- "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==",
- "optional": true,
- "requires": {
- "fill-range": "^7.0.1"
- }
- },
- "chokidar": {
- "version": "3.4.3",
- "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.4.3.tgz",
- "integrity": "sha512-DtM3g7juCXQxFVSNPNByEC2+NImtBuxQQvWlHunpJIS5Ocr0lG306cC7FCi7cEA0fzmybPUIl4txBIobk1gGOQ==",
- "optional": true,
- "requires": {
- "anymatch": "~3.1.1",
- "braces": "~3.0.2",
- "fsevents": "~2.1.2",
- "glob-parent": "~5.1.0",
- "is-binary-path": "~2.1.0",
- "is-glob": "~4.0.1",
- "normalize-path": "~3.0.0",
- "readdirp": "~3.5.0"
- }
- },
- "fill-range": {
- "version": "7.0.1",
- "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz",
- "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==",
- "optional": true,
- "requires": {
- "to-regex-range": "^5.0.1"
- }
- },
- "fsevents": {
- "version": "2.1.3",
- "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.1.3.tgz",
- "integrity": "sha512-Auw9a4AxqWpa9GUfj370BMPzzyncfBABW8Mab7BGWBYDj4Isgq+cDKtx0i6u9jcX9pQDnswsaaOTgTmA5pEjuQ==",
- "optional": true
- },
- "glob-parent": {
- "version": "5.1.1",
- "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.1.tgz",
- "integrity": "sha512-FnI+VGOpnlGHWZxthPGR+QhR78fuiK0sNLkHQv+bL9fQi57lNNdquIbna/WrfROrolq8GK5Ek6BiMwqL/voRYQ==",
- "optional": true,
- "requires": {
- "is-glob": "^4.0.1"
- }
- },
- "is-binary-path": {
- "version": "2.1.0",
- "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz",
- "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==",
- "optional": true,
- "requires": {
- "binary-extensions": "^2.0.0"
- }
- },
- "is-number": {
- "version": "7.0.0",
- "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz",
- "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==",
- "optional": true
- },
- "readdirp": {
- "version": "3.5.0",
- "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.5.0.tgz",
- "integrity": "sha512-cMhu7c/8rdhkHXWsY+osBhfSy0JikwpHK/5+imo+LpeasTF8ouErHrlYkwT0++njiyuDvc7OFY5T3ukvZ8qmFQ==",
- "optional": true,
- "requires": {
- "picomatch": "^2.2.1"
- }
- },
- "to-regex-range": {
- "version": "5.0.1",
- "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz",
- "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==",
- "optional": true,
- "requires": {
- "is-number": "^7.0.0"
- }
- }
}
},
"watchpack-chokidar2": {
@@ -19873,9 +18541,9 @@
}
},
"xstate": {
- "version": "4.11.0",
- "resolved": "https://registry.npmjs.org/xstate/-/xstate-4.11.0.tgz",
- "integrity": "sha512-v+S3jF2YrM2tFOit8o7+4N3FuFd9IIGcIKHyfHeeNjMlmNmwuiv/IbY9uw7ECifx7H/A9aGLcxPSr0jdjTGDww=="
+ "version": "4.13.0",
+ "resolved": "https://registry.npmjs.org/xstate/-/xstate-4.13.0.tgz",
+ "integrity": "sha512-UnUJJzP2KTPqnmxIoD/ymXtpy/hehZnUlO6EXqWC/72XkPb15p9Oz/X4WhS3QE+by7NP+6b5bCi/GTGFzm5D+A=="
},
"xtend": {
"version": "4.0.2",
@@ -20003,6 +18671,11 @@
"resolved": "https://registry.npmjs.org/yeast/-/yeast-0.1.2.tgz",
"integrity": "sha1-AI4G2AlDIMNy28L47XagymyKxBk="
},
+ "yn": {
+ "version": "3.1.1",
+ "resolved": "https://registry.npmjs.org/yn/-/yn-3.1.1.tgz",
+ "integrity": "sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q=="
+ },
"yoga-layout-prebuilt": {
"version": "1.10.0",
"resolved": "https://registry.npmjs.org/yoga-layout-prebuilt/-/yoga-layout-prebuilt-1.10.0.tgz",
diff --git a/starters/gatsby-starter-notes-theme/package.json b/starters/gatsby-starter-notes-theme/package.json
index f4d609832cfd9..ca320ec696f44 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": "^2.25.1",
+ "gatsby": "^2.25.2",
"gatsby-theme-notes": "^2.0.3",
"react": "^16.12.0",
"react-dom": "^16.12.0"
diff --git a/starters/gatsby-starter-theme-workspace/example/package.json b/starters/gatsby-starter-theme-workspace/example/package.json
index 419c98bcabdf2..14dad0c37fe9b 100644
--- a/starters/gatsby-starter-theme-workspace/example/package.json
+++ b/starters/gatsby-starter-theme-workspace/example/package.json
@@ -9,7 +9,7 @@
"build": "gatsby build"
},
"dependencies": {
- "gatsby": "^2.25.1",
+ "gatsby": "^2.25.2",
"gatsby-theme-minimal": "^1.0.0",
"react": "^16.12.0",
"react-dom": "^16.12.0"
diff --git a/starters/gatsby-starter-theme/package-lock.json b/starters/gatsby-starter-theme/package-lock.json
index cf1e72aea11ad..16464909e57c5 100644
--- a/starters/gatsby-starter-theme/package-lock.json
+++ b/starters/gatsby-starter-theme/package-lock.json
@@ -864,17 +864,17 @@
},
"dependencies": {
"@babel/helper-module-imports": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.12.1.tgz",
- "integrity": "sha512-ZeC1TlMSvikvJNy1v/wPIazCu3NdOwgYZLIkmIyAsGhqkNpiDoQQRmaCK8YP4Pq3GPTLPV9WXaPCJKvx06JxKA==",
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.12.5.tgz",
+ "integrity": "sha512-SR713Ogqg6++uexFRORf/+nPXMmWIn80TALu0uaFb+iQIUoR7bOC7zBWyzBs5b3tBBJXuyD0cRu1F15GyzjOWA==",
"requires": {
- "@babel/types": "^7.12.1"
+ "@babel/types": "^7.12.5"
}
},
"@babel/types": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.12.1.tgz",
- "integrity": "sha512-BzSY3NJBKM4kyatSOWh3D/JJ2O3CVzBybHWxtgxnggaxEuaSTTDqeiSb/xk9lrkw2Tbqyivw5ZU4rT+EfznQsA==",
+ "version": "7.12.6",
+ "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.12.6.tgz",
+ "integrity": "sha512-hwyjw6GvjBLiyy3W0YQf0Z5Zf4NpYejUnKFcfcUhZCSffoBBp30w6wP2Wn6pk31jMYZvcOrB/1b7cGXvEoKogA==",
"requires": {
"@babel/helper-validator-identifier": "^7.10.4",
"lodash": "^4.17.19",
@@ -937,11 +937,11 @@
},
"dependencies": {
"@babel/generator": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.12.1.tgz",
- "integrity": "sha512-DB+6rafIdc9o72Yc3/Ph5h+6hUjeOp66pF0naQBgUFFuPqzQwIlPTm3xZR7YNvduIMtkDIj2t21LSQwnbCrXvg==",
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.12.5.tgz",
+ "integrity": "sha512-m16TQQJ8hPt7E+OS/XVQg/7U184MLXtvuGbCdA7na61vha+ImkyyNM/9DDA0unYCVZn3ZOhng+qz48/KBOT96A==",
"requires": {
- "@babel/types": "^7.12.1",
+ "@babel/types": "^7.12.5",
"jsesc": "^2.5.1",
"source-map": "^0.5.0"
}
@@ -967,41 +967,41 @@
}
},
"@babel/helper-replace-supers": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.12.1.tgz",
- "integrity": "sha512-zJjTvtNJnCFsCXVi5rUInstLd/EIVNmIKA1Q9ynESmMBWPWd+7sdR+G4/wdu+Mppfep0XLyG2m7EBPvjCeFyrw==",
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.12.5.tgz",
+ "integrity": "sha512-5YILoed0ZyIpF4gKcpZitEnXEJ9UoDRki1Ey6xz46rxOzfNMAhVIJMoune1hmPVxh40LRv1+oafz7UsWX+vyWA==",
"requires": {
"@babel/helper-member-expression-to-functions": "^7.12.1",
"@babel/helper-optimise-call-expression": "^7.10.4",
- "@babel/traverse": "^7.12.1",
- "@babel/types": "^7.12.1"
+ "@babel/traverse": "^7.12.5",
+ "@babel/types": "^7.12.5"
}
},
"@babel/parser": {
- "version": "7.12.3",
- "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.12.3.tgz",
- "integrity": "sha512-kFsOS0IbsuhO5ojF8Hc8z/8vEIOkylVBrjiZUbLTE3XFe0Qi+uu6HjzQixkFaqr0ZPAMZcBVxEwmsnsLPZ2Xsw=="
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.12.5.tgz",
+ "integrity": "sha512-FVM6RZQ0mn2KCf1VUED7KepYeUWoVShczewOCfm3nzoBybaih51h+sYVVGthW9M6lPByEPTQf+xm27PBdlpwmQ=="
},
"@babel/traverse": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.12.1.tgz",
- "integrity": "sha512-MA3WPoRt1ZHo2ZmoGKNqi20YnPt0B1S0GTZEPhhd+hw2KGUzBlHuVunj6K4sNuK+reEvyiPwtp0cpaqLzJDmAw==",
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.12.5.tgz",
+ "integrity": "sha512-xa15FbQnias7z9a62LwYAA5SZZPkHIXpd42C6uW68o8uTuua96FHZy1y61Va5P/i83FAAcMpW8+A/QayntzuqA==",
"requires": {
"@babel/code-frame": "^7.10.4",
- "@babel/generator": "^7.12.1",
+ "@babel/generator": "^7.12.5",
"@babel/helper-function-name": "^7.10.4",
"@babel/helper-split-export-declaration": "^7.11.0",
- "@babel/parser": "^7.12.1",
- "@babel/types": "^7.12.1",
+ "@babel/parser": "^7.12.5",
+ "@babel/types": "^7.12.5",
"debug": "^4.1.0",
"globals": "^11.1.0",
"lodash": "^4.17.19"
}
},
"@babel/types": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.12.1.tgz",
- "integrity": "sha512-BzSY3NJBKM4kyatSOWh3D/JJ2O3CVzBybHWxtgxnggaxEuaSTTDqeiSb/xk9lrkw2Tbqyivw5ZU4rT+EfznQsA==",
+ "version": "7.12.6",
+ "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.12.6.tgz",
+ "integrity": "sha512-hwyjw6GvjBLiyy3W0YQf0Z5Zf4NpYejUnKFcfcUhZCSffoBBp30w6wP2Wn6pk31jMYZvcOrB/1b7cGXvEoKogA==",
"requires": {
"@babel/helper-validator-identifier": "^7.10.4",
"lodash": "^4.17.19",
@@ -1154,18 +1154,18 @@
}
},
"@babel/runtime-corejs3": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/runtime-corejs3/-/runtime-corejs3-7.12.1.tgz",
- "integrity": "sha512-umhPIcMrlBZ2aTWlWjUseW9LjQKxi1dpFlQS8DzsxB//5K+u6GLTC/JliPKHsd5kJVPIU6X/Hy0YvWOYPcMxBw==",
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/runtime-corejs3/-/runtime-corejs3-7.12.5.tgz",
+ "integrity": "sha512-roGr54CsTmNPPzZoCP1AmDXuBoNao7tnSA83TXTwt+UK5QVyh1DIJnrgYRPWKCF2flqZQXwa7Yr8v7VmLzF0YQ==",
"requires": {
"core-js-pure": "^3.0.0",
"regenerator-runtime": "^0.13.4"
}
},
"@babel/standalone": {
- "version": "7.12.4",
- "resolved": "https://registry.npmjs.org/@babel/standalone/-/standalone-7.12.4.tgz",
- "integrity": "sha512-9vw7RYK7CWh5MdTfLyC7j6hZmDYmm6DieFP4yetvpVftKQ+yrEY7ovhnhsVHznLqx5luU9Bx4k7xoEc3acrsow=="
+ "version": "7.12.6",
+ "resolved": "https://registry.npmjs.org/@babel/standalone/-/standalone-7.12.6.tgz",
+ "integrity": "sha512-yA/OV3jN1nhr0JsAdYWAqbeZ7cAOw/6Fh52rxVMzujr0HF4Z3cau0JBzJfQppFfR9IArrUtcqhBu/+Q/IevoyQ=="
},
"@babel/template": {
"version": "7.10.4",
@@ -1341,6 +1341,24 @@
"resolved": "https://registry.npmjs.org/@emotion/weak-memoize/-/weak-memoize-0.2.5.tgz",
"integrity": "sha512-6U71C2Wp7r5XtFtQzYrW5iKFT67OixrSxjI4MptCHzdSVlgabczzqLe0ZSgnub/5Kp4hSbpDB1tMytZY9pwxxA=="
},
+ "@endemolshinegroup/cosmiconfig-typescript-loader": {
+ "version": "3.0.2",
+ "resolved": "https://registry.npmjs.org/@endemolshinegroup/cosmiconfig-typescript-loader/-/cosmiconfig-typescript-loader-3.0.2.tgz",
+ "integrity": "sha512-QRVtqJuS1mcT56oHpVegkKBlgtWjXw/gHNWO3eL9oyB5Sc7HBoc2OLG/nYpVfT/Jejvo3NUrD0Udk7XgoyDKkA==",
+ "requires": {
+ "lodash.get": "^4",
+ "make-error": "^1",
+ "ts-node": "^9",
+ "tslib": "^2"
+ },
+ "dependencies": {
+ "tslib": {
+ "version": "2.0.3",
+ "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.0.3.tgz",
+ "integrity": "sha512-uZtkfKblCEQtZKBF6EBXVZeQNl82yqtDQdv+eck8u7tdPxjLu2/lp5/uPW+um2tpuxINHWy3GhiccY7QgEaVHQ=="
+ }
+ }
+ },
"@graphql-tools/batch-execute": {
"version": "7.0.0",
"resolved": "https://registry.npmjs.org/@graphql-tools/batch-execute/-/batch-execute-7.0.0.tgz",
@@ -1375,9 +1393,9 @@
}
},
"@graphql-tools/delegate": {
- "version": "7.0.3",
- "resolved": "https://registry.npmjs.org/@graphql-tools/delegate/-/delegate-7.0.3.tgz",
- "integrity": "sha512-BSRF/Wg9XNllWo3Kdt0QBBaFltexn3vAnTOWH1qLrNcmfQAvUMf17/TsAqH9ZLSKU1NW9XCOsd7YMHhhUuTCEg==",
+ "version": "7.0.4",
+ "resolved": "https://registry.npmjs.org/@graphql-tools/delegate/-/delegate-7.0.4.tgz",
+ "integrity": "sha512-6/qL9V31FgECNPwc5As1359hpsAt4ASWsiYBSYWL+Iq9/K0YRcNeEmSseXIyCP4oh8k/9HS/w/m2lkMk/YSUpQ==",
"requires": {
"@ardatan/aggregate-error": "0.0.6",
"@graphql-tools/batch-execute": "^7.0.0",
@@ -1691,9 +1709,9 @@
}
},
"@graphql-tools/url-loader": {
- "version": "6.3.2",
- "resolved": "https://registry.npmjs.org/@graphql-tools/url-loader/-/url-loader-6.3.2.tgz",
- "integrity": "sha512-nrrZD33T7lFeOjIufCrwk2PAHYqFtdFcb1pe1ULWnvuFmFuhZnRCgIsfCsoy+WOMwmZHQ/eXBem//I/bewXlgw==",
+ "version": "6.4.0",
+ "resolved": "https://registry.npmjs.org/@graphql-tools/url-loader/-/url-loader-6.4.0.tgz",
+ "integrity": "sha512-M3mS/VH6vpnai3b3Fa33kYcdCgZvhFh7RqFE1R3NMfhYjphQ10EWwgf31P+VQcBNB2zz+ubxttI6UcJLiGqwuQ==",
"requires": {
"@graphql-tools/delegate": "^7.0.1",
"@graphql-tools/utils": "^7.0.1",
@@ -1701,6 +1719,7 @@
"@types/websocket": "1.0.1",
"cross-fetch": "3.0.6",
"subscriptions-transport-ws": "0.9.18",
+ "sync-fetch": "0.3.0",
"tslib": "~2.0.1",
"valid-url": "1.0.9",
"websocket": "1.0.32"
@@ -1803,6 +1822,11 @@
"@hapi/hoek": "^8.3.0"
}
},
+ "@iarna/toml": {
+ "version": "2.2.5",
+ "resolved": "https://registry.npmjs.org/@iarna/toml/-/toml-2.2.5.tgz",
+ "integrity": "sha512-trnsAYxU3xnS1gPHPyU961coFyLkh4gAD/0zQ5mymY4yOZ+CYvsPqUbOFSw0aDM4y0tV7tiFxL/1XfXPNC6IPg=="
+ },
"@jest/types": {
"version": "25.5.0",
"resolved": "https://registry.npmjs.org/@jest/types/-/types-25.5.0.tgz",
@@ -3417,6 +3441,11 @@
"readable-stream": "^2.0.6"
}
},
+ "arg": {
+ "version": "4.1.3",
+ "resolved": "https://registry.npmjs.org/arg/-/arg-4.1.3.tgz",
+ "integrity": "sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA=="
+ },
"argparse": {
"version": "1.0.10",
"resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz",
@@ -3881,9 +3910,9 @@
"integrity": "sha512-eqj0hVcJUR57/Ug2zE1Yswsw4LhuqqHhD+8v120T1cl3kjg76QwtyBrdIk4WVwK+lAhBJVYCd/v+4nc4y+8JsA=="
},
"babel-preset-gatsby": {
- "version": "0.5.15",
- "resolved": "https://registry.npmjs.org/babel-preset-gatsby/-/babel-preset-gatsby-0.5.15.tgz",
- "integrity": "sha512-0eno/GAvzmaLW/s+RzsLXrZVQwBMZYU/zMv1HpArGlYbNCon/fK53/Bz3pklJDq1pNAybXQ2RROpPHDyJM2EGA==",
+ "version": "0.5.16",
+ "resolved": "https://registry.npmjs.org/babel-preset-gatsby/-/babel-preset-gatsby-0.5.16.tgz",
+ "integrity": "sha512-zcUYvHRnDxwQmzJnkWtHk4x7cGaMbQjTJIKrvCWpS9u10hQOQUNAz/ZKSH1vUmB4oYap6m+sHDoDIr7PNoCAEQ==",
"requires": {
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.10.4",
@@ -3897,33 +3926,33 @@
"babel-plugin-dynamic-import-node": "^2.3.3",
"babel-plugin-macros": "^2.8.0",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
- "gatsby-core-utils": "^1.3.23",
+ "gatsby-core-utils": "^1.3.24",
"gatsby-legacy-polyfills": "^0.0.6"
},
"dependencies": {
"@babel/compat-data": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.12.1.tgz",
- "integrity": "sha512-725AQupWJZ8ba0jbKceeFblZTY90McUBWMwHhkFQ9q1zKPJ95GUktljFcgcsIVwRnTnRKlcYzfiNImg5G9m6ZQ=="
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.12.5.tgz",
+ "integrity": "sha512-DTsS7cxrsH3by8nqQSpFSyjSfSYl57D6Cf4q8dW3LK83tBKBDCkfcay1nYkXq1nIHXnpX8WMMb/O25HOy3h1zg=="
},
"@babel/generator": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.12.1.tgz",
- "integrity": "sha512-DB+6rafIdc9o72Yc3/Ph5h+6hUjeOp66pF0naQBgUFFuPqzQwIlPTm3xZR7YNvduIMtkDIj2t21LSQwnbCrXvg==",
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.12.5.tgz",
+ "integrity": "sha512-m16TQQJ8hPt7E+OS/XVQg/7U184MLXtvuGbCdA7na61vha+ImkyyNM/9DDA0unYCVZn3ZOhng+qz48/KBOT96A==",
"requires": {
- "@babel/types": "^7.12.1",
+ "@babel/types": "^7.12.5",
"jsesc": "^2.5.1",
"source-map": "^0.5.0"
}
},
"@babel/helper-compilation-targets": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.12.1.tgz",
- "integrity": "sha512-jtBEif7jsPwP27GPHs06v4WBV0KrE8a/P7n0N0sSvHn2hwUCYnolP/CLmz51IzAW4NlN+HuoBtb9QcwnRo9F/g==",
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.12.5.tgz",
+ "integrity": "sha512-+qH6NrscMolUlzOYngSBMIOQpKUGPPsc61Bu5W10mg84LxZ7cmvnBHzARKbDoFxVvqqAbj6Tg6N7bSrWSPXMyw==",
"requires": {
- "@babel/compat-data": "^7.12.1",
+ "@babel/compat-data": "^7.12.5",
"@babel/helper-validator-option": "^7.12.1",
- "browserslist": "^4.12.0",
+ "browserslist": "^4.14.5",
"semver": "^5.5.0"
}
},
@@ -3958,11 +3987,11 @@
}
},
"@babel/helper-module-imports": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.12.1.tgz",
- "integrity": "sha512-ZeC1TlMSvikvJNy1v/wPIazCu3NdOwgYZLIkmIyAsGhqkNpiDoQQRmaCK8YP4Pq3GPTLPV9WXaPCJKvx06JxKA==",
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.12.5.tgz",
+ "integrity": "sha512-SR713Ogqg6++uexFRORf/+nPXMmWIn80TALu0uaFb+iQIUoR7bOC7zBWyzBs5b3tBBJXuyD0cRu1F15GyzjOWA==",
"requires": {
- "@babel/types": "^7.12.1"
+ "@babel/types": "^7.12.5"
}
},
"@babel/helper-module-transforms": {
@@ -3992,14 +4021,14 @@
}
},
"@babel/helper-replace-supers": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.12.1.tgz",
- "integrity": "sha512-zJjTvtNJnCFsCXVi5rUInstLd/EIVNmIKA1Q9ynESmMBWPWd+7sdR+G4/wdu+Mppfep0XLyG2m7EBPvjCeFyrw==",
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.12.5.tgz",
+ "integrity": "sha512-5YILoed0ZyIpF4gKcpZitEnXEJ9UoDRki1Ey6xz46rxOzfNMAhVIJMoune1hmPVxh40LRv1+oafz7UsWX+vyWA==",
"requires": {
"@babel/helper-member-expression-to-functions": "^7.12.1",
"@babel/helper-optimise-call-expression": "^7.10.4",
- "@babel/traverse": "^7.12.1",
- "@babel/types": "^7.12.1"
+ "@babel/traverse": "^7.12.5",
+ "@babel/types": "^7.12.5"
}
},
"@babel/helper-simple-access": {
@@ -4019,9 +4048,9 @@
}
},
"@babel/parser": {
- "version": "7.12.3",
- "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.12.3.tgz",
- "integrity": "sha512-kFsOS0IbsuhO5ojF8Hc8z/8vEIOkylVBrjiZUbLTE3XFe0Qi+uu6HjzQixkFaqr0ZPAMZcBVxEwmsnsLPZ2Xsw=="
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.12.5.tgz",
+ "integrity": "sha512-FVM6RZQ0mn2KCf1VUED7KepYeUWoVShczewOCfm3nzoBybaih51h+sYVVGthW9M6lPByEPTQf+xm27PBdlpwmQ=="
},
"@babel/plugin-proposal-async-generator-functions": {
"version": "7.12.1",
@@ -4070,9 +4099,9 @@
}
},
"@babel/plugin-proposal-numeric-separator": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.12.1.tgz",
- "integrity": "sha512-MR7Ok+Af3OhNTCxYVjJZHS0t97ydnJZt/DbR4WISO39iDnhiD8XHrY12xuSJ90FFEGjir0Fzyyn7g/zY6hxbxA==",
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.12.5.tgz",
+ "integrity": "sha512-UiAnkKuOrCyjZ3sYNHlRlfuZJbBHknMQ9VMwVeX97Ofwx7RpD6gS2HfqTCh8KNUQgcOm8IKt103oR4KIjh7Q8g==",
"requires": {
"@babel/helper-plugin-utils": "^7.10.4",
"@babel/plugin-syntax-numeric-separator": "^7.10.4"
@@ -4517,39 +4546,55 @@
}
},
"@babel/runtime": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.1.tgz",
- "integrity": "sha512-J5AIf3vPj3UwXaAzb5j1xM4WAQDX3EMgemF8rjCP3SoW09LfRKAXQKt6CoVYl230P6iWdRcBbnLDDdnqWxZSCA==",
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.5.tgz",
+ "integrity": "sha512-plcc+hbExy3McchJCEQG3knOsuh3HH+Prx1P6cLIkET/0dLuQDEnrT+s27Axgc9bqfsmNUNHfscgMUdBpC9xfg==",
"requires": {
"regenerator-runtime": "^0.13.4"
}
},
"@babel/traverse": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.12.1.tgz",
- "integrity": "sha512-MA3WPoRt1ZHo2ZmoGKNqi20YnPt0B1S0GTZEPhhd+hw2KGUzBlHuVunj6K4sNuK+reEvyiPwtp0cpaqLzJDmAw==",
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.12.5.tgz",
+ "integrity": "sha512-xa15FbQnias7z9a62LwYAA5SZZPkHIXpd42C6uW68o8uTuua96FHZy1y61Va5P/i83FAAcMpW8+A/QayntzuqA==",
"requires": {
"@babel/code-frame": "^7.10.4",
- "@babel/generator": "^7.12.1",
+ "@babel/generator": "^7.12.5",
"@babel/helper-function-name": "^7.10.4",
"@babel/helper-split-export-declaration": "^7.11.0",
- "@babel/parser": "^7.12.1",
- "@babel/types": "^7.12.1",
+ "@babel/parser": "^7.12.5",
+ "@babel/types": "^7.12.5",
"debug": "^4.1.0",
"globals": "^11.1.0",
"lodash": "^4.17.19"
}
},
"@babel/types": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.12.1.tgz",
- "integrity": "sha512-BzSY3NJBKM4kyatSOWh3D/JJ2O3CVzBybHWxtgxnggaxEuaSTTDqeiSb/xk9lrkw2Tbqyivw5ZU4rT+EfznQsA==",
+ "version": "7.12.6",
+ "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.12.6.tgz",
+ "integrity": "sha512-hwyjw6GvjBLiyy3W0YQf0Z5Zf4NpYejUnKFcfcUhZCSffoBBp30w6wP2Wn6pk31jMYZvcOrB/1b7cGXvEoKogA==",
"requires": {
"@babel/helper-validator-identifier": "^7.10.4",
"lodash": "^4.17.19",
"to-fast-properties": "^2.0.0"
}
},
+ "browserslist": {
+ "version": "4.14.6",
+ "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.14.6.tgz",
+ "integrity": "sha512-zeFYcUo85ENhc/zxHbiIp0LGzzTrE2Pv2JhxvS7kpUb9Q9D38kUX6Bie7pGutJ/5iF5rOxE7CepAuWD56xJ33A==",
+ "requires": {
+ "caniuse-lite": "^1.0.30001154",
+ "electron-to-chromium": "^1.3.585",
+ "escalade": "^3.1.1",
+ "node-releases": "^1.1.65"
+ }
+ },
+ "caniuse-lite": {
+ "version": "1.0.30001156",
+ "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001156.tgz",
+ "integrity": "sha512-z7qztybA2eFZTB6Z3yvaQBIoJpQtsewRD74adw2UbRWwsRq3jIPvgrQGawBMbfafekQaD21FWuXNcywtTDGGCw=="
+ },
"debug": {
"version": "4.2.0",
"resolved": "https://registry.npmjs.org/debug/-/debug-4.2.0.tgz",
@@ -4558,10 +4603,20 @@
"ms": "2.1.2"
}
},
+ "electron-to-chromium": {
+ "version": "1.3.588",
+ "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.588.tgz",
+ "integrity": "sha512-0zr+ZfytnLeJZxGgmEpPTcItu5Mm4A5zHPZXLfHcGp0mdsk95rmD7ePNewYtK1yIdLbk8Z1U2oTRRfOtR4gbYg=="
+ },
+ "escalade": {
+ "version": "3.1.1",
+ "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz",
+ "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw=="
+ },
"gatsby-core-utils": {
- "version": "1.3.23",
- "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-1.3.23.tgz",
- "integrity": "sha512-H6n6dDeRZ22HAJaBUIt5YjB/BSaE8Jq+kayMUv/YzL1RL2yFZ5lqcLwIL1OE2vWk1mQjMUBZCRxLODU0q1i3bQ==",
+ "version": "1.3.24",
+ "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-1.3.24.tgz",
+ "integrity": "sha512-SlK7rJv/8NBYC8FodYvTINamBHadXNSv//a2uRwh44N1GSSujuCMvtUcpEuAdg9BUQHc54NbbmFuoqf8p85kgA==",
"requires": {
"ci-info": "2.0.0",
"configstore": "^5.0.1",
@@ -4572,6 +4627,11 @@
"xdg-basedir": "^4.0.0"
}
},
+ "node-releases": {
+ "version": "1.1.65",
+ "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-1.1.65.tgz",
+ "integrity": "sha512-YpzJOe2WFIW0V4ZkJQd/DGR/zdVwc/pI4Nl1CZrBO19FdRcSTmsuhdttw9rsTzzJLrNcSloLiBbEYx1C4f6gpA=="
+ },
"regexpu-core": {
"version": "4.7.1",
"resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-4.7.1.tgz",
@@ -6472,6 +6532,14 @@
"yaml": "^1.7.2"
}
},
+ "cosmiconfig-toml-loader": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/cosmiconfig-toml-loader/-/cosmiconfig-toml-loader-1.0.0.tgz",
+ "integrity": "sha512-H/2gurFWVi7xXvCyvsWRLCMekl4tITJcX0QEsDMpzxtuxDyM59xLatYNg4s/k9AA/HdtCYfj2su8mgA0GSDLDA==",
+ "requires": {
+ "@iarna/toml": "^2.2.5"
+ }
+ },
"create-ecdh": {
"version": "4.0.4",
"resolved": "https://registry.npmjs.org/create-ecdh/-/create-ecdh-4.0.4.tgz",
@@ -7280,6 +7348,11 @@
}
}
},
+ "diff": {
+ "version": "4.0.2",
+ "resolved": "https://registry.npmjs.org/diff/-/diff-4.0.2.tgz",
+ "integrity": "sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A=="
+ },
"diff-sequences": {
"version": "25.2.6",
"resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-25.2.6.tgz",
@@ -8168,9 +8241,9 @@
},
"dependencies": {
"@babel/runtime": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.1.tgz",
- "integrity": "sha512-J5AIf3vPj3UwXaAzb5j1xM4WAQDX3EMgemF8rjCP3SoW09LfRKAXQKt6CoVYl230P6iWdRcBbnLDDdnqWxZSCA==",
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.5.tgz",
+ "integrity": "sha512-plcc+hbExy3McchJCEQG3knOsuh3HH+Prx1P6cLIkET/0dLuQDEnrT+s27Axgc9bqfsmNUNHfscgMUdBpC9xfg==",
"requires": {
"regenerator-runtime": "^0.13.4"
}
@@ -9223,9 +9296,9 @@
"integrity": "sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc="
},
"gatsby": {
- "version": "2.25.1",
- "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-2.25.1.tgz",
- "integrity": "sha512-2MLGL0MooLGmGQhSjIjq+mH95lE3PbrtZ8xgcmN1JOsjR/dJ+Fx/BoZC3CdqPku/zflMNlCb99vuB2HQaXiRdg==",
+ "version": "2.25.2",
+ "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-2.25.2.tgz",
+ "integrity": "sha512-zssz6mH5vpScGq9SCDtkfajJkYVYJ+00x5JRVf9pYlVTRdv+g7jbKTuGdaWKbPoacEtXw3bUaTURUC2YMs/Gmg==",
"requires": {
"@babel/code-frame": "^7.10.4",
"@babel/core": "^7.11.6",
@@ -9252,7 +9325,7 @@
"babel-plugin-dynamic-import-node": "^2.3.3",
"babel-plugin-lodash": "3.3.4",
"babel-plugin-remove-graphql-queries": "^2.9.20",
- "babel-preset-gatsby": "^0.5.15",
+ "babel-preset-gatsby": "^0.5.16",
"better-opn": "^2.0.0",
"better-queue": "^3.8.10",
"bluebird": "^3.7.2",
@@ -9260,7 +9333,7 @@
"browserslist": "^4.12.2",
"cache-manager": "^2.11.1",
"cache-manager-fs-hash": "^0.0.9",
- "chalk": "^2.4.2",
+ "chalk": "^4.1.0",
"chokidar": "^3.4.2",
"common-tags": "^1.8.0",
"compression": "^1.7.4",
@@ -9293,16 +9366,16 @@
"find-cache-dir": "^3.3.1",
"fs-exists-cached": "1.0.0",
"fs-extra": "^8.1.0",
- "gatsby-cli": "^2.12.115",
- "gatsby-core-utils": "^1.3.23",
+ "gatsby-cli": "^2.12.116",
+ "gatsby-core-utils": "^1.3.24",
"gatsby-graphiql-explorer": "^0.4.15",
"gatsby-legacy-polyfills": "^0.0.6",
"gatsby-link": "^2.4.16",
- "gatsby-plugin-page-creator": "^2.3.34",
+ "gatsby-plugin-page-creator": "^2.3.35",
"gatsby-plugin-typescript": "^2.5.0",
"gatsby-plugin-utils": "^0.2.40",
"gatsby-react-router-scroll": "^3.0.15",
- "gatsby-telemetry": "^1.3.39",
+ "gatsby-telemetry": "^1.3.40",
"glob": "^7.1.6",
"got": "8.3.2",
"graphql": "^14.6.0",
@@ -9416,11 +9489,11 @@
}
},
"@babel/generator": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.12.1.tgz",
- "integrity": "sha512-DB+6rafIdc9o72Yc3/Ph5h+6hUjeOp66pF0naQBgUFFuPqzQwIlPTm3xZR7YNvduIMtkDIj2t21LSQwnbCrXvg==",
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.12.5.tgz",
+ "integrity": "sha512-m16TQQJ8hPt7E+OS/XVQg/7U184MLXtvuGbCdA7na61vha+ImkyyNM/9DDA0unYCVZn3ZOhng+qz48/KBOT96A==",
"requires": {
- "@babel/types": "^7.12.1",
+ "@babel/types": "^7.12.5",
"jsesc": "^2.5.1",
"source-map": "^0.5.0"
}
@@ -9434,11 +9507,11 @@
}
},
"@babel/helper-module-imports": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.12.1.tgz",
- "integrity": "sha512-ZeC1TlMSvikvJNy1v/wPIazCu3NdOwgYZLIkmIyAsGhqkNpiDoQQRmaCK8YP4Pq3GPTLPV9WXaPCJKvx06JxKA==",
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.12.5.tgz",
+ "integrity": "sha512-SR713Ogqg6++uexFRORf/+nPXMmWIn80TALu0uaFb+iQIUoR7bOC7zBWyzBs5b3tBBJXuyD0cRu1F15GyzjOWA==",
"requires": {
- "@babel/types": "^7.12.1"
+ "@babel/types": "^7.12.5"
}
},
"@babel/helper-module-transforms": {
@@ -9458,14 +9531,14 @@
}
},
"@babel/helper-replace-supers": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.12.1.tgz",
- "integrity": "sha512-zJjTvtNJnCFsCXVi5rUInstLd/EIVNmIKA1Q9ynESmMBWPWd+7sdR+G4/wdu+Mppfep0XLyG2m7EBPvjCeFyrw==",
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.12.5.tgz",
+ "integrity": "sha512-5YILoed0ZyIpF4gKcpZitEnXEJ9UoDRki1Ey6xz46rxOzfNMAhVIJMoune1hmPVxh40LRv1+oafz7UsWX+vyWA==",
"requires": {
"@babel/helper-member-expression-to-functions": "^7.12.1",
"@babel/helper-optimise-call-expression": "^7.10.4",
- "@babel/traverse": "^7.12.1",
- "@babel/types": "^7.12.1"
+ "@babel/traverse": "^7.12.5",
+ "@babel/types": "^7.12.5"
}
},
"@babel/helper-simple-access": {
@@ -9477,39 +9550,39 @@
}
},
"@babel/helpers": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.12.1.tgz",
- "integrity": "sha512-9JoDSBGoWtmbay98efmT2+mySkwjzeFeAL9BuWNoVQpkPFQF8SIIFUfY5os9u8wVzglzoiPRSW7cuJmBDUt43g==",
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.12.5.tgz",
+ "integrity": "sha512-lgKGMQlKqA8meJqKsW6rUnc4MdUk35Ln0ATDqdM1a/UpARODdI4j5Y5lVfUScnSNkJcdCRAaWkspykNoFg9sJA==",
"requires": {
"@babel/template": "^7.10.4",
- "@babel/traverse": "^7.12.1",
- "@babel/types": "^7.12.1"
+ "@babel/traverse": "^7.12.5",
+ "@babel/types": "^7.12.5"
}
},
"@babel/parser": {
- "version": "7.12.3",
- "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.12.3.tgz",
- "integrity": "sha512-kFsOS0IbsuhO5ojF8Hc8z/8vEIOkylVBrjiZUbLTE3XFe0Qi+uu6HjzQixkFaqr0ZPAMZcBVxEwmsnsLPZ2Xsw=="
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.12.5.tgz",
+ "integrity": "sha512-FVM6RZQ0mn2KCf1VUED7KepYeUWoVShczewOCfm3nzoBybaih51h+sYVVGthW9M6lPByEPTQf+xm27PBdlpwmQ=="
},
"@babel/runtime": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.1.tgz",
- "integrity": "sha512-J5AIf3vPj3UwXaAzb5j1xM4WAQDX3EMgemF8rjCP3SoW09LfRKAXQKt6CoVYl230P6iWdRcBbnLDDdnqWxZSCA==",
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.5.tgz",
+ "integrity": "sha512-plcc+hbExy3McchJCEQG3knOsuh3HH+Prx1P6cLIkET/0dLuQDEnrT+s27Axgc9bqfsmNUNHfscgMUdBpC9xfg==",
"requires": {
"regenerator-runtime": "^0.13.4"
}
},
"@babel/traverse": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.12.1.tgz",
- "integrity": "sha512-MA3WPoRt1ZHo2ZmoGKNqi20YnPt0B1S0GTZEPhhd+hw2KGUzBlHuVunj6K4sNuK+reEvyiPwtp0cpaqLzJDmAw==",
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.12.5.tgz",
+ "integrity": "sha512-xa15FbQnias7z9a62LwYAA5SZZPkHIXpd42C6uW68o8uTuua96FHZy1y61Va5P/i83FAAcMpW8+A/QayntzuqA==",
"requires": {
"@babel/code-frame": "^7.10.4",
- "@babel/generator": "^7.12.1",
+ "@babel/generator": "^7.12.5",
"@babel/helper-function-name": "^7.10.4",
"@babel/helper-split-export-declaration": "^7.11.0",
- "@babel/parser": "^7.12.1",
- "@babel/types": "^7.12.1",
+ "@babel/parser": "^7.12.5",
+ "@babel/types": "^7.12.5",
"debug": "^4.1.0",
"globals": "^11.1.0",
"lodash": "^4.17.19"
@@ -9526,9 +9599,9 @@
}
},
"@babel/types": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.12.1.tgz",
- "integrity": "sha512-BzSY3NJBKM4kyatSOWh3D/JJ2O3CVzBybHWxtgxnggaxEuaSTTDqeiSb/xk9lrkw2Tbqyivw5ZU4rT+EfznQsA==",
+ "version": "7.12.6",
+ "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.12.6.tgz",
+ "integrity": "sha512-hwyjw6GvjBLiyy3W0YQf0Z5Zf4NpYejUnKFcfcUhZCSffoBBp30w6wP2Wn6pk31jMYZvcOrB/1b7cGXvEoKogA==",
"requires": {
"@babel/helper-validator-identifier": "^7.10.4",
"lodash": "^4.17.19",
@@ -9540,6 +9613,14 @@
"resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz",
"integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg=="
},
+ "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"
+ }
+ },
"anymatch": {
"version": "3.1.1",
"resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.1.tgz",
@@ -9562,6 +9643,15 @@
"fill-range": "^7.0.1"
}
},
+ "chalk": {
+ "version": "4.1.0",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.0.tgz",
+ "integrity": "sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==",
+ "requires": {
+ "ansi-styles": "^4.1.0",
+ "supports-color": "^7.1.0"
+ }
+ },
"chokidar": {
"version": "3.4.3",
"resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.4.3.tgz",
@@ -9577,6 +9667,19 @@
"readdirp": "~3.5.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=="
+ },
"cross-spawn": {
"version": "7.0.3",
"resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz",
@@ -9602,15 +9705,15 @@
"optional": true
},
"gatsby-cli": {
- "version": "2.12.115",
- "resolved": "https://registry.npmjs.org/gatsby-cli/-/gatsby-cli-2.12.115.tgz",
- "integrity": "sha512-wOs3tG3tYses4fclXG0FtVZx+K0FDoZFkU1MIJNB+aRt+T7VMCZUIlg2MyrqcngsEW8al4EgyOd3UIl3NepC4A==",
+ "version": "2.12.116",
+ "resolved": "https://registry.npmjs.org/gatsby-cli/-/gatsby-cli-2.12.116.tgz",
+ "integrity": "sha512-vXpyl/ZFF67r/BlBxIjfdknBzxRfRuJ1qkA7//6dhNKDMlvVi5ZqGhOwcMzTgM1e0WZRaMFzf5/foPIA++8xEQ==",
"requires": {
"@babel/code-frame": "^7.10.4",
"@hapi/joi": "^15.1.1",
"@types/common-tags": "^1.8.0",
"better-opn": "^2.0.0",
- "chalk": "^2.4.2",
+ "chalk": "^4.1.0",
"clipboardy": "^2.3.0",
"common-tags": "^1.8.0",
"configstore": "^5.0.1",
@@ -9619,9 +9722,9 @@
"execa": "^3.4.0",
"fs-exists-cached": "^1.0.0",
"fs-extra": "^8.1.0",
- "gatsby-core-utils": "^1.3.23",
- "gatsby-recipes": "^0.2.36",
- "gatsby-telemetry": "^1.3.39",
+ "gatsby-core-utils": "^1.3.24",
+ "gatsby-recipes": "^0.2.37",
+ "gatsby-telemetry": "^1.3.40",
"hosted-git-info": "^3.0.6",
"is-valid-path": "^0.1.1",
"lodash": "^4.17.20",
@@ -9670,9 +9773,9 @@
}
},
"gatsby-core-utils": {
- "version": "1.3.23",
- "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-1.3.23.tgz",
- "integrity": "sha512-H6n6dDeRZ22HAJaBUIt5YjB/BSaE8Jq+kayMUv/YzL1RL2yFZ5lqcLwIL1OE2vWk1mQjMUBZCRxLODU0q1i3bQ==",
+ "version": "1.3.24",
+ "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-1.3.24.tgz",
+ "integrity": "sha512-SlK7rJv/8NBYC8FodYvTINamBHadXNSv//a2uRwh44N1GSSujuCMvtUcpEuAdg9BUQHc54NbbmFuoqf8p85kgA==",
"requires": {
"ci-info": "2.0.0",
"configstore": "^5.0.1",
@@ -9699,6 +9802,11 @@
"is-glob": "^4.0.1"
}
},
+ "has-flag": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
+ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ=="
+ },
"hosted-git-info": {
"version": "3.0.7",
"resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-3.0.7.tgz",
@@ -9804,6 +9912,14 @@
"ansi-regex": "^4.1.0"
}
},
+ "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"
+ }
+ },
"to-regex-range": {
"version": "5.0.1",
"resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz",
@@ -9849,9 +9965,9 @@
},
"dependencies": {
"@babel/runtime": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.1.tgz",
- "integrity": "sha512-J5AIf3vPj3UwXaAzb5j1xM4WAQDX3EMgemF8rjCP3SoW09LfRKAXQKt6CoVYl230P6iWdRcBbnLDDdnqWxZSCA==",
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.5.tgz",
+ "integrity": "sha512-plcc+hbExy3McchJCEQG3knOsuh3HH+Prx1P6cLIkET/0dLuQDEnrT+s27Axgc9bqfsmNUNHfscgMUdBpC9xfg==",
"requires": {
"regenerator-runtime": "^0.13.4"
}
@@ -9887,9 +10003,9 @@
},
"dependencies": {
"@babel/runtime": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.1.tgz",
- "integrity": "sha512-J5AIf3vPj3UwXaAzb5j1xM4WAQDX3EMgemF8rjCP3SoW09LfRKAXQKt6CoVYl230P6iWdRcBbnLDDdnqWxZSCA==",
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.5.tgz",
+ "integrity": "sha512-plcc+hbExy3McchJCEQG3knOsuh3HH+Prx1P6cLIkET/0dLuQDEnrT+s27Axgc9bqfsmNUNHfscgMUdBpC9xfg==",
"requires": {
"regenerator-runtime": "^0.13.4"
}
@@ -9897,24 +10013,24 @@
}
},
"gatsby-page-utils": {
- "version": "0.2.29",
- "resolved": "https://registry.npmjs.org/gatsby-page-utils/-/gatsby-page-utils-0.2.29.tgz",
- "integrity": "sha512-0xN3kBNd7PNwsJB1lJrsy7hEJbIIBcvnmbxGTplGenmGnOMoJqK6kEfM5Ru5dWBdSmwHrS+kcihFi0ZiGxpoww==",
+ "version": "0.2.30",
+ "resolved": "https://registry.npmjs.org/gatsby-page-utils/-/gatsby-page-utils-0.2.30.tgz",
+ "integrity": "sha512-H4a6VgDuO4Obd2UgZmfHCnpN3D6NOOpcgVSf8XuC7fmksVhQ3L2v7zw7y/TNS1Fz74yEKffnaF9pqRfkg8D/yg==",
"requires": {
"@babel/runtime": "^7.11.2",
"bluebird": "^3.7.2",
"chokidar": "^3.4.3",
"fs-exists-cached": "^1.0.0",
- "gatsby-core-utils": "^1.3.23",
+ "gatsby-core-utils": "^1.3.24",
"glob": "^7.1.6",
"lodash": "^4.17.20",
"micromatch": "^4.0.2"
},
"dependencies": {
"@babel/runtime": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.1.tgz",
- "integrity": "sha512-J5AIf3vPj3UwXaAzb5j1xM4WAQDX3EMgemF8rjCP3SoW09LfRKAXQKt6CoVYl230P6iWdRcBbnLDDdnqWxZSCA==",
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.5.tgz",
+ "integrity": "sha512-plcc+hbExy3McchJCEQG3knOsuh3HH+Prx1P6cLIkET/0dLuQDEnrT+s27Axgc9bqfsmNUNHfscgMUdBpC9xfg==",
"requires": {
"regenerator-runtime": "^0.13.4"
}
@@ -9971,9 +10087,9 @@
"optional": true
},
"gatsby-core-utils": {
- "version": "1.3.23",
- "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-1.3.23.tgz",
- "integrity": "sha512-H6n6dDeRZ22HAJaBUIt5YjB/BSaE8Jq+kayMUv/YzL1RL2yFZ5lqcLwIL1OE2vWk1mQjMUBZCRxLODU0q1i3bQ==",
+ "version": "1.3.24",
+ "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-1.3.24.tgz",
+ "integrity": "sha512-SlK7rJv/8NBYC8FodYvTINamBHadXNSv//a2uRwh44N1GSSujuCMvtUcpEuAdg9BUQHc54NbbmFuoqf8p85kgA==",
"requires": {
"ci-info": "2.0.0",
"configstore": "^5.0.1",
@@ -10183,55 +10299,55 @@
}
},
"gatsby-plugin-page-creator": {
- "version": "2.3.34",
- "resolved": "https://registry.npmjs.org/gatsby-plugin-page-creator/-/gatsby-plugin-page-creator-2.3.34.tgz",
- "integrity": "sha512-/rFG/ye4m0JJ8NAxTObkKKD8098KOVGE+dZrgBx9I3VN1TcKru0HprVe1xj679HBgKjjNUvchXZbhLl5I+2o4A==",
+ "version": "2.3.35",
+ "resolved": "https://registry.npmjs.org/gatsby-plugin-page-creator/-/gatsby-plugin-page-creator-2.3.35.tgz",
+ "integrity": "sha512-hT6hgkplHSBXin9DECOxNQastvRJq15XrzN8327VU/67tetYGOG7SKDSxN4eCaIwy7VK0nP0C97gyN7kQ3FNJw==",
"requires": {
"@babel/traverse": "^7.11.5",
"@sindresorhus/slugify": "^1.1.0",
"chokidar": "^3.4.2",
"fs-exists-cached": "^1.0.0",
- "gatsby-page-utils": "^0.2.29",
+ "gatsby-page-utils": "^0.2.30",
"globby": "^11.0.1",
"graphql": "^14.7.0",
"lodash": "^4.17.20"
},
"dependencies": {
"@babel/generator": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.12.1.tgz",
- "integrity": "sha512-DB+6rafIdc9o72Yc3/Ph5h+6hUjeOp66pF0naQBgUFFuPqzQwIlPTm3xZR7YNvduIMtkDIj2t21LSQwnbCrXvg==",
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.12.5.tgz",
+ "integrity": "sha512-m16TQQJ8hPt7E+OS/XVQg/7U184MLXtvuGbCdA7na61vha+ImkyyNM/9DDA0unYCVZn3ZOhng+qz48/KBOT96A==",
"requires": {
- "@babel/types": "^7.12.1",
+ "@babel/types": "^7.12.5",
"jsesc": "^2.5.1",
"source-map": "^0.5.0"
}
},
"@babel/parser": {
- "version": "7.12.3",
- "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.12.3.tgz",
- "integrity": "sha512-kFsOS0IbsuhO5ojF8Hc8z/8vEIOkylVBrjiZUbLTE3XFe0Qi+uu6HjzQixkFaqr0ZPAMZcBVxEwmsnsLPZ2Xsw=="
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.12.5.tgz",
+ "integrity": "sha512-FVM6RZQ0mn2KCf1VUED7KepYeUWoVShczewOCfm3nzoBybaih51h+sYVVGthW9M6lPByEPTQf+xm27PBdlpwmQ=="
},
"@babel/traverse": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.12.1.tgz",
- "integrity": "sha512-MA3WPoRt1ZHo2ZmoGKNqi20YnPt0B1S0GTZEPhhd+hw2KGUzBlHuVunj6K4sNuK+reEvyiPwtp0cpaqLzJDmAw==",
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.12.5.tgz",
+ "integrity": "sha512-xa15FbQnias7z9a62LwYAA5SZZPkHIXpd42C6uW68o8uTuua96FHZy1y61Va5P/i83FAAcMpW8+A/QayntzuqA==",
"requires": {
"@babel/code-frame": "^7.10.4",
- "@babel/generator": "^7.12.1",
+ "@babel/generator": "^7.12.5",
"@babel/helper-function-name": "^7.10.4",
"@babel/helper-split-export-declaration": "^7.11.0",
- "@babel/parser": "^7.12.1",
- "@babel/types": "^7.12.1",
+ "@babel/parser": "^7.12.5",
+ "@babel/types": "^7.12.5",
"debug": "^4.1.0",
"globals": "^11.1.0",
"lodash": "^4.17.19"
}
},
"@babel/types": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.12.1.tgz",
- "integrity": "sha512-BzSY3NJBKM4kyatSOWh3D/JJ2O3CVzBybHWxtgxnggaxEuaSTTDqeiSb/xk9lrkw2Tbqyivw5ZU4rT+EfznQsA==",
+ "version": "7.12.6",
+ "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.12.6.tgz",
+ "integrity": "sha512-hwyjw6GvjBLiyy3W0YQf0Z5Zf4NpYejUnKFcfcUhZCSffoBBp30w6wP2Wn6pk31jMYZvcOrB/1b7cGXvEoKogA==",
"requires": {
"@babel/helper-validator-identifier": "^7.10.4",
"lodash": "^4.17.19",
@@ -10456,11 +10572,11 @@
}
},
"@babel/generator": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.12.1.tgz",
- "integrity": "sha512-DB+6rafIdc9o72Yc3/Ph5h+6hUjeOp66pF0naQBgUFFuPqzQwIlPTm3xZR7YNvduIMtkDIj2t21LSQwnbCrXvg==",
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.12.5.tgz",
+ "integrity": "sha512-m16TQQJ8hPt7E+OS/XVQg/7U184MLXtvuGbCdA7na61vha+ImkyyNM/9DDA0unYCVZn3ZOhng+qz48/KBOT96A==",
"requires": {
- "@babel/types": "^7.12.1",
+ "@babel/types": "^7.12.5",
"jsesc": "^2.5.1",
"source-map": "^0.5.0"
}
@@ -10474,11 +10590,11 @@
}
},
"@babel/helper-module-imports": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.12.1.tgz",
- "integrity": "sha512-ZeC1TlMSvikvJNy1v/wPIazCu3NdOwgYZLIkmIyAsGhqkNpiDoQQRmaCK8YP4Pq3GPTLPV9WXaPCJKvx06JxKA==",
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.12.5.tgz",
+ "integrity": "sha512-SR713Ogqg6++uexFRORf/+nPXMmWIn80TALu0uaFb+iQIUoR7bOC7zBWyzBs5b3tBBJXuyD0cRu1F15GyzjOWA==",
"requires": {
- "@babel/types": "^7.12.1"
+ "@babel/types": "^7.12.5"
}
},
"@babel/helper-module-transforms": {
@@ -10498,14 +10614,14 @@
}
},
"@babel/helper-replace-supers": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.12.1.tgz",
- "integrity": "sha512-zJjTvtNJnCFsCXVi5rUInstLd/EIVNmIKA1Q9ynESmMBWPWd+7sdR+G4/wdu+Mppfep0XLyG2m7EBPvjCeFyrw==",
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.12.5.tgz",
+ "integrity": "sha512-5YILoed0ZyIpF4gKcpZitEnXEJ9UoDRki1Ey6xz46rxOzfNMAhVIJMoune1hmPVxh40LRv1+oafz7UsWX+vyWA==",
"requires": {
"@babel/helper-member-expression-to-functions": "^7.12.1",
"@babel/helper-optimise-call-expression": "^7.10.4",
- "@babel/traverse": "^7.12.1",
- "@babel/types": "^7.12.1"
+ "@babel/traverse": "^7.12.5",
+ "@babel/types": "^7.12.5"
}
},
"@babel/helper-simple-access": {
@@ -10517,48 +10633,48 @@
}
},
"@babel/helpers": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.12.1.tgz",
- "integrity": "sha512-9JoDSBGoWtmbay98efmT2+mySkwjzeFeAL9BuWNoVQpkPFQF8SIIFUfY5os9u8wVzglzoiPRSW7cuJmBDUt43g==",
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.12.5.tgz",
+ "integrity": "sha512-lgKGMQlKqA8meJqKsW6rUnc4MdUk35Ln0ATDqdM1a/UpARODdI4j5Y5lVfUScnSNkJcdCRAaWkspykNoFg9sJA==",
"requires": {
"@babel/template": "^7.10.4",
- "@babel/traverse": "^7.12.1",
- "@babel/types": "^7.12.1"
+ "@babel/traverse": "^7.12.5",
+ "@babel/types": "^7.12.5"
}
},
"@babel/parser": {
- "version": "7.12.3",
- "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.12.3.tgz",
- "integrity": "sha512-kFsOS0IbsuhO5ojF8Hc8z/8vEIOkylVBrjiZUbLTE3XFe0Qi+uu6HjzQixkFaqr0ZPAMZcBVxEwmsnsLPZ2Xsw=="
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.12.5.tgz",
+ "integrity": "sha512-FVM6RZQ0mn2KCf1VUED7KepYeUWoVShczewOCfm3nzoBybaih51h+sYVVGthW9M6lPByEPTQf+xm27PBdlpwmQ=="
},
"@babel/runtime": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.1.tgz",
- "integrity": "sha512-J5AIf3vPj3UwXaAzb5j1xM4WAQDX3EMgemF8rjCP3SoW09LfRKAXQKt6CoVYl230P6iWdRcBbnLDDdnqWxZSCA==",
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.5.tgz",
+ "integrity": "sha512-plcc+hbExy3McchJCEQG3knOsuh3HH+Prx1P6cLIkET/0dLuQDEnrT+s27Axgc9bqfsmNUNHfscgMUdBpC9xfg==",
"requires": {
"regenerator-runtime": "^0.13.4"
}
},
"@babel/traverse": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.12.1.tgz",
- "integrity": "sha512-MA3WPoRt1ZHo2ZmoGKNqi20YnPt0B1S0GTZEPhhd+hw2KGUzBlHuVunj6K4sNuK+reEvyiPwtp0cpaqLzJDmAw==",
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.12.5.tgz",
+ "integrity": "sha512-xa15FbQnias7z9a62LwYAA5SZZPkHIXpd42C6uW68o8uTuua96FHZy1y61Va5P/i83FAAcMpW8+A/QayntzuqA==",
"requires": {
"@babel/code-frame": "^7.10.4",
- "@babel/generator": "^7.12.1",
+ "@babel/generator": "^7.12.5",
"@babel/helper-function-name": "^7.10.4",
"@babel/helper-split-export-declaration": "^7.11.0",
- "@babel/parser": "^7.12.1",
- "@babel/types": "^7.12.1",
+ "@babel/parser": "^7.12.5",
+ "@babel/types": "^7.12.5",
"debug": "^4.1.0",
"globals": "^11.1.0",
"lodash": "^4.17.19"
}
},
"@babel/types": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.12.1.tgz",
- "integrity": "sha512-BzSY3NJBKM4kyatSOWh3D/JJ2O3CVzBybHWxtgxnggaxEuaSTTDqeiSb/xk9lrkw2Tbqyivw5ZU4rT+EfznQsA==",
+ "version": "7.12.6",
+ "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.12.6.tgz",
+ "integrity": "sha512-hwyjw6GvjBLiyy3W0YQf0Z5Zf4NpYejUnKFcfcUhZCSffoBBp30w6wP2Wn6pk31jMYZvcOrB/1b7cGXvEoKogA==",
"requires": {
"@babel/helper-validator-identifier": "^7.10.4",
"lodash": "^4.17.19",
@@ -10592,9 +10708,9 @@
},
"dependencies": {
"@babel/runtime": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.1.tgz",
- "integrity": "sha512-J5AIf3vPj3UwXaAzb5j1xM4WAQDX3EMgemF8rjCP3SoW09LfRKAXQKt6CoVYl230P6iWdRcBbnLDDdnqWxZSCA==",
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.5.tgz",
+ "integrity": "sha512-plcc+hbExy3McchJCEQG3knOsuh3HH+Prx1P6cLIkET/0dLuQDEnrT+s27Axgc9bqfsmNUNHfscgMUdBpC9xfg==",
"requires": {
"regenerator-runtime": "^0.13.4"
}
@@ -10602,9 +10718,9 @@
}
},
"gatsby-recipes": {
- "version": "0.2.36",
- "resolved": "https://registry.npmjs.org/gatsby-recipes/-/gatsby-recipes-0.2.36.tgz",
- "integrity": "sha512-GrXRHdEOyGHe5r1hyePWc7kYM3yIu+RDargLqgHGO/lb76ZXRYhjlQ06chL3NMbmxAMYF3UcIm4RSlTS6rLkIg==",
+ "version": "0.2.37",
+ "resolved": "https://registry.npmjs.org/gatsby-recipes/-/gatsby-recipes-0.2.37.tgz",
+ "integrity": "sha512-3pBvAx8HdrFYHv+o0uUiC5Oyd4206wYuQdETib/fYQhG8JxyGCZTDIzy/9RjBYb2I8xm+TlK6jpucLXWlp5DcA==",
"requires": {
"@babel/core": "^7.11.6",
"@babel/generator": "^7.11.6",
@@ -10614,8 +10730,8 @@
"@babel/standalone": "^7.11.6",
"@babel/template": "^7.10.4",
"@babel/types": "^7.11.5",
- "@graphql-tools/schema": "^6.0.14",
- "@graphql-tools/utils": "^6.0.14",
+ "@graphql-tools/schema": "^7.0.0",
+ "@graphql-tools/utils": "^7.0.2",
"@hapi/hoek": "8.x.x",
"@hapi/joi": "^15.1.1",
"better-queue": "^3.8.10",
@@ -10629,8 +10745,8 @@
"express": "^4.17.1",
"express-graphql": "^0.9.0",
"fs-extra": "^8.1.0",
- "gatsby-core-utils": "^1.3.23",
- "gatsby-telemetry": "^1.3.39",
+ "gatsby-core-utils": "^1.3.24",
+ "gatsby-telemetry": "^1.3.40",
"glob": "^7.1.6",
"graphql": "^14.6.0",
"graphql-compose": "^6.3.8",
@@ -10698,11 +10814,11 @@
}
},
"@babel/generator": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.12.1.tgz",
- "integrity": "sha512-DB+6rafIdc9o72Yc3/Ph5h+6hUjeOp66pF0naQBgUFFuPqzQwIlPTm3xZR7YNvduIMtkDIj2t21LSQwnbCrXvg==",
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.12.5.tgz",
+ "integrity": "sha512-m16TQQJ8hPt7E+OS/XVQg/7U184MLXtvuGbCdA7na61vha+ImkyyNM/9DDA0unYCVZn3ZOhng+qz48/KBOT96A==",
"requires": {
- "@babel/types": "^7.12.1",
+ "@babel/types": "^7.12.5",
"jsesc": "^2.5.1",
"source-map": "^0.5.0"
}
@@ -10716,11 +10832,11 @@
}
},
"@babel/helper-module-imports": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.12.1.tgz",
- "integrity": "sha512-ZeC1TlMSvikvJNy1v/wPIazCu3NdOwgYZLIkmIyAsGhqkNpiDoQQRmaCK8YP4Pq3GPTLPV9WXaPCJKvx06JxKA==",
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.12.5.tgz",
+ "integrity": "sha512-SR713Ogqg6++uexFRORf/+nPXMmWIn80TALu0uaFb+iQIUoR7bOC7zBWyzBs5b3tBBJXuyD0cRu1F15GyzjOWA==",
"requires": {
- "@babel/types": "^7.12.1"
+ "@babel/types": "^7.12.5"
}
},
"@babel/helper-module-transforms": {
@@ -10740,14 +10856,14 @@
}
},
"@babel/helper-replace-supers": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.12.1.tgz",
- "integrity": "sha512-zJjTvtNJnCFsCXVi5rUInstLd/EIVNmIKA1Q9ynESmMBWPWd+7sdR+G4/wdu+Mppfep0XLyG2m7EBPvjCeFyrw==",
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.12.5.tgz",
+ "integrity": "sha512-5YILoed0ZyIpF4gKcpZitEnXEJ9UoDRki1Ey6xz46rxOzfNMAhVIJMoune1hmPVxh40LRv1+oafz7UsWX+vyWA==",
"requires": {
"@babel/helper-member-expression-to-functions": "^7.12.1",
"@babel/helper-optimise-call-expression": "^7.10.4",
- "@babel/traverse": "^7.12.1",
- "@babel/types": "^7.12.1"
+ "@babel/traverse": "^7.12.5",
+ "@babel/types": "^7.12.5"
}
},
"@babel/helper-simple-access": {
@@ -10759,52 +10875,53 @@
}
},
"@babel/helpers": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.12.1.tgz",
- "integrity": "sha512-9JoDSBGoWtmbay98efmT2+mySkwjzeFeAL9BuWNoVQpkPFQF8SIIFUfY5os9u8wVzglzoiPRSW7cuJmBDUt43g==",
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.12.5.tgz",
+ "integrity": "sha512-lgKGMQlKqA8meJqKsW6rUnc4MdUk35Ln0ATDqdM1a/UpARODdI4j5Y5lVfUScnSNkJcdCRAaWkspykNoFg9sJA==",
"requires": {
"@babel/template": "^7.10.4",
- "@babel/traverse": "^7.12.1",
- "@babel/types": "^7.12.1"
+ "@babel/traverse": "^7.12.5",
+ "@babel/types": "^7.12.5"
}
},
"@babel/parser": {
- "version": "7.12.3",
- "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.12.3.tgz",
- "integrity": "sha512-kFsOS0IbsuhO5ojF8Hc8z/8vEIOkylVBrjiZUbLTE3XFe0Qi+uu6HjzQixkFaqr0ZPAMZcBVxEwmsnsLPZ2Xsw=="
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.12.5.tgz",
+ "integrity": "sha512-FVM6RZQ0mn2KCf1VUED7KepYeUWoVShczewOCfm3nzoBybaih51h+sYVVGthW9M6lPByEPTQf+xm27PBdlpwmQ=="
},
"@babel/traverse": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.12.1.tgz",
- "integrity": "sha512-MA3WPoRt1ZHo2ZmoGKNqi20YnPt0B1S0GTZEPhhd+hw2KGUzBlHuVunj6K4sNuK+reEvyiPwtp0cpaqLzJDmAw==",
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.12.5.tgz",
+ "integrity": "sha512-xa15FbQnias7z9a62LwYAA5SZZPkHIXpd42C6uW68o8uTuua96FHZy1y61Va5P/i83FAAcMpW8+A/QayntzuqA==",
"requires": {
"@babel/code-frame": "^7.10.4",
- "@babel/generator": "^7.12.1",
+ "@babel/generator": "^7.12.5",
"@babel/helper-function-name": "^7.10.4",
"@babel/helper-split-export-declaration": "^7.11.0",
- "@babel/parser": "^7.12.1",
- "@babel/types": "^7.12.1",
+ "@babel/parser": "^7.12.5",
+ "@babel/types": "^7.12.5",
"debug": "^4.1.0",
"globals": "^11.1.0",
"lodash": "^4.17.19"
}
},
"@babel/types": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.12.1.tgz",
- "integrity": "sha512-BzSY3NJBKM4kyatSOWh3D/JJ2O3CVzBybHWxtgxnggaxEuaSTTDqeiSb/xk9lrkw2Tbqyivw5ZU4rT+EfznQsA==",
+ "version": "7.12.6",
+ "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.12.6.tgz",
+ "integrity": "sha512-hwyjw6GvjBLiyy3W0YQf0Z5Zf4NpYejUnKFcfcUhZCSffoBBp30w6wP2Wn6pk31jMYZvcOrB/1b7cGXvEoKogA==",
"requires": {
"@babel/helper-validator-identifier": "^7.10.4",
"lodash": "^4.17.19",
"to-fast-properties": "^2.0.0"
}
},
- "@graphql-tools/schema": {
- "version": "6.2.4",
- "resolved": "https://registry.npmjs.org/@graphql-tools/schema/-/schema-6.2.4.tgz",
- "integrity": "sha512-rh+14lSY1q8IPbEv2J9x8UBFJ5NrDX9W5asXEUlPp+7vraLp/Tiox4GXdgyA92JhwpYco3nTf5Bo2JDMt1KnAQ==",
+ "@graphql-tools/utils": {
+ "version": "7.0.2",
+ "resolved": "https://registry.npmjs.org/@graphql-tools/utils/-/utils-7.0.2.tgz",
+ "integrity": "sha512-VQQ7krHeoXO0FS3qbWsb/vZb8c8oyiCYPIH4RSgeK9SKOUpatWYt3DW4jmLmyHZLVVMk0yjUbsOhKTBEMejKSA==",
"requires": {
- "@graphql-tools/utils": "^6.2.4",
+ "@ardatan/aggregate-error": "0.0.6",
+ "camel-case": "4.1.1",
"tslib": "~2.0.1"
}
},
@@ -10882,9 +10999,9 @@
"optional": true
},
"gatsby-core-utils": {
- "version": "1.3.23",
- "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-1.3.23.tgz",
- "integrity": "sha512-H6n6dDeRZ22HAJaBUIt5YjB/BSaE8Jq+kayMUv/YzL1RL2yFZ5lqcLwIL1OE2vWk1mQjMUBZCRxLODU0q1i3bQ==",
+ "version": "1.3.24",
+ "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-1.3.24.tgz",
+ "integrity": "sha512-SlK7rJv/8NBYC8FodYvTINamBHadXNSv//a2uRwh44N1GSSujuCMvtUcpEuAdg9BUQHc54NbbmFuoqf8p85kgA==",
"requires": {
"ci-info": "2.0.0",
"configstore": "^5.0.1",
@@ -11235,9 +11352,9 @@
}
},
"gatsby-telemetry": {
- "version": "1.3.39",
- "resolved": "https://registry.npmjs.org/gatsby-telemetry/-/gatsby-telemetry-1.3.39.tgz",
- "integrity": "sha512-25LDAc0+0LDjHTOSIHLT6iJk/zOLLWSttZ0IQNho5fhLdWJ3hQrCWKx8YiVLPPNwnImei6/1FxQlGKUPVAOrRA==",
+ "version": "1.3.40",
+ "resolved": "https://registry.npmjs.org/gatsby-telemetry/-/gatsby-telemetry-1.3.40.tgz",
+ "integrity": "sha512-BfKuSOe9Q2kCrATypvSXGwfffffLG483mP6j7tJy3iUYgnteRcLLP4YbBV3HG7pqW0SQk+JP5iIlsT7VtSZOXw==",
"requires": {
"@babel/code-frame": "^7.10.4",
"@babel/runtime": "^7.11.2",
@@ -11248,7 +11365,7 @@
"configstore": "^5.0.1",
"envinfo": "^7.7.3",
"fs-extra": "^8.1.0",
- "gatsby-core-utils": "^1.3.23",
+ "gatsby-core-utils": "^1.3.24",
"git-up": "^4.0.2",
"is-docker": "^2.1.1",
"lodash": "^4.17.20",
@@ -11257,17 +11374,17 @@
},
"dependencies": {
"@babel/runtime": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.1.tgz",
- "integrity": "sha512-J5AIf3vPj3UwXaAzb5j1xM4WAQDX3EMgemF8rjCP3SoW09LfRKAXQKt6CoVYl230P6iWdRcBbnLDDdnqWxZSCA==",
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.5.tgz",
+ "integrity": "sha512-plcc+hbExy3McchJCEQG3knOsuh3HH+Prx1P6cLIkET/0dLuQDEnrT+s27Axgc9bqfsmNUNHfscgMUdBpC9xfg==",
"requires": {
"regenerator-runtime": "^0.13.4"
}
},
"gatsby-core-utils": {
- "version": "1.3.23",
- "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-1.3.23.tgz",
- "integrity": "sha512-H6n6dDeRZ22HAJaBUIt5YjB/BSaE8Jq+kayMUv/YzL1RL2yFZ5lqcLwIL1OE2vWk1mQjMUBZCRxLODU0q1i3bQ==",
+ "version": "1.3.24",
+ "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-1.3.24.tgz",
+ "integrity": "sha512-SlK7rJv/8NBYC8FodYvTINamBHadXNSv//a2uRwh44N1GSSujuCMvtUcpEuAdg9BUQHc54NbbmFuoqf8p85kgA==",
"requires": {
"ci-info": "2.0.0",
"configstore": "^5.0.1",
@@ -11930,10 +12047,11 @@
}
},
"graphql-config": {
- "version": "3.0.3",
- "resolved": "https://registry.npmjs.org/graphql-config/-/graphql-config-3.0.3.tgz",
- "integrity": "sha512-MBY0wEjvcgJtZUyoqpPvOE1e5qPI0hJaa1gKTqjonSFiCsNHX2lykNjpOPcodmAgH1V06ELxhGnm9kcVzqvi/g==",
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/graphql-config/-/graphql-config-3.1.0.tgz",
+ "integrity": "sha512-tOjgUqB6W+vIzGRn20LogMujoRTAsdwO1gGg6l3SF3xaUjI9/uaCpvy3kJHbZcRiRuOTocmysdBU+hOs3Npx6Q==",
"requires": {
+ "@endemolshinegroup/cosmiconfig-typescript-loader": "3.0.2",
"@graphql-tools/graphql-file-loader": "^6.0.0",
"@graphql-tools/json-file-loader": "^6.0.0",
"@graphql-tools/load": "^6.0.0",
@@ -11941,6 +12059,7 @@
"@graphql-tools/url-loader": "^6.0.0",
"@graphql-tools/utils": "^6.0.0",
"cosmiconfig": "6.0.0",
+ "cosmiconfig-toml-loader": "1.0.0",
"minimatch": "3.0.4",
"string-env-interpolation": "1.0.1",
"tslib": "^2.0.0"
@@ -13111,9 +13230,9 @@
}
},
"is-core-module": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.0.0.tgz",
- "integrity": "sha512-jq1AH6C8MuteOoBPwkxHafmByhL9j5q4OaPGdbuD+ZtQJVzH+i6E3BJDQcBA09k57i2Hh2yQbEG8yObZ0jdlWw==",
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.1.0.tgz",
+ "integrity": "sha512-YcV7BgVMRFRua2FqQzKtTDMz8iCuLEyGKjr70q8Zm1yy2qKcurbFEd79PAdHV77oL3NrAaOVQIbMmiHQCHB7ZA==",
"requires": {
"has": "^1.0.3"
}
@@ -14067,6 +14186,11 @@
"resolved": "https://registry.npmjs.org/lodash.foreach/-/lodash.foreach-4.5.0.tgz",
"integrity": "sha1-Gmo16s5AEoDH8G3d7DUWWrJ+PlM="
},
+ "lodash.get": {
+ "version": "4.4.2",
+ "resolved": "https://registry.npmjs.org/lodash.get/-/lodash.get-4.4.2.tgz",
+ "integrity": "sha1-LRd/ZS+jHpObRDjVNBSZ36OCXpk="
+ },
"lodash.isnumber": {
"version": "3.0.3",
"resolved": "https://registry.npmjs.org/lodash.isnumber/-/lodash.isnumber-3.0.3.tgz",
@@ -14246,6 +14370,11 @@
"semver": "^5.6.0"
}
},
+ "make-error": {
+ "version": "1.3.6",
+ "resolved": "https://registry.npmjs.org/make-error/-/make-error-1.3.6.tgz",
+ "integrity": "sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw=="
+ },
"map-cache": {
"version": "0.2.2",
"resolved": "https://registry.npmjs.org/map-cache/-/map-cache-0.2.2.tgz",
@@ -20011,6 +20140,26 @@
"resolved": "https://registry.npmjs.org/symbol-observable/-/symbol-observable-1.2.0.tgz",
"integrity": "sha512-e900nM8RRtGhlV36KGEU9k65K3mPb1WV70OdjfxlG2EAuM1noi/E/BaW/uMhL7bPEssK8QV57vN3esixjUvcXQ=="
},
+ "sync-fetch": {
+ "version": "0.3.0",
+ "resolved": "https://registry.npmjs.org/sync-fetch/-/sync-fetch-0.3.0.tgz",
+ "integrity": "sha512-dJp4qg+x4JwSEW1HibAuMi0IIrBI3wuQr2GimmqB7OXR50wmwzfdusG+p39R9w3R6aFtZ2mzvxvWKQ3Bd/vx3g==",
+ "requires": {
+ "buffer": "^5.7.0",
+ "node-fetch": "^2.6.1"
+ },
+ "dependencies": {
+ "buffer": {
+ "version": "5.7.1",
+ "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz",
+ "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==",
+ "requires": {
+ "base64-js": "^1.3.1",
+ "ieee754": "^1.1.13"
+ }
+ }
+ }
+ },
"table": {
"version": "5.4.6",
"resolved": "https://registry.npmjs.org/table/-/table-5.4.6.tgz",
@@ -20444,6 +20593,18 @@
"resolved": "https://registry.npmjs.org/true-case-path/-/true-case-path-2.2.1.tgz",
"integrity": "sha512-0z3j8R7MCjy10kc/g+qg7Ln3alJTodw9aDuVWZa3uiWqfuBMKeAeP2ocWcxoyM3D73yz3Jt/Pu4qPr4wHSdB/Q=="
},
+ "ts-node": {
+ "version": "9.0.0",
+ "resolved": "https://registry.npmjs.org/ts-node/-/ts-node-9.0.0.tgz",
+ "integrity": "sha512-/TqB4SnererCDR/vb4S/QvSZvzQMJN8daAslg7MeaiHvD8rDZsSfXmNeNumyZZzMned72Xoq/isQljYSt8Ynfg==",
+ "requires": {
+ "arg": "^4.1.0",
+ "diff": "^4.0.1",
+ "make-error": "^1.1.1",
+ "source-map-support": "^0.5.17",
+ "yn": "3.1.1"
+ }
+ },
"ts-pnp": {
"version": "1.2.0",
"resolved": "https://registry.npmjs.org/ts-pnp/-/ts-pnp-1.2.0.tgz",
@@ -22273,6 +22434,11 @@
"resolved": "https://registry.npmjs.org/yeast/-/yeast-0.1.2.tgz",
"integrity": "sha1-AI4G2AlDIMNy28L47XagymyKxBk="
},
+ "yn": {
+ "version": "3.1.1",
+ "resolved": "https://registry.npmjs.org/yn/-/yn-3.1.1.tgz",
+ "integrity": "sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q=="
+ },
"yoga-layout-prebuilt": {
"version": "1.10.0",
"resolved": "https://registry.npmjs.org/yoga-layout-prebuilt/-/yoga-layout-prebuilt-1.10.0.tgz",
diff --git a/starters/gatsby-starter-theme/package.json b/starters/gatsby-starter-theme/package.json
index 70cc79a8b749d..0fdb0ca29cc15 100644
--- a/starters/gatsby-starter-theme/package.json
+++ b/starters/gatsby-starter-theme/package.json
@@ -10,7 +10,7 @@
},
"license": "0BSD",
"dependencies": {
- "gatsby": "^2.25.1",
+ "gatsby": "^2.25.2",
"gatsby-theme-blog": "^1.6.61",
"gatsby-theme-notes": "^2.0.3",
"react": "^16.12.0",
diff --git a/starters/hello-world/package-lock.json b/starters/hello-world/package-lock.json
index 9bf93de4629c3..8fa7eefa51db8 100644
--- a/starters/hello-world/package-lock.json
+++ b/starters/hello-world/package-lock.json
@@ -28,9 +28,9 @@
}
},
"@babel/compat-data": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.12.1.tgz",
- "integrity": "sha512-725AQupWJZ8ba0jbKceeFblZTY90McUBWMwHhkFQ9q1zKPJ95GUktljFcgcsIVwRnTnRKlcYzfiNImg5G9m6ZQ=="
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.12.5.tgz",
+ "integrity": "sha512-DTsS7cxrsH3by8nqQSpFSyjSfSYl57D6Cf4q8dW3LK83tBKBDCkfcay1nYkXq1nIHXnpX8WMMb/O25HOy3h1zg=="
},
"@babel/core": {
"version": "7.12.3",
@@ -71,11 +71,11 @@
}
},
"@babel/generator": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.12.1.tgz",
- "integrity": "sha512-DB+6rafIdc9o72Yc3/Ph5h+6hUjeOp66pF0naQBgUFFuPqzQwIlPTm3xZR7YNvduIMtkDIj2t21LSQwnbCrXvg==",
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.12.5.tgz",
+ "integrity": "sha512-m16TQQJ8hPt7E+OS/XVQg/7U184MLXtvuGbCdA7na61vha+ImkyyNM/9DDA0unYCVZn3ZOhng+qz48/KBOT96A==",
"requires": {
- "@babel/types": "^7.12.1",
+ "@babel/types": "^7.12.5",
"jsesc": "^2.5.1",
"source-map": "^0.5.0"
}
@@ -117,13 +117,13 @@
}
},
"@babel/helper-compilation-targets": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.12.1.tgz",
- "integrity": "sha512-jtBEif7jsPwP27GPHs06v4WBV0KrE8a/P7n0N0sSvHn2hwUCYnolP/CLmz51IzAW4NlN+HuoBtb9QcwnRo9F/g==",
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.12.5.tgz",
+ "integrity": "sha512-+qH6NrscMolUlzOYngSBMIOQpKUGPPsc61Bu5W10mg84LxZ7cmvnBHzARKbDoFxVvqqAbj6Tg6N7bSrWSPXMyw==",
"requires": {
- "@babel/compat-data": "^7.12.1",
+ "@babel/compat-data": "^7.12.5",
"@babel/helper-validator-option": "^7.12.1",
- "browserslist": "^4.12.0",
+ "browserslist": "^4.14.5",
"semver": "^5.5.0"
},
"dependencies": {
@@ -209,11 +209,11 @@
}
},
"@babel/helper-module-imports": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.12.1.tgz",
- "integrity": "sha512-ZeC1TlMSvikvJNy1v/wPIazCu3NdOwgYZLIkmIyAsGhqkNpiDoQQRmaCK8YP4Pq3GPTLPV9WXaPCJKvx06JxKA==",
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.12.5.tgz",
+ "integrity": "sha512-SR713Ogqg6++uexFRORf/+nPXMmWIn80TALu0uaFb+iQIUoR7bOC7zBWyzBs5b3tBBJXuyD0cRu1F15GyzjOWA==",
"requires": {
- "@babel/types": "^7.12.1"
+ "@babel/types": "^7.12.5"
}
},
"@babel/helper-module-transforms": {
@@ -264,14 +264,14 @@
}
},
"@babel/helper-replace-supers": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.12.1.tgz",
- "integrity": "sha512-zJjTvtNJnCFsCXVi5rUInstLd/EIVNmIKA1Q9ynESmMBWPWd+7sdR+G4/wdu+Mppfep0XLyG2m7EBPvjCeFyrw==",
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.12.5.tgz",
+ "integrity": "sha512-5YILoed0ZyIpF4gKcpZitEnXEJ9UoDRki1Ey6xz46rxOzfNMAhVIJMoune1hmPVxh40LRv1+oafz7UsWX+vyWA==",
"requires": {
"@babel/helper-member-expression-to-functions": "^7.12.1",
"@babel/helper-optimise-call-expression": "^7.10.4",
- "@babel/traverse": "^7.12.1",
- "@babel/types": "^7.12.1"
+ "@babel/traverse": "^7.12.5",
+ "@babel/types": "^7.12.5"
}
},
"@babel/helper-simple-access": {
@@ -320,13 +320,13 @@
}
},
"@babel/helpers": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.12.1.tgz",
- "integrity": "sha512-9JoDSBGoWtmbay98efmT2+mySkwjzeFeAL9BuWNoVQpkPFQF8SIIFUfY5os9u8wVzglzoiPRSW7cuJmBDUt43g==",
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.12.5.tgz",
+ "integrity": "sha512-lgKGMQlKqA8meJqKsW6rUnc4MdUk35Ln0ATDqdM1a/UpARODdI4j5Y5lVfUScnSNkJcdCRAaWkspykNoFg9sJA==",
"requires": {
"@babel/template": "^7.10.4",
- "@babel/traverse": "^7.12.1",
- "@babel/types": "^7.12.1"
+ "@babel/traverse": "^7.12.5",
+ "@babel/types": "^7.12.5"
}
},
"@babel/highlight": {
@@ -337,12 +337,24 @@
"@babel/helper-validator-identifier": "^7.10.4",
"chalk": "^2.0.0",
"js-tokens": "^4.0.0"
+ },
+ "dependencies": {
+ "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/parser": {
- "version": "7.12.3",
- "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.12.3.tgz",
- "integrity": "sha512-kFsOS0IbsuhO5ojF8Hc8z/8vEIOkylVBrjiZUbLTE3XFe0Qi+uu6HjzQixkFaqr0ZPAMZcBVxEwmsnsLPZ2Xsw=="
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.12.5.tgz",
+ "integrity": "sha512-FVM6RZQ0mn2KCf1VUED7KepYeUWoVShczewOCfm3nzoBybaih51h+sYVVGthW9M6lPByEPTQf+xm27PBdlpwmQ=="
},
"@babel/plugin-proposal-async-generator-functions": {
"version": "7.12.1",
@@ -409,9 +421,9 @@
}
},
"@babel/plugin-proposal-numeric-separator": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.12.1.tgz",
- "integrity": "sha512-MR7Ok+Af3OhNTCxYVjJZHS0t97ydnJZt/DbR4WISO39iDnhiD8XHrY12xuSJ90FFEGjir0Fzyyn7g/zY6hxbxA==",
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.12.5.tgz",
+ "integrity": "sha512-UiAnkKuOrCyjZ3sYNHlRlfuZJbBHknMQ9VMwVeX97Ofwx7RpD6gS2HfqTCh8KNUQgcOm8IKt103oR4KIjh7Q8g==",
"requires": {
"@babel/helper-plugin-utils": "^7.10.4",
"@babel/plugin-syntax-numeric-separator": "^7.10.4"
@@ -792,9 +804,9 @@
}
},
"@babel/plugin-transform-react-jsx": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.12.1.tgz",
- "integrity": "sha512-RmKejwnT0T0QzQUzcbP5p1VWlpnP8QHtdhEtLG55ZDQnJNalbF3eeDyu3dnGKvGzFIQiBzFhBYTwvv435p9Xpw==",
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.12.5.tgz",
+ "integrity": "sha512-2xkcPqqrYiOQgSlM/iwto1paPijjsDbUynN13tI6bosDz/jOW3CRzYguIE8wKX32h+msbBM22Dv5fwrFkUOZjQ==",
"requires": {
"@babel/helper-builder-react-jsx": "^7.10.4",
"@babel/helper-builder-react-jsx-experimental": "^7.12.1",
@@ -803,9 +815,9 @@
}
},
"@babel/plugin-transform-react-jsx-development": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.12.1.tgz",
- "integrity": "sha512-IilcGWdN1yNgEGOrB96jbTplRh+V2Pz1EoEwsKsHfX1a/L40cUYuD71Zepa7C+ujv7kJIxnDftWeZbKNEqZjCQ==",
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.12.5.tgz",
+ "integrity": "sha512-1JJusg3iPgsZDthyWiCr3KQiGs31ikU/mSf2N2dSYEAO0GEImmVUbWf0VoSDGDFTAn5Dj4DUiR6SdIXHY7tELA==",
"requires": {
"@babel/helper-builder-react-jsx-experimental": "^7.12.1",
"@babel/helper-plugin-utils": "^7.10.4",
@@ -1033,14 +1045,14 @@
}
},
"@babel/preset-react": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/preset-react/-/preset-react-7.12.1.tgz",
- "integrity": "sha512-euCExymHCi0qB9u5fKw7rvlw7AZSjw/NaB9h7EkdTt5+yHRrXdiRTh7fkG3uBPpJg82CqLfp1LHLqWGSCrab+g==",
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/preset-react/-/preset-react-7.12.5.tgz",
+ "integrity": "sha512-jcs++VPrgyFehkMezHtezS2BpnUlR7tQFAyesJn1vGTO9aTFZrgIQrA5YydlTwxbcjMwkFY6i04flCigRRr3GA==",
"requires": {
"@babel/helper-plugin-utils": "^7.10.4",
"@babel/plugin-transform-react-display-name": "^7.12.1",
- "@babel/plugin-transform-react-jsx": "^7.12.1",
- "@babel/plugin-transform-react-jsx-development": "^7.12.1",
+ "@babel/plugin-transform-react-jsx": "^7.12.5",
+ "@babel/plugin-transform-react-jsx-development": "^7.12.5",
"@babel/plugin-transform-react-jsx-self": "^7.12.1",
"@babel/plugin-transform-react-jsx-source": "^7.12.1",
"@babel/plugin-transform-react-pure-annotations": "^7.12.1"
@@ -1056,26 +1068,26 @@
}
},
"@babel/runtime": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.1.tgz",
- "integrity": "sha512-J5AIf3vPj3UwXaAzb5j1xM4WAQDX3EMgemF8rjCP3SoW09LfRKAXQKt6CoVYl230P6iWdRcBbnLDDdnqWxZSCA==",
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.5.tgz",
+ "integrity": "sha512-plcc+hbExy3McchJCEQG3knOsuh3HH+Prx1P6cLIkET/0dLuQDEnrT+s27Axgc9bqfsmNUNHfscgMUdBpC9xfg==",
"requires": {
"regenerator-runtime": "^0.13.4"
}
},
"@babel/runtime-corejs3": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/runtime-corejs3/-/runtime-corejs3-7.12.1.tgz",
- "integrity": "sha512-umhPIcMrlBZ2aTWlWjUseW9LjQKxi1dpFlQS8DzsxB//5K+u6GLTC/JliPKHsd5kJVPIU6X/Hy0YvWOYPcMxBw==",
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/runtime-corejs3/-/runtime-corejs3-7.12.5.tgz",
+ "integrity": "sha512-roGr54CsTmNPPzZoCP1AmDXuBoNao7tnSA83TXTwt+UK5QVyh1DIJnrgYRPWKCF2flqZQXwa7Yr8v7VmLzF0YQ==",
"requires": {
"core-js-pure": "^3.0.0",
"regenerator-runtime": "^0.13.4"
}
},
"@babel/standalone": {
- "version": "7.12.4",
- "resolved": "https://registry.npmjs.org/@babel/standalone/-/standalone-7.12.4.tgz",
- "integrity": "sha512-9vw7RYK7CWh5MdTfLyC7j6hZmDYmm6DieFP4yetvpVftKQ+yrEY7ovhnhsVHznLqx5luU9Bx4k7xoEc3acrsow=="
+ "version": "7.12.6",
+ "resolved": "https://registry.npmjs.org/@babel/standalone/-/standalone-7.12.6.tgz",
+ "integrity": "sha512-yA/OV3jN1nhr0JsAdYWAqbeZ7cAOw/6Fh52rxVMzujr0HF4Z3cau0JBzJfQppFfR9IArrUtcqhBu/+Q/IevoyQ=="
},
"@babel/template": {
"version": "7.10.4",
@@ -1088,16 +1100,16 @@
}
},
"@babel/traverse": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.12.1.tgz",
- "integrity": "sha512-MA3WPoRt1ZHo2ZmoGKNqi20YnPt0B1S0GTZEPhhd+hw2KGUzBlHuVunj6K4sNuK+reEvyiPwtp0cpaqLzJDmAw==",
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.12.5.tgz",
+ "integrity": "sha512-xa15FbQnias7z9a62LwYAA5SZZPkHIXpd42C6uW68o8uTuua96FHZy1y61Va5P/i83FAAcMpW8+A/QayntzuqA==",
"requires": {
"@babel/code-frame": "^7.10.4",
- "@babel/generator": "^7.12.1",
+ "@babel/generator": "^7.12.5",
"@babel/helper-function-name": "^7.10.4",
"@babel/helper-split-export-declaration": "^7.11.0",
- "@babel/parser": "^7.12.1",
- "@babel/types": "^7.12.1",
+ "@babel/parser": "^7.12.5",
+ "@babel/types": "^7.12.5",
"debug": "^4.1.0",
"globals": "^11.1.0",
"lodash": "^4.17.19"
@@ -1114,15 +1126,33 @@
}
},
"@babel/types": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.12.1.tgz",
- "integrity": "sha512-BzSY3NJBKM4kyatSOWh3D/JJ2O3CVzBybHWxtgxnggaxEuaSTTDqeiSb/xk9lrkw2Tbqyivw5ZU4rT+EfznQsA==",
+ "version": "7.12.6",
+ "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.12.6.tgz",
+ "integrity": "sha512-hwyjw6GvjBLiyy3W0YQf0Z5Zf4NpYejUnKFcfcUhZCSffoBBp30w6wP2Wn6pk31jMYZvcOrB/1b7cGXvEoKogA==",
"requires": {
"@babel/helper-validator-identifier": "^7.10.4",
"lodash": "^4.17.19",
"to-fast-properties": "^2.0.0"
}
},
+ "@endemolshinegroup/cosmiconfig-typescript-loader": {
+ "version": "3.0.2",
+ "resolved": "https://registry.npmjs.org/@endemolshinegroup/cosmiconfig-typescript-loader/-/cosmiconfig-typescript-loader-3.0.2.tgz",
+ "integrity": "sha512-QRVtqJuS1mcT56oHpVegkKBlgtWjXw/gHNWO3eL9oyB5Sc7HBoc2OLG/nYpVfT/Jejvo3NUrD0Udk7XgoyDKkA==",
+ "requires": {
+ "lodash.get": "^4",
+ "make-error": "^1",
+ "ts-node": "^9",
+ "tslib": "^2"
+ },
+ "dependencies": {
+ "tslib": {
+ "version": "2.0.3",
+ "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.0.3.tgz",
+ "integrity": "sha512-uZtkfKblCEQtZKBF6EBXVZeQNl82yqtDQdv+eck8u7tdPxjLu2/lp5/uPW+um2tpuxINHWy3GhiccY7QgEaVHQ=="
+ }
+ }
+ },
"@graphql-tools/batch-execute": {
"version": "7.0.0",
"resolved": "https://registry.npmjs.org/@graphql-tools/batch-execute/-/batch-execute-7.0.0.tgz",
@@ -1152,9 +1182,9 @@
}
},
"@graphql-tools/delegate": {
- "version": "7.0.3",
- "resolved": "https://registry.npmjs.org/@graphql-tools/delegate/-/delegate-7.0.3.tgz",
- "integrity": "sha512-BSRF/Wg9XNllWo3Kdt0QBBaFltexn3vAnTOWH1qLrNcmfQAvUMf17/TsAqH9ZLSKU1NW9XCOsd7YMHhhUuTCEg==",
+ "version": "7.0.4",
+ "resolved": "https://registry.npmjs.org/@graphql-tools/delegate/-/delegate-7.0.4.tgz",
+ "integrity": "sha512-6/qL9V31FgECNPwc5As1359hpsAt4ASWsiYBSYWL+Iq9/K0YRcNeEmSseXIyCP4oh8k/9HS/w/m2lkMk/YSUpQ==",
"requires": {
"@ardatan/aggregate-error": "0.0.6",
"@graphql-tools/batch-execute": "^7.0.0",
@@ -1463,9 +1493,9 @@
}
},
"@graphql-tools/url-loader": {
- "version": "6.3.2",
- "resolved": "https://registry.npmjs.org/@graphql-tools/url-loader/-/url-loader-6.3.2.tgz",
- "integrity": "sha512-nrrZD33T7lFeOjIufCrwk2PAHYqFtdFcb1pe1ULWnvuFmFuhZnRCgIsfCsoy+WOMwmZHQ/eXBem//I/bewXlgw==",
+ "version": "6.4.0",
+ "resolved": "https://registry.npmjs.org/@graphql-tools/url-loader/-/url-loader-6.4.0.tgz",
+ "integrity": "sha512-M3mS/VH6vpnai3b3Fa33kYcdCgZvhFh7RqFE1R3NMfhYjphQ10EWwgf31P+VQcBNB2zz+ubxttI6UcJLiGqwuQ==",
"requires": {
"@graphql-tools/delegate": "^7.0.1",
"@graphql-tools/utils": "^7.0.1",
@@ -1473,6 +1503,7 @@
"@types/websocket": "1.0.1",
"cross-fetch": "3.0.6",
"subscriptions-transport-ws": "0.9.18",
+ "sync-fetch": "0.3.0",
"tslib": "~2.0.1",
"valid-url": "1.0.9",
"websocket": "1.0.32"
@@ -1575,6 +1606,11 @@
"@hapi/hoek": "^8.3.0"
}
},
+ "@iarna/toml": {
+ "version": "2.2.5",
+ "resolved": "https://registry.npmjs.org/@iarna/toml/-/toml-2.2.5.tgz",
+ "integrity": "sha512-trnsAYxU3xnS1gPHPyU961coFyLkh4gAD/0zQ5mymY4yOZ+CYvsPqUbOFSw0aDM4y0tV7tiFxL/1XfXPNC6IPg=="
+ },
"@jest/types": {
"version": "25.5.0",
"resolved": "https://registry.npmjs.org/@jest/types/-/types-25.5.0.tgz",
@@ -1673,6 +1709,18 @@
"error-stack-parser": "^2.0.0",
"string-width": "^2.0.0",
"strip-ansi": "^3"
+ },
+ "dependencies": {
+ "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"
+ }
+ }
}
},
"@pmmmwh/react-refresh-webpack-plugin": {
@@ -2391,6 +2439,11 @@
"resolved": "https://registry.npmjs.org/arch/-/arch-2.2.0.tgz",
"integrity": "sha512-Of/R0wqp83cgHozfIYLbBMnej79U/SVGOOyuB3VVFv1NRM/PSFMK12x9KVtiYzJqmnU5WR2qp0Z5rHb7sWGnFQ=="
},
+ "arg": {
+ "version": "4.1.3",
+ "resolved": "https://registry.npmjs.org/arg/-/arg-4.1.3.tgz",
+ "integrity": "sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA=="
+ },
"argparse": {
"version": "1.0.10",
"resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz",
@@ -2781,9 +2834,9 @@
"integrity": "sha512-eqj0hVcJUR57/Ug2zE1Yswsw4LhuqqHhD+8v120T1cl3kjg76QwtyBrdIk4WVwK+lAhBJVYCd/v+4nc4y+8JsA=="
},
"babel-preset-gatsby": {
- "version": "0.5.15",
- "resolved": "https://registry.npmjs.org/babel-preset-gatsby/-/babel-preset-gatsby-0.5.15.tgz",
- "integrity": "sha512-0eno/GAvzmaLW/s+RzsLXrZVQwBMZYU/zMv1HpArGlYbNCon/fK53/Bz3pklJDq1pNAybXQ2RROpPHDyJM2EGA==",
+ "version": "0.5.16",
+ "resolved": "https://registry.npmjs.org/babel-preset-gatsby/-/babel-preset-gatsby-0.5.16.tgz",
+ "integrity": "sha512-zcUYvHRnDxwQmzJnkWtHk4x7cGaMbQjTJIKrvCWpS9u10hQOQUNAz/ZKSH1vUmB4oYap6m+sHDoDIr7PNoCAEQ==",
"requires": {
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.10.4",
@@ -2797,7 +2850,7 @@
"babel-plugin-dynamic-import-node": "^2.3.3",
"babel-plugin-macros": "^2.8.0",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
- "gatsby-core-utils": "^1.3.23",
+ "gatsby-core-utils": "^1.3.24",
"gatsby-legacy-polyfills": "^0.0.6"
}
},
@@ -3283,9 +3336,9 @@
}
},
"buffer": {
- "version": "5.7.0",
- "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.0.tgz",
- "integrity": "sha512-cd+5r1VLBwUqTrmnzW+D7ABkJUM6mr7uv1dv+6jRw4Rcl7tFIFHDqHPL98LhpGFn3dbAt3gtLxtrWp4m1kFrqg==",
+ "version": "5.7.1",
+ "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz",
+ "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==",
"requires": {
"base64-js": "^1.3.1",
"ieee754": "^1.1.13"
@@ -3505,9 +3558,9 @@
}
},
"caniuse-lite": {
- "version": "1.0.30001154",
- "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001154.tgz",
- "integrity": "sha512-y9DvdSti8NnYB9Be92ddMZQrcOe04kcQtcxtBx4NkB04+qZ+JUWotnXBJTmxlKudhxNTQ3RRknMwNU2YQl/Org=="
+ "version": "1.0.30001156",
+ "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001156.tgz",
+ "integrity": "sha512-z7qztybA2eFZTB6Z3yvaQBIoJpQtsewRD74adw2UbRWwsRq3jIPvgrQGawBMbfafekQaD21FWuXNcywtTDGGCw=="
},
"ccount": {
"version": "1.1.0",
@@ -3515,13 +3568,48 @@
"integrity": "sha512-vlNK021QdI7PNeiUh/lKkC/mNHHfV0m/Ad5JoI0TYtlBnJAslM/JIkm/tGC88bkLIwO6OQ5uV6ztS6kVAtCDlg=="
},
"chalk": {
- "version": "2.4.2",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
- "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
+ "version": "4.1.0",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.0.tgz",
+ "integrity": "sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==",
"requires": {
- "ansi-styles": "^3.2.1",
- "escape-string-regexp": "^1.0.5",
- "supports-color": "^5.3.0"
+ "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"
+ }
+ }
}
},
"character-entities": {
@@ -3823,6 +3911,18 @@
"@types/q": "^1.5.1",
"chalk": "^2.4.1",
"q": "^1.1.2"
+ },
+ "dependencies": {
+ "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"
+ }
+ }
}
},
"collapse-white-space": {
@@ -4228,6 +4328,14 @@
"yaml": "^1.7.2"
}
},
+ "cosmiconfig-toml-loader": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/cosmiconfig-toml-loader/-/cosmiconfig-toml-loader-1.0.0.tgz",
+ "integrity": "sha512-H/2gurFWVi7xXvCyvsWRLCMekl4tITJcX0QEsDMpzxtuxDyM59xLatYNg4s/k9AA/HdtCYfj2su8mgA0GSDLDA==",
+ "requires": {
+ "@iarna/toml": "^2.2.5"
+ }
+ },
"create-ecdh": {
"version": "4.0.4",
"resolved": "https://registry.npmjs.org/create-ecdh/-/create-ecdh-4.0.4.tgz",
@@ -4361,6 +4469,16 @@
"source-list-map": "^2.0.0"
},
"dependencies": {
+ "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"
+ }
+ },
"postcss": {
"version": "6.0.23",
"resolved": "https://registry.npmjs.org/postcss/-/postcss-6.0.23.tgz",
@@ -4906,6 +5024,11 @@
}
}
},
+ "diff": {
+ "version": "4.0.2",
+ "resolved": "https://registry.npmjs.org/diff/-/diff-4.0.2.tgz",
+ "integrity": "sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A=="
+ },
"diff-sequences": {
"version": "25.2.6",
"resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-25.2.6.tgz",
@@ -5062,9 +5185,9 @@
"integrity": "sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0="
},
"electron-to-chromium": {
- "version": "1.3.586",
- "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.586.tgz",
- "integrity": "sha512-or8FCbQCRlPZHkOoqBULOI9hzTiStVIQqDLgAPt8pzY+swTrW+89vsqd24Zn+Iv4guAJLxRBD6OR5AmbpabGDA=="
+ "version": "1.3.588",
+ "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.588.tgz",
+ "integrity": "sha512-0zr+ZfytnLeJZxGgmEpPTcItu5Mm4A5zHPZXLfHcGp0mdsk95rmD7ePNewYtK1yIdLbk8Z1U2oTRRfOtR4gbYg=="
},
"elliptic": {
"version": "6.5.3",
@@ -5392,6 +5515,16 @@
"resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz",
"integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg=="
},
+ "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.2.0",
"resolved": "https://registry.npmjs.org/debug/-/debug-4.2.0.tgz",
@@ -6533,9 +6666,9 @@
"integrity": "sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc="
},
"gatsby": {
- "version": "2.25.1",
- "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-2.25.1.tgz",
- "integrity": "sha512-2MLGL0MooLGmGQhSjIjq+mH95lE3PbrtZ8xgcmN1JOsjR/dJ+Fx/BoZC3CdqPku/zflMNlCb99vuB2HQaXiRdg==",
+ "version": "2.25.2",
+ "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-2.25.2.tgz",
+ "integrity": "sha512-zssz6mH5vpScGq9SCDtkfajJkYVYJ+00x5JRVf9pYlVTRdv+g7jbKTuGdaWKbPoacEtXw3bUaTURUC2YMs/Gmg==",
"requires": {
"@babel/code-frame": "^7.10.4",
"@babel/core": "^7.11.6",
@@ -6562,7 +6695,7 @@
"babel-plugin-dynamic-import-node": "^2.3.3",
"babel-plugin-lodash": "3.3.4",
"babel-plugin-remove-graphql-queries": "^2.9.20",
- "babel-preset-gatsby": "^0.5.15",
+ "babel-preset-gatsby": "^0.5.16",
"better-opn": "^2.0.0",
"better-queue": "^3.8.10",
"bluebird": "^3.7.2",
@@ -6570,7 +6703,7 @@
"browserslist": "^4.12.2",
"cache-manager": "^2.11.1",
"cache-manager-fs-hash": "^0.0.9",
- "chalk": "^2.4.2",
+ "chalk": "^4.1.0",
"chokidar": "^3.4.2",
"common-tags": "^1.8.0",
"compression": "^1.7.4",
@@ -6603,16 +6736,16 @@
"find-cache-dir": "^3.3.1",
"fs-exists-cached": "1.0.0",
"fs-extra": "^8.1.0",
- "gatsby-cli": "^2.12.115",
- "gatsby-core-utils": "^1.3.23",
+ "gatsby-cli": "^2.12.116",
+ "gatsby-core-utils": "^1.3.24",
"gatsby-graphiql-explorer": "^0.4.15",
"gatsby-legacy-polyfills": "^0.0.6",
"gatsby-link": "^2.4.16",
- "gatsby-plugin-page-creator": "^2.3.34",
+ "gatsby-plugin-page-creator": "^2.3.35",
"gatsby-plugin-typescript": "^2.5.0",
"gatsby-plugin-utils": "^0.2.40",
"gatsby-react-router-scroll": "^3.0.15",
- "gatsby-telemetry": "^1.3.39",
+ "gatsby-telemetry": "^1.3.40",
"glob": "^7.1.6",
"got": "8.3.2",
"graphql": "^14.6.0",
@@ -6703,15 +6836,15 @@
}
},
"gatsby-cli": {
- "version": "2.12.115",
- "resolved": "https://registry.npmjs.org/gatsby-cli/-/gatsby-cli-2.12.115.tgz",
- "integrity": "sha512-wOs3tG3tYses4fclXG0FtVZx+K0FDoZFkU1MIJNB+aRt+T7VMCZUIlg2MyrqcngsEW8al4EgyOd3UIl3NepC4A==",
+ "version": "2.12.116",
+ "resolved": "https://registry.npmjs.org/gatsby-cli/-/gatsby-cli-2.12.116.tgz",
+ "integrity": "sha512-vXpyl/ZFF67r/BlBxIjfdknBzxRfRuJ1qkA7//6dhNKDMlvVi5ZqGhOwcMzTgM1e0WZRaMFzf5/foPIA++8xEQ==",
"requires": {
"@babel/code-frame": "^7.10.4",
"@hapi/joi": "^15.1.1",
"@types/common-tags": "^1.8.0",
"better-opn": "^2.0.0",
- "chalk": "^2.4.2",
+ "chalk": "^4.1.0",
"clipboardy": "^2.3.0",
"common-tags": "^1.8.0",
"configstore": "^5.0.1",
@@ -6720,9 +6853,9 @@
"execa": "^3.4.0",
"fs-exists-cached": "^1.0.0",
"fs-extra": "^8.1.0",
- "gatsby-core-utils": "^1.3.23",
- "gatsby-recipes": "^0.2.36",
- "gatsby-telemetry": "^1.3.39",
+ "gatsby-core-utils": "^1.3.24",
+ "gatsby-recipes": "^0.2.37",
+ "gatsby-telemetry": "^1.3.40",
"hosted-git-info": "^3.0.6",
"is-valid-path": "^0.1.1",
"lodash": "^4.17.20",
@@ -6833,9 +6966,9 @@
}
},
"gatsby-core-utils": {
- "version": "1.3.23",
- "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-1.3.23.tgz",
- "integrity": "sha512-H6n6dDeRZ22HAJaBUIt5YjB/BSaE8Jq+kayMUv/YzL1RL2yFZ5lqcLwIL1OE2vWk1mQjMUBZCRxLODU0q1i3bQ==",
+ "version": "1.3.24",
+ "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-1.3.24.tgz",
+ "integrity": "sha512-SlK7rJv/8NBYC8FodYvTINamBHadXNSv//a2uRwh44N1GSSujuCMvtUcpEuAdg9BUQHc54NbbmFuoqf8p85kgA==",
"requires": {
"ci-info": "2.0.0",
"configstore": "^5.0.1",
@@ -6873,30 +7006,30 @@
}
},
"gatsby-page-utils": {
- "version": "0.2.29",
- "resolved": "https://registry.npmjs.org/gatsby-page-utils/-/gatsby-page-utils-0.2.29.tgz",
- "integrity": "sha512-0xN3kBNd7PNwsJB1lJrsy7hEJbIIBcvnmbxGTplGenmGnOMoJqK6kEfM5Ru5dWBdSmwHrS+kcihFi0ZiGxpoww==",
+ "version": "0.2.30",
+ "resolved": "https://registry.npmjs.org/gatsby-page-utils/-/gatsby-page-utils-0.2.30.tgz",
+ "integrity": "sha512-H4a6VgDuO4Obd2UgZmfHCnpN3D6NOOpcgVSf8XuC7fmksVhQ3L2v7zw7y/TNS1Fz74yEKffnaF9pqRfkg8D/yg==",
"requires": {
"@babel/runtime": "^7.11.2",
"bluebird": "^3.7.2",
"chokidar": "^3.4.3",
"fs-exists-cached": "^1.0.0",
- "gatsby-core-utils": "^1.3.23",
+ "gatsby-core-utils": "^1.3.24",
"glob": "^7.1.6",
"lodash": "^4.17.20",
"micromatch": "^4.0.2"
}
},
"gatsby-plugin-page-creator": {
- "version": "2.3.34",
- "resolved": "https://registry.npmjs.org/gatsby-plugin-page-creator/-/gatsby-plugin-page-creator-2.3.34.tgz",
- "integrity": "sha512-/rFG/ye4m0JJ8NAxTObkKKD8098KOVGE+dZrgBx9I3VN1TcKru0HprVe1xj679HBgKjjNUvchXZbhLl5I+2o4A==",
+ "version": "2.3.35",
+ "resolved": "https://registry.npmjs.org/gatsby-plugin-page-creator/-/gatsby-plugin-page-creator-2.3.35.tgz",
+ "integrity": "sha512-hT6hgkplHSBXin9DECOxNQastvRJq15XrzN8327VU/67tetYGOG7SKDSxN4eCaIwy7VK0nP0C97gyN7kQ3FNJw==",
"requires": {
"@babel/traverse": "^7.11.5",
"@sindresorhus/slugify": "^1.1.0",
"chokidar": "^3.4.2",
"fs-exists-cached": "^1.0.0",
- "gatsby-page-utils": "^0.2.29",
+ "gatsby-page-utils": "^0.2.30",
"globby": "^11.0.1",
"graphql": "^14.7.0",
"lodash": "^4.17.20"
@@ -6948,9 +7081,9 @@
}
},
"gatsby-recipes": {
- "version": "0.2.36",
- "resolved": "https://registry.npmjs.org/gatsby-recipes/-/gatsby-recipes-0.2.36.tgz",
- "integrity": "sha512-GrXRHdEOyGHe5r1hyePWc7kYM3yIu+RDargLqgHGO/lb76ZXRYhjlQ06chL3NMbmxAMYF3UcIm4RSlTS6rLkIg==",
+ "version": "0.2.37",
+ "resolved": "https://registry.npmjs.org/gatsby-recipes/-/gatsby-recipes-0.2.37.tgz",
+ "integrity": "sha512-3pBvAx8HdrFYHv+o0uUiC5Oyd4206wYuQdETib/fYQhG8JxyGCZTDIzy/9RjBYb2I8xm+TlK6jpucLXWlp5DcA==",
"requires": {
"@babel/core": "^7.11.6",
"@babel/generator": "^7.11.6",
@@ -6960,8 +7093,8 @@
"@babel/standalone": "^7.11.6",
"@babel/template": "^7.10.4",
"@babel/types": "^7.11.5",
- "@graphql-tools/schema": "^6.0.14",
- "@graphql-tools/utils": "^6.0.14",
+ "@graphql-tools/schema": "^7.0.0",
+ "@graphql-tools/utils": "^7.0.2",
"@hapi/hoek": "8.x.x",
"@hapi/joi": "^15.1.1",
"better-queue": "^3.8.10",
@@ -6975,8 +7108,8 @@
"express": "^4.17.1",
"express-graphql": "^0.9.0",
"fs-extra": "^8.1.0",
- "gatsby-core-utils": "^1.3.23",
- "gatsby-telemetry": "^1.3.39",
+ "gatsby-core-utils": "^1.3.24",
+ "gatsby-telemetry": "^1.3.40",
"glob": "^7.1.6",
"graphql": "^14.6.0",
"graphql-compose": "^6.3.8",
@@ -7013,12 +7146,13 @@
"yoga-layout-prebuilt": "^1.9.6"
},
"dependencies": {
- "@graphql-tools/schema": {
- "version": "6.2.4",
- "resolved": "https://registry.npmjs.org/@graphql-tools/schema/-/schema-6.2.4.tgz",
- "integrity": "sha512-rh+14lSY1q8IPbEv2J9x8UBFJ5NrDX9W5asXEUlPp+7vraLp/Tiox4GXdgyA92JhwpYco3nTf5Bo2JDMt1KnAQ==",
+ "@graphql-tools/utils": {
+ "version": "7.0.2",
+ "resolved": "https://registry.npmjs.org/@graphql-tools/utils/-/utils-7.0.2.tgz",
+ "integrity": "sha512-VQQ7krHeoXO0FS3qbWsb/vZb8c8oyiCYPIH4RSgeK9SKOUpatWYt3DW4jmLmyHZLVVMk0yjUbsOhKTBEMejKSA==",
"requires": {
- "@graphql-tools/utils": "^6.2.4",
+ "@ardatan/aggregate-error": "0.0.6",
+ "camel-case": "4.1.1",
"tslib": "~2.0.1"
}
},
@@ -7112,9 +7246,9 @@
}
},
"gatsby-telemetry": {
- "version": "1.3.39",
- "resolved": "https://registry.npmjs.org/gatsby-telemetry/-/gatsby-telemetry-1.3.39.tgz",
- "integrity": "sha512-25LDAc0+0LDjHTOSIHLT6iJk/zOLLWSttZ0IQNho5fhLdWJ3hQrCWKx8YiVLPPNwnImei6/1FxQlGKUPVAOrRA==",
+ "version": "1.3.40",
+ "resolved": "https://registry.npmjs.org/gatsby-telemetry/-/gatsby-telemetry-1.3.40.tgz",
+ "integrity": "sha512-BfKuSOe9Q2kCrATypvSXGwfffffLG483mP6j7tJy3iUYgnteRcLLP4YbBV3HG7pqW0SQk+JP5iIlsT7VtSZOXw==",
"requires": {
"@babel/code-frame": "^7.10.4",
"@babel/runtime": "^7.11.2",
@@ -7125,7 +7259,7 @@
"configstore": "^5.0.1",
"envinfo": "^7.7.3",
"fs-extra": "^8.1.0",
- "gatsby-core-utils": "^1.3.23",
+ "gatsby-core-utils": "^1.3.24",
"git-up": "^4.0.2",
"is-docker": "^2.1.1",
"lodash": "^4.17.20",
@@ -7406,10 +7540,11 @@
}
},
"graphql-config": {
- "version": "3.0.3",
- "resolved": "https://registry.npmjs.org/graphql-config/-/graphql-config-3.0.3.tgz",
- "integrity": "sha512-MBY0wEjvcgJtZUyoqpPvOE1e5qPI0hJaa1gKTqjonSFiCsNHX2lykNjpOPcodmAgH1V06ELxhGnm9kcVzqvi/g==",
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/graphql-config/-/graphql-config-3.1.0.tgz",
+ "integrity": "sha512-tOjgUqB6W+vIzGRn20LogMujoRTAsdwO1gGg6l3SF3xaUjI9/uaCpvy3kJHbZcRiRuOTocmysdBU+hOs3Npx6Q==",
"requires": {
+ "@endemolshinegroup/cosmiconfig-typescript-loader": "3.0.2",
"@graphql-tools/graphql-file-loader": "^6.0.0",
"@graphql-tools/json-file-loader": "^6.0.0",
"@graphql-tools/load": "^6.0.0",
@@ -7417,6 +7552,7 @@
"@graphql-tools/url-loader": "^6.0.0",
"@graphql-tools/utils": "^6.0.0",
"cosmiconfig": "6.0.0",
+ "cosmiconfig-toml-loader": "1.0.0",
"minimatch": "3.0.4",
"string-env-interpolation": "1.0.1",
"tslib": "^2.0.0"
@@ -7854,6 +7990,16 @@
"postcss": "^6.0.1"
},
"dependencies": {
+ "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"
+ }
+ },
"postcss": {
"version": "6.0.23",
"resolved": "https://registry.npmjs.org/postcss/-/postcss-6.0.23.tgz",
@@ -8044,41 +8190,6 @@
"resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.0.tgz",
"integrity": "sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg=="
},
- "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"
- }
- },
- "chalk": {
- "version": "4.1.0",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.0.tgz",
- "integrity": "sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==",
- "requires": {
- "ansi-styles": "^4.1.0",
- "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=="
- },
"is-fullwidth-code-point": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz",
@@ -8102,14 +8213,6 @@
"ansi-regex": "^5.0.0"
}
},
- "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.11.0",
"resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.11.0.tgz",
@@ -8268,9 +8371,9 @@
}
},
"is-core-module": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.0.0.tgz",
- "integrity": "sha512-jq1AH6C8MuteOoBPwkxHafmByhL9j5q4OaPGdbuD+ZtQJVzH+i6E3BJDQcBA09k57i2Hh2yQbEG8yObZ0jdlWw==",
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.1.0.tgz",
+ "integrity": "sha512-YcV7BgVMRFRua2FqQzKtTDMz8iCuLEyGKjr70q8Zm1yy2qKcurbFEd79PAdHV77oL3NrAaOVQIbMmiHQCHB7ZA==",
"requires": {
"has": "^1.0.3"
}
@@ -9052,6 +9155,11 @@
"resolved": "https://registry.npmjs.org/lodash.foreach/-/lodash.foreach-4.5.0.tgz",
"integrity": "sha1-Gmo16s5AEoDH8G3d7DUWWrJ+PlM="
},
+ "lodash.get": {
+ "version": "4.4.2",
+ "resolved": "https://registry.npmjs.org/lodash.get/-/lodash.get-4.4.2.tgz",
+ "integrity": "sha1-LRd/ZS+jHpObRDjVNBSZ36OCXpk="
+ },
"lodash.map": {
"version": "4.6.0",
"resolved": "https://registry.npmjs.org/lodash.map/-/lodash.map-4.6.0.tgz",
@@ -9147,6 +9255,11 @@
}
}
},
+ "make-error": {
+ "version": "1.3.6",
+ "resolved": "https://registry.npmjs.org/make-error/-/make-error-1.3.6.tgz",
+ "integrity": "sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw=="
+ },
"map-cache": {
"version": "0.2.2",
"resolved": "https://registry.npmjs.org/map-cache/-/map-cache-0.2.2.tgz",
@@ -10463,6 +10576,26 @@
"supports-color": "^6.1.0"
},
"dependencies": {
+ "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"
+ },
+ "dependencies": {
+ "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"
+ }
+ }
+ }
+ },
"source-map": {
"version": "0.6.1",
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
@@ -10759,6 +10892,16 @@
"postcss": "^6.0.1"
},
"dependencies": {
+ "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"
+ }
+ },
"postcss": {
"version": "6.0.23",
"resolved": "https://registry.npmjs.org/postcss/-/postcss-6.0.23.tgz",
@@ -10785,6 +10928,16 @@
"postcss": "^6.0.1"
},
"dependencies": {
+ "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"
+ }
+ },
"postcss": {
"version": "6.0.23",
"resolved": "https://registry.npmjs.org/postcss/-/postcss-6.0.23.tgz",
@@ -10811,6 +10964,16 @@
"postcss": "^6.0.1"
},
"dependencies": {
+ "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"
+ }
+ },
"postcss": {
"version": "6.0.23",
"resolved": "https://registry.npmjs.org/postcss/-/postcss-6.0.23.tgz",
@@ -10837,6 +11000,16 @@
"postcss": "^6.0.1"
},
"dependencies": {
+ "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"
+ }
+ },
"postcss": {
"version": "6.0.23",
"resolved": "https://registry.npmjs.org/postcss/-/postcss-6.0.23.tgz",
@@ -13458,6 +13631,16 @@
"util.promisify": "~1.0.0"
},
"dependencies": {
+ "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"
+ }
+ },
"css-select": {
"version": "2.1.0",
"resolved": "https://registry.npmjs.org/css-select/-/css-select-2.1.0.tgz",
@@ -13490,6 +13673,15 @@
"resolved": "https://registry.npmjs.org/symbol-observable/-/symbol-observable-1.2.0.tgz",
"integrity": "sha512-e900nM8RRtGhlV36KGEU9k65K3mPb1WV70OdjfxlG2EAuM1noi/E/BaW/uMhL7bPEssK8QV57vN3esixjUvcXQ=="
},
+ "sync-fetch": {
+ "version": "0.3.0",
+ "resolved": "https://registry.npmjs.org/sync-fetch/-/sync-fetch-0.3.0.tgz",
+ "integrity": "sha512-dJp4qg+x4JwSEW1HibAuMi0IIrBI3wuQr2GimmqB7OXR50wmwzfdusG+p39R9w3R6aFtZ2mzvxvWKQ3Bd/vx3g==",
+ "requires": {
+ "buffer": "^5.7.0",
+ "node-fetch": "^2.6.1"
+ }
+ },
"table": {
"version": "5.4.6",
"resolved": "https://registry.npmjs.org/table/-/table-5.4.6.tgz",
@@ -13736,6 +13928,18 @@
"resolved": "https://registry.npmjs.org/true-case-path/-/true-case-path-2.2.1.tgz",
"integrity": "sha512-0z3j8R7MCjy10kc/g+qg7Ln3alJTodw9aDuVWZa3uiWqfuBMKeAeP2ocWcxoyM3D73yz3Jt/Pu4qPr4wHSdB/Q=="
},
+ "ts-node": {
+ "version": "9.0.0",
+ "resolved": "https://registry.npmjs.org/ts-node/-/ts-node-9.0.0.tgz",
+ "integrity": "sha512-/TqB4SnererCDR/vb4S/QvSZvzQMJN8daAslg7MeaiHvD8rDZsSfXmNeNumyZZzMned72Xoq/isQljYSt8Ynfg==",
+ "requires": {
+ "arg": "^4.1.0",
+ "diff": "^4.0.1",
+ "make-error": "^1.1.1",
+ "source-map-support": "^0.5.17",
+ "yn": "3.1.1"
+ }
+ },
"ts-pnp": {
"version": "1.2.0",
"resolved": "https://registry.npmjs.org/ts-pnp/-/ts-pnp-1.2.0.tgz",
@@ -14309,9 +14513,9 @@
},
"dependencies": {
"is-buffer": {
- "version": "2.0.4",
- "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-2.0.4.tgz",
- "integrity": "sha512-Kq1rokWXOPXWuaMAqZiJW4XxsmD9zGx9q4aePabbn3qCRGedtH7Cm+zV8WETitMfu1wdh+Rvd6w5egwSngUX2A=="
+ "version": "2.0.5",
+ "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-2.0.5.tgz",
+ "integrity": "sha512-i2R6zNFDwgEHJyQUtJEk0XFi1i0dPFn/oqjK3/vPCcDeJvW5NQ83V8QbicfF1SupOaB0h8ntgBC2YiE7dfyctQ=="
}
}
},
@@ -15268,6 +15472,11 @@
"resolved": "https://registry.npmjs.org/yeast/-/yeast-0.1.2.tgz",
"integrity": "sha1-AI4G2AlDIMNy28L47XagymyKxBk="
},
+ "yn": {
+ "version": "3.1.1",
+ "resolved": "https://registry.npmjs.org/yn/-/yn-3.1.1.tgz",
+ "integrity": "sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q=="
+ },
"yoga-layout-prebuilt": {
"version": "1.10.0",
"resolved": "https://registry.npmjs.org/yoga-layout-prebuilt/-/yoga-layout-prebuilt-1.10.0.tgz",
@@ -15307,6 +15516,16 @@
"resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz",
"integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg=="
},
+ "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.2.0",
"resolved": "https://registry.npmjs.org/debug/-/debug-4.2.0.tgz",
diff --git a/starters/hello-world/package.json b/starters/hello-world/package.json
index eeeed94c40162..afdb0ff0960e5 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": "^2.25.1",
+ "gatsby": "^2.25.2",
"react": "^16.12.0",
"react-dom": "^16.12.0"
},
|
a0a04e0a739d35f539a2310c46ed93a0cc64f5f2
|
2019-02-22 12:23:49
|
Michael Werner Czechowski
|
docs(gatsby-plugin-sitemap): Put important note to top
| false
|
Put important note to top
|
docs
|
diff --git a/packages/gatsby-plugin-sitemap/README.md b/packages/gatsby-plugin-sitemap/README.md
index b9e00a490436c..994b0fd89180a 100644
--- a/packages/gatsby-plugin-sitemap/README.md
+++ b/packages/gatsby-plugin-sitemap/README.md
@@ -2,6 +2,8 @@
Create a sitemap for your Gatsby site.
+_NOTE: This plugin only generates output when run in `production` mode! To test your sitemap, run: `gatsby build && gatsby serve`_
+
## Install
`npm install --save gatsby-plugin-sitemap`
@@ -61,5 +63,3 @@ plugins: [
}
]
```
-
-_NOTE: This plugin only generates output when run in `production` mode! To test your sitemap, run: `gatsby build && gatsby serve`_
|
d97a0868acdbde2361175b4b1491d3adb6ac68bc
|
2021-03-19 17:45:21
|
LB
|
fix(gatsby-plugin-image): image partial rendering (#30221)
| false
|
image partial rendering (#30221)
|
fix
|
diff --git a/packages/gatsby-plugin-image/src/components/gatsby-image.browser.tsx b/packages/gatsby-plugin-image/src/components/gatsby-image.browser.tsx
index b49a431801fc3..d51dcea69df4a 100644
--- a/packages/gatsby-plugin-image/src/components/gatsby-image.browser.tsx
+++ b/packages/gatsby-plugin-image/src/components/gatsby-image.browser.tsx
@@ -1,11 +1,11 @@
/* eslint-disable no-unused-expressions */
import React, {
+ Component,
ElementType,
- useEffect,
- useRef,
+ createRef,
+ MutableRefObject,
FunctionComponent,
ImgHTMLAttributes,
- useState,
RefObject,
CSSProperties,
} from "react"
@@ -13,12 +13,15 @@ import {
getWrapperProps,
hasNativeLazyLoadSupport,
storeImageloaded,
+ hasImageLoaded,
} from "./hooks"
import { PlaceholderProps } from "./placeholder"
import { MainImageProps } from "./main-image"
import { Layout } from "../image-utils"
import { getSizer } from "./layout-wrapper"
import { propTypes } from "./gatsby-image.server"
+import { Unobserver } from "./intersection-observer"
+import { render } from "react-dom"
// eslint-disable-next-line @typescript-eslint/naming-convention
export interface GatsbyImageProps
@@ -50,171 +53,233 @@ export interface IGatsbyImageData {
placeholder?: Pick<PlaceholderProps, "sources" | "fallback">
}
-let hasShownWarning = false
-
-export const GatsbyImageHydrator: FunctionComponent<GatsbyImageProps> = function GatsbyImageHydrator({
- as: Type = `div`,
- style,
- className,
- class: preactClass,
- onStartLoad,
- image,
- onLoad: customOnLoad,
- backgroundColor,
- loading = `lazy`,
- ...props
-}) {
- if (!image) {
- if (process.env.NODE_ENV === `development`) {
- console.warn(`[gatsby-plugin-image] Missing image prop`)
+class GatsbyImageHydrator extends Component<
+ GatsbyImageProps,
+ { isLoading: boolean; isLoaded: boolean }
+> {
+ root: RefObject<HTMLImageElement | undefined> = createRef<
+ HTMLImageElement | undefined
+ >()
+ hydrated: MutableRefObject<boolean> = { current: false }
+ lazyHydrator: () => void | null = null
+ ref = createRef<HTMLImageElement>()
+ unobserveRef: Unobserver
+
+ constructor(props) {
+ super(props)
+
+ this.state = {
+ isLoading: hasNativeLazyLoadSupport(),
+ isLoaded: false,
}
- return null
}
- if (preactClass) {
- className = preactClass
- }
- const { width, height, layout, images } = image
-
- const root = useRef<HTMLElement>()
- const hydrated = useRef(false)
- const unobserveRef = useRef<
- ((element: RefObject<HTMLElement | undefined>) => void) | null
- >(null)
- const lazyHydrator = useRef<(() => void) | null>(null)
- const ref = useRef<HTMLImageElement | undefined>()
- const [isLoading, toggleIsLoading] = useState(hasNativeLazyLoadSupport())
- const [isLoaded, toggleIsLoaded] = useState(false)
-
- if (!global.GATSBY___IMAGE && !hasShownWarning) {
- hasShownWarning = true
- console.warn(
- `[gatsby-plugin-image] You're missing out on some cool performance features. Please add "gatsby-plugin-image" to your gatsby-config.js`
+
+ _lazyHydrate(props, state): Promise<void> {
+ const hasSSRHtml = this.root.current.querySelector(
+ `[data-gatsby-image-ssr]`
)
+ // On first server hydration do nothing
+ if (hasNativeLazyLoadSupport() && hasSSRHtml && !this.hydrated.current) {
+ this.hydrated.current = true
+ return Promise.resolve()
+ }
+
+ return import(`./lazy-hydrate`).then(({ lazyHydrate }) => {
+ this.lazyHydrator = lazyHydrate(
+ {
+ image: props.image.images,
+ isLoading: state.isLoading,
+ isLoaded: state.isLoaded,
+ toggleIsLoaded: () => {
+ props.onLoad?.()
+
+ this.setState({
+ isLoaded: true,
+ })
+ },
+ ref: this.ref,
+ ...props,
+ },
+ this.root,
+ this.hydrated
+ )
+ })
}
- const { style: wStyle, className: wClass, ...wrapperProps } = getWrapperProps(
- width,
- height,
- layout
- )
+ /**
+ * Choose if setupIntersectionObserver should use the image cache or not.
+ */
+ _setupIntersectionObserver(useCache = true): void {
+ import(`./intersection-observer`).then(({ createIntersectionObserver }) => {
+ const intersectionObserver = createIntersectionObserver(() => {
+ if (this.root.current) {
+ const cacheKey = JSON.stringify(this.props.image.images)
+ this.props.onStartLoad?.({
+ wasCached: useCache && hasImageLoaded(cacheKey),
+ })
+ this.setState({
+ isLoading: true,
+ isLoaded: useCache && hasImageLoaded(cacheKey),
+ })
+ }
+ })
+
+ if (this.root.current) {
+ this.unobserveRef = intersectionObserver(this.root)
+ }
+ })
+ }
+
+ shouldComponentUpdate(nextProps, nextState): boolean {
+ let hasChanged = false
+
+ // this check mostly means people do not have the correct ref checks in place, we want to reset some state to suppport loading effects
+ if (this.props.image.images !== nextProps.image.images) {
+ // reset state, we'll rely on intersection observer to reload
+ if (this.unobserveRef) {
+ // unregister intersectionObserver
+ this.unobserveRef()
+
+ // // on unmount, make sure we cleanup
+ if (this.hydrated.current && this.lazyHydrator) {
+ render(null, this.root.current)
+ }
+ }
+
+ this.setState(
+ {
+ isLoading: false,
+ isLoaded: false,
+ },
+ () => {
+ this._setupIntersectionObserver(false)
+ }
+ )
+
+ hasChanged = true
+ }
+
+ if (this.root.current && !hasChanged) {
+ this._lazyHydrate(nextProps, nextState)
+ }
+
+ return false
+ }
- useEffect((): (() => void) | undefined => {
- if (root.current) {
- const hasSSRHtml = root.current.querySelector(
+ componentDidMount(): void {
+ if (this.root.current) {
+ const ssrElement = this.root.current.querySelector(
`[data-gatsby-image-ssr]`
) as HTMLImageElement
+ const cacheKey = JSON.stringify(this.props.image.images)
// when SSR and native lazyload is supported we'll do nothing ;)
- if (hasNativeLazyLoadSupport() && hasSSRHtml && global.GATSBY___IMAGE) {
- onStartLoad?.({ wasCached: false })
+ if (hasNativeLazyLoadSupport() && ssrElement && global.GATSBY___IMAGE) {
+ this.props.onStartLoad?.({ wasCached: false })
- if (hasSSRHtml.complete) {
- customOnLoad?.()
- storeImageloaded(JSON.stringify(images))
+ // When the image is already loaded before we have hydrated, we trigger onLoad and cache the item
+ if (ssrElement.complete) {
+ this.props.onLoad?.()
+ storeImageloaded(cacheKey)
} else {
- hasSSRHtml.addEventListener(`load`, function onLoad() {
- hasSSRHtml.removeEventListener(`load`, onLoad)
+ // We need the current class context (this) inside our named onLoad function
+ // The named function is necessary to easily remove the listener afterward.
+ // eslint-disable-next-line @typescript-eslint/no-this-alias
+ const _this = this
+ // add an onLoad to the image
+ ssrElement.addEventListener(`load`, function onLoad() {
+ ssrElement.removeEventListener(`load`, onLoad)
- customOnLoad?.()
- storeImageloaded(JSON.stringify(images))
+ _this.props.onLoad?.()
+ storeImageloaded(cacheKey)
})
}
- return undefined
+
+ return
}
// Fallback to custom lazy loading (intersection observer)
- import(`./intersection-observer`).then(
- ({ createIntersectionObserver }) => {
- const intersectionObserver = createIntersectionObserver(() => {
- if (root.current) {
- onStartLoad?.({ wasCached: false })
- toggleIsLoading(true)
- }
- })
-
- if (root.current) {
- unobserveRef.current = intersectionObserver(root)
- }
- }
- )
+ this._setupIntersectionObserver(true)
}
+ }
- return (): void => {
- if (unobserveRef.current) {
- unobserveRef.current(root)
+ componentWillUnmount(): void {
+ // Cleanup when onmount happens
+ if (this.unobserveRef) {
+ // unregister intersectionObserver
+ this.unobserveRef()
- // on unmount, make sure we cleanup
- if (hydrated.current && lazyHydrator.current) {
- lazyHydrator.current()
- }
+ // on unmount, make sure we cleanup
+ if (this.hydrated.current && this.lazyHydrator) {
+ this.lazyHydrator()
}
}
- }, [])
-
- useEffect(() => {
- if (root.current) {
- const hasSSRHtml = root.current.querySelector(`[data-gatsby-image-ssr]`)
- // On first server hydration do nothing
- if (hasNativeLazyLoadSupport() && hasSSRHtml && !hydrated.current) {
- hydrated.current = true
- return
- }
- import(`./lazy-hydrate`).then(({ lazyHydrate }) => {
- lazyHydrator.current = lazyHydrate(
- {
- image,
- isLoading,
- isLoaded,
- toggleIsLoaded: () => {
- customOnLoad?.()
- toggleIsLoaded(true)
- },
- ref,
- loading,
- ...props,
- },
- root,
- hydrated
- )
- })
+ return
+ }
+
+ render(): JSX.Element {
+ const Type = this.props.as || `div`
+ const { width, height, layout } = this.props.image
+ const {
+ style: wStyle,
+ className: wClass,
+ ...wrapperProps
+ } = getWrapperProps(width, height, layout)
+
+ let className = this.props.className
+ // preact class
+ if (this.props.class) {
+ className = this.props.class
}
- }, [
- width,
- height,
- layout,
- images,
- isLoading,
- isLoaded,
- toggleIsLoaded,
- ref,
- props,
- ])
- const sizer = getSizer(layout, width, height)
-
- return (
- <Type
- {...wrapperProps}
- style={{
- ...wStyle,
- ...style,
- backgroundColor,
- }}
- className={`${wClass}${className ? ` ${className}` : ``}`}
- ref={root}
- dangerouslySetInnerHTML={{
- __html: sizer,
- }}
- suppressHydrationWarning
- />
- )
+ const sizer = getSizer(layout, width, height)
+
+ return (
+ <Type
+ {...wrapperProps}
+ style={{
+ ...wStyle,
+ ...this.props.style,
+ backgroundColor: this.props.backgroundColor,
+ }}
+ className={`${wClass}${className ? ` ${className}` : ``}`}
+ ref={this.root}
+ dangerouslySetInnerHTML={{
+ __html: sizer,
+ }}
+ suppressHydrationWarning
+ />
+ )
+ }
}
export const GatsbyImage: FunctionComponent<GatsbyImageProps> = function GatsbyImage(
props
) {
- return <GatsbyImageHydrator {...props} />
+ if (!props.image) {
+ if (process.env.NODE_ENV === `development`) {
+ console.warn(`[gatsby-plugin-image] Missing image prop`)
+ }
+ return null
+ }
+
+ if (!global.GATSBY___IMAGE) {
+ console.warn(
+ `[gatsby-plugin-image] You're missing out on some cool performance features. Please add "gatsby-plugin-image" to your gatsby-config.js`
+ )
+ }
+ const { className, class: classSafe, backgroundColor, image } = props
+ const { width, height, layout } = image
+ const propsKey = JSON.stringify([
+ width,
+ height,
+ layout,
+ className,
+ classSafe,
+ backgroundColor,
+ ])
+ return <GatsbyImageHydrator key={propsKey} {...props} />
}
GatsbyImage.propTypes = propTypes
diff --git a/packages/gatsby-plugin-image/src/components/intersection-observer.ts b/packages/gatsby-plugin-image/src/components/intersection-observer.ts
index 0a2e4e42b9209..9a632db59a72a 100644
--- a/packages/gatsby-plugin-image/src/components/intersection-observer.ts
+++ b/packages/gatsby-plugin-image/src/components/intersection-observer.ts
@@ -3,7 +3,7 @@ import { RefObject } from "react"
let intersectionObserver: IntersectionObserver
-type Unobserver = () => void
+export type Unobserver = () => void
const ioEntryMap = new WeakMap<HTMLElement, () => void>()
/* eslint-disable @typescript-eslint/no-explicit-any */
diff --git a/packages/gatsby-plugin-image/src/components/layout-wrapper.tsx b/packages/gatsby-plugin-image/src/components/layout-wrapper.tsx
index 755d5a7c9808f..7286b280d3e13 100644
--- a/packages/gatsby-plugin-image/src/components/layout-wrapper.tsx
+++ b/packages/gatsby-plugin-image/src/components/layout-wrapper.tsx
@@ -1,7 +1,7 @@
// eslint-disable-next-line @typescript-eslint/triple-slash-reference
/// <reference path="../global.d.ts" />
-import React, { Fragment, FunctionComponent, ReactElement } from "react"
+import React, { Fragment, FunctionComponent } from "react"
import terserMacro from "../../macros/terser.macro"
import { Layout } from "../image-utils"
@@ -56,20 +56,18 @@ export function getSizer(
return sizer
}
-export const LayoutWrapper: FunctionComponent<ILayoutWrapperProps> = function LayoutWrapper({
+const Sizer: FunctionComponent<ILayoutWrapperProps> = function Sizer({
layout,
width,
height,
- children,
}) {
- let sizer: ReactElement | null = null
if (layout === `fullWidth`) {
- sizer = (
+ return (
<div aria-hidden style={{ paddingTop: `${(height / width) * 100}%` }} />
)
}
if (layout === `constrained`) {
- sizer = (
+ return (
<div style={{ maxWidth: width, display: `block` }}>
<img
alt=""
@@ -85,9 +83,17 @@ export const LayoutWrapper: FunctionComponent<ILayoutWrapperProps> = function La
</div>
)
}
+
+ return null
+}
+
+export const LayoutWrapper: FunctionComponent<ILayoutWrapperProps> = function LayoutWrapper({
+ children,
+ ...props
+}) {
return (
<Fragment>
- {sizer}
+ <Sizer {...props} />
{children}
{
diff --git a/packages/gatsby-plugin-image/src/components/lazy-hydrate.tsx b/packages/gatsby-plugin-image/src/components/lazy-hydrate.tsx
index 65e232291e8f7..559581e2ff564 100644
--- a/packages/gatsby-plugin-image/src/components/lazy-hydrate.tsx
+++ b/packages/gatsby-plugin-image/src/components/lazy-hydrate.tsx
@@ -4,12 +4,7 @@ import { GatsbyImageProps } from "./gatsby-image.browser"
import { LayoutWrapper } from "./layout-wrapper"
import { Placeholder } from "./placeholder"
import { MainImageProps, MainImage } from "./main-image"
-import {
- getMainProps,
- getPlaceholderProps,
- hasNativeLazyLoadSupport,
- hasImageLoaded,
-} from "./hooks"
+import { getMainProps, getPlaceholderProps } from "./hooks"
import { ReactElement } from "react"
type LazyHydrateProps = Omit<GatsbyImageProps, "as" | "style" | "className"> & {
@@ -48,18 +43,7 @@ export function lazyHydrate(
backgroundColor: wrapperBackgroundColor,
} = image
- if (!root.current) {
- return null
- }
-
- const hasSSRHtml = root.current.querySelector(`[data-gatsby-image-ssr]`)
- // On first server hydration do nothing
- if (hasNativeLazyLoadSupport() && hasSSRHtml && !hydrated.current) {
- return null
- }
-
const cacheKey = JSON.stringify(images)
- const hasLoaded = hasImageLoaded(cacheKey)
imgStyle = {
objectFit,
@@ -70,18 +54,17 @@ export function lazyHydrate(
const component = (
<LayoutWrapper layout={layout} width={width} height={height}>
- {!hasLoaded && (
- <Placeholder
- {...getPlaceholderProps(
- placeholder,
- isLoaded,
- layout,
- width,
- height,
- wrapperBackgroundColor
- )}
- />
- )}
+ <Placeholder
+ {...getPlaceholderProps(
+ placeholder,
+ isLoaded,
+ layout,
+ width,
+ height,
+ wrapperBackgroundColor
+ )}
+ />
+
<MainImage
{...(props as Omit<MainImageProps, "images" | "fallback">)}
width={width}
@@ -89,7 +72,7 @@ export function lazyHydrate(
className={imgClassName}
{...getMainProps(
isLoading,
- hasLoaded || isLoaded,
+ isLoaded,
images,
loading,
toggleIsLoaded,
|
33e0f860b5eb9efee64929df000e854ec664a276
|
2021-03-17 22:43:35
|
Matt Kane
|
docs: Add info on using CMS images (#30292)
| false
|
Add info on using CMS images (#30292)
|
docs
|
diff --git a/docs/docs/how-to/images-and-media/using-gatsby-plugin-image.md b/docs/docs/how-to/images-and-media/using-gatsby-plugin-image.md
index d08c58c360899..a8c7bfc1614d2 100644
--- a/docs/docs/how-to/images-and-media/using-gatsby-plugin-image.md
+++ b/docs/docs/how-to/images-and-media/using-gatsby-plugin-image.md
@@ -103,7 +103,7 @@ If you are using an image that will be the same each time the component is used,
### Dynamic images
-If you need to have dynamic images (such as if they are coming from a CMS), you can load them via GraphQL and display them using the `GatsbyImage` component.
+If you need to have dynamic images (such as if they are coming from a CMS), you can load them via GraphQL and display them using the `GatsbyImage` component. Many CMSs support `gatsby-plugin-image` without needing to download and process images locally. For these, you should see the individual plugin documentation for details on query syntax. See the [CMS images](#using-images-from-a-cms) section for a list of supported CMSs. For other data sources, images are downloaded and processed locally at build time. This section shows how to use [gatsby-transformer-sharp](/plugins/gatsby-transformer-sharp/) to query for these images.
1. **Add the image to your page query.**
@@ -192,6 +192,30 @@ If you need to have dynamic images (such as if they are coming from a CMS), you
`
```
+## Using images from a CMS
+
+Many CMS source plugins have native support for `gatsby-plugin-image`. The images are served directly from a content delivery network. This means that builds are faster, because there is no need download images and process them locally at build time. The query syntax varies according to the plugin, as do the supported transformation features and image formats. Make sure you update to the latest version of the source plugin to ensure there is support.
+
+### Source plugins
+
+These source plugins support using `gatsby-plugin-image` with images served from their CDN.
+
+- [Contentful](/plugins/gatsby-source-contentful/#using-the-new-gatsby-image-plugin)
+- [DatoCMS](/plugins/gatsby-source-datocms/#integration-with-gatsby-image)
+- [Shopify](https://github.com/gatsbyjs/gatsby-source-shopify-experimental#images)
+- [AgilityCMS](https://github.com/agility/gatbsy-image-agilitycms)
+- [Sanity](https://www.gatsbyjs.com/plugins/gatsby-source-sanity/#using-images)
+
+### Image CDNs
+
+A dedicated image CDN can be used with sources that don't have their own CDN, or where you need more transforms or formats than the CDN offers.
+
+- [imgix](https://www.gatsbyjs.com/plugins/@imgix/gatsby/)
+
+### Plugin authors
+
+If you maintain a source plugin or image CDN, there is a toolkit to help you add support for `gatsby-plugin-image`. See [Adding Gatbsy Image support to your plugin](/docs/how-to/plugins-and-themes/adding-gatsby-image-support/) for more details. You can then open a PR to add your plugin to this list.
+
## Migrating
If your site uses the old `gatsby-image` component, you can use a codemod to help you migrate to the new Gatsby Image components. This can update the code for most sites. To use the codemod, run this command in the root of your site:
|
bf1dddb1c5885ca258762f87188e07e1e422f185
|
2019-08-12 15:42:34
|
Dillon Browne
|
docs(gatsby-plugin-sass): Update default precision (#16536)
| false
|
Update default precision (#16536)
|
docs
|
diff --git a/packages/gatsby-plugin-sass/README.md b/packages/gatsby-plugin-sass/README.md
index 0aa51bd000ecd..10c614e825833 100644
--- a/packages/gatsby-plugin-sass/README.md
+++ b/packages/gatsby-plugin-sass/README.md
@@ -85,7 +85,7 @@ plugins: [
### SASS Precision
-SASS defaults to [5 digits of precision](https://github.com/sass/sass/issues/1122). If this is too low for you (e.g. if you use Bootstrap), you may configure it as follows:
+SASS defaults to [10 digits of precision](https://github.com/sass/sass/issues/1122). If this is too low for you (e.g. if you use Bootstrap), you may configure it as follows:
#### Bootstrap 4
|
636691462c8da54b1b807839cf519f8d1d94703a
|
2019-07-03 03:50:58
|
Sidhartha Chatterjee
|
fix(gatsby): Default to empty arrays in load-themes (#15331)
| false
|
Default to empty arrays in load-themes (#15331)
|
fix
|
diff --git a/packages/gatsby/src/bootstrap/load-themes/index.js b/packages/gatsby/src/bootstrap/load-themes/index.js
index cf98ed2308efb..74753e97959d0 100644
--- a/packages/gatsby/src/bootstrap/load-themes/index.js
+++ b/packages/gatsby/src/bootstrap/load-themes/index.js
@@ -60,7 +60,7 @@ const processTheme = (
module.exports = async (config, { useLegacyThemes = false }) => {
const themesA = await Promise.mapSeries(
- useLegacyThemes ? config.__experimentalThemes : config.plugins,
+ useLegacyThemes ? config.__experimentalThemes || [] : config.plugins || [],
async themeSpec => {
const themeObj = await resolveTheme(themeSpec)
return processTheme(themeObj, { useLegacyThemes })
|
3821b13f5980ac69e6b5c5ed20956a4ee43c98ed
|
2020-03-12 02:12:48
|
Conrad Lin
|
chore(starters): add gatsby-starter-strata-notion (#21933)
| false
|
add gatsby-starter-strata-notion (#21933)
|
chore
|
diff --git a/docs/starters.yml b/docs/starters.yml
index a196165d0e98b..f3a795d385e6c 100644
--- a/docs/starters.yml
+++ b/docs/starters.yml
@@ -5446,6 +5446,19 @@
- Light and Dark themes based on CSS variables (persisted state)
- Font Awesome
- Normalize.css
+- url: https://gatsby-notion-demo.netlify.com/
+ repo: https://github.com/conradlin/gatsby-starter-strata-notion
+ description: Gatsby starter utilizing Notion as a CMS based on strata site template
+ tags:
+ - Blog
+ - PWA
+ - SEO
+ - Styling:SCSS
+ features:
+ - Super simple, portfolio + blog + newsletter site
+ - Utilizing Notion as a CMS
+ - Fully Responsive
+ - Styling with SCSS
- url: https://sumanth.netlify.com/
repo: https://github.com/Mr404Found/gatsby-sidedrawer
description: A responsive and super simple gatsby site with awesome navbar and stay tuned more features coming soon
|
bafa1dc58ba0296c546dd3ae3bc5342043826bf0
|
2019-10-07 16:39:10
|
Oleg Butuzov
|
chore(link): deadlink (#18232)
| false
|
deadlink (#18232)
|
chore
|
diff --git a/docs/sites.yml b/docs/sites.yml
index bdaeffbca00f8..52de9911768b0 100644
--- a/docs/sites.yml
+++ b/docs/sites.yml
@@ -1100,7 +1100,7 @@
- Documentation
- Community
built_by: Sankarsan Kampa
- built_by_url: "https://sankarsankampa.com"
+ built_by_url: "https://traction.one"
- title: Smakosh
main_url: "https://smakosh.com/"
url: "https://smakosh.com/"
|
58b89fa37d32068a999d79572ffabc7f539aa3fb
|
2019-11-22 13:40:37
|
Peter van der Zee
|
perf(gatsby): perf problem for match-page search in large sites (#19691)
| false
|
perf problem for match-page search in large sites (#19691)
|
perf
|
diff --git a/packages/gatsby/src/bootstrap/requires-writer.js b/packages/gatsby/src/bootstrap/requires-writer.js
index 039baad602745..01241029d66b4 100644
--- a/packages/gatsby/src/bootstrap/requires-writer.js
+++ b/packages/gatsby/src/bootstrap/requires-writer.js
@@ -80,6 +80,7 @@ const getMatchPaths = pages => {
// More info in https://github.com/gatsbyjs/gatsby/issues/16097
// small speedup: don't bother traversing when no matchPaths found.
if (matchPathPages.length) {
+ const newMatches = []
pages.forEach((page, index) => {
const isInsideMatchPath = !!matchPathPages.find(
pageWithMatchPath =>
@@ -87,7 +88,7 @@ const getMatchPaths = pages => {
)
if (isInsideMatchPath) {
- matchPathPages.push(
+ newMatches.push(
createMatchPathEntry(
{
...page,
@@ -98,6 +99,8 @@ const getMatchPaths = pages => {
)
}
})
+ // Add afterwards because the new matches are not relevant for the existing search
+ matchPathPages.push(...newMatches)
}
return matchPathPages
|
14614a7e394da85cfa2c4bc2a5b7ddebdb056e1d
|
2019-07-22 17:44:21
|
Min ho Kim
|
chore(*): fix typos (#15946)
| false
|
fix typos (#15946)
|
chore
|
diff --git a/docs/blog/2018-11-01-hacktoberfest-wrapup/index.md b/docs/blog/2018-11-01-hacktoberfest-wrapup/index.md
index 4e50ca40fffe8..3198232b55604 100644
--- a/docs/blog/2018-11-01-hacktoberfest-wrapup/index.md
+++ b/docs/blog/2018-11-01-hacktoberfest-wrapup/index.md
@@ -5,7 +5,7 @@ author: "Amberley Romo"
tags: ["hacktoberfest", "open source"]
---
-Just like that, Gatsby Hacktoberfest is over! Or, "Hacktoverfest"? 😂 (Thanks for the pun, [@m-allanson](https://github.com/m-allanson)). We had a great time Hacktoberfesting with y'all and wanted to share a bit of our planning process and lessons learned in review!
+Just like that, Gatsby Hacktoberfest is over! Or, "Hacktoberfest"? 😂 (Thanks for the pun, [@m-allanson](https://github.com/m-allanson)). We had a great time Hacktoberfesting with y'all and wanted to share a bit of our planning process and lessons learned in review!
## Planning for Hacktoberfest
diff --git a/docs/blog/2018-12-17-turning-the-static-dynamic/index.md b/docs/blog/2018-12-17-turning-the-static-dynamic/index.md
index b20b1b0c546bf..bfe27dd33533b 100644
--- a/docs/blog/2018-12-17-turning-the-static-dynamic/index.md
+++ b/docs/blog/2018-12-17-turning-the-static-dynamic/index.md
@@ -374,7 +374,7 @@ export function handler(event, context, callback) {
statusCode: 200,
body: JSON.stringify({
msg:
- "auth-hello - no authentication detected. Note that netlify-lambda doesnt locally emulate Netlify Identity.",
+ "auth-hello - no authentication detected. Note that netlify-lambda doesn't locally emulate Netlify Identity.",
}),
})
}
diff --git a/docs/blog/2019-07-03-using-themes-for-distributed-docs/index.md b/docs/blog/2019-07-03-using-themes-for-distributed-docs/index.md
index 9ba23695a9a77..39e24590ab98a 100644
--- a/docs/blog/2019-07-03-using-themes-for-distributed-docs/index.md
+++ b/docs/blog/2019-07-03-using-themes-for-distributed-docs/index.md
@@ -28,7 +28,7 @@ In this blog post, I’m going to talk about some of our favorite parts about us
## Versioning with `gatsby-source-git`
-We were able to implement versioned docs by taking advantage of the way that theme configuration works. Normally, a website’s `gatsby-config.js` file would export a JavaScript object, but Themes can include a `gastby-config.js` that exports a function that takes options passed to it by the theme **consumer**, and returns a Gatsby configuration object. You can see how we use this pattern in [our theme’s `gatsby-config.js`](https://github.com/apollographql/gatsby-theme-apollo/blob/master/packages/gatsby-theme-apollo-docs/gatsby-config.js).
+We were able to implement versioned docs by taking advantage of the way that theme configuration works. Normally, a website’s `gatsby-config.js` file would export a JavaScript object, but Themes can include a `gatsby-config.js` that exports a function that takes options passed to it by the theme **consumer**, and returns a Gatsby configuration object. You can see how we use this pattern in [our theme’s `gatsby-config.js`](https://github.com/apollographql/gatsby-theme-apollo/blob/master/packages/gatsby-theme-apollo-docs/gatsby-config.js).
The Apollo docs theme accepts a mapping of version numbers to git branches, which it passes along to the `gatsby-source-git` plugin. A theme consumer can specify minimal configuration, and the theme takes care of creating pages and facilitating navigation between versions.
diff --git a/docs/starters.yml b/docs/starters.yml
index c06e4553de4f2..3b2f1bb9827d0 100644
--- a/docs/starters.yml
+++ b/docs/starters.yml
@@ -2501,7 +2501,7 @@
features:
- SEO
- Mailchimp integration
- - Material-UI compoentns
+ - Material-UI components
- Responsive
- Pricing section
- Benefits section
diff --git a/packages/gatsby-transformer-documentationjs/src/gatsby-node.js b/packages/gatsby-transformer-documentationjs/src/gatsby-node.js
index 4ab007320b8e7..df407705b1765 100644
--- a/packages/gatsby-transformer-documentationjs/src/gatsby-node.js
+++ b/packages/gatsby-transformer-documentationjs/src/gatsby-node.js
@@ -307,7 +307,7 @@ exports.onCreateNode = async ({ node, actions, ...helpers }) => {
if (docsJson.loc) {
// loc is instance of SourceLocation class, and Gatsby doesn't support
// class instances at this moment when inferring schema. Serializing
- // and desirializing converts class instance to plain object.
+ // and deserializing converts class instance to plain object.
picked.docsLocation = JSON.parse(JSON.stringify(docsJson.loc))
}
if (docsJson.context && docsJson.context.loc) {
diff --git a/scripts/check-repo-fields.js b/scripts/check-repo-fields.js
index 64a9338713a08..a132835b0d9e3 100644
--- a/scripts/check-repo-fields.js
+++ b/scripts/check-repo-fields.js
@@ -43,7 +43,7 @@ async function main() {
await Promise.all(
packages.map(async pkg => {
- // If this is the main gastby package we don't want to override
+ // If this is the main gatsby package we don't want to override
if (pkg.name === MAIN_PKG_NAME || pkg.private) {
// eslint complains if we don't consistently return the same type
return Promise.resolve()
|
efa7d1a809b2e5eeaad4e417e00a31e728bfd5da
|
2019-03-21 13:37:25
|
stefanprobst
|
feat(gatsby): Add stack trace to error reporting in GraphiQL (#12690)
| false
|
Add stack trace to error reporting in GraphiQL (#12690)
|
feat
|
diff --git a/packages/gatsby/src/commands/develop.js b/packages/gatsby/src/commands/develop.js
index 9b9e5c9b30a36..45e882478e045 100644
--- a/packages/gatsby/src/commands/develop.js
+++ b/packages/gatsby/src/commands/develop.js
@@ -9,6 +9,7 @@ const express = require(`express`)
const graphqlHTTP = require(`express-graphql`)
const graphqlPlayground = require(`graphql-playground-middleware-express`)
.default
+const { formatError } = require(`graphql`)
const request = require(`request`)
const rl = require(`readline`)
const webpack = require(`webpack`)
@@ -104,6 +105,7 @@ async function startServer(program) {
() => {}
)
}
+
app.use(
`/___graphql`,
graphqlHTTP(() => {
@@ -113,6 +115,12 @@ async function startServer(program) {
graphiql:
process.env.GATSBY_GRAPHQL_IDE === `playground` ? false : true,
context: withResolverContext({}, schema),
+ formatError(err) {
+ return {
+ ...formatError(err),
+ stack: err.stack ? err.stack.split(`\n`) : [],
+ }
+ },
}
})
)
|
956e30c1bae30afb129a87e7c09f770807a8b84f
|
2023-12-14 13:37:08
|
renovate[bot]
|
chore(deps): update dependency wait-on to ^7.2.0 (#38724)
| false
|
update dependency wait-on to ^7.2.0 (#38724)
|
chore
|
diff --git a/e2e-tests/path-prefix/package.json b/e2e-tests/path-prefix/package.json
index 8b08c3edd3708..694ff034bfff8 100644
--- a/e2e-tests/path-prefix/package.json
+++ b/e2e-tests/path-prefix/package.json
@@ -48,7 +48,7 @@
"prettier": "^2.8.8",
"start-server-and-test": "^2.0.0",
"typescript": "^5.1.6",
- "wait-on": "^7.0.1"
+ "wait-on": "^7.2.0"
},
"repository": {
"type": "git",
|
31d53bd8c6b0103114b373d969ed15d7ca436920
|
2020-09-29 13:35:51
|
renovate[bot]
|
chore(deps): update dependency @types/semver to ^7.3.4 (#27078)
| false
|
update dependency @types/semver to ^7.3.4 (#27078)
|
chore
|
diff --git a/package.json b/package.json
index ed3d121f9d9d3..f0173e54ff7dc 100644
--- a/package.json
+++ b/package.json
@@ -23,7 +23,7 @@
"@types/node-fetch": "^2.5.5",
"@types/normalize-path": "^3.0.0",
"@types/react": "^16.9.31",
- "@types/semver": "^7.1.0",
+ "@types/semver": "^7.3.4",
"@types/signal-exit": "^3.0.0",
"@types/stack-trace": "^0.0.29",
"@types/webpack": "^4.41.22",
diff --git a/yarn.lock b/yarn.lock
index bfdd621c28d88..539438f2cae33 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -3865,6 +3865,11 @@
dependencies:
"@types/node" "*"
+"@types/semver@^7.3.4":
+ version "7.3.4"
+ resolved "https://registry.yarnpkg.com/@types/semver/-/semver-7.3.4.tgz#43d7168fec6fa0988bb1a513a697b29296721afb"
+ integrity sha512-+nVsLKlcUCeMzD2ufHEYuJ9a2ovstb6Dp52A5VsoKxDXgvE051XgHI/33I1EymwkRGQkwnA0LkhnUzituGs4EQ==
+
"@types/serve-static@*":
version "1.13.3"
resolved "https://registry.yarnpkg.com/@types/serve-static/-/serve-static-1.13.3.tgz#eb7e1c41c4468272557e897e9171ded5e2ded9d1"
|
d04fc64a66a0f4145898344957ed6f6da7ab6b30
|
2021-08-03 16:05:34
|
Ward Peeters
|
chore: add some extra global groups to renovate (#32673)
| false
|
add some extra global groups to renovate (#32673)
|
chore
|
diff --git a/renovate.json5 b/renovate.json5
index 2911359348b9a..765b0c06bf3ef 100644
--- a/renovate.json5
+++ b/renovate.json5
@@ -43,7 +43,8 @@
"packageRules": [
{
"matchDepTypes": [
- "engines"
+ "engines",
+ "@types/node"
],
"enabled": false
},
@@ -150,7 +151,10 @@
"dependencies",
"devDependencies"
],
- "commitMessageTopic": "dependencies for Gatsby monorepo"
+ "commitMessageTopic": "dependencies for Gatsby monorepo",
+ "excludePackagePatterns": [
+ "^@babel"
+ ]
},
{
"groupName": "formatting & linting",
@@ -339,6 +343,88 @@
],
"dependencyDashboardApproval": false
},
+ {
+ "groupName": "cheerio",
+ "matchPaths": [
+ "+(package.json)",
+ "packages/**/package.json"
+ ],
+ "matchPackageNames": [
+ "cheerio"
+ ],
+ "matchUpdateTypes": [
+ "major",
+ "minor",
+ "patch"
+ ],
+ "matchDepTypes": [
+ "dependencies",
+ "devDependencies"
+ ],
+ "dependencyDashboardApproval": false
+ },
+ {
+ "groupName": "semver",
+ "matchPaths": [
+ "+(package.json)",
+ "packages/**/package.json"
+ ],
+ "matchPackageNames": [
+ "semver",
+ "@types/semver"
+ ],
+ "matchUpdateTypes": [
+ "major",
+ "minor",
+ "patch"
+ ],
+ "matchDepTypes": [
+ "dependencies",
+ "devDependencies"
+ ],
+ "dependencyDashboardApproval": false
+ },
+ {
+ "groupName": "core-js",
+ "matchPaths": [
+ "+(package.json)",
+ "packages/**/package.json"
+ ],
+ "matchPackageNames": [
+ "core-js",
+ "core-js-compat"
+ ],
+ "matchUpdateTypes": [
+ "major",
+ "minor",
+ "patch"
+ ],
+ "matchDepTypes": [
+ "dependencies",
+ "devDependencies"
+ ],
+ "dependencyDashboardApproval": false
+ },
+ {
+ "groupName": "chokidar",
+ "matchPaths": [
+ "+(package.json)",
+ "packages/**/package.json"
+ ],
+ "matchPackageNames": [
+ "chokidar"
+ ],
+ "matchUpdateTypes": [
+ "major",
+ "minor",
+ "patch"
+ ],
+ "matchDepTypes": [
+ "dependencies",
+ "devDependencies"
+ ],
+ "dependencyDashboardApproval": false
+ },
{
"matchPaths": [
"packages/babel-plugin-remove-graphql-queries/package.json"
@@ -364,7 +450,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -399,7 +491,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -433,7 +531,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -466,7 +570,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -501,7 +611,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -536,7 +652,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -572,7 +694,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -607,7 +735,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -641,7 +775,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -674,7 +814,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -709,7 +855,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -744,7 +896,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -780,7 +938,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -815,7 +979,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -849,7 +1019,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -882,7 +1058,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -919,7 +1101,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -956,7 +1144,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -992,7 +1186,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -1027,7 +1227,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -1061,7 +1267,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -1094,7 +1306,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -1129,7 +1347,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -1164,7 +1388,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -1200,7 +1430,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -1235,7 +1471,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -1269,7 +1511,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -1302,7 +1550,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -1337,7 +1591,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -1372,7 +1632,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -1408,7 +1674,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -1443,7 +1715,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -1477,7 +1755,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -1510,7 +1794,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -1549,7 +1839,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -1588,7 +1884,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -1624,7 +1926,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -1659,7 +1967,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -1693,7 +2007,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -1726,7 +2046,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -1764,7 +2090,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -1802,7 +2134,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -1838,7 +2176,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -1873,7 +2217,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -1907,7 +2257,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -1940,7 +2296,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -1977,7 +2339,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -2014,7 +2382,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -2050,7 +2424,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -2085,7 +2465,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -2119,7 +2505,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -2152,7 +2544,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -2187,7 +2585,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -2222,7 +2626,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -2258,7 +2668,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -2293,7 +2709,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -2327,7 +2749,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -2360,7 +2788,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -2397,7 +2831,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -2434,7 +2874,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -2470,7 +2916,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -2505,7 +2957,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -2539,7 +2997,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -2572,7 +3036,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -2607,7 +3077,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -2642,7 +3118,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -2678,7 +3160,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -2713,7 +3201,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -2747,7 +3241,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -2780,7 +3280,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -2815,7 +3321,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -2850,7 +3362,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -2886,7 +3404,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -2921,7 +3445,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -2955,7 +3485,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -2988,7 +3524,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -3023,7 +3565,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -3058,7 +3606,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -3094,7 +3648,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -3129,7 +3689,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -3163,7 +3729,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -3196,7 +3768,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -3231,7 +3809,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -3266,7 +3850,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -3302,7 +3892,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -3337,7 +3933,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -3371,7 +3973,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -3404,7 +4012,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -3439,7 +4053,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -3474,7 +4094,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -3510,7 +4136,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -3545,7 +4177,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -3579,7 +4217,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -3612,7 +4256,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -3647,7 +4297,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -3682,7 +4338,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -3718,7 +4380,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -3753,7 +4421,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -3787,7 +4461,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -3820,7 +4500,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -3855,7 +4541,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -3890,7 +4582,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -3926,7 +4624,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -3961,7 +4665,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -3995,7 +4705,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -4028,7 +4744,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -4063,7 +4785,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -4098,7 +4826,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -4134,7 +4868,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -4169,7 +4909,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -4203,7 +4949,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -4236,7 +4988,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -4271,7 +5029,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -4306,7 +5070,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -4342,7 +5112,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -4377,7 +5153,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -4411,7 +5193,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -4444,7 +5232,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -4481,7 +5275,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -4518,7 +5318,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -4554,7 +5360,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -4589,7 +5401,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -4623,7 +5441,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -4656,7 +5480,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -4691,7 +5521,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -4726,7 +5562,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -4762,7 +5604,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -4797,7 +5645,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -4831,7 +5685,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -4864,7 +5724,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -4899,7 +5765,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -4934,7 +5806,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -4970,7 +5848,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -5005,7 +5889,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -5039,7 +5929,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -5072,7 +5968,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -5107,7 +6009,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -5142,7 +6050,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -5178,7 +6092,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -5213,7 +6133,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -5247,7 +6173,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -5280,7 +6212,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -5315,7 +6253,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -5350,7 +6294,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -5386,7 +6336,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -5421,7 +6377,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -5455,7 +6417,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -5488,7 +6456,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -5523,7 +6497,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -5558,7 +6538,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -5594,7 +6580,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -5629,7 +6621,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -5663,7 +6661,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -5696,7 +6700,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -5731,7 +6741,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -5766,7 +6782,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -5802,7 +6824,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -5837,7 +6865,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -5871,7 +6905,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -5904,7 +6944,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -5939,7 +6985,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -5974,7 +7026,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -6010,7 +7068,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -6045,7 +7109,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -6079,7 +7149,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -6112,7 +7188,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -6149,7 +7231,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -6186,7 +7274,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -6222,7 +7316,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -6257,7 +7357,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -6291,7 +7397,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -6324,7 +7436,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -6359,7 +7477,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -6394,7 +7518,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -6430,7 +7560,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -6465,7 +7601,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -6499,7 +7641,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -6532,7 +7680,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -6567,7 +7721,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -6602,7 +7762,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -6638,7 +7804,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -6673,7 +7845,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -6707,7 +7885,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -6740,7 +7924,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -6775,7 +7965,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -6810,7 +8006,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -6846,7 +8048,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -6881,7 +8089,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -6915,7 +8129,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -6948,7 +8168,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -6983,7 +8209,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -7018,7 +8250,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -7054,7 +8292,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -7089,7 +8333,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -7123,7 +8373,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -7156,7 +8412,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -7191,7 +8453,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -7226,7 +8494,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -7262,7 +8536,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -7297,7 +8577,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -7331,7 +8617,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -7364,7 +8656,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -7399,7 +8697,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -7434,7 +8738,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -7470,7 +8780,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -7505,7 +8821,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -7539,7 +8861,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -7572,7 +8900,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -7607,7 +8941,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -7642,7 +8982,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -7678,7 +9024,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -7713,7 +9065,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -7747,7 +9105,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -7780,7 +9144,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -7815,7 +9185,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -7850,7 +9226,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -7886,7 +9268,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -7921,7 +9309,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -7955,7 +9349,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -7988,7 +9388,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -8023,7 +9429,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -8058,7 +9470,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -8094,7 +9512,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -8129,7 +9553,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -8163,7 +9593,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -8196,7 +9632,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -8233,7 +9675,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -8270,7 +9718,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -8306,7 +9760,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -8341,7 +9801,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -8375,7 +9841,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -8408,7 +9880,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -8445,7 +9923,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -8482,7 +9966,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -8518,7 +10008,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -8553,7 +10049,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -8587,7 +10089,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -8620,7 +10128,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -8658,7 +10172,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -8696,7 +10216,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -8732,7 +10258,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -8767,7 +10299,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -8801,7 +10339,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -8834,7 +10378,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -8869,7 +10419,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -8904,7 +10460,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -8940,7 +10502,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -8975,7 +10543,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -9009,7 +10583,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -9042,7 +10622,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -9079,7 +10665,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -9116,7 +10708,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -9152,7 +10750,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -9187,7 +10791,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -9221,7 +10831,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -9254,7 +10870,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -9289,7 +10911,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -9324,7 +10952,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -9360,7 +10994,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -9395,7 +11035,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -9429,7 +11075,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -9462,7 +11114,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -9499,7 +11157,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -9536,7 +11200,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -9572,7 +11242,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -9607,7 +11283,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -9641,7 +11323,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -9674,7 +11362,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -9709,7 +11403,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -9744,7 +11444,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -9780,7 +11486,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -9815,7 +11527,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -9849,7 +11567,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -9882,7 +11606,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -9917,7 +11647,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -9952,7 +11688,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -9988,7 +11730,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -10023,7 +11771,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -10057,7 +11811,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -10090,7 +11850,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -10125,7 +11891,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -10160,7 +11932,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -10196,7 +11974,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -10231,7 +12015,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -10265,7 +12055,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -10298,7 +12094,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -10335,7 +12137,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -10372,7 +12180,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -10408,7 +12222,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -10443,7 +12263,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -10477,7 +12303,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -10510,7 +12342,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -10545,7 +12383,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -10580,7 +12424,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -10616,7 +12466,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -10651,7 +12507,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -10685,7 +12547,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -10718,7 +12586,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -10753,7 +12627,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -10788,7 +12668,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -10824,7 +12710,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -10859,7 +12751,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -10893,7 +12791,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -10926,7 +12830,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -10961,7 +12871,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -10996,7 +12912,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -11032,7 +12954,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -11067,7 +12995,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -11101,7 +13035,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -11134,7 +13074,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -11169,7 +13115,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -11204,7 +13156,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -11240,7 +13198,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -11275,7 +13239,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -11309,7 +13279,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -11342,7 +13318,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -11377,7 +13359,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -11412,7 +13400,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -11448,7 +13442,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -11483,7 +13483,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -11517,7 +13523,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -11550,7 +13562,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -11585,7 +13603,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -11620,7 +13644,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -11656,7 +13686,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -11691,7 +13727,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -11725,7 +13767,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -11758,7 +13806,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -11795,7 +13849,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -11832,7 +13892,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -11868,7 +13934,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -11903,7 +13975,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -11937,7 +14015,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -11970,7 +14054,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -12005,7 +14095,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -12040,7 +14136,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -12076,7 +14178,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -12111,7 +14219,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -12145,7 +14259,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -12178,7 +14298,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -12213,7 +14339,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -12248,7 +14380,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -12284,7 +14422,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -12319,7 +14463,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -12353,7 +14503,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -12386,7 +14542,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -12421,7 +14583,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -12456,7 +14624,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -12492,7 +14666,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -12527,7 +14707,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -12561,7 +14747,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -12594,7 +14786,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -12629,7 +14827,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -12664,7 +14868,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -12700,7 +14910,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -12735,7 +14951,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -12769,7 +14991,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -12802,7 +15030,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -12839,7 +15073,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -12876,7 +15116,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -12912,7 +15158,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -12947,7 +15199,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -12981,7 +15239,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -13014,7 +15278,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -13049,7 +15319,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -13084,7 +15360,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -13120,7 +15402,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -13155,7 +15443,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -13189,7 +15483,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -13222,7 +15522,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -13257,7 +15563,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -13292,7 +15604,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -13328,7 +15646,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -13363,7 +15687,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -13397,7 +15727,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -13430,7 +15766,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -13465,7 +15807,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -13500,7 +15848,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -13536,7 +15890,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -13571,7 +15931,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -13605,7 +15971,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -13638,7 +16010,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -13673,7 +16051,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -13708,7 +16092,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -13744,7 +16134,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -13779,7 +16175,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -13813,7 +16215,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -13846,7 +16254,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -13881,7 +16295,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -13916,7 +16336,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -13952,7 +16378,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -13987,7 +16419,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -14021,7 +16459,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -14054,7 +16498,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -14089,7 +16539,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -14124,7 +16580,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -14160,7 +16622,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -14195,7 +16663,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -14229,7 +16703,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -14262,7 +16742,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -14303,7 +16789,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -14344,7 +16836,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -14380,7 +16878,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -14415,7 +16919,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -14449,7 +16959,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -14482,7 +16998,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -14517,7 +17039,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -14552,7 +17080,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -14588,7 +17122,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -14623,7 +17163,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -14657,7 +17203,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -14690,7 +17242,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -14725,7 +17283,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -14760,7 +17324,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -14796,7 +17366,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -14831,7 +17407,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -14865,7 +17447,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -14898,7 +17486,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -14933,7 +17527,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -14968,7 +17568,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -15004,7 +17610,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -15039,7 +17651,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -15073,7 +17691,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -15106,7 +17730,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -15141,7 +17771,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -15176,7 +17812,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -15212,7 +17854,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -15247,7 +17895,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -15281,7 +17935,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -15314,7 +17974,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -15349,7 +18015,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -15384,7 +18056,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -15420,7 +18098,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -15455,7 +18139,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -15489,7 +18179,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -15522,7 +18218,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -15557,7 +18259,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -15592,7 +18300,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -15628,7 +18342,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -15663,7 +18383,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -15697,7 +18423,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -15730,7 +18462,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -15768,7 +18506,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -15806,7 +18550,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -15842,7 +18592,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -15877,7 +18633,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -15911,7 +18673,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -15944,7 +18712,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -15979,7 +18753,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -16014,7 +18794,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -16050,7 +18836,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -16085,7 +18877,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -16119,7 +18917,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -16152,7 +18956,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -16187,7 +18997,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -16222,7 +19038,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -16258,7 +19080,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -16293,7 +19121,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -16327,7 +19161,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -16360,7 +19200,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -16395,7 +19241,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -16430,7 +19282,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -16466,7 +19324,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -16501,7 +19365,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -16535,7 +19405,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -16568,7 +19444,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -16603,7 +19485,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -16638,7 +19526,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -16674,7 +19568,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -16709,7 +19609,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -16743,7 +19649,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -16776,7 +19688,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -16811,7 +19729,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -16846,7 +19770,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -16882,7 +19812,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -16917,7 +19853,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -16951,7 +19893,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -16984,7 +19932,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -17021,7 +19975,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -17058,7 +20018,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -17094,7 +20060,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -17129,7 +20101,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -17163,7 +20141,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -17196,7 +20180,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -17231,7 +20221,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -17266,7 +20262,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -17302,7 +20304,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -17337,7 +20345,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -17371,7 +20385,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -17404,7 +20424,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -17439,7 +20465,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -17474,7 +20506,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -17510,7 +20548,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -17545,7 +20589,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -17579,7 +20629,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -17612,7 +20668,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -17647,7 +20709,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -17682,7 +20750,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -17718,7 +20792,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -17753,7 +20833,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -17787,7 +20873,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -17820,7 +20912,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -17855,7 +20953,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -17890,7 +20994,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -17926,7 +21036,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -17961,7 +21077,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -17995,7 +21117,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -18028,7 +21156,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -18065,7 +21199,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -18102,7 +21242,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -18138,7 +21284,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -18173,7 +21325,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -18207,7 +21365,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -18240,7 +21404,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -18277,7 +21447,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -18314,7 +21490,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -18350,7 +21532,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -18385,7 +21573,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -18419,7 +21613,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -18452,7 +21652,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -18489,7 +21695,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -18526,7 +21738,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -18562,7 +21780,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -18597,7 +21821,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -18631,7 +21861,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -18664,7 +21900,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -18699,7 +21941,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -18734,7 +21982,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -18770,7 +22024,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -18805,7 +22065,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -18839,7 +22105,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -18872,7 +22144,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -18907,7 +22185,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -18942,7 +22226,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -18978,7 +22268,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -19013,7 +22309,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -19047,7 +22349,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -19080,7 +22388,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -19118,7 +22432,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -19156,7 +22476,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -19192,7 +22518,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -19227,7 +22559,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -19261,7 +22599,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -19294,7 +22638,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -19329,7 +22679,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -19364,7 +22720,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -19400,7 +22762,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -19435,7 +22803,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -19469,7 +22843,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -19502,7 +22882,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -19541,7 +22927,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -19580,7 +22972,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -19616,7 +23014,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -19651,7 +23055,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -19685,7 +23095,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -19718,7 +23134,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -19755,7 +23177,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -19792,7 +23220,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -19828,7 +23262,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -19863,7 +23303,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -19897,7 +23343,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -19930,7 +23382,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -19965,7 +23423,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -20000,7 +23464,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -20036,7 +23506,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -20071,7 +23547,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -20105,7 +23587,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -20138,7 +23626,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -20173,7 +23667,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -20208,7 +23708,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -20244,7 +23750,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -20279,7 +23791,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -20313,7 +23831,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -20346,7 +23870,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -20381,7 +23911,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -20416,7 +23952,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -20452,7 +23994,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -20487,7 +24035,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -20521,7 +24075,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -20554,7 +24114,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -20591,7 +24157,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -20628,7 +24200,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -20664,7 +24242,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -20699,7 +24283,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -20733,7 +24323,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -20766,7 +24362,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -20801,7 +24403,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -20836,7 +24444,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -20872,7 +24486,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -20907,7 +24527,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -20941,7 +24567,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -20974,7 +24606,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -21009,7 +24647,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -21044,7 +24688,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -21080,7 +24730,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -21115,7 +24771,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -21149,7 +24811,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -21182,7 +24850,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -21217,7 +24891,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -21252,7 +24932,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -21288,7 +24974,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -21323,7 +25015,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -21357,7 +25055,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -21390,7 +25094,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -21425,7 +25135,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -21460,7 +25176,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -21496,7 +25218,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -21531,7 +25259,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -21565,7 +25299,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -21598,7 +25338,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -21633,7 +25379,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -21668,7 +25420,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -21704,7 +25462,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -21739,7 +25503,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -21773,7 +25543,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -21806,7 +25582,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -21843,7 +25625,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -21880,7 +25668,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -21916,7 +25710,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -21951,7 +25751,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -21985,7 +25791,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -22018,7 +25830,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -22053,7 +25871,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -22088,7 +25912,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -22124,7 +25954,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -22159,7 +25995,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -22193,7 +26035,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -22226,7 +26074,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -22263,7 +26117,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -22300,7 +26160,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -22336,7 +26202,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -22371,7 +26243,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -22405,7 +26283,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -22438,7 +26322,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -22475,7 +26365,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -22512,7 +26408,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -22548,7 +26450,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -22583,7 +26491,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -22617,7 +26531,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -22650,7 +26570,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -22687,7 +26613,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -22724,7 +26656,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -22760,7 +26698,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -22795,7 +26739,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -22829,7 +26779,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -22862,7 +26818,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -22897,7 +26859,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -22932,7 +26900,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -22968,7 +26942,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -23003,7 +26983,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -23037,7 +27023,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -23070,7 +27062,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -23105,7 +27103,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -23140,7 +27144,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -23176,7 +27186,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -23211,7 +27227,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -23245,7 +27267,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -23278,7 +27306,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -23313,7 +27347,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -23348,7 +27388,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -23384,7 +27430,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -23419,7 +27471,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -23453,7 +27511,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -23486,7 +27550,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -23521,7 +27591,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -23556,7 +27632,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -23592,7 +27674,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -23627,7 +27715,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -23661,7 +27755,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -23694,7 +27794,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -23745,7 +27851,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
@@ -23796,7 +27908,13 @@
"typescript",
"chalk",
"fs-extra",
- "@types/fs-extra"
+ "@types/fs-extra",
+ "cheerio",
+ "semver",
+ "@types/semver",
+ "core-js",
+ "core-js-compat",
+ "chokidar"
],
"excludePackagePatterns": [
"^@babel",
diff --git a/scripts/renovate-config-generator.js b/scripts/renovate-config-generator.js
index 9a3cb6236b233..b841822ba98f1 100644
--- a/scripts/renovate-config-generator.js
+++ b/scripts/renovate-config-generator.js
@@ -25,6 +25,7 @@ const globalPackageRules = [
matchUpdateTypes: [`major`, `minor`, `patch`],
matchDepTypes: [`dependencies`, `devDependencies`],
commitMessageTopic: `dependencies for Gatsby monorepo`,
+ excludePackagePatterns: [`^@babel`],
},
// group eslint & prettier
@@ -103,6 +104,38 @@ const globalPackageRules = [
matchDepTypes: [`dependencies`, `devDependencies`],
dependencyDashboardApproval: false,
},
+ {
+ groupName: `cheerio`,
+ matchPaths: [`+(package.json)`, `packages/**/package.json`],
+ matchPackageNames: [`cheerio`],
+ matchUpdateTypes: [`major`, `minor`, `patch`],
+ matchDepTypes: [`dependencies`, `devDependencies`],
+ dependencyDashboardApproval: false,
+ },
+ {
+ groupName: `semver`,
+ matchPaths: [`+(package.json)`, `packages/**/package.json`],
+ matchPackageNames: [`semver`, `@types/semver`],
+ matchUpdateTypes: [`major`, `minor`, `patch`],
+ matchDepTypes: [`dependencies`, `devDependencies`],
+ dependencyDashboardApproval: false,
+ },
+ {
+ groupName: `core-js`,
+ matchPaths: [`+(package.json)`, `packages/**/package.json`],
+ matchPackageNames: [`core-js`, `core-js-compat`],
+ matchUpdateTypes: [`major`, `minor`, `patch`],
+ matchDepTypes: [`dependencies`, `devDependencies`],
+ dependencyDashboardApproval: false,
+ },
+ {
+ groupName: `chokidar`,
+ matchPaths: [`+(package.json)`, `packages/**/package.json`],
+ matchPackageNames: [`chokidar`],
+ matchUpdateTypes: [`major`, `minor`, `patch`],
+ matchDepTypes: [`dependencies`, `devDependencies`],
+ dependencyDashboardApproval: false,
+ },
]
// there is no excludeMatchSourceUrlPrefixes option so we force babel to be disabled
@@ -119,9 +152,9 @@ globalPackageRules.forEach(group => {
// our default rules
const defaultPackageRules = [
- // disable engine upgrades
+ // disable engine upgrades & types/node
{
- matchDepTypes: [`engines`],
+ matchDepTypes: [`engines`, `@types/node`],
enabled: false,
},
// host-error on renovate :shrug:
|
1c634ad0ca6dd60d9a92da0da71e8e96776349d9
|
2023-04-03 16:55:53
|
renovate[bot]
|
chore(deps): update dependency yargs to ^17.7.1 (#37845)
| false
|
update dependency yargs to ^17.7.1 (#37845)
|
chore
|
diff --git a/e2e-tests/development-runtime/package.json b/e2e-tests/development-runtime/package.json
index 85fff0cd4ccc0..7edb66ee54616 100644
--- a/e2e-tests/development-runtime/package.json
+++ b/e2e-tests/development-runtime/package.json
@@ -73,7 +73,7 @@
"prettier": "^2.8.7",
"start-server-and-test": "^1.15.3",
"typescript": "^4.9.4",
- "yargs": "^17.6.2"
+ "yargs": "^17.7.1"
},
"repository": {
"type": "git",
|
1ea9358e1943f494608bf4523e3fda2f461560a0
|
2022-05-27 22:46:19
|
Daniel Lew
|
chore(gatsby-plugin-gatsby-cloud): add note about auto installation (#35766)
| false
|
add note about auto installation (#35766)
|
chore
|
diff --git a/packages/gatsby-plugin-gatsby-cloud/README.md b/packages/gatsby-plugin-gatsby-cloud/README.md
index ff0c0ac15b8ff..779570b743a32 100644
--- a/packages/gatsby-plugin-gatsby-cloud/README.md
+++ b/packages/gatsby-plugin-gatsby-cloud/README.md
@@ -5,6 +5,8 @@ Headers and Redirects on Gatsby Cloud.
By default, the plugin will add some basic security headers. You can easily add or replace headers through the plugin config.
+NOTE: This plugin is autoinstalled on Gatsby Cloud to ensure the latest compatible version, there is no need to install it locally unless you wish to add plugin config.
+
## Install
`npm install --save gatsby-plugin-gatsby-cloud`
|
0f53567b9a21f3c4284ff59e8c7316d9a4b1e0ea
|
2020-05-13 13:26:54
|
Mikhail Novikov
|
chore(release): Publish
| false
|
Publish
|
chore
|
diff --git a/packages/babel-preset-gatsby/CHANGELOG.md b/packages/babel-preset-gatsby/CHANGELOG.md
index 5ac7ce16a6f71..ee8cd48f225c7 100644
--- a/packages/babel-preset-gatsby/CHANGELOG.md
+++ b/packages/babel-preset-gatsby/CHANGELOG.md
@@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [0.4.2](https://github.com/gatsbyjs/gatsby/compare/[email protected]@0.4.2) (2020-05-13)
+
+**Note:** Version bump only for package babel-preset-gatsby
+
## [0.4.1](https://github.com/gatsbyjs/gatsby/compare/[email protected]@0.4.1) (2020-05-05)
### Bug Fixes
diff --git a/packages/babel-preset-gatsby/package.json b/packages/babel-preset-gatsby/package.json
index 6e81fbc4ec890..9f624f8866c1d 100644
--- a/packages/babel-preset-gatsby/package.json
+++ b/packages/babel-preset-gatsby/package.json
@@ -1,6 +1,6 @@
{
"name": "babel-preset-gatsby",
- "version": "0.4.1",
+ "version": "0.4.2",
"author": "Philipp Spiess <[email protected]>",
"repository": {
"type": "git",
@@ -21,7 +21,7 @@
"babel-plugin-dynamic-import-node": "^2.3.3",
"babel-plugin-macros": "^2.8.0",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
- "gatsby-core-utils": "^1.2.1"
+ "gatsby-core-utils": "^1.2.2"
},
"peerDependencies": {
"@babel/core": "^7.0.0"
diff --git a/packages/gatsby-admin/CHANGELOG.md b/packages/gatsby-admin/CHANGELOG.md
index 8c203c39e77a3..69c57b6240dc3 100644
--- a/packages/gatsby-admin/CHANGELOG.md
+++ b/packages/gatsby-admin/CHANGELOG.md
@@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [0.1.25](https://github.com/gatsbyjs/gatsby/compare/[email protected]@0.1.25) (2020-05-13)
+
+**Note:** Version bump only for package gatsby-admin
+
## [0.1.24](https://github.com/gatsbyjs/gatsby/compare/[email protected]@0.1.24) (2020-05-12)
**Note:** Version bump only for package gatsby-admin
diff --git a/packages/gatsby-admin/package.json b/packages/gatsby-admin/package.json
index 5dfe2d36279ff..f84accb6b6883 100644
--- a/packages/gatsby-admin/package.json
+++ b/packages/gatsby-admin/package.json
@@ -1,6 +1,6 @@
{
"name": "gatsby-admin",
- "version": "0.1.24",
+ "version": "0.1.25",
"main": "index.js",
"author": "Max Stoiber",
"license": "MIT",
@@ -8,7 +8,7 @@
"dependencies": {
"@typescript-eslint/eslint-plugin": "^2.28.0",
"@typescript-eslint/parser": "^2.28.0",
- "gatsby": "^2.21.24",
+ "gatsby": "^2.21.25",
"gatsby-plugin-typescript": "^2.4.2",
"gatsby-source-graphql": "^2.5.1",
"react": "^16.12.0",
diff --git a/packages/gatsby-cli/CHANGELOG.md b/packages/gatsby-cli/CHANGELOG.md
index e262eb461dd6c..c4cc23d0a912e 100644
--- a/packages/gatsby-cli/CHANGELOG.md
+++ b/packages/gatsby-cli/CHANGELOG.md
@@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [2.12.18](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.12.18) (2020-05-13)
+
+**Note:** Version bump only for package gatsby-cli
+
## [2.12.17](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.12.17) (2020-05-12)
### Features
diff --git a/packages/gatsby-cli/package.json b/packages/gatsby-cli/package.json
index 2110a640adcb7..a9fd0da5085ea 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": "2.12.17",
+ "version": "2.12.18",
"author": "Kyle Mathews <[email protected]>",
"bin": {
"gatsby": "lib/index.js"
@@ -25,9 +25,9 @@
"execa": "^3.4.0",
"fs-exists-cached": "^1.0.0",
"fs-extra": "^8.1.0",
- "gatsby-core-utils": "^1.2.1",
- "gatsby-recipes": "^0.1.15",
- "gatsby-telemetry": "^1.3.3",
+ "gatsby-core-utils": "^1.2.2",
+ "gatsby-recipes": "^0.1.16",
+ "gatsby-telemetry": "^1.3.4",
"hosted-git-info": "^3.0.4",
"is-valid-path": "^0.1.1",
"lodash": "^4.17.15",
diff --git a/packages/gatsby-core-utils/CHANGELOG.md b/packages/gatsby-core-utils/CHANGELOG.md
index 4628d6f7a485f..577bf22809afc 100644
--- a/packages/gatsby-core-utils/CHANGELOG.md
+++ b/packages/gatsby-core-utils/CHANGELOG.md
@@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [1.2.2](https://github.com/gatsbyjs/gatsby/compare/[email protected]@1.2.2) (2020-05-13)
+
+**Note:** Version bump only for package gatsby-core-utils
+
## [1.2.1](https://github.com/gatsbyjs/gatsby/compare/[email protected]@1.2.1) (2020-05-05)
**Note:** Version bump only for package gatsby-core-utils
diff --git a/packages/gatsby-core-utils/package.json b/packages/gatsby-core-utils/package.json
index b5f2bea614b11..d77f5d7f442d3 100644
--- a/packages/gatsby-core-utils/package.json
+++ b/packages/gatsby-core-utils/package.json
@@ -1,6 +1,6 @@
{
"name": "gatsby-core-utils",
- "version": "1.2.1",
+ "version": "1.2.2",
"description": "A collection of gatsby utils used in different gatsby packages",
"keywords": [
"gatsby",
diff --git a/packages/gatsby-page-utils/CHANGELOG.md b/packages/gatsby-page-utils/CHANGELOG.md
index 33d6a6beade6d..30a80b1a995c7 100644
--- a/packages/gatsby-page-utils/CHANGELOG.md
+++ b/packages/gatsby-page-utils/CHANGELOG.md
@@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [0.2.2](https://github.com/gatsbyjs/gatsby/compare/[email protected]@0.2.2) (2020-05-13)
+
+**Note:** Version bump only for package gatsby-page-utils
+
## [0.2.1](https://github.com/gatsbyjs/gatsby/compare/[email protected]@0.2.1) (2020-05-05)
**Note:** Version bump only for package gatsby-page-utils
diff --git a/packages/gatsby-page-utils/package.json b/packages/gatsby-page-utils/package.json
index b84a923db5e72..06d808466a6cf 100644
--- a/packages/gatsby-page-utils/package.json
+++ b/packages/gatsby-page-utils/package.json
@@ -1,6 +1,6 @@
{
"name": "gatsby-page-utils",
- "version": "0.2.1",
+ "version": "0.2.2",
"description": "Gatsby library that helps creating pages",
"main": "dist/index.js",
"scripts": {
@@ -24,7 +24,7 @@
"bluebird": "^3.7.2",
"chokidar": "3.4.0",
"fs-exists-cached": "^1.0.0",
- "gatsby-core-utils": "^1.2.1",
+ "gatsby-core-utils": "^1.2.2",
"glob": "^7.1.6",
"lodash": "^4.17.15",
"micromatch": "^3.1.10"
diff --git a/packages/gatsby-plugin-manifest/CHANGELOG.md b/packages/gatsby-plugin-manifest/CHANGELOG.md
index 488d82756ad37..3c9338f66b702 100644
--- a/packages/gatsby-plugin-manifest/CHANGELOG.md
+++ b/packages/gatsby-plugin-manifest/CHANGELOG.md
@@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [2.4.3](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.4.3) (2020-05-13)
+
+**Note:** Version bump only for package gatsby-plugin-manifest
+
## [2.4.2](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.4.2) (2020-05-05)
**Note:** Version bump only for package gatsby-plugin-manifest
diff --git a/packages/gatsby-plugin-manifest/package.json b/packages/gatsby-plugin-manifest/package.json
index d186131bdf57b..85e072dfe5391 100644
--- a/packages/gatsby-plugin-manifest/package.json
+++ b/packages/gatsby-plugin-manifest/package.json
@@ -1,14 +1,14 @@
{
"name": "gatsby-plugin-manifest",
"description": "Gatsby plugin which adds a manifest.webmanifest to make sites progressive web apps",
- "version": "2.4.2",
+ "version": "2.4.3",
"author": "Kyle Mathews <[email protected]>",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
},
"dependencies": {
"@babel/runtime": "^7.9.6",
- "gatsby-core-utils": "^1.2.1",
+ "gatsby-core-utils": "^1.2.2",
"semver": "^5.7.1",
"sharp": "^0.25.1"
},
diff --git a/packages/gatsby-plugin-mdx/CHANGELOG.md b/packages/gatsby-plugin-mdx/CHANGELOG.md
index 68e3a433370bb..5ba5ce7332e8b 100644
--- a/packages/gatsby-plugin-mdx/CHANGELOG.md
+++ b/packages/gatsby-plugin-mdx/CHANGELOG.md
@@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [1.2.7](https://github.com/gatsbyjs/gatsby/compare/[email protected]@1.2.7) (2020-05-13)
+
+**Note:** Version bump only for package gatsby-plugin-mdx
+
## [1.2.6](https://github.com/gatsbyjs/gatsby/compare/[email protected]@1.2.6) (2020-05-05)
**Note:** Version bump only for package gatsby-plugin-mdx
diff --git a/packages/gatsby-plugin-mdx/package.json b/packages/gatsby-plugin-mdx/package.json
index a5f8539f4b506..8a75d3d97fa80 100644
--- a/packages/gatsby-plugin-mdx/package.json
+++ b/packages/gatsby-plugin-mdx/package.json
@@ -1,6 +1,6 @@
{
"name": "gatsby-plugin-mdx",
- "version": "1.2.6",
+ "version": "1.2.7",
"description": "MDX integration for Gatsby",
"main": "index.js",
"license": "MIT",
@@ -33,7 +33,7 @@
"escape-string-regexp": "^1.0.5",
"eval": "^0.1.4",
"fs-extra": "^8.1.0",
- "gatsby-core-utils": "^1.2.1",
+ "gatsby-core-utils": "^1.2.2",
"gray-matter": "^4.0.2",
"json5": "^2.1.3",
"loader-utils": "^1.4.0",
diff --git a/packages/gatsby-plugin-netlify-cms/CHANGELOG.md b/packages/gatsby-plugin-netlify-cms/CHANGELOG.md
index 3e1f8f126d2f9..cb2fa8d494583 100644
--- a/packages/gatsby-plugin-netlify-cms/CHANGELOG.md
+++ b/packages/gatsby-plugin-netlify-cms/CHANGELOG.md
@@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [4.3.2](https://github.com/gatsbyjs/gatsby/compare/[email protected]@4.3.2) (2020-05-13)
+
+**Note:** Version bump only for package gatsby-plugin-netlify-cms
+
## [4.3.1](https://github.com/gatsbyjs/gatsby/compare/[email protected]@4.3.1) (2020-05-05)
**Note:** Version bump only for package gatsby-plugin-netlify-cms
diff --git a/packages/gatsby-plugin-netlify-cms/package.json b/packages/gatsby-plugin-netlify-cms/package.json
index 0aa100860c651..6017311fed36b 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": "4.3.1",
+ "version": "4.3.2",
"author": "Shawn Erquhart <[email protected]>",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
diff --git a/packages/gatsby-plugin-offline/CHANGELOG.md b/packages/gatsby-plugin-offline/CHANGELOG.md
index 48d69c71f12c6..581796b3ed523 100644
--- a/packages/gatsby-plugin-offline/CHANGELOG.md
+++ b/packages/gatsby-plugin-offline/CHANGELOG.md
@@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [3.2.2](https://github.com/gatsbyjs/gatsby/compare/[email protected]@3.2.2) (2020-05-13)
+
+**Note:** Version bump only for package gatsby-plugin-offline
+
## [3.2.1](https://github.com/gatsbyjs/gatsby/compare/[email protected]@3.2.1) (2020-05-05)
**Note:** Version bump only for package gatsby-plugin-offline
diff --git a/packages/gatsby-plugin-offline/package.json b/packages/gatsby-plugin-offline/package.json
index 440d8ac1435c4..e6d84b6b03388 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": "3.2.1",
+ "version": "3.2.2",
"author": "Kyle Mathews <[email protected]>",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -9,7 +9,7 @@
"dependencies": {
"@babel/runtime": "^7.9.6",
"cheerio": "^1.0.0-rc.3",
- "gatsby-core-utils": "^1.2.1",
+ "gatsby-core-utils": "^1.2.2",
"glob": "^7.1.6",
"idb-keyval": "^3.2.0",
"lodash": "^4.17.15",
diff --git a/packages/gatsby-plugin-page-creator/CHANGELOG.md b/packages/gatsby-plugin-page-creator/CHANGELOG.md
index 204d1b386f963..a5f04a7cf11cb 100644
--- a/packages/gatsby-plugin-page-creator/CHANGELOG.md
+++ b/packages/gatsby-plugin-page-creator/CHANGELOG.md
@@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [2.3.2](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.3.2) (2020-05-13)
+
+**Note:** Version bump only for package gatsby-plugin-page-creator
+
## [2.3.1](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.3.1) (2020-05-05)
**Note:** Version bump only for package gatsby-plugin-page-creator
diff --git a/packages/gatsby-plugin-page-creator/package.json b/packages/gatsby-plugin-page-creator/package.json
index 8d84282c98928..8904820f136f6 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": "2.3.1",
+ "version": "2.3.2",
"description": "Gatsby plugin that automatically creates pages from React components in specified directories",
"main": "index.js",
"scripts": {
@@ -27,7 +27,7 @@
"@babel/runtime": "^7.9.6",
"bluebird": "^3.7.2",
"fs-exists-cached": "^1.0.0",
- "gatsby-page-utils": "^0.2.1",
+ "gatsby-page-utils": "^0.2.2",
"glob": "^7.1.6",
"lodash": "^4.17.15",
"micromatch": "^3.1.10"
diff --git a/packages/gatsby-plugin-preload-fonts/CHANGELOG.md b/packages/gatsby-plugin-preload-fonts/CHANGELOG.md
index 2937f05342d5c..dfa54fb198132 100644
--- a/packages/gatsby-plugin-preload-fonts/CHANGELOG.md
+++ b/packages/gatsby-plugin-preload-fonts/CHANGELOG.md
@@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [1.2.2](https://github.com/gatsbyjs/gatsby/compare/[email protected]@1.2.2) (2020-05-13)
+
+**Note:** Version bump only for package gatsby-plugin-preload-fonts
+
## [1.2.1](https://github.com/gatsbyjs/gatsby/compare/[email protected]@1.2.1) (2020-05-05)
**Note:** Version bump only for package gatsby-plugin-preload-fonts
diff --git a/packages/gatsby-plugin-preload-fonts/package.json b/packages/gatsby-plugin-preload-fonts/package.json
index 7e2102a59b0da..68da5bc14ce6b 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": "1.2.1",
+ "version": "1.2.2",
"author": "Aaron Ross <[email protected]>",
"main": "index.js",
"bin": {
@@ -14,7 +14,7 @@
"chalk": "^2.4.2",
"date-fns": "^2.13.0",
"fs-extra": "^8.1.0",
- "gatsby-core-utils": "^1.2.1",
+ "gatsby-core-utils": "^1.2.2",
"graphql-request": "^1.8.2",
"progress": "^2.0.3",
"puppeteer": "^1.20.0"
diff --git a/packages/gatsby-plugin-sharp/CHANGELOG.md b/packages/gatsby-plugin-sharp/CHANGELOG.md
index 01128f2ffa531..9d3d264b48043 100644
--- a/packages/gatsby-plugin-sharp/CHANGELOG.md
+++ b/packages/gatsby-plugin-sharp/CHANGELOG.md
@@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [2.6.3](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.6.3) (2020-05-13)
+
+**Note:** Version bump only for package gatsby-plugin-sharp
+
## [2.6.2](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.6.2) (2020-05-07)
### Bug Fixes
diff --git a/packages/gatsby-plugin-sharp/package.json b/packages/gatsby-plugin-sharp/package.json
index fabe09d30d75a..757a3a686e13b 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": "2.6.2",
+ "version": "2.6.3",
"author": "Kyle Mathews <[email protected]>",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -11,7 +11,7 @@
"async": "^2.6.3",
"bluebird": "^3.7.2",
"fs-extra": "^8.1.0",
- "gatsby-core-utils": "^1.2.1",
+ "gatsby-core-utils": "^1.2.2",
"got": "^8.3.2",
"imagemin": "^6.1.0",
"imagemin-mozjpeg": "^8.0.0",
diff --git a/packages/gatsby-recipes/CHANGELOG.md b/packages/gatsby-recipes/CHANGELOG.md
index 0225be433cbcc..4c8e6322ef7aa 100644
--- a/packages/gatsby-recipes/CHANGELOG.md
+++ b/packages/gatsby-recipes/CHANGELOG.md
@@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [0.1.16](https://github.com/gatsbyjs/gatsby/compare/[email protected]@0.1.16) (2020-05-13)
+
+**Note:** Version bump only for package gatsby-recipes
+
## [0.1.15](https://github.com/gatsbyjs/gatsby/compare/[email protected]@0.1.15) (2020-05-11)
### Features
diff --git a/packages/gatsby-recipes/package.json b/packages/gatsby-recipes/package.json
index a32d0fda93f91..2dccdbf2f738b 100644
--- a/packages/gatsby-recipes/package.json
+++ b/packages/gatsby-recipes/package.json
@@ -1,7 +1,7 @@
{
"name": "gatsby-recipes",
"description": "Core functionality for Gatsby Recipes",
- "version": "0.1.15",
+ "version": "0.1.16",
"author": "Kyle Mathews <[email protected]>",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -24,7 +24,7 @@
"babel-plugin-add-module-exports": "^0.3.3",
"babel-plugin-dynamic-import-node": "^2.3.3",
"babel-plugin-remove-graphql-queries": "^2.9.1",
- "babel-preset-gatsby": "^0.4.1",
+ "babel-preset-gatsby": "^0.4.2",
"cors": "^2.8.5",
"detect-port": "^1.3.0",
"event-source-polyfill": "^1.0.12",
@@ -32,8 +32,8 @@
"express": "^4.17.1",
"express-graphql": "^0.9.0",
"fs-extra": "^8.1.0",
- "gatsby-core-utils": "^1.2.1",
- "gatsby-telemetry": "^1.3.3",
+ "gatsby-core-utils": "^1.2.2",
+ "gatsby-telemetry": "^1.3.4",
"glob": "^7.1.6",
"graphql": "^14.6.0",
"graphql-compose": "^6.3.8",
diff --git a/packages/gatsby-remark-images/CHANGELOG.md b/packages/gatsby-remark-images/CHANGELOG.md
index d92b31199b1a8..9a3834cb99c08 100644
--- a/packages/gatsby-remark-images/CHANGELOG.md
+++ b/packages/gatsby-remark-images/CHANGELOG.md
@@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [3.3.3](https://github.com/gatsbyjs/gatsby/compare/[email protected]@3.3.3) (2020-05-13)
+
+**Note:** Version bump only for package gatsby-remark-images
+
## [3.3.2](https://github.com/gatsbyjs/gatsby/compare/[email protected]@3.3.2) (2020-05-08)
### Bug Fixes
diff --git a/packages/gatsby-remark-images/package.json b/packages/gatsby-remark-images/package.json
index 8daab6e2e0867..07e56aec535bd 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": "3.3.2",
+ "version": "3.3.3",
"author": "Kyle Mathews <[email protected]>",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -10,7 +10,7 @@
"@babel/runtime": "^7.9.6",
"chalk": "^2.4.2",
"cheerio": "^1.0.0-rc.3",
- "gatsby-core-utils": "^1.2.1",
+ "gatsby-core-utils": "^1.2.2",
"is-relative-url": "^3.0.0",
"lodash": "^4.17.15",
"mdast-util-definitions": "^1.2.5",
diff --git a/packages/gatsby-source-contentful/CHANGELOG.md b/packages/gatsby-source-contentful/CHANGELOG.md
index 7a28b0ff83093..60bced45b4821 100644
--- a/packages/gatsby-source-contentful/CHANGELOG.md
+++ b/packages/gatsby-source-contentful/CHANGELOG.md
@@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [2.3.4](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.3.4) (2020-05-13)
+
+**Note:** Version bump only for package gatsby-source-contentful
+
## [2.3.3](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.3.3) (2020-05-07)
**Note:** Version bump only for package gatsby-source-contentful
diff --git a/packages/gatsby-source-contentful/package.json b/packages/gatsby-source-contentful/package.json
index d11927fd95867..54ea4c227157c 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": "2.3.3",
+ "version": "2.3.4",
"author": "Marcus Ericsson <[email protected]> (mericsson.com)",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -17,9 +17,9 @@
"contentful": "^7.14.4",
"deep-map": "^1.5.0",
"fs-extra": "^8.1.0",
- "gatsby-core-utils": "^1.2.1",
- "gatsby-plugin-sharp": "^2.6.2",
- "gatsby-source-filesystem": "^2.3.1",
+ "gatsby-core-utils": "^1.2.2",
+ "gatsby-plugin-sharp": "^2.6.3",
+ "gatsby-source-filesystem": "^2.3.2",
"is-online": "^8.3.1",
"json-stringify-safe": "^5.0.1",
"lodash": "^4.17.15",
diff --git a/packages/gatsby-source-drupal/CHANGELOG.md b/packages/gatsby-source-drupal/CHANGELOG.md
index 0806fb24ef0a2..d14368b2f9629 100644
--- a/packages/gatsby-source-drupal/CHANGELOG.md
+++ b/packages/gatsby-source-drupal/CHANGELOG.md
@@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [3.5.2](https://github.com/gatsbyjs/gatsby/compare/[email protected]@3.5.2) (2020-05-13)
+
+**Note:** Version bump only for package gatsby-source-drupal
+
## [3.5.1](https://github.com/gatsbyjs/gatsby/compare/[email protected]@3.5.1) (2020-05-05)
### Bug Fixes
diff --git a/packages/gatsby-source-drupal/package.json b/packages/gatsby-source-drupal/package.json
index e330a2b73950c..50c2092715b52 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": "3.5.1",
+ "version": "3.5.2",
"author": "Kyle Mathews <[email protected]>",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -11,7 +11,7 @@
"axios": "^0.19.2",
"bluebird": "^3.7.2",
"body-parser": "^1.19.0",
- "gatsby-source-filesystem": "^2.3.1",
+ "gatsby-source-filesystem": "^2.3.2",
"lodash": "^4.17.15",
"tiny-async-pool": "^1.1.0"
},
diff --git a/packages/gatsby-source-filesystem/CHANGELOG.md b/packages/gatsby-source-filesystem/CHANGELOG.md
index e38041f43700d..da03086593b1a 100644
--- a/packages/gatsby-source-filesystem/CHANGELOG.md
+++ b/packages/gatsby-source-filesystem/CHANGELOG.md
@@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [2.3.2](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.3.2) (2020-05-13)
+
+**Note:** Version bump only for package gatsby-source-filesystem
+
## [2.3.1](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.3.1) (2020-05-05)
**Note:** Version bump only for package gatsby-source-filesystem
diff --git a/packages/gatsby-source-filesystem/package.json b/packages/gatsby-source-filesystem/package.json
index bb31066c53038..8d03555038b87 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 plugin which parses files within a directory for further parsing by other plugins",
- "version": "2.3.1",
+ "version": "2.3.2",
"author": "Kyle Mathews <[email protected]>",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -13,7 +13,7 @@
"chokidar": "3.4.0",
"file-type": "^12.4.2",
"fs-extra": "^8.1.0",
- "gatsby-core-utils": "^1.2.1",
+ "gatsby-core-utils": "^1.2.2",
"got": "^9.6.0",
"md5-file": "^3.2.3",
"mime": "^2.4.5",
diff --git a/packages/gatsby-source-shopify/CHANGELOG.md b/packages/gatsby-source-shopify/CHANGELOG.md
index 861c518eeaeb4..6c0ee83a51d28 100644
--- a/packages/gatsby-source-shopify/CHANGELOG.md
+++ b/packages/gatsby-source-shopify/CHANGELOG.md
@@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [3.2.2](https://github.com/gatsbyjs/gatsby/compare/[email protected]@3.2.2) (2020-05-13)
+
+**Note:** Version bump only for package gatsby-source-shopify
+
## [3.2.1](https://github.com/gatsbyjs/gatsby/compare/[email protected]@3.2.1) (2020-05-05)
**Note:** Version bump only for package gatsby-source-shopify
diff --git a/packages/gatsby-source-shopify/package.json b/packages/gatsby-source-shopify/package.json
index 9b27287465902..ab687a317e285 100644
--- a/packages/gatsby-source-shopify/package.json
+++ b/packages/gatsby-source-shopify/package.json
@@ -1,6 +1,6 @@
{
"name": "gatsby-source-shopify",
- "version": "3.2.1",
+ "version": "3.2.2",
"description": "Gatsby source plugin for building websites using Shopfiy as a data source.",
"scripts": {
"build": "babel src --out-dir . --ignore \"**/__tests__\"",
@@ -36,7 +36,7 @@
"babel-preset-gatsby-package": "^0.4.1",
"chalk": "^2.4.2",
"gatsby-node-helpers": "^0.3.0",
- "gatsby-source-filesystem": "^2.3.1",
+ "gatsby-source-filesystem": "^2.3.2",
"graphql-request": "^1.8.2",
"lodash": "^4.17.15",
"p-iteration": "^1.1.8",
diff --git a/packages/gatsby-source-wordpress/CHANGELOG.md b/packages/gatsby-source-wordpress/CHANGELOG.md
index eb9c9b5a0d962..0bf5194aa799f 100644
--- a/packages/gatsby-source-wordpress/CHANGELOG.md
+++ b/packages/gatsby-source-wordpress/CHANGELOG.md
@@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [3.3.2](https://github.com/gatsbyjs/gatsby/compare/[email protected]@3.3.2) (2020-05-13)
+
+**Note:** Version bump only for package gatsby-source-wordpress
+
## [3.3.1](https://github.com/gatsbyjs/gatsby/compare/[email protected]@3.3.1) (2020-05-05)
**Note:** Version bump only for package gatsby-source-wordpress
diff --git a/packages/gatsby-source-wordpress/package.json b/packages/gatsby-source-wordpress/package.json
index cf96a49c284c2..081d0e880ff9c 100644
--- a/packages/gatsby-source-wordpress/package.json
+++ b/packages/gatsby-source-wordpress/package.json
@@ -1,7 +1,7 @@
{
"name": "gatsby-source-wordpress",
"description": "Gatsby source plugin for building websites using the WordPress CMS as a data source.",
- "version": "3.3.1",
+ "version": "3.3.2",
"author": "Sebastien Fichot <[email protected]>",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -14,7 +14,7 @@
"bluebird": "^3.7.2",
"deep-map": "^1.5.0",
"deep-map-keys": "^1.2.0",
- "gatsby-source-filesystem": "^2.3.1",
+ "gatsby-source-filesystem": "^2.3.2",
"json-stringify-safe": "^5.0.1",
"lodash": "^4.17.15",
"minimatch": "^3.0.4",
diff --git a/packages/gatsby-telemetry/CHANGELOG.md b/packages/gatsby-telemetry/CHANGELOG.md
index e969947e42b02..7102552178611 100644
--- a/packages/gatsby-telemetry/CHANGELOG.md
+++ b/packages/gatsby-telemetry/CHANGELOG.md
@@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [1.3.4](https://github.com/gatsbyjs/gatsby/compare/[email protected]@1.3.4) (2020-05-13)
+
+**Note:** Version bump only for package gatsby-telemetry
+
## [1.3.3](https://github.com/gatsbyjs/gatsby/compare/[email protected]@1.3.3) (2020-05-08)
**Note:** Version bump only for package gatsby-telemetry
diff --git a/packages/gatsby-telemetry/package.json b/packages/gatsby-telemetry/package.json
index fa9971ae724cd..c6ff74d472ed1 100644
--- a/packages/gatsby-telemetry/package.json
+++ b/packages/gatsby-telemetry/package.json
@@ -1,7 +1,7 @@
{
"name": "gatsby-telemetry",
"description": "Gatsby Telemetry",
- "version": "1.3.3",
+ "version": "1.3.4",
"author": "Jarmo Isotalo <[email protected]>",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -14,7 +14,7 @@
"configstore": "^5.0.1",
"envinfo": "^7.5.1",
"fs-extra": "^8.1.0",
- "gatsby-core-utils": "^1.2.1",
+ "gatsby-core-utils": "^1.2.2",
"git-up": "4.0.1",
"is-docker": "2.0.0",
"lodash": "^4.17.15",
diff --git a/packages/gatsby-theme-blog-core/CHANGELOG.md b/packages/gatsby-theme-blog-core/CHANGELOG.md
index 32f7145611ee6..8f83e2032de2b 100644
--- a/packages/gatsby-theme-blog-core/CHANGELOG.md
+++ b/packages/gatsby-theme-blog-core/CHANGELOG.md
@@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [1.4.25](https://github.com/gatsbyjs/gatsby/compare/[email protected]@1.4.25) (2020-05-13)
+
+**Note:** Version bump only for package gatsby-theme-blog-core
+
## [1.4.24](https://github.com/gatsbyjs/gatsby/compare/[email protected]@1.4.24) (2020-05-12)
**Note:** Version bump only for package gatsby-theme-blog-core
diff --git a/packages/gatsby-theme-blog-core/package.json b/packages/gatsby-theme-blog-core/package.json
index d2254512bc463..1d8b7f7316b7f 100644
--- a/packages/gatsby-theme-blog-core/package.json
+++ b/packages/gatsby-theme-blog-core/package.json
@@ -1,6 +1,6 @@
{
"name": "gatsby-theme-blog-core",
- "version": "1.4.24",
+ "version": "1.4.25",
"main": "index.js",
"author": "christopherbiscardi <[email protected]> (@chrisbiscardi)",
"license": "MIT",
@@ -18,19 +18,19 @@
},
"dependencies": {
"@mdx-js/mdx": "^1.6.1",
- "gatsby-core-utils": "^1.2.1",
- "gatsby-plugin-mdx": "^1.2.6",
- "gatsby-plugin-sharp": "^2.6.2",
+ "gatsby-core-utils": "^1.2.2",
+ "gatsby-plugin-mdx": "^1.2.7",
+ "gatsby-plugin-sharp": "^2.6.3",
"gatsby-remark-copy-linked-files": "^2.3.2",
- "gatsby-remark-images": "^3.3.2",
+ "gatsby-remark-images": "^3.3.3",
"gatsby-remark-smartypants": "^2.3.1",
- "gatsby-source-filesystem": "^2.3.1",
+ "gatsby-source-filesystem": "^2.3.2",
"gatsby-transformer-sharp": "^2.5.2",
"remark-slug": "^5.1.2"
},
"devDependencies": {
"@mdx-js/react": "^1.6.1",
- "gatsby": "^2.21.24",
+ "gatsby": "^2.21.25",
"prettier": "2.0.5",
"react": "^16.12.0",
"react-dom": "^16.12.0"
diff --git a/packages/gatsby-theme-blog/CHANGELOG.md b/packages/gatsby-theme-blog/CHANGELOG.md
index c6ed2b17d0354..50e0fa05f52cc 100644
--- a/packages/gatsby-theme-blog/CHANGELOG.md
+++ b/packages/gatsby-theme-blog/CHANGELOG.md
@@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [1.5.25](https://github.com/gatsbyjs/gatsby/compare/[email protected]@1.5.25) (2020-05-13)
+
+**Note:** Version bump only for package gatsby-theme-blog
+
## [1.5.24](https://github.com/gatsbyjs/gatsby/compare/[email protected]@1.5.24) (2020-05-12)
**Note:** Version bump only for package gatsby-theme-blog
diff --git a/packages/gatsby-theme-blog/package.json b/packages/gatsby-theme-blog/package.json
index f6eeca47fd2b5..dc4189f69da75 100644
--- a/packages/gatsby-theme-blog/package.json
+++ b/packages/gatsby-theme-blog/package.json
@@ -1,6 +1,6 @@
{
"name": "gatsby-theme-blog",
- "version": "1.5.24",
+ "version": "1.5.25",
"description": "A Gatsby theme for miscellaneous blogging with a dark/light mode",
"main": "index.js",
"keywords": [
@@ -29,7 +29,7 @@
"gatsby-plugin-react-helmet": "^3.3.1",
"gatsby-plugin-theme-ui": "^0.2.53",
"gatsby-plugin-twitter": "^2.3.1",
- "gatsby-theme-blog-core": "^1.4.24",
+ "gatsby-theme-blog-core": "^1.4.25",
"mdx-utils": "0.2.0",
"react-helmet": "^5.2.1",
"react-switch": "^5.0.1",
@@ -39,7 +39,7 @@
"typography-theme-wordpress-2016": "^0.16.19"
},
"devDependencies": {
- "gatsby": "^2.21.24",
+ "gatsby": "^2.21.25",
"prettier": "2.0.5",
"react": "^16.12.0",
"react-dom": "^16.12.0"
diff --git a/packages/gatsby-theme-notes/CHANGELOG.md b/packages/gatsby-theme-notes/CHANGELOG.md
index bb3b9a02c6689..144a10184d6f6 100644
--- a/packages/gatsby-theme-notes/CHANGELOG.md
+++ b/packages/gatsby-theme-notes/CHANGELOG.md
@@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [1.3.25](https://github.com/gatsbyjs/gatsby/compare/[email protected]@1.3.25) (2020-05-13)
+
+**Note:** Version bump only for package gatsby-theme-notes
+
## [1.3.24](https://github.com/gatsbyjs/gatsby/compare/[email protected]@1.3.24) (2020-05-12)
**Note:** Version bump only for package gatsby-theme-notes
diff --git a/packages/gatsby-theme-notes/package.json b/packages/gatsby-theme-notes/package.json
index 895df30c38ce7..11411300f8c27 100644
--- a/packages/gatsby-theme-notes/package.json
+++ b/packages/gatsby-theme-notes/package.json
@@ -1,7 +1,7 @@
{
"name": "gatsby-theme-notes",
"description": "Gatsby Theme for adding a notes section to your website",
- "version": "1.3.24",
+ "version": "1.3.25",
"author": "John Otander",
"license": "MIT",
"main": "index.js",
@@ -20,7 +20,7 @@
},
"homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-theme-notes#readme",
"devDependencies": {
- "gatsby": "^2.21.24",
+ "gatsby": "^2.21.25",
"react": "^16.12.0",
"react-dom": "^16.12.0"
},
@@ -36,14 +36,14 @@
"@theme-ui/prism": "^0.2.50",
"@theme-ui/typography": "^0.2.46",
"deepmerge": "^4.2.2",
- "gatsby-core-utils": "^1.2.1",
+ "gatsby-core-utils": "^1.2.2",
"gatsby-plugin-compile-es6-packages": "^2.1.0",
"gatsby-plugin-emotion": "^4.3.1",
- "gatsby-plugin-mdx": "^1.2.6",
+ "gatsby-plugin-mdx": "^1.2.7",
"gatsby-plugin-meta-redirect": "^1.1.1",
"gatsby-plugin-redirects": "^1.0.0",
"gatsby-plugin-theme-ui": "^0.2.53",
- "gatsby-source-filesystem": "^2.3.1",
+ "gatsby-source-filesystem": "^2.3.2",
"is-present": "^1.0.0",
"react-feather": "^1.1.6",
"theme-ui": "^0.2.52",
diff --git a/packages/gatsby-theme-ui-preset/CHANGELOG.md b/packages/gatsby-theme-ui-preset/CHANGELOG.md
index 188c95e16fdc1..053d46cbef027 100644
--- a/packages/gatsby-theme-ui-preset/CHANGELOG.md
+++ b/packages/gatsby-theme-ui-preset/CHANGELOG.md
@@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [0.0.15](https://github.com/gatsbyjs/gatsby/compare/[email protected]@0.0.15) (2020-05-13)
+
+**Note:** Version bump only for package gatsby-theme-ui-preset
+
## [0.0.14](https://github.com/gatsbyjs/gatsby/compare/[email protected]@0.0.14) (2020-05-12)
**Note:** Version bump only for package gatsby-theme-ui-preset
diff --git a/packages/gatsby-theme-ui-preset/package.json b/packages/gatsby-theme-ui-preset/package.json
index e2844a2d9505c..bfb7f62f82895 100644
--- a/packages/gatsby-theme-ui-preset/package.json
+++ b/packages/gatsby-theme-ui-preset/package.json
@@ -1,6 +1,6 @@
{
"name": "gatsby-theme-ui-preset",
- "version": "0.0.14",
+ "version": "0.0.15",
"description": "A Gatsby theme for theme-ui styles",
"main": "index.js",
"keywords": [
@@ -30,7 +30,7 @@
"typography-theme-wordpress-2016": "^0.16.19"
},
"devDependencies": {
- "gatsby": "^2.21.24",
+ "gatsby": "^2.21.25",
"prettier": "2.0.5",
"react": "^16.12.0",
"react-dom": "^16.12.0"
diff --git a/packages/gatsby-transformer-remark/CHANGELOG.md b/packages/gatsby-transformer-remark/CHANGELOG.md
index 7586782b647f9..7749f10cb9d77 100644
--- a/packages/gatsby-transformer-remark/CHANGELOG.md
+++ b/packages/gatsby-transformer-remark/CHANGELOG.md
@@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [2.8.8](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.8.8) (2020-05-13)
+
+**Note:** Version bump only for package gatsby-transformer-remark
+
## [2.8.7](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.8.7) (2020-05-06)
### Features
diff --git a/packages/gatsby-transformer-remark/package.json b/packages/gatsby-transformer-remark/package.json
index 4bb21cc169519..f0fbaae655209 100644
--- a/packages/gatsby-transformer-remark/package.json
+++ b/packages/gatsby-transformer-remark/package.json
@@ -1,7 +1,7 @@
{
"name": "gatsby-transformer-remark",
"description": "Gatsby transformer plugin for Markdown using the Remark library and ecosystem",
- "version": "2.8.7",
+ "version": "2.8.8",
"author": "Kyle Mathews <[email protected]>",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -9,7 +9,7 @@
"dependencies": {
"@babel/runtime": "^7.9.6",
"bluebird": "^3.7.2",
- "gatsby-core-utils": "^1.2.1",
+ "gatsby-core-utils": "^1.2.2",
"gray-matter": "^4.0.2",
"hast-util-raw": "^4.0.0",
"hast-util-to-html": "^4.0.1",
diff --git a/packages/gatsby-transformer-screenshot/CHANGELOG.md b/packages/gatsby-transformer-screenshot/CHANGELOG.md
index c7457c504117f..d942b76f144be 100644
--- a/packages/gatsby-transformer-screenshot/CHANGELOG.md
+++ b/packages/gatsby-transformer-screenshot/CHANGELOG.md
@@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [2.3.4](https://github.com/gatsbyjs/gatsby/compare/gatsby-transformer-screenshot@[email protected]) (2020-05-13)
+
+**Note:** Version bump only for package gatsby-transformer-screenshot
+
## [2.3.3](https://github.com/gatsbyjs/gatsby/compare/gatsby-transformer-screenshot@[email protected]) (2020-05-05)
### Bug Fixes
diff --git a/packages/gatsby-transformer-screenshot/package.json b/packages/gatsby-transformer-screenshot/package.json
index d931ffcdaf5df..dd4c08d45545f 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": "2.3.3",
+ "version": "2.3.4",
"author": "David Beckley <[email protected]>",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
diff --git a/packages/gatsby-transformer-sqip/CHANGELOG.md b/packages/gatsby-transformer-sqip/CHANGELOG.md
index 6dfe495a7cac6..f5c29a31be498 100644
--- a/packages/gatsby-transformer-sqip/CHANGELOG.md
+++ b/packages/gatsby-transformer-sqip/CHANGELOG.md
@@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [2.3.3](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.3.3) (2020-05-13)
+
+**Note:** Version bump only for package gatsby-transformer-sqip
+
## [2.3.2](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.3.2) (2020-05-07)
**Note:** Version bump only for package gatsby-transformer-sqip
diff --git a/packages/gatsby-transformer-sqip/package.json b/packages/gatsby-transformer-sqip/package.json
index 30777383559e3..96d58adadf3f1 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": "2.3.2",
+ "version": "2.3.3",
"author": "Benedikt Rötsch <[email protected]>",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -10,7 +10,7 @@
"@babel/runtime": "^7.9.6",
"bluebird": "^3.7.2",
"fs-extra": "^8.1.0",
- "gatsby-plugin-sharp": "^2.6.2",
+ "gatsby-plugin-sharp": "^2.6.3",
"md5-file": "^4.0.0",
"mini-svg-data-uri": "^1.2.3",
"p-queue": "^2.4.2",
diff --git a/packages/gatsby/CHANGELOG.md b/packages/gatsby/CHANGELOG.md
index 5b5dfea8f1d7b..111a9af634514 100644
--- a/packages/gatsby/CHANGELOG.md
+++ b/packages/gatsby/CHANGELOG.md
@@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [2.21.25](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.21.25) (2020-05-13)
+
+**Note:** Version bump only for package gatsby
+
## [2.21.24](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.21.24) (2020-05-12)
### Bug Fixes
diff --git a/packages/gatsby/package.json b/packages/gatsby/package.json
index 3ff57ce5da8d8..c52faaa420dfc 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": "2.21.24",
+ "version": "2.21.25",
"author": "Kyle Mathews <[email protected]>",
"bin": {
"gatsby": "./dist/bin/gatsby.js"
@@ -32,7 +32,7 @@
"babel-plugin-add-module-exports": "^0.3.3",
"babel-plugin-dynamic-import-node": "^2.3.3",
"babel-plugin-remove-graphql-queries": "^2.9.1",
- "babel-preset-gatsby": "^0.4.1",
+ "babel-preset-gatsby": "^0.4.2",
"better-opn": "1.0.0",
"better-queue": "^3.8.10",
"bluebird": "^3.7.2",
@@ -71,14 +71,14 @@
"flat": "^4.1.0",
"fs-exists-cached": "1.0.0",
"fs-extra": "^8.1.0",
- "gatsby-cli": "^2.12.17",
- "gatsby-core-utils": "^1.2.1",
+ "gatsby-cli": "^2.12.18",
+ "gatsby-core-utils": "^1.2.2",
"gatsby-graphiql-explorer": "^0.4.1",
"gatsby-link": "^2.4.2",
- "gatsby-plugin-page-creator": "^2.3.1",
+ "gatsby-plugin-page-creator": "^2.3.2",
"gatsby-plugin-typescript": "^2.4.2",
"gatsby-react-router-scroll": "^3.0.0",
- "gatsby-telemetry": "^1.3.3",
+ "gatsby-telemetry": "^1.3.4",
"glob": "^7.1.6",
"got": "8.3.2",
"graphql": "^14.6.0",
|
677819353c8358219e0530ce88e6ce17d492761f
|
2022-01-03 15:38:42
|
renovate[bot]
|
fix(deps): update dependency graphql to ^15.8.0 for gatsby-codemods (#34373)
| false
|
update dependency graphql to ^15.8.0 for gatsby-codemods (#34373)
|
fix
|
diff --git a/packages/gatsby-codemods/package.json b/packages/gatsby-codemods/package.json
index 8342b33f0cca0..026f9fef0de26 100644
--- a/packages/gatsby-codemods/package.json
+++ b/packages/gatsby-codemods/package.json
@@ -30,7 +30,7 @@
"@babel/plugin-syntax-typescript": "^7.14.0",
"@babel/runtime": "^7.15.4",
"execa": "^5.1.1",
- "graphql": "^15.7.2",
+ "graphql": "^15.8.0",
"jscodeshift": "^0.12.0",
"recast": "^0.20.5"
},
diff --git a/yarn.lock b/yarn.lock
index 9f1b5e49e4eff..43fcdfc5bb961 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -11557,10 +11557,10 @@ graphql-ws@^4.1.0:
resolved "https://registry.yarnpkg.com/graphql-ws/-/graphql-ws-4.3.2.tgz#c58b03acc3bd5d4a92a6e9f729d29ba5e90d46a3"
integrity sha512-jsW6eOlko7fJek1iaSGQFj97AWuhexL9A3PuxYtyke/VlMdbSFzmDR4PlPPCTBBskRg6tNRb5RTbBVSd2T60JQ==
-graphql@^15.5.1, graphql@^15.7.2:
- version "15.7.2"
- resolved "https://registry.yarnpkg.com/graphql/-/graphql-15.7.2.tgz#85ab0eeb83722977151b3feb4d631b5f2ab287ef"
- integrity sha512-AnnKk7hFQFmU/2I9YSQf3xw44ctnSFCfp3zE0N6W174gqe9fWG/2rKaKxROK7CcI3XtERpjEKFqts8o319Kf7A==
+graphql@^15.5.1, graphql@^15.7.2, graphql@^15.8.0:
+ version "15.8.0"
+ resolved "https://registry.yarnpkg.com/graphql/-/graphql-15.8.0.tgz#33410e96b012fa3bdb1091cc99a94769db212b38"
+ integrity sha512-5gghUc24tP9HRznNpV2+FIoq3xKkj5dTQqf4v0CpdPbFVwFkWoxOM+o+2OC9ZSvjEMTjfmG9QT+gcvggTwW1zw==
gray-matter@^2.1.0:
version "2.1.1"
|
a55d7557489939069edccf3aa881db4e5e6a0c94
|
2024-10-16 23:41:42
|
renovate[bot]
|
fix(deps): update dependency axios to ^1.7.7 for gatsby-source-lever (#39118)
| false
|
update dependency axios to ^1.7.7 for gatsby-source-lever (#39118)
|
fix
|
diff --git a/packages/gatsby-source-lever/package.json b/packages/gatsby-source-lever/package.json
index 592cdb220ab43..dab84f80b71c4 100644
--- a/packages/gatsby-source-lever/package.json
+++ b/packages/gatsby-source-lever/package.json
@@ -9,7 +9,7 @@
"bundledDependencies": [],
"dependencies": {
"@babel/runtime": "^7.20.13",
- "axios": "^1.6.2",
+ "axios": "^1.7.7",
"bluebird": "^3.7.2",
"deep-map": "^1.5.0",
"deep-map-keys": "^1.2.0",
diff --git a/yarn.lock b/yarn.lock
index 72ba8fa3f6a32..8acc2a3c20ac9 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -6583,10 +6583,10 @@ axios@^0.27.0:
follow-redirects "^1.14.9"
form-data "^4.0.0"
-axios@^1.6.2, axios@^1.6.4:
- version "1.7.4"
- resolved "https://registry.yarnpkg.com/axios/-/axios-1.7.4.tgz#4c8ded1b43683c8dd362973c393f3ede24052aa2"
- integrity sha512-DukmaFRnY6AzAALSH4J2M3k6PkaC+MfaAGdEERRWcC9q3/TWQwLpHR8ZRLKTdQ3aBDL64EdluRDjJqKw+BPZEw==
+axios@^1.6.2, axios@^1.6.4, axios@^1.7.7:
+ version "1.7.7"
+ resolved "https://registry.yarnpkg.com/axios/-/axios-1.7.7.tgz#2f554296f9892a72ac8d8e4c5b79c14a91d0a47f"
+ integrity sha512-S4kL7XrjgBmvdGut0sN3yJxqYzrDOnivkBiN0OFs6hLiUam3UPvswUo0kqGyhqUZGEOytHyumEdXsAkgCOUf3Q==
dependencies:
follow-redirects "^1.15.6"
form-data "^4.0.0"
|
4a0563e7f8a71cdcb948896ad19b9334ac5e6d47
|
2018-10-17 05:47:18
|
stefanprobst
|
fix: check for empty fields in InputFilter inference (#9057)
| false
|
check for empty fields in InputFilter inference (#9057)
|
fix
|
diff --git a/packages/gatsby/src/schema/__tests__/infer-graphql-input-type-from-fields-test.js b/packages/gatsby/src/schema/__tests__/infer-graphql-input-type-from-fields-test.js
index 46951927c895b..609791827a62d 100644
--- a/packages/gatsby/src/schema/__tests__/infer-graphql-input-type-from-fields-test.js
+++ b/packages/gatsby/src/schema/__tests__/infer-graphql-input-type-from-fields-test.js
@@ -267,6 +267,14 @@ describe(`GraphQL Input args from fields, test-only`, () => {
},
})
),
+ baz: typeField(
+ new GraphQLObjectType({
+ name: `Jbo2`,
+ fields: {
+ aa: typeField(OddType),
+ },
+ })
+ ),
},
}),
},
@@ -293,6 +301,10 @@ describe(`GraphQL Input args from fields, test-only`, () => {
isStringInput(innerObjFields.foo.type)
expect(innerObjFields.ba).toBeUndefined()
isIntInput(innerObjFields.bar.type)
+
+ // innerObj.baz is object containing only unsupported types
+ // so it should not be defined
+ expect(innerObj.baz).toBeUndefined()
})
it(`includes the filters of list elements`, async () => {
diff --git a/packages/gatsby/src/schema/infer-graphql-input-fields-from-fields.js b/packages/gatsby/src/schema/infer-graphql-input-fields-from-fields.js
index eabb760999075..bbe0d66945e6b 100644
--- a/packages/gatsby/src/schema/infer-graphql-input-fields-from-fields.js
+++ b/packages/gatsby/src/schema/infer-graphql-input-fields-from-fields.js
@@ -138,15 +138,19 @@ function convertToInputFilter(
fields: fields,
})
} else if (type instanceof GraphQLInputObjectType) {
+ const fields = _.transform(type.getFields(), (out, fieldConfig, key) => {
+ const type = convertToInputFilter(
+ `${prefix}${_.upperFirst(key)}`,
+ fieldConfig.type
+ )
+ if (type) out[key] = { type }
+ })
+ if (Object.keys(fields).length === 0) {
+ return null
+ }
return new GraphQLInputObjectType({
name: createTypeName(`${prefix}{type.name}`),
- fields: _.transform(type.getFields(), (out, fieldConfig, key) => {
- const type = convertToInputFilter(
- `${prefix}${_.upperFirst(key)}`,
- fieldConfig.type
- )
- if (type) out[key] = { type }
- }),
+ fields: fields,
})
} else if (type instanceof GraphQLList) {
const innerType = type.ofType
|
40073f8bbca274287b7887b3503159eb709a2987
|
2022-07-26 02:26:26
|
Benedikt Rötsch
|
chore(gatsby-source-contentful): migrate to latest Contentful SDK (#35501)
| false
|
migrate to latest Contentful SDK (#35501)
|
chore
|
diff --git a/e2e-tests/contentful/snapshots.js b/e2e-tests/contentful/snapshots.js
index c7626ba18be77..2aeca7312618f 100644
--- a/e2e-tests/contentful/snapshots.js
+++ b/e2e-tests/contentful/snapshots.js
@@ -1,5 +1,5 @@
module.exports = {
- "__version": "9.5.4",
+ "__version": "9.6.1",
"content-reference": {
"content-reference-many-2nd-level-loop": {
"1": "<div data-cy-id=\"default-content-reference-many-2nd-level-loop\">\n <h2>Content Reference: Many (2nd level loop)</h2>\n <p data-cy-id=\"integer\">[ContentfulNumber]\n <!-- -->42</p>\n <p data-cy-id=\"text\">[ContentfulText]\n <!-- -->The quick brown fox jumps over the lazy dog.</p>\n <p data-cy-id=\"reference\">[ContentfulReference]\n <!-- -->Content Reference: One (Loop A -> B)\n <!-- -->: [\n <!-- -->Content Reference: One (Loop B -> A)\n <!-- -->]</p>\n</div>"
diff --git a/packages/gatsby-source-contentful/package.json b/packages/gatsby-source-contentful/package.json
index 71addf53b702d..e92cb1f933b1e 100644
--- a/packages/gatsby-source-contentful/package.json
+++ b/packages/gatsby-source-contentful/package.json
@@ -12,10 +12,9 @@
"@contentful/rich-text-types": "^15.12.1",
"@hapi/joi": "^15.1.1",
"@vercel/fetch-retry": "^5.1.3",
- "axios": "^0.21.1",
"chalk": "^4.1.2",
"common-tags": "^1.8.2",
- "contentful": "^8.5.8",
+ "contentful": "^9.1.33",
"fs-extra": "^10.1.0",
"gatsby-core-utils": "^3.20.0-next.0",
"gatsby-plugin-utils": "^3.14.0-next.1",
@@ -24,8 +23,6 @@
"json-stringify-safe": "^5.0.1",
"lodash": "^4.17.21",
"node-fetch": "^2.6.7",
- "p-queue": "^6.6.2",
- "retry-axios": "^2.6.0",
"semver": "^7.3.7",
"url": "^0.11.0"
},
diff --git a/packages/gatsby-source-contentful/src/__tests__/fetch-network-errors.js b/packages/gatsby-source-contentful/src/__tests__/fetch-network-errors.js
index d629c5966cbce..623402d38d2fb 100644
--- a/packages/gatsby-source-contentful/src/__tests__/fetch-network-errors.js
+++ b/packages/gatsby-source-contentful/src/__tests__/fetch-network-errors.js
@@ -108,13 +108,11 @@ describe(`fetch-retry`, () => {
const msg = expect(e.context.sourceMessage)
msg.toEqual(
expect.stringContaining(
- `Fetching contentful data failed: 500 MockedContentfulError`
+ `Fetching contentful data failed: ERR_BAD_RESPONSE 500 MockedContentfulError`
)
)
msg.toEqual(expect.stringContaining(`Request ID: 123abc`))
- msg.toEqual(
- expect.stringContaining(`The request was sent with 3 attempts`)
- )
+ msg.toEqual(expect.stringContaining(`Attempts: 3`))
}
expect(reporter.panic).toBeCalled()
expect(scope.isDone()).toBeTruthy()
@@ -149,34 +147,6 @@ describe(`fetch-network-errors`, () => {
expect(scope.isDone()).toBeTruthy()
})
- test(`catches error with response string`, async () => {
- const scope = nock(baseURI)
- // Space
- .get(`/spaces/${options.spaceId}/`)
- .reply(502, `Bad Gateway`)
-
- try {
- await fetchContent({
- pluginConfig: createPluginConfig({
- ...options,
- contentfulClientConfig: { retryOnError: false },
- }),
- reporter,
- syncToken: null,
- })
- throw new Error(`fetchContent should throw an error`)
- } catch (e) {
- expect(e.context.sourceMessage).toEqual(
- expect.stringContaining(
- `Accessing your Contentful space failed: Bad Gateway`
- )
- )
- }
-
- expect(reporter.panic).toBeCalled()
- expect(scope.isDone()).toBeTruthy()
- })
-
test(`catches error with response object`, async () => {
const scope = nock(baseURI)
// Space
diff --git a/packages/gatsby-source-contentful/src/fetch.js b/packages/gatsby-source-contentful/src/fetch.js
index 209153198fefa..d38dba1ebbee4 100644
--- a/packages/gatsby-source-contentful/src/fetch.js
+++ b/packages/gatsby-source-contentful/src/fetch.js
@@ -9,68 +9,90 @@ import { CODES } from "./report"
* Generate a user friendly error message.
*
* Contentful's API has its own error message structure, which might change depending of internal server or authentification errors.
- *
- * Additionally the SDK strips the error object, sometimes:
- * https://github.com/contentful/contentful.js/blob/b67b77ac8c919c4ec39203f8cac2043854ab0014/lib/create-contentful-api.js#L89-L99
- *
- * This code tries to work around this.
*/
const createContentfulErrorMessage = e => {
- if (typeof e === `string`) {
- return e
- }
- // If we got a response, it is very likely that it is a Contentful API error.
- if (e.response) {
- let parsedContentfulErrorData = null
+ // Handle axios error messages
+ if (e.isAxiosError) {
+ const axiosErrorMessage = [e.code, e.status]
+ const axiosErrorDetails = []
- // Parse JSON response data, and add it to the object.
- if (typeof e.response.data === `string`) {
- try {
- parsedContentfulErrorData = JSON.parse(e.response.data)
- } catch (err) {
- e.message = e.response.data
+ if (e.response) {
+ axiosErrorMessage.push(e.response.status)
+
+ // Parse Contentful API error data
+ if (e.response?.data) {
+ axiosErrorMessage.push(e.response.data.sys?.id, e.response.data.message)
+ }
+
+ // Get request ID from headers
+ const requestId =
+ e.response.headers &&
+ typeof e.response.headers === `object` &&
+ e.response.headers[`x-contentful-request-id`]
+
+ if (requestId) {
+ axiosErrorDetails.push(`Request ID: ${requestId}`)
}
- // If response data was parsed already, just add it.
- } else if (typeof e.response.data === `object`) {
- parsedContentfulErrorData = e.response.data
}
- e = { ...e, ...e.response, ...parsedContentfulErrorData }
- }
+ if (e.attempts) {
+ axiosErrorDetails.push(`Attempts: ${e.attempts}`)
+ }
- let errorMessage = [
- // Generic error values
- e.code && String(e.code),
- e.status && String(e.status),
- e.statusText,
- // Contentful API error response values
- e.sys?.id,
- ]
- .filter(Boolean)
- .join(` `)
-
- // Add message if it exists. Usually error default or Contentful's error message
- if (e.message) {
- errorMessage += `\n\n${e.message}`
- }
+ if (axiosErrorDetails.length) {
+ axiosErrorMessage.push(
+ `\n\n---\n${axiosErrorDetails.join(`\n\n`)}\n\n---\n`
+ )
+ }
- // Get request ID from headers or Contentful's error data
- const requestId =
- (e.headers &&
- typeof e.headers === `object` &&
- e.headers[`x-contentful-request-id`]) ||
- e.requestId
+ return axiosErrorMessage.filter(Boolean).join(` `)
+ }
- if (requestId) {
- errorMessage += `\n\nRequest ID: ${requestId}`
+ // If it is not an axios error, we assume that we got a Contentful SDK error and try to parse it
+ const errorMessage = [e.name]
+ const errorDetails = []
+ try {
+ /**
+ * Parse stringified error data from message
+ * https://github.com/contentful/contentful-sdk-core/blob/4cfcd452ba0752237a26ce6b79d72a50af84d84e/src/error-handler.ts#L71-L75
+ *
+ * @todo properly type this with TS
+ * type {
+ * status?: number
+ * statusText?: string
+ * requestId?: string
+ * message: string
+ * !details: Record<string, unknown>
+ * !request?: Record<string, unknown>
+ * }
+ */
+ const errorData = JSON.parse(e.message)
+ errorMessage.push(errorData.status && String(errorData.status))
+ errorMessage.push(errorData.statusText)
+ errorMessage.push(errorData.message)
+ if (errorData.requestId) {
+ errorDetails.push(`Request ID: ${errorData.requestId}`)
+ }
+ if (errorData.request) {
+ errorDetails.push(
+ `Request:\n${JSON.stringify(errorData.request, null, 2)}`
+ )
+ }
+ if (errorData.details && Object.keys(errorData.details).length) {
+ errorDetails.push(
+ `Details:\n${JSON.stringify(errorData.details, null, 2)}`
+ )
+ }
+ } catch (err) {
+ // If we can't parse it, we assume its a human readable string
+ errorMessage.push(e.message)
}
- // Tell the user about how many request attempts Contentful SDK made
- if (e.attempts) {
- errorMessage += `\n\nThe request was sent with ${e.attempts} attempts`
+ if (errorDetails.length) {
+ errorMessage.push(`\n\n---\n${errorDetails.join(`\n\n`)}\n\n---\n`)
}
- return errorMessage
+ return errorMessage.filter(Boolean).join(` `)
}
function createContentfulClientOptions({
diff --git a/yarn.lock b/yarn.lock
index 2d4597a6d4bb1..027d5650b4f1f 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -6153,6 +6153,14 @@ axios@^0.21.1:
dependencies:
follow-redirects "^1.10.0"
+axios@^0.27.0:
+ version "0.27.2"
+ resolved "https://registry.yarnpkg.com/axios/-/axios-0.27.2.tgz#207658cc8621606e586c85db4b41a750e756d972"
+ integrity sha512-t+yRIyySRTp/wua5xEr+z1q60QmLq8ABsS5O9Me1AsE5dfKqgnCFzwiCZZ/cGNd1lq4/7akDWMxdhVlucjmnOQ==
+ dependencies:
+ follow-redirects "^1.14.9"
+ form-data "^4.0.0"
+
axobject-query@^2.2.0:
version "2.2.0"
resolved "https://registry.yarnpkg.com/axobject-query/-/axobject-query-2.2.0.tgz#943d47e10c0b704aa42275e20edf3722648989be"
@@ -7958,25 +7966,25 @@ contentful-resolve-response@^1.3.0:
dependencies:
fast-copy "^2.1.0"
-contentful-sdk-core@^6.8.5:
- version "6.10.3"
- resolved "https://registry.yarnpkg.com/contentful-sdk-core/-/contentful-sdk-core-6.10.3.tgz#983fd69257c239881c43cb83e3ce9f501acfbe4a"
- integrity sha512-IUBkAU1sJuVaEa2Nv1NKK5ImqpBZ5Q3EmaCFmMZx/UHKa+i98nDCSTUBOL1aJnpZ/s3AaSramsh73VQ4aK2kyA==
+contentful-sdk-core@^7.0.1:
+ version "7.0.2"
+ resolved "https://registry.yarnpkg.com/contentful-sdk-core/-/contentful-sdk-core-7.0.2.tgz#5585880f546772246209de25256635ce31fd8d8e"
+ integrity sha512-HkBzzzJ3UGqOIJiTd4qMEMvn44ccrN7a75gEej28X1srGn05myRgJ/pWbmXJhtgpq/5gU7IURnynyKx/ecsOfg==
dependencies:
- fast-copy "^2.1.0"
+ fast-copy "^2.1.3"
lodash.isplainobject "^4.0.6"
lodash.isstring "^4.0.1"
p-throttle "^4.1.1"
qs "^6.9.4"
-contentful@^8.5.8:
- version "8.5.8"
- resolved "https://registry.yarnpkg.com/contentful/-/contentful-8.5.8.tgz#ad2f3549d1795310e104a6c33325352524f7bd77"
- integrity sha512-6YyE95uDJYTyGKQYtqYrMzdDZe3sLkrC0UEnpXuIOeciGACRQP9ouTjRJnLMa5ONUPt0+UJh7JH3epNouPZWIw==
+contentful@^9.1.33:
+ version "9.1.33"
+ resolved "https://registry.yarnpkg.com/contentful/-/contentful-9.1.33.tgz#1305254c647578ad981eae59fae1abdb07b50b6a"
+ integrity sha512-iiu2cC/9JvDrTK6cfSHhZ1iW6dOq+NmYMA2p5Thpv+9h2pEOyoHm1Un9Xir5XZSB11bu4POmo6JazGAn9N0tqg==
dependencies:
- axios "^0.21.1"
+ axios "^0.27.0"
contentful-resolve-response "^1.3.0"
- contentful-sdk-core "^6.8.5"
+ contentful-sdk-core "^7.0.1"
fast-copy "^2.1.0"
json-stringify-safe "^5.0.1"
@@ -10885,6 +10893,11 @@ fast-copy@^2.1.0:
resolved "https://registry.yarnpkg.com/fast-copy/-/fast-copy-2.1.1.tgz#f5cbcf2df64215e59b8e43f0b2caabc19848083a"
integrity sha512-Qod3DdRgFZ8GUIM6ygeoZYpQ0QLW9cf/FS9KhhjlYggcSZXWAemAw8BOCO5LuYCrR3Uj3qXDVTUzOUwG8C7beQ==
+fast-copy@^2.1.3:
+ version "2.1.3"
+ resolved "https://registry.yarnpkg.com/fast-copy/-/fast-copy-2.1.3.tgz#bf6e05ac3cb7a9d66fbf12c51dd4440e9ddd4afb"
+ integrity sha512-LDzYKNTHhD+XOp8wGMuCkY4eTxFZOOycmpwLBiuF3r3OjOmZnURRD8t2dUAbmKuXGbo/MGggwbSjcBdp8QT0+g==
+
fast-deep-equal@^3.1.1, fast-deep-equal@^3.1.3:
version "3.1.3"
resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz#3a7d56b559d6cbc3eb512325244e619a65c6c525"
@@ -11257,6 +11270,11 @@ follow-redirects@^1.10.0:
resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.13.0.tgz#b42e8d93a2a7eea5ed88633676d6597bc8e384db"
integrity sha512-aq6gF1BEKje4a9i9+5jimNFIpq4Q1WiwBToeRK5NvZBd/TRsmW8BsJfOEGkr76TbOyPVD3OVDN910EcUNtRYEA==
+follow-redirects@^1.14.9:
+ version "1.14.9"
+ resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.14.9.tgz#dd4ea157de7bfaf9ea9b3fbd85aa16951f78d8d7"
+ integrity sha512-MQDfihBQYMcyy5dhRDJUHcw7lb2Pv/TuE6xP1vyraLukNDHKbDxDNaOE3NbCAdKQApno+GPRyo1YAp89yCjK4w==
+
font-family-papandreou@^0.2.0-patch1, font-family-papandreou@^0.2.0-patch2:
version "0.2.0-patch2"
resolved "https://registry.yarnpkg.com/font-family-papandreou/-/font-family-papandreou-0.2.0-patch2.tgz#c75b659e96ffbc7ab2af651cf7b4910b334e8dd2"
@@ -21815,11 +21833,6 @@ retext@^7.0.1:
retext-stringify "^2.0.0"
unified "^8.0.0"
-retry-axios@^2.6.0:
- version "2.6.0"
- resolved "https://registry.yarnpkg.com/retry-axios/-/retry-axios-2.6.0.tgz#d4dc5c8a8e73982e26a705e46a33df99a28723e0"
- integrity sha512-pOLi+Gdll3JekwuFjXO3fTq+L9lzMQGcSq7M5gIjExcl3Gu1hd4XXuf5o3+LuSBsaULQH7DiNbsqPd1chVpQGQ==
-
[email protected], retry@^0.12.0:
version "0.12.0"
resolved "https://registry.yarnpkg.com/retry/-/retry-0.12.0.tgz#1b42a6266a21f07421d1b0b54b7dc167b01c013b"
|
c602cfe9ba849b478b93aee2340f9ff5c718cf01
|
2019-04-19 14:44:30
|
Daniel Bayerlein
|
chore(showcase): Rename "Landing Page" category (#13486)
| false
|
Rename "Landing Page" category (#13486)
|
chore
|
diff --git a/docs/sites.yml b/docs/sites.yml
index 97e0626050180..b3eb280f6466d 100644
--- a/docs/sites.yml
+++ b/docs/sites.yml
@@ -2501,7 +2501,7 @@
description: >
Mobius Labs landing page, a Start-up working on Computer Vision
categories:
- - Landing page
+ - Landing Page
- Marketing
- Technology
- AI
@@ -3523,7 +3523,7 @@
description: >
Birra Napoli official site
categories:
- - Landing page
+ - Landing Page
- Business
- Food
- Beverage
@@ -3845,7 +3845,7 @@
description: Seamlessly share Contacts with G Suite team members
featured: false
categories:
- - Landing page
+ - Landing Page
- Blog
built_by: Logicwind
built_by_url: "https://www.logicwind.com"
|
c4c7563d8dc167561962c4ab7c6ef8f2e2d3eec9
|
2020-05-22 01:24:13
|
Laurie Barth
|
chore(release): Publish
| false
|
Publish
|
chore
|
diff --git a/packages/gatsby-admin/CHANGELOG.md b/packages/gatsby-admin/CHANGELOG.md
index c8c9812bb0d35..1daf9e0b20070 100644
--- a/packages/gatsby-admin/CHANGELOG.md
+++ b/packages/gatsby-admin/CHANGELOG.md
@@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [0.1.46](https://github.com/gatsbyjs/gatsby/compare/[email protected]@0.1.46) (2020-05-21)
+
+**Note:** Version bump only for package gatsby-admin
+
## [0.1.45](https://github.com/gatsbyjs/gatsby/compare/[email protected]@0.1.45) (2020-05-20)
**Note:** Version bump only for package gatsby-admin
diff --git a/packages/gatsby-admin/package.json b/packages/gatsby-admin/package.json
index 160ce44a61ae7..67539943b8372 100644
--- a/packages/gatsby-admin/package.json
+++ b/packages/gatsby-admin/package.json
@@ -1,6 +1,6 @@
{
"name": "gatsby-admin",
- "version": "0.1.45",
+ "version": "0.1.46",
"main": "index.js",
"author": "Max Stoiber",
"license": "MIT",
@@ -8,7 +8,7 @@
"dependencies": {
"@typescript-eslint/eslint-plugin": "^2.28.0",
"@typescript-eslint/parser": "^2.28.0",
- "gatsby": "^2.22.4",
+ "gatsby": "^2.22.5",
"gatsby-plugin-typescript": "^2.4.3",
"gatsby-source-graphql": "^2.5.2",
"react": "^16.12.0",
diff --git a/packages/gatsby-cli/CHANGELOG.md b/packages/gatsby-cli/CHANGELOG.md
index d6bbe7dd792f1..8fd1944b652db 100644
--- a/packages/gatsby-cli/CHANGELOG.md
+++ b/packages/gatsby-cli/CHANGELOG.md
@@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [2.12.30](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.12.30) (2020-05-21)
+
+**Note:** Version bump only for package gatsby-cli
+
## [2.12.29](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.12.29) (2020-05-20)
**Note:** Version bump only for package gatsby-cli
diff --git a/packages/gatsby-cli/package.json b/packages/gatsby-cli/package.json
index 53495a1620078..569e76ef90946 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": "2.12.29",
+ "version": "2.12.30",
"author": "Kyle Mathews <[email protected]>",
"bin": {
"gatsby": "lib/index.js"
diff --git a/packages/gatsby-theme-blog-core/CHANGELOG.md b/packages/gatsby-theme-blog-core/CHANGELOG.md
index 8d7b0cb058b5f..3b7e87005883e 100644
--- a/packages/gatsby-theme-blog-core/CHANGELOG.md
+++ b/packages/gatsby-theme-blog-core/CHANGELOG.md
@@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [1.5.21](https://github.com/gatsbyjs/gatsby/compare/[email protected]@1.5.21) (2020-05-21)
+
+**Note:** Version bump only for package gatsby-theme-blog-core
+
## [1.5.20](https://github.com/gatsbyjs/gatsby/compare/[email protected]@1.5.20) (2020-05-20)
**Note:** Version bump only for package gatsby-theme-blog-core
diff --git a/packages/gatsby-theme-blog-core/package.json b/packages/gatsby-theme-blog-core/package.json
index 6e96fe96ffe8b..c08959056e14d 100644
--- a/packages/gatsby-theme-blog-core/package.json
+++ b/packages/gatsby-theme-blog-core/package.json
@@ -1,6 +1,6 @@
{
"name": "gatsby-theme-blog-core",
- "version": "1.5.20",
+ "version": "1.5.21",
"main": "index.js",
"author": "christopherbiscardi <[email protected]> (@chrisbiscardi)",
"license": "MIT",
@@ -30,7 +30,7 @@
},
"devDependencies": {
"@mdx-js/react": "^1.6.1",
- "gatsby": "^2.22.4",
+ "gatsby": "^2.22.5",
"prettier": "2.0.5",
"react": "^16.12.0",
"react-dom": "^16.12.0"
diff --git a/packages/gatsby-theme-blog/CHANGELOG.md b/packages/gatsby-theme-blog/CHANGELOG.md
index f5fd09669f9d4..8490ab07b8754 100644
--- a/packages/gatsby-theme-blog/CHANGELOG.md
+++ b/packages/gatsby-theme-blog/CHANGELOG.md
@@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [1.6.21](https://github.com/gatsbyjs/gatsby/compare/[email protected]@1.6.21) (2020-05-21)
+
+**Note:** Version bump only for package gatsby-theme-blog
+
## [1.6.20](https://github.com/gatsbyjs/gatsby/compare/[email protected]@1.6.20) (2020-05-20)
**Note:** Version bump only for package gatsby-theme-blog
diff --git a/packages/gatsby-theme-blog/package.json b/packages/gatsby-theme-blog/package.json
index 5b148100fa4b7..2054ace3b6dbe 100644
--- a/packages/gatsby-theme-blog/package.json
+++ b/packages/gatsby-theme-blog/package.json
@@ -1,6 +1,6 @@
{
"name": "gatsby-theme-blog",
- "version": "1.6.20",
+ "version": "1.6.21",
"description": "A Gatsby theme for miscellaneous blogging with a dark/light mode",
"main": "index.js",
"keywords": [
@@ -29,7 +29,7 @@
"gatsby-plugin-react-helmet": "^3.3.2",
"gatsby-plugin-theme-ui": "^0.2.53",
"gatsby-plugin-twitter": "^2.3.2",
- "gatsby-theme-blog-core": "^1.5.20",
+ "gatsby-theme-blog-core": "^1.5.21",
"mdx-utils": "0.2.0",
"react-helmet": "^5.2.1",
"react-switch": "^5.0.1",
@@ -39,7 +39,7 @@
"typography-theme-wordpress-2016": "^0.16.19"
},
"devDependencies": {
- "gatsby": "^2.22.4",
+ "gatsby": "^2.22.5",
"prettier": "2.0.5",
"react": "^16.12.0",
"react-dom": "^16.12.0"
diff --git a/packages/gatsby-theme-notes/CHANGELOG.md b/packages/gatsby-theme-notes/CHANGELOG.md
index bd47c1bae4598..766c7040c5b3d 100644
--- a/packages/gatsby-theme-notes/CHANGELOG.md
+++ b/packages/gatsby-theme-notes/CHANGELOG.md
@@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [1.3.47](https://github.com/gatsbyjs/gatsby/compare/[email protected]@1.3.47) (2020-05-21)
+
+**Note:** Version bump only for package gatsby-theme-notes
+
## [1.3.46](https://github.com/gatsbyjs/gatsby/compare/[email protected]@1.3.46) (2020-05-20)
**Note:** Version bump only for package gatsby-theme-notes
diff --git a/packages/gatsby-theme-notes/package.json b/packages/gatsby-theme-notes/package.json
index 46889d39d9050..019665c3bc586 100644
--- a/packages/gatsby-theme-notes/package.json
+++ b/packages/gatsby-theme-notes/package.json
@@ -1,7 +1,7 @@
{
"name": "gatsby-theme-notes",
"description": "Gatsby Theme for adding a notes section to your website",
- "version": "1.3.46",
+ "version": "1.3.47",
"author": "John Otander",
"license": "MIT",
"main": "index.js",
@@ -20,7 +20,7 @@
},
"homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-theme-notes#readme",
"devDependencies": {
- "gatsby": "^2.22.4",
+ "gatsby": "^2.22.5",
"react": "^16.12.0",
"react-dom": "^16.12.0"
},
diff --git a/packages/gatsby-theme-ui-preset/CHANGELOG.md b/packages/gatsby-theme-ui-preset/CHANGELOG.md
index 19c5878be9f3c..3db522b958cc6 100644
--- a/packages/gatsby-theme-ui-preset/CHANGELOG.md
+++ b/packages/gatsby-theme-ui-preset/CHANGELOG.md
@@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [0.0.36](https://github.com/gatsbyjs/gatsby/compare/[email protected]@0.0.36) (2020-05-21)
+
+**Note:** Version bump only for package gatsby-theme-ui-preset
+
## [0.0.35](https://github.com/gatsbyjs/gatsby/compare/[email protected]@0.0.35) (2020-05-20)
**Note:** Version bump only for package gatsby-theme-ui-preset
diff --git a/packages/gatsby-theme-ui-preset/package.json b/packages/gatsby-theme-ui-preset/package.json
index c89124f33a761..997ab2ddf8d84 100644
--- a/packages/gatsby-theme-ui-preset/package.json
+++ b/packages/gatsby-theme-ui-preset/package.json
@@ -1,6 +1,6 @@
{
"name": "gatsby-theme-ui-preset",
- "version": "0.0.35",
+ "version": "0.0.36",
"description": "A Gatsby theme for theme-ui styles",
"main": "index.js",
"keywords": [
@@ -30,7 +30,7 @@
"typography-theme-wordpress-2016": "^0.16.19"
},
"devDependencies": {
- "gatsby": "^2.22.4",
+ "gatsby": "^2.22.5",
"prettier": "2.0.5",
"react": "^16.12.0",
"react-dom": "^16.12.0"
diff --git a/packages/gatsby/CHANGELOG.md b/packages/gatsby/CHANGELOG.md
index 9e94a8ae9442b..095777e743edf 100644
--- a/packages/gatsby/CHANGELOG.md
+++ b/packages/gatsby/CHANGELOG.md
@@ -3,6 +3,13 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [2.22.5](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.22.5) (2020-05-21)
+
+### Bug Fixes
+
+- **gatsby:** add control-has-associated-label rule into eslint-config ([#24311](https://github.com/gatsbyjs/gatsby/issues/24311)) ([c1ae8f2](https://github.com/gatsbyjs/gatsby/commit/c1ae8f2))
+- **gatsby:** adjust `create-react-context` alias to match actual package exports ([#24305](https://github.com/gatsbyjs/gatsby/issues/24305)) ([cb5d055](https://github.com/gatsbyjs/gatsby/commit/cb5d055))
+
## [2.22.4](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.22.4) (2020-05-20)
**Note:** Version bump only for package gatsby
diff --git a/packages/gatsby/package.json b/packages/gatsby/package.json
index 83d8e315df238..fa72d44dbfd7b 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": "2.22.4",
+ "version": "2.22.5",
"author": "Kyle Mathews <[email protected]>",
"bin": {
"gatsby": "./dist/bin/gatsby.js"
@@ -72,7 +72,7 @@
"flat": "^4.1.0",
"fs-exists-cached": "1.0.0",
"fs-extra": "^8.1.0",
- "gatsby-cli": "^2.12.29",
+ "gatsby-cli": "^2.12.30",
"gatsby-core-utils": "^1.3.2",
"gatsby-graphiql-explorer": "^0.4.2",
"gatsby-link": "^2.4.3",
|
791102b512d780ce08fbec722ff5f194db6b2619
|
2019-09-28 04:58:45
|
renovate[bot]
|
chore: update minor updates in packages except react, babel and eslint (#17951)
| false
|
update minor updates in packages except react, babel and eslint (#17951)
|
chore
|
diff --git a/packages/gatsby-plugin-preload-fonts/package.json b/packages/gatsby-plugin-preload-fonts/package.json
index 0da8cac948c1c..ecb750baacf8d 100644
--- a/packages/gatsby-plugin-preload-fonts/package.json
+++ b/packages/gatsby-plugin-preload-fonts/package.json
@@ -12,7 +12,7 @@
},
"dependencies": {
"chalk": "^2.4.2",
- "date-fns": "^2.3.0",
+ "date-fns": "^2.4.0",
"fs-extra": "^8.1.0",
"graphql-request": "^1.8.2",
"progress": "^2.0.3",
diff --git a/packages/gatsby-transformer-screenshot/lambda/package.json b/packages/gatsby-transformer-screenshot/lambda/package.json
index 08f66fc985f3e..94b7c5f9ae814 100644
--- a/packages/gatsby-transformer-screenshot/lambda/package.json
+++ b/packages/gatsby-transformer-screenshot/lambda/package.json
@@ -4,7 +4,7 @@
"tar": "^4.4.13"
},
"devDependencies": {
- "aws-sdk": "^2.537.0"
+ "aws-sdk": "^2.538.0"
},
"keywords": [
"gatsby-plugin"
diff --git a/packages/gatsby/package.json b/packages/gatsby/package.json
index cb771c1a39a1a..a296e8a36ea3a 100644
--- a/packages/gatsby/package.json
+++ b/packages/gatsby/package.json
@@ -62,7 +62,7 @@
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-react-hooks": "^1.7.0",
- "event-source-polyfill": "^1.0.8",
+ "event-source-polyfill": "^1.0.9",
"express": "^4.17.1",
"express-graphql": "^0.9.0",
"fast-levenshtein": "^2.0.6",
diff --git a/yarn.lock b/yarn.lock
index a3d2db7574031..47104b3c4a0c4 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -6506,10 +6506,10 @@ date-fns@^1.27.2, date-fns@^1.30.1:
resolved "https://registry.yarnpkg.com/date-fns/-/date-fns-1.30.1.tgz#2e71bf0b119153dbb4cc4e88d9ea5acfb50dc05c"
integrity sha512-hBSVCvSmWC+QypYObzwGOd9wqdDpOt+0wl0KbU+R+uuZBS1jN8VsD1ss3irQDknRj5NvxiTF6oj/nDRnN/UQNw==
-date-fns@^2.3.0:
- version "2.3.0"
- resolved "https://registry.yarnpkg.com/date-fns/-/date-fns-2.3.0.tgz#017eae725d0c46173b572da025fb5e4e534270fd"
- integrity sha512-A8o+iXBVqQayl9Z39BHgb7m/zLOfhF7LK82t+n9Fq1adds1vaUn8ByVoADqWLe4OTc6BZYc/FdbdTwufNYqkJw==
+date-fns@^2.4.0:
+ version "2.4.0"
+ resolved "https://registry.yarnpkg.com/date-fns/-/date-fns-2.4.0.tgz#e02d1d08ce80ae1db3de40a0028c9f54203d034b"
+ integrity sha512-xS547fK1omgCgOGbyU0fBY2pdeXQ9/WO/PMsVgX1jtF56dXNHrV3Z+GKWIOE7IG+UEeu+fTyTlnIvBKbxXxdSw==
date-now@^0.1.4:
version "0.1.4"
@@ -7869,10 +7869,10 @@ eval@^0.1.0, eval@^0.1.4:
dependencies:
require-like ">= 0.1.1"
-event-source-polyfill@^1.0.8:
- version "1.0.8"
- resolved "https://registry.yarnpkg.com/event-source-polyfill/-/event-source-polyfill-1.0.8.tgz#a0d40fad813bf2ed2ccf3b7839f9d625768fc310"
- integrity sha512-wC9j5vjH9Xu9s8XhumgBoypdFJswraU1HXykqCCD/b7q+EH4P/avf5fM1e8IiHyHNZOeOiWwrki2775XFTYyeg==
+event-source-polyfill@^1.0.9:
+ version "1.0.9"
+ resolved "https://registry.yarnpkg.com/event-source-polyfill/-/event-source-polyfill-1.0.9.tgz#1fe3ebf8e3faddafd4fc237424f5e5ab2706b6d0"
+ integrity sha512-+x0BMKTYwZcmGmlkHK0GsXkX1+otfEwqu3QitN0wmWuHaZniw3HeIx1k5OjWX3JUHQHlPS4yONol6eokS1ZAWg==
event-target-shim@^5.0.0:
version "5.0.1"
|
c4d6a65689479720f4c9cce1b61f1e0725da6fc7
|
2019-04-11 17:25:52
|
James Wakefield
|
chore(starters): add gatsby-firebase-hosting-starter (#13152)
| false
|
add gatsby-firebase-hosting-starter (#13152)
|
chore
|
diff --git a/docs/starters.yml b/docs/starters.yml
index 4bfab9c0f59e7..eb997ab0dea83 100644
--- a/docs/starters.yml
+++ b/docs/starters.yml
@@ -2207,3 +2207,18 @@
features:
- TypeScript support
- Easily work in GatsbyJS and Framer X at the same time
+- url: https://gatsby-firebase-hosting.firebaseapp.com/
+ repo: https://github.com/bijenkorf-james-wakefield/gatsby-firebase-hosting-starter
+ description: A starter with configuration for Firebase Hosting and Cloud Build deployment.
+ tags:
+ - Firebase
+ - Google Cloud
+ - Linting
+ features:
+ - Linting with ESLint
+ - Jest Unit testing configuration
+ - Lint-staged on precommit hook
+ - Commitizen for conventional commit messages
+ - Configuration for Firebase hosting
+ - Configuration for Cloud Build deployment
+ - Clear documentation to have your site deployed on Firebase behind SSL in no time!
|
1d23acacc9322060768f83835f8a1e00f336519a
|
2019-07-06 05:15:36
|
renovate[bot]
|
fix(starters): update dependency gatsby-plugin-theme-ui to ^0.… (#15444)
| false
|
update dependency gatsby-plugin-theme-ui to ^0.… (#15444)
|
fix
|
diff --git a/themes/gatsby-theme-blog/package.json b/themes/gatsby-theme-blog/package.json
index a5d2dd5947819..942ffd6c23fda 100644
--- a/themes/gatsby-theme-blog/package.json
+++ b/themes/gatsby-theme-blog/package.json
@@ -23,7 +23,7 @@
"gatsby-plugin-mdx": "^1.0.7",
"gatsby-plugin-react-helmet": "^3.1.0",
"gatsby-plugin-sharp": "^2.2.2",
- "gatsby-plugin-theme-ui": "^0.2.5",
+ "gatsby-plugin-theme-ui": "^0.2.6",
"gatsby-plugin-twitter": "^2.1.0",
"gatsby-remark-code-titles": "^1.1.0",
"gatsby-remark-copy-linked-files": "^2.1.0",
diff --git a/themes/gatsby-theme-notes/package.json b/themes/gatsby-theme-notes/package.json
index 37b4ebb101a7c..c5871ddcbff1e 100644
--- a/themes/gatsby-theme-notes/package.json
+++ b/themes/gatsby-theme-notes/package.json
@@ -33,7 +33,7 @@
"gatsby-plugin-meta-redirect": "^1.1.1",
"gatsby-plugin-og-image": "0.0.1",
"gatsby-plugin-redirects": "^1.0.0",
- "gatsby-plugin-theme-ui": "^0.2.5",
+ "gatsby-plugin-theme-ui": "^0.2.6",
"gatsby-source-filesystem": "^2.1.2",
"is-present": "^1.0.0",
"react-feather": "^1.1.6",
|
b605f3a83685ca3d7104cd723a92c79fbff7d4c3
|
2019-04-24 20:33:51
|
Jorge Galat
|
fix(docs): Fix flatten to include current item (#13590) (#13598)
| false
|
Fix flatten to include current item (#13590) (#13598)
|
fix
|
diff --git a/www/src/pages/contributing/stub-list.js b/www/src/pages/contributing/stub-list.js
index 42f40d2224e8d..26cbd144ce082 100644
--- a/www/src/pages/contributing/stub-list.js
+++ b/www/src/pages/contributing/stub-list.js
@@ -19,7 +19,8 @@ const findStubs = pages =>
const flatten = pages =>
pages.reduce(
- (flat, item) => flat.concat(item.items ? flatten(item.items) : item),
+ (flat, item) =>
+ flat.concat(item.items ? flatten(item.items).concat(item) : item),
[]
)
|
62cdce2cc2cce305c1302c2ebdfa3b7c1d789d35
|
2019-06-30 16:44:07
|
Michal Piechowiak
|
fix: pin terser-webpack-plugin (#15253)
| false
|
pin terser-webpack-plugin (#15253)
|
fix
|
diff --git a/packages/gatsby/package.json b/packages/gatsby/package.json
index a71277d76d27b..f35f0da645c64 100644
--- a/packages/gatsby/package.json
+++ b/packages/gatsby/package.json
@@ -119,7 +119,7 @@
"stack-trace": "^0.0.10",
"string-similarity": "^1.2.0",
"style-loader": "^0.21.0",
- "terser-webpack-plugin": "^1.2.2",
+ "terser-webpack-plugin": "1.2.4",
"true-case-path": "^1.0.3",
"type-of": "^2.0.1",
"url-loader": "^1.0.1",
diff --git a/yarn.lock b/yarn.lock
index 7e44210d30fbc..b3ce861c3ef1b 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -18363,6 +18363,11 @@ serialize-javascript@^1.4.0:
version "1.5.0"
resolved "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-1.5.0.tgz#1aa336162c88a890ddad5384baebc93a655161fe"
+serialize-javascript@^1.7.0:
+ version "1.7.0"
+ resolved "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-1.7.0.tgz#d6e0dfb2a3832a8c94468e6eb1db97e55a192a65"
+ integrity sha512-ke8UG8ulpFOxO8f8gRYabHQe/ZntKlcig2Mp+8+URDP1D8vJZ0KUt7LYo07q25Z/+JVSgpr/cui9PIp5H6/+nA==
+
serve-index@^1.7.2:
version "1.9.1"
resolved "https://registry.yarnpkg.com/serve-index/-/serve-index-1.9.1.tgz#d3768d69b1e7d82e5ce050fff5b453bea12a9239"
@@ -18781,7 +18786,7 @@ source-map-support@^0.5.0, source-map-support@^0.5.6, source-map-support@^0.5.9:
buffer-from "^1.0.0"
source-map "^0.6.0"
-source-map-support@^0.5.5:
+source-map-support@^0.5.5, source-map-support@~0.5.10:
version "0.5.12"
resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.12.tgz#b4f3b10d51857a5af0138d3ce8003b201613d599"
integrity sha512-4h2Pbvyy15EE02G+JOZpUCmqWJuqrs+sEkzewTm++BPi7Hvn/HwcqLAcNxYAyI0x13CpPPn+kMjl+hplXMHITQ==
@@ -19678,7 +19683,22 @@ term-size@^1.2.0:
dependencies:
execa "^0.7.0"
-terser-webpack-plugin@^1.1.0, terser-webpack-plugin@^1.2.2:
[email protected]:
+ version "1.2.4"
+ resolved "https://registry.yarnpkg.com/terser-webpack-plugin/-/terser-webpack-plugin-1.2.4.tgz#56f87540c28dd5265753431009388f473b5abba3"
+ integrity sha512-64IiILNQlACWZLzFlpzNaG0bpQ4ytaB7fwOsbpsdIV70AfLUmIGGeuKL0YV2WmtcrURjE2aOvHD4/lrFV3Rg+Q==
+ dependencies:
+ cacache "^11.3.2"
+ find-cache-dir "^2.0.0"
+ is-wsl "^1.1.0"
+ schema-utils "^1.0.0"
+ serialize-javascript "^1.7.0"
+ source-map "^0.6.1"
+ terser "^3.17.0"
+ webpack-sources "^1.3.0"
+ worker-farm "^1.7.0"
+
+terser-webpack-plugin@^1.1.0:
version "1.2.2"
resolved "https://registry.yarnpkg.com/terser-webpack-plugin/-/terser-webpack-plugin-1.2.2.tgz#9bff3a891ad614855a7dde0d707f7db5a927e3d9"
dependencies:
@@ -19699,6 +19719,15 @@ terser@^3.16.1:
source-map "~0.6.1"
source-map-support "~0.5.9"
+terser@^3.17.0:
+ version "3.17.0"
+ resolved "https://registry.yarnpkg.com/terser/-/terser-3.17.0.tgz#f88ffbeda0deb5637f9d24b0da66f4e15ab10cb2"
+ integrity sha512-/FQzzPJmCpjAH9Xvk2paiWrFq+5M6aVOf+2KRbwhByISDX/EujxsK+BAvrhb6H+2rtrLCHK9N01wO014vrIwVQ==
+ dependencies:
+ commander "^2.19.0"
+ source-map "~0.6.1"
+ source-map-support "~0.5.10"
+
test-exclude@^4.2.1:
version "4.2.3"
resolved "https://registry.yarnpkg.com/test-exclude/-/test-exclude-4.2.3.tgz#a9a5e64474e4398339245a0a769ad7c2f4a97c20"
@@ -21346,6 +21375,13 @@ worker-farm@^1.5.2:
dependencies:
errno "~0.1.7"
+worker-farm@^1.7.0:
+ version "1.7.0"
+ resolved "https://registry.yarnpkg.com/worker-farm/-/worker-farm-1.7.0.tgz#26a94c5391bbca926152002f69b84a4bf772e5a8"
+ integrity sha512-rvw3QTZc8lAxyVrqcSGVm5yP/IJ2UcB3U0graE3LCFoZ0Yn2x4EoVSqJKdB/T5M+FLcRPjz4TDacRf3OCfNUzw==
+ dependencies:
+ errno "~0.1.7"
+
wrap-ansi@^2.0.0:
version "2.1.0"
resolved "http://registry.npmjs.org/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85"
|
936c74ea7ff9965c993541bd8feea82e40c0919b
|
2021-02-06 14:24:11
|
Matt Kane
|
chore(create-gatsby): Use new image plugin (#29356)
| false
|
Use new image plugin (#29356)
|
chore
|
diff --git a/packages/create-gatsby/src/features.json b/packages/create-gatsby/src/features.json
index d7e5c4d99ace8..d997b79604363 100644
--- a/packages/create-gatsby/src/features.json
+++ b/packages/create-gatsby/src/features.json
@@ -2,10 +2,13 @@
"gatsby-plugin-google-analytics": {
"message": "Add the Google Analytics tracking script"
},
- "gatsby-plugin-sharp": {
+ "gatsby-plugin-image": {
"message": "Add responsive images",
- "plugins": ["gatsby-transformer-sharp", "gatsby-source-filesystem:images"],
- "dependencies": ["gatsby-image"],
+ "plugins": [
+ "gatsby-plugin-sharp",
+ "gatsby-transformer-sharp",
+ "gatsby-source-filesystem:images"
+ ],
"options": {
"gatsby-source-filesystem:images": {
"name": "images",
|
9b2c82c6af2dfdebd966ba20ce7dade8d438756a
|
2021-06-08 05:09:08
|
Megan Sullivan
|
docs(functions): move functions docs from how-to section to reference section (#31815)
| false
|
move functions docs from how-to section to reference section (#31815)
|
docs
|
diff --git a/docs/docs/how-to/functions/getting-started.md b/docs/docs/reference/functions/getting-started.md
similarity index 96%
rename from docs/docs/how-to/functions/getting-started.md
rename to docs/docs/reference/functions/getting-started.md
index be17675bf4946..f0596510aa8d5 100644
--- a/docs/docs/how-to/functions/getting-started.md
+++ b/docs/docs/reference/functions/getting-started.md
@@ -15,7 +15,7 @@ examples:
Gatsby Functions help you build [Express-like](https://expressjs.com/) backends without running servers.
-Functions are currently in beta and can be enabled by adding the `FUNCTIONS` flag to your `gatsby-config.js` to sites running Gatsby 3.4 and above. [Learn more and join the discussion](https://github.com/gatsbyjs/gatsby/discussions/30735).
+Functions are generally available in sites running Gatsby 3.7 and above. [Learn more and join the discussion](https://github.com/gatsbyjs/gatsby/discussions/30735).
## Hello World
diff --git a/docs/docs/how-to/functions/middleware-and-helpers.md b/docs/docs/reference/functions/middleware-and-helpers.md
similarity index 100%
rename from docs/docs/how-to/functions/middleware-and-helpers.md
rename to docs/docs/reference/functions/middleware-and-helpers.md
diff --git a/docs/docs/how-to/functions/routing.md b/docs/docs/reference/functions/routing.md
similarity index 100%
rename from docs/docs/how-to/functions/routing.md
rename to docs/docs/reference/functions/routing.md
|
df3640679b5e161c4fd285b87ed32bb1224928b8
|
2021-12-03 14:48:26
|
renovate[bot]
|
chore(deps): update sharp (#34120)
| false
|
update sharp (#34120)
|
chore
|
diff --git a/packages/gatsby-plugin-manifest/package.json b/packages/gatsby-plugin-manifest/package.json
index 969266606b795..a343937d9ee4a 100644
--- a/packages/gatsby-plugin-manifest/package.json
+++ b/packages/gatsby-plugin-manifest/package.json
@@ -11,7 +11,7 @@
"gatsby-core-utils": "^3.4.0-next.0",
"gatsby-plugin-utils": "^2.4.0-next.0",
"semver": "^7.3.5",
- "sharp": "^0.29.2"
+ "sharp": "^0.29.3"
},
"devDependencies": {
"@babel/cli": "^7.15.4",
diff --git a/packages/gatsby-plugin-sharp/package.json b/packages/gatsby-plugin-sharp/package.json
index e9a16da64d852..9ed682c2a773d 100644
--- a/packages/gatsby-plugin-sharp/package.json
+++ b/packages/gatsby-plugin-sharp/package.json
@@ -22,14 +22,14 @@
"probe-image-size": "^6.0.0",
"progress": "^2.0.3",
"semver": "^7.3.5",
- "sharp": "^0.29.2",
+ "sharp": "^0.29.3",
"svgo": "1.3.2",
"uuid": "3.4.0"
},
"devDependencies": {
"@babel/cli": "^7.15.4",
"@babel/core": "^7.15.5",
- "@types/sharp": "^0.29.2",
+ "@types/sharp": "^0.29.4",
"babel-preset-gatsby-package": "^2.4.0-next.0",
"cross-env": "^7.0.3",
"gatsby-plugin-image": "^2.4.0-next.0"
diff --git a/packages/gatsby-remark-images-contentful/package.json b/packages/gatsby-remark-images-contentful/package.json
index 442005e906c1d..179e0aa0a4229 100644
--- a/packages/gatsby-remark-images-contentful/package.json
+++ b/packages/gatsby-remark-images-contentful/package.json
@@ -22,7 +22,7 @@
"is-relative-url": "^3.0.0",
"lodash": "^4.17.21",
"semver": "^7.3.5",
- "sharp": "^0.29.2",
+ "sharp": "^0.29.3",
"unist-util-select": "^3.0.4"
},
"devDependencies": {
diff --git a/packages/gatsby-source-shopify/package.json b/packages/gatsby-source-shopify/package.json
index 034dcab66f986..922537520854a 100644
--- a/packages/gatsby-source-shopify/package.json
+++ b/packages/gatsby-source-shopify/package.json
@@ -24,14 +24,14 @@
"gatsby-plugin-utils": "^2.4.0-next.0",
"gatsby-source-filesystem": "^4.4.0-next.0",
"node-fetch": "^2.6.6",
- "sharp": "^0.29.2",
+ "sharp": "^0.29.3",
"shift-left": "^0.1.5"
},
"devDependencies": {
"@types/jest": "^26.0.24",
"@types/node": "^14.17.32",
"@types/node-fetch": "^2.5.12",
- "@types/sharp": "^0.29.2",
+ "@types/sharp": "^0.29.4",
"cross-env": "^7.0.3",
"gatsby-plugin-image": "^2.4.0-next.0",
"msw": "^0.35.0",
diff --git a/packages/gatsby-source-wordpress/package.json b/packages/gatsby-source-wordpress/package.json
index 4f1249bd0af49..4976a400f5c44 100644
--- a/packages/gatsby-source-wordpress/package.json
+++ b/packages/gatsby-source-wordpress/package.json
@@ -39,7 +39,7 @@
"read-chunk": "^3.2.0",
"replaceall": "^0.1.6",
"semver": "^7.3.5",
- "sharp": "^0.29.2",
+ "sharp": "^0.29.3",
"valid-url": "^1.0.9"
},
"devDependencies": {
diff --git a/packages/gatsby-transformer-sharp/package.json b/packages/gatsby-transformer-sharp/package.json
index 5764ed5adadbb..8d890af4cc4ec 100644
--- a/packages/gatsby-transformer-sharp/package.json
+++ b/packages/gatsby-transformer-sharp/package.json
@@ -14,12 +14,12 @@
"potrace": "^2.1.8",
"probe-image-size": "^6.0.0",
"semver": "^7.3.5",
- "sharp": "^0.29.2"
+ "sharp": "^0.29.3"
},
"devDependencies": {
"@babel/cli": "^7.15.4",
"@babel/core": "^7.15.5",
- "@types/sharp": "^0.29.2",
+ "@types/sharp": "^0.29.4",
"babel-preset-gatsby-package": "^2.4.0-next.0",
"cross-env": "^7.0.3"
},
diff --git a/yarn.lock b/yarn.lock
index fa2638a6f64bb..221210eda83af 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -4463,10 +4463,10 @@
dependencies:
"@types/node" "*"
-"@types/sharp@^0.29.2":
- version "0.29.2"
- resolved "https://registry.yarnpkg.com/@types/sharp/-/sharp-0.29.2.tgz#b4e932e982e258d1013236c8b4bcc14f9883c9a3"
- integrity sha512-tIbMvtPa8kMyFMKNhpsPT1HO3CgXLuiCAA8bxHAGAZLyALpYvYc4hUu3pu0+3oExQA5LwvHrWp+OilgXCYVQgg==
+"@types/sharp@^0.29.4":
+ version "0.29.4"
+ resolved "https://registry.yarnpkg.com/@types/sharp/-/sharp-0.29.4.tgz#e47d8677befc9944d4b9d76ed837452814166de0"
+ integrity sha512-asrPef2LYenr76zBzyy+Fw40yGzq/q/CY77mUP5n43DnuWjQoOB+8vxnzFcqccz+LF+A7mbnknGCfpVWSG82Bw==
dependencies:
"@types/node" "*"
@@ -8935,13 +8935,6 @@ decompress-response@^3.3.0:
dependencies:
mimic-response "^1.0.0"
-decompress-response@^4.2.0:
- version "4.2.1"
- resolved "https://registry.yarnpkg.com/decompress-response/-/decompress-response-4.2.1.tgz#414023cc7a302da25ce2ec82d0d5238ccafd8986"
- integrity sha512-jOSne2qbyE+/r8G1VU+G/82LBs2Fs4LAsTiLSHOCOMZQl2OKZ6i8i4IyHemTe+/yIXOtTcRQMzPcgyhoFlqPkw==
- dependencies:
- mimic-response "^2.0.0"
-
decompress-response@^6.0.0:
version "6.0.0"
resolved "https://registry.yarnpkg.com/decompress-response/-/decompress-response-6.0.0.tgz#ca387612ddb7e104bd16d85aab00d5ecf09c66fc"
@@ -17337,11 +17330,6 @@ mimic-response@^1.0.0, mimic-response@^1.0.1:
version "1.0.1"
resolved "https://registry.yarnpkg.com/mimic-response/-/mimic-response-1.0.1.tgz#4923538878eef42063cb8a3e3b0798781487ab1b"
-mimic-response@^2.0.0:
- version "2.1.0"
- resolved "https://registry.yarnpkg.com/mimic-response/-/mimic-response-2.1.0.tgz#d13763d35f613d09ec37ebb30bac0469c0ee8f43"
- integrity sha512-wXqjST+SLt7R009ySCglWBCFpjUygmCIfD790/kVbiGmUgfYGuB14PiTd5DwVxSV4NcYHjzMkoj5LjQZwTQLEA==
-
mimic-response@^3.1.0:
version "3.1.0"
resolved "https://registry.yarnpkg.com/mimic-response/-/mimic-response-3.1.0.tgz#2d1d59af9c1b129815accc2c46a022a5ce1fa3c9"
@@ -17804,12 +17792,12 @@ nock@^13.1.4:
lodash.set "^4.3.2"
propagate "^2.0.0"
-node-abi@^2.21.0:
- version "2.26.0"
- resolved "https://registry.yarnpkg.com/node-abi/-/node-abi-2.26.0.tgz#355d5d4bc603e856f74197adbf3f5117a396ba40"
- integrity sha512-ag/Vos/mXXpWLLAYWsAoQdgS+gW7IwvgMLOgqopm/DbzAjazLltzgzpVMsFlgmo9TzG5hGXeaBZx2AI731RIsQ==
+node-abi@^3.3.0:
+ version "3.5.0"
+ resolved "https://registry.yarnpkg.com/node-abi/-/node-abi-3.5.0.tgz#26e8b7b251c3260a5ac5ba5aef3b4345a0229248"
+ integrity sha512-LtHvNIBgOy5mO8mPEUtkCW/YCRWYEKshIvqhe1GHHyXEHEB5mgICyYnAcl4qan3uFeRROErKGzatFHPf6kDxWw==
dependencies:
- semver "^5.4.1"
+ semver "^7.3.5"
node-addon-api@^4.2.0:
version "4.2.0"
@@ -19968,10 +19956,10 @@ potrace@^2.1.8:
dependencies:
jimp "^0.14.0"
-prebuild-install@^6.1.4:
- version "6.1.4"
- resolved "https://registry.yarnpkg.com/prebuild-install/-/prebuild-install-6.1.4.tgz#ae3c0142ad611d58570b89af4986088a4937e00f"
- integrity sha512-Z4vpywnK1lBg+zdPCVCsKq0xO66eEV9rWo2zrROGGiRS4JtueBOdlB1FnY8lcy7JsUud/Q3ijUxyWN26Ika0vQ==
+prebuild-install@^7.0.0:
+ version "7.0.0"
+ resolved "https://registry.yarnpkg.com/prebuild-install/-/prebuild-install-7.0.0.tgz#3c5ce3902f1cb9d6de5ae94ca53575e4af0c1574"
+ integrity sha512-IvSenf33K7JcgddNz2D5w521EgO+4aMMjFt73Uk9FRzQ7P+QZPKrp7qPsDydsSwjGt3T5xRNnM1bj1zMTD5fTA==
dependencies:
detect-libc "^1.0.3"
expand-template "^2.0.3"
@@ -19979,11 +19967,11 @@ prebuild-install@^6.1.4:
minimist "^1.2.3"
mkdirp-classic "^0.5.3"
napi-build-utils "^1.0.1"
- node-abi "^2.21.0"
+ node-abi "^3.3.0"
npmlog "^4.0.1"
pump "^3.0.0"
rc "^1.2.7"
- simple-get "^3.0.3"
+ simple-get "^4.0.0"
tar-fs "^2.0.0"
tunnel-agent "^0.6.0"
@@ -23019,17 +23007,17 @@ shallow-copy@~0.0.1:
version "0.0.1"
resolved "https://registry.yarnpkg.com/shallow-copy/-/shallow-copy-0.0.1.tgz#415f42702d73d810330292cc5ee86eae1a11a170"
-sharp@^0.29.2:
- version "0.29.2"
- resolved "https://registry.yarnpkg.com/sharp/-/sharp-0.29.2.tgz#e8c003cd9cb321585b32dbda6eed3baa7d6f2308"
- integrity sha512-XWRdiYLIJ3tDUejRyG24KERnJzMfIoyiJBntd2S6/uj3NEeNgRFRLgiBlvPxMa8aml14dKKD98yHinSNKp1xzQ==
+sharp@^0.29.3:
+ version "0.29.3"
+ resolved "https://registry.yarnpkg.com/sharp/-/sharp-0.29.3.tgz#0da183d626094c974516a48fab9b3e4ba92eb5c2"
+ integrity sha512-fKWUuOw77E4nhpyzCCJR1ayrttHoFHBT2U/kR/qEMRhvPEcluG4BKj324+SCO1e84+knXHwhJ1HHJGnUt4ElGA==
dependencies:
color "^4.0.1"
detect-libc "^1.0.3"
node-addon-api "^4.2.0"
- prebuild-install "^6.1.4"
+ prebuild-install "^7.0.0"
semver "^7.3.5"
- simple-get "^3.1.0"
+ simple-get "^4.0.0"
tar-fs "^2.1.1"
tunnel-agent "^0.6.0"
@@ -23101,12 +23089,12 @@ simple-concat@^1.0.0:
version "1.0.0"
resolved "https://registry.yarnpkg.com/simple-concat/-/simple-concat-1.0.0.tgz#7344cbb8b6e26fb27d66b2fc86f9f6d5997521c6"
-simple-get@^3.0.3, simple-get@^3.1.0:
- version "3.1.0"
- resolved "https://registry.yarnpkg.com/simple-get/-/simple-get-3.1.0.tgz#b45be062435e50d159540b576202ceec40b9c6b3"
- integrity sha512-bCR6cP+aTdScaQCnQKbPKtJOKDp/hj9EDLJo3Nw4y1QksqaovlW/bnptB6/c1e+qmNIDHRK+oXFDdEqBT8WzUA==
+simple-get@^4.0.0:
+ version "4.0.0"
+ resolved "https://registry.yarnpkg.com/simple-get/-/simple-get-4.0.0.tgz#73fa628278d21de83dadd5512d2cc1f4872bd675"
+ integrity sha512-ZalZGexYr3TA0SwySsr5HlgOOinS4Jsa8YB2GJ6lUNAazyAu4KG/VmzMTwAt2YVXzzVj8QmefmAonZIK2BSGcQ==
dependencies:
- decompress-response "^4.2.0"
+ decompress-response "^6.0.0"
once "^1.3.1"
simple-concat "^1.0.0"
|
c054f501ea09df1bbc1feb55b587ffb6d50f7f3a
|
2019-06-15 04:16:12
|
Markos Konstantopoulos
|
docs: end to end testing writing tests. (#14671)
| false
|
end to end testing writing tests. (#14671)
|
docs
|
diff --git a/docs/docs/end-to-end-testing.md b/docs/docs/end-to-end-testing.md
index 1432884aca1c6..b75b03af2d7d8 100644
--- a/docs/docs/end-to-end-testing.md
+++ b/docs/docs/end-to-end-testing.md
@@ -1,8 +1,8 @@
---
-title: "End-to-end testing"
+title: End-to-End Testing
---
-[Cypress](https://www.cypress.io/) is one of the options when it comes to end-to-end (E2E) testing. Cypress is an all-in-one testing framework focused on E2E testing meaning that you don't have to install 10 different things to get your test suite set up. You can write your first passing test in minutes without any configuration with the help of Cypress' API which is easy to read and understand. It runs tests as fast as your browser can render content which also makes test-driven development possible. You'll also profit from the time travel feature or the extensive debugging capabilities with Chrome DevTools. Of course you can also use it with Gatsby and this guide will explain how.
+[Cypress](https://www.cypress.io/) is one of the options when it comes to end-to-end (E2E) testing. Cypress is an all-in-one testing framework focused on E2E testing, meaning that you don't have to install 10 different things to get your test suite set up. You can write your first passing test in minutes without any configuration with the help of Cypress' API, which is easy to read and understand. It runs tests as fast as your browser can render content, which also makes test-driven development possible. You'll also profit from the time travel feature or the extensive debugging capabilities with Chrome DevTools. Of course you can also use it with Gatsby, and this guide will explain how.
In order to run Gatsby's development server and Cypress at the same time you'll use the little helper [start-server-and-test](https://github.com/bahmutov/start-server-and-test). If you're already using [react-testing-library](/docs/testing-react-components) for [unit testing](/docs/unit-testing) you might want to install [cypress-testing-library](https://github.com/kentcdodds/cypress-testing-library), too. This way you can use the exact same methods you used with `react-testing-library` in your Cypress tests. Install the following packages to your `devDependencies`:
@@ -10,7 +10,7 @@ In order to run Gatsby's development server and Cypress at the same time you'll
npm install --save-dev cypress start-server-and-test
```
-We also want the urls used by `cy.visit()` or `cy.request()` to be prefixed hence you have to create the file `cypress.json` at the root of your project with the following content:
+We also want the URLs used by `cy.visit()` or `cy.request()` to be prefixed, hence you have to create the file `cypress.json` at the root of your project with the following content:
```json:title=cypress.json
{
@@ -24,8 +24,10 @@ Last but not least you add additional scripts to your `package.json` to run Cypr
{
"scripts": {
"develop": "gatsby develop",
+ // highlight-start
"cy:open": "cypress open",
"test:e2e": "start-server-and-test develop http://localhost:8000 cy:open"
+ // highlight-end
}
}
```
@@ -49,10 +51,123 @@ If you want to run Cypress in Continuous Integration (CI) you have to use `cypre
"scripts": {
"develop": "gatsby develop",
"cy:open": "cypress open",
- "cy:run": "cypress run",
- "test:e2e:ci": "start-server-and-test develop http://localhost:8000 cy:run"
+ "cy:run": "cypress run", // highlight-line
+ "test:e2e": "start-server-and-test develop http://localhost:8000 cy:open"
+ "test:e2e:ci": "start-server-and-test develop http://localhost:8000 cy:run" // highlight-line
}
}
```
Please read the [Cypress' official documentation](https://docs.cypress.io/guides/guides/continuous-integration.html) on CI if you want to know how to setup Travis or GitLab with Cypress.
+
+## Writing tests
+
+A good use case for writing automated end-to-end tests is asserting **accessibility** with [cypress-axe](https://github.com/avanslaars/cypress-axe), a Cypress plugin that incorporates the [axe](https://deque.com/axe) accessibility testing API. While some [manual testing](https://www.smashingmagazine.com/2018/09/importance-manual-accessibility-testing/) is still required to ensure good web accessibility, automation can ease the burden on human testers.
+
+To use cypress-axe you have to install `cypress-axe` and [axe-core](https://github.com/dequelabs/axe-core). You'll also use some commands from [cypress-testing-library](https://testing-library.com/docs/cypress-testing-library/intro) to target elements easier:
+
+```bash
+npm install --save-dev cypress-axe axe-core @testing-library/cypress
+```
+
+Then you add the `cypress-axe` and `cypress-testing-library` commands in `cypress/support/commands.js`:
+
+```js:title=cypress/support/commands.js
+import "./commands"
+//highlight-start
+import "cypress-axe"
+import "@testing-library/cypress/add-commands"
+//highlight-end
+```
+
+Cypress right now will look for tests inside the `cypress/integration` folder. It makes sense to create a new folder `cypress/e2e` (end to end). You can use that folder for tests by adding the following in your `cypress.json`:
+
+```json:title=cypress.json
+{
+ "baseUrl": "http://localhost:8000/"
+ "integrationFolder": "cypress/e2e" // highlight-line
+}
+```
+
+Create a new file inside `cypress/e2e` folder and name it `a11y.test.js`.
+
+You'll use the `beforeEach` hook to run some commands before each test. After cypress loads the homepage you'll use the `checkA11y` method from `cypress-axe` to check for accessibility violations:
+
+```js:title=cypress/e2e/a11y.test.js
+/// <reference types="Cypress" />
+
+describe("Accessibility checks", () => {
+ beforeEach(() => {
+ cy.visit("/")
+ cy.injectAxe()
+ cy.wait(500)
+ })
+ it("Has no detectable a11y violations on load", () => {
+ cy.checkA11y()
+ })
+})
+```
+
+You can run `test:e2e` to run the test. If you already have the development server open you can run `cy:open` instead.
+
+One thing to keep in mind is that you can't always see the exact error message from the sidebar (command log). For that, you have to open the browser developer console and find the message in the output. You can see how an accessibility error looks in the [cypress-axe GitHub page](https://github.com/avanslaars/cypress-axe#output).
+
+You don't have to use the `checkA11y` method only on page load. For example, you can perform a click on a button and check again. This is especially useful if that button opens a modal or a mobile menu for example.
+
+The following test is for the [gatsby-default-starter](https://github.com/gatsbyjs/gatsby-starter-default). Cypress visits the homepage and searches for the link that goes to page 2 with the `getByText` command. Then, performs a click event on that link and checks for accessibility errors on the second page.
+
+```js:title=cypress/e2e/a11y.test.js
+/// <reference types="Cypress" />
+
+describe("Accessibility checks", () => {
+ beforeEach(() => {
+ cy.visit("/")
+ cy.injectAxe()
+ cy.wait(500)
+ })
+ it("Has no detectable a11y violations on load", () => {
+ cy.checkA11y()
+ })
+ // highlight-start
+ it("Navigates to page 2 and checks for accessibility violations", () => {
+ cy.getByText(/go to page 2/i)
+ .click()
+ .checkA11y()
+ })
+ // highlight-end
+})
+```
+
+You can also make [assertions](https://docs.cypress.io/guides/core-concepts/introduction-to-cypress.html#Assertions) with the [should command](https://docs.cypress.io/api/commands/should.html#Syntax).
+
+In `gatsby-default-starter` homepage you can write another test that focuses on the footer link. Then you make some assertions on the item that's currently focused:
+
+```js:title=cypress/e2e/a11y.test.js
+/// <reference types="Cypress" />
+
+describe("Accessibility checks", () => {
+ beforeEach(() => {
+ cy.visit("/")
+ cy.injectAxe()
+ cy.wait(500)
+ })
+ it("Has no detectable a11y violations on load", () => {
+ cy.checkA11y()
+ })
+ it("Navigates to page 2 and checks for accessibility violations", () => {
+ cy.getByText(/go to page 2/i)
+ .click()
+ .checkA11y()
+ })
+ // highlight-start
+ it("Checks if footer link is focusable and has the correct attributes", () => {
+ cy.getAllByText("Gatsby").focus()
+
+ cy.focused()
+ .should("have.text", "Gatsby")
+ .should("have.attr", "href", "https://www.gatsbyjs.org")
+ .should("not.have.css", "outline-width", "0px")
+ })
+ // highlight-end
+})
+```
|
6daf8936215a2366e48abca90c646b71a8a1487c
|
2020-09-15 11:14:46
|
Ward Peeters
|
chore: update renovate config (#26892)
| false
|
update renovate config (#26892)
|
chore
|
diff --git a/renovate.json5 b/renovate.json5
index 83114543d03e6..dbdf6ee81ad8f 100644
--- a/renovate.json5
+++ b/renovate.json5
@@ -42,6 +42,14 @@
groupName: "starters and examples",
paths: ["starters/**", "examples/**"],
},
+ {
+ groupName: "babel monorepo",
+ sourceUrlPrefixes: "https://github.com/babel/babel",
+ },
+ {
+ groupName: "dev dependencies",
+ depTypeList: ["devDependencies"],
+ },
// these rules define dependencies that we have special handling for
{
updateTypes: ["minor"],
|
51ff8a647858d8860dbfa59678bf0a1911c38c0c
|
2019-02-28 18:57:42
|
Jarmo Isotalo
|
feat(www): add ga for main CTAs on gatsbyjs.org (#12178)
| false
|
add ga for main CTAs on gatsbyjs.org (#12178)
|
feat
|
diff --git a/www/src/components/button.js b/www/src/components/button.js
index 7cdc5983fafd9..edefdc0cbf778 100644
--- a/www/src/components/button.js
+++ b/www/src/components/button.js
@@ -19,6 +19,7 @@ const Button = ({
tiny,
secondary,
ondark,
+ tracking,
...rest
}) => {
const Tag = components[tag || `link`]
@@ -41,8 +42,42 @@ const Button = ({
},
}
+ const trackingOnClick = e => {
+ if (typeof props.onClick === `function`) {
+ props.onClick(e)
+ }
+
+ let redirect = true
+
+ // Slightly modified logic from the gatsby-plugin-google-analytics
+ // But this one should work with `Link` component as well
+ if (
+ e.button !== 0 ||
+ e.altKey ||
+ e.ctrlKey ||
+ e.metaKey ||
+ e.shiftKey ||
+ e.defaultPrevented
+ ) {
+ redirect = false
+ }
+
+ if (props.target && props.target.toLowerCase() !== `_self`) {
+ redirect = false
+ }
+
+ if (tracking && window.ga) {
+ window.ga(`send`, `event`, {
+ eventCategory: `Outbound Link`,
+ eventAction: `click`,
+ eventLabel: `${tracking} - ${props.to || props.href}`,
+ transport: redirect ? `beacon` : ``,
+ })
+ }
+ }
+
return (
- <Tag {...props} css={css}>
+ <Tag {...props} onClick={trackingOnClick} css={css}>
{children}
{icon && <>{icon}</>}
</Tag>
diff --git a/www/src/components/homepage/homepage-blog.js b/www/src/components/homepage/homepage-blog.js
index d8f190626c445..01bd2a159abe9 100644
--- a/www/src/components/homepage/homepage-blog.js
+++ b/www/src/components/homepage/homepage-blog.js
@@ -18,6 +18,7 @@ const HomepageBlog = ({ posts }) => (
label: `View all posts`,
to: `/blog/`,
icon: ArrowForwardIcon,
+ tracking: `The Gatsby Blog - View all posts`,
},
]}
>
diff --git a/www/src/components/homepage/homepage-ecosystem.js b/www/src/components/homepage/homepage-ecosystem.js
index 651b88c2edca9..92b5f560160d6 100644
--- a/www/src/components/homepage/homepage-ecosystem.js
+++ b/www/src/components/homepage/homepage-ecosystem.js
@@ -155,6 +155,7 @@ const HomepageEcosystem = ({ featuredItems }) => (
label: `Explore the Gatsby Ecosystem`,
to: `/ecosystem/`,
icon: ArrowForwardIcon,
+ tracking: `Plugins - Explore the Gatsby Ecosystem`,
},
]}
inverseStyle={true}
diff --git a/www/src/components/homepage/homepage-section.js b/www/src/components/homepage/homepage-section.js
index 0d6fac03a646e..8d169ae9aea9b 100644
--- a/www/src/components/homepage/homepage-section.js
+++ b/www/src/components/homepage/homepage-section.js
@@ -124,7 +124,7 @@ const HomepageSection = ({
{links && (
<Actions>
{links.map((item, idx) => {
- const { to, label, icon: Icon, secondary } = item
+ const { to, label, icon: Icon, secondary, tracking } = item
return (
<Button
@@ -133,6 +133,7 @@ const HomepageSection = ({
small
ondark={inverseStyle ? true : false}
secondary={secondary}
+ tracking={tracking}
>
{label} {Icon && <Icon />}
</Button>
diff --git a/www/src/components/masthead.js b/www/src/components/masthead.js
index 5c2456eaac93f..f8020dac7cecf 100644
--- a/www/src/components/masthead.js
+++ b/www/src/components/masthead.js
@@ -100,7 +100,12 @@ const MastheadContent = () => (
</span>
apps and websites with React
</h1>
- <Button large to="/docs/" icon={<ArrowForwardIcon />}>
+ <Button
+ large
+ to="/docs/"
+ tracking="MasterHead -> Get Started"
+ icon={<ArrowForwardIcon />}
+ >
Get Started
</Button>
</div>
diff --git a/www/src/pages/index.js b/www/src/pages/index.js
index 72231435e3c9d..8ac3d785a4366 100644
--- a/www/src/pages/index.js
+++ b/www/src/pages/index.js
@@ -215,6 +215,7 @@ class IndexRoute extends React.Component {
<Button
secondary
to="/docs/"
+ tracking="Curious Yet -> Get Started"
overrideCSS={{ marginTop: `1rem` }}
>
Get Started
|
e362ccdaa8cf30b21c69e4389f0b91aa14de7091
|
2020-08-12 17:05:21
|
Ariel Falduto
|
chore(showcase): Add "Ámbito Dólar" site. (#26255)
| false
|
Add "Ámbito Dólar" site. (#26255)
|
chore
|
diff --git a/docs/sites.yml b/docs/sites.yml
index 6db851c92e67b..3ba4685f75a99 100644
--- a/docs/sites.yml
+++ b/docs/sites.yml
@@ -11671,6 +11671,17 @@
- Business
built_by: leaniercode
featured: false
+- title: Ámbito Dólar
+ url: https://ambito-dolar.app
+ main_url: https://ambito-dolar.app
+ description: >
+ Free mobile application that informs the different exchange rates USD vs ARS in Argentina.
+ categories:
+ - App
+ - Landing Page
+ - Finance
+ built_by: Ariel Falduto
+ built_by_url: https://outa.im
- title: UP42
main_url: https://up42.com/
url: https://up42.com/
|
65aeb4bd62b9e3d8df114fae6529db5e13febd30
|
2021-08-04 18:35:33
|
Matt Mortek
|
fix(gatsby-source-shopify): update method of generating published_status when salesChannel parameter is used (#32674)
| false
|
update method of generating published_status when salesChannel parameter is used (#32674)
|
fix
|
diff --git a/packages/gatsby-source-shopify/README.md b/packages/gatsby-source-shopify/README.md
index e9e5cd7e51bd4..81f36374b29b8 100644
--- a/packages/gatsby-source-shopify/README.md
+++ b/packages/gatsby-source-shopify/README.md
@@ -160,6 +160,8 @@ Not set by default. If set to a string (example `My Sales Channel`), only produc
Note: If you set up your site with the Gatsby Cloud Public App integration, `salesChannel` is set for you.
+Note: If you want to filter products by a Private App instead of Public App or default sales channel, you have to provide App ID instead of sales channel name.
+
<div id="images"></div>
## Images
diff --git a/packages/gatsby-source-shopify/src/query-builders/collections-query.ts b/packages/gatsby-source-shopify/src/query-builders/collections-query.ts
index 4059506bf4073..94a8477ffcce2 100644
--- a/packages/gatsby-source-shopify/src/query-builders/collections-query.ts
+++ b/packages/gatsby-source-shopify/src/query-builders/collections-query.ts
@@ -3,7 +3,7 @@ import { BulkQuery } from "./bulk-query"
export class CollectionsQuery extends BulkQuery {
query(date?: Date): string {
const publishedStatus = this.pluginOptions.salesChannel
- ? encodeURIComponent(`${this.pluginOptions.salesChannel}=visible`)
+ ? `'${encodeURIComponent(this.pluginOptions.salesChannel)}:visible'`
: `published`
const filters = [`published_status:${publishedStatus}`]
diff --git a/packages/gatsby-source-shopify/src/query-builders/locations-query.ts b/packages/gatsby-source-shopify/src/query-builders/locations-query.ts
index e2337559fc81c..4e2b293e07f95 100644
--- a/packages/gatsby-source-shopify/src/query-builders/locations-query.ts
+++ b/packages/gatsby-source-shopify/src/query-builders/locations-query.ts
@@ -3,7 +3,7 @@ import { BulkQuery } from "./bulk-query"
export class LocationsQuery extends BulkQuery {
query(date?: Date): string {
const publishedStatus = this.pluginOptions.salesChannel
- ? encodeURIComponent(`${this.pluginOptions.salesChannel}=visible`)
+ ? `'${encodeURIComponent(this.pluginOptions.salesChannel)}:visible'`
: `published`
const filters = [`published_status:${publishedStatus}`]
diff --git a/packages/gatsby-source-shopify/src/query-builders/product-variants-query.ts b/packages/gatsby-source-shopify/src/query-builders/product-variants-query.ts
index 559a405a9b89a..d94548f79b96c 100644
--- a/packages/gatsby-source-shopify/src/query-builders/product-variants-query.ts
+++ b/packages/gatsby-source-shopify/src/query-builders/product-variants-query.ts
@@ -3,7 +3,7 @@ import { BulkQuery } from "./bulk-query"
export class ProductVariantsQuery extends BulkQuery {
query(date?: Date): string {
const publishedStatus = this.pluginOptions.salesChannel
- ? encodeURIComponent(`${this.pluginOptions.salesChannel}=visible`)
+ ? `'${encodeURIComponent(this.pluginOptions.salesChannel)}:visible'`
: `published`
const filters = [`status:active`, `published_status:${publishedStatus}`]
diff --git a/packages/gatsby-source-shopify/src/query-builders/products-query.ts b/packages/gatsby-source-shopify/src/query-builders/products-query.ts
index da2d48eb36638..d45399eec0062 100644
--- a/packages/gatsby-source-shopify/src/query-builders/products-query.ts
+++ b/packages/gatsby-source-shopify/src/query-builders/products-query.ts
@@ -3,7 +3,7 @@ import { BulkQuery } from "./bulk-query"
export class ProductsQuery extends BulkQuery {
query(date?: Date): string {
const publishedStatus = this.pluginOptions.salesChannel
- ? encodeURIComponent(`${this.pluginOptions.salesChannel}=visible`)
+ ? `'${encodeURIComponent(this.pluginOptions.salesChannel)}:visible'`
: `published`
const filters = [`status:active`, `published_status:${publishedStatus}`]
|
d1f5d64bdaf15ebcff2ef5adf063205595b6df5c
|
2019-08-20 10:51:19
|
Nick Richmond
|
chore: Update link to Gatsby unit testing docs for VSCode (#16719)
| false
|
Update link to Gatsby unit testing docs for VSCode (#16719)
|
chore
|
diff --git a/docs/blog/2019-04-30-how-to-build-a-blog-with-wordpress-and-gatsby-part-2/index.md b/docs/blog/2019-04-30-how-to-build-a-blog-with-wordpress-and-gatsby-part-2/index.md
index 1ae26c2991f78..b40d8caba30b2 100644
--- a/docs/blog/2019-04-30-how-to-build-a-blog-with-wordpress-and-gatsby-part-2/index.md
+++ b/docs/blog/2019-04-30-how-to-build-a-blog-with-wordpress-and-gatsby-part-2/index.md
@@ -98,7 +98,7 @@ These files will be present in all Gatsby starters you use, so it's worth your t
"format": "prettier --write src/**/*.{js,jsx}",
"start": "npm run develop",
"serve": "gatsby serve",
- "test": "echo \"Write tests! -> https://gatsby.dev/unit-testing\""
+ "test": "echo \"Write tests! -> https://gatsby.dev/unit-testing \""
},
"repository": {
"type": "git",
diff --git a/examples/recipe-static-image/package.json b/examples/recipe-static-image/package.json
index bef02c65f963c..03640e31d3a74 100644
--- a/examples/recipe-static-image/package.json
+++ b/examples/recipe-static-image/package.json
@@ -10,7 +10,7 @@
"format": "prettier --write src/**/*.{js,jsx}",
"start": "npm run develop",
"serve": "gatsby serve",
- "test": "echo \"Write tests! -> https://gatsby.dev/unit-testing\""
+ "test": "echo \"Write tests! -> https://gatsby.dev/unit-testing \""
},
"dependencies": {
"gatsby": "^2.13.25",
diff --git a/examples/recipe-webpack-image/package.json b/examples/recipe-webpack-image/package.json
index 632054f88cb21..e8c5e1d9bfecf 100644
--- a/examples/recipe-webpack-image/package.json
+++ b/examples/recipe-webpack-image/package.json
@@ -10,7 +10,7 @@
"format": "prettier --write src/**/*.{js,jsx}",
"start": "npm run develop",
"serve": "gatsby serve",
- "test": "echo \"Write tests! -> https://gatsby.dev/unit-testing\""
+ "test": "echo \"Write tests! -> https://gatsby.dev/unit-testing \""
},
"dependencies": {
"gatsby": "^2.13.25",
diff --git a/examples/recipes-gatsby-image/package.json b/examples/recipes-gatsby-image/package.json
index 849d62c875b16..e439929ff1d4d 100644
--- a/examples/recipes-gatsby-image/package.json
+++ b/examples/recipes-gatsby-image/package.json
@@ -34,7 +34,7 @@
"format": "prettier --write src/**/*.{js,jsx}",
"start": "npm run develop",
"serve": "gatsby serve",
- "test": "echo \"Write tests! -> https://gatsby.dev/unit-testing\""
+ "test": "echo \"Write tests! -> https://gatsby.dev/unit-testing \""
},
"repository": {
"type": "git",
diff --git a/examples/using-jest/README.md b/examples/using-jest/README.md
index 81834e725e46e..e3735668bb338 100644
--- a/examples/using-jest/README.md
+++ b/examples/using-jest/README.md
@@ -11,7 +11,7 @@ Kick off your next Gatsby app with some great testing practices enabled via [Jes
Check out the [unit testing doc][unit-testing-doc] for further info!
-[jest]: https://jestjs.io/
+[jest]: https://jestjs.io
[react-testing-library]: https://github.com/testing-library/react-testing-library
[gatsby]: https://gatsbyjs.org
-[unit-testing-doc]: https://www.gatsbyjs.org/docs/unit-testing/
+[unit-testing-doc]: https://www.gatsbyjs.org/docs/unit-testing
diff --git a/examples/using-js-search/package.json b/examples/using-js-search/package.json
index 93088a71db4c1..f061cb9c50cc7 100644
--- a/examples/using-js-search/package.json
+++ b/examples/using-js-search/package.json
@@ -4,7 +4,9 @@
"description": "Gatsby example site to demonstrate client side search",
"version": "0.1.0",
"keywords": [
- "Gatsby", "client side search", "js-search"
+ "Gatsby",
+ "client side search",
+ "js-search"
],
"license": "MIT",
"scripts": {
@@ -12,7 +14,7 @@
"develop": "gatsby develop",
"start": "npm run develop",
"serve": "gatsby serve",
- "test": "echo \"Write tests! -> https://gatsby.dev/unit-testing\""
+ "test": "echo \"Write tests! -> https://gatsby.dev/unit-testing \""
},
"dependencies": {
"axios": "^0.19.0",
diff --git a/examples/using-markdown-pages/package.json b/examples/using-markdown-pages/package.json
index 35da68f36cf51..60c8b094cc17b 100644
--- a/examples/using-markdown-pages/package.json
+++ b/examples/using-markdown-pages/package.json
@@ -32,6 +32,6 @@
"format": "prettier --write src/**/*.{js,jsx}",
"start": "npm run develop",
"serve": "gatsby serve",
- "test": "echo \"Write tests! -> https://gatsby.dev/unit-testing\""
+ "test": "echo \"Write tests! -> https://gatsby.dev/unit-testing \""
}
}
diff --git a/examples/using-shopify/package.json b/examples/using-shopify/package.json
index a8e6750246111..5205375791ba8 100644
--- a/examples/using-shopify/package.json
+++ b/examples/using-shopify/package.json
@@ -29,7 +29,7 @@
"develop": "gatsby develop",
"start": "npm run develop",
"serve": "gatsby serve",
- "test": "echo \"Write tests! -> https://gatsby.dev/unit-testing\""
+ "test": "echo \"Write tests! -> https://gatsby.dev/unit-testing \""
},
"repository": {
"type": "git",
diff --git a/starters/blog/package.json b/starters/blog/package.json
index 30c09082e63dd..8fce99e86b335 100644
--- a/starters/blog/package.json
+++ b/starters/blog/package.json
@@ -54,6 +54,6 @@
"format": "prettier --write \"**/*.{js,jsx,json,md}\"",
"start": "npm run develop",
"serve": "gatsby serve",
- "test": "echo \"Write tests! -> https://gatsby.dev/unit-testing\""
+ "test": "echo \"Write tests! -> https://gatsby.dev/unit-testing \""
}
}
diff --git a/starters/default/package.json b/starters/default/package.json
index 7f408ca170caa..521de7a9ba89f 100644
--- a/starters/default/package.json
+++ b/starters/default/package.json
@@ -31,7 +31,7 @@
"format": "prettier --write \"**/*.{js,jsx,json,md}\"",
"start": "npm run develop",
"serve": "gatsby serve",
- "test": "echo \"Write tests! -> https://gatsby.dev/unit-testing\""
+ "test": "echo \"Write tests! -> https://gatsby.dev/unit-testing \""
},
"repository": {
"type": "git",
diff --git a/starters/hello-world/package.json b/starters/hello-world/package.json
index 7fa38355a674f..6ab92a322da71 100644
--- a/starters/hello-world/package.json
+++ b/starters/hello-world/package.json
@@ -10,7 +10,7 @@
"format": "prettier --write \"**/*.{js,jsx,json,md}\"",
"start": "npm run develop",
"serve": "gatsby serve",
- "test": "echo \"Write tests! -> https://gatsby.dev/unit-testing\""
+ "test": "echo \"Write tests! -> https://gatsby.dev/unit-testing \""
},
"dependencies": {
"gatsby": "^2.13.68",
|
e8eff767eb7fa7c438fef3ed19835171084a3199
|
2019-06-11 01:47:09
|
Dustin Schau
|
chore(blog): add blog post for gatsby + client fit (#14632)
| false
|
add blog post for gatsby + client fit (#14632)
|
chore
|
diff --git a/docs/blog/2019-06-10-how-to-recognize-when-gatsby-is-a-good-fit-for-your-client/index.md b/docs/blog/2019-06-10-how-to-recognize-when-gatsby-is-a-good-fit-for-your-client/index.md
new file mode 100644
index 0000000000000..09aae9f9d9b41
--- /dev/null
+++ b/docs/blog/2019-06-10-how-to-recognize-when-gatsby-is-a-good-fit-for-your-client/index.md
@@ -0,0 +1,53 @@
+---
+title: How To Recognize When Gatsby is a Good Fit for Your Client
+date: 2019-06-10
+author: Justin Emond
+excerpt: "If a client is ready to replace their tech stack, addressing their needs and using a use case is key to determining if Gatsby is a good fit as a replacement."
+tags:
+ - developers
+ - tech stack
+ - wordpress
+---
+
+As a bleeding-edge technology, Gatsby can sometimes be a complex concept to explain to clients. Particularly as budgets shift from IT to marketing, and you have to adapt the conversations for an audience with less technical understanding. But the problem isn’t actually Gatsby’s complexity— it’s that you need to start the conversation by addressing clients’ problems first.
+
+## Start with the Use Case
+
+A colleague decided to leave their current job and start his own business. His boss wasn’t pleased to lose him, which is why when he told him that he was quitting the boss said, “To succeed at your own business, you need to be able to sell wool blankets to people at a baseball game on a 90 degree day.” My colleague replied, “I would rather just sell them beer.”
+
+Unlike many technologies, Gatsby is great. But like most technologies, it’s sometimes a great fit, and sometimes not. Before you can sell Gatsby to a client, you need to ask yourself if Gatsby really is the best approach. When the use case resonates, the solution resonates, and it’s much easier to sell.
+
+In November, I began a conversation with a mid-sized retail and digital commerce consumer business in the fashion and beauty space. They were starting to plan the replacement of their aging, over-engineered five year old tech stack and were struggling with two primary challenges.
+
+- First, the content editorial experience for staff was so poor that multiple team members had actually quit because of it (saying as much in their exit interview).
+- Second, development velocity was painfully slow because of the complex implementation.
+
+Once I talked about the value of a microservices approach, the unbeatable fast speed of a React powered front end, preview, and the partial builds feature on the roadmap Gatsby (and was honest about the trade offs), the client enthusiastically wanted to know more, and they are likely proceeding with a Gatsby stack for their replatform.
+
+Here are three smart points of entry to get the conversation focused on use cases. (To learn more about explaining the technicalities of Gatsby, check out Linda’s extensive article on [how to break down Gatsby in a way that will resonate](/blog/2019-03-07-sell-gatsby-to-clients/).
+
+## #1 Developers are the bottleneck
+
+One of the primary drawbacks of a monolithic CMS like WordPress or Drupal is that the front-end theming layer is tightly coupled with the backend data layer. That means that a developer working only in the theme layer must still be comfortable with PHP, a backend programming language. In a headless approach, using JavaScript at the render layer, a themer only needs to know HTML, CSS, and JavaScript, the languages already in their toolkit.
+
+If the client is suffering from slow developer velocity, this benefit will resonate and provide value to their organization.
+
+## #2 The client wants to be on the bleeding edge
+
+There are two things you need to remember about predicting the future. First, don’t do it—it rarely works well. Second, if you absolutely must, then a handy trick is to look at what teenagers and college kids are using obsessively today, and then wait five years. Ask yourself, when was the last time you met a new engineer excited about the Wordpress or Drupal theming system? Yeah, I thought so.
+
+Gatsby is a bleeding-edge approach to solving problems, and it’s pretty different than anything else out there. But being ahead of the curve offers first-mover advantages to organizations that are comfortable dealing with some the inherent uncertainties in exploring new territory. If this is something that your prospect is looking to take advantage of, Gatsby is a good sell.
+
+## #3 They understand site speed is more than page load times
+
+Mobile websites that take [more than 3 seconds to load have a 53% bounce rate](https://www.thinkwithgoogle.com/marketing-resources/data-measurement/mobile-page-speed-new-industry-benchmarks/), meaning that you lose more than half of your visitors because they would rather try to restart their search than continue waiting for your site. In the ecommerce domain, some estimates say you lose up to [1% of revenue for every 100ms delay](https://www.section.io/blog/page-load-time-bounce-rate/) in page load time. When performant technologies like Gatsby become more common, those numbers are going to become more severe.
+
+> There is fast (which every site should be) and then there is Gatsby-fast.
+
+Every site needs to be performant. There isn’t a site out there where slow response times won’t negatively impact user engagement, conversion, and often, the bottom line. But remember, there is fast (which every site should be) and then there is Gatsby-fast. Companies that migrate to Gatsby will find their site is [between three and 10 times faster](https://www.gatsbyjs.com/guides/why-are-gatsby-sites-fast/). Indeed, the speed of a Gatsby-powered front end resembles more of the instantaneous feel of native mobile apps.
+
+---
+
+Selling Gatsby is just like selling anything else. Focus the conversation on how using Gatsby will support their organizational and personal goals, not on its cool technical features or its fascinating architecture. Be honest about Gatsby in conversations. If your client points out a challenge with your proposed approach, don’t try to minimize it. Acknowledge it, be honest, explore the concern more deeply, and explain it in the greater context of the overall strategy you are advocating.
+
+Do this and Gatsby will resonate.
diff --git a/docs/blog/author.yaml b/docs/blog/author.yaml
index f21ab5622bfa4..633be317b8f4f 100644
--- a/docs/blog/author.yaml
+++ b/docs/blog/author.yaml
@@ -296,6 +296,10 @@
bio: Software developer @ GatsbyJS. Likes solving weird problems, skiing and watching/reading sci-fi. In that order.
avatar: avatars/michal-piechowiak.jpeg
twitter: "@mipiechowiak"
+- id: Justin Emond
+ bio: Drupal engineer to CEO @ ThirdAndGrove. A good day is solving client problems and trying new craft beer
+ avatar: avatars/justin-emond.jpeg
+ twitter: "@justinpemond"
- id: Michelle Gienow
bio: Writes things @ GatsbyJS. Chaotic good frontend dev, caffeine addict, backyard chicken wrangler 🐓.
avatar: avatars/michelle-gienow.jpg
diff --git a/docs/blog/avatars/justin-emond.jpeg b/docs/blog/avatars/justin-emond.jpeg
new file mode 100644
index 0000000000000..5c43d4f2a16b1
Binary files /dev/null and b/docs/blog/avatars/justin-emond.jpeg differ
|
9ed1a62b0a099ce969ecd30edd68a6431ec314c3
|
2022-10-31 21:00:23
|
Ward Peeters
|
chore(release): Publish next
| false
|
Publish next
|
chore
|
diff --git a/packages/gatsby/package.json b/packages/gatsby/package.json
index 56a3ab241e186..29f3f180e831a 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": "5.0.0-next.9",
+ "version": "5.0.0-next.10",
"author": "Kyle Mathews <[email protected]>",
"bin": {
"gatsby": "./cli.js"
|
3eb766918bedbb726d3e1301f380119f6a12576b
|
2019-06-09 18:34:00
|
Michelle Gienow
|
chore(blog): add part 1 delicious simplicity blog post (#14646)
| false
|
add part 1 delicious simplicity blog post (#14646)
|
chore
|
diff --git a/docs/blog/2019-06-08-delicious-simplicity-case-study-part-1/index.md b/docs/blog/2019-06-08-delicious-simplicity-case-study-part-1/index.md
new file mode 100644
index 0000000000000..5a1e932be130e
--- /dev/null
+++ b/docs/blog/2019-06-08-delicious-simplicity-case-study-part-1/index.md
@@ -0,0 +1,46 @@
+---
+title: Delicious Simplicity ❤️ Gatsby: Building Happily Ever After
+date: 2019-06-08
+author: Michelle Gienow
+tags:
+ - case study
+ - developer experience
+ - enterprise
+---
+
+When Brian Webster launched his Los Angeles-based development studio he sought a name that would reflect his passion for elegantly simple design. Founded ten years ago, [Delicious SimplicityL](https://delicioussimplicity.com/) has established a reputation for building clean and clever websites for a select clientele of small to mid-sized enterprise and non-profit organizations. The agency, like pretty much every agency in those days, was a Drupal/WordPress shop. As time went on, modern web design embraced bandwidth-hogging elements like hero images and background videos. Clients definitely wanted these -- delivered, of course, at near-instant download speeds and on a plethora of platforms.
+
+At the same time, WordPress and Drupal had grown into cumbersome monolithic applications bearing massive core cruft (WP genericons font library, much? Didn’t think so). These platforms were increasingly unsuited to creating the well-honed, fully-featured yet fast websites that Brian envisioned, and that clients demanded. It was time to find a new way of working.
+
+He was drawn to the idea of headless CMS (content management systems) decoupled from Drupal and WordPress, but the immediate question was how. Brian wasn’t sure if what he needed even existed, but he knew he had to search for it anyway. “We really needed an upgrade path from Drupal 7, but WordPress just seemed like it would be more of the same. Once Drupal 8 launched I didn’t want us to go into that, either,” Brian recalls. “I spent time evaluating custom solutions with Django and Python and Rails, tons of different frameworks, tons of heartbreak. Heading down the road with some of these thinking, at first, ‘This could be great, we could standardize on this!’...and then, ‘Ugh. No. This is a mess.’ Then I’d have to go back and keep doing what we were doing until I could find something else to try.”
+
+Brian was especially intrigued by JS and Node and React. “The code samples always gave me such envy—short, succinct, clean and well-organized,” Brian says. “I thought, I would really love to interact with this everyday. Here was the problem, though. I loved JavaScript, but it wasn’t a solution to any of our problems. At least not a complete one.”
+
+> **“I really started to trust that I had found the solution.
+> That Gatsby could be The One.”**
+
+So Brian kept trying, and not finding, a better way to develop projects and manage client content. “Eventually, Gatsby came along and I did the same test drive,” Brian says. “But this time I kept going down the road and there was no dead end. It just kept being even better than I had hoped, and I really started to trust that I had found the solution. That Gatsby could be The One.”
+
+#### Swiping Right for Gatsby
+
+There was only one potential hurdle to true romance: convincing the Delicious Simplicity team. They were mainly front end developers used to working with HTML/CSS, maybe a little jQuery. Stepping across the divide into the backend to confront the complexities of a headless CMS was not in their comfort zone. But Brian was confident he could get them there.
+
+“Once I got hands on with Gatsby, I was shocked how quickly I managed to pick things up. The syntax was just so intuitive, which made it easy to digest,” he says. There were definitely some growing pains -- the team had little experience with React or Node, and some of the devs found the new component-based way of thinking overwhelming to grasp at first. But they eventually fell in love with Gatsby and now don’t want to work in anything else.
+
+> **“What we are able to produce with the same people now is of massively higher value thanks to Gatsby’s tech stack.”**
+
+“The stuff we are doing now! Building functional React components that hook into APIs -- making not just websites, but web apps!” Brian says. “I heard my team saying, ‘I never thought I would do this, I feel like a real developer now, not just a themer!’”
+
+The platform’s logical, streamlined tooling made it possible for the Delicious Simplicity team to give their hearts to Gatsby, fully and confidently, as they leveled up their dev skills. “What we are able to produce with the same people now is of massively higher value thanks to Gatsby’s tech stack,” Brian marvels.
+
+#### Fully Committed
+
+Delicious Simplicity’s team is in fact so enamored that they have gone back and refactored the studio’s existing projects into Gatsby. “Any client projects due for updates, we have moved over to Gatsby, because that is where we want to be working. We’ve done about two dozen, there are maybe four left to go,” Brian says.
+
+Refactoring so much previous work was eased by the amount of reusability from project to project. “Our speed of building with each project is accelerated because we are now building our own library of techniques and components within Gatsby as we find them recurring from project to project,” Brian says. “Each project we do, we find a better way of doing something and then iterate that back to the previous ones. We are truly emerging with a set of tools we take forward with us, and keep applying in new ways.” By comparison, he notes, when working with WordPress and Drupal previously the team would build something specific for each particular solution, starting largely from scratch on each new project.
+
+“Before, if there was something we really liked that we could theoretically pull into another build. But refactoring it to fit was so involved it would rarely be worth the time investment.” Brian says. “Gatsby, on the other hand, enables such seamless reusability between builds that there have been times where it has just been copy, paste, done.”
+
+"It took serious searching to find the perfect framework I was looking for, and there were times I really thought I would never find the one." he concludes. "But it was totally worth a little heartbreak to finally get to Gatsby."
+
+_Next up: In Part Two, see how Delicious Simplicity and Gatsby deepen their happy relationship with the introduction of Gatsby Preview..._
diff --git a/docs/blog/author.yaml b/docs/blog/author.yaml
index fb599b7272d35..f21ab5622bfa4 100644
--- a/docs/blog/author.yaml
+++ b/docs/blog/author.yaml
@@ -296,3 +296,7 @@
bio: Software developer @ GatsbyJS. Likes solving weird problems, skiing and watching/reading sci-fi. In that order.
avatar: avatars/michal-piechowiak.jpeg
twitter: "@mipiechowiak"
+- id: Michelle Gienow
+ bio: Writes things @ GatsbyJS. Chaotic good frontend dev, caffeine addict, backyard chicken wrangler 🐓.
+ avatar: avatars/michelle-gienow.jpg
+ twitter: "@michellegienow"
diff --git a/docs/blog/avatars/michelle-gienow.jpg b/docs/blog/avatars/michelle-gienow.jpg
new file mode 100644
index 0000000000000..20d92dec7a831
Binary files /dev/null and b/docs/blog/avatars/michelle-gienow.jpg differ
|
72e0d6fb874cfd2d355265f08ca08460dcde873c
|
2019-03-07 02:23:28
|
Maël Nison
|
feat(gatsby): add pnp resolving by passing rootdir in pkg resolving (#12163)
| false
|
add pnp resolving by passing rootdir in pkg resolving (#12163)
|
feat
|
diff --git a/packages/gatsby/src/bootstrap/index.js b/packages/gatsby/src/bootstrap/index.js
index 34c01051b9080..6a8bbf075d514 100644
--- a/packages/gatsby/src/bootstrap/index.js
+++ b/packages/gatsby/src/bootstrap/index.js
@@ -108,7 +108,7 @@ module.exports = async (args: BootstrapArgs) => {
activity = report.activityTimer(`load plugins`)
activity.start()
- const flattenedPlugins = await loadPlugins(config)
+ const flattenedPlugins = await loadPlugins(config, program.directory)
activity.end()
// onPreInit
diff --git a/packages/gatsby/src/bootstrap/load-plugins/index.js b/packages/gatsby/src/bootstrap/load-plugins/index.js
index 6122afbd7f4f1..de53304eafc9a 100644
--- a/packages/gatsby/src/bootstrap/load-plugins/index.js
+++ b/packages/gatsby/src/bootstrap/load-plugins/index.js
@@ -37,9 +37,9 @@ const flattenPlugins = plugins => {
return flattened
}
-module.exports = async (config = {}) => {
+module.exports = async (config = {}, rootDir = null) => {
// Collate internal plugins, site config plugins, site default plugins
- const plugins = loadPlugins(config)
+ const plugins = loadPlugins(config, rootDir)
// Create a flattened array of the plugins
let flattenedPlugins = flattenPlugins(plugins)
diff --git a/packages/gatsby/src/bootstrap/load-plugins/load.js b/packages/gatsby/src/bootstrap/load-plugins/load.js
index aa8769c6ad5ab..e75e011753731 100644
--- a/packages/gatsby/src/bootstrap/load-plugins/load.js
+++ b/packages/gatsby/src/bootstrap/load-plugins/load.js
@@ -8,6 +8,7 @@ const { warnOnIncompatiblePeerDependency } = require(`./validate`)
const { store } = require(`../../redux`)
const existsSync = require(`fs-exists-cached`).sync
const createNodeId = require(`../../utils/create-node-id`)
+const createRequireFromPath = require(`../../utils/create-require-from-path`)
function createFileContentHash(root, globPattern) {
const hash = crypto.createHash(`md5`)
@@ -46,9 +47,11 @@ const createPluginId = (name, pluginObject = null) =>
* This can be a name of a local plugin, the name of a plugin located in
* node_modules, or a Gatsby internal plugin. In the last case the pluginName
* will be an absolute path.
+ * @param {string} rootDir
+ * This is the project location, from which are found the plugins
* @return {PluginInfo}
*/
-function resolvePlugin(pluginName) {
+function resolvePlugin(pluginName, rootDir) {
// Only find plugins when we're not given an absolute path
if (!existsSync(pluginName)) {
// Find the plugin in the local plugins folder
@@ -81,7 +84,11 @@ function resolvePlugin(pluginName) {
* which should be located in node_modules.
*/
try {
- const resolvedPath = slash(path.dirname(require.resolve(pluginName)))
+ const requireSource =
+ rootDir !== null
+ ? createRequireFromPath(`${rootDir}/:internal:`)
+ : require
+ const resolvedPath = slash(path.dirname(requireSource.resolve(pluginName)))
const packageJSON = JSON.parse(
fs.readFileSync(`${resolvedPath}/package.json`, `utf-8`)
@@ -101,7 +108,7 @@ function resolvePlugin(pluginName) {
}
}
-module.exports = (config = {}) => {
+module.exports = (config = {}, rootDir = null) => {
// Instantiate plugins.
const plugins = []
@@ -110,7 +117,7 @@ module.exports = (config = {}) => {
// Also test adding to redux store.
const processPlugin = plugin => {
if (_.isString(plugin)) {
- const info = resolvePlugin(plugin)
+ const info = resolvePlugin(plugin, rootDir)
return {
...info,
@@ -145,7 +152,7 @@ module.exports = (config = {}) => {
}
}
- const info = resolvePlugin(plugin.resolve)
+ const info = resolvePlugin(plugin.resolve, rootDir)
return {
...info,
@@ -190,7 +197,7 @@ module.exports = (config = {}) => {
const program = store.getState().program
plugins.push(
processPlugin({
- resolve: `gatsby-plugin-page-creator`,
+ resolve: require.resolve(`gatsby-plugin-page-creator`),
options: {
path: slash(path.join(program.directory, `src/pages`)),
pathCheck: false,
diff --git a/packages/gatsby/src/utils/create-require-from-path.js b/packages/gatsby/src/utils/create-require-from-path.js
new file mode 100644
index 0000000000000..c17b988f2f1d5
--- /dev/null
+++ b/packages/gatsby/src/utils/create-require-from-path.js
@@ -0,0 +1,15 @@
+const Module = require(`module`)
+const path = require(`path`)
+
+// Polyfill Node's `Module.createRequireFromPath` if not present (added in Node v10.12.0)
+module.exports =
+ Module.createRequireFromPath ||
+ function(filename) {
+ const mod = new Module(filename, null)
+
+ mod.filename = filename
+ mod.paths = Module._nodeModulePaths(path.dirname(filename))
+ mod._compile(`module.exports = require;`, filename)
+
+ return mod.exports
+ }
|
d6d18e29c0d16d6b5f6030157381584dfb85d4a9
|
2019-07-11 15:25:03
|
Graham McGregor
|
chore: update all package repository fields (#15477)
| false
|
update all package repository fields (#15477)
|
chore
|
diff --git a/.circleci/config.yml b/.circleci/config.yml
index 5d7836626dfc7..bf99bfb873fd8 100644
--- a/.circleci/config.yml
+++ b/.circleci/config.yml
@@ -116,6 +116,7 @@ jobs:
- <<: *persist_cache
- run: yarn lint:code
- run: yarn lint:other
+ - run: yarn check-repo-fields
unit_tests_node8:
executor:
diff --git a/package.json b/package.json
index 97777b66c26d8..ab94a13334812 100644
--- a/package.json
+++ b/package.json
@@ -74,6 +74,7 @@
"scripts": {
"bootstrap": "npm-run-all -s check-versions lerna-prepare",
"check-versions": "babel-node scripts/check-versions.js",
+ "check-repo-fields": "babel-node scripts/check-repo-fields.js",
"format": "npm run format:code && npm run format:other && npm run format:svg",
"format:other": "npm run prettier -- --write",
"format:code": "npm run lint:code -- --fix",
diff --git a/packages/babel-plugin-remove-graphql-queries/package.json b/packages/babel-plugin-remove-graphql-queries/package.json
index 2e40af4827aff..aa40c2ff4919d 100644
--- a/packages/babel-plugin-remove-graphql-queries/package.json
+++ b/packages/babel-plugin-remove-graphql-queries/package.json
@@ -2,6 +2,12 @@
"name": "babel-plugin-remove-graphql-queries",
"version": "2.7.0",
"author": "Jason Quense <[email protected]>",
+ "repository": {
+ "type": "git",
+ "url": "https://github.com/gatsbyjs/gatsby.git",
+ "directory": "packages/babel-plugin-remove-graphql-queries"
+ },
+ "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/babel-plugin-remove-graphql-queries#readme",
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
diff --git a/packages/babel-preset-gatsby-package/package.json b/packages/babel-preset-gatsby-package/package.json
index 22ad14aad1254..09b8a9fcb61f0 100644
--- a/packages/babel-preset-gatsby-package/package.json
+++ b/packages/babel-preset-gatsby-package/package.json
@@ -2,6 +2,12 @@
"name": "babel-preset-gatsby-package",
"version": "0.2.0",
"author": "Philipp Spiess <[email protected]>",
+ "repository": {
+ "type": "git",
+ "url": "https://github.com/gatsbyjs/gatsby.git",
+ "directory": "packages/babel-preset-gatsby-package"
+ },
+ "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/babel-preset-gatsby-package#readme",
"dependencies": {
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-proposal-optional-chaining": "^7.0.0",
diff --git a/packages/babel-preset-gatsby/package.json b/packages/babel-preset-gatsby/package.json
index e003ceff4e370..6d15c63077cdc 100644
--- a/packages/babel-preset-gatsby/package.json
+++ b/packages/babel-preset-gatsby/package.json
@@ -2,6 +2,12 @@
"name": "babel-preset-gatsby",
"version": "0.2.1",
"author": "Philipp Spiess <[email protected]>",
+ "repository": {
+ "type": "git",
+ "url": "https://github.com/gatsbyjs/gatsby.git",
+ "directory": "packages/babel-preset-gatsby"
+ },
+ "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/babel-preset-gatsby#readme",
"dependencies": {
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
diff --git a/packages/gatsby-cli/package.json b/packages/gatsby-cli/package.json
index 7580f351d019d..4bbc90ef088fa 100644
--- a/packages/gatsby-cli/package.json
+++ b/packages/gatsby-cli/package.json
@@ -67,7 +67,11 @@
],
"license": "MIT",
"main": "lib/index.js",
- "repository": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-cli",
+ "repository": {
+ "type": "git",
+ "url": "https://github.com/gatsbyjs/gatsby.git",
+ "directory": "packages/gatsby-cli"
+ },
"scripts": {
"build": "babel src --out-dir lib --ignore \"**/__tests__\"",
"prepare": "cross-env NODE_ENV=production npm run build",
diff --git a/packages/gatsby-codemods/package.json b/packages/gatsby-codemods/package.json
index ec6d9007034ab..05645c0a3e382 100644
--- a/packages/gatsby-codemods/package.json
+++ b/packages/gatsby-codemods/package.json
@@ -19,7 +19,8 @@
"homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-codemods#readme",
"repository": {
"type": "git",
- "url": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-codemods"
+ "url": "https://github.com/gatsbyjs/gatsby.git",
+ "directory": "packages/gatsby-codemods"
},
"license": "MIT",
"dependencies": {
diff --git a/packages/gatsby-cypress/package.json b/packages/gatsby-cypress/package.json
index 88feb11bbbd6a..91d2a9538875c 100644
--- a/packages/gatsby-cypress/package.json
+++ b/packages/gatsby-cypress/package.json
@@ -3,7 +3,11 @@
"version": "0.2.0",
"description": "Cypress tools for Gatsby projects",
"main": "index.js",
- "repository": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-cypress",
+ "repository": {
+ "type": "git",
+ "url": "https://github.com/gatsbyjs/gatsby.git",
+ "directory": "packages/gatsby-cypress"
+ },
"homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-cypress#readme",
"author": "David Bailey <[email protected]>",
"license": "MIT",
diff --git a/packages/gatsby-dev-cli/package.json b/packages/gatsby-dev-cli/package.json
index 6c5d9c0385670..676ec2dbc68e8 100644
--- a/packages/gatsby-dev-cli/package.json
+++ b/packages/gatsby-dev-cli/package.json
@@ -35,7 +35,11 @@
],
"license": "MIT",
"main": "index.js",
- "repository": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-dev-cli",
+ "repository": {
+ "type": "git",
+ "url": "https://github.com/gatsbyjs/gatsby.git",
+ "directory": "packages/gatsby-dev-cli"
+ },
"scripts": {
"build": "babel src --out-dir dist --ignore \"**/__tests__\"",
"prepare": "cross-env NODE_ENV=production npm run build",
diff --git a/packages/gatsby-graphiql-explorer/package.json b/packages/gatsby-graphiql-explorer/package.json
index cdf6f8d58b60c..ba9aa57a92356 100644
--- a/packages/gatsby-graphiql-explorer/package.json
+++ b/packages/gatsby-graphiql-explorer/package.json
@@ -23,7 +23,8 @@
"homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-graphiql-explorer#readme",
"repository": {
"type": "git",
- "url": "https://github.com/gatsbyjs/gatsby.git"
+ "url": "https://github.com/gatsbyjs/gatsby.git",
+ "directory": "packages/gatsby-graphiql-explorer"
},
"license": "MIT",
"dependencies": {
diff --git a/packages/gatsby-image/package.json b/packages/gatsby-image/package.json
index 641282e1c8d87..20203c33189be 100644
--- a/packages/gatsby-image/package.json
+++ b/packages/gatsby-image/package.json
@@ -26,7 +26,11 @@
],
"license": "MIT",
"main": "index.js",
- "repository": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-image",
+ "repository": {
+ "type": "git",
+ "url": "https://github.com/gatsbyjs/gatsby.git",
+ "directory": "packages/gatsby-image"
+ },
"scripts": {
"build": "babel src --out-dir . --ignore **/__tests__",
"prepare": "cross-env NODE_ENV=production npm run build",
diff --git a/packages/gatsby-link/package.json b/packages/gatsby-link/package.json
index af1c23298df2c..30c8621fcbbb7 100644
--- a/packages/gatsby-link/package.json
+++ b/packages/gatsby-link/package.json
@@ -30,7 +30,11 @@
"react": "^16.4.2",
"react-dom": "^16.4.2"
},
- "repository": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-link",
+ "repository": {
+ "type": "git",
+ "url": "https://github.com/gatsbyjs/gatsby.git",
+ "directory": "packages/gatsby-link"
+ },
"scripts": {
"build": "babel src --out-dir . --ignore **/__tests__",
"prepare": "cross-env NODE_ENV=production npm run build",
diff --git a/packages/gatsby-page-utils/package.json b/packages/gatsby-page-utils/package.json
index ffe1e4866f921..a3dee1d61c9f6 100644
--- a/packages/gatsby-page-utils/package.json
+++ b/packages/gatsby-page-utils/package.json
@@ -13,7 +13,12 @@
],
"author": "Yvonnick FRIN <[email protected]>",
"license": "MIT",
- "repository": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-page-utils",
+ "repository": {
+ "type": "git",
+ "url": "https://github.com/gatsbyjs/gatsby.git",
+ "directory": "packages/gatsby-page-utils"
+ },
+ "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-page-utils#readme",
"dependencies": {
"@babel/runtime": "^7.0.0",
"bluebird": "^3.5.0",
diff --git a/packages/gatsby-plugin-canonical-urls/package.json b/packages/gatsby-plugin-canonical-urls/package.json
index 22c50f7e52f38..694f31add6575 100644
--- a/packages/gatsby-plugin-canonical-urls/package.json
+++ b/packages/gatsby-plugin-canonical-urls/package.json
@@ -25,7 +25,11 @@
"peerDependencies": {
"gatsby": "^2.0.0"
},
- "repository": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-canonical-urls",
+ "repository": {
+ "type": "git",
+ "url": "https://github.com/gatsbyjs/gatsby.git",
+ "directory": "packages/gatsby-plugin-canonical-urls"
+ },
"scripts": {
"build": "babel src --out-dir . --ignore **/__tests__",
"prepare": "cross-env NODE_ENV=production npm run build",
diff --git a/packages/gatsby-plugin-catch-links/package.json b/packages/gatsby-plugin-catch-links/package.json
index 44fe18f430b4c..22eb9fd30c90b 100644
--- a/packages/gatsby-plugin-catch-links/package.json
+++ b/packages/gatsby-plugin-catch-links/package.json
@@ -26,7 +26,11 @@
"peerDependencies": {
"gatsby": "^2.0.0"
},
- "repository": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-catch-links",
+ "repository": {
+ "type": "git",
+ "url": "https://github.com/gatsbyjs/gatsby.git",
+ "directory": "packages/gatsby-plugin-catch-links"
+ },
"scripts": {
"build": "babel src --out-dir . --ignore **/__tests__",
"prepare": "cross-env NODE_ENV=production npm run build",
diff --git a/packages/gatsby-plugin-coffeescript/package.json b/packages/gatsby-plugin-coffeescript/package.json
index 82a5aeaeaf977..7fb4c4c86a0a0 100644
--- a/packages/gatsby-plugin-coffeescript/package.json
+++ b/packages/gatsby-plugin-coffeescript/package.json
@@ -33,7 +33,11 @@
"gatsby": "^2.0.0"
},
"readme": "README.md",
- "repository": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-coffeescript",
+ "repository": {
+ "type": "git",
+ "url": "https://github.com/gatsbyjs/gatsby.git",
+ "directory": "packages/gatsby-plugin-coffeescript"
+ },
"scripts": {
"build": "babel src --out-dir . --ignore **/__tests__",
"prepare": "cross-env NODE_ENV=production npm run build",
diff --git a/packages/gatsby-plugin-create-client-paths/package.json b/packages/gatsby-plugin-create-client-paths/package.json
index 879525c6adbfc..930f3e92245f9 100644
--- a/packages/gatsby-plugin-create-client-paths/package.json
+++ b/packages/gatsby-plugin-create-client-paths/package.json
@@ -25,7 +25,11 @@
"peerDependencies": {
"gatsby": "^2.0.0"
},
- "repository": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-create-client-paths",
+ "repository": {
+ "type": "git",
+ "url": "https://github.com/gatsbyjs/gatsby.git",
+ "directory": "packages/gatsby-plugin-create-client-paths"
+ },
"scripts": {
"build": "babel src --out-dir . --ignore **/__tests__",
"prepare": "cross-env NODE_ENV=production npm run build",
diff --git a/packages/gatsby-plugin-cxs/package.json b/packages/gatsby-plugin-cxs/package.json
index eae79c68d6cfb..75485fe3102fc 100644
--- a/packages/gatsby-plugin-cxs/package.json
+++ b/packages/gatsby-plugin-cxs/package.json
@@ -28,7 +28,11 @@
"cxs": ">=5.0.0",
"gatsby": "^2.0.0"
},
- "repository": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-cxs",
+ "repository": {
+ "type": "git",
+ "url": "https://github.com/gatsbyjs/gatsby.git",
+ "directory": "packages/gatsby-plugin-cxs"
+ },
"scripts": {
"build": "babel src --out-dir . --ignore **/__tests__",
"prepare": "cross-env NODE_ENV=production npm run build",
diff --git a/packages/gatsby-plugin-emotion/package.json b/packages/gatsby-plugin-emotion/package.json
index 2a3df01375f2e..6af0b7a956896 100644
--- a/packages/gatsby-plugin-emotion/package.json
+++ b/packages/gatsby-plugin-emotion/package.json
@@ -29,7 +29,11 @@
"@emotion/core": "^10.0.5",
"gatsby": "^2.0.0"
},
- "repository": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-emotion",
+ "repository": {
+ "type": "git",
+ "url": "https://github.com/gatsbyjs/gatsby.git",
+ "directory": "packages/gatsby-plugin-emotion"
+ },
"scripts": {
"build": "babel src --out-dir . --ignore **/__tests__",
"prepare": "cross-env NODE_ENV=production npm run build",
diff --git a/packages/gatsby-plugin-facebook-analytics/package.json b/packages/gatsby-plugin-facebook-analytics/package.json
index b8d5cd7d826c2..d998412f934c7 100644
--- a/packages/gatsby-plugin-facebook-analytics/package.json
+++ b/packages/gatsby-plugin-facebook-analytics/package.json
@@ -29,7 +29,8 @@
},
"repository": {
"type": "git",
- "url": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-facebook-analytics"
+ "url": "https://github.com/gatsbyjs/gatsby.git",
+ "directory": "packages/gatsby-plugin-facebook-analytics"
},
"scripts": {
"build": "babel src --out-dir . --ignore **/__tests__",
diff --git a/packages/gatsby-plugin-feed/package.json b/packages/gatsby-plugin-feed/package.json
index 3d653404c21b5..b415910669924 100644
--- a/packages/gatsby-plugin-feed/package.json
+++ b/packages/gatsby-plugin-feed/package.json
@@ -32,7 +32,11 @@
"peerDependencies": {
"gatsby": "^2.4.0"
},
- "repository": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-feed",
+ "repository": {
+ "type": "git",
+ "url": "https://github.com/gatsbyjs/gatsby.git",
+ "directory": "packages/gatsby-plugin-feed"
+ },
"scripts": {
"build": "babel src --out-dir . --ignore **/__tests__",
"prepare": "cross-env NODE_ENV=production npm run build",
diff --git a/packages/gatsby-plugin-flow/package.json b/packages/gatsby-plugin-flow/package.json
index f175cb07df34e..64d9b7a70f549 100644
--- a/packages/gatsby-plugin-flow/package.json
+++ b/packages/gatsby-plugin-flow/package.json
@@ -19,7 +19,8 @@
"homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-flow#readme",
"repository": {
"type": "git",
- "url": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-flow"
+ "url": "https://github.com/gatsbyjs/gatsby.git",
+ "directory": "packages/gatsby-plugin-flow"
},
"license": "MIT",
"dependencies": {
diff --git a/packages/gatsby-plugin-fullstory/package.json b/packages/gatsby-plugin-fullstory/package.json
index 55da8a63b3e5b..8635169fc7a87 100644
--- a/packages/gatsby-plugin-fullstory/package.json
+++ b/packages/gatsby-plugin-fullstory/package.json
@@ -19,7 +19,8 @@
"homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-fullstory#readme",
"repository": {
"type": "git",
- "url": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-fullstory"
+ "url": "https://github.com/gatsbyjs/gatsby.git",
+ "directory": "packages/gatsby-plugin-fullstory"
},
"license": "MIT",
"dependencies": {
diff --git a/packages/gatsby-plugin-glamor/package.json b/packages/gatsby-plugin-glamor/package.json
index bde9e1f3d2f3d..e9d14c68e4ea3 100644
--- a/packages/gatsby-plugin-glamor/package.json
+++ b/packages/gatsby-plugin-glamor/package.json
@@ -27,7 +27,11 @@
"gatsby": "^2.0.0",
"glamor": "^2.20.29"
},
- "repository": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-glamor",
+ "repository": {
+ "type": "git",
+ "url": "https://github.com/gatsbyjs/gatsby.git",
+ "directory": "packages/gatsby-plugin-glamor"
+ },
"scripts": {
"build": "babel src --out-dir . --ignore **/__tests__",
"prepare": "cross-env NODE_ENV=production npm run build",
diff --git a/packages/gatsby-plugin-google-analytics/package.json b/packages/gatsby-plugin-google-analytics/package.json
index 47cb511f27cff..9ff781019beb7 100644
--- a/packages/gatsby-plugin-google-analytics/package.json
+++ b/packages/gatsby-plugin-google-analytics/package.json
@@ -29,7 +29,11 @@
"react": "^16.4.2",
"react-dom": "^16.4.2"
},
- "repository": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-google-analytics",
+ "repository": {
+ "type": "git",
+ "url": "https://github.com/gatsbyjs/gatsby.git",
+ "directory": "packages/gatsby-plugin-google-analytics"
+ },
"scripts": {
"build": "babel src --out-dir . --ignore **/__tests__",
"prepare": "cross-env NODE_ENV=production npm run build",
diff --git a/packages/gatsby-plugin-google-gtag/package.json b/packages/gatsby-plugin-google-gtag/package.json
index 2beac470b8ab6..6ac9293558f6e 100644
--- a/packages/gatsby-plugin-google-gtag/package.json
+++ b/packages/gatsby-plugin-google-gtag/package.json
@@ -28,7 +28,11 @@
"peerDependencies": {
"gatsby": "^2.0.0"
},
- "repository": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-google-gtag",
+ "repository": {
+ "type": "git",
+ "url": "https://github.com/gatsbyjs/gatsby.git",
+ "directory": "packages/gatsby-plugin-google-gtag"
+ },
"scripts": {
"build": "babel src --out-dir . --ignore **/__tests__",
"prepare": "cross-env NODE_ENV=production npm run build",
diff --git a/packages/gatsby-plugin-google-tagmanager/package.json b/packages/gatsby-plugin-google-tagmanager/package.json
index c9ed44885046f..a434e9867ed59 100644
--- a/packages/gatsby-plugin-google-tagmanager/package.json
+++ b/packages/gatsby-plugin-google-tagmanager/package.json
@@ -27,7 +27,11 @@
"peerDependencies": {
"gatsby": "^2.0.0"
},
- "repository": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-google-tagmanager",
+ "repository": {
+ "type": "git",
+ "url": "https://github.com/gatsbyjs/gatsby.git",
+ "directory": "packages/gatsby-plugin-google-tagmanager"
+ },
"scripts": {
"build": "babel src --out-dir . --ignore **/__tests__",
"prepare": "cross-env NODE_ENV=production npm run build",
diff --git a/packages/gatsby-plugin-guess-js/package.json b/packages/gatsby-plugin-guess-js/package.json
index e23d1c79f6026..f055c929c6679 100644
--- a/packages/gatsby-plugin-guess-js/package.json
+++ b/packages/gatsby-plugin-guess-js/package.json
@@ -23,7 +23,8 @@
"homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-guess-js#readme",
"repository": {
"type": "git",
- "url": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-guess-js"
+ "url": "https://github.com/gatsbyjs/gatsby.git",
+ "directory": "packages/gatsby-plugin-guess-js"
},
"license": "MIT",
"dependencies": {
diff --git a/packages/gatsby-plugin-jss/package.json b/packages/gatsby-plugin-jss/package.json
index 0ff8c34026f85..cdd1d4b88f10b 100644
--- a/packages/gatsby-plugin-jss/package.json
+++ b/packages/gatsby-plugin-jss/package.json
@@ -27,7 +27,11 @@
"peerDependencies": {
"gatsby": "^2.0.32"
},
- "repository": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-jss",
+ "repository": {
+ "type": "git",
+ "url": "https://github.com/gatsbyjs/gatsby.git",
+ "directory": "packages/gatsby-plugin-jss"
+ },
"scripts": {
"build": "babel src --out-dir . --ignore **/__tests__",
"prepare": "cross-env NODE_ENV=production npm run build",
diff --git a/packages/gatsby-plugin-layout/package.json b/packages/gatsby-plugin-layout/package.json
index 493c76188655c..93334cf816566 100644
--- a/packages/gatsby-plugin-layout/package.json
+++ b/packages/gatsby-plugin-layout/package.json
@@ -19,7 +19,8 @@
"homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-layout#readme",
"repository": {
"type": "git",
- "url": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-layout"
+ "url": "https://github.com/gatsbyjs/gatsby.git",
+ "directory": "packages/gatsby-plugin-layout"
},
"license": "MIT",
"dependencies": {
diff --git a/packages/gatsby-plugin-less/package.json b/packages/gatsby-plugin-less/package.json
index ca782540f01cd..60e1cf80594eb 100644
--- a/packages/gatsby-plugin-less/package.json
+++ b/packages/gatsby-plugin-less/package.json
@@ -28,7 +28,11 @@
"gatsby": "^2.0.0",
"less": "^3.0.0"
},
- "repository": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-less",
+ "repository": {
+ "type": "git",
+ "url": "https://github.com/gatsbyjs/gatsby.git",
+ "directory": "packages/gatsby-plugin-less"
+ },
"scripts": {
"build": "babel src --out-dir . --ignore **/__tests__,theme-test.js",
"prepare": "cross-env NODE_ENV=production npm run build",
diff --git a/packages/gatsby-plugin-lodash/package.json b/packages/gatsby-plugin-lodash/package.json
index ab1743d702604..103d8bc052594 100644
--- a/packages/gatsby-plugin-lodash/package.json
+++ b/packages/gatsby-plugin-lodash/package.json
@@ -27,7 +27,11 @@
"peerDependencies": {
"gatsby": "^2.0.0"
},
- "repository": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-lodash",
+ "repository": {
+ "type": "git",
+ "url": "https://github.com/gatsbyjs/gatsby.git",
+ "directory": "packages/gatsby-plugin-lodash"
+ },
"scripts": {
"build": "babel src --out-dir . --ignore **/__tests__",
"prepare": "cross-env NODE_ENV=production npm run build",
diff --git a/packages/gatsby-plugin-manifest/package.json b/packages/gatsby-plugin-manifest/package.json
index 4b3dd9742481f..cf0bf20256938 100644
--- a/packages/gatsby-plugin-manifest/package.json
+++ b/packages/gatsby-plugin-manifest/package.json
@@ -32,7 +32,11 @@
"peerDependencies": {
"gatsby": "^2.4.0"
},
- "repository": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-manifest",
+ "repository": {
+ "type": "git",
+ "url": "https://github.com/gatsbyjs/gatsby.git",
+ "directory": "packages/gatsby-plugin-manifest"
+ },
"scripts": {
"build": "babel src --out-dir . --ignore **/__tests__",
"prepare": "cross-env NODE_ENV=production npm run build",
diff --git a/packages/gatsby-plugin-mdx/package.json b/packages/gatsby-plugin-mdx/package.json
index 47c30140fdaec..936e3bf008971 100644
--- a/packages/gatsby-plugin-mdx/package.json
+++ b/packages/gatsby-plugin-mdx/package.json
@@ -4,10 +4,15 @@
"description": "mdx integration for gatsby",
"main": "index.js",
"license": "MIT",
- "homepage": "https://github.com/ChristopherBiscardi/gatsby-mdx/tree/master/packages/gatsby-mdx#readme",
+ "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-mdx#readme",
"scripts": {
"test": "jest"
},
+ "repository": {
+ "type": "git",
+ "url": "https://github.com/gatsbyjs/gatsby.git",
+ "directory": "packages/gatsby-plugin-mdx"
+ },
"peerDependencies": {
"@mdx-js/mdx": "^1.0.0",
"@mdx-js/react": "^1.0.0"
diff --git a/packages/gatsby-plugin-netlify-cms/package.json b/packages/gatsby-plugin-netlify-cms/package.json
index 32c698ea58995..62413c54bde80 100644
--- a/packages/gatsby-plugin-netlify-cms/package.json
+++ b/packages/gatsby-plugin-netlify-cms/package.json
@@ -39,7 +39,11 @@
"react": "^16.8.4",
"react-dom": "^16.8.4"
},
- "repository": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-netlify-cms",
+ "repository": {
+ "type": "git",
+ "url": "https://github.com/gatsbyjs/gatsby.git",
+ "directory": "packages/gatsby-plugin-netlify-cms"
+ },
"scripts": {
"build": "babel src --out-dir . --ignore **/__tests__",
"prepare": "cross-env NODE_ENV=production npm run build",
diff --git a/packages/gatsby-plugin-netlify/package.json b/packages/gatsby-plugin-netlify/package.json
index 699f44a8cf71e..3fcceedb7dead 100644
--- a/packages/gatsby-plugin-netlify/package.json
+++ b/packages/gatsby-plugin-netlify/package.json
@@ -37,7 +37,11 @@
"peerDependencies": {
"gatsby": "^2.0.0"
},
- "repository": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-netlify",
+ "repository": {
+ "type": "git",
+ "url": "https://github.com/gatsbyjs/gatsby.git",
+ "directory": "packages/gatsby-plugin-netlify"
+ },
"scripts": {
"build": "babel src --out-dir . --ignore **/__tests__",
"prepare": "cross-env NODE_ENV=production npm run build",
diff --git a/packages/gatsby-plugin-no-sourcemaps/package.json b/packages/gatsby-plugin-no-sourcemaps/package.json
index f0eb6fbf154b7..e6533c12eea06 100644
--- a/packages/gatsby-plugin-no-sourcemaps/package.json
+++ b/packages/gatsby-plugin-no-sourcemaps/package.json
@@ -15,7 +15,11 @@
],
"license": "MIT",
"main": "index.js",
- "repository": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-no-sourcemaps",
+ "repository": {
+ "type": "git",
+ "url": "https://github.com/gatsbyjs/gatsby.git",
+ "directory": "packages/gatsby-plugin-no-sourcemaps"
+ },
"peerDependencies": {
"gatsby": "^2.0.0"
},
diff --git a/packages/gatsby-plugin-nprogress/package.json b/packages/gatsby-plugin-nprogress/package.json
index 1e998d001e520..aea73557d57b8 100644
--- a/packages/gatsby-plugin-nprogress/package.json
+++ b/packages/gatsby-plugin-nprogress/package.json
@@ -26,7 +26,11 @@
"peerDependencies": {
"gatsby": "^2.0.0"
},
- "repository": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-nprogress",
+ "repository": {
+ "type": "git",
+ "url": "https://github.com/gatsbyjs/gatsby.git",
+ "directory": "packages/gatsby-plugin-nprogress"
+ },
"scripts": {
"build": "babel src --out-dir . --ignore **/__tests__",
"prepare": "cross-env NODE_ENV=production npm run build",
diff --git a/packages/gatsby-plugin-offline/package.json b/packages/gatsby-plugin-offline/package.json
index 5db31635e8329..4295c02cd2f0d 100644
--- a/packages/gatsby-plugin-offline/package.json
+++ b/packages/gatsby-plugin-offline/package.json
@@ -34,7 +34,11 @@
"peerDependencies": {
"gatsby": "^2.0.100"
},
- "repository": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-offline",
+ "repository": {
+ "type": "git",
+ "url": "https://github.com/gatsbyjs/gatsby.git",
+ "directory": "packages/gatsby-plugin-offline"
+ },
"scripts": {
"build": "npm run build:src && npm run build:sw-append",
"build:src": "babel src --out-dir . --ignore **/__tests__,src/sw-append.js",
diff --git a/packages/gatsby-plugin-page-creator/package.json b/packages/gatsby-plugin-page-creator/package.json
index ee82eff0d0376..0a3386b19958e 100644
--- a/packages/gatsby-plugin-page-creator/package.json
+++ b/packages/gatsby-plugin-page-creator/package.json
@@ -17,7 +17,12 @@
"Steven Natera <[email protected]> (https://twitter.com/stevennatera)"
],
"license": "MIT",
- "repository": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-page-creator",
+ "repository": {
+ "type": "git",
+ "url": "https://github.com/gatsbyjs/gatsby.git",
+ "directory": "packages/gatsby-plugin-page-creator"
+ },
+ "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-page-creator#readme",
"dependencies": {
"@babel/runtime": "^7.0.0",
"bluebird": "^3.5.0",
diff --git a/packages/gatsby-plugin-postcss/package.json b/packages/gatsby-plugin-postcss/package.json
index f3a03a481ee82..8385a84eebd51 100644
--- a/packages/gatsby-plugin-postcss/package.json
+++ b/packages/gatsby-plugin-postcss/package.json
@@ -28,7 +28,11 @@
"gatsby": "^2.0.0"
},
"readme": "README.md",
- "repository": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-postcss",
+ "repository": {
+ "type": "git",
+ "url": "https://github.com/gatsbyjs/gatsby.git",
+ "directory": "packages/gatsby-plugin-postcss"
+ },
"scripts": {
"build": "babel src --out-dir . --ignore **/__tests__",
"prepare": "cross-env NODE_ENV=production npm run build",
diff --git a/packages/gatsby-plugin-preact/package.json b/packages/gatsby-plugin-preact/package.json
index 4500b31b5a62d..ab55582a98c7e 100644
--- a/packages/gatsby-plugin-preact/package.json
+++ b/packages/gatsby-plugin-preact/package.json
@@ -27,7 +27,11 @@
"gatsby": "^2.0.0",
"preact": "^10.0.0-beta.1"
},
- "repository": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-preact",
+ "repository": {
+ "type": "git",
+ "url": "https://github.com/gatsbyjs/gatsby.git",
+ "directory": "packages/gatsby-plugin-preact"
+ },
"scripts": {
"build": "babel src --out-dir . --ignore **/__tests__",
"prepare": "cross-env NODE_ENV=production npm run build",
diff --git a/packages/gatsby-plugin-react-css-modules/package.json b/packages/gatsby-plugin-react-css-modules/package.json
index 2e9ea6c725933..c75973560c24b 100644
--- a/packages/gatsby-plugin-react-css-modules/package.json
+++ b/packages/gatsby-plugin-react-css-modules/package.json
@@ -34,7 +34,11 @@
"peerDependencies": {
"gatsby": "^2.0.0"
},
- "repository": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-react-css-modules",
+ "repository": {
+ "type": "git",
+ "url": "https://github.com/gatsbyjs/gatsby.git",
+ "directory": "packages/gatsby-plugin-react-css-modules"
+ },
"scripts": {
"build": "babel src --out-dir . --ignore **/__tests__",
"prepare": "cross-env NODE_ENV=production npm run build",
diff --git a/packages/gatsby-plugin-react-helmet/package.json b/packages/gatsby-plugin-react-helmet/package.json
index 423612f60cd92..89f9acf806fc6 100644
--- a/packages/gatsby-plugin-react-helmet/package.json
+++ b/packages/gatsby-plugin-react-helmet/package.json
@@ -38,7 +38,11 @@
"gatsby": "^2.0.0",
"react-helmet": "^5.1.3"
},
- "repository": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-react-helmet",
+ "repository": {
+ "type": "git",
+ "url": "https://github.com/gatsbyjs/gatsby.git",
+ "directory": "packages/gatsby-plugin-react-helmet"
+ },
"scripts": {
"build": "babel src --out-dir . --ignore **/__tests__,**/__mocks__",
"prepare": "cross-env NODE_ENV=production npm run build",
diff --git a/packages/gatsby-plugin-remove-trailing-slashes/package.json b/packages/gatsby-plugin-remove-trailing-slashes/package.json
index a2b5b5cf37969..d604a749ee8c0 100644
--- a/packages/gatsby-plugin-remove-trailing-slashes/package.json
+++ b/packages/gatsby-plugin-remove-trailing-slashes/package.json
@@ -25,7 +25,11 @@
"peerDependencies": {
"gatsby": "^2.0.0"
},
- "repository": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-remove-trailing-slashes",
+ "repository": {
+ "type": "git",
+ "url": "https://github.com/gatsbyjs/gatsby.git",
+ "directory": "packages/gatsby-plugin-remove-trailing-slashes"
+ },
"scripts": {
"build": "babel src --out-dir . --ignore **/__tests__",
"prepare": "cross-env NODE_ENV=production npm run build",
diff --git a/packages/gatsby-plugin-sass/package.json b/packages/gatsby-plugin-sass/package.json
index 5308eab2d17a3..46bf846c6da88 100644
--- a/packages/gatsby-plugin-sass/package.json
+++ b/packages/gatsby-plugin-sass/package.json
@@ -30,7 +30,11 @@
"node-sass": "^4.9.0"
},
"readme": "README.md",
- "repository": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-sass",
+ "repository": {
+ "type": "git",
+ "url": "https://github.com/gatsbyjs/gatsby.git",
+ "directory": "packages/gatsby-plugin-sass"
+ },
"scripts": {
"build": "babel src --out-dir . --ignore **/__tests__",
"prepare": "cross-env NODE_ENV=production npm run build",
diff --git a/packages/gatsby-plugin-sharp/package.json b/packages/gatsby-plugin-sharp/package.json
index 2b40f8139f143..de61bfc3e7801 100644
--- a/packages/gatsby-plugin-sharp/package.json
+++ b/packages/gatsby-plugin-sharp/package.json
@@ -42,7 +42,11 @@
"peerDependencies": {
"gatsby": "^2.0.0"
},
- "repository": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-sharp",
+ "repository": {
+ "type": "git",
+ "url": "https://github.com/gatsbyjs/gatsby.git",
+ "directory": "packages/gatsby-plugin-sharp"
+ },
"scripts": {
"build": "babel src --out-dir . --ignore **/__tests__",
"prepare": "cross-env NODE_ENV=production npm run build",
diff --git a/packages/gatsby-plugin-sitemap/package.json b/packages/gatsby-plugin-sitemap/package.json
index 5dcfaf5c1954b..b9b853790a0cc 100644
--- a/packages/gatsby-plugin-sitemap/package.json
+++ b/packages/gatsby-plugin-sitemap/package.json
@@ -28,7 +28,11 @@
"peerDependencies": {
"gatsby": "^2.0.0"
},
- "repository": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-sitemap",
+ "repository": {
+ "type": "git",
+ "url": "https://github.com/gatsbyjs/gatsby.git",
+ "directory": "packages/gatsby-plugin-sitemap"
+ },
"scripts": {
"build": "babel src --out-dir . --ignore **/__tests__",
"prepare": "cross-env NODE_ENV=production npm run build",
diff --git a/packages/gatsby-plugin-styled-components/package.json b/packages/gatsby-plugin-styled-components/package.json
index 79bb657387909..552147e4e64bd 100644
--- a/packages/gatsby-plugin-styled-components/package.json
+++ b/packages/gatsby-plugin-styled-components/package.json
@@ -28,7 +28,11 @@
"gatsby": "^2.0.32",
"styled-components": ">=2.0.0"
},
- "repository": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-styled-components",
+ "repository": {
+ "type": "git",
+ "url": "https://github.com/gatsbyjs/gatsby.git",
+ "directory": "packages/gatsby-plugin-styled-components"
+ },
"scripts": {
"build": "babel src --out-dir . --ignore **/__tests__",
"prepare": "cross-env NODE_ENV=production npm run build",
diff --git a/packages/gatsby-plugin-styled-jsx/package.json b/packages/gatsby-plugin-styled-jsx/package.json
index 88618457f948b..dffc538180b9d 100644
--- a/packages/gatsby-plugin-styled-jsx/package.json
+++ b/packages/gatsby-plugin-styled-jsx/package.json
@@ -27,7 +27,11 @@
"gatsby": "^2.0.0",
"styled-jsx": "^3.0.2"
},
- "repository": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-styled-jsx",
+ "repository": {
+ "type": "git",
+ "url": "https://github.com/gatsbyjs/gatsby.git",
+ "directory": "packages/gatsby-plugin-styled-jsx"
+ },
"scripts": {
"build": "babel src --out-dir . --ignore **/__tests__",
"prepare": "cross-env NODE_ENV=production npm run build",
diff --git a/packages/gatsby-plugin-styletron/package.json b/packages/gatsby-plugin-styletron/package.json
index a3d6391803f4d..3d0f3a6b0788e 100644
--- a/packages/gatsby-plugin-styletron/package.json
+++ b/packages/gatsby-plugin-styletron/package.json
@@ -27,7 +27,11 @@
"peerDependencies": {
"gatsby": "^2.0.0"
},
- "repository": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-styletron",
+ "repository": {
+ "type": "git",
+ "url": "https://github.com/gatsbyjs/gatsby.git",
+ "directory": "packages/gatsby-plugin-styletron"
+ },
"scripts": {
"build": "babel src --out-dir . --ignore **/__tests__",
"prepare": "cross-env NODE_ENV=production npm run build",
diff --git a/packages/gatsby-plugin-stylus/package.json b/packages/gatsby-plugin-stylus/package.json
index 0edf6e7c60e4f..902b563e59bf4 100644
--- a/packages/gatsby-plugin-stylus/package.json
+++ b/packages/gatsby-plugin-stylus/package.json
@@ -29,7 +29,11 @@
"gatsby": "^2.0.0"
},
"readme": "README.md",
- "repository": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-stylus",
+ "repository": {
+ "type": "git",
+ "url": "https://github.com/gatsbyjs/gatsby.git",
+ "directory": "packages/gatsby-plugin-stylus"
+ },
"scripts": {
"build": "babel src --out-dir . --ignore **/__tests__",
"prepare": "cross-env NODE_ENV=production npm run build",
diff --git a/packages/gatsby-plugin-subfont/package.json b/packages/gatsby-plugin-subfont/package.json
index 1088d31538a13..13351ef429362 100644
--- a/packages/gatsby-plugin-subfont/package.json
+++ b/packages/gatsby-plugin-subfont/package.json
@@ -19,7 +19,8 @@
"homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-subfont#readme",
"repository": {
"type": "git",
- "url": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-subfont"
+ "url": "https://github.com/gatsbyjs/gatsby.git",
+ "directory": "packages/gatsby-plugin-subfont"
},
"license": "MIT",
"dependencies": {
diff --git a/packages/gatsby-plugin-twitter/package.json b/packages/gatsby-plugin-twitter/package.json
index 91d0cc3e8a348..d59c1144b6f6c 100644
--- a/packages/gatsby-plugin-twitter/package.json
+++ b/packages/gatsby-plugin-twitter/package.json
@@ -25,7 +25,11 @@
"peerDependencies": {
"gatsby": "^2.0.0"
},
- "repository": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-twitter",
+ "repository": {
+ "type": "git",
+ "url": "https://github.com/gatsbyjs/gatsby.git",
+ "directory": "packages/gatsby-plugin-twitter"
+ },
"scripts": {
"build": "babel src --out-dir . --ignore **/__tests__",
"prepare": "cross-env NODE_ENV=production npm run build",
diff --git a/packages/gatsby-plugin-typescript/package.json b/packages/gatsby-plugin-typescript/package.json
index 9729c09cd38fa..780de2cafa0a1 100644
--- a/packages/gatsby-plugin-typescript/package.json
+++ b/packages/gatsby-plugin-typescript/package.json
@@ -31,7 +31,11 @@
"peerDependencies": {
"gatsby": "^2.0.0"
},
- "repository": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-typescript",
+ "repository": {
+ "type": "git",
+ "url": "https://github.com/gatsbyjs/gatsby.git",
+ "directory": "packages/gatsby-plugin-typescript"
+ },
"scripts": {
"build": "babel src --out-dir . --ignore **/__tests__",
"prepare": "cross-env NODE_ENV=production npm run build",
diff --git a/packages/gatsby-plugin-typography/package.json b/packages/gatsby-plugin-typography/package.json
index 260c6946dd0c0..f4e6636b6dac3 100644
--- a/packages/gatsby-plugin-typography/package.json
+++ b/packages/gatsby-plugin-typography/package.json
@@ -35,7 +35,11 @@
"react-typography": "^0.16.1 || ^1.0.0-alpha.0",
"typography": "^0.16.0 || ^1.0.0-alpha.0"
},
- "repository": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-typography",
+ "repository": {
+ "type": "git",
+ "url": "https://github.com/gatsbyjs/gatsby.git",
+ "directory": "packages/gatsby-plugin-typography"
+ },
"scripts": {
"build": "babel src --out-dir . --ignore **/__tests__",
"prepare": "cross-env NODE_ENV=production npm run build",
diff --git a/packages/gatsby-react-router-scroll/package.json b/packages/gatsby-react-router-scroll/package.json
index 57018d08f6616..b1425ff05862a 100644
--- a/packages/gatsby-react-router-scroll/package.json
+++ b/packages/gatsby-react-router-scroll/package.json
@@ -30,7 +30,11 @@
"react": "^0.14.0 || ^15.0.0 || ^16.0.0",
"react-dom": "^0.14.0 || ^15.0.0 || ^16.0.0"
},
- "repository": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-react-router-scroll",
+ "repository": {
+ "type": "git",
+ "url": "https://github.com/gatsbyjs/gatsby.git",
+ "directory": "packages/gatsby-react-router-scroll"
+ },
"scripts": {
"build": "babel src --out-dir . --ignore **/__tests__",
"prepare": "cross-env NODE_ENV=production npm run build",
diff --git a/packages/gatsby-remark-autolink-headers/package.json b/packages/gatsby-remark-autolink-headers/package.json
index 437876e6aa4cb..528c80fc37926 100644
--- a/packages/gatsby-remark-autolink-headers/package.json
+++ b/packages/gatsby-remark-autolink-headers/package.json
@@ -30,7 +30,11 @@
"peerDependencies": {
"gatsby": "^2.0.0"
},
- "repository": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-remark-autolink-headers",
+ "repository": {
+ "type": "git",
+ "url": "https://github.com/gatsbyjs/gatsby.git",
+ "directory": "packages/gatsby-remark-autolink-headers"
+ },
"scripts": {
"build": "babel src --out-dir . --ignore **/__tests__",
"prepare": "cross-env NODE_ENV=production npm run build",
diff --git a/packages/gatsby-remark-code-repls/package.json b/packages/gatsby-remark-code-repls/package.json
index 562fddea367b4..cf3aa5845741c 100644
--- a/packages/gatsby-remark-code-repls/package.json
+++ b/packages/gatsby-remark-code-repls/package.json
@@ -35,7 +35,11 @@
"peerDependencies": {
"gatsby": "^2.0.0"
},
- "repository": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-remark-code-repls",
+ "repository": {
+ "type": "git",
+ "url": "https://github.com/gatsbyjs/gatsby.git",
+ "directory": "packages/gatsby-remark-code-repls"
+ },
"scripts": {
"build": "babel src --out-dir . --ignore **/__tests__",
"prepare": "cross-env NODE_ENV=production npm run build",
diff --git a/packages/gatsby-remark-copy-linked-files/package.json b/packages/gatsby-remark-copy-linked-files/package.json
index 8561b95215f52..3ac972b0075ff 100644
--- a/packages/gatsby-remark-copy-linked-files/package.json
+++ b/packages/gatsby-remark-copy-linked-files/package.json
@@ -37,7 +37,11 @@
"peerDependencies": {
"gatsby": "^2.0.0"
},
- "repository": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-remark-copy-linked-files",
+ "repository": {
+ "type": "git",
+ "url": "https://github.com/gatsbyjs/gatsby.git",
+ "directory": "packages/gatsby-remark-copy-linked-files"
+ },
"scripts": {
"build": "babel src --out-dir . --ignore **/__tests__",
"prepare": "cross-env NODE_ENV=production npm run build",
diff --git a/packages/gatsby-remark-custom-blocks/package.json b/packages/gatsby-remark-custom-blocks/package.json
index abb39e7dbf8fc..ef91f109fb43c 100644
--- a/packages/gatsby-remark-custom-blocks/package.json
+++ b/packages/gatsby-remark-custom-blocks/package.json
@@ -35,7 +35,11 @@
"gatsby": "^2.0.0"
},
"private": false,
- "repository": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-remark-custom-blocks",
+ "repository": {
+ "type": "git",
+ "url": "https://github.com/gatsbyjs/gatsby.git",
+ "directory": "packages/gatsby-remark-custom-blocks"
+ },
"scripts": {
"build": "babel --out-dir . --ignore **/__tests__ src",
"prepare": "cross-env NODE_ENV=production npm run build",
diff --git a/packages/gatsby-remark-embed-snippet/package.json b/packages/gatsby-remark-embed-snippet/package.json
index dbd8248bda143..d6f17c600a7a0 100644
--- a/packages/gatsby-remark-embed-snippet/package.json
+++ b/packages/gatsby-remark-embed-snippet/package.json
@@ -31,7 +31,11 @@
},
"license": "MIT",
"main": "index.js",
- "repository": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-remark-embed-snippet",
+ "repository": {
+ "type": "git",
+ "url": "https://github.com/gatsbyjs/gatsby.git",
+ "directory": "packages/gatsby-remark-embed-snippet"
+ },
"scripts": {
"build": "babel src --out-dir . --ignore **/__tests__",
"prepare": "cross-env NODE_ENV=production npm run build",
diff --git a/packages/gatsby-remark-graphviz/package.json b/packages/gatsby-remark-graphviz/package.json
index f927507f02211..67be56d8d1d44 100644
--- a/packages/gatsby-remark-graphviz/package.json
+++ b/packages/gatsby-remark-graphviz/package.json
@@ -39,7 +39,11 @@
"peerDependencies": {
"gatsby": "^2.0.0"
},
- "repository": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-remark-graphviz",
+ "repository": {
+ "type": "git",
+ "url": "https://github.com/gatsbyjs/gatsby.git",
+ "directory": "packages/gatsby-remark-graphviz"
+ },
"scripts": {
"build": "babel --out-dir . src --ignore **/__tests__",
"prepare": "cross-env NODE_ENV=production npm run build",
diff --git a/packages/gatsby-remark-images-contentful/package.json b/packages/gatsby-remark-images-contentful/package.json
index 66ff396d5c3b7..0c5e264f37c9f 100644
--- a/packages/gatsby-remark-images-contentful/package.json
+++ b/packages/gatsby-remark-images-contentful/package.json
@@ -8,6 +8,12 @@
"prepare": "cross-env NODE_ENV=production npm run build",
"watch": "babel -w src --out-dir . --ignore **/__tests__"
},
+ "repository": {
+ "type": "git",
+ "url": "https://github.com/gatsbyjs/gatsby.git",
+ "directory": "packages/gatsby-remark-images-contentful"
+ },
+ "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-remark-images-contentful#readme",
"dependencies": {
"@babel/runtime": "^7.0.0",
"axios": "^0.19.0",
diff --git a/packages/gatsby-remark-images/package.json b/packages/gatsby-remark-images/package.json
index 751c1c2b34acd..256ab3ba055d9 100644
--- a/packages/gatsby-remark-images/package.json
+++ b/packages/gatsby-remark-images/package.json
@@ -39,7 +39,11 @@
"gatsby": "^2.0.0",
"gatsby-plugin-sharp": "^2.0.0-beta.5"
},
- "repository": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-remark-images",
+ "repository": {
+ "type": "git",
+ "url": "https://github.com/gatsbyjs/gatsby.git",
+ "directory": "packages/gatsby-remark-images"
+ },
"scripts": {
"build": "babel src --out-dir . --ignore **/__tests__",
"prepare": "cross-env NODE_ENV=production npm run build",
diff --git a/packages/gatsby-remark-katex/package.json b/packages/gatsby-remark-katex/package.json
index 739be20ceb8d6..242ec8351d547 100644
--- a/packages/gatsby-remark-katex/package.json
+++ b/packages/gatsby-remark-katex/package.json
@@ -31,7 +31,11 @@
"gatsby": "^2.0.0",
"katex": "^0.10.0"
},
- "repository": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-remark-katex",
+ "repository": {
+ "type": "git",
+ "url": "https://github.com/gatsbyjs/gatsby.git",
+ "directory": "packages/gatsby-remark-katex"
+ },
"scripts": {
"build": "babel src --out-dir . --ignore **/__tests__",
"prepare": "cross-env NODE_ENV=production npm run build",
diff --git a/packages/gatsby-remark-prismjs/package.json b/packages/gatsby-remark-prismjs/package.json
index d35b42df4b076..205f5da220f78 100644
--- a/packages/gatsby-remark-prismjs/package.json
+++ b/packages/gatsby-remark-prismjs/package.json
@@ -32,7 +32,11 @@
],
"license": "MIT",
"main": "index.js",
- "repository": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-remark-prismjs",
+ "repository": {
+ "type": "git",
+ "url": "https://github.com/gatsbyjs/gatsby.git",
+ "directory": "packages/gatsby-remark-prismjs"
+ },
"scripts": {
"build": "babel src --out-dir . --ignore **/__tests__",
"prepare": "cross-env NODE_ENV=production npm run build",
diff --git a/packages/gatsby-remark-responsive-iframe/package.json b/packages/gatsby-remark-responsive-iframe/package.json
index 649f0e71444a4..8ce35afe4aa2c 100644
--- a/packages/gatsby-remark-responsive-iframe/package.json
+++ b/packages/gatsby-remark-responsive-iframe/package.json
@@ -34,7 +34,11 @@
"peerDependencies": {
"gatsby": "^2.0.0"
},
- "repository": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-remark-responsive-iframe",
+ "repository": {
+ "type": "git",
+ "url": "https://github.com/gatsbyjs/gatsby.git",
+ "directory": "packages/gatsby-remark-responsive-iframe"
+ },
"scripts": {
"build": "babel src --out-dir . --ignore **/__tests__",
"prepare": "cross-env NODE_ENV=production npm run build",
diff --git a/packages/gatsby-remark-smartypants/package.json b/packages/gatsby-remark-smartypants/package.json
index 639bb18aa839a..e775324fa7ca3 100644
--- a/packages/gatsby-remark-smartypants/package.json
+++ b/packages/gatsby-remark-smartypants/package.json
@@ -29,7 +29,11 @@
"peerDependencies": {
"gatsby": "^2.0.0"
},
- "repository": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-remark-smartypants",
+ "repository": {
+ "type": "git",
+ "url": "https://github.com/gatsbyjs/gatsby.git",
+ "directory": "packages/gatsby-remark-smartypants"
+ },
"scripts": {
"build": "babel src --out-dir . --ignore **/__tests__",
"prepare": "cross-env NODE_ENV=production npm run build",
diff --git a/packages/gatsby-source-contentful/package.json b/packages/gatsby-source-contentful/package.json
index 25b8a66181728..288b1a5f101fa 100644
--- a/packages/gatsby-source-contentful/package.json
+++ b/packages/gatsby-source-contentful/package.json
@@ -39,7 +39,11 @@
"peerDependencies": {
"gatsby": "^2.0.33"
},
- "repository": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-source-contentful",
+ "repository": {
+ "type": "git",
+ "url": "https://github.com/gatsbyjs/gatsby.git",
+ "directory": "packages/gatsby-source-contentful"
+ },
"scripts": {
"build": "babel src --out-dir . --ignore **/__tests__",
"prepare": "cross-env NODE_ENV=production npm run build",
diff --git a/packages/gatsby-source-drupal/package.json b/packages/gatsby-source-drupal/package.json
index 2fe47f6b09e73..99ee6828ec96e 100644
--- a/packages/gatsby-source-drupal/package.json
+++ b/packages/gatsby-source-drupal/package.json
@@ -31,7 +31,11 @@
"peerDependencies": {
"gatsby": "^2.0.15"
},
- "repository": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-source-drupal",
+ "repository": {
+ "type": "git",
+ "url": "https://github.com/gatsbyjs/gatsby.git",
+ "directory": "packages/gatsby-source-drupal"
+ },
"scripts": {
"build": "babel src --out-dir . --ignore **/__tests__",
"prepare": "cross-env NODE_ENV=production npm run build",
diff --git a/packages/gatsby-source-faker/package.json b/packages/gatsby-source-faker/package.json
index 534af41c20fdd..1daf92bc982ac 100644
--- a/packages/gatsby-source-faker/package.json
+++ b/packages/gatsby-source-faker/package.json
@@ -27,7 +27,11 @@
"peerDependencies": {
"gatsby": "^2.0.15"
},
- "repository": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-source-faker",
+ "repository": {
+ "type": "git",
+ "url": "https://github.com/gatsbyjs/gatsby.git",
+ "directory": "packages/gatsby-source-faker"
+ },
"scripts": {
"build": "babel src --out-dir . --ignore **/__tests__",
"prepare": "cross-env NODE_ENV=production npm run build",
diff --git a/packages/gatsby-source-filesystem/package.json b/packages/gatsby-source-filesystem/package.json
index f98dd5140a80c..59f6a6a50863f 100644
--- a/packages/gatsby-source-filesystem/package.json
+++ b/packages/gatsby-source-filesystem/package.json
@@ -37,7 +37,11 @@
"peerDependencies": {
"gatsby": "^2.0.0"
},
- "repository": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-source-filesystem",
+ "repository": {
+ "type": "git",
+ "url": "https://github.com/gatsbyjs/gatsby.git",
+ "directory": "packages/gatsby-source-filesystem"
+ },
"scripts": {
"build": "babel src --out-dir . --ignore **/__tests__",
"prepare": "cross-env NODE_ENV=production npm run build",
diff --git a/packages/gatsby-source-graphql/package.json b/packages/gatsby-source-graphql/package.json
index 19f5b3a3e51e7..79cd43666704b 100644
--- a/packages/gatsby-source-graphql/package.json
+++ b/packages/gatsby-source-graphql/package.json
@@ -31,7 +31,11 @@
"peerDependencies": {
"gatsby": "^2.0.15"
},
- "repository": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-source-graphql",
+ "repository": {
+ "type": "git",
+ "url": "https://github.com/gatsbyjs/gatsby.git",
+ "directory": "packages/gatsby-source-graphql"
+ },
"scripts": {
"build": "babel src --out-dir . --ignore **/__tests__",
"prepare": "cross-env NODE_ENV=production npm run build",
diff --git a/packages/gatsby-source-hacker-news/package.json b/packages/gatsby-source-hacker-news/package.json
index 1e51c31dd4315..f35b792990695 100644
--- a/packages/gatsby-source-hacker-news/package.json
+++ b/packages/gatsby-source-hacker-news/package.json
@@ -27,7 +27,11 @@
"peerDependencies": {
"gatsby": "^2.0.15"
},
- "repository": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-source-hacker-news",
+ "repository": {
+ "type": "git",
+ "url": "https://github.com/gatsbyjs/gatsby.git",
+ "directory": "packages/gatsby-source-hacker-news"
+ },
"scripts": {
"build": "babel src --out-dir . --ignore **/__tests__",
"prepare": "cross-env NODE_ENV=production npm run build",
diff --git a/packages/gatsby-source-lever/package.json b/packages/gatsby-source-lever/package.json
index 12d576ca4d8ae..b5488480a43e7 100644
--- a/packages/gatsby-source-lever/package.json
+++ b/packages/gatsby-source-lever/package.json
@@ -33,7 +33,11 @@
"peerDependencies": {
"gatsby": "^2.0.15"
},
- "repository": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-source-lever",
+ "repository": {
+ "type": "git",
+ "url": "https://github.com/gatsbyjs/gatsby.git",
+ "directory": "packages/gatsby-source-lever"
+ },
"scripts": {
"build": "babel src --out-dir . --ignore **/__tests__",
"prepare": "cross-env NODE_ENV=production npm run build",
diff --git a/packages/gatsby-source-medium/package.json b/packages/gatsby-source-medium/package.json
index 2bccc5ab894a5..aea101a4bc113 100644
--- a/packages/gatsby-source-medium/package.json
+++ b/packages/gatsby-source-medium/package.json
@@ -26,7 +26,11 @@
"peerDependencies": {
"gatsby": "^2.0.15"
},
- "repository": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-source-medium",
+ "repository": {
+ "type": "git",
+ "url": "https://github.com/gatsbyjs/gatsby.git",
+ "directory": "packages/gatsby-source-medium"
+ },
"scripts": {
"build": "babel src --out-dir . --ignore **/__tests__",
"prepare": "cross-env NODE_ENV=production npm run build",
diff --git a/packages/gatsby-source-mongodb/package.json b/packages/gatsby-source-mongodb/package.json
index 00444da8705d2..63b82580723db 100644
--- a/packages/gatsby-source-mongodb/package.json
+++ b/packages/gatsby-source-mongodb/package.json
@@ -32,7 +32,11 @@
"peerDependencies": {
"gatsby": "^2.0.15"
},
- "repository": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-source-mongodb",
+ "repository": {
+ "type": "git",
+ "url": "https://github.com/gatsbyjs/gatsby.git",
+ "directory": "packages/gatsby-source-mongodb"
+ },
"scripts": {
"build": "babel src --out-dir . --ignore **/__tests__",
"prepare": "cross-env NODE_ENV=production npm run build",
diff --git a/packages/gatsby-source-npm-package-search/package.json b/packages/gatsby-source-npm-package-search/package.json
index 671528f7164ee..958a9cf0efc85 100644
--- a/packages/gatsby-source-npm-package-search/package.json
+++ b/packages/gatsby-source-npm-package-search/package.json
@@ -3,6 +3,12 @@
"description": "Search NPM packages and pull NPM & GitHub metadata from Algolia's NPM index",
"version": "2.1.0",
"author": "[email protected]",
+ "repository": {
+ "type": "git",
+ "url": "https://github.com/gatsbyjs/gatsby.git",
+ "directory": "packages/gatsby-source-npm-package-search"
+ },
+ "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-source-npm-package-search#readme",
"dependencies": {
"@babel/runtime": "^7.0.0",
"algoliasearch": "^3.25.1"
diff --git a/packages/gatsby-source-shopify/package.json b/packages/gatsby-source-shopify/package.json
index a3da70bc27a91..58695193c9755 100644
--- a/packages/gatsby-source-shopify/package.json
+++ b/packages/gatsby-source-shopify/package.json
@@ -7,8 +7,12 @@
"prepare": "cross-env NODE_ENV=production npm run build",
"watch": "npm run build -- --watch"
},
- "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-source-shopfiy#readme",
- "repository": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-source-shopify",
+ "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-source-shopify#readme",
+ "repository": {
+ "type": "git",
+ "url": "https://github.com/gatsbyjs/gatsby.git",
+ "directory": "packages/gatsby-source-shopify"
+ },
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
},
diff --git a/packages/gatsby-source-wikipedia/package.json b/packages/gatsby-source-wikipedia/package.json
index 2e2efbeeaff00..1260c0473a23f 100644
--- a/packages/gatsby-source-wikipedia/package.json
+++ b/packages/gatsby-source-wikipedia/package.json
@@ -24,7 +24,8 @@
},
"repository": {
"type": "git",
- "url": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-source-wikipedia"
+ "url": "https://github.com/gatsbyjs/gatsby.git",
+ "directory": "packages/gatsby-source-wikipedia"
},
"license": "MIT",
"dependencies": {
diff --git a/packages/gatsby-source-wordpress/package.json b/packages/gatsby-source-wordpress/package.json
index d043f79d47181..392d764b13272 100644
--- a/packages/gatsby-source-wordpress/package.json
+++ b/packages/gatsby-source-wordpress/package.json
@@ -37,7 +37,11 @@
"peerDependencies": {
"gatsby": "^2.0.15"
},
- "repository": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-source-wordpress",
+ "repository": {
+ "type": "git",
+ "url": "https://github.com/gatsbyjs/gatsby.git",
+ "directory": "packages/gatsby-source-wordpress"
+ },
"scripts": {
"build": "babel src --out-dir . --ignore **/__tests__",
"prepare": "cross-env NODE_ENV=production npm run build",
diff --git a/packages/gatsby-telemetry/package.json b/packages/gatsby-telemetry/package.json
index cb1a0495ab73a..2a71987b874d6 100644
--- a/packages/gatsby-telemetry/package.json
+++ b/packages/gatsby-telemetry/package.json
@@ -46,7 +46,11 @@
],
"license": "MIT",
"main": "lib/index.js",
- "repository": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-telemetry",
+ "repository": {
+ "type": "git",
+ "url": "https://github.com/gatsbyjs/gatsby.git",
+ "directory": "packages/gatsby-telemetry"
+ },
"scripts": {
"build": "babel src --out-dir lib --ignore **/__tests__",
"prepare": "cross-env NODE_ENV=production npm run build",
diff --git a/packages/gatsby-transformer-asciidoc/package.json b/packages/gatsby-transformer-asciidoc/package.json
index 9587a9c961674..848460f214719 100644
--- a/packages/gatsby-transformer-asciidoc/package.json
+++ b/packages/gatsby-transformer-asciidoc/package.json
@@ -27,7 +27,11 @@
"peerDependencies": {
"gatsby": "^2.0.15"
},
- "repository": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-transformer-asciidoc",
+ "repository": {
+ "type": "git",
+ "url": "https://github.com/gatsbyjs/gatsby.git",
+ "directory": "packages/gatsby-transformer-asciidoc"
+ },
"scripts": {
"build": "babel src --out-dir . --ignore **/__tests__",
"prepare": "cross-env NODE_ENV=production npm run build",
diff --git a/packages/gatsby-transformer-csv/package.json b/packages/gatsby-transformer-csv/package.json
index f1a827804f696..e127f320e6f4b 100644
--- a/packages/gatsby-transformer-csv/package.json
+++ b/packages/gatsby-transformer-csv/package.json
@@ -29,7 +29,11 @@
"peerDependencies": {
"gatsby": "^2.0.15"
},
- "repository": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-transformer-csv",
+ "repository": {
+ "type": "git",
+ "url": "https://github.com/gatsbyjs/gatsby.git",
+ "directory": "packages/gatsby-transformer-csv"
+ },
"scripts": {
"build": "babel src --out-dir . --ignore **/__tests__",
"prepare": "cross-env NODE_ENV=production npm run build",
diff --git a/packages/gatsby-transformer-documentationjs/package.json b/packages/gatsby-transformer-documentationjs/package.json
index 811f6ca99563f..0d63fd90e3000 100644
--- a/packages/gatsby-transformer-documentationjs/package.json
+++ b/packages/gatsby-transformer-documentationjs/package.json
@@ -29,7 +29,11 @@
"peerDependencies": {
"gatsby": "^2.2.0"
},
- "repository": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-transformer-documentationjs",
+ "repository": {
+ "type": "git",
+ "url": "https://github.com/gatsbyjs/gatsby.git",
+ "directory": "packages/gatsby-transformer-documentationjs"
+ },
"scripts": {
"build": "babel src --out-dir . --ignore **/__tests__",
"prepare": "cross-env NODE_ENV=production npm run build",
diff --git a/packages/gatsby-transformer-excel/package.json b/packages/gatsby-transformer-excel/package.json
index 3a339c17027b3..f655fd7b80fd7 100644
--- a/packages/gatsby-transformer-excel/package.json
+++ b/packages/gatsby-transformer-excel/package.json
@@ -27,7 +27,11 @@
"peerDependencies": {
"gatsby": "^2.0.15"
},
- "repository": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-transformer-excel",
+ "repository": {
+ "type": "git",
+ "url": "https://github.com/gatsbyjs/gatsby.git",
+ "directory": "packages/gatsby-transformer-excel"
+ },
"scripts": {
"build": "babel src --out-dir . --ignore **/__tests__",
"prepare": "cross-env NODE_ENV=production npm run build",
diff --git a/packages/gatsby-transformer-hjson/package.json b/packages/gatsby-transformer-hjson/package.json
index f602ada3e2491..ee0cf4ed1acac 100644
--- a/packages/gatsby-transformer-hjson/package.json
+++ b/packages/gatsby-transformer-hjson/package.json
@@ -27,7 +27,11 @@
"peerDependencies": {
"gatsby": "^2.0.15"
},
- "repository": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-transformer-hjson",
+ "repository": {
+ "type": "git",
+ "url": "https://github.com/gatsbyjs/gatsby.git",
+ "directory": "packages/gatsby-transformer-hjson"
+ },
"scripts": {
"build": "babel src --out-dir . --ignore **/__tests__",
"prepare": "cross-env NODE_ENV=production npm run build",
diff --git a/packages/gatsby-transformer-javascript-frontmatter/package.json b/packages/gatsby-transformer-javascript-frontmatter/package.json
index 12729f8839bb2..43b5aa905c432 100644
--- a/packages/gatsby-transformer-javascript-frontmatter/package.json
+++ b/packages/gatsby-transformer-javascript-frontmatter/package.json
@@ -3,6 +3,7 @@
"description": "Gatsby transformer plugin for JavaScript to extract exports.frontmatter statically.",
"version": "2.1.0",
"author": "Jacob Bolda <[email protected]>",
+ "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-transformer-javascript-frontmatter#readme",
"dependencies": {
"@babel/parser": "^7.0.0",
"@babel/runtime": "^7.0.0",
@@ -25,7 +26,11 @@
"gatsby": "^2.0.15",
"gatsby-source-filesystem": "^2.0.3"
},
- "repository": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-transformer-javascript-frontmatter",
+ "repository": {
+ "type": "git",
+ "url": "https://github.com/gatsbyjs/gatsby.git",
+ "directory": "packages/gatsby-transformer-javascript-frontmatter"
+ },
"scripts": {
"build": "babel src --out-dir . --ignore **/__tests__",
"prepare": "cross-env NODE_ENV=production npm run build",
diff --git a/packages/gatsby-transformer-javascript-static-exports/package.json b/packages/gatsby-transformer-javascript-static-exports/package.json
index 6d7f311909271..d233e206f962f 100644
--- a/packages/gatsby-transformer-javascript-static-exports/package.json
+++ b/packages/gatsby-transformer-javascript-static-exports/package.json
@@ -28,7 +28,11 @@
"peerDependencies": {
"gatsby": "^2.0.15"
},
- "repository": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-transformer-javascript-static-exports",
+ "repository": {
+ "type": "git",
+ "url": "https://github.com/gatsbyjs/gatsby.git",
+ "directory": "packages/gatsby-transformer-javascript-static-exports"
+ },
"scripts": {
"build": "babel src --out-dir . --ignore **/__tests__",
"prepare": "cross-env NODE_ENV=production npm run build",
diff --git a/packages/gatsby-transformer-json/package.json b/packages/gatsby-transformer-json/package.json
index 2bb1d8581375e..bbef63eda7bcc 100644
--- a/packages/gatsby-transformer-json/package.json
+++ b/packages/gatsby-transformer-json/package.json
@@ -26,7 +26,11 @@
"peerDependencies": {
"gatsby": "^2.0.15"
},
- "repository": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-transformer-json",
+ "repository": {
+ "type": "git",
+ "url": "https://github.com/gatsbyjs/gatsby.git",
+ "directory": "packages/gatsby-transformer-json"
+ },
"scripts": {
"build": "babel src --out-dir . --ignore **/__tests__",
"prepare": "cross-env NODE_ENV=production npm run build",
diff --git a/packages/gatsby-transformer-pdf/package.json b/packages/gatsby-transformer-pdf/package.json
index 6d2f9a2a6209d..89790968eba29 100644
--- a/packages/gatsby-transformer-pdf/package.json
+++ b/packages/gatsby-transformer-pdf/package.json
@@ -28,7 +28,11 @@
"peerDependencies": {
"gatsby": "^2.0.0"
},
- "repository": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-transformer-pdf",
+ "repository": {
+ "type": "git",
+ "url": "https://github.com/gatsbyjs/gatsby.git",
+ "directory": "packages/gatsby-transformer-pdf"
+ },
"scripts": {
"build": "babel src --out-dir . --ignore **/__tests__",
"prepare": "cross-env NODE_ENV=production npm run build",
diff --git a/packages/gatsby-transformer-react-docgen/package.json b/packages/gatsby-transformer-react-docgen/package.json
index 264560d0b472c..59e10c0fadb2d 100644
--- a/packages/gatsby-transformer-react-docgen/package.json
+++ b/packages/gatsby-transformer-react-docgen/package.json
@@ -33,7 +33,11 @@
"peerDependencies": {
"gatsby": "^2.0.15"
},
- "repository": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-transformer-react-docgen",
+ "repository": {
+ "type": "git",
+ "url": "https://github.com/gatsbyjs/gatsby.git",
+ "directory": "packages/gatsby-transformer-react-docgen"
+ },
"scripts": {
"build": "babel src --out-dir . --ignore **/__tests__",
"prepare": "cross-env NODE_ENV=production npm run build",
diff --git a/packages/gatsby-transformer-remark/package.json b/packages/gatsby-transformer-remark/package.json
index f50c2c25082b9..28540d85f996e 100644
--- a/packages/gatsby-transformer-remark/package.json
+++ b/packages/gatsby-transformer-remark/package.json
@@ -45,7 +45,11 @@
"peerDependencies": {
"gatsby": "^2.0.88"
},
- "repository": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-transformer-remark",
+ "repository": {
+ "type": "git",
+ "url": "https://github.com/gatsbyjs/gatsby.git",
+ "directory": "packages/gatsby-transformer-remark"
+ },
"scripts": {
"build": "babel src --out-dir . --ignore **/__tests__",
"prepare": "cross-env NODE_ENV=production npm run build",
diff --git a/packages/gatsby-transformer-screenshot/package.json b/packages/gatsby-transformer-screenshot/package.json
index d0ce52aa5188b..a979e20af3bb5 100644
--- a/packages/gatsby-transformer-screenshot/package.json
+++ b/packages/gatsby-transformer-screenshot/package.json
@@ -27,7 +27,11 @@
"peerDependencies": {
"gatsby": "^2.0.33"
},
- "repository": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-transformer-screenshot",
+ "repository": {
+ "type": "git",
+ "url": "https://github.com/gatsbyjs/gatsby.git",
+ "directory": "packages/gatsby-transformer-screenshot"
+ },
"scripts": {
"build": "babel src --out-dir . --ignore **/__tests__",
"build-lambda-package": "npm run prepare-lambda-package && cp chrome/headless_shell.tar.gz lambda-dist && cd lambda-dist && zip -rq ../lambda-package.zip .",
diff --git a/packages/gatsby-transformer-sharp/package.json b/packages/gatsby-transformer-sharp/package.json
index cb41a264d6422..adab3495c680e 100644
--- a/packages/gatsby-transformer-sharp/package.json
+++ b/packages/gatsby-transformer-sharp/package.json
@@ -33,7 +33,11 @@
"gatsby": "^2.0.33",
"gatsby-plugin-sharp": "^2.0.0-beta.3"
},
- "repository": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-transformer-sharp",
+ "repository": {
+ "type": "git",
+ "url": "https://github.com/gatsbyjs/gatsby.git",
+ "directory": "packages/gatsby-transformer-sharp"
+ },
"scripts": {
"build": "babel src --out-dir . --ignore **/__tests__",
"prepare": "cross-env NODE_ENV=production npm run build",
diff --git a/packages/gatsby-transformer-sqip/package.json b/packages/gatsby-transformer-sqip/package.json
index 0037b616ed700..539e391c7ef06 100644
--- a/packages/gatsby-transformer-sqip/package.json
+++ b/packages/gatsby-transformer-sqip/package.json
@@ -39,7 +39,8 @@
"license": "MIT",
"repository": {
"type": "git",
- "url": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-transformer-sqip"
+ "url": "https://github.com/gatsbyjs/gatsby.git",
+ "directory": "packages/gatsby-transformer-sqip"
},
"scripts": {
"build": "babel src --out-dir . --ignore **/__tests__",
diff --git a/packages/gatsby-transformer-toml/package.json b/packages/gatsby-transformer-toml/package.json
index 6797d2f39adec..070eb9cef9e4e 100644
--- a/packages/gatsby-transformer-toml/package.json
+++ b/packages/gatsby-transformer-toml/package.json
@@ -27,7 +27,11 @@
"peerDependencies": {
"gatsby": "^2.0.15"
},
- "repository": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-transformer-toml",
+ "repository": {
+ "type": "git",
+ "url": "https://github.com/gatsbyjs/gatsby.git",
+ "directory": "packages/gatsby-transformer-toml"
+ },
"scripts": {
"build": "babel src --out-dir . --ignore **/__tests__",
"prepare": "cross-env NODE_ENV=production npm run build",
diff --git a/packages/gatsby-transformer-xml/package.json b/packages/gatsby-transformer-xml/package.json
index ce2d0de6f1252..67432bbde1e8c 100644
--- a/packages/gatsby-transformer-xml/package.json
+++ b/packages/gatsby-transformer-xml/package.json
@@ -28,7 +28,11 @@
"peerDependencies": {
"gatsby": "^2.0.15"
},
- "repository": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-transformer-xml",
+ "repository": {
+ "type": "git",
+ "url": "https://github.com/gatsbyjs/gatsby.git",
+ "directory": "packages/gatsby-transformer-xml"
+ },
"scripts": {
"build": "babel src --out-dir . --ignore **/__tests__",
"prepare": "cross-env NODE_ENV=production npm run build",
diff --git a/packages/gatsby-transformer-yaml/package.json b/packages/gatsby-transformer-yaml/package.json
index ac519c464c52b..5ee74c9e741c0 100644
--- a/packages/gatsby-transformer-yaml/package.json
+++ b/packages/gatsby-transformer-yaml/package.json
@@ -28,7 +28,11 @@
"peerDependencies": {
"gatsby": "^2.0.15"
},
- "repository": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-transformer-yaml",
+ "repository": {
+ "type": "git",
+ "url": "https://github.com/gatsbyjs/gatsby.git",
+ "directory": "packages/gatsby-transformer-yaml"
+ },
"scripts": {
"build": "babel src --out-dir . --ignore **/__tests__",
"prepare": "cross-env NODE_ENV=production npm run build",
diff --git a/packages/gatsby-utils/package.json b/packages/gatsby-utils/package.json
index 2c2972de6699a..78c8efcebf649 100644
--- a/packages/gatsby-utils/package.json
+++ b/packages/gatsby-utils/package.json
@@ -7,12 +7,13 @@
"gatsby-core-utils"
],
"author": "Ward Peeters <[email protected]>",
- "homepage": "https://www.gatsbyjs.org/",
+ "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-utils#readme",
"license": "MIT",
"main": "dist/index.js",
"repository": {
"type": "git",
- "url": "git+https://github.com/gatsbyjs/gatsby.git"
+ "url": "https://github.com/gatsbyjs/gatsby.git",
+ "directory": "packages/gatsby-utils"
},
"scripts": {
"build": "babel src --out-dir dist/ --ignore **/__tests__",
diff --git a/packages/graphql-skip-limit/package.json b/packages/graphql-skip-limit/package.json
index e3bcf94780dfc..91762bc1708f3 100644
--- a/packages/graphql-skip-limit/package.json
+++ b/packages/graphql-skip-limit/package.json
@@ -26,7 +26,11 @@
],
"license": "MIT",
"main": "dist/index.js",
- "repository": "https://github.com/gatsbyjs/gatsby/tree/master/packages/graphql-skip-limit",
+ "repository": {
+ "type": "git",
+ "url": "https://github.com/gatsbyjs/gatsby.git",
+ "directory": "packages/graphql-skip-limit"
+ },
"scripts": {
"build": "babel src --out-dir dist",
"prepare": "cross-env NODE_ENV=production npm run build",
diff --git a/scripts/check-repo-fields.js b/scripts/check-repo-fields.js
new file mode 100644
index 0000000000000..64a9338713a08
--- /dev/null
+++ b/scripts/check-repo-fields.js
@@ -0,0 +1,97 @@
+//@ts-check
+const path = require(`path`)
+const fs = require(`fs`)
+const { getPackages } = require(`@lerna/project`)
+const yargs = require(`yargs`)
+const _ = require(`lodash`)
+
+const GIT_REPO_URL = `https://github.com/gatsbyjs/gatsby`
+const MAIN_PKG_NAME = `gatsby`
+
+// if a key has not been set before, let's try and insert it so
+// that it's not the last key in the package.json which makes merge
+// conflicts more likely
+function insertKeyAvoidMergeConflict(pkgJson, key, value) {
+ if (pkgJson[key]) {
+ pkgJson[key] = value
+ return pkgJson
+ } else {
+ const newPkgJson = {}
+ let inserted = false
+ for (const pkgKey in pkgJson) {
+ if (!inserted && /depend/i.test(pkgKey)) {
+ inserted = true
+ newPkgJson[key] = value
+ }
+ newPkgJson[pkgKey] = pkgJson[pkgKey]
+ }
+ return newPkgJson
+ }
+}
+
+async function main() {
+ let argv = yargs.option(`fix`, {
+ default: false,
+ describe: `Fixes outdated dependencies`,
+ }).argv
+
+ const rootDir = process.cwd()
+
+ const packages = await getPackages(rootDir)
+
+ let warned = false
+
+ await Promise.all(
+ packages.map(async pkg => {
+ // If this is the main gastby package we don't want to override
+ if (pkg.name === MAIN_PKG_NAME || pkg.private) {
+ // eslint complains if we don't consistently return the same type
+ return Promise.resolve()
+ }
+
+ let pkgJson = pkg.toJSON()
+ const relativeLocation = path.relative(rootDir, pkg.location)
+
+ pkgJson = insertKeyAvoidMergeConflict(pkgJson, `repository`, {
+ type: `git`,
+ url: `${GIT_REPO_URL}.git`,
+ directory: relativeLocation,
+ })
+
+ pkgJson = insertKeyAvoidMergeConflict(
+ pkgJson,
+ `homepage`,
+ `${GIT_REPO_URL}/tree/master/${relativeLocation}#readme`
+ )
+
+ if (argv.fix) {
+ return new Promise((resolve, reject) => {
+ fs.writeFile(
+ path.join(relativeLocation, `package.json`),
+ JSON.stringify(pkgJson, null, 2) + `\n`,
+ `utf8`,
+ err => {
+ if (err) reject(err)
+ else resolve()
+ }
+ )
+ })
+ } else {
+ if (!_.isEqual(pkg.toJSON(), pkgJson)) {
+ warned = true
+ console.error(
+ `[${pkg.name}]` +
+ ` repository and/or homepage field in package.json are out of date.` +
+ `Run "yarn run check-repo-fields -- --fix" to update.`
+ )
+ }
+ // eslint complains if we don't consistently return the same type
+ return Promise.resolve()
+ }
+ })
+ )
+ if (warned) {
+ process.exit(1)
+ }
+}
+main()
diff --git a/themes/gatsby-theme-blog/package.json b/themes/gatsby-theme-blog/package.json
index bf584084e59db..bfeac2bd1107b 100644
--- a/themes/gatsby-theme-blog/package.json
+++ b/themes/gatsby-theme-blog/package.json
@@ -11,6 +11,12 @@
"blog"
],
"license": "MIT",
+ "repository": {
+ "type": "git",
+ "url": "https://github.com/gatsbyjs/gatsby.git",
+ "directory": "themes/gatsby-theme-blog"
+ },
+ "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/themes/gatsby-theme-blog#readme",
"dependencies": {
"@emotion/core": "^10.0.14",
"@mdx-js/mdx": "^1.0.23",
diff --git a/themes/gatsby-theme-notes/package.json b/themes/gatsby-theme-notes/package.json
index dd931fbe8e069..3aaca050a27c7 100644
--- a/themes/gatsby-theme-notes/package.json
+++ b/themes/gatsby-theme-notes/package.json
@@ -13,6 +13,12 @@
"notes",
"digital-garden"
],
+ "repository": {
+ "type": "git",
+ "url": "https://github.com/gatsbyjs/gatsby.git",
+ "directory": "themes/gatsby-theme-notes"
+ },
+ "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/themes/gatsby-theme-notes#readme",
"devDependencies": {
"gatsby": "^2.13.13",
"react": "^16.8.6",
|
acf2c35aa98d4eb52b678d59f82d00c1071893cf
|
2020-01-29 15:42:49
|
Vladimir Razuvaev
|
fix(gatsby): Do not add field `id` to the query when `id` alias exists (#20980)
| false
|
Do not add field `id` to the query when `id` alias exists (#20980)
|
fix
|
diff --git a/packages/gatsby/src/query/__tests__/__snapshots__/query-compiler.js.snap b/packages/gatsby/src/query/__tests__/__snapshots__/query-compiler.js.snap
index 156982c7f0a13..bbd1b21992120 100644
--- a/packages/gatsby/src/query/__tests__/__snapshots__/query-compiler.js.snap
+++ b/packages/gatsby/src/query/__tests__/__snapshots__/query-compiler.js.snap
@@ -549,6 +549,86 @@ query mockFileQuery {
}
`;
+exports[`Extra fields doesn't add __typename field when alias exists 1`] = `
+Object {
+ "hash": "hash",
+ "isHook": false,
+ "isStaticQuery": false,
+ "name": "mockFileQuery",
+ "originalText": "
+ query mockFileQuery {
+ allDirectory {
+ nodes {
+ __typename: id
+ contents {
+ ... on File {
+ __typename: id
+ }
+ }
+ children {
+ __typename: id
+ ... Node
+ }
+ ... on Directory {
+ children {
+ __typename: id
+ }
+ }
+ ...DirectoryContents
+ }
+ }
+ }
+
+ fragment DirectoryContents on Directory {
+ children {
+ __typename: id
+ }
+ }
+
+ fragment Node on Node {
+ __typename: id
+ }
+ ",
+ "path": "mockFile",
+ "text": "fragment Node on Node {
+ __typename: id
+}
+
+fragment DirectoryContents on Directory {
+ id
+ children {
+ __typename: id
+ }
+}
+
+query mockFileQuery {
+ allDirectory {
+ nodes {
+ __typename: id
+ contents {
+ __typename
+ ... on File {
+ __typename: id
+ }
+ }
+ children {
+ __typename: id
+ ...Node
+ }
+ ... on Directory {
+ id
+ children {
+ __typename: id
+ }
+ }
+ ...DirectoryContents
+ }
+ }
+}
+",
+}
+`;
+
exports[`Extra fields doesn't add id field twice 1`] = `
Object {
"hash": "hash",
@@ -657,6 +737,81 @@ query mockFileQuery {
}
`;
+exports[`Extra fields doesn't add id field when alias for id exists 1`] = `
+Object {
+ "hash": "hash",
+ "isHook": false,
+ "isStaticQuery": false,
+ "name": "mockFileQuery",
+ "originalText": "
+ query mockFileQuery {
+ allDirectory {
+ nodes {
+ contents {
+ ... on File {
+ id: absolutePath
+ }
+ ... on Directory {
+ id: absolutePath
+ }
+ }
+ ... on Directory {
+ id: absolutePath
+ }
+ ...DirectoryContents
+ }
+ }
+ }
+
+ fragment DirectoryContents on Directory {
+ contents {
+ ... on File {
+ id: absolutePath
+ }
+ ... on Directory {
+ id: absolutePath
+ }
+ }
+ }
+ ",
+ "path": "mockFile",
+ "text": "fragment DirectoryContents on Directory {
+ id
+ contents {
+ __typename
+ ... on File {
+ id: absolutePath
+ }
+ ... on Directory {
+ id: absolutePath
+ }
+ }
+}
+
+query mockFileQuery {
+ allDirectory {
+ nodes {
+ id
+ contents {
+ __typename
+ ... on File {
+ id: absolutePath
+ }
+ ... on Directory {
+ id: absolutePath
+ }
+ }
+ ... on Directory {
+ id: absolutePath
+ }
+ ...DirectoryContents
+ }
+ }
+}
+",
+}
+`;
+
exports[`actual compiling accepts identical fragment definitions 1`] = `
Map {
"mockFile" => Object {
diff --git a/packages/gatsby/src/query/__tests__/query-compiler.js b/packages/gatsby/src/query/__tests__/query-compiler.js
index 1beed9de0f40b..c85f70eeb4369 100644
--- a/packages/gatsby/src/query/__tests__/query-compiler.js
+++ b/packages/gatsby/src/query/__tests__/query-compiler.js
@@ -1024,6 +1024,45 @@ describe(`Extra fields`, () => {
expect(result.get(`mockFile`)).toMatchSnapshot()
})
+ it(`doesn't add __typename field when alias exists`, async () => {
+ const [result, errors] = transformQuery(`
+ query mockFileQuery {
+ allDirectory {
+ nodes {
+ __typename: id
+ contents {
+ ... on File {
+ __typename: id
+ }
+ }
+ children {
+ __typename: id
+ ... Node
+ }
+ ... on Directory {
+ children {
+ __typename: id
+ }
+ }
+ ...DirectoryContents
+ }
+ }
+ }
+
+ fragment DirectoryContents on Directory {
+ children {
+ __typename: id
+ }
+ }
+
+ fragment Node on Node {
+ __typename: id
+ }
+ `)
+ expect(errors).toEqual([])
+ expect(result.get(`mockFile`)).toMatchSnapshot()
+ })
+
it(`adds id field if type has it`, () => {
const [result, errors] = transformQuery(`
query mockFileQuery {
@@ -1165,6 +1204,42 @@ describe(`Extra fields`, () => {
expect(errors).toEqual([])
expect(result.get(`mockFile`)).toMatchSnapshot()
})
+
+ it(`doesn't add id field when alias for id exists`, async () => {
+ const [result, errors] = transformQuery(`
+ query mockFileQuery {
+ allDirectory {
+ nodes {
+ contents {
+ ... on File {
+ id: absolutePath
+ }
+ ... on Directory {
+ id: absolutePath
+ }
+ }
+ ... on Directory {
+ id: absolutePath
+ }
+ ...DirectoryContents
+ }
+ }
+ }
+
+ fragment DirectoryContents on Directory {
+ contents {
+ ... on File {
+ id: absolutePath
+ }
+ ... on Directory {
+ id: absolutePath
+ }
+ }
+ }
+ `)
+ expect(errors).toEqual([])
+ expect(result.get(`mockFile`)).toMatchSnapshot()
+ })
})
const createGatsbyDoc = (
diff --git a/packages/gatsby/src/query/query-compiler.js b/packages/gatsby/src/query/query-compiler.js
index 7bbd3f676160e..d07d436d82753 100644
--- a/packages/gatsby/src/query/query-compiler.js
+++ b/packages/gatsby/src/query/query-compiler.js
@@ -500,10 +500,13 @@ const addExtraFields = (document, schema) => {
// Entering a field of the current selection-set:
// mark which fields already exist in this selection set to avoid duplicates
const context = contextStack[contextStack.length - 1]
- if (node.name.value === `__typename`) {
+ if (
+ node.name.value === `__typename` ||
+ node?.alias?.value === `__typename`
+ ) {
context.hasTypename = true
}
- if (node.name.value === `id`) {
+ if (node.name.value === `id` || node?.alias?.value === `id`) {
context.hasId = true
}
},
|
aa6da9785bf2e2682b8cbbe0d2212a7cb4847ce2
|
2021-02-15 15:51:50
|
John Bampton
|
docs: fix spelling (#29494)
| false
|
fix spelling (#29494)
|
docs
|
diff --git a/benchmarks/gabe-fs-markdown-images/README.md b/benchmarks/gabe-fs-markdown-images/README.md
index 59ea307439f46..31f7554447470 100644
--- a/benchmarks/gabe-fs-markdown-images/README.md
+++ b/benchmarks/gabe-fs-markdown-images/README.md
@@ -40,7 +40,7 @@ When you run the benchmark, or generate the random content files, it will first
Once the pool contains enough images for a given type/dimension, the random `.md` files are generated and for each file an image is copied from the pool as well. The copying of images is a lot faster.
-It's important to note that the pool will persist between benchamrk runs, while the randomly generated content does not.
+It's important to note that the pool will persist between benchmark runs, while the randomly generated content does not.
### Running the benchmark
diff --git a/dictionary.txt b/dictionary.txt
index a9854b19476ed..33ebb849130f2 100644
--- a/dictionary.txt
+++ b/dictionary.txt
@@ -548,7 +548,6 @@ JAMstack
JAMStack
jankiness
Javascript
-Javscript
jbampton
joi
Joi
@@ -636,7 +635,6 @@ modelling
modularity
modularize
modularizing
-modyfing
mongodb
monorepo
monorepos
diff --git a/docs/docs/conceptual/using-gatsby-image.md b/docs/docs/conceptual/using-gatsby-image.md
index 9777f8518a4c2..d3bb46cbf42ff 100644
--- a/docs/docs/conceptual/using-gatsby-image.md
+++ b/docs/docs/conceptual/using-gatsby-image.md
@@ -22,7 +22,7 @@ We provide a [detailed guide on using Gatsby Image](docs/how-to/images-and-media
### Avoid hydration lag for React apps
-When you're building a website with React you face a bit of a catch-22 for optimizing image loads. If you send over React Javscript files to be evaluated by the browser (client-side rendering), you can't start loading images until the browser evaluates all of the Javascript to figure out what images you want to load. On the other hand, if you evaluate the Javascript on the server and then send over the HTML (server-side rendering), then the initial request will take longer to load while it waits for this server-side evaluation.
+When you're building a website with React you face a bit of a catch-22 for optimizing image loads. If you send over React JavaScript files to be evaluated by the browser (client-side rendering), you can't start loading images until the browser evaluates all of the Javascript to figure out what images you want to load. On the other hand, if you evaluate the Javascript on the server and then send over the HTML (server-side rendering), then the initial request will take longer to load while it waits for this server-side evaluation.
Because Gatsby does server rendering during the build process _(rather than when a user is loading the page)_ a Gatsby site will return HTML immediately without waiting for server rendering, and then the client's browser can start loading images as soon as it receives the HTML. Depending on the size of the app, this could save anything from a few hundred milliseconds to a few seconds.
diff --git a/docs/docs/reference/routing/creating-routes.md b/docs/docs/reference/routing/creating-routes.md
index 8d1f2e714fd5d..55cbae4cfc94e 100644
--- a/docs/docs/reference/routing/creating-routes.md
+++ b/docs/docs/reference/routing/creating-routes.md
@@ -45,7 +45,7 @@ See the [File System Route API](/docs/reference/routing/file-system-route-api/)
### Using `gatsby-node.js`
-The File System Route API should be enough to get you through most use cases but if you need extra control, e.g. for passing data via `pageContext` or modyfing the `path`, you can use [Gatsby Node APIs](/docs/reference/config-files/gatsby-node/), including the [`createPages`](/docs/reference/config-files/gatsby-node/#createPages) function, inside your `gatsby-node.js` file. This function will give you access to the [`createPage`](/docs/reference/config-files/actions/#createPage) action, which is at the core of programmatically creating a page. Here's an example for creating pages from Markdown files sourced by Gatsby's data layer:
+The File System Route API should be enough to get you through most use cases but if you need extra control, e.g. for passing data via `pageContext` or modifying the `path`, you can use [Gatsby Node APIs](/docs/reference/config-files/gatsby-node/), including the [`createPages`](/docs/reference/config-files/gatsby-node/#createPages) function, inside your `gatsby-node.js` file. This function will give you access to the [`createPage`](/docs/reference/config-files/actions/#createPage) action, which is at the core of programmatically creating a page. Here's an example for creating pages from Markdown files sourced by Gatsby's data layer:
```js:title=gatsby-node.js
exports.createPages = async function ({ actions, graphql }) {
diff --git a/packages/gatsby-source-wordpress/README.md b/packages/gatsby-source-wordpress/README.md
index 5d4ab0afac5d2..51aec545f4bdc 100644
--- a/packages/gatsby-source-wordpress/README.md
+++ b/packages/gatsby-source-wordpress/README.md
@@ -25,7 +25,7 @@
# gatsby-source-wordpress v4
-Source data from WordPress in a scaleable and efficient way with WPGraphQL 🚀
+Source data from WordPress in a scalable and efficient way with WPGraphQL 🚀
This plugin works by merging the [WPGraphQL schema & data](https://docs.wpgraphql.com/guides/about-wpgraphql/) with the [Gatsby schema & Node model](https://www.gatsbyjs.com/docs/node-model/) which allows us to efficiently cache WP data in Gatsby. What this means is that incremental builds, fast builds, and CMS Previews work beautifully! 💅
diff --git a/packages/gatsby-source-wordpress/docs/plugin-options.md b/packages/gatsby-source-wordpress/docs/plugin-options.md
index d111568534647..c704757bcde86 100644
--- a/packages/gatsby-source-wordpress/docs/plugin-options.md
+++ b/packages/gatsby-source-wordpress/docs/plugin-options.md
@@ -1052,7 +1052,7 @@ A special type which is applied to any non-node root fields that are ingested an
#### type.MediaItem.lazyNodes
-Enables a different media item sourcing strategy. Instead of fetching Media Items that are referenced by other nodes, Media Items will be fetched in connection resolvers from other nodes. This may be desireable if you're not using all of the connected images in your WP instance. This is not currently recommended because it messes up cli output and can be slow due to query running concurrency.
+Enables a different media item sourcing strategy. Instead of fetching Media Items that are referenced by other nodes, Media Items will be fetched in connection resolvers from other nodes. This may be desirable if you're not using all of the connected images in your WP instance. This is not currently recommended because it messes up cli output and can be slow due to query running concurrency.
**Field type**: `Boolean`
diff --git a/packages/gatsby-source-wordpress/docs/tutorials/querying-data.md b/packages/gatsby-source-wordpress/docs/tutorials/querying-data.md
index 679cf07ab144a..1e601fd8072a5 100644
--- a/packages/gatsby-source-wordpress/docs/tutorials/querying-data.md
+++ b/packages/gatsby-source-wordpress/docs/tutorials/querying-data.md
@@ -359,7 +359,7 @@ GraphQL Fragment.
This allows the component that renders the data to be responsible for HTML needed to render the output,
and declaring the data that it needs from GraphQL, which allows components to have smaller
-responsiblities. This can help greatly with building re-usable components and scaling applications.
+responsibilities. This can help greatly with building re-usable components and scaling applications.
This AuthorBio component can now be used anywhere a WpUser is asked for. Here, we'll use it within
the Post component to show the Post's author. We'll change the WpPost Component like so:
diff --git a/packages/gatsby-source-wordpress/src/steps/declare-plugin-options-schema.ts b/packages/gatsby-source-wordpress/src/steps/declare-plugin-options-schema.ts
index 29f39b8b6bfbb..cf22cb3ec3047 100644
--- a/packages/gatsby-source-wordpress/src/steps/declare-plugin-options-schema.ts
+++ b/packages/gatsby-source-wordpress/src/steps/declare-plugin-options-schema.ts
@@ -645,7 +645,7 @@ When using this option, be sure to gitignore the wordpress-cache directory in th
lazyNodes: Joi.boolean()
.default(false)
.description(
- `Enables a different media item sourcing strategy. Instead of fetching Media Items that are referenced by other nodes, Media Items will be fetched in connection resolvers from other nodes. This may be desireable if you're not using all of the connected images in your WP instance. This is not currently recommended because it messes up cli output and can be slow due to query running concurrency.`
+ `Enables a different media item sourcing strategy. Instead of fetching Media Items that are referenced by other nodes, Media Items will be fetched in connection resolvers from other nodes. This may be desirable if you're not using all of the connected images in your WP instance. This is not currently recommended because it messes up cli output and can be slow due to query running concurrency.`
)
.meta({
example: wrapOptions(`
diff --git a/packages/gatsby-source-wordpress/src/steps/ingest-remote-schema/build-queries-from-introspection/recursively-transform-fields.js b/packages/gatsby-source-wordpress/src/steps/ingest-remote-schema/build-queries-from-introspection/recursively-transform-fields.js
index 0ee6a7bca018f..bd7e5d0735c70 100644
--- a/packages/gatsby-source-wordpress/src/steps/ingest-remote-schema/build-queries-from-introspection/recursively-transform-fields.js
+++ b/packages/gatsby-source-wordpress/src/steps/ingest-remote-schema/build-queries-from-introspection/recursively-transform-fields.js
@@ -206,7 +206,7 @@ export function transformField({
return false
}
- // remove fields that have required args. They'll cause query errors if ommitted
+ // remove fields that have required args. They'll cause query errors if omitted
// and we can't determine how to use those args programatically.
if (
field.args &&
diff --git a/packages/gatsby-source-wordpress/src/utils/cache.ts b/packages/gatsby-source-wordpress/src/utils/cache.ts
index f8ddd6b1d01c7..32eb53d6e0f5c 100644
--- a/packages/gatsby-source-wordpress/src/utils/cache.ts
+++ b/packages/gatsby-source-wordpress/src/utils/cache.ts
@@ -228,7 +228,7 @@ export const clearHardCachedNodes = async (): Promise<void> => {
}
}
-// persistant cache
+// persistent cache
export const setPersistentCache = async ({
key,
value,
|
c6b75f7f1bdc6a06b1e0b54308c2a0360739a58e
|
2021-08-04 12:11:04
|
renovate[bot]
|
fix(deps): update minor and patch dependencies for gatsby-plugin-sharp (#32633)
| false
|
update minor and patch dependencies for gatsby-plugin-sharp (#32633)
|
fix
|
diff --git a/packages/gatsby-plugin-sharp/package.json b/packages/gatsby-plugin-sharp/package.json
index fe847c7d1180b..fa37813871be0 100644
--- a/packages/gatsby-plugin-sharp/package.json
+++ b/packages/gatsby-plugin-sharp/package.json
@@ -10,7 +10,7 @@
"@babel/runtime": "^7.14.8",
"async": "^3.2.0",
"bluebird": "^3.7.2",
- "filenamify": "^4.2.0",
+ "filenamify": "^4.3.0",
"fs-extra": "^9.1.0",
"gatsby-core-utils": "^2.12.0-next.0",
"gatsby-plugin-utils": "^1.12.0-next.0",
@@ -18,9 +18,9 @@
"got": "^10.7.0",
"imagemin": "^7.0.1",
"imagemin-mozjpeg": "^9.0.0",
- "imagemin-pngquant": "^9.0.1",
+ "imagemin-pngquant": "^9.0.2",
"lodash": "^4.17.21",
- "mini-svg-data-uri": "^1.2.3",
+ "mini-svg-data-uri": "^1.3.3",
"potrace": "^2.1.8",
"probe-image-size": "^6.0.0",
"progress": "^2.0.3",
diff --git a/yarn.lock b/yarn.lock
index 6d7f44a1ec473..d2905479468dd 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -12207,10 +12207,10 @@ filenamify@^2.0.0:
strip-outer "^1.0.0"
trim-repeated "^1.0.0"
-filenamify@^4.2.0:
- version "4.2.0"
- resolved "https://registry.yarnpkg.com/filenamify/-/filenamify-4.2.0.tgz#c99716d676869585b3b5d328b3f06590d032e89f"
- integrity sha512-pkgE+4p7N1n7QieOopmn3TqJaefjdWXwEkj2XLZJLKfOgcQKkn11ahvGNgTD8mLggexLiDFQxeTs14xVU22XPA==
+filenamify@^4.3.0:
+ version "4.3.0"
+ resolved "https://registry.yarnpkg.com/filenamify/-/filenamify-4.3.0.tgz#62391cb58f02b09971c9d4f9d63b3cf9aba03106"
+ integrity sha512-hcFKyUG57yWGAzu1CMt/dPzYZuv+jAJUT85bL8mrXvNe6hWj6yEHEc4EdcgiA6Z3oi1/9wXJdZPXF2dZNgwgOg==
dependencies:
filename-reserved-regex "^2.0.0"
strip-outer "^1.0.1"
@@ -14574,10 +14574,10 @@ imagemin-mozjpeg@^9.0.0:
is-jpg "^2.0.0"
mozjpeg "^7.0.0"
-imagemin-pngquant@^9.0.1:
- version "9.0.1"
- resolved "https://registry.yarnpkg.com/imagemin-pngquant/-/imagemin-pngquant-9.0.1.tgz#ecf22f522bdb734a503ecc21bdd7bc3d0230edcc"
- integrity sha512-PYyo9G/xwddf+Qqlqe3onz5ZH7p6vHYVVkiuuczUjxZmfekyY77RXaOA/AR6FnVoeQxGa/pDtEK5xUKOcVo+sA==
+imagemin-pngquant@^9.0.2:
+ version "9.0.2"
+ resolved "https://registry.yarnpkg.com/imagemin-pngquant/-/imagemin-pngquant-9.0.2.tgz#38155702b0cc4f60f671ba7c2b086ea3805d9567"
+ integrity sha512-cj//bKo8+Frd/DM8l6Pg9pws1pnDUjgb7ae++sUX1kUVdv2nrngPykhiUOgFeE0LGY/LmUbCf4egCHC4YUcZSg==
dependencies:
execa "^4.0.0"
is-png "^2.0.0"
@@ -18995,7 +18995,7 @@ [email protected]:
schema-utils "^3.0.0"
webpack-sources "^1.1.0"
-mini-svg-data-uri@^1.2.3, mini-svg-data-uri@^1.3.3:
+mini-svg-data-uri@^1.3.3:
version "1.3.3"
resolved "https://registry.yarnpkg.com/mini-svg-data-uri/-/mini-svg-data-uri-1.3.3.tgz#91d2c09f45e056e5e1043340b8b37ba7b50f4fac"
integrity sha512-+fA2oRcR1dJI/7ITmeQJDrYWks0wodlOz0pAEhKYJ2IVc1z0AnwJUsKY2fzFmPAM3Jo9J0rBx8JAA9QQSJ5PuA==
|
8460992a9d530c71ad613d3388425681f82a6577
|
2019-02-25 11:12:45
|
stefanprobst
|
fix(gatsby): Catch errors when persisting state (#12046)
| false
|
Catch errors when persisting state (#12046)
|
fix
|
diff --git a/packages/gatsby/src/db/index.js b/packages/gatsby/src/db/index.js
index a50663a8859fa..a1d8a0c0205ff 100644
--- a/packages/gatsby/src/db/index.js
+++ b/packages/gatsby/src/db/index.js
@@ -1,4 +1,5 @@
const _ = require(`lodash`)
+const report = require(`gatsby-cli/lib/reporter`)
const redux = require(`../redux`)
const { emitter } = redux
@@ -10,10 +11,18 @@ if (process.env.GATSBY_DB_NODES === `loki`) {
}
// calls `saveState()` on all DBs
-function saveState() {
- for (const db of dbs) {
- db.saveState()
+let saveInProgress = false
+async function saveState() {
+ if (saveInProgress) return
+ saveInProgress = true
+
+ try {
+ await Promise.all(dbs.map(db => db.saveState()))
+ } catch (err) {
+ report.warn(`Error persisting state: ${(err && err.message) || err}`)
}
+
+ saveInProgress = false
}
const saveStateDebounced = _.debounce(saveState, 1000)
diff --git a/packages/gatsby/src/db/loki/index.js b/packages/gatsby/src/db/loki/index.js
index 8ed047af90027..37fbea60cb663 100644
--- a/packages/gatsby/src/db/loki/index.js
+++ b/packages/gatsby/src/db/loki/index.js
@@ -114,13 +114,13 @@ function saveState() {
if (db) {
db.saveDatabase(err => {
if (err) {
- console.log(`error saving loki DB`)
- console.log(err)
reject(err)
} else {
resolve()
}
})
+ } else {
+ reject(`No database found.`)
}
})
}
diff --git a/packages/gatsby/src/redux/index.js b/packages/gatsby/src/redux/index.js
index 3fe9ee820af1d..856c58c6ec5d0 100644
--- a/packages/gatsby/src/redux/index.js
+++ b/packages/gatsby/src/redux/index.js
@@ -1,6 +1,6 @@
const Redux = require(`redux`)
const _ = require(`lodash`)
-const fs = require(`fs`)
+const fs = require(`fs-extra`)
const mitt = require(`mitt`)
const stringify = require(`json-stringify-safe`)
@@ -89,11 +89,7 @@ function saveState() {
pickedState.components = mapToObject(pickedState.components)
pickedState.nodes = pickedState.nodes ? mapToObject(pickedState.nodes) : []
const stringified = stringify(pickedState, null, 2)
- fs.writeFile(
- `${process.cwd()}/.cache/redux-state.json`,
- stringified,
- () => {}
- )
+ return fs.writeFile(`${process.cwd()}/.cache/redux-state.json`, stringified)
}
exports.saveState = saveState
|
7dd920812a74a19ed78d9f5887c50fe141770c27
|
2019-10-14 18:32:08
|
Akanksha Choudhary
|
chore(docs): Update pronouns in graphql-concepts (#18578)
| false
|
Update pronouns in graphql-concepts (#18578)
|
chore
|
diff --git a/docs/docs/graphql-concepts.md b/docs/docs/graphql-concepts.md
index 2c837a6c1396b..50ab86ba9b411 100644
--- a/docs/docs/graphql-concepts.md
+++ b/docs/docs/graphql-concepts.md
@@ -327,7 +327,7 @@ export const query = graphql`
`
```
-Now, we can use the component together with the exported fragment in our index page.
+Now, you can use the component together with the exported fragment in your index page.
```jsx:title=src/pages/index.jsx
import React from "react"
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.