diff --git a/.eslintignore b/.eslintignore
index 7e7427e1..32343497 100644
--- a/.eslintignore
+++ b/.eslintignore
@@ -23,8 +23,8 @@ pnpm-lock.yaml
.docusaurus
build
-docs/docs/reference/03-core
-docs/docs/reference/04-sveltekit
+docs/docs/reference/core
+docs/docs/reference/sveltekit
static
# --------------- Packages ---------------
diff --git a/.gitignore b/.gitignore
index 4ed618bc..fa8e4fd1 100644
--- a/.gitignore
+++ b/.gitignore
@@ -34,13 +34,10 @@ packages/next-auth/utils
packages/next-auth/core
packages/next-auth/jwt
packages/next-auth/react
-packages/next-auth/adapters.d.ts
-packages/next-auth/adapters.js
-packages/next-auth/index.d.ts
-packages/next-auth/index.js
packages/next-auth/next
-packages/next-auth/middleware.d.ts
-packages/next-auth/middleware.js
+packages/*/*.js
+packages/*/*.d.ts
+packages/*/*.d.ts.map
# Development app
apps/dev/src/css
@@ -88,8 +85,8 @@ packages/core/src/providers/oauth-types.ts
packages/core/lib
packages/core/providers
packages/core/src/lib/pages/styles.ts
-docs/docs/reference/03-core
-docs/docs/reference/04-sveltekit
+docs/docs/reference/core
+docs/docs/reference/sveltekit
# SvelteKit
diff --git a/.prettierignore b/.prettierignore
index caac81b7..fa687a93 100644
--- a/.prettierignore
+++ b/.prettierignore
@@ -20,8 +20,8 @@ pnpm-lock.yaml
.docusaurus
build
-docs/docs/reference/03-core
-docs/docs/reference/04-sveltekit
+docs/docs/reference/core
+docs/docs/reference/sveltekit
static
docs/providers.json
diff --git a/apps/playgrounds/nuxt/package.json b/apps/playgrounds/nuxt/package.json
index 28f07b11..f082b590 100644
--- a/apps/playgrounds/nuxt/package.json
+++ b/apps/playgrounds/nuxt/package.json
@@ -2,11 +2,10 @@
"name": "playground-nuxt",
"private": true,
"scripts": {
- "build": "nuxt build",
- "dev": "export NODE_OPTIONS='--no-experimental-fetch' && nuxt dev",
+ "build": "nuxt prepare && nuxt build",
+ "dev": "nuxt prepare && export NODE_OPTIONS='--no-experimental-fetch' && nuxt dev",
"generate": "nuxt generate",
- "preview": "nuxt preview",
- "postinstall": "nuxt prepare"
+ "preview": "nuxt preview"
},
"devDependencies": {
"@nuxt/eslint-config": "^0.1.1",
diff --git a/docs/docs/guides/03-basics/refresh-token-rotation.md b/docs/docs/guides/03-basics/refresh-token-rotation.md
index 6b36d85c..96b5ce24 100644
--- a/docs/docs/guides/03-basics/refresh-token-rotation.md
+++ b/docs/docs/guides/03-basics/refresh-token-rotation.md
@@ -22,7 +22,7 @@ Using a JWT to store the `refresh_token` is less secure than saving it in a data
#### JWT strategy
-Using the [jwt](../../reference/03-core/interfaces/types.CallbacksOptions.md#jwt) and [session](../../reference/03-core/interfaces/types.CallbacksOptions.md#session) callbacks, we can persist OAuth tokens and refresh them when they expire.
+Using the [jwt](../../reference/core/interfaces/types.CallbacksOptions.md#jwt) and [session](../../reference/core/interfaces/types.CallbacksOptions.md#session) callbacks, we can persist OAuth tokens and refresh them when they expire.
Below is a sample implementation using Google's Identity Provider. Please note that the OAuth 2.0 request in the `refreshAccessToken()` function will vary between different providers, but the core logic should remain similar.
diff --git a/docs/docs/reference/index.md b/docs/docs/reference/index.md
deleted file mode 100644
index 11f2038a..00000000
--- a/docs/docs/reference/index.md
+++ /dev/null
@@ -1,25 +0,0 @@
----
-title: Overview
-sidebar_label: Overview
-sidebar_position: 0
----
-
-## Core
-
-## Providers
-
-- OAuth/OIDC
-- Email/Passwordless
-- Credentials
-
-## Database Adapters
-
-## Frameworks
-
-- Next.js
-- SvelteKit
-- SolidStart
-- Remix
-- Nuxt
-- Gatsby
-- etc.
diff --git a/docs/docusaurus.config.js b/docs/docusaurus.config.js
index b00da36f..193e7a95 100644
--- a/docs/docusaurus.config.js
+++ b/docs/docusaurus.config.js
@@ -62,7 +62,7 @@ const docusaurusConfig = {
position: "left",
},
{
- to: "/reference/core/modules/main",
+ to: "/reference/core",
// TODO: change to this when the overview page looks better.
// to: "/reference",
activeBasePath: "/reference",
@@ -101,7 +101,7 @@ const docusaurusConfig = {
announcementBar: {
id: "new-major-announcement",
content:
- "NextAuth.js is becoming Auth.js! 🎉 We're creating Authentication for the Web. Everyone included. Starting with SvelteKit, check out the docs.",
+ "NextAuth.js is becoming Auth.js! 🎉 We're creating Authentication for the Web. Everyone included. Starting with SvelteKit, check out the docs. Note, this site is under active development.",
backgroundColor: "#000",
textColor: "#fff",
},
@@ -182,10 +182,7 @@ const docusaurusConfig = {
lastVersion: "current",
showLastUpdateAuthor: true,
showLastUpdateTime: true,
- remarkPlugins: [
- require("@sapphire/docusaurus-plugin-npm2yarn2pnpm").npm2yarn2pnpm,
- require("remark-github"),
- ],
+ remarkPlugins: [require("@sapphire/docusaurus-plugin-npm2yarn2pnpm").npm2yarn2pnpm],
versions: {
current: {
label: "experimental",
@@ -204,20 +201,14 @@ const docusaurusConfig = {
{
...typedocConfig,
id: "core",
- plugin: ["./tyepdoc"],
- entryPoints: [
- "index.ts",
- "adapters.ts",
- "errors.ts",
- "jwt.ts",
- "types.ts",
- ]
- .map((e) => `${coreSrc}/${e}`)
- .concat(providers),
- tsconfig: "../packages/core/tsconfig.json",
- out: "reference/03-core",
+ plugin: [require.resolve("./typedoc-mdn-links")],
watch: process.env.TYPEDOC_WATCH,
- includeExtension: false,
+ entryPoints: ["index.ts", "adapters.ts", "errors.ts", "jwt.ts", "types.ts"].map((e) => `${coreSrc}/${e}`).concat(providers),
+ tsconfig: "../packages/core/tsconfig.json",
+ out: "reference/core",
+ sidebar: {
+ indexLabel: "index",
+ },
},
],
[
@@ -225,14 +216,14 @@ const docusaurusConfig = {
{
...typedocConfig,
id: "sveltekit",
- plugin: ["./tyepdoc"],
- entryPoints: ["index.ts", "client.ts"].map(
- (e) => `../packages/frameworks-sveltekit/src/lib/${e}`
- ),
- tsconfig: "../packages/frameworks-sveltekit/tsconfig.json",
- out: "reference/04-sveltekit",
+ plugin: [require.resolve("./typedoc-mdn-links")],
watch: process.env.TYPEDOC_WATCH,
- includeExtension: false,
+ entryPoints: ["index.ts", "client.ts"].map((e) => `../packages/frameworks-sveltekit/src/lib/${e}`),
+ tsconfig: "../packages/frameworks-sveltekit/tsconfig.json",
+ out: "reference/sveltekit",
+ sidebar: {
+ indexLabel: "index",
+ },
},
],
],
diff --git a/docs/package.json b/docs/package.json
index a520ed68..aa5183a8 100644
--- a/docs/package.json
+++ b/docs/package.json
@@ -3,7 +3,7 @@
"repository": "https://github.com/nextauthjs/next-auth",
"name": "docs",
"scripts": {
- "start": "TYPEDOC_WATCH=true docusaurus start --no-open --port 8000",
+ "start": "TYPEDOC_WATCH=true docusaurus start --no-open",
"dev": "pnpm providers && pnpm snippets && pnpm start",
"build": "pnpm providers && docusaurus build",
"docusaurus": "docusaurus",
@@ -27,7 +27,6 @@
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-marquee-slider": "^1.1.5",
- "remark-github": "10.1.0",
"styled-components": "5.3.6"
},
"devDependencies": {
@@ -37,7 +36,9 @@
"@docusaurus/preset-classic": "2.2.0",
"@docusaurus/theme-common": "2.2.0",
"@docusaurus/types": "2.2.0",
- "docusaurus-plugin-typedoc": "^0.18.0"
+ "docusaurus-plugin-typedoc": "1.0.0-next.2",
+ "typedoc": "^0.23.24",
+ "typedoc-plugin-markdown": "4.0.0-next.2"
},
"browserslist": {
"production": [
diff --git a/docs/sidebars.js b/docs/sidebars.js
index 3c40fb1e..a44d60a9 100644
--- a/docs/sidebars.js
+++ b/docs/sidebars.js
@@ -14,61 +14,28 @@ module.exports = {
},
],
referenceSidebar: [
- "reference/index",
{
type: "category",
label: "@auth/core",
- link: {
- type: "doc",
- id: "reference/core/modules/main",
- },
- items: [
- {
- type: "autogenerated",
- dirName: "reference/03-core/modules",
- // See: https://github.com/facebook/docusaurus/issues/5689
- // exclude: ["index"],
- },
- {
- type: "category",
- label: "Reflections",
- collapsed: true,
- className: "reflection-category", // See src/index.css
- items: [{ type: "autogenerated", dirName: "reference/03-core" }],
- },
- ],
+ link: { type: "doc", id: "reference/core/index" },
+ items: [{ type: "autogenerated", dirName: "reference/core" }],
},
{
type: "category",
label: "@auth/sveltekit",
- link: { type: "doc", id: "reference/sveltekit/modules/main" },
- items: [
- { type: "autogenerated", dirName: "reference/04-sveltekit/modules" },
- {
- type: "category",
- label: "Reflections",
- collapsed: true,
- className: "reflection-category", // See src/index.css
- items: [{ type: "autogenerated", dirName: "reference/04-sveltekit" }],
- },
- ],
+ link: { type: "doc", id: "reference/sveltekit/index" },
+ items: [{ type: "autogenerated", dirName: "reference/sveltekit" }],
},
{
type: "category",
label: "@auth/solid-start",
- link: {
- type: "doc",
- id: "reference/solidstart/index",
- },
- items: ["reference/solidstart/client", "reference/solidstart/protected"],
+ link: { type: "doc", id: "reference/solidstart/index" },
+ items: [{ type: "autogenerated", dirName: "reference/04-solidstart" }],
},
{
type: "category",
label: "@auth/nextjs",
- link: {
- type: "doc",
- id: "reference/nextjs/index",
- },
+ link: { type: "doc", id: "reference/nextjs/index" },
items: [
"reference/nextjs/client",
{
diff --git a/docs/src/css/index.css b/docs/src/css/index.css
index f5f096a4..bb8f5aac 100644
--- a/docs/src/css/index.css
+++ b/docs/src/css/index.css
@@ -272,27 +272,4 @@ html[data-theme="dark"] #carbonads > span {
html[data-theme="dark"] #carbonads .carbon-poweredby {
color: #aaa;
background: #1e2021;
-}
-
-/*
- This is a hack to hide the "Reflection" category and "main" module from the sidebar.
- This is because:
- 1. opening any page under the "Reflection" category would hide the entire sidebar.
- 2. the "main" module would show up twice.
- See sidebars.js
-*/
-.reflection-category,
-.theme-doc-sidebar-item-link-level-2 [href="/reference/core/modules/main"],
-.theme-doc-sidebar-item-link-level-2
- [href="/reference/sveltekit/modules/main"] {
- display: none;
-}
-
-/*
- HACK: to hide the "Classes" header and duplicate items together with the "typedoc-plugin-markdown" patch.
- See: https://github.com/TypeStrong/typedoc/issues/2006
-*/
-/* h3.anchor + p:has(code, strong), */ /** hack did not work as it hides property types elsewhere */
-#classes {
- display: none;
-}
+}
\ No newline at end of file
diff --git a/docs/tyepdoc.js b/docs/typedoc-mdn-links.js
similarity index 100%
rename from docs/tyepdoc.js
rename to docs/typedoc-mdn-links.js
diff --git a/docs/typedoc.json b/docs/typedoc.json
index e9ecf49c..05bcac69 100644
--- a/docs/typedoc.json
+++ b/docs/typedoc.json
@@ -1,23 +1,16 @@
{
- "excludeNotDocumented": true,
"$schema": "https://typedoc.org/schema.json",
- "allReflectionsHaveOwnDocument": true,
+ "cleanOutputDir": true,
"disableSources": true,
- "hideBreadcrumbs": true,
"excludeExternals": true,
"excludeInternal": true,
+ "excludeNotDocumented": true,
"excludePrivate": true,
- "cleanOutputDir": true,
"excludeProtected": true,
+ "hideHierarchy": true,
"gitRevision": "main",
+ "hideBreadcrumbs": true,
"hideGenerator": true,
- "intentionallyNotExported": [
- "ReturnTypes",
- "CallbackParameters",
- "JsonValue"
- ],
- "readme": "none",
- "sort": ["kind", "static-first", "required-first", "alphabetical"],
"kindSortOrder": [
"Function",
"TypeAlias",
@@ -41,5 +34,13 @@
"IndexSignature",
"GetSignature",
"SetSignature"
- ]
-}
+ ],
+ "readme": "none",
+ "sort": [
+ "kind",
+ "static-first",
+ "required-first",
+ "alphabetical"
+ ],
+ "symbolsWithOwnFile": "none"
+}
\ No newline at end of file
diff --git a/package.json b/package.json
index ba856591..9de0fbf2 100644
--- a/package.json
+++ b/package.json
@@ -41,8 +41,6 @@
"prettier": "2.8.1",
"prettier-plugin-svelte": "^2.8.1",
"turbo": "1.6.3",
- "typedoc": "^0.23.22",
- "typedoc-plugin-markdown": "^3.14.0",
"typescript": "4.9.4"
},
"engines": {
@@ -64,7 +62,6 @@
"undici": "5.11.0"
},
"patchedDependencies": {
- "typedoc-plugin-markdown@3.14.0": "patches/typedoc-plugin-markdown@3.14.0.patch",
"@balazsorban/monorepo-release@0.1.8": "patches/@balazsorban__monorepo-release@0.1.8.patch"
}
}
diff --git a/packages/core/src/index.ts b/packages/core/src/index.ts
index 4060c73c..7eee0ff6 100644
--- a/packages/core/src/index.ts
+++ b/packages/core/src/index.ts
@@ -29,7 +29,7 @@
* - [Getting started](https://authjs.dev/getting-started/introduction)
* - [Most common use case guides](https://authjs.dev/guides)
*
- * @module main
+ * @module index
*/
import { assertConfig } from "./lib/assert.js"
diff --git a/packages/frameworks-sveltekit/src/lib/index.ts b/packages/frameworks-sveltekit/src/lib/index.ts
index 019bae5c..d0983904 100644
--- a/packages/frameworks-sveltekit/src/lib/index.ts
+++ b/packages/frameworks-sveltekit/src/lib/index.ts
@@ -81,7 +81,7 @@
* return {
* session: await event.locals.getSession()
* };
- * };
+ * };
* ```
*
* What you return in the function `LayoutServerLoad` will be available inside the `$page` store, in the `data` property: `$page.data`.
@@ -106,7 +106,7 @@
* return {};
* };
* ```
- *
+ *
* :::danger
* Make sure to ALWAYS grab the session information from the parent instead of using the store in the case of a `PageLoad`.
* Not doing so can lead to users being able to incorrectly access protected information in the case the `+layout.server.ts` does not run for that page load.
@@ -130,14 +130,14 @@
* The handle hook, available in `hooks.server.ts`, is a function that receives ALL requests sent to your SvelteKit webapp.
* You may intercept them inside the handle hook, add and modify things in the request, block requests, etc.
* Some readers may notice we are already using this handle hook for SvelteKitAuth which returns a handle itself, so we are going to use SvelteKit's sequence to provide middleware-like functions that set the handle hook.
- *
+ *
* ```ts
* import { SvelteKitAuth } from '@auth/sveltekit';
* import GitHub from '@auth/core/providers/github';
* import { GITHUB_ID, GITHUB_SECRET } from '$env/static/private';
* import { redirect, type Handle } from '@sveltejs/kit';
* import { sequence } from '@sveltejs/kit/hooks';
- *
+ *
* async function authorization({ event, resolve }) {
* // Protect any routes under /authenticated
* if (event.url.pathname.startsWith('/authenticated')) {
@@ -146,14 +146,14 @@
* throw redirect(303, '/auth');
* }
* }
- *
+ *
* // If the request is still here, just proceed as normally
* const result = await resolve(event, {
* transformPageChunk: ({ html }) => html
* });
* return result;
* }
- *
+ *
* // First handle authentication, then authorization
* // Each function acts as a middleware, receiving the request handle
* // And returning a handle which gets passed to the next function
@@ -183,7 +183,7 @@
* PRs to improve this documentation are welcome! See [this file](https://github.com/nextauthjs/next-auth/blob/main/packages/frameworks-sveltekit/src/lib/index.ts).
* :::
*
- * @module main
+ * @module index
*/
///
diff --git a/patches/typedoc-plugin-markdown@3.14.0.patch b/patches/typedoc-plugin-markdown@3.14.0.patch
deleted file mode 100644
index 0b02d8f8..00000000
--- a/patches/typedoc-plugin-markdown@3.14.0.patch
+++ /dev/null
@@ -1,23 +0,0 @@
-diff --git a/dist/theme.js b/dist/theme.js
-index 1483a4b4ec69583aa3086eac83b2b31ae8bb6777..c30e7a4f7785fc230099e8b904040dd4aa57c38e 100644
---- a/dist/theme.js
-+++ b/dist/theme.js
-@@ -221,12 +221,12 @@ class MarkdownTheme extends typedoc_1.Theme {
- directory: 'enums',
- template: this.getReflectionTemplate(),
- },
-- {
-- kind: [typedoc_1.ReflectionKind.Class],
-- isLeaf: false,
-- directory: 'classes',
-- template: this.getReflectionTemplate(),
-- },
-+ // {
-+ // kind: [typedoc_1.ReflectionKind.Class],
-+ // isLeaf: false,
-+ // directory: 'classes',
-+ // template: this.getReflectionTemplate(),
-+ // },
- {
- kind: [typedoc_1.ReflectionKind.Interface],
- isLeaf: false,
\ No newline at end of file
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index 296c9e39..5c1a77a6 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -4,9 +4,6 @@ overrides:
undici: 5.11.0
patchedDependencies:
- typedoc-plugin-markdown@3.14.0:
- hash: p7xjg2asbi3h7h4efxnoor54kq
- path: patches/typedoc-plugin-markdown@3.14.0.patch
'@balazsorban/monorepo-release@0.1.8':
hash: 75pao37sq3m6hqdrtxyjcxjfry
path: patches/@balazsorban__monorepo-release@0.1.8.patch
@@ -34,8 +31,6 @@ importers:
prettier: 2.8.1
prettier-plugin-svelte: ^2.8.1
turbo: 1.6.3
- typedoc: ^0.23.22
- typedoc-plugin-markdown: ^3.14.0
typescript: 4.9.4
devDependencies:
'@actions/core': 1.10.0
@@ -57,8 +52,6 @@ importers:
prettier: 2.8.1
prettier-plugin-svelte: 2.8.1_prettier@2.8.1
turbo: 1.6.3
- typedoc: 0.23.22_typescript@4.9.4
- typedoc-plugin-markdown: 3.14.0_p7xjg2asbi3h7h4efxnoor54kq_typedoc@0.23.22
typescript: 4.9.4
apps/dev/nextjs:
@@ -143,7 +136,7 @@ importers:
vercel: ^23.1.2
dependencies:
dotenv: 16.0.3
- gatsby: 5.6.0-next.2_biqbaboplfbrettd7655fr4n2y
+ gatsby: 5.7.0-next.0_biqbaboplfbrettd7655fr4n2y
next-auth: link:../../../packages/next-auth
react: 18.2.0
react-dom: 18.2.0_react@18.2.0
@@ -182,7 +175,7 @@ importers:
'@mdx-js/react': 1.6.22
'@sapphire/docusaurus-plugin-npm2yarn2pnpm': 1.1.4
classnames: ^2.3.2
- docusaurus-plugin-typedoc: ^0.18.0
+ docusaurus-plugin-typedoc: 1.0.0-next.2
mdx-mermaid: 1.2.2
mermaid: 9.0.1
next-auth: workspace:*
@@ -190,8 +183,9 @@ importers:
react: ^18.2.0
react-dom: ^18.2.0
react-marquee-slider: ^1.1.5
- remark-github: 10.1.0
styled-components: 5.3.6
+ typedoc: ^0.23.24
+ typedoc-plugin-markdown: 4.0.0-next.2
dependencies:
'@auth/core': link:../packages/core
'@auth/sveltekit': link:../packages/frameworks-sveltekit
@@ -205,7 +199,6 @@ importers:
react: 18.2.0
react-dom: 18.2.0_react@18.2.0
react-marquee-slider: 1.1.5_styled-components@5.3.6
- remark-github: 10.1.0
styled-components: 5.3.6_biqbaboplfbrettd7655fr4n2y
devDependencies:
'@docusaurus/core': 2.2.0_if65ga6ul5jnw5c4373drfty5m
@@ -214,7 +207,9 @@ importers:
'@docusaurus/preset-classic': 2.2.0_biqbaboplfbrettd7655fr4n2y
'@docusaurus/theme-common': 2.2.0_if65ga6ul5jnw5c4373drfty5m
'@docusaurus/types': 2.2.0_biqbaboplfbrettd7655fr4n2y
- docusaurus-plugin-typedoc: 0.18.0
+ docusaurus-plugin-typedoc: 1.0.0-next.2_kb65gbyd32jlgdze2tbrhv364a
+ typedoc: 0.23.24
+ typedoc-plugin-markdown: 4.0.0-next.2_typedoc@0.23.24
packages/adapter-dgraph:
specifiers:
@@ -846,10 +841,10 @@ packages:
graphql: '*'
dependencies:
'@babel/core': 7.20.12
- '@babel/generator': 7.20.7
- '@babel/parser': 7.20.7
- '@babel/runtime': 7.20.7
- '@babel/traverse': 7.20.12
+ '@babel/generator': 7.20.14
+ '@babel/parser': 7.20.15
+ '@babel/runtime': 7.20.13
+ '@babel/traverse': 7.20.13
'@babel/types': 7.20.7
babel-preset-fbjs: 3.4.0_@babel+core@7.20.12
chalk: 4.1.2
@@ -1569,7 +1564,7 @@ packages:
'@types/node-fetch': 2.6.2
'@types/tunnel': 0.0.3
form-data: 4.0.0
- node-fetch: 2.6.7
+ node-fetch: 2.6.9
process: 0.11.10
tough-cookie: 4.0.0
tslib: 2.4.1
@@ -1704,7 +1699,7 @@ packages:
'@azure/core-auth': 1.3.2
abort-controller: 3.0.0
form-data: 2.5.1
- node-fetch: 2.6.7
+ node-fetch: 2.6.9
tough-cookie: 3.0.1
tslib: 1.14.1
tunnel: 0.0.6
@@ -1822,12 +1817,12 @@ packages:
engines: {node: '>=6.9.0'}
dependencies:
'@babel/code-frame': 7.18.6
- '@babel/generator': 7.20.7
+ '@babel/generator': 7.20.14
'@babel/helper-module-transforms': 7.20.11
'@babel/helpers': 7.20.7
- '@babel/parser': 7.20.7
+ '@babel/parser': 7.20.15
'@babel/template': 7.20.7
- '@babel/traverse': 7.20.12
+ '@babel/traverse': 7.20.13
'@babel/types': 7.20.7
convert-source-map: 1.8.0
debug: 4.3.4
@@ -1874,9 +1869,9 @@ packages:
'@babel/helper-compilation-targets': 7.20.7_@babel+core@7.20.12
'@babel/helper-module-transforms': 7.20.11
'@babel/helpers': 7.20.7
- '@babel/parser': 7.20.7
+ '@babel/parser': 7.20.15
'@babel/template': 7.20.7
- '@babel/traverse': 7.20.12
+ '@babel/traverse': 7.20.13
'@babel/types': 7.20.7
convert-source-map: 1.8.0
debug: 4.3.4
@@ -1892,13 +1887,13 @@ packages:
dependencies:
'@ampproject/remapping': 2.2.0
'@babel/code-frame': 7.18.6
- '@babel/generator': 7.20.7
+ '@babel/generator': 7.20.14
'@babel/helper-compilation-targets': 7.20.7_@babel+core@7.20.2
'@babel/helper-module-transforms': 7.20.11
'@babel/helpers': 7.20.7
- '@babel/parser': 7.20.7
+ '@babel/parser': 7.20.15
'@babel/template': 7.20.7
- '@babel/traverse': 7.20.12
+ '@babel/traverse': 7.20.13
'@babel/types': 7.20.7
convert-source-map: 1.8.0
debug: 4.3.4
@@ -1955,6 +1950,14 @@ packages:
jsesc: 2.5.2
dev: true
+ /@babel/generator/7.20.14:
+ resolution: {integrity: sha512-AEmuXHdcD3A52HHXxaTmYlb8q/xMEhoRP67B3T4Oq7lbmSoqroMZzjnGj3+i1io3pdnF8iBYVu4Ilj+c4hBxYg==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ '@babel/types': 7.20.7
+ '@jridgewell/gen-mapping': 0.3.2
+ jsesc: 2.5.2
+
/@babel/generator/7.20.3:
resolution: {integrity: sha512-Wl5ilw2UD1+ZYprHVprxHZJCFeBWlzZYOovE4SDYLZnqCOD11j+0QzNeEWKLLTWM7nixrZEh7vNIyb76MyJg3A==}
engines: {node: '>=6.9.0'}
@@ -2039,7 +2042,7 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/compat-data': 7.20.1
+ '@babel/compat-data': 7.20.10
'@babel/core': 7.20.12
'@babel/helper-validator-option': 7.18.6
browserslist: 4.21.4
@@ -2051,7 +2054,7 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/compat-data': 7.20.1
+ '@babel/compat-data': 7.20.10
'@babel/core': 7.20.2
'@babel/helper-validator-option': 7.18.6
browserslist: 4.21.4
@@ -2064,7 +2067,7 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/compat-data': 7.20.1
+ '@babel/compat-data': 7.20.10
'@babel/core': 7.20.5
'@babel/helper-validator-option': 7.18.6
browserslist: 4.21.4
@@ -2148,9 +2151,9 @@ packages:
'@babel/helper-annotate-as-pure': 7.18.6
'@babel/helper-environment-visitor': 7.18.9
'@babel/helper-function-name': 7.19.0
- '@babel/helper-member-expression-to-functions': 7.18.9
+ '@babel/helper-member-expression-to-functions': 7.20.7
'@babel/helper-optimise-call-expression': 7.18.6
- '@babel/helper-replace-supers': 7.19.1
+ '@babel/helper-replace-supers': 7.20.7
'@babel/helper-split-export-declaration': 7.18.6
transitivePeerDependencies:
- supports-color
@@ -2166,9 +2169,9 @@ packages:
'@babel/helper-annotate-as-pure': 7.18.6
'@babel/helper-environment-visitor': 7.18.9
'@babel/helper-function-name': 7.19.0
- '@babel/helper-member-expression-to-functions': 7.18.9
+ '@babel/helper-member-expression-to-functions': 7.20.7
'@babel/helper-optimise-call-expression': 7.18.6
- '@babel/helper-replace-supers': 7.19.1
+ '@babel/helper-replace-supers': 7.20.7
'@babel/helper-split-export-declaration': 7.18.6
transitivePeerDependencies:
- supports-color
@@ -2320,7 +2323,7 @@ packages:
'@babel/helper-compilation-targets': 7.20.7
'@babel/helper-module-imports': 7.18.6
'@babel/helper-plugin-utils': 7.20.2
- '@babel/traverse': 7.20.12
+ '@babel/traverse': 7.20.13
debug: 4.3.4
lodash.debounce: 4.0.8
resolve: 1.22.1
@@ -2338,7 +2341,7 @@ packages:
'@babel/helper-compilation-targets': 7.20.7_@babel+core@7.18.5
'@babel/helper-module-imports': 7.18.6
'@babel/helper-plugin-utils': 7.20.2
- '@babel/traverse': 7.20.12
+ '@babel/traverse': 7.20.13
debug: 4.3.4
lodash.debounce: 4.0.8
resolve: 1.22.1
@@ -2444,13 +2447,6 @@ packages:
dependencies:
'@babel/types': 7.20.7
- /@babel/helper-member-expression-to-functions/7.18.9:
- resolution: {integrity: sha512-RxifAh2ZoVU67PyKIO4AMi1wTenGfMR/O/ae0CCRqwgBAt5v7xjdtRw7UoSbsreKrQn5t7r89eruK/9JjYHuDg==}
- engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/types': 7.20.7
- dev: true
-
/@babel/helper-member-expression-to-functions/7.20.7:
resolution: {integrity: sha512-9J0CxJLq315fEdi4s7xK5TQaNYjZw+nDVpVqr1axNGKzdrdwYBD5b4uKv3n75aABG0rCCTK8Im8Ww7eYfMrZgw==}
engines: {node: '>=6.9.0'}
@@ -2503,7 +2499,7 @@ packages:
'@babel/helper-split-export-declaration': 7.18.6
'@babel/helper-validator-identifier': 7.19.1
'@babel/template': 7.20.7
- '@babel/traverse': 7.20.12
+ '@babel/traverse': 7.20.13
'@babel/types': 7.20.7
transitivePeerDependencies:
- supports-color
@@ -2518,7 +2514,7 @@ packages:
'@babel/helper-split-export-declaration': 7.18.6
'@babel/helper-validator-identifier': 7.19.1
'@babel/template': 7.20.7
- '@babel/traverse': 7.20.12
+ '@babel/traverse': 7.20.13
'@babel/types': 7.20.7
transitivePeerDependencies:
- supports-color
@@ -2609,26 +2605,14 @@ packages:
engines: {node: '>=6.9.0'}
dependencies:
'@babel/helper-environment-visitor': 7.18.9
- '@babel/helper-member-expression-to-functions': 7.18.9
+ '@babel/helper-member-expression-to-functions': 7.20.7
'@babel/helper-optimise-call-expression': 7.18.6
- '@babel/traverse': 7.20.12
+ '@babel/traverse': 7.20.13
'@babel/types': 7.20.7
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/helper-replace-supers/7.19.1:
- resolution: {integrity: sha512-T7ahH7wV0Hfs46SFh5Jz3s0B6+o8g3c+7TMxu7xKfmHikg7EAZ3I2Qk9LFhjxXq8sL7UkP5JflezNwoZa8WvWw==}
- engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/helper-environment-visitor': 7.18.9
- '@babel/helper-member-expression-to-functions': 7.20.7
- '@babel/helper-optimise-call-expression': 7.18.6
- '@babel/traverse': 7.20.12
- '@babel/types': 7.20.7
- transitivePeerDependencies:
- - supports-color
-
/@babel/helper-replace-supers/7.20.7:
resolution: {integrity: sha512-vujDMtB6LVfNW13jhlCrp48QNslK6JXi7lQG736HVbHz/mbf4Dc7tIRh1Xf5C0rF7BP8iiSxGMCmY6Ci1ven3A==}
engines: {node: '>=6.9.0'}
@@ -2637,7 +2621,7 @@ packages:
'@babel/helper-member-expression-to-functions': 7.20.7
'@babel/helper-optimise-call-expression': 7.18.6
'@babel/template': 7.20.7
- '@babel/traverse': 7.20.12
+ '@babel/traverse': 7.20.13
'@babel/types': 7.20.7
transitivePeerDependencies:
- supports-color
@@ -2708,7 +2692,7 @@ packages:
dependencies:
'@babel/helper-function-name': 7.19.0
'@babel/template': 7.20.7
- '@babel/traverse': 7.20.12
+ '@babel/traverse': 7.20.13
'@babel/types': 7.20.7
transitivePeerDependencies:
- supports-color
@@ -2720,7 +2704,7 @@ packages:
dependencies:
'@babel/helper-function-name': 7.19.0
'@babel/template': 7.20.7
- '@babel/traverse': 7.20.12
+ '@babel/traverse': 7.20.13
'@babel/types': 7.20.7
transitivePeerDependencies:
- supports-color
@@ -2741,7 +2725,7 @@ packages:
engines: {node: '>=6.9.0'}
dependencies:
'@babel/template': 7.20.7
- '@babel/traverse': 7.20.12
+ '@babel/traverse': 7.20.13
'@babel/types': 7.20.7
transitivePeerDependencies:
- supports-color
@@ -2752,7 +2736,7 @@ packages:
engines: {node: '>=6.9.0'}
dependencies:
'@babel/template': 7.20.7
- '@babel/traverse': 7.20.12
+ '@babel/traverse': 7.20.13
'@babel/types': 7.20.7
transitivePeerDependencies:
- supports-color
@@ -2782,6 +2766,13 @@ packages:
'@babel/types': 7.18.4
dev: true
+ /@babel/parser/7.20.15:
+ resolution: {integrity: sha512-DI4a1oZuf8wC+oAJA9RW6ga3Zbe8RZFt7kD9i4qAspz3I/yHet1VvC3DiSy/fsUvv5pvJuNPh0LPOdCcqinDPg==}
+ engines: {node: '>=6.0.0'}
+ hasBin: true
+ dependencies:
+ '@babel/types': 7.20.7
+
/@babel/parser/7.20.5:
resolution: {integrity: sha512-r27t/cy/m9uKLXQNWWebeCUHgnAZq0CpG1OwKRxzJMP1vpSU4bSIK2hq+/cp0bQxetkXx38n09rNu8jVkcK/zA==}
engines: {node: '>=6.0.0'}
@@ -2796,6 +2787,7 @@ packages:
hasBin: true
dependencies:
'@babel/types': 7.20.7
+ dev: true
/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/7.17.12:
resolution: {integrity: sha512-xCJQXl4EeQ3J9C4yOmpTrtVGmzpm2iSzyxbkZHw7UCnZBftHpF/hpII80uWVyVrc40ytIClHjgWGTG1g/yB+aw==}
@@ -3467,7 +3459,7 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/compat-data': 7.20.1
+ '@babel/compat-data': 7.20.10
'@babel/core': 7.20.12
'@babel/helper-compilation-targets': 7.20.7_@babel+core@7.20.12
'@babel/helper-plugin-utils': 7.20.2
@@ -3480,7 +3472,7 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/compat-data': 7.20.1
+ '@babel/compat-data': 7.20.10
'@babel/core': 7.20.2
'@babel/helper-compilation-targets': 7.20.7_@babel+core@7.20.2
'@babel/helper-plugin-utils': 7.20.2
@@ -3494,7 +3486,7 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/compat-data': 7.20.1
+ '@babel/compat-data': 7.20.10
'@babel/core': 7.20.5
'@babel/helper-compilation-targets': 7.20.7_@babel+core@7.20.5
'@babel/helper-plugin-utils': 7.20.2
@@ -4920,7 +4912,7 @@ packages:
'@babel/helper-function-name': 7.19.0
'@babel/helper-optimise-call-expression': 7.18.6
'@babel/helper-plugin-utils': 7.20.2
- '@babel/helper-replace-supers': 7.19.1
+ '@babel/helper-replace-supers': 7.20.7
'@babel/helper-split-export-declaration': 7.18.6
globals: 11.12.0
transitivePeerDependencies:
@@ -4939,7 +4931,7 @@ packages:
'@babel/helper-function-name': 7.19.0
'@babel/helper-optimise-call-expression': 7.18.6
'@babel/helper-plugin-utils': 7.20.2
- '@babel/helper-replace-supers': 7.19.1
+ '@babel/helper-replace-supers': 7.20.7
'@babel/helper-split-export-declaration': 7.18.6
globals: 11.12.0
transitivePeerDependencies:
@@ -4959,7 +4951,7 @@ packages:
'@babel/helper-function-name': 7.19.0
'@babel/helper-optimise-call-expression': 7.18.6
'@babel/helper-plugin-utils': 7.20.2
- '@babel/helper-replace-supers': 7.19.1
+ '@babel/helper-replace-supers': 7.20.7
'@babel/helper-split-export-declaration': 7.18.6
globals: 11.12.0
transitivePeerDependencies:
@@ -5888,7 +5880,7 @@ packages:
dependencies:
'@babel/core': 7.20.12
'@babel/helper-plugin-utils': 7.20.2
- '@babel/helper-replace-supers': 7.19.1
+ '@babel/helper-replace-supers': 7.20.7
transitivePeerDependencies:
- supports-color
@@ -5900,7 +5892,7 @@ packages:
dependencies:
'@babel/core': 7.20.2
'@babel/helper-plugin-utils': 7.20.2
- '@babel/helper-replace-supers': 7.19.1
+ '@babel/helper-replace-supers': 7.20.7
transitivePeerDependencies:
- supports-color
dev: true
@@ -5913,7 +5905,7 @@ packages:
dependencies:
'@babel/core': 7.20.5
'@babel/helper-plugin-utils': 7.20.2
- '@babel/helper-replace-supers': 7.19.1
+ '@babel/helper-replace-supers': 7.20.7
transitivePeerDependencies:
- supports-color
dev: true
@@ -7356,11 +7348,18 @@ packages:
regenerator-runtime: 0.13.11
dev: true
+ /@babel/runtime/7.20.13:
+ resolution: {integrity: sha512-gt3PKXs0DBoL9xCvOIIZ2NEqAGZqHjAnmVbfQtB620V0uReIQutpel14KcneZuer7UioY8ALKZ7iocavvzTNFA==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ regenerator-runtime: 0.13.11
+
/@babel/runtime/7.20.7:
resolution: {integrity: sha512-UF0tvkUtxwAgZ5W/KrkHf0Rn0fdnLDU9ScxBrEVNUprE/MzirjK4MJUX1/BVDv00Sv8cljtukVK1aky++X1SjQ==}
engines: {node: '>=6.9.0'}
dependencies:
regenerator-runtime: 0.13.11
+ dev: true
/@babel/standalone/7.20.12:
resolution: {integrity: sha512-hK/X+m1il3w1tYS4H8LDaGCEdiT47SVqEXY8RiEAgou26BystipSU8ZL6EvBR6t5l7lTv0ilBiChXWblKJ5iUA==}
@@ -7390,7 +7389,7 @@ packages:
engines: {node: '>=6.9.0'}
dependencies:
'@babel/code-frame': 7.18.6
- '@babel/parser': 7.20.7
+ '@babel/parser': 7.20.15
'@babel/types': 7.20.7
/@babel/traverse/7.18.5:
@@ -7416,12 +7415,12 @@ packages:
engines: {node: '>=6.9.0'}
dependencies:
'@babel/code-frame': 7.18.6
- '@babel/generator': 7.20.7
+ '@babel/generator': 7.20.14
'@babel/helper-environment-visitor': 7.18.9
'@babel/helper-function-name': 7.19.0
'@babel/helper-hoist-variables': 7.18.6
'@babel/helper-split-export-declaration': 7.18.6
- '@babel/parser': 7.20.7
+ '@babel/parser': 7.20.15
'@babel/types': 7.20.7
debug: 4.3.4
globals: 11.12.0
@@ -7432,6 +7431,24 @@ packages:
/@babel/traverse/7.20.12:
resolution: {integrity: sha512-MsIbFN0u+raeja38qboyF8TIT7K0BFzz/Yd/77ta4MsUsmP2RAnidIlwq7d5HFQrH/OZJecGV6B71C4zAgpoSQ==}
engines: {node: '>=6.9.0'}
+ dependencies:
+ '@babel/code-frame': 7.18.6
+ '@babel/generator': 7.20.14
+ '@babel/helper-environment-visitor': 7.18.9
+ '@babel/helper-function-name': 7.19.0
+ '@babel/helper-hoist-variables': 7.18.6
+ '@babel/helper-split-export-declaration': 7.18.6
+ '@babel/parser': 7.20.15
+ '@babel/types': 7.20.7
+ debug: 4.3.4
+ globals: 11.12.0
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ /@babel/traverse/7.20.13:
+ resolution: {integrity: sha512-kMJXfF0T6DIS9E8cgdLCSAL+cuCK+YEZHWiLK0SXpTo8YRj5lpJu3CDNKiIBCne4m9hhTIqUg6SYTAI39tAiVQ==}
+ engines: {node: '>=6.9.0'}
dependencies:
'@babel/code-frame': 7.18.6
'@babel/generator': 7.20.7
@@ -7439,7 +7456,7 @@ packages:
'@babel/helper-function-name': 7.19.0
'@babel/helper-hoist-variables': 7.18.6
'@babel/helper-split-export-declaration': 7.18.6
- '@babel/parser': 7.20.7
+ '@babel/parser': 7.20.15
'@babel/types': 7.20.7
debug: 4.3.4
globals: 11.12.0
@@ -7686,9 +7703,9 @@ packages:
resolution: {integrity: sha512-mAAwCo4n66TMWBH1kXnHVZsakW9VAXJzTO4yZukuL3ro4F+JtkMwKfh42EG75K/J/YIFQG5I/Bzy0UH/hFxaTg==}
engines: {node: '>=16.14'}
dependencies:
- cssnano-preset-advanced: 5.3.8_postcss@8.4.20
- postcss: 8.4.20
- postcss-sort-media-queries: 4.2.1_postcss@8.4.20
+ cssnano-preset-advanced: 5.3.8_postcss@8.4.21
+ postcss: 8.4.21
+ postcss-sort-media-queries: 4.2.1_postcss@8.4.21
tslib: 2.4.1
dev: true
@@ -7720,8 +7737,8 @@ packages:
react: ^16.8.4 || ^17.0.0
react-dom: ^16.8.4 || ^17.0.0
dependencies:
- '@babel/parser': 7.20.7
- '@babel/traverse': 7.20.12
+ '@babel/parser': 7.20.15
+ '@babel/traverse': 7.20.13
'@docusaurus/logger': 2.2.0
'@docusaurus/utils': 2.2.0_@docusaurus+types@2.2.0
'@mdx-js/mdx': 1.6.22
@@ -9103,20 +9120,20 @@ packages:
dev: true
optional: true
- /@gatsbyjs/parcel-namer-relative-to-cwd/2.6.0-next.0_@parcel+core@2.8.2:
- resolution: {integrity: sha512-YAEMsZhRG59bs9Ps3TKh/jxQ2ysnHU7+eVEEq/gssh2o+og//WTiR7KldR6xFEWQWMmmYQThAGyuJe/sN9hVNA==}
+ /@gatsbyjs/parcel-namer-relative-to-cwd/2.7.0-next.0_@parcel+core@2.8.3:
+ resolution: {integrity: sha512-9Zg4XkxOgsOUWgrc7RmsietgvH6wesildPtpdT2Z9R45Q05i6OcgBUhX+qQoniQJzci8IEBM2vSkU9E8x6E74Q==}
engines: {node: '>=18.0.0', parcel: 2.x}
dependencies:
- '@babel/runtime': 7.20.7
- '@parcel/namer-default': 2.8.2_@parcel+core@2.8.2
- '@parcel/plugin': 2.8.2_@parcel+core@2.8.2
- gatsby-core-utils: 4.6.0-next.0
+ '@babel/runtime': 7.20.13
+ '@parcel/namer-default': 2.8.3_@parcel+core@2.8.3
+ '@parcel/plugin': 2.8.3_@parcel+core@2.8.3
+ gatsby-core-utils: 4.7.0-next.0
transitivePeerDependencies:
- '@parcel/core'
dev: false
- /@gatsbyjs/reach-router/2.0.0_biqbaboplfbrettd7655fr4n2y:
- resolution: {integrity: sha512-n5nifEBtQCo4Wc/ErBvFEGyX5y8dKPSERre3pmuizkJl9J4l0M0bhu6aMc4uOXhG66UR4jgVDjN2Q2I2FSrVkw==}
+ /@gatsbyjs/reach-router/2.0.1_biqbaboplfbrettd7655fr4n2y:
+ resolution: {integrity: sha512-gmSZniS9/phwgEgpFARMpNg21PkYDZEpfgEzvkgpE/iku4uvXqCrxr86fXbTpI9mkrhKS1SCTYmLGe60VdHcdQ==}
peerDependencies:
react: 18.x
react-dom: 18.x
@@ -9199,8 +9216,8 @@ packages:
graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0
dependencies:
'@graphql-codegen/plugin-helpers': 3.1.2_graphql@16.6.0
- '@graphql-tools/schema': 9.0.12_graphql@16.6.0
- '@graphql-tools/utils': 9.1.3_graphql@16.6.0
+ '@graphql-tools/schema': 9.0.15_graphql@16.6.0
+ '@graphql-tools/utils': 9.2.0_graphql@16.6.0
graphql: 16.6.0
tslib: 2.4.1
dev: false
@@ -9224,7 +9241,7 @@ packages:
peerDependencies:
graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0
dependencies:
- '@graphql-tools/utils': 9.1.3_graphql@16.6.0
+ '@graphql-tools/utils': 9.2.0_graphql@16.6.0
change-case-all: 1.0.15
common-tags: 1.8.2
graphql: 16.6.0
@@ -9239,7 +9256,7 @@ packages:
graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0
dependencies:
'@graphql-codegen/plugin-helpers': 3.1.2_graphql@16.6.0
- '@graphql-tools/utils': 9.1.3_graphql@16.6.0
+ '@graphql-tools/utils': 9.2.0_graphql@16.6.0
graphql: 16.6.0
tslib: 2.4.1
dev: false
@@ -9284,7 +9301,7 @@ packages:
'@graphql-codegen/plugin-helpers': 3.1.2_graphql@16.6.0
'@graphql-tools/optimize': 1.3.1_graphql@16.6.0
'@graphql-tools/relay-operation-optimizer': 6.5.14_graphql@16.6.0
- '@graphql-tools/utils': 9.1.3_graphql@16.6.0
+ '@graphql-tools/utils': 9.2.0_graphql@16.6.0
auto-bind: 4.0.0
change-case-all: 1.0.15
dependency-graph: 0.11.0
@@ -9297,13 +9314,13 @@ packages:
- supports-color
dev: false
- /@graphql-tools/code-file-loader/7.3.15_hooseksvfyhf37tjwfseq7c3kq:
- resolution: {integrity: sha512-cF8VNc/NANTyVSIK8BkD/KSXRF64DvvomuJ0evia7tJu4uGTXgDjimTMWsTjKRGOOBSTEbL6TA8e4DdIYq6Udw==}
+ /@graphql-tools/code-file-loader/7.3.18_hooseksvfyhf37tjwfseq7c3kq:
+ resolution: {integrity: sha512-DK0YjsJWKkLF6HQYuuqiDwMr9rwRojm8yR/T+J8vXCOR4ndYa1EvUm9wRHPhxHVOYeptO2u+APoWNEhuMN9Hbw==}
peerDependencies:
graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
dependencies:
- '@graphql-tools/graphql-tag-pluck': 7.4.2_hooseksvfyhf37tjwfseq7c3kq
- '@graphql-tools/utils': 9.1.3_graphql@16.6.0
+ '@graphql-tools/graphql-tag-pluck': 7.4.4_hooseksvfyhf37tjwfseq7c3kq
+ '@graphql-tools/utils': 9.2.0_graphql@16.6.0
globby: 11.1.0
graphql: 16.6.0
tslib: 2.4.1
@@ -9313,16 +9330,16 @@ packages:
- supports-color
dev: false
- /@graphql-tools/graphql-tag-pluck/7.4.2_hooseksvfyhf37tjwfseq7c3kq:
- resolution: {integrity: sha512-SXM1wR5TExrxocQTxZK5r74jTbg8GxSYLY3mOPCREGz6Fu7PNxMxfguUzGUAB43Mf44Dn8oVztzd2eitv2Qgww==}
+ /@graphql-tools/graphql-tag-pluck/7.4.4_hooseksvfyhf37tjwfseq7c3kq:
+ resolution: {integrity: sha512-yHIEcapR/kVSrn4W4Nf3FYpJKPcoGvJbdbye8TnW3dD5GkG4UqVnKuyqFvQPOhgqXKbloFZqUhNqEuyqxqIPRw==}
peerDependencies:
graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
dependencies:
- '@babel/parser': 7.20.7
+ '@babel/parser': 7.20.15
'@babel/plugin-syntax-import-assertions': 7.20.0_@babel+core@7.20.12
- '@babel/traverse': 7.20.12
+ '@babel/traverse': 7.20.13
'@babel/types': 7.20.7
- '@graphql-tools/utils': 9.1.3_graphql@16.6.0
+ '@graphql-tools/utils': 9.2.0_graphql@16.6.0
graphql: 16.6.0
tslib: 2.4.1
transitivePeerDependencies:
@@ -9330,24 +9347,24 @@ packages:
- supports-color
dev: false
- /@graphql-tools/load/7.8.8_graphql@16.6.0:
- resolution: {integrity: sha512-gMuQdO2jXmI0BNUc1MafxRQTWVMUtuH500pZAQtOdDdNJppV7lJdY6mMhITQ2qnhYDuMrcZPHhIkcftyQfkgUg==}
+ /@graphql-tools/load/7.8.11_graphql@16.6.0:
+ resolution: {integrity: sha512-pVn3fYP/qZ3m2NE86gSexyZpEmvTSUe+OIRfWBM60a4L/SycMxgVfYB5+PyDCzruFZg/didIG3v7RfPlZ7zNTQ==}
peerDependencies:
graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
dependencies:
- '@graphql-tools/schema': 9.0.12_graphql@16.6.0
- '@graphql-tools/utils': 9.1.3_graphql@16.6.0
+ '@graphql-tools/schema': 9.0.15_graphql@16.6.0
+ '@graphql-tools/utils': 9.2.0_graphql@16.6.0
graphql: 16.6.0
p-limit: 3.1.0
tslib: 2.4.1
dev: false
- /@graphql-tools/merge/8.3.14_graphql@16.6.0:
- resolution: {integrity: sha512-zV0MU1DnxJLIB0wpL4N3u21agEiYFsjm6DI130jqHpwF0pR9HkF+Ni65BNfts4zQelP0GjkHltG+opaozAJ1NA==}
+ /@graphql-tools/merge/8.3.17_graphql@16.6.0:
+ resolution: {integrity: sha512-CLzz49lc6BavPhH9gPRm0sJeNA7kC/tF/jLUTQsyef6xj82Jw3rqIJ9PE+bk1cqPCOG01WLOfquBu445OMDO2g==}
peerDependencies:
graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
dependencies:
- '@graphql-tools/utils': 9.1.3_graphql@16.6.0
+ '@graphql-tools/utils': 9.2.0_graphql@16.6.0
graphql: 16.6.0
tslib: 2.4.1
dev: false
@@ -9375,16 +9392,16 @@ packages:
- supports-color
dev: false
- /@graphql-tools/schema/9.0.12_graphql@16.6.0:
- resolution: {integrity: sha512-DmezcEltQai0V1y96nwm0Kg11FDS/INEFekD4nnVgzBqawvznWqK6D6bujn+cw6kivoIr3Uq//QmU/hBlBzUlQ==}
+ /@graphql-tools/schema/9.0.15_graphql@16.6.0:
+ resolution: {integrity: sha512-p2DbpkOBcsi+yCEjwoS+r4pJ5z+3JjlJdhbPkCwC4q8lGf5r93dVYrExOrqGKTU5kxLXI/mxabSxcunjNIsDIg==}
peerDependencies:
graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
dependencies:
- '@graphql-tools/merge': 8.3.14_graphql@16.6.0
- '@graphql-tools/utils': 9.1.3_graphql@16.6.0
+ '@graphql-tools/merge': 8.3.17_graphql@16.6.0
+ '@graphql-tools/utils': 9.2.0_graphql@16.6.0
graphql: 16.6.0
tslib: 2.4.1
- value-or-promise: 1.0.11
+ value-or-promise: 1.0.12
dev: false
/@graphql-tools/utils/8.13.1_graphql@16.6.0:
@@ -9405,6 +9422,24 @@ packages:
tslib: 2.4.1
dev: false
+ /@graphql-tools/utils/9.2.0_graphql@16.6.0:
+ resolution: {integrity: sha512-s3lEG1iYkyYEnKCWrIFECX3XH2wmZvbg6Ir3udCvIDynq+ydaO7JQXobclpPtwSJtjlS353haF//6V7mnBQ4bg==}
+ peerDependencies:
+ graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
+ dependencies:
+ '@graphql-typed-document-node/core': 3.1.1_graphql@16.6.0
+ graphql: 16.6.0
+ tslib: 2.4.1
+ dev: false
+
+ /@graphql-typed-document-node/core/3.1.1_graphql@16.6.0:
+ resolution: {integrity: sha512-NQ17ii0rK1b34VZonlmT2QMJFI70m0TRwbknO/ihlbatXyaktDhN/98vBiUU6kNBPljqGqyIrl2T4nY2RpFANg==}
+ peerDependencies:
+ graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0
+ dependencies:
+ graphql: 16.6.0
+ dev: false
+
/@grpc/grpc-js/1.6.7:
resolution: {integrity: sha512-eBM03pu9hd3VqDQG+kHahiG1x80RGkkqqRb1Pchcwqej/KkAH95gAvKs6laqaHCycYaPK+TKuNQnOz9UXYA8qw==}
engines: {node: ^8.13.0 || >=10.10.0}
@@ -11031,67 +11066,67 @@ packages:
resolution: {integrity: sha512-MSAs9t3Go7GUkMhpKC44T58DJ5KGk2vBo+h1cqQeqlMfdGkxaVB78ZWpv9gYi/g2fa4sopag9gJsNvS8XGgWJA==}
dev: false
- /@parcel/bundler-default/2.8.2_@parcel+core@2.8.2:
- resolution: {integrity: sha512-/7ao0vc/v8WGHZaS1SyS5R8wzqmmXEr9mhIIB2cbLQ4LA2WUtKsYcvZ2gjJuiAAN1CHC6GxqwYjIJScQCk/QXg==}
- engines: {node: '>= 12.0.0', parcel: ^2.8.2}
+ /@parcel/bundler-default/2.8.3_@parcel+core@2.8.3:
+ resolution: {integrity: sha512-yJvRsNWWu5fVydsWk3O2L4yIy3UZiKWO2cPDukGOIWMgp/Vbpp+2Ct5IygVRtE22bnseW/E/oe0PV3d2IkEJGg==}
+ engines: {node: '>= 12.0.0', parcel: ^2.8.3}
dependencies:
- '@parcel/diagnostic': 2.8.2
- '@parcel/graph': 2.8.2
- '@parcel/hash': 2.8.2
- '@parcel/plugin': 2.8.2_@parcel+core@2.8.2
- '@parcel/utils': 2.8.2
+ '@parcel/diagnostic': 2.8.3
+ '@parcel/graph': 2.8.3
+ '@parcel/hash': 2.8.3
+ '@parcel/plugin': 2.8.3_@parcel+core@2.8.3
+ '@parcel/utils': 2.8.3
nullthrows: 1.1.1
transitivePeerDependencies:
- '@parcel/core'
dev: false
- /@parcel/cache/2.8.2_@parcel+core@2.8.2:
- resolution: {integrity: sha512-kiyoOgh1RXp5qp+wlb8Pi/Z7o9D82Oj5RlHnKSAauyR7jgnI8Vq8JTeBmlLqrf+kHxcDcp2p86hidSeANhlQNg==}
+ /@parcel/cache/2.8.3_@parcel+core@2.8.3:
+ resolution: {integrity: sha512-k7xv5vSQrJLdXuglo+Hv3yF4BCSs1tQ/8Vbd6CHTkOhf7LcGg6CPtLw053R/KdMpd/4GPn0QrAsOLdATm1ELtQ==}
engines: {node: '>= 12.0.0'}
peerDependencies:
- '@parcel/core': ^2.8.2
+ '@parcel/core': ^2.8.3
dependencies:
- '@parcel/core': 2.8.2
- '@parcel/fs': 2.8.2_@parcel+core@2.8.2
- '@parcel/logger': 2.8.2
- '@parcel/utils': 2.8.2
+ '@parcel/core': 2.8.3
+ '@parcel/fs': 2.8.3_@parcel+core@2.8.3
+ '@parcel/logger': 2.8.3
+ '@parcel/utils': 2.8.3
lmdb: 2.5.2
dev: false
- /@parcel/codeframe/2.8.2:
- resolution: {integrity: sha512-U2GT9gq1Zs3Gr83j8JIs10bLbGOHFl57Y8D57nrdR05F4iilV/UR6K7jkhdoiFc9WiHh3ewvrko5+pSdAVFPgQ==}
+ /@parcel/codeframe/2.8.3:
+ resolution: {integrity: sha512-FE7sY53D6n/+2Pgg6M9iuEC6F5fvmyBkRE4d9VdnOoxhTXtkEqpqYgX7RJ12FAQwNlxKq4suBJQMgQHMF2Kjeg==}
engines: {node: '>= 12.0.0'}
dependencies:
chalk: 4.1.2
dev: false
- /@parcel/compressor-raw/2.8.2_@parcel+core@2.8.2:
- resolution: {integrity: sha512-EFPTer/P+3axifH6LtYHS3E6ABgdZnjZomJZ/Nl19lypZh/NgZzmMZlINlEVqyYhCggoKfXzgeTgkIHPN2d5Vw==}
- engines: {node: '>= 12.0.0', parcel: ^2.8.2}
+ /@parcel/compressor-raw/2.8.3_@parcel+core@2.8.3:
+ resolution: {integrity: sha512-bVDsqleBUxRdKMakWSlWC9ZjOcqDKE60BE+Gh3JSN6WJrycJ02P5wxjTVF4CStNP/G7X17U+nkENxSlMG77ySg==}
+ engines: {node: '>= 12.0.0', parcel: ^2.8.3}
dependencies:
- '@parcel/plugin': 2.8.2_@parcel+core@2.8.2
+ '@parcel/plugin': 2.8.3_@parcel+core@2.8.3
transitivePeerDependencies:
- '@parcel/core'
dev: false
- /@parcel/core/2.8.2:
- resolution: {integrity: sha512-ZGuq6p+Lzx6fgufaVsuOBwgpU3hgskTvIDIMdIDi9gOZyhGPK7U2srXdX+VYUL5ZSGbX04/P6QlB9FMAXK+nEg==}
+ /@parcel/core/2.8.3:
+ resolution: {integrity: sha512-Euf/un4ZAiClnlUXqPB9phQlKbveU+2CotZv7m7i+qkgvFn5nAGnrV4h1OzQU42j9dpgOxWi7AttUDMrvkbhCQ==}
engines: {node: '>= 12.0.0'}
dependencies:
'@mischnic/json-sourcemap': 0.1.0
- '@parcel/cache': 2.8.2_@parcel+core@2.8.2
- '@parcel/diagnostic': 2.8.2
- '@parcel/events': 2.8.2
- '@parcel/fs': 2.8.2_@parcel+core@2.8.2
- '@parcel/graph': 2.8.2
- '@parcel/hash': 2.8.2
- '@parcel/logger': 2.8.2
- '@parcel/package-manager': 2.8.2_@parcel+core@2.8.2
- '@parcel/plugin': 2.8.2_@parcel+core@2.8.2
+ '@parcel/cache': 2.8.3_@parcel+core@2.8.3
+ '@parcel/diagnostic': 2.8.3
+ '@parcel/events': 2.8.3
+ '@parcel/fs': 2.8.3_@parcel+core@2.8.3
+ '@parcel/graph': 2.8.3
+ '@parcel/hash': 2.8.3
+ '@parcel/logger': 2.8.3
+ '@parcel/package-manager': 2.8.3_@parcel+core@2.8.3
+ '@parcel/plugin': 2.8.3_@parcel+core@2.8.3
'@parcel/source-map': 2.1.1
- '@parcel/types': 2.8.2_@parcel+core@2.8.2
- '@parcel/utils': 2.8.2
- '@parcel/workers': 2.8.2_@parcel+core@2.8.2
+ '@parcel/types': 2.8.3_@parcel+core@2.8.3
+ '@parcel/utils': 2.8.3
+ '@parcel/workers': 2.8.3_@parcel+core@2.8.3
abortcontroller-polyfill: 1.7.5
base-x: 3.0.9
browserslist: 4.21.4
@@ -11104,180 +11139,180 @@ packages:
semver: 5.7.1
dev: false
- /@parcel/diagnostic/2.8.2:
- resolution: {integrity: sha512-tGSMwM2rSYLjJW0fCd9gb3tNjfCX/83PZ10/5u2E33UZVkk8OIHsQmsrtq2H2g4oQL3rFxkfEx6nGPDGHwlx7A==}
+ /@parcel/diagnostic/2.8.3:
+ resolution: {integrity: sha512-u7wSzuMhLGWZjVNYJZq/SOViS3uFG0xwIcqXw12w54Uozd6BH8JlhVtVyAsq9kqnn7YFkw6pXHqAo5Tzh4FqsQ==}
engines: {node: '>= 12.0.0'}
dependencies:
'@mischnic/json-sourcemap': 0.1.0
nullthrows: 1.1.1
dev: false
- /@parcel/events/2.8.2:
- resolution: {integrity: sha512-o5etrsKm16y8iRPnjtEBNy4lD0WAigD66yt/RZl9Rx0vPVDly/63Rr9+BrXWVW7bJ7x0S0VVpWW4j3f/qZOsXg==}
+ /@parcel/events/2.8.3:
+ resolution: {integrity: sha512-hoIS4tAxWp8FJk3628bsgKxEvR7bq2scCVYHSqZ4fTi/s0+VymEATrRCUqf+12e5H47uw1/ZjoqrGtBI02pz4w==}
engines: {node: '>= 12.0.0'}
dev: false
- /@parcel/fs-search/2.8.2:
- resolution: {integrity: sha512-ovQnupRm/MoE/tbgH0Ivknk0QYenXAewjcog+T5umDmUlTmnIRZjURrgDf5Xtw8T/CD5Xv+HmIXpJ9Ez/LzJpw==}
+ /@parcel/fs-search/2.8.3:
+ resolution: {integrity: sha512-DJBT2N8knfN7Na6PP2mett3spQLTqxFrvl0gv+TJRp61T8Ljc4VuUTb0hqBj+belaASIp3Q+e8+SgaFQu7wLiQ==}
engines: {node: '>= 12.0.0'}
dependencies:
detect-libc: 1.0.3
dev: false
- /@parcel/fs/2.8.2_@parcel+core@2.8.2:
- resolution: {integrity: sha512-aN8znbMndSqn1xwZEmMblzqmJsxcExv2jKLl/a9RUHAP7LaPYcPZIykDL3YwGCiKTCzjmRpXnNoyosjFFeBaHA==}
+ /@parcel/fs/2.8.3_@parcel+core@2.8.3:
+ resolution: {integrity: sha512-y+i+oXbT7lP0e0pJZi/YSm1vg0LDsbycFuHZIL80pNwdEppUAtibfJZCp606B7HOjMAlNZOBo48e3hPG3d8jgQ==}
engines: {node: '>= 12.0.0'}
peerDependencies:
- '@parcel/core': ^2.8.2
+ '@parcel/core': ^2.8.3
dependencies:
- '@parcel/core': 2.8.2
- '@parcel/fs-search': 2.8.2
- '@parcel/types': 2.8.2_@parcel+core@2.8.2
- '@parcel/utils': 2.8.2
+ '@parcel/core': 2.8.3
+ '@parcel/fs-search': 2.8.3
+ '@parcel/types': 2.8.3_@parcel+core@2.8.3
+ '@parcel/utils': 2.8.3
'@parcel/watcher': 2.1.0
- '@parcel/workers': 2.8.2_@parcel+core@2.8.2
+ '@parcel/workers': 2.8.3_@parcel+core@2.8.3
dev: false
- /@parcel/graph/2.8.2:
- resolution: {integrity: sha512-SLEvBQBgfkXgU4EBu30+CNanpuKjcNuEv/x8SwobCF0i3Rk+QKbe7T36bNR7727mao++2Ha69q93Dd9dTPw0kQ==}
+ /@parcel/graph/2.8.3:
+ resolution: {integrity: sha512-26GL8fYZPdsRhSXCZ0ZWliloK6DHlMJPWh6Z+3VVZ5mnDSbYg/rRKWmrkhnr99ZWmL9rJsv4G74ZwvDEXTMPBg==}
engines: {node: '>= 12.0.0'}
dependencies:
nullthrows: 1.1.1
dev: false
- /@parcel/hash/2.8.2:
- resolution: {integrity: sha512-NBnP8Hu0xvAqAfZXRaMM66i8nJyxpKS86BbhwkbgTGbwO1OY87GERliHeREJfcER0E0ZzwNow7MNR8ZDm6IvJQ==}
+ /@parcel/hash/2.8.3:
+ resolution: {integrity: sha512-FVItqzjWmnyP4ZsVgX+G00+6U2IzOvqDtdwQIWisCcVoXJFCqZJDy6oa2qDDFz96xCCCynjRjPdQx2jYBCpfYw==}
engines: {node: '>= 12.0.0'}
dependencies:
detect-libc: 1.0.3
xxhash-wasm: 0.4.2
dev: false
- /@parcel/logger/2.8.2:
- resolution: {integrity: sha512-zlhK6QHxfFJMlVJxxcCw0xxBDrYPFPOhMxSD6p6b0z9Yct1l3NdpmfabgjKX8wnZmHokFsil6daleM+M80n2Ew==}
+ /@parcel/logger/2.8.3:
+ resolution: {integrity: sha512-Kpxd3O/Vs7nYJIzkdmB6Bvp3l/85ydIxaZaPfGSGTYOfaffSOTkhcW9l6WemsxUrlts4za6CaEWcc4DOvaMOPA==}
engines: {node: '>= 12.0.0'}
dependencies:
- '@parcel/diagnostic': 2.8.2
- '@parcel/events': 2.8.2
+ '@parcel/diagnostic': 2.8.3
+ '@parcel/events': 2.8.3
dev: false
- /@parcel/markdown-ansi/2.8.2:
- resolution: {integrity: sha512-5y29TXgRgG0ybuXaDsDk4Aofg/nDUeAAyVl9/toYCDDhxpQV4yZt8WNPu4PaNYKGLuNgXwsmz+ryZQHGmfbAIQ==}
+ /@parcel/markdown-ansi/2.8.3:
+ resolution: {integrity: sha512-4v+pjyoh9f5zuU/gJlNvNFGEAb6J90sOBwpKJYJhdWXLZMNFCVzSigxrYO+vCsi8G4rl6/B2c0LcwIMjGPHmFQ==}
engines: {node: '>= 12.0.0'}
dependencies:
chalk: 4.1.2
dev: false
- /@parcel/namer-default/2.8.2_@parcel+core@2.8.2:
- resolution: {integrity: sha512-sMLW/bDWXA6IE7TQKOsBnA5agZGNvZ9qIXKZEUTsTloUjMdAWI8NYA1s0i9HovnGxI5uGlgevrftK4S5V4AdkA==}
- engines: {node: '>= 12.0.0', parcel: ^2.8.2}
+ /@parcel/namer-default/2.8.3_@parcel+core@2.8.3:
+ resolution: {integrity: sha512-tJ7JehZviS5QwnxbARd8Uh63rkikZdZs1QOyivUhEvhN+DddSAVEdQLHGPzkl3YRk0tjFhbqo+Jci7TpezuAMw==}
+ engines: {node: '>= 12.0.0', parcel: ^2.8.3}
dependencies:
- '@parcel/diagnostic': 2.8.2
- '@parcel/plugin': 2.8.2_@parcel+core@2.8.2
+ '@parcel/diagnostic': 2.8.3
+ '@parcel/plugin': 2.8.3_@parcel+core@2.8.3
nullthrows: 1.1.1
transitivePeerDependencies:
- '@parcel/core'
dev: false
- /@parcel/node-resolver-core/2.8.2:
- resolution: {integrity: sha512-D/NJEz/h/C3RmUOWSTg0cLwG3uRVHY9PL+3YGO/c8tKu8PlS2j55XtntdiVfwkK+P6avLCnrJnv/gwTa79dOPw==}
+ /@parcel/node-resolver-core/2.8.3:
+ resolution: {integrity: sha512-12YryWcA5Iw2WNoEVr/t2HDjYR1iEzbjEcxfh1vaVDdZ020PiGw67g5hyIE/tsnG7SRJ0xdRx1fQ2hDgED+0Ww==}
engines: {node: '>= 12.0.0'}
dependencies:
- '@parcel/diagnostic': 2.8.2
- '@parcel/utils': 2.8.2
+ '@parcel/diagnostic': 2.8.3
+ '@parcel/utils': 2.8.3
nullthrows: 1.1.1
semver: 5.7.1
dev: false
- /@parcel/optimizer-terser/2.8.2_@parcel+core@2.8.2:
- resolution: {integrity: sha512-jFAOh9WaO6oNc8B9qDsCWzNkH7nYlpvaPn0w3ZzpMDi0HWD+w+xgO737rWLJWZapqUDSOs0Q/hDFEZ82/z0yxA==}
- engines: {node: '>= 12.0.0', parcel: ^2.8.2}
+ /@parcel/optimizer-terser/2.8.3_@parcel+core@2.8.3:
+ resolution: {integrity: sha512-9EeQlN6zIeUWwzrzu6Q2pQSaYsYGah8MtiQ/hog9KEPlYTP60hBv/+utDyYEHSQhL7y5ym08tPX5GzBvwAD/dA==}
+ engines: {node: '>= 12.0.0', parcel: ^2.8.3}
dependencies:
- '@parcel/diagnostic': 2.8.2
- '@parcel/plugin': 2.8.2_@parcel+core@2.8.2
+ '@parcel/diagnostic': 2.8.3
+ '@parcel/plugin': 2.8.3_@parcel+core@2.8.3
'@parcel/source-map': 2.1.1
- '@parcel/utils': 2.8.2
+ '@parcel/utils': 2.8.3
nullthrows: 1.1.1
terser: 5.16.1
transitivePeerDependencies:
- '@parcel/core'
dev: false
- /@parcel/package-manager/2.8.2_@parcel+core@2.8.2:
- resolution: {integrity: sha512-hx4Imi0yhsSS0aNZkEANPYNNKqBuR63EUNWSxMyHh4ZOvbHoOXnMn1ySGdx6v0oi9HvKymNsLMQ1T5CuI4l4Bw==}
+ /@parcel/package-manager/2.8.3_@parcel+core@2.8.3:
+ resolution: {integrity: sha512-tIpY5pD2lH53p9hpi++GsODy6V3khSTX4pLEGuMpeSYbHthnOViobqIlFLsjni+QA1pfc8NNNIQwSNdGjYflVA==}
engines: {node: '>= 12.0.0'}
peerDependencies:
- '@parcel/core': ^2.8.2
+ '@parcel/core': ^2.8.3
dependencies:
- '@parcel/core': 2.8.2
- '@parcel/diagnostic': 2.8.2
- '@parcel/fs': 2.8.2_@parcel+core@2.8.2
- '@parcel/logger': 2.8.2
- '@parcel/types': 2.8.2_@parcel+core@2.8.2
- '@parcel/utils': 2.8.2
- '@parcel/workers': 2.8.2_@parcel+core@2.8.2
+ '@parcel/core': 2.8.3
+ '@parcel/diagnostic': 2.8.3
+ '@parcel/fs': 2.8.3_@parcel+core@2.8.3
+ '@parcel/logger': 2.8.3
+ '@parcel/types': 2.8.3_@parcel+core@2.8.3
+ '@parcel/utils': 2.8.3
+ '@parcel/workers': 2.8.3_@parcel+core@2.8.3
semver: 5.7.1
dev: false
- /@parcel/packager-js/2.8.2_@parcel+core@2.8.2:
- resolution: {integrity: sha512-48LtHP4lJn8J1aBeD4Ix/YjsRxrBUkzbx7czdUeRh2PlCqY4wwIhciVlEFipj/ANr3ieSX44lXyVPk/ttnSdrw==}
- engines: {node: '>= 12.0.0', parcel: ^2.8.2}
+ /@parcel/packager-js/2.8.3_@parcel+core@2.8.3:
+ resolution: {integrity: sha512-0pGKC3Ax5vFuxuZCRB+nBucRfFRz4ioie19BbDxYnvBxrd4M3FIu45njf6zbBYsI9eXqaDnL1b3DcZJfYqtIzw==}
+ engines: {node: '>= 12.0.0', parcel: ^2.8.3}
dependencies:
- '@parcel/diagnostic': 2.8.2
- '@parcel/hash': 2.8.2
- '@parcel/plugin': 2.8.2_@parcel+core@2.8.2
+ '@parcel/diagnostic': 2.8.3
+ '@parcel/hash': 2.8.3
+ '@parcel/plugin': 2.8.3_@parcel+core@2.8.3
'@parcel/source-map': 2.1.1
- '@parcel/utils': 2.8.2
+ '@parcel/utils': 2.8.3
globals: 13.19.0
nullthrows: 1.1.1
transitivePeerDependencies:
- '@parcel/core'
dev: false
- /@parcel/packager-raw/2.8.2_@parcel+core@2.8.2:
- resolution: {integrity: sha512-dGonfFptNV1lgqKaD17ecXBUyIfoG6cJI1cCE1sSoYCEt7r+Rq56X/Gq8oiA3+jjMC7QTls+SmFeMZh26fl77Q==}
- engines: {node: '>= 12.0.0', parcel: ^2.8.2}
+ /@parcel/packager-raw/2.8.3_@parcel+core@2.8.3:
+ resolution: {integrity: sha512-BA6enNQo1RCnco9MhkxGrjOk59O71IZ9DPKu3lCtqqYEVd823tXff2clDKHK25i6cChmeHu6oB1Rb73hlPqhUA==}
+ engines: {node: '>= 12.0.0', parcel: ^2.8.3}
dependencies:
- '@parcel/plugin': 2.8.2_@parcel+core@2.8.2
+ '@parcel/plugin': 2.8.3_@parcel+core@2.8.3
transitivePeerDependencies:
- '@parcel/core'
dev: false
- /@parcel/plugin/2.8.2_@parcel+core@2.8.2:
- resolution: {integrity: sha512-YG7TWfKsoNm72jbz3b3TLec0qJHVkuAWSzGzowdIhX37cP1kRfp6BU2VcH+qYPP/KYJLzhcZa9n3by147mGcxw==}
+ /@parcel/plugin/2.8.3_@parcel+core@2.8.3:
+ resolution: {integrity: sha512-jZ6mnsS4D9X9GaNnvrixDQwlUQJCohDX2hGyM0U0bY2NWU8Km97SjtoCpWjq+XBCx/gpC4g58+fk9VQeZq2vlw==}
engines: {node: '>= 12.0.0'}
dependencies:
- '@parcel/types': 2.8.2_@parcel+core@2.8.2
+ '@parcel/types': 2.8.3_@parcel+core@2.8.3
transitivePeerDependencies:
- '@parcel/core'
dev: false
- /@parcel/reporter-dev-server/2.8.2_@parcel+core@2.8.2:
- resolution: {integrity: sha512-A16pAQSAT8Yilo1yCPZcrtWbRhwyiMopEz0mOyGobA1ZDy6B3j4zjobIWzdPQCSIY7+v44vtWMDGbdGrxt6M1Q==}
- engines: {node: '>= 12.0.0', parcel: ^2.8.2}
+ /@parcel/reporter-dev-server/2.8.3_@parcel+core@2.8.3:
+ resolution: {integrity: sha512-Y8C8hzgzTd13IoWTj+COYXEyCkXfmVJs3//GDBsH22pbtSFMuzAZd+8J9qsCo0EWpiDow7V9f1LischvEh3FbQ==}
+ engines: {node: '>= 12.0.0', parcel: ^2.8.3}
dependencies:
- '@parcel/plugin': 2.8.2_@parcel+core@2.8.2
- '@parcel/utils': 2.8.2
+ '@parcel/plugin': 2.8.3_@parcel+core@2.8.3
+ '@parcel/utils': 2.8.3
transitivePeerDependencies:
- '@parcel/core'
dev: false
- /@parcel/resolver-default/2.8.2_@parcel+core@2.8.2:
- resolution: {integrity: sha512-mlowJMjFjyps9my8wd13kgeExJ5EgkPAuIxRSSWW+GPR7N3uA5DBJ+SB/CzdhCkPrXR6kwVWxNkkOch38pzOQQ==}
- engines: {node: '>= 12.0.0', parcel: ^2.8.2}
+ /@parcel/resolver-default/2.8.3_@parcel+core@2.8.3:
+ resolution: {integrity: sha512-k0B5M/PJ+3rFbNj4xZSBr6d6HVIe6DH/P3dClLcgBYSXAvElNDfXgtIimbjCyItFkW9/BfcgOVKEEIZOeySH/A==}
+ engines: {node: '>= 12.0.0', parcel: ^2.8.3}
dependencies:
- '@parcel/node-resolver-core': 2.8.2
- '@parcel/plugin': 2.8.2_@parcel+core@2.8.2
+ '@parcel/node-resolver-core': 2.8.3
+ '@parcel/plugin': 2.8.3_@parcel+core@2.8.3
transitivePeerDependencies:
- '@parcel/core'
dev: false
- /@parcel/runtime-js/2.8.2_@parcel+core@2.8.2:
- resolution: {integrity: sha512-Vk3Gywn2M9qP5X4lF6tu8QXP4xNI90UOSOhKHQ9W5pCu+zvD0Gdvu7qwQPFuFjIAq08xU7+PvZzGnlnM+8NyRw==}
- engines: {node: '>= 12.0.0', parcel: ^2.8.2}
+ /@parcel/runtime-js/2.8.3_@parcel+core@2.8.3:
+ resolution: {integrity: sha512-IRja0vNKwvMtPgIqkBQh0QtRn0XcxNC8HU1jrgWGRckzu10qJWO+5ULgtOeR4pv9krffmMPqywGXw6l/gvJKYQ==}
+ engines: {node: '>= 12.0.0', parcel: ^2.8.3}
dependencies:
- '@parcel/plugin': 2.8.2_@parcel+core@2.8.2
- '@parcel/utils': 2.8.2
+ '@parcel/plugin': 2.8.3_@parcel+core@2.8.3
+ '@parcel/utils': 2.8.3
nullthrows: 1.1.1
transitivePeerDependencies:
- '@parcel/core'
@@ -11290,18 +11325,18 @@ packages:
detect-libc: 1.0.3
dev: false
- /@parcel/transformer-js/2.8.2_@parcel+core@2.8.2:
- resolution: {integrity: sha512-mLksi6gu/20JdCFDNPl7Y0HTwJOAvf2ybC2HaJcy69PJCeUrrstgiFTjsCwv1eKcesgEHi9kKX+sMHVAH3B/dA==}
- engines: {node: '>= 12.0.0', parcel: ^2.8.2}
+ /@parcel/transformer-js/2.8.3_@parcel+core@2.8.3:
+ resolution: {integrity: sha512-9Qd6bib+sWRcpovvzvxwy/PdFrLUXGfmSW9XcVVG8pvgXsZPFaNjnNT8stzGQj1pQiougCoxMY4aTM5p1lGHEQ==}
+ engines: {node: '>= 12.0.0', parcel: ^2.8.3}
peerDependencies:
- '@parcel/core': ^2.8.2
+ '@parcel/core': ^2.8.3
dependencies:
- '@parcel/core': 2.8.2
- '@parcel/diagnostic': 2.8.2
- '@parcel/plugin': 2.8.2_@parcel+core@2.8.2
+ '@parcel/core': 2.8.3
+ '@parcel/diagnostic': 2.8.3
+ '@parcel/plugin': 2.8.3_@parcel+core@2.8.3
'@parcel/source-map': 2.1.1
- '@parcel/utils': 2.8.2
- '@parcel/workers': 2.8.2_@parcel+core@2.8.2
+ '@parcel/utils': 2.8.3
+ '@parcel/workers': 2.8.3_@parcel+core@2.8.3
'@swc/helpers': 0.4.14
browserslist: 4.21.4
detect-libc: 1.0.3
@@ -11310,39 +11345,39 @@ packages:
semver: 5.7.1
dev: false
- /@parcel/transformer-json/2.8.2_@parcel+core@2.8.2:
- resolution: {integrity: sha512-eZuaY5tMxcMDJwpHJbPVTgSaBIO4mamwAa3VulN9kRRaf29nc+Q0iM7zMFVHWFQAi/mZZ194IIQXbDX3r6oSSQ==}
- engines: {node: '>= 12.0.0', parcel: ^2.8.2}
+ /@parcel/transformer-json/2.8.3_@parcel+core@2.8.3:
+ resolution: {integrity: sha512-B7LmVq5Q7bZO4ERb6NHtRuUKWGysEeaj9H4zelnyBv+wLgpo4f5FCxSE1/rTNmP9u1qHvQ3scGdK6EdSSokGPg==}
+ engines: {node: '>= 12.0.0', parcel: ^2.8.3}
dependencies:
- '@parcel/plugin': 2.8.2_@parcel+core@2.8.2
+ '@parcel/plugin': 2.8.3_@parcel+core@2.8.3
json5: 2.2.3
transitivePeerDependencies:
- '@parcel/core'
dev: false
- /@parcel/types/2.8.2_@parcel+core@2.8.2:
- resolution: {integrity: sha512-HAYhokWxM10raIhqaYj9VR9eAvJ+xP2sNfQ1IcQybHpq3qblcBe/4jDeuUpwIyKeQ4gorp7xY+q8KDoR20j43w==}
+ /@parcel/types/2.8.3_@parcel+core@2.8.3:
+ resolution: {integrity: sha512-FECA1FB7+0UpITKU0D6TgGBpGxYpVSMNEENZbSJxFSajNy3wrko+zwBKQmFOLOiPcEtnGikxNs+jkFWbPlUAtw==}
dependencies:
- '@parcel/cache': 2.8.2_@parcel+core@2.8.2
- '@parcel/diagnostic': 2.8.2
- '@parcel/fs': 2.8.2_@parcel+core@2.8.2
- '@parcel/package-manager': 2.8.2_@parcel+core@2.8.2
+ '@parcel/cache': 2.8.3_@parcel+core@2.8.3
+ '@parcel/diagnostic': 2.8.3
+ '@parcel/fs': 2.8.3_@parcel+core@2.8.3
+ '@parcel/package-manager': 2.8.3_@parcel+core@2.8.3
'@parcel/source-map': 2.1.1
- '@parcel/workers': 2.8.2_@parcel+core@2.8.2
+ '@parcel/workers': 2.8.3_@parcel+core@2.8.3
utility-types: 3.10.0
transitivePeerDependencies:
- '@parcel/core'
dev: false
- /@parcel/utils/2.8.2:
- resolution: {integrity: sha512-Ufax7wZxC9FNsUpR0EU7Z22LEY/q9jjsDTwswctCdfpWb7TE/NudOfM9myycfRvwBVEYN50lPbkt1QltEVnXQQ==}
+ /@parcel/utils/2.8.3:
+ resolution: {integrity: sha512-IhVrmNiJ+LOKHcCivG5dnuLGjhPYxQ/IzbnF2DKNQXWBTsYlHkJZpmz7THoeLtLliGmSOZ3ZCsbR8/tJJKmxjA==}
engines: {node: '>= 12.0.0'}
dependencies:
- '@parcel/codeframe': 2.8.2
- '@parcel/diagnostic': 2.8.2
- '@parcel/hash': 2.8.2
- '@parcel/logger': 2.8.2
- '@parcel/markdown-ansi': 2.8.2
+ '@parcel/codeframe': 2.8.3
+ '@parcel/diagnostic': 2.8.3
+ '@parcel/hash': 2.8.3
+ '@parcel/logger': 2.8.3
+ '@parcel/markdown-ansi': 2.8.3
'@parcel/source-map': 2.1.1
chalk: 4.1.2
dev: false
@@ -11358,17 +11393,17 @@ packages:
node-gyp-build: 4.5.0
dev: false
- /@parcel/workers/2.8.2_@parcel+core@2.8.2:
- resolution: {integrity: sha512-Eg6CofIrJSNBa2fjXwvnzVLPKwR/6fkfQTFAm3Jl+4JYLVknBtTSFzQNp/Fa+HUEG889H9ucTk2CBi/fVPBAFw==}
+ /@parcel/workers/2.8.3_@parcel+core@2.8.3:
+ resolution: {integrity: sha512-+AxBnKgjqVpUHBcHLWIHcjYgKIvHIpZjN33mG5LG9XXvrZiqdWvouEzqEXlVLq5VzzVbKIQQcmsvRy138YErkg==}
engines: {node: '>= 12.0.0'}
peerDependencies:
- '@parcel/core': ^2.8.2
+ '@parcel/core': ^2.8.3
dependencies:
- '@parcel/core': 2.8.2
- '@parcel/diagnostic': 2.8.2
- '@parcel/logger': 2.8.2
- '@parcel/types': 2.8.2_@parcel+core@2.8.2
- '@parcel/utils': 2.8.2
+ '@parcel/core': 2.8.3
+ '@parcel/diagnostic': 2.8.3
+ '@parcel/logger': 2.8.3
+ '@parcel/types': 2.8.3_@parcel+core@2.8.3
+ '@parcel/utils': 2.8.3
chrome-trace-event: 1.0.3
nullthrows: 1.1.1
dev: false
@@ -11573,7 +11608,7 @@ packages:
dependencies:
'@rollup/pluginutils': 5.0.2_rollup@2.79.1
'@types/resolve': 1.20.2
- deepmerge: 4.2.2
+ deepmerge: 4.3.0
is-builtin-module: 3.2.0
is-module: 1.0.0
resolve: 1.22.1
@@ -12072,7 +12107,7 @@ packages:
dependencies:
'@svgr/core': 6.2.1
cosmiconfig: 7.0.1
- deepmerge: 4.2.2
+ deepmerge: 4.3.0
svgo: 2.8.0
dev: true
@@ -12362,13 +12397,13 @@ packages:
resolution: {integrity: sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==}
engines: {node: '>=10.13.0'}
- /@turist/fetch/7.2.0_node-fetch@2.6.7:
+ /@turist/fetch/7.2.0_node-fetch@2.6.9:
resolution: {integrity: sha512-2x7EGw+6OJ29phunsbGvtxlNmSfcuPcyYudkMbi8gARCP9eJ1CtuMvnVUHL//O9Ixi9SJiug8wNt6lj86pN8XQ==}
peerDependencies:
node-fetch: '2'
dependencies:
'@types/node-fetch': 2.6.2
- node-fetch: 2.6.7
+ node-fetch: 2.6.9
dev: false
/@turist/time/0.0.2:
@@ -12382,7 +12417,7 @@ packages:
/@types/babel__core/7.1.19:
resolution: {integrity: sha512-WEOTgRsbYkvA/KCsDwVEGkd7WAr1e3g31VHQ8zy5gul/V1qKullU/BU5I68X5v7V3GnB9eotmom4v5a5gjxorw==}
dependencies:
- '@babel/parser': 7.20.7
+ '@babel/parser': 7.20.15
'@babel/types': 7.20.7
'@types/babel__generator': 7.6.4
'@types/babel__template': 7.4.1
@@ -12398,7 +12433,7 @@ packages:
/@types/babel__template/7.4.1:
resolution: {integrity: sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g==}
dependencies:
- '@babel/parser': 7.20.7
+ '@babel/parser': 7.20.15
'@babel/types': 7.20.7
dev: true
@@ -13670,7 +13705,7 @@ packages:
'@babel/helper-module-imports': 7.18.6
'@babel/plugin-syntax-jsx': 7.18.6_@babel+core@7.20.12
'@babel/template': 7.20.7
- '@babel/traverse': 7.20.12
+ '@babel/traverse': 7.20.13
'@babel/types': 7.20.7
'@vue/babel-helper-vue-transform-on': 1.0.2
camelcase: 6.3.0
@@ -13684,7 +13719,7 @@ packages:
/@vue/compiler-core/3.2.45:
resolution: {integrity: sha512-rcMj7H+PYe5wBV3iYeUgbCglC+pbpN8hBLTJvRiK2eKQiWqu+fG9F+8sW99JdL4LQi7Re178UOxn09puSXvn4A==}
dependencies:
- '@babel/parser': 7.20.7
+ '@babel/parser': 7.20.15
'@vue/shared': 3.2.45
estree-walker: 2.0.2
source-map: 0.6.1
@@ -13700,7 +13735,7 @@ packages:
/@vue/compiler-sfc/3.2.45:
resolution: {integrity: sha512-1jXDuWah1ggsnSAOGsec8cFjT/K6TMZ0sPL3o3d84Ft2AYZi2jWJgRMjw4iaK0rBfA89L5gw427H4n1RZQBu6Q==}
dependencies:
- '@babel/parser': 7.20.7
+ '@babel/parser': 7.20.15
'@vue/compiler-core': 3.2.45
'@vue/compiler-dom': 3.2.45
'@vue/compiler-ssr': 3.2.45
@@ -13708,7 +13743,7 @@ packages:
'@vue/shared': 3.2.45
estree-walker: 2.0.2
magic-string: 0.25.9
- postcss: 8.4.20
+ postcss: 8.4.21
source-map: 0.6.1
dev: true
@@ -13726,7 +13761,7 @@ packages:
/@vue/reactivity-transform/3.2.45:
resolution: {integrity: sha512-BHVmzYAvM7vcU5WmuYqXpwaBHjsS8T63jlKGWVtHxAHIoMIlmaMyurUSEs1Zcg46M4AYT5MtB1U274/2aNzjJQ==}
dependencies:
- '@babel/parser': 7.20.7
+ '@babel/parser': 7.20.15
'@vue/compiler-core': 3.2.45
'@vue/shared': 3.2.45
estree-walker: 2.0.2
@@ -14540,6 +14575,22 @@ packages:
picocolors: 1.0.0
postcss: 8.4.20
postcss-value-parser: 4.2.0
+ dev: true
+
+ /autoprefixer/10.4.13_postcss@8.4.21:
+ resolution: {integrity: sha512-49vKpMqcZYsJjwotvt4+h/BCjJVnhGwcLpDt5xkcaOG3eLrG/HUYLagrihYsQ+qrIBgIzX1Rw7a6L8I/ZA1Atg==}
+ engines: {node: ^10 || ^12 || >=14}
+ hasBin: true
+ peerDependencies:
+ postcss: ^8.1.0
+ dependencies:
+ browserslist: 4.21.4
+ caniuse-lite: 1.0.30001431
+ fraction.js: 4.2.0
+ normalize-range: 0.1.2
+ picocolors: 1.0.0
+ postcss: 8.4.21
+ postcss-value-parser: 4.2.0
/autoprefixer/10.4.7_postcss@8.4.14:
resolution: {integrity: sha512-ypHju4Y2Oav95SipEcCcI5J7CGPuvz8oat7sUtYj3ClK44bldfvtvcxK6IEK++7rqB7YchDGzweZIBG+SD0ZAA==}
@@ -14584,7 +14635,7 @@ packages:
/axios/0.25.0:
resolution: {integrity: sha512-cD8FOb0tRH3uuEe6+evtAbgJtfxr7ly3fQjYcMcuPlgkwVS9xboaVIpcDV+cYQe+yGykgwZCs1pzjntcGa6l5g==}
dependencies:
- follow-redirects: 1.15.1_debug@4.3.4
+ follow-redirects: 1.15.1
transitivePeerDependencies:
- debug
dev: true
@@ -14671,7 +14722,7 @@ packages:
dependencies:
'@babel/core': 7.20.2
find-cache-dir: 3.3.2
- loader-utils: 2.0.2
+ loader-utils: 2.0.4
make-dir: 3.1.0
schema-utils: 2.7.1
webpack: 5.73.0
@@ -14792,7 +14843,7 @@ packages:
resolution: {integrity: sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg==}
engines: {node: '>=10', npm: '>=6'}
dependencies:
- '@babel/runtime': 7.20.7
+ '@babel/runtime': 7.20.13
cosmiconfig: 7.0.1
resolve: 1.22.1
dev: false
@@ -14827,7 +14878,7 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/compat-data': 7.20.1
+ '@babel/compat-data': 7.20.10
'@babel/core': 7.20.12
'@babel/helper-define-polyfill-provider': 0.3.3_@babel+core@7.20.12
semver: 6.3.0
@@ -14839,7 +14890,7 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/compat-data': 7.20.1
+ '@babel/compat-data': 7.20.10
'@babel/core': 7.20.2
'@babel/helper-define-polyfill-provider': 0.3.3_@babel+core@7.20.2
semver: 6.3.0
@@ -14852,7 +14903,7 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/compat-data': 7.20.1
+ '@babel/compat-data': 7.20.10
'@babel/core': 7.20.5
'@babel/helper-define-polyfill-provider': 0.3.3_@babel+core@7.20.5
semver: 6.3.0
@@ -14971,18 +15022,18 @@ packages:
- supports-color
dev: true
- /babel-plugin-remove-graphql-queries/5.6.0-next.0_x3fnz3zp5bgltr62wwyqvgm7l4:
- resolution: {integrity: sha512-hrxx7U73x6TUL+x/h2/OrQT4hdeGkYjK39oiYtt6erSVz8q1iOYl4tfCYN0wuHyrvpRdXJ7UBrAhLgBFIPn8Gw==}
+ /babel-plugin-remove-graphql-queries/5.7.0-next.0_kwfgdicz63ldiwfqlkadmrpj4y:
+ resolution: {integrity: sha512-dguL6QCS9duTt22QZYlu4ZY/DW/EjCkUc/43YDkfR/lbx32OqKwg1+zKYAE67bJ5PKhdK7PP+dh0486dt4iavQ==}
engines: {node: '>=18.0.0'}
peerDependencies:
'@babel/core': ^7.0.0
gatsby: ^5.0.0-next
dependencies:
'@babel/core': 7.20.12
- '@babel/runtime': 7.20.7
+ '@babel/runtime': 7.20.13
'@babel/types': 7.20.7
- gatsby: 5.6.0-next.2_biqbaboplfbrettd7655fr4n2y
- gatsby-core-utils: 4.6.0-next.0
+ gatsby: 5.7.0-next.0_biqbaboplfbrettd7655fr4n2y
+ gatsby-core-utils: 4.7.0-next.0
dev: false
/babel-plugin-styled-components/2.0.7_styled-components@5.3.6:
@@ -15066,8 +15117,8 @@ packages:
- supports-color
dev: false
- /babel-preset-gatsby/3.6.0-next.0_pp2vm42zn6vfmnpuhar3irht7i:
- resolution: {integrity: sha512-Yg3s+TqJcaiolWzERdtCc/nQMnQDGqv6VvB4CEsRFAzZy9YoDLN6BauTpJ/FWeJc595TdszCYLqYLoa0cXcfVw==}
+ /babel-preset-gatsby/3.7.0-next.0_pp2vm42zn6vfmnpuhar3irht7i:
+ resolution: {integrity: sha512-nf7aujMeM4gWtiIsdSlap6XaM8zI3pxfTWtIv3LBYN64T59Fi0sDLlDPOicGPrZQxtRWP7zqJBBbnSuy0P3oDA==}
engines: {node: '>=18.0.0'}
peerDependencies:
'@babel/core': ^7.11.6
@@ -15083,13 +15134,13 @@ packages:
'@babel/plugin-transform-spread': 7.20.7_@babel+core@7.20.12
'@babel/preset-env': 7.20.2_@babel+core@7.20.12
'@babel/preset-react': 7.18.6_@babel+core@7.20.12
- '@babel/runtime': 7.20.7
+ '@babel/runtime': 7.20.13
babel-plugin-dynamic-import-node: 2.3.3
babel-plugin-macros: 3.1.0
babel-plugin-transform-react-remove-prop-types: 0.4.24
core-js: 3.26.0
- gatsby-core-utils: 4.6.0-next.0
- gatsby-legacy-polyfills: 3.6.0-next.0
+ gatsby-core-utils: 4.7.0-next.0
+ gatsby-legacy-polyfills: 3.7.0-next.0
transitivePeerDependencies:
- supports-color
dev: false
@@ -16118,6 +16169,7 @@ packages:
/color-name/1.1.4:
resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==}
+ requiresBuild: true
/color-string/1.9.1:
resolution: {integrity: sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==}
@@ -16522,11 +16574,11 @@ packages:
readable-stream: 3.6.0
dev: true
- /create-gatsby/3.6.0-next.1:
- resolution: {integrity: sha512-7PSTSNLa1w0LZ81WXZ09IBVcE+SCuOk8QOPJC3tK2D50iTeKo1rBp2mZEX0ao5sC5q/N869HuLBPkzdvP5Lvig==}
+ /create-gatsby/3.7.0-next.0:
+ resolution: {integrity: sha512-9Ywci5zGlfvXKId+tIZdBRN1X1Y2UPgEjEafiCkHgD4+oQX4+xUYp46abQMhTJZOqokz4zMY16Y9JIhp1eAjQw==}
hasBin: true
dependencies:
- '@babel/runtime': 7.20.7
+ '@babel/runtime': 7.20.13
dev: false
/create-require/1.1.1:
@@ -16605,6 +16657,15 @@ packages:
postcss: ^8.0.9
dependencies:
postcss: 8.4.20
+ dev: true
+
+ /css-declaration-sorter/6.3.1_postcss@8.4.21:
+ resolution: {integrity: sha512-fBffmak0bPAnyqc/HO8C3n2sHrp9wcqQz6ES9koRF2/mLOVAx9zIQ3Y7R29sYCteTPqMCwns4WYQoCX91Xl3+w==}
+ engines: {node: ^10 || ^12 || >=14}
+ peerDependencies:
+ postcss: ^8.0.9
+ dependencies:
+ postcss: 8.4.21
/css-loader/5.2.7_webpack@5.75.0:
resolution: {integrity: sha512-Q7mOvpBNBG7YrVGMxRxcBJZFL75o+cH2abNASdibkj/fffYD8qWbInZrD0S9ccI6vZclF3DsHE7njGlLtaHbhg==}
@@ -16612,13 +16673,13 @@ packages:
peerDependencies:
webpack: ^4.27.0 || ^5.0.0
dependencies:
- icss-utils: 5.1.0_postcss@8.4.20
+ icss-utils: 5.1.0_postcss@8.4.21
loader-utils: 2.0.4
- postcss: 8.4.20
- postcss-modules-extract-imports: 3.0.0_postcss@8.4.20
- postcss-modules-local-by-default: 4.0.0_postcss@8.4.20
- postcss-modules-scope: 3.0.0_postcss@8.4.20
- postcss-modules-values: 4.0.0_postcss@8.4.20
+ postcss: 8.4.21
+ postcss-modules-extract-imports: 3.0.0_postcss@8.4.21
+ postcss-modules-local-by-default: 4.0.0_postcss@8.4.21
+ postcss-modules-scope: 3.0.0_postcss@8.4.21
+ postcss-modules-values: 4.0.0_postcss@8.4.21
postcss-value-parser: 4.2.0
schema-utils: 3.1.1
semver: 7.3.8
@@ -16631,12 +16692,12 @@ packages:
peerDependencies:
webpack: ^5.0.0
dependencies:
- icss-utils: 5.1.0_postcss@8.4.20
- postcss: 8.4.20
- postcss-modules-extract-imports: 3.0.0_postcss@8.4.20
- postcss-modules-local-by-default: 4.0.0_postcss@8.4.20
- postcss-modules-scope: 3.0.0_postcss@8.4.20
- postcss-modules-values: 4.0.0_postcss@8.4.20
+ icss-utils: 5.1.0_postcss@8.4.21
+ postcss: 8.4.21
+ postcss-modules-extract-imports: 3.0.0_postcss@8.4.21
+ postcss-modules-local-by-default: 4.0.0_postcss@8.4.21
+ postcss-modules-scope: 3.0.0_postcss@8.4.21
+ postcss-modules-values: 4.0.0_postcss@8.4.21
postcss-value-parser: 4.2.0
semver: 7.3.8
webpack: 5.73.0
@@ -16655,10 +16716,10 @@ packages:
csso:
optional: true
dependencies:
- cssnano: 5.1.14_postcss@8.4.20
+ cssnano: 5.1.14_postcss@8.4.21
jest-worker: 26.6.2
p-limit: 3.1.0
- postcss: 8.4.20
+ postcss: 8.4.21
schema-utils: 3.1.1
serialize-javascript: 5.0.1
source-map: 0.6.1
@@ -16685,9 +16746,9 @@ packages:
optional: true
dependencies:
clean-css: 5.3.0
- cssnano: 5.1.14_postcss@8.4.20
+ cssnano: 5.1.14_postcss@8.4.21
jest-worker: 27.5.1
- postcss: 8.4.20
+ postcss: 8.4.21
schema-utils: 4.0.0
serialize-javascript: 6.0.0
source-map: 0.6.1
@@ -16748,19 +16809,19 @@ packages:
engines: {node: '>=4'}
hasBin: true
- /cssnano-preset-advanced/5.3.8_postcss@8.4.20:
+ /cssnano-preset-advanced/5.3.8_postcss@8.4.21:
resolution: {integrity: sha512-xUlLLnEB1LjpEik+zgRNlk8Y/koBPPtONZjp7JKbXigeAmCrFvq9H0pXW5jJV45bQWAlmJ0sKy+IMr0XxLYQZg==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- autoprefixer: 10.4.13_postcss@8.4.20
- cssnano-preset-default: 5.2.13_postcss@8.4.20
- postcss: 8.4.20
- postcss-discard-unused: 5.1.0_postcss@8.4.20
- postcss-merge-idents: 5.1.1_postcss@8.4.20
- postcss-reduce-idents: 5.2.0_postcss@8.4.20
- postcss-zindex: 5.1.0_postcss@8.4.20
+ autoprefixer: 10.4.13_postcss@8.4.21
+ cssnano-preset-default: 5.2.13_postcss@8.4.21
+ postcss: 8.4.21
+ postcss-discard-unused: 5.1.0_postcss@8.4.21
+ postcss-merge-idents: 5.1.1_postcss@8.4.21
+ postcss-reduce-idents: 5.2.0_postcss@8.4.21
+ postcss-zindex: 5.1.0_postcss@8.4.21
dev: true
/cssnano-preset-default/5.2.12_postcss@8.4.14:
@@ -16875,6 +16936,44 @@ packages:
postcss-reduce-transforms: 5.1.0_postcss@8.4.20
postcss-svgo: 5.1.0_postcss@8.4.20
postcss-unique-selectors: 5.1.1_postcss@8.4.20
+ dev: true
+
+ /cssnano-preset-default/5.2.13_postcss@8.4.21:
+ resolution: {integrity: sha512-PX7sQ4Pb+UtOWuz8A1d+Rbi+WimBIxJTRyBdgGp1J75VU0r/HFQeLnMYgHiCAp6AR4rqrc7Y4R+1Rjk3KJz6DQ==}
+ engines: {node: ^10 || ^12 || >=14.0}
+ peerDependencies:
+ postcss: ^8.2.15
+ dependencies:
+ css-declaration-sorter: 6.3.1_postcss@8.4.21
+ cssnano-utils: 3.1.0_postcss@8.4.21
+ postcss: 8.4.21
+ postcss-calc: 8.2.4_postcss@8.4.21
+ postcss-colormin: 5.3.0_postcss@8.4.21
+ postcss-convert-values: 5.1.3_postcss@8.4.21
+ postcss-discard-comments: 5.1.2_postcss@8.4.21
+ postcss-discard-duplicates: 5.1.0_postcss@8.4.21
+ postcss-discard-empty: 5.1.1_postcss@8.4.21
+ postcss-discard-overridden: 5.1.0_postcss@8.4.21
+ postcss-merge-longhand: 5.1.7_postcss@8.4.21
+ postcss-merge-rules: 5.1.3_postcss@8.4.21
+ postcss-minify-font-values: 5.1.0_postcss@8.4.21
+ postcss-minify-gradients: 5.1.1_postcss@8.4.21
+ postcss-minify-params: 5.1.4_postcss@8.4.21
+ postcss-minify-selectors: 5.2.1_postcss@8.4.21
+ postcss-normalize-charset: 5.1.0_postcss@8.4.21
+ postcss-normalize-display-values: 5.1.0_postcss@8.4.21
+ postcss-normalize-positions: 5.1.1_postcss@8.4.21
+ postcss-normalize-repeat-style: 5.1.1_postcss@8.4.21
+ postcss-normalize-string: 5.1.0_postcss@8.4.21
+ postcss-normalize-timing-functions: 5.1.0_postcss@8.4.21
+ postcss-normalize-unicode: 5.1.1_postcss@8.4.21
+ postcss-normalize-url: 5.1.0_postcss@8.4.21
+ postcss-normalize-whitespace: 5.1.1_postcss@8.4.21
+ postcss-ordered-values: 5.1.3_postcss@8.4.21
+ postcss-reduce-initial: 5.1.1_postcss@8.4.21
+ postcss-reduce-transforms: 5.1.0_postcss@8.4.21
+ postcss-svgo: 5.1.0_postcss@8.4.21
+ postcss-unique-selectors: 5.1.1_postcss@8.4.21
/cssnano-utils/3.1.0_postcss@8.4.14:
resolution: {integrity: sha512-JQNR19/YZhz4psLX/rQ9M83e3z2Wf/HdJbryzte4a3NSuafyp9w/I4U+hx5C2S9g41qlstH7DEWnZaaj83OuEA==}
@@ -16892,6 +16991,15 @@ packages:
postcss: ^8.2.15
dependencies:
postcss: 8.4.20
+ dev: true
+
+ /cssnano-utils/3.1.0_postcss@8.4.21:
+ resolution: {integrity: sha512-JQNR19/YZhz4psLX/rQ9M83e3z2Wf/HdJbryzte4a3NSuafyp9w/I4U+hx5C2S9g41qlstH7DEWnZaaj83OuEA==}
+ engines: {node: ^10 || ^12 || >=14.0}
+ peerDependencies:
+ postcss: ^8.2.15
+ dependencies:
+ postcss: 8.4.21
/cssnano/5.1.12_postcss@8.4.14:
resolution: {integrity: sha512-TgvArbEZu0lk/dvg2ja+B7kYoD7BBCmn3+k58xD0qjrGHsFzXY/wKTo9M5egcUCabPol05e/PVoIu79s2JN4WQ==}
@@ -16927,6 +17035,18 @@ packages:
lilconfig: 2.0.6
postcss: 8.4.20
yaml: 1.10.2
+ dev: true
+
+ /cssnano/5.1.14_postcss@8.4.21:
+ resolution: {integrity: sha512-Oou7ihiTocbKqi0J1bB+TRJIQX5RMR3JghA8hcWSw9mjBLQ5Y3RWqEDoYG3sRNlAbCIXpqMoZGbq5KDR3vdzgw==}
+ engines: {node: ^10 || ^12 || >=14.0}
+ peerDependencies:
+ postcss: ^8.2.15
+ dependencies:
+ cssnano-preset-default: 5.2.13_postcss@8.4.21
+ lilconfig: 2.0.6
+ postcss: 8.4.21
+ yaml: 1.10.2
/csso/4.2.0:
resolution: {integrity: sha512-wvlcdIbf6pwKEk7vHj8/Bkc0B4ylXZruLvOgs9doS5eOsOpuodOV2zJChSpkp+pRpYQLQMeF04nr3Z68Sta9jA==}
@@ -17683,6 +17803,7 @@ packages:
/deep-extend/0.6.0:
resolution: {integrity: sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==}
engines: {node: '>=4.0.0'}
+ requiresBuild: true
/deep-freeze/0.0.1:
resolution: {integrity: sha512-Z+z8HiAvsGwmjqlphnHW5oz6yWlOwu6EQfFTjmeTWlDeda3FS2yv3jhq35TX/ewmsnqB+RX2IdsIOyjJCQN5tg==}
@@ -17694,6 +17815,11 @@ packages:
/deepmerge/4.2.2:
resolution: {integrity: sha512-FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg==}
engines: {node: '>=0.10.0'}
+ dev: true
+
+ /deepmerge/4.3.0:
+ resolution: {integrity: sha512-z2wJZXrmeHdvYJp/Ux55wIjqo81G5Bp4c+oELTW+7ar6SogWHajt5a9gO3s3IDaGSAXjDk0vlQKN3rms8ab3og==}
+ engines: {node: '>=0.10.0'}
/default-gateway/6.0.3:
resolution: {integrity: sha512-fwSOJsbbNzZ/CUFpqFBqYfYNLj1NbMPm8MMCIzHjC83iSJRBEGmDUxU+WP661BaBQImeC2yHwXtz+P/O9o+XEg==}
@@ -17958,11 +18084,14 @@ packages:
dependencies:
esutils: 2.0.3
- /docusaurus-plugin-typedoc/0.18.0:
- resolution: {integrity: sha512-kurIUu8LhVIOPT88HoeBcu0/D2GMDdg0pUYaFlqeuXT9an6Wlgvuy0C22ZMYcJUcp/gA/Mw2XdUHubsLK2M4uA==}
+ /docusaurus-plugin-typedoc/1.0.0-next.2_kb65gbyd32jlgdze2tbrhv364a:
+ resolution: {integrity: sha512-JQOdw8U7Ix1lETgmlgkm1WpUrpmsTthWSQlMJRYiEnX06s2g/wSE+cg1JcP5ILAyeTjxDlF/DPwtOBIzTuzSTg==}
peerDependencies:
typedoc: '>=0.23.0'
- typedoc-plugin-markdown: '>=3.13.0'
+ typedoc-plugin-markdown: '>=4.0.0-next.2'
+ dependencies:
+ typedoc: 0.23.24
+ typedoc-plugin-markdown: 4.0.0-next.2_typedoc@0.23.24
dev: true
/dom-accessibility-api/0.5.14:
@@ -19014,7 +19143,7 @@ packages:
eslint: 8.30.0
dev: true
- /eslint-config-react-app/6.0.0_nnhcjimma6qtaxwhedjmsri3h4:
+ /eslint-config-react-app/6.0.0_ftuoewqukkbctpkc5t32zy3owy:
resolution: {integrity: sha512-bpoAAC+YRfzq0dsTk+6v9aHm/uqnDwayNAXleMypGl6CpxI9oXXscVHo4fk3eJPIn+rsbtNetB4r/ZIidFIE8A==}
engines: {node: ^10.12.0 || >=12.0.0}
peerDependencies:
@@ -19043,8 +19172,8 @@ packages:
confusing-browser-globals: 1.0.11
eslint: 7.32.0
eslint-plugin-flowtype: 5.10.0_eslint@7.32.0
- eslint-plugin-import: 2.26.0_ffi3uiz42rv3jyhs6cr7p7qqry
- eslint-plugin-jsx-a11y: 6.7.0_eslint@7.32.0
+ eslint-plugin-import: 2.27.5_ffi3uiz42rv3jyhs6cr7p7qqry
+ eslint-plugin-jsx-a11y: 6.7.1_eslint@7.32.0
eslint-plugin-react: 7.31.11_eslint@7.32.0
eslint-plugin-react-hooks: 4.6.0_eslint@7.32.0
dev: false
@@ -19092,6 +19221,17 @@ packages:
resolve: 1.22.1
transitivePeerDependencies:
- supports-color
+ dev: true
+
+ /eslint-import-resolver-node/0.3.7:
+ resolution: {integrity: sha512-gozW2blMLJCeFpBwugLTGyvVjNoeo1knonXAcatC6bjPBZitotxdWf7Gimr25N4c0AAOo4eOUfaG82IJPDpqCA==}
+ dependencies:
+ debug: 3.2.7
+ is-core-module: 2.11.0
+ resolve: 1.22.1
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
/eslint-module-utils/2.7.4_5vuadmvmkyhbtm34phil3e6noa:
resolution: {integrity: sha512-j4GT+rqzCoRKHwURX7pddtIPGySnX9Si/cgMI5ztrcqOPtk5dDEeZ34CQVPphnqkJytlc97Vuk05Um2mJ3gEQA==}
@@ -19122,7 +19262,7 @@ packages:
- supports-color
dev: true
- /eslint-module-utils/2.7.4_d3sglxdl6hhgcbhsy3jaoc7rpu:
+ /eslint-module-utils/2.7.4_n7wmpe4hfzj47xhbzj4etqyjdi:
resolution: {integrity: sha512-j4GT+rqzCoRKHwURX7pddtIPGySnX9Si/cgMI5ztrcqOPtk5dDEeZ34CQVPphnqkJytlc97Vuk05Um2mJ3gEQA==}
engines: {node: '>=4'}
peerDependencies:
@@ -19146,7 +19286,7 @@ packages:
'@typescript-eslint/parser': 4.33.0_eslint@7.32.0
debug: 3.2.7
eslint: 7.32.0
- eslint-import-resolver-node: 0.3.6
+ eslint-import-resolver-node: 0.3.7
transitivePeerDependencies:
- supports-color
dev: false
@@ -19173,37 +19313,6 @@ packages:
string-natural-compare: 3.0.1
dev: false
- /eslint-plugin-import/2.26.0_ffi3uiz42rv3jyhs6cr7p7qqry:
- resolution: {integrity: sha512-hYfi3FXaM8WPLf4S1cikh/r4IxnO6zrhZbEGz2b660EJRbuxgpDS5gkCuYgGWg2xxh2rBuIr4Pvhve/7c31koA==}
- engines: {node: '>=4'}
- peerDependencies:
- '@typescript-eslint/parser': '*'
- eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8
- peerDependenciesMeta:
- '@typescript-eslint/parser':
- optional: true
- dependencies:
- '@typescript-eslint/parser': 4.33.0_eslint@7.32.0
- array-includes: 3.1.6
- array.prototype.flat: 1.3.1
- debug: 2.6.9
- doctrine: 2.1.0
- eslint: 7.32.0
- eslint-import-resolver-node: 0.3.6
- eslint-module-utils: 2.7.4_d3sglxdl6hhgcbhsy3jaoc7rpu
- has: 1.0.3
- is-core-module: 2.9.0
- is-glob: 4.0.3
- minimatch: 3.1.2
- object.values: 1.1.6
- resolve: 1.22.1
- tsconfig-paths: 3.14.1
- transitivePeerDependencies:
- - eslint-import-resolver-typescript
- - eslint-import-resolver-webpack
- - supports-color
- dev: false
-
/eslint-plugin-import/2.26.0_tqyj5ytb5g6r5ett7xxedhk6eq:
resolution: {integrity: sha512-hYfi3FXaM8WPLf4S1cikh/r4IxnO6zrhZbEGz2b660EJRbuxgpDS5gkCuYgGWg2xxh2rBuIr4Pvhve/7c31koA==}
engines: {node: '>=4'}
@@ -19235,6 +19344,39 @@ packages:
- supports-color
dev: true
+ /eslint-plugin-import/2.27.5_ffi3uiz42rv3jyhs6cr7p7qqry:
+ resolution: {integrity: sha512-LmEt3GVofgiGuiE+ORpnvP+kAm3h6MLZJ4Q5HCyHADofsb4VzXFsRiWj3c0OFiV+3DWFh0qg3v9gcPlfc3zRow==}
+ engines: {node: '>=4'}
+ peerDependencies:
+ '@typescript-eslint/parser': '*'
+ eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8
+ peerDependenciesMeta:
+ '@typescript-eslint/parser':
+ optional: true
+ dependencies:
+ '@typescript-eslint/parser': 4.33.0_eslint@7.32.0
+ array-includes: 3.1.6
+ array.prototype.flat: 1.3.1
+ array.prototype.flatmap: 1.3.1
+ debug: 3.2.7
+ doctrine: 2.1.0
+ eslint: 7.32.0
+ eslint-import-resolver-node: 0.3.7
+ eslint-module-utils: 2.7.4_n7wmpe4hfzj47xhbzj4etqyjdi
+ has: 1.0.3
+ is-core-module: 2.11.0
+ is-glob: 4.0.3
+ minimatch: 3.1.2
+ object.values: 1.1.6
+ resolve: 1.22.1
+ semver: 6.3.0
+ tsconfig-paths: 3.14.1
+ transitivePeerDependencies:
+ - eslint-import-resolver-typescript
+ - eslint-import-resolver-webpack
+ - supports-color
+ dev: false
+
/eslint-plugin-jest/27.1.4_nwhe2qd7pg7k6t4q57ylogsxam:
resolution: {integrity: sha512-evJ9E9id/z2Fu6LR+ncNySJ6UMs5RiJiv4JsmdA3gPWoq0AR+uZyva738+Y9Uln+3WaYX+3OYP9HJoau94Iurg==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
@@ -19274,13 +19416,13 @@ packages:
- supports-color
dev: true
- /eslint-plugin-jsx-a11y/6.7.0_eslint@7.32.0:
- resolution: {integrity: sha512-EGGRKhzejSzXKtjmEjWNtr4SK/DkMkSzkBH7g7e7moBDXZXrqaUIxkmD7uF93upMysc4dKYEJwupu7Dff+ShwA==}
+ /eslint-plugin-jsx-a11y/6.7.1_eslint@7.32.0:
+ resolution: {integrity: sha512-63Bog4iIethyo8smBklORknVjB0T2dwB8Mr/hIC+fBS0uyHdYYpzM/Ed+YC8VxTjlXHEWFOdmgwcDn1U2L9VCA==}
engines: {node: '>=4.0'}
peerDependencies:
eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8
dependencies:
- '@babel/runtime': 7.20.7
+ '@babel/runtime': 7.20.13
aria-query: 5.1.3
array-includes: 3.1.6
array.prototype.flatmap: 1.3.1
@@ -20385,6 +20527,16 @@ packages:
resolution: {integrity: sha512-GRnmB5gPyJpAhTQdSZTSp9uaPSvl09KoYcMQtsB9rQoOmzs9dH6ffeccH+Z+cv6P68Hu5bC6JjRh4Ah/mHSNRw==}
dev: true
+ /follow-redirects/1.15.1:
+ resolution: {integrity: sha512-yLAMQs+k0b2m7cVxpS1VKJVvoz7SS9Td1zss3XRwXj+ZDH00RJgnuLx7E44wx02kQLrdM3aOOy+FpzS7+8OizA==}
+ engines: {node: '>=4.0'}
+ peerDependencies:
+ debug: '*'
+ peerDependenciesMeta:
+ debug:
+ optional: true
+ dev: true
+
/follow-redirects/1.15.1_debug@4.3.4:
resolution: {integrity: sha512-yLAMQs+k0b2m7cVxpS1VKJVvoz7SS9Td1zss3XRwXj+ZDH00RJgnuLx7E44wx02kQLrdM3aOOy+FpzS7+8OizA==}
engines: {node: '>=4.0'}
@@ -20424,7 +20576,7 @@ packages:
chalk: 4.1.2
chokidar: 3.5.3
cosmiconfig: 6.0.0
- deepmerge: 4.2.2
+ deepmerge: 4.3.0
eslint: 7.32.0
fs-extra: 9.1.0
glob: 7.2.3
@@ -20455,7 +20607,7 @@ packages:
chalk: 4.1.2
chokidar: 3.5.3
cosmiconfig: 6.0.0
- deepmerge: 4.2.2
+ deepmerge: 4.3.0
fs-extra: 9.1.0
glob: 7.2.3
memfs: 3.4.6
@@ -20526,6 +20678,7 @@ packages:
/fs-constants/1.0.0:
resolution: {integrity: sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==}
+ requiresBuild: true
/fs-exists-cached/1.0.0:
resolution: {integrity: sha512-kSxoARUDn4F2RPXX48UXnaFKwVU7Ivd/6qpzZL29MCDmr9sTvybv4gFCp+qaI4fM9m0z9fgz/yJvi56GAz+BZg==}
@@ -20651,18 +20804,18 @@ packages:
/functions-have-names/1.2.3:
resolution: {integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==}
- /gatsby-cli/5.6.0-next.1:
- resolution: {integrity: sha512-tFrTZlEezIxFKMkCXXKu3tKBrjqpZt+PykNABkSgOdMGO1pT/xysSClCbKOMockWosrpgaNup+1rP8sjVRdIsw==}
+ /gatsby-cli/5.7.0-next.0:
+ resolution: {integrity: sha512-hhBRqmXNuMx0bMaPvkmAJ1nZRzKkr4K7V19OhFD6iLFuDucN35bU9lTiyJ22Ctvhe0JU93a0ZQW1jrMxNScyyg==}
engines: {node: '>=18.0.0'}
hasBin: true
requiresBuild: true
dependencies:
'@babel/code-frame': 7.18.6
'@babel/core': 7.20.12
- '@babel/generator': 7.20.7
+ '@babel/generator': 7.20.14
'@babel/helper-plugin-utils': 7.20.2
'@babel/preset-typescript': 7.18.6_@babel+core@7.20.12
- '@babel/runtime': 7.20.7
+ '@babel/runtime': 7.20.13
'@babel/template': 7.20.7
'@babel/types': 7.20.7
'@jridgewell/trace-mapping': 0.3.17
@@ -20673,23 +20826,23 @@ packages:
clipboardy: 2.3.0
common-tags: 1.8.2
convert-hrtime: 3.0.0
- create-gatsby: 3.6.0-next.1
+ create-gatsby: 3.7.0-next.0
envinfo: 7.8.1
execa: 5.1.1
fs-exists-cached: 1.0.0
fs-extra: 11.1.0
- gatsby-core-utils: 4.6.0-next.0
- gatsby-telemetry: 4.6.0-next.0
+ gatsby-core-utils: 4.7.0-next.0
+ gatsby-telemetry: 4.7.0-next.0
hosted-git-info: 3.0.8
is-valid-path: 0.1.1
joi: 17.7.0
lodash: 4.17.21
- node-fetch: 2.6.7
+ node-fetch: 2.6.9
opentracing: 0.14.7
pretty-error: 2.1.2
progress: 2.0.3
prompts: 2.4.2
- redux: 4.2.0
+ redux: 4.2.1
resolve-cwd: 3.0.0
semver: 7.3.8
signal-exit: 3.0.7
@@ -20703,11 +20856,11 @@ packages:
- supports-color
dev: false
- /gatsby-core-utils/4.6.0-next.0:
- resolution: {integrity: sha512-4cc4d7WfJmYWprWBIxQBRiwyT2uECR9/40rqPCe62yeshTHIZUVCxeqzEeU6R0qkDpLjHkP0F/itv2oNa0AspQ==}
+ /gatsby-core-utils/4.7.0-next.0:
+ resolution: {integrity: sha512-lBZA6akCHFPsR2TuOmyMQaskeyv3bKzgdvIG1KPF5Lgztf4Rs07Z8WvqVGq6lVYMM0rCJCDoO6dfy9pJdHFuUQ==}
engines: {node: '>=18.0.0'}
dependencies:
- '@babel/runtime': 7.20.7
+ '@babel/runtime': 7.20.13
ci-info: 2.0.0
configstore: 5.0.1
fastq: 1.15.0
@@ -20725,86 +20878,86 @@ packages:
xdg-basedir: 4.0.0
dev: false
- /gatsby-graphiql-explorer/3.6.0-next.0:
- resolution: {integrity: sha512-pXW8ufxLdklCjVtKyUZ6Nr6ROjH/5dUqbnp6hMdUGLWFjvpj3AWc/DH3wsDOLw//bBEZqHAcEyj2DwNcFv8mHw==}
+ /gatsby-graphiql-explorer/3.7.0-next.0:
+ resolution: {integrity: sha512-ZgtnZqz4jSuYMp6Mr7QICpRfsjG9QwsT/HS8nxezGP5p8/hBK5N2kJcvonWAwJnhmuViRiWITrWsaXthBVBmeQ==}
engines: {node: '>=18.0.0'}
dev: false
- /gatsby-legacy-polyfills/3.6.0-next.0:
- resolution: {integrity: sha512-XwGPOPDF/Xo/wZWW52YmFlZ/89Qb/jZdxBaPHfs2zRKvTAFmFkHBl+KAy5MBISY4IFWTfOyBN2UjnklmxRn93w==}
+ /gatsby-legacy-polyfills/3.7.0-next.0:
+ resolution: {integrity: sha512-6HMpm8T76gHKo/uw7xrWVMOd8O4YPcuP7UVeeMkJIZG68gzqFjQfEHJo4kMDWMXuMlFgi5Brvz6nGRNFrAQL8A==}
dependencies:
- '@babel/runtime': 7.20.7
+ '@babel/runtime': 7.20.13
core-js-compat: 3.9.0
dev: false
- /gatsby-link/5.6.0-next.0_y2kppt6lrltqk6wasg3eswwzsa:
- resolution: {integrity: sha512-tKTT58UQI3PQdWTmALZ9UYZ7hN4lgxrkLNhHRlfhhjsZXAwqqVXfR51gfV8cvEltEOdqdfrUSMZ9167KxEnp5A==}
+ /gatsby-link/5.7.0-next.0_uxzdzcrcylloub4rxar25ny6ra:
+ resolution: {integrity: sha512-BWmj6VytpVyCI8LREDs27PQN5r41mpCXwQ8jVky6h8gHOuMjfVk+O3Q5DGzHBylxJxs6+3ijHVSOVox1fLmRtA==}
engines: {node: '>=18.0.0'}
peerDependencies:
'@gatsbyjs/reach-router': ^2.0.0
react: ^18.0.0 || ^0.0.0
react-dom: ^18.0.0 || ^0.0.0
dependencies:
- '@gatsbyjs/reach-router': 2.0.0_biqbaboplfbrettd7655fr4n2y
+ '@gatsbyjs/reach-router': 2.0.1_biqbaboplfbrettd7655fr4n2y
'@types/reach__router': 1.3.11
- gatsby-page-utils: 3.6.0-next.0
+ gatsby-page-utils: 3.7.0-next.0
prop-types: 15.8.1
react: 18.2.0
react-dom: 18.2.0_react@18.2.0
dev: false
- /gatsby-page-utils/3.6.0-next.0:
- resolution: {integrity: sha512-3jul3U94W/33H8DMoaEfo6z26Tlp62Lf9FtS828s1A076ao9CFBpT2xrCCAn+rF8uXKAY1oB3b337Oaxdyx70g==}
+ /gatsby-page-utils/3.7.0-next.0:
+ resolution: {integrity: sha512-4heFJsjOPxHjzOmik5Kd4PzDlyZ2U1fOj6JZyppjOa+PZI0jrbsb1O2BeIOkTlB+2MNoG4Zv/aj3UpCnEC1SVg==}
engines: {node: '>=18.0.0'}
dependencies:
- '@babel/runtime': 7.20.7
+ '@babel/runtime': 7.20.13
bluebird: 3.7.2
chokidar: 3.5.3
fs-exists-cached: 1.0.0
- gatsby-core-utils: 4.6.0-next.0
+ gatsby-core-utils: 4.7.0-next.0
glob: 7.2.3
lodash: 4.17.21
micromatch: 4.0.5
dev: false
- /gatsby-parcel-config/1.6.0-next.0_@parcel+core@2.8.2:
- resolution: {integrity: sha512-zqNIyHiaegO0hX8LJ6qmPAsZC0G3QmjjDvcmKVp4xvU8c21L7LUDJP++9Ek1iKm45gfuCweXeeKX01W5EWzDFA==}
+ /gatsby-parcel-config/1.7.0-next.0_@parcel+core@2.8.3:
+ resolution: {integrity: sha512-cE4ltBaE9kWJ5EsUHSpcudp9dYSd29+VRR7gXdHEo/UxuNkLtcrlKwsPu/2553CX6aBdxt6Xyqcd7YwOs0RQ6w==}
engines: {parcel: 2.x}
peerDependencies:
'@parcel/core': ^2.0.0
dependencies:
- '@gatsbyjs/parcel-namer-relative-to-cwd': 2.6.0-next.0_@parcel+core@2.8.2
- '@parcel/bundler-default': 2.8.2_@parcel+core@2.8.2
- '@parcel/compressor-raw': 2.8.2_@parcel+core@2.8.2
- '@parcel/core': 2.8.2
- '@parcel/namer-default': 2.8.2_@parcel+core@2.8.2
- '@parcel/optimizer-terser': 2.8.2_@parcel+core@2.8.2
- '@parcel/packager-js': 2.8.2_@parcel+core@2.8.2
- '@parcel/packager-raw': 2.8.2_@parcel+core@2.8.2
- '@parcel/reporter-dev-server': 2.8.2_@parcel+core@2.8.2
- '@parcel/resolver-default': 2.8.2_@parcel+core@2.8.2
- '@parcel/runtime-js': 2.8.2_@parcel+core@2.8.2
- '@parcel/transformer-js': 2.8.2_@parcel+core@2.8.2
- '@parcel/transformer-json': 2.8.2_@parcel+core@2.8.2
+ '@gatsbyjs/parcel-namer-relative-to-cwd': 2.7.0-next.0_@parcel+core@2.8.3
+ '@parcel/bundler-default': 2.8.3_@parcel+core@2.8.3
+ '@parcel/compressor-raw': 2.8.3_@parcel+core@2.8.3
+ '@parcel/core': 2.8.3
+ '@parcel/namer-default': 2.8.3_@parcel+core@2.8.3
+ '@parcel/optimizer-terser': 2.8.3_@parcel+core@2.8.3
+ '@parcel/packager-js': 2.8.3_@parcel+core@2.8.3
+ '@parcel/packager-raw': 2.8.3_@parcel+core@2.8.3
+ '@parcel/reporter-dev-server': 2.8.3_@parcel+core@2.8.3
+ '@parcel/resolver-default': 2.8.3_@parcel+core@2.8.3
+ '@parcel/runtime-js': 2.8.3_@parcel+core@2.8.3
+ '@parcel/transformer-js': 2.8.3_@parcel+core@2.8.3
+ '@parcel/transformer-json': 2.8.3_@parcel+core@2.8.3
dev: false
- /gatsby-plugin-page-creator/5.6.0-next.1_wxxlwg4kb5uwyfjvsdo3jviy2e:
- resolution: {integrity: sha512-9yE2C4Xbc+llNRzzC9MbpgSM1GQCi4lUqlNy8Hq/C25S0wTTRW+FQZxuWTiR+AUTUL8MK9wJsNF5f0bZc8hfJw==}
+ /gatsby-plugin-page-creator/5.7.0-next.0_5qnviuipb4fcbildeubwcez6ia:
+ resolution: {integrity: sha512-Lq7lyHBNiHvgjTXeybUo+cn/QjOjoN1PnoZlKyM0wGpJOX9nn6hrED+C5FylOKf4hS/RjLPaGf4OnYzeOAkWtQ==}
engines: {node: '>=18.0.0'}
peerDependencies:
gatsby: ^5.0.0-next
dependencies:
- '@babel/runtime': 7.20.7
- '@babel/traverse': 7.20.12
+ '@babel/runtime': 7.20.13
+ '@babel/traverse': 7.20.13
'@sindresorhus/slugify': 1.1.2
chokidar: 3.5.3
fs-exists-cached: 1.0.0
fs-extra: 11.1.0
- gatsby: 5.6.0-next.2_biqbaboplfbrettd7655fr4n2y
- gatsby-core-utils: 4.6.0-next.0
- gatsby-page-utils: 3.6.0-next.0
- gatsby-plugin-utils: 4.6.0-next.1_wxxlwg4kb5uwyfjvsdo3jviy2e
- gatsby-telemetry: 4.6.0-next.0
+ gatsby: 5.7.0-next.0_biqbaboplfbrettd7655fr4n2y
+ gatsby-core-utils: 4.7.0-next.0
+ gatsby-page-utils: 3.7.0-next.0
+ gatsby-plugin-utils: 4.7.0-next.0_5qnviuipb4fcbildeubwcez6ia
+ gatsby-telemetry: 4.7.0-next.0
globby: 11.1.0
lodash: 4.17.21
transitivePeerDependencies:
@@ -20813,8 +20966,8 @@ packages:
- supports-color
dev: false
- /gatsby-plugin-typescript/5.6.0-next.0_gatsby@5.6.0-next.2:
- resolution: {integrity: sha512-CUguJx8GjTQHymcfBOcwUXZtetfhLYtgUehkM8ovvNlscgavGxmbGD90gXMmo5JgrLPhdx8krtMsdIeCOOvo4w==}
+ /gatsby-plugin-typescript/5.7.0-next.0_gatsby@5.7.0-next.0:
+ resolution: {integrity: sha512-r60b1a2SOAZRYmV+rpPCW58QgeutbCHpOeaG7mDBHSNU3nnL2WWjvSmJFpbvwYRsTUhd54k1EXYENB7nX4Sw/w==}
engines: {node: '>=18.0.0'}
peerDependencies:
gatsby: ^5.0.0-next
@@ -20824,26 +20977,26 @@ packages:
'@babel/plugin-proposal-numeric-separator': 7.18.6_@babel+core@7.20.12
'@babel/plugin-proposal-optional-chaining': 7.20.7_@babel+core@7.20.12
'@babel/preset-typescript': 7.18.6_@babel+core@7.20.12
- '@babel/runtime': 7.20.7
- babel-plugin-remove-graphql-queries: 5.6.0-next.0_x3fnz3zp5bgltr62wwyqvgm7l4
- gatsby: 5.6.0-next.2_biqbaboplfbrettd7655fr4n2y
+ '@babel/runtime': 7.20.13
+ babel-plugin-remove-graphql-queries: 5.7.0-next.0_kwfgdicz63ldiwfqlkadmrpj4y
+ gatsby: 5.7.0-next.0_biqbaboplfbrettd7655fr4n2y
transitivePeerDependencies:
- supports-color
dev: false
- /gatsby-plugin-utils/4.6.0-next.1_wxxlwg4kb5uwyfjvsdo3jviy2e:
- resolution: {integrity: sha512-RhM2cQ6RYmdGQkXKs4d+KfG5ovGjvbF4fps/H4Sk81nJ1AnlPGbUlMaCdgFhhTJL1ID8l4rYdpQKXM87THJosQ==}
+ /gatsby-plugin-utils/4.7.0-next.0_5qnviuipb4fcbildeubwcez6ia:
+ resolution: {integrity: sha512-yWgUlqItsOST/cmqxAYuzZKoLv/lnmztQn5Pk7jtJup/jnISqzq1LVYKS027ZFIRDTp1u0flRwlC3vlhH4kd8Q==}
engines: {node: '>=18.0.0'}
peerDependencies:
gatsby: ^5.0.0-next
graphql: ^16.0.0
dependencies:
- '@babel/runtime': 7.20.7
+ '@babel/runtime': 7.20.13
fastq: 1.15.0
fs-extra: 11.1.0
- gatsby: 5.6.0-next.2_biqbaboplfbrettd7655fr4n2y
- gatsby-core-utils: 4.6.0-next.0
- gatsby-sharp: 1.6.0-next.0
+ gatsby: 5.7.0-next.0_biqbaboplfbrettd7655fr4n2y
+ gatsby-core-utils: 4.7.0-next.0
+ gatsby-sharp: 1.7.0-next.0
graphql: 16.6.0
graphql-compose: 9.0.10_graphql@16.6.0
import-from: 4.0.0
@@ -20851,77 +21004,77 @@ packages:
mime: 3.0.0
dev: false
- /gatsby-react-router-scroll/6.6.0-next.0_y2kppt6lrltqk6wasg3eswwzsa:
- resolution: {integrity: sha512-zSVEibH40eR64HROVbQ2OTV4sSDVXCgAEIG9yykhGJv5oz2yEFwWcjmPYWEtaiu2qcjPnLSkjsPOw5tVqrFr7A==}
+ /gatsby-react-router-scroll/6.7.0-next.0_uxzdzcrcylloub4rxar25ny6ra:
+ resolution: {integrity: sha512-OFKePAMF6n8DseaIIsuuQ4GTadl91m9i1GIj8fUhaInQr4y6fADSvWIR6W+ZxDjKksUm+DNalz+FE8UzGcVDtw==}
engines: {node: '>=18.0.0'}
peerDependencies:
'@gatsbyjs/reach-router': ^2.0.0
react: ^18.0.0 || ^0.0.0
react-dom: ^18.0.0 || ^0.0.0
dependencies:
- '@babel/runtime': 7.20.7
- '@gatsbyjs/reach-router': 2.0.0_biqbaboplfbrettd7655fr4n2y
+ '@babel/runtime': 7.20.13
+ '@gatsbyjs/reach-router': 2.0.1_biqbaboplfbrettd7655fr4n2y
prop-types: 15.8.1
react: 18.2.0
react-dom: 18.2.0_react@18.2.0
dev: false
- /gatsby-script/2.6.0-next.0_y2kppt6lrltqk6wasg3eswwzsa:
- resolution: {integrity: sha512-kJQ+NqtS4ue3I7t0Asgy+bAdnwQ0Wzu6BK3z/jnj57lU6mBthU5XWj9RiCu3W4GjsIW/qqjN1e/rqvukN+sWMw==}
+ /gatsby-script/2.7.0-next.0_uxzdzcrcylloub4rxar25ny6ra:
+ resolution: {integrity: sha512-ycmGRe7exnLXf0iL6+W3pyJn/tjCwcZHLI56eV0siWUiixxZMWLRZ5Ysigk+O3WitFCax083/WbpH3TiT9rfnA==}
engines: {node: '>=18.0.0'}
peerDependencies:
'@gatsbyjs/reach-router': ^2.0.0
react: ^18.0.0 || ^0.0.0
react-dom: ^18.0.0 || ^0.0.0
dependencies:
- '@gatsbyjs/reach-router': 2.0.0_biqbaboplfbrettd7655fr4n2y
+ '@gatsbyjs/reach-router': 2.0.1_biqbaboplfbrettd7655fr4n2y
react: 18.2.0
react-dom: 18.2.0_react@18.2.0
dev: false
- /gatsby-sharp/1.6.0-next.0:
- resolution: {integrity: sha512-QaGkqU55JaZAbjgU1QyrX0rbyRUEFluMT7LykLlfGMCdox4DzE5ERtP5BVIHCzRXc0JAZtmFCDcFmpPSKxB28w==}
+ /gatsby-sharp/1.7.0-next.0:
+ resolution: {integrity: sha512-BzvqeCKt424YChZmb2p4sw1moPeE0SGfzr2IbhM/kkb8Ks3fH+mLy/FUQi/dJ317oa1+AHc8mAjezzxGAFHSsA==}
engines: {node: '>=18.0.0'}
dependencies:
'@types/sharp': 0.31.1
sharp: 0.31.3
dev: false
- /gatsby-telemetry/4.6.0-next.0:
- resolution: {integrity: sha512-LQcqw21mO0s5sKPoi5MWYqcK7iVp5qej5fTpOYgDenabGDSIxYAoRa5CGQ6tRwGUjMu3NYykmCpPdsY0DHNHyw==}
+ /gatsby-telemetry/4.7.0-next.0:
+ resolution: {integrity: sha512-Gnn6g6cYo4YR7bx9CET0k/2/VwO/AMbVkyO4p4jdxUSuNNY1CCFhH4hTD8oc4ln9KTxnyO1AqoT/ArNzL0G1Xw==}
engines: {node: '>=18.0.0'}
requiresBuild: true
dependencies:
'@babel/code-frame': 7.18.6
- '@babel/runtime': 7.20.7
- '@turist/fetch': 7.2.0_node-fetch@2.6.7
+ '@babel/runtime': 7.20.13
+ '@turist/fetch': 7.2.0_node-fetch@2.6.9
'@turist/time': 0.0.2
boxen: 5.1.2
configstore: 5.0.1
fs-extra: 11.1.0
- gatsby-core-utils: 4.6.0-next.0
+ gatsby-core-utils: 4.7.0-next.0
git-up: 7.0.0
is-docker: 2.2.1
lodash: 4.17.21
- node-fetch: 2.6.7
+ node-fetch: 2.6.9
transitivePeerDependencies:
- encoding
dev: false
- /gatsby-worker/2.6.0-next.0:
- resolution: {integrity: sha512-C2bBppw4MqtEo1pEUma2UE06txv22q+ix04G3idMxjqFLtWq+H3+fQmuDZB4laI601ClzyAHK99dSNKQrfGqeA==}
+ /gatsby-worker/2.7.0-next.0:
+ resolution: {integrity: sha512-LKGhWzjadmaciZ7KBBebcS+Pi5WrgSRaRiyzogdFHXTRE0WNCGWOrMQVH1nF0ppMEO2vN11GZKb3TZxDu0ho6g==}
engines: {node: '>=18.0.0'}
dependencies:
'@babel/core': 7.20.12
- '@babel/runtime': 7.20.7
+ '@babel/runtime': 7.20.13
fs-extra: 11.1.0
signal-exit: 3.0.7
transitivePeerDependencies:
- supports-color
dev: false
- /gatsby/5.6.0-next.2_biqbaboplfbrettd7655fr4n2y:
- resolution: {integrity: sha512-cXyyDjlA2V3NhnfJtLhcrShrYU6k/FB67el5MZIqzrHjb7sg77lJztMpoy4PvXs4MlNvhRupSclIO+o9+G0pyg==}
+ /gatsby/5.7.0-next.0_biqbaboplfbrettd7655fr4n2y:
+ resolution: {integrity: sha512-QBYsyxuct7qhGLkl1jdU0zJS5C5B6wDaxUnReaI9qD+R898cc0KZgGcxhWFzXTk3c6mKGXebW0BBcRBMZ8f3+A==}
engines: {node: '>=18.0.0'}
hasBin: true
requiresBuild: true
@@ -20933,24 +21086,24 @@ packages:
'@babel/core': 7.20.12
'@babel/eslint-parser': 7.19.1_go3kp2l7mdrkdyt3xfyeu7ppfa
'@babel/helper-plugin-utils': 7.20.2
- '@babel/parser': 7.20.7
- '@babel/runtime': 7.20.7
- '@babel/traverse': 7.20.12
+ '@babel/parser': 7.20.15
+ '@babel/runtime': 7.20.13
+ '@babel/traverse': 7.20.13
'@babel/types': 7.20.7
'@builder.io/partytown': 0.7.5
- '@gatsbyjs/reach-router': 2.0.0_biqbaboplfbrettd7655fr4n2y
+ '@gatsbyjs/reach-router': 2.0.1_biqbaboplfbrettd7655fr4n2y
'@gatsbyjs/webpack-hot-middleware': 2.25.3
'@graphql-codegen/add': 3.2.3_graphql@16.6.0
'@graphql-codegen/core': 2.6.8_graphql@16.6.0
'@graphql-codegen/plugin-helpers': 2.7.2_graphql@16.6.0
'@graphql-codegen/typescript': 2.8.7_graphql@16.6.0
'@graphql-codegen/typescript-operations': 2.5.12_graphql@16.6.0
- '@graphql-tools/code-file-loader': 7.3.15_hooseksvfyhf37tjwfseq7c3kq
- '@graphql-tools/load': 7.8.8_graphql@16.6.0
+ '@graphql-tools/code-file-loader': 7.3.18_hooseksvfyhf37tjwfseq7c3kq
+ '@graphql-tools/load': 7.8.11_graphql@16.6.0
'@jridgewell/trace-mapping': 0.3.17
'@nodelib/fs.walk': 1.2.8
- '@parcel/cache': 2.8.2_@parcel+core@2.8.2
- '@parcel/core': 2.8.2
+ '@parcel/cache': 2.8.3_@parcel+core@2.8.3
+ '@parcel/core': 2.8.3
'@pmmmwh/react-refresh-webpack-plugin': 0.5.10_xsftmjzvfioxqs4ify53ibh7ay
'@types/http-proxy': 1.17.9
'@typescript-eslint/eslint-plugin': 4.33.0_ffi3uiz42rv3jyhs6cr7p7qqry
@@ -20960,15 +21113,15 @@ packages:
acorn-walk: 8.2.0
address: 1.2.2
anser: 2.1.1
- autoprefixer: 10.4.13_postcss@8.4.20
+ autoprefixer: 10.4.13_postcss@8.4.21
axios: 0.21.4_debug@4.3.4
babel-jsx-utils: 1.1.0
babel-loader: 8.3.0_la66t7xldg4uecmyawueag5wkm
babel-plugin-add-module-exports: 1.0.4
babel-plugin-dynamic-import-node: 2.3.3
babel-plugin-lodash: 3.3.4
- babel-plugin-remove-graphql-queries: 5.6.0-next.0_x3fnz3zp5bgltr62wwyqvgm7l4
- babel-preset-gatsby: 3.6.0-next.0_pp2vm42zn6vfmnpuhar3irht7i
+ babel-plugin-remove-graphql-queries: 5.7.0-next.0_kwfgdicz63ldiwfqlkadmrpj4y
+ babel-preset-gatsby: 3.7.0-next.0_pp2vm42zn6vfmnpuhar3irht7i
better-opn: 2.1.1
bluebird: 3.7.2
browserslist: 4.21.4
@@ -20985,17 +21138,17 @@ packages:
css.escape: 1.5.1
date-fns: 2.29.3
debug: 4.3.4
- deepmerge: 4.2.2
+ deepmerge: 4.3.0
detect-port: 1.5.1
devcert: 1.2.2
dotenv: 8.6.0
enhanced-resolve: 5.12.0
error-stack-parser: 2.1.4
eslint: 7.32.0
- eslint-config-react-app: 6.0.0_nnhcjimma6qtaxwhedjmsri3h4
+ eslint-config-react-app: 6.0.0_ftuoewqukkbctpkc5t32zy3owy
eslint-plugin-flowtype: 5.10.0_eslint@7.32.0
- eslint-plugin-import: 2.26.0_ffi3uiz42rv3jyhs6cr7p7qqry
- eslint-plugin-jsx-a11y: 6.7.0_eslint@7.32.0
+ eslint-plugin-import: 2.27.5_ffi3uiz42rv3jyhs6cr7p7qqry
+ eslint-plugin-jsx-a11y: 6.7.1_eslint@7.32.0
eslint-plugin-react: 7.31.11_eslint@7.32.0
eslint-plugin-react-hooks: 4.6.0_eslint@7.32.0
eslint-webpack-plugin: 2.7.0_u2ubl3shblmc7225ne6wflnyua
@@ -21009,26 +21162,26 @@ packages:
find-cache-dir: 3.3.2
fs-exists-cached: 1.0.0
fs-extra: 11.1.0
- gatsby-cli: 5.6.0-next.1
- gatsby-core-utils: 4.6.0-next.0
- gatsby-graphiql-explorer: 3.6.0-next.0
- gatsby-legacy-polyfills: 3.6.0-next.0
- gatsby-link: 5.6.0-next.0_y2kppt6lrltqk6wasg3eswwzsa
- gatsby-page-utils: 3.6.0-next.0
- gatsby-parcel-config: 1.6.0-next.0_@parcel+core@2.8.2
- gatsby-plugin-page-creator: 5.6.0-next.1_wxxlwg4kb5uwyfjvsdo3jviy2e
- gatsby-plugin-typescript: 5.6.0-next.0_gatsby@5.6.0-next.2
- gatsby-plugin-utils: 4.6.0-next.1_wxxlwg4kb5uwyfjvsdo3jviy2e
- gatsby-react-router-scroll: 6.6.0-next.0_y2kppt6lrltqk6wasg3eswwzsa
- gatsby-script: 2.6.0-next.0_y2kppt6lrltqk6wasg3eswwzsa
- gatsby-telemetry: 4.6.0-next.0
- gatsby-worker: 2.6.0-next.0
+ gatsby-cli: 5.7.0-next.0
+ gatsby-core-utils: 4.7.0-next.0
+ gatsby-graphiql-explorer: 3.7.0-next.0
+ gatsby-legacy-polyfills: 3.7.0-next.0
+ gatsby-link: 5.7.0-next.0_uxzdzcrcylloub4rxar25ny6ra
+ gatsby-page-utils: 3.7.0-next.0
+ gatsby-parcel-config: 1.7.0-next.0_@parcel+core@2.8.3
+ gatsby-plugin-page-creator: 5.7.0-next.0_5qnviuipb4fcbildeubwcez6ia
+ gatsby-plugin-typescript: 5.7.0-next.0_gatsby@5.7.0-next.0
+ gatsby-plugin-utils: 4.7.0-next.0_5qnviuipb4fcbildeubwcez6ia
+ gatsby-react-router-scroll: 6.7.0-next.0_uxzdzcrcylloub4rxar25ny6ra
+ gatsby-script: 2.7.0-next.0_uxzdzcrcylloub4rxar25ny6ra
+ gatsby-telemetry: 4.7.0-next.0
+ gatsby-worker: 2.7.0-next.0
glob: 7.2.3
globby: 11.1.0
got: 11.8.6
graphql: 16.6.0
graphql-compose: 9.0.10_graphql@16.6.0
- graphql-http: 1.11.0_graphql@16.6.0
+ graphql-http: 1.13.0_graphql@16.6.0
graphql-tag: 2.12.6_graphql@16.6.0
hasha: 5.2.2
invariant: 2.2.4
@@ -21047,7 +21200,7 @@ packages:
mitt: 1.2.0
moment: 2.29.4
multer: 1.4.5-lts.1
- node-fetch: 2.6.7
+ node-fetch: 2.6.9
node-html-parser: 5.4.2
normalize-path: 3.0.0
null-loader: 4.0.1_webpack@5.75.0
@@ -21056,9 +21209,9 @@ packages:
parseurl: 1.3.3
physical-cpu-count: 2.0.0
platform: 1.3.6
- postcss: 8.4.20
- postcss-flexbugs-fixes: 5.0.2_postcss@8.4.20
- postcss-loader: 5.3.0_qxxfhhrl3yknjjmta266mo3u64
+ postcss: 8.4.21
+ postcss-flexbugs-fixes: 5.0.2_postcss@8.4.21
+ postcss-loader: 5.3.0_6jdsrmfenkuhhw3gx4zvjlznce
prompts: 2.4.2
prop-types: 15.8.1
query-string: 6.14.1
@@ -21068,8 +21221,8 @@ packages:
react-dom: 18.2.0_react@18.2.0
react-refresh: 0.14.0
react-server-dom-webpack: 0.0.0-experimental-c8b778b7f-20220825_wxnjqhvau3kr4edcdlkxrbquiq
- redux: 4.2.0
- redux-thunk: 2.4.2_redux@4.2.0
+ redux: 4.2.1
+ redux-thunk: 2.4.2_redux@4.2.1
resolve-from: 5.0.0
semver: 7.3.8
shallow-compare: 1.2.2
@@ -21093,10 +21246,10 @@ packages:
webpack-merge: 5.8.0
webpack-stats-plugin: 1.1.1
webpack-virtual-modules: 0.5.0
- xstate: 4.35.2
+ xstate: 4.35.4
yaml-loader: 0.8.0
optionalDependencies:
- gatsby-sharp: 1.6.0-next.0
+ gatsby-sharp: 1.7.0-next.0
transitivePeerDependencies:
- '@swc/core'
- '@types/webpack'
@@ -21161,7 +21314,7 @@ packages:
extend: 3.0.2
https-proxy-agent: 5.0.1
is-stream: 2.0.1
- node-fetch: 2.6.7
+ node-fetch: 2.6.9
transitivePeerDependencies:
- encoding
- supports-color
@@ -21174,7 +21327,7 @@ packages:
extend: 3.0.2
https-proxy-agent: 5.0.1
is-stream: 2.0.1
- node-fetch: 2.6.7
+ node-fetch: 2.6.9
transitivePeerDependencies:
- encoding
- supports-color
@@ -21410,7 +21563,7 @@ packages:
fs.realpath: 1.0.0
inflight: 1.0.6
inherits: 2.0.4
- minimatch: 5.1.0
+ minimatch: 5.1.6
once: 1.4.0
dev: true
@@ -21577,7 +21730,7 @@ packages:
fast-text-encoding: 1.0.4
google-auth-library: 8.7.0
is-stream-ended: 0.1.4
- node-fetch: 2.6.7
+ node-fetch: 2.6.9
object-hash: 3.0.0
proto3-json-serializer: 1.1.0
protobufjs: 7.1.2
@@ -21683,8 +21836,8 @@ packages:
- graphql
dev: false
- /graphql-http/1.11.0_graphql@16.6.0:
- resolution: {integrity: sha512-BQOwcGQWwjtsItzWS5ucPVZPtEJSkCDlzQvvNN86Ve+WJOlzvA/VqQhyf2xSZ9Q1TvQEZ9CCPHvBYdbxDDt/hQ==}
+ /graphql-http/1.13.0_graphql@16.6.0:
+ resolution: {integrity: sha512-3Ia3ql9k+i/GvjNucwRdqdbumLeyJ8Zame4IhniMy/974t+Dy2mDnF08fOCKwXJwd3ErmzhYS/ZyvcXiX4v8wg==}
engines: {node: '>=12'}
peerDependencies:
graphql: '>=0.11 <=16'
@@ -21780,19 +21933,6 @@ packages:
resolution: {integrity: sha512-9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg==}
dev: true
- /handlebars/4.7.7:
- resolution: {integrity: sha512-aAcXm5OAfE/8IXkcZvCepKU3VzW1/39Fb5ZuqMtgI/hT8X2YgoMvBY5dLhq/cpOvw7Lk1nK/UF71aLG/ZnVYRA==}
- engines: {node: '>=0.4.7'}
- hasBin: true
- dependencies:
- minimist: 1.2.6
- neo-async: 2.6.2
- source-map: 0.6.1
- wordwrap: 1.0.0
- optionalDependencies:
- uglify-js: 3.17.4
- dev: true
-
/har-schema/2.0.0:
resolution: {integrity: sha512-Oqluz6zhGX8cyRaTQlFMPw80bSJVG2x/cFb8ZPhUILGgHka9SsokCCOQgpveePerqidZOrT14ipqfJb7ILcW5Q==}
engines: {node: '>=4'}
@@ -21964,7 +22104,7 @@ packages:
/history/4.10.1:
resolution: {integrity: sha512-36nwAD620w12kuzPAsyINPWJqlNbij+hpK1k9XRloDtym8mxzGYl2c17LnV6IAGB2Dmg4tEa7G7DlawS0+qjew==}
dependencies:
- '@babel/runtime': 7.20.7
+ '@babel/runtime': 7.20.13
loose-envify: 1.4.0
resolve-pathname: 3.0.0
tiny-invariant: 1.2.0
@@ -22276,13 +22416,13 @@ packages:
dependencies:
safer-buffer: 2.1.2
- /icss-utils/5.1.0_postcss@8.4.20:
+ /icss-utils/5.1.0_postcss@8.4.21:
resolution: {integrity: sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==}
engines: {node: ^10 || ^12 || >= 14}
peerDependencies:
postcss: ^8.1.0
dependencies:
- postcss: 8.4.20
+ postcss: 8.4.21
/idb/7.0.1:
resolution: {integrity: sha512-UUxlE7vGWK5RfB/fDwEGgRf84DY/ieqNha6msMV99UsEMQhJ1RwbCd8AYBj3QMgnE3VZnfQvm4oKVCJTYlqIgg==}
@@ -22587,6 +22727,7 @@ packages:
/is-arrayish/0.3.2:
resolution: {integrity: sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==}
+ requiresBuild: true
/is-bigint/1.0.4:
resolution: {integrity: sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==}
@@ -22628,6 +22769,11 @@ packages:
dependencies:
ci-info: 2.0.0
+ /is-core-module/2.11.0:
+ resolution: {integrity: sha512-RRjxlvLDkD1YJwDbroBHMb+cukurkDWNyHx7D3oNB5x9rb5ogcksMC5wHCadcXoo67gVr/+3GFySh3134zi6rw==}
+ dependencies:
+ has: 1.0.3
+
/is-core-module/2.9.0:
resolution: {integrity: sha512-+5FPy5PnwmO3lvfMb0AsoPaBG+5KHUI0wYFXOtYPnVVVspTFUuMZNfNaNVRt3FZadstu2c8x23vykRW/NBoU6A==}
dependencies:
@@ -23065,7 +23211,7 @@ packages:
engines: {node: '>=8'}
dependencies:
'@babel/core': 7.20.12
- '@babel/parser': 7.20.7
+ '@babel/parser': 7.20.15
'@istanbuljs/schema': 0.1.3
istanbul-lib-coverage: 3.2.0
semver: 6.3.0
@@ -23320,7 +23466,7 @@ packages:
babel-jest: 27.5.1_@babel+core@7.20.12
chalk: 4.1.2
ci-info: 3.7.0
- deepmerge: 4.2.2
+ deepmerge: 4.3.0
glob: 7.2.3
graceful-fs: 4.2.10
jest-circus: 27.5.1
@@ -23364,7 +23510,7 @@ packages:
babel-jest: 28.1.1_@babel+core@7.20.12
chalk: 4.1.2
ci-info: 3.7.0
- deepmerge: 4.2.2
+ deepmerge: 4.3.0
glob: 7.2.3
graceful-fs: 4.2.10
jest-circus: 28.1.1
@@ -23403,7 +23549,7 @@ packages:
babel-jest: 28.1.1_@babel+core@7.20.12
chalk: 4.1.2
ci-info: 3.7.0
- deepmerge: 4.2.2
+ deepmerge: 4.3.0
glob: 7.2.3
graceful-fs: 4.2.10
jest-circus: 28.1.1
@@ -23441,7 +23587,7 @@ packages:
babel-jest: 29.3.0_@babel+core@7.20.12
chalk: 4.1.2
ci-info: 3.7.0
- deepmerge: 4.2.2
+ deepmerge: 4.3.0
glob: 7.2.3
graceful-fs: 4.2.10
jest-circus: 29.3.0
@@ -23480,7 +23626,7 @@ packages:
babel-jest: 29.3.0_@babel+core@7.20.12
chalk: 4.1.2
ci-info: 3.7.0
- deepmerge: 4.2.2
+ deepmerge: 4.3.0
glob: 7.2.3
graceful-fs: 4.2.10
jest-circus: 29.3.0
@@ -24255,9 +24401,9 @@ packages:
engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
dependencies:
'@babel/core': 7.20.12
- '@babel/generator': 7.20.7
+ '@babel/generator': 7.20.14
'@babel/plugin-syntax-typescript': 7.20.0_@babel+core@7.20.12
- '@babel/traverse': 7.20.12
+ '@babel/traverse': 7.20.13
'@babel/types': 7.20.7
'@jest/transform': 27.5.1
'@jest/types': 27.5.1
@@ -24285,9 +24431,9 @@ packages:
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
dependencies:
'@babel/core': 7.20.12
- '@babel/generator': 7.20.7
+ '@babel/generator': 7.20.14
'@babel/plugin-syntax-typescript': 7.20.0_@babel+core@7.20.12
- '@babel/traverse': 7.20.12
+ '@babel/traverse': 7.20.13
'@babel/types': 7.20.7
'@jest/expect-utils': 28.1.1
'@jest/transform': 28.1.1
@@ -24316,10 +24462,10 @@ packages:
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
'@babel/core': 7.20.12
- '@babel/generator': 7.20.7
+ '@babel/generator': 7.20.14
'@babel/plugin-syntax-jsx': 7.18.6_@babel+core@7.20.12
'@babel/plugin-syntax-typescript': 7.20.0_@babel+core@7.20.12
- '@babel/traverse': 7.20.12
+ '@babel/traverse': 7.20.13
'@babel/types': 7.20.7
'@jest/expect-utils': 29.2.2
'@jest/transform': 29.3.0
@@ -24704,7 +24850,7 @@ packages:
engines: {node: '>=12.0.0'}
hasBin: true
dependencies:
- '@babel/parser': 7.20.7
+ '@babel/parser': 7.20.15
'@types/markdown-it': 12.2.3
bluebird: 3.7.2
catharsis: 0.9.0
@@ -24713,7 +24859,7 @@ packages:
klaw: 3.0.0
markdown-it: 12.3.2
markdown-it-anchor: 8.6.5_2zb4u3vubltivolgu556vv4aom
- marked: 4.0.17
+ marked: 4.2.12
mkdirp: 1.0.4
requizzle: 0.2.4
strip-json-comments: 3.1.1
@@ -25342,14 +25488,6 @@ packages:
resolution: {integrity: sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==}
engines: {node: '>=6.11.5'}
- /loader-utils/2.0.2:
- resolution: {integrity: sha512-TM57VeHptv569d/GKh6TAYdzKblwDNiumOdkFnejjD0XwTH87K90w3O7AiJRqdQoXygvi1VQTJTLGhJl7WqA7A==}
- engines: {node: '>=8.9.0'}
- dependencies:
- big.js: 5.2.2
- emojis-list: 3.0.0
- json5: 2.2.3
-
/loader-utils/2.0.4:
resolution: {integrity: sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==}
engines: {node: '>=8.9.0'}
@@ -25834,8 +25972,8 @@ packages:
hasBin: true
dev: true
- /marked/4.2.4:
- resolution: {integrity: sha512-Wcc9ikX7Q5E4BYDPvh1C6QNSxrjC9tBgz+A/vAhp59KXUgachw++uMvMKiSW8oA85nopmPZcEvBoex/YLMsiyA==}
+ /marked/4.2.12:
+ resolution: {integrity: sha512-yr8hSKa3Fv4D3jdZmtMMPghgVt6TWbk86WQaWhDloQjRSQhMMYCAro7jP7VDJrjjdV8pxVxMssXS8B8Y5DZ5aw==}
engines: {node: '>= 12'}
hasBin: true
dev: true
@@ -25852,14 +25990,6 @@ packages:
unist-util-visit: 2.0.3
dev: true
- /mdast-util-find-and-replace/1.1.1:
- resolution: {integrity: sha512-9cKl33Y21lyckGzpSmEQnIDjEfeeWelN5s1kUW1LwdB0Fkuq2u+4GdqcGEygYxJE8GVqCl0741bYXHgamfWAZA==}
- dependencies:
- escape-string-regexp: 4.0.0
- unist-util-is: 4.1.0
- unist-util-visit-parents: 3.1.1
- dev: false
-
/mdast-util-to-hast/10.0.1:
resolution: {integrity: sha512-BW3LM9SEMnjf4HXXVApZMt8gLQWVNXc3jryK0nJu/rOXPOnlkUjmdkDlmxMirpbU9ILncGFIwLH/ubnWBbcdgA==}
dependencies:
@@ -25873,10 +26003,6 @@ packages:
unist-util-visit: 2.0.3
dev: true
- /mdast-util-to-string/1.1.0:
- resolution: {integrity: sha512-jVU0Nr2B9X3MU4tSK7JP1CMkSvOj7X5l/GboG1tKRw52lLF1x2Ju92Ms9tNetCcbfX3hzlM73zYo2NKkWSfF/A==}
- dev: false
-
/mdast-util-to-string/2.0.0:
resolution: {integrity: sha512-AW4DRS3QbBayY/jJmD8437V1Gombjf8RSOUCMFBuo5iHi58AGEgVCKQ+ezHkZZDpAQS75hcBMpLqjpJTjtUL7w==}
dev: true
@@ -26103,7 +26229,7 @@ packages:
prop-types: ^15.0.0
react: ^0.14.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
dependencies:
- '@babel/runtime': 7.20.7
+ '@babel/runtime': 7.20.13
prop-types: 15.8.1
react: 18.2.0
tiny-warning: 1.0.3
@@ -26145,8 +26271,8 @@ packages:
dependencies:
brace-expansion: 1.1.11
- /minimatch/5.1.0:
- resolution: {integrity: sha512-9TPBGGak4nHfGZsPBohm9AWg6NoT7QTCehS3BIJABslyZbzxfV78QM2Y6+i741OPZIafFAaiiEMh5OyIrJPgtg==}
+ /minimatch/5.1.6:
+ resolution: {integrity: sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==}
engines: {node: '>=10'}
dependencies:
brace-expansion: 2.0.1
@@ -26780,6 +26906,17 @@ packages:
dependencies:
whatwg-url: 5.0.0
+ /node-fetch/2.6.9:
+ resolution: {integrity: sha512-DJm/CJkZkRjKKj4Zi4BsKVZh3ValV5IR5s7LVZnW+6YMh0W1BfNA8XSs6DLMGYlId5F3KnA70uu2qepcR08Qqg==}
+ engines: {node: 4.x || >=6.0.0}
+ peerDependencies:
+ encoding: ^0.1.0
+ peerDependenciesMeta:
+ encoding:
+ optional: true
+ dependencies:
+ whatwg-url: 5.0.0
+
/node-fetch/3.3.0:
resolution: {integrity: sha512-BKwRP/O0UvoMKp7GNdwPlObhYGB5DQqwhEDQlNKuoqwVYSxkSZCSbHjnFFmUEtwSKRPU4kNK8PbDYYitwaE3QA==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
@@ -26907,7 +27044,7 @@ packages:
engines: {node: '>=10'}
dependencies:
hosted-git-info: 4.1.0
- is-core-module: 2.9.0
+ is-core-module: 2.11.0
semver: 7.3.8
validate-npm-package-license: 3.0.4
dev: true
@@ -27859,6 +27996,16 @@ packages:
postcss: 8.4.20
postcss-selector-parser: 6.0.10
postcss-value-parser: 4.2.0
+ dev: true
+
+ /postcss-calc/8.2.4_postcss@8.4.21:
+ resolution: {integrity: sha512-SmWMSJmB8MRnnULldx0lQIyhSNvuDl9HfrZkaqqE/WHAhToYsAvDq+yAsA/kIyINDszOp3Rh0GFoNuH5Ypsm3Q==}
+ peerDependencies:
+ postcss: ^8.2.2
+ dependencies:
+ postcss: 8.4.21
+ postcss-selector-parser: 6.0.10
+ postcss-value-parser: 4.2.0
/postcss-cli/9.1.0_postcss@8.4.14:
resolution: {integrity: sha512-zvDN2ADbWfza42sAnj+O2uUWyL0eRL1V+6giM2vi4SqTR3gTYy8XzcpfwccayF2szcUif0HMmXiEaDv9iEhcpw==}
@@ -27908,6 +28055,19 @@ packages:
colord: 2.9.2
postcss: 8.4.20
postcss-value-parser: 4.2.0
+ dev: true
+
+ /postcss-colormin/5.3.0_postcss@8.4.21:
+ resolution: {integrity: sha512-WdDO4gOFG2Z8n4P8TWBpshnL3JpmNmJwdnfP2gbk2qBA8PWwOYcmjmI/t3CmMeL72a7Hkd+x/Mg9O2/0rD54Pg==}
+ engines: {node: ^10 || ^12 || >=14.0}
+ peerDependencies:
+ postcss: ^8.2.15
+ dependencies:
+ browserslist: 4.21.4
+ caniuse-api: 3.0.0
+ colord: 2.9.2
+ postcss: 8.4.21
+ postcss-value-parser: 4.2.0
/postcss-convert-values/5.1.2_postcss@8.4.14:
resolution: {integrity: sha512-c6Hzc4GAv95B7suy4udszX9Zy4ETyMCgFPUDtWjdFTKH1SE9eFY/jEpHSwTH1QPuwxHpWslhckUQWbNRM4ho5g==}
@@ -27940,6 +28100,17 @@ packages:
browserslist: 4.21.4
postcss: 8.4.20
postcss-value-parser: 4.2.0
+ dev: true
+
+ /postcss-convert-values/5.1.3_postcss@8.4.21:
+ resolution: {integrity: sha512-82pC1xkJZtcJEfiLw6UXnXVXScgtBrjlO5CBmuDQc+dlb88ZYheFsjTn40+zBVi3DkfF7iezO0nJUPLcJK3pvA==}
+ engines: {node: ^10 || ^12 || >=14.0}
+ peerDependencies:
+ postcss: ^8.2.15
+ dependencies:
+ browserslist: 4.21.4
+ postcss: 8.4.21
+ postcss-value-parser: 4.2.0
/postcss-discard-comments/5.1.2_postcss@8.4.14:
resolution: {integrity: sha512-+L8208OVbHVF2UQf1iDmRcbdjJkuBF6IS29yBDSiWUIzpYaAhtNl6JYnYm12FnkeCwQqF5LeklOu6rAqgfBZqQ==}
@@ -27957,6 +28128,15 @@ packages:
postcss: ^8.2.15
dependencies:
postcss: 8.4.20
+ dev: true
+
+ /postcss-discard-comments/5.1.2_postcss@8.4.21:
+ resolution: {integrity: sha512-+L8208OVbHVF2UQf1iDmRcbdjJkuBF6IS29yBDSiWUIzpYaAhtNl6JYnYm12FnkeCwQqF5LeklOu6rAqgfBZqQ==}
+ engines: {node: ^10 || ^12 || >=14.0}
+ peerDependencies:
+ postcss: ^8.2.15
+ dependencies:
+ postcss: 8.4.21
/postcss-discard-duplicates/5.1.0_postcss@8.4.14:
resolution: {integrity: sha512-zmX3IoSI2aoenxHV6C7plngHWWhUOV3sP1T8y2ifzxzbtnuhk1EdPwm0S1bIUNaJ2eNbWeGLEwzw8huPD67aQw==}
@@ -27974,6 +28154,15 @@ packages:
postcss: ^8.2.15
dependencies:
postcss: 8.4.20
+ dev: true
+
+ /postcss-discard-duplicates/5.1.0_postcss@8.4.21:
+ resolution: {integrity: sha512-zmX3IoSI2aoenxHV6C7plngHWWhUOV3sP1T8y2ifzxzbtnuhk1EdPwm0S1bIUNaJ2eNbWeGLEwzw8huPD67aQw==}
+ engines: {node: ^10 || ^12 || >=14.0}
+ peerDependencies:
+ postcss: ^8.2.15
+ dependencies:
+ postcss: 8.4.21
/postcss-discard-empty/5.1.1_postcss@8.4.14:
resolution: {integrity: sha512-zPz4WljiSuLWsI0ir4Mcnr4qQQ5e1Ukc3i7UfE2XcrwKK2LIPIqE5jxMRxO6GbI3cv//ztXDsXwEWT3BHOGh3A==}
@@ -27991,6 +28180,15 @@ packages:
postcss: ^8.2.15
dependencies:
postcss: 8.4.20
+ dev: true
+
+ /postcss-discard-empty/5.1.1_postcss@8.4.21:
+ resolution: {integrity: sha512-zPz4WljiSuLWsI0ir4Mcnr4qQQ5e1Ukc3i7UfE2XcrwKK2LIPIqE5jxMRxO6GbI3cv//ztXDsXwEWT3BHOGh3A==}
+ engines: {node: ^10 || ^12 || >=14.0}
+ peerDependencies:
+ postcss: ^8.2.15
+ dependencies:
+ postcss: 8.4.21
/postcss-discard-overridden/5.1.0_postcss@8.4.14:
resolution: {integrity: sha512-21nOL7RqWR1kasIVdKs8HNqQJhFxLsyRfAnUDm4Fe4t4mCWL9OJiHvlHPjcd8zc5Myu89b/7wZDnOSjFgeWRtw==}
@@ -28008,23 +28206,32 @@ packages:
postcss: ^8.2.15
dependencies:
postcss: 8.4.20
+ dev: true
- /postcss-discard-unused/5.1.0_postcss@8.4.20:
+ /postcss-discard-overridden/5.1.0_postcss@8.4.21:
+ resolution: {integrity: sha512-21nOL7RqWR1kasIVdKs8HNqQJhFxLsyRfAnUDm4Fe4t4mCWL9OJiHvlHPjcd8zc5Myu89b/7wZDnOSjFgeWRtw==}
+ engines: {node: ^10 || ^12 || >=14.0}
+ peerDependencies:
+ postcss: ^8.2.15
+ dependencies:
+ postcss: 8.4.21
+
+ /postcss-discard-unused/5.1.0_postcss@8.4.21:
resolution: {integrity: sha512-KwLWymI9hbwXmJa0dkrzpRbSJEh0vVUd7r8t0yOGPcfKzyJJxFM8kLyC5Ev9avji6nY95pOp1W6HqIrfT+0VGw==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.20
+ postcss: 8.4.21
postcss-selector-parser: 6.0.10
dev: true
- /postcss-flexbugs-fixes/5.0.2_postcss@8.4.20:
+ /postcss-flexbugs-fixes/5.0.2_postcss@8.4.21:
resolution: {integrity: sha512-18f9voByak7bTktR2QgDveglpn9DTbBWPUzSOe9g0N4WR/2eSt6Vrcbf0hmspvMI6YWGywz6B9f7jzpFNJJgnQ==}
peerDependencies:
postcss: ^8.1.4
dependencies:
- postcss: 8.4.20
+ postcss: 8.4.21
dev: false
/postcss-import-resolver/2.0.0:
@@ -28078,7 +28285,7 @@ packages:
yaml: 1.10.2
dev: true
- /postcss-loader/5.3.0_qxxfhhrl3yknjjmta266mo3u64:
+ /postcss-loader/5.3.0_6jdsrmfenkuhhw3gx4zvjlznce:
resolution: {integrity: sha512-/+Z1RAmssdiSLgIZwnJHwBMnlABPgF7giYzTN2NOfr9D21IJZ4mQC1R2miwp80zno9M4zMD/umGI8cR+2EL5zw==}
engines: {node: '>= 10.13.0'}
peerDependencies:
@@ -28087,7 +28294,7 @@ packages:
dependencies:
cosmiconfig: 7.0.1
klona: 2.0.5
- postcss: 8.4.20
+ postcss: 8.4.21
semver: 7.3.8
webpack: 5.75.0
dev: false
@@ -28106,14 +28313,14 @@ packages:
webpack: 5.73.0
dev: true
- /postcss-merge-idents/5.1.1_postcss@8.4.20:
+ /postcss-merge-idents/5.1.1_postcss@8.4.21:
resolution: {integrity: sha512-pCijL1TREiCoog5nQp7wUe+TUonA2tC2sQ54UGeMmryK3UFGIYKqDyjnqd6RcuI4znFn9hWSLNN8xKE/vWcUQw==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- cssnano-utils: 3.1.0_postcss@8.4.20
- postcss: 8.4.20
+ cssnano-utils: 3.1.0_postcss@8.4.21
+ postcss: 8.4.21
postcss-value-parser: 4.2.0
dev: true
@@ -28125,7 +28332,7 @@ packages:
dependencies:
postcss: 8.4.14
postcss-value-parser: 4.2.0
- stylehacks: 5.1.0_postcss@8.4.14
+ stylehacks: 5.1.1_postcss@8.4.14
dev: true
/postcss-merge-longhand/5.1.6_postcss@8.4.20:
@@ -28136,7 +28343,7 @@ packages:
dependencies:
postcss: 8.4.20
postcss-value-parser: 4.2.0
- stylehacks: 5.1.0_postcss@8.4.20
+ stylehacks: 5.1.1_postcss@8.4.20
dev: true
/postcss-merge-longhand/5.1.7_postcss@8.4.20:
@@ -28148,6 +28355,17 @@ packages:
postcss: 8.4.20
postcss-value-parser: 4.2.0
stylehacks: 5.1.1_postcss@8.4.20
+ dev: true
+
+ /postcss-merge-longhand/5.1.7_postcss@8.4.21:
+ resolution: {integrity: sha512-YCI9gZB+PLNskrK0BB3/2OzPnGhPkBEwmwhfYk1ilBHYVAZB7/tkTHFBAnCrvBBOmeYyMYw3DMjT55SyxMBzjQ==}
+ engines: {node: ^10 || ^12 || >=14.0}
+ peerDependencies:
+ postcss: ^8.2.15
+ dependencies:
+ postcss: 8.4.21
+ postcss-value-parser: 4.2.0
+ stylehacks: 5.1.1_postcss@8.4.21
/postcss-merge-rules/5.1.2_postcss@8.4.14:
resolution: {integrity: sha512-zKMUlnw+zYCWoPN6yhPjtcEdlJaMUZ0WyVcxTAmw3lkkN/NDMRkOkiuctQEoWAOvH7twaxUUdvBWl0d4+hifRQ==}
@@ -28186,6 +28404,19 @@ packages:
cssnano-utils: 3.1.0_postcss@8.4.20
postcss: 8.4.20
postcss-selector-parser: 6.0.10
+ dev: true
+
+ /postcss-merge-rules/5.1.3_postcss@8.4.21:
+ resolution: {integrity: sha512-LbLd7uFC00vpOuMvyZop8+vvhnfRGpp2S+IMQKeuOZZapPRY4SMq5ErjQeHbHsjCUgJkRNrlU+LmxsKIqPKQlA==}
+ engines: {node: ^10 || ^12 || >=14.0}
+ peerDependencies:
+ postcss: ^8.2.15
+ dependencies:
+ browserslist: 4.21.4
+ caniuse-api: 3.0.0
+ cssnano-utils: 3.1.0_postcss@8.4.21
+ postcss: 8.4.21
+ postcss-selector-parser: 6.0.10
/postcss-minify-font-values/5.1.0_postcss@8.4.14:
resolution: {integrity: sha512-el3mYTgx13ZAPPirSVsHqFzl+BBBDrXvbySvPGFnQcTI4iNslrPaFq4muTkLZmKlGk4gyFAYUBMH30+HurREyA==}
@@ -28205,6 +28436,16 @@ packages:
dependencies:
postcss: 8.4.20
postcss-value-parser: 4.2.0
+ dev: true
+
+ /postcss-minify-font-values/5.1.0_postcss@8.4.21:
+ resolution: {integrity: sha512-el3mYTgx13ZAPPirSVsHqFzl+BBBDrXvbySvPGFnQcTI4iNslrPaFq4muTkLZmKlGk4gyFAYUBMH30+HurREyA==}
+ engines: {node: ^10 || ^12 || >=14.0}
+ peerDependencies:
+ postcss: ^8.2.15
+ dependencies:
+ postcss: 8.4.21
+ postcss-value-parser: 4.2.0
/postcss-minify-gradients/5.1.1_postcss@8.4.14:
resolution: {integrity: sha512-VGvXMTpCEo4qHTNSa9A0a3D+dxGFZCYwR6Jokk+/3oB6flu2/PnPXAh2x7x52EkY5xlIHLm+Le8tJxe/7TNhzw==}
@@ -28228,6 +28469,18 @@ packages:
cssnano-utils: 3.1.0_postcss@8.4.20
postcss: 8.4.20
postcss-value-parser: 4.2.0
+ dev: true
+
+ /postcss-minify-gradients/5.1.1_postcss@8.4.21:
+ resolution: {integrity: sha512-VGvXMTpCEo4qHTNSa9A0a3D+dxGFZCYwR6Jokk+/3oB6flu2/PnPXAh2x7x52EkY5xlIHLm+Le8tJxe/7TNhzw==}
+ engines: {node: ^10 || ^12 || >=14.0}
+ peerDependencies:
+ postcss: ^8.2.15
+ dependencies:
+ colord: 2.9.2
+ cssnano-utils: 3.1.0_postcss@8.4.21
+ postcss: 8.4.21
+ postcss-value-parser: 4.2.0
/postcss-minify-params/5.1.3_postcss@8.4.14:
resolution: {integrity: sha512-bkzpWcjykkqIujNL+EVEPOlLYi/eZ050oImVtHU7b4lFS82jPnsCb44gvC6pxaNt38Els3jWYDHTjHKf0koTgg==}
@@ -28263,6 +28516,18 @@ packages:
cssnano-utils: 3.1.0_postcss@8.4.20
postcss: 8.4.20
postcss-value-parser: 4.2.0
+ dev: true
+
+ /postcss-minify-params/5.1.4_postcss@8.4.21:
+ resolution: {integrity: sha512-+mePA3MgdmVmv6g+30rn57USjOGSAyuxUmkfiWpzalZ8aiBkdPYjXWtHuwJGm1v5Ojy0Z0LaSYhHaLJQB0P8Jw==}
+ engines: {node: ^10 || ^12 || >=14.0}
+ peerDependencies:
+ postcss: ^8.2.15
+ dependencies:
+ browserslist: 4.21.4
+ cssnano-utils: 3.1.0_postcss@8.4.21
+ postcss: 8.4.21
+ postcss-value-parser: 4.2.0
/postcss-minify-selectors/5.2.1_postcss@8.4.14:
resolution: {integrity: sha512-nPJu7OjZJTsVUmPdm2TcaiohIwxP+v8ha9NehQ2ye9szv4orirRU3SDdtUmKH+10nzn0bAyOXZ0UEr7OpvLehg==}
@@ -28282,43 +28547,53 @@ packages:
dependencies:
postcss: 8.4.20
postcss-selector-parser: 6.0.10
+ dev: true
- /postcss-modules-extract-imports/3.0.0_postcss@8.4.20:
+ /postcss-minify-selectors/5.2.1_postcss@8.4.21:
+ resolution: {integrity: sha512-nPJu7OjZJTsVUmPdm2TcaiohIwxP+v8ha9NehQ2ye9szv4orirRU3SDdtUmKH+10nzn0bAyOXZ0UEr7OpvLehg==}
+ engines: {node: ^10 || ^12 || >=14.0}
+ peerDependencies:
+ postcss: ^8.2.15
+ dependencies:
+ postcss: 8.4.21
+ postcss-selector-parser: 6.0.10
+
+ /postcss-modules-extract-imports/3.0.0_postcss@8.4.21:
resolution: {integrity: sha512-bdHleFnP3kZ4NYDhuGlVK+CMrQ/pqUm8bx/oGL93K6gVwiclvX5x0n76fYMKuIGKzlABOy13zsvqjb0f92TEXw==}
engines: {node: ^10 || ^12 || >= 14}
peerDependencies:
postcss: ^8.1.0
dependencies:
- postcss: 8.4.20
+ postcss: 8.4.21
- /postcss-modules-local-by-default/4.0.0_postcss@8.4.20:
+ /postcss-modules-local-by-default/4.0.0_postcss@8.4.21:
resolution: {integrity: sha512-sT7ihtmGSF9yhm6ggikHdV0hlziDTX7oFoXtuVWeDd3hHObNkcHRo9V3yg7vCAY7cONyxJC/XXCmmiHHcvX7bQ==}
engines: {node: ^10 || ^12 || >= 14}
peerDependencies:
postcss: ^8.1.0
dependencies:
- icss-utils: 5.1.0_postcss@8.4.20
- postcss: 8.4.20
+ icss-utils: 5.1.0_postcss@8.4.21
+ postcss: 8.4.21
postcss-selector-parser: 6.0.10
postcss-value-parser: 4.2.0
- /postcss-modules-scope/3.0.0_postcss@8.4.20:
+ /postcss-modules-scope/3.0.0_postcss@8.4.21:
resolution: {integrity: sha512-hncihwFA2yPath8oZ15PZqvWGkWf+XUfQgUGamS4LqoP1anQLOsOJw0vr7J7IwLpoY9fatA2qiGUGmuZL0Iqlg==}
engines: {node: ^10 || ^12 || >= 14}
peerDependencies:
postcss: ^8.1.0
dependencies:
- postcss: 8.4.20
+ postcss: 8.4.21
postcss-selector-parser: 6.0.10
- /postcss-modules-values/4.0.0_postcss@8.4.20:
+ /postcss-modules-values/4.0.0_postcss@8.4.21:
resolution: {integrity: sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==}
engines: {node: ^10 || ^12 || >= 14}
peerDependencies:
postcss: ^8.1.0
dependencies:
- icss-utils: 5.1.0_postcss@8.4.20
- postcss: 8.4.20
+ icss-utils: 5.1.0_postcss@8.4.21
+ postcss: 8.4.21
/postcss-nested/5.0.6_postcss@8.4.14:
resolution: {integrity: sha512-rKqm2Fk0KbA8Vt3AdGN0FB9OBOMDVajMG6ZCf/GoHgdxUJ4sBFp0A/uMIRm+MJUdo33YXEtjqIz8u7DAp8B7DA==, registry: https://registry.npmjs.com/, tarball: https://registry.npmjs.com/postcss-nested/-/postcss-nested-5.0.6.tgz}
@@ -28356,6 +28631,15 @@ packages:
postcss: ^8.2.15
dependencies:
postcss: 8.4.20
+ dev: true
+
+ /postcss-normalize-charset/5.1.0_postcss@8.4.21:
+ resolution: {integrity: sha512-mSgUJ+pd/ldRGVx26p2wz9dNZ7ji6Pn8VWBajMXFf8jk7vUoSrZ2lt/wZR7DtlZYKesmZI680qjr2CeFF2fbUg==}
+ engines: {node: ^10 || ^12 || >=14.0}
+ peerDependencies:
+ postcss: ^8.2.15
+ dependencies:
+ postcss: 8.4.21
/postcss-normalize-display-values/5.1.0_postcss@8.4.14:
resolution: {integrity: sha512-WP4KIM4o2dazQXWmFaqMmcvsKmhdINFblgSeRgn8BJ6vxaMyaJkwAzpPpuvSIoG/rmX3M+IrRZEz2H0glrQNEA==}
@@ -28375,6 +28659,16 @@ packages:
dependencies:
postcss: 8.4.20
postcss-value-parser: 4.2.0
+ dev: true
+
+ /postcss-normalize-display-values/5.1.0_postcss@8.4.21:
+ resolution: {integrity: sha512-WP4KIM4o2dazQXWmFaqMmcvsKmhdINFblgSeRgn8BJ6vxaMyaJkwAzpPpuvSIoG/rmX3M+IrRZEz2H0glrQNEA==}
+ engines: {node: ^10 || ^12 || >=14.0}
+ peerDependencies:
+ postcss: ^8.2.15
+ dependencies:
+ postcss: 8.4.21
+ postcss-value-parser: 4.2.0
/postcss-normalize-positions/5.1.1_postcss@8.4.14:
resolution: {integrity: sha512-6UpCb0G4eofTCQLFVuI3EVNZzBNPiIKcA1AKVka+31fTVySphr3VUgAIULBhxZkKgwLImhzMR2Bw1ORK+37INg==}
@@ -28394,6 +28688,16 @@ packages:
dependencies:
postcss: 8.4.20
postcss-value-parser: 4.2.0
+ dev: true
+
+ /postcss-normalize-positions/5.1.1_postcss@8.4.21:
+ resolution: {integrity: sha512-6UpCb0G4eofTCQLFVuI3EVNZzBNPiIKcA1AKVka+31fTVySphr3VUgAIULBhxZkKgwLImhzMR2Bw1ORK+37INg==}
+ engines: {node: ^10 || ^12 || >=14.0}
+ peerDependencies:
+ postcss: ^8.2.15
+ dependencies:
+ postcss: 8.4.21
+ postcss-value-parser: 4.2.0
/postcss-normalize-repeat-style/5.1.1_postcss@8.4.14:
resolution: {integrity: sha512-mFpLspGWkQtBcWIRFLmewo8aC3ImN2i/J3v8YCFUwDnPu3Xz4rLohDO26lGjwNsQxB3YF0KKRwspGzE2JEuS0g==}
@@ -28413,6 +28717,16 @@ packages:
dependencies:
postcss: 8.4.20
postcss-value-parser: 4.2.0
+ dev: true
+
+ /postcss-normalize-repeat-style/5.1.1_postcss@8.4.21:
+ resolution: {integrity: sha512-mFpLspGWkQtBcWIRFLmewo8aC3ImN2i/J3v8YCFUwDnPu3Xz4rLohDO26lGjwNsQxB3YF0KKRwspGzE2JEuS0g==}
+ engines: {node: ^10 || ^12 || >=14.0}
+ peerDependencies:
+ postcss: ^8.2.15
+ dependencies:
+ postcss: 8.4.21
+ postcss-value-parser: 4.2.0
/postcss-normalize-string/5.1.0_postcss@8.4.14:
resolution: {integrity: sha512-oYiIJOf4T9T1N4i+abeIc7Vgm/xPCGih4bZz5Nm0/ARVJ7K6xrDlLwvwqOydvyL3RHNf8qZk6vo3aatiw/go3w==}
@@ -28432,6 +28746,16 @@ packages:
dependencies:
postcss: 8.4.20
postcss-value-parser: 4.2.0
+ dev: true
+
+ /postcss-normalize-string/5.1.0_postcss@8.4.21:
+ resolution: {integrity: sha512-oYiIJOf4T9T1N4i+abeIc7Vgm/xPCGih4bZz5Nm0/ARVJ7K6xrDlLwvwqOydvyL3RHNf8qZk6vo3aatiw/go3w==}
+ engines: {node: ^10 || ^12 || >=14.0}
+ peerDependencies:
+ postcss: ^8.2.15
+ dependencies:
+ postcss: 8.4.21
+ postcss-value-parser: 4.2.0
/postcss-normalize-timing-functions/5.1.0_postcss@8.4.14:
resolution: {integrity: sha512-DOEkzJ4SAXv5xkHl0Wa9cZLF3WCBhF3o1SKVxKQAa+0pYKlueTpCgvkFAHfk+Y64ezX9+nITGrDZeVGgITJXjg==}
@@ -28451,6 +28775,16 @@ packages:
dependencies:
postcss: 8.4.20
postcss-value-parser: 4.2.0
+ dev: true
+
+ /postcss-normalize-timing-functions/5.1.0_postcss@8.4.21:
+ resolution: {integrity: sha512-DOEkzJ4SAXv5xkHl0Wa9cZLF3WCBhF3o1SKVxKQAa+0pYKlueTpCgvkFAHfk+Y64ezX9+nITGrDZeVGgITJXjg==}
+ engines: {node: ^10 || ^12 || >=14.0}
+ peerDependencies:
+ postcss: ^8.2.15
+ dependencies:
+ postcss: 8.4.21
+ postcss-value-parser: 4.2.0
/postcss-normalize-unicode/5.1.0_postcss@8.4.14:
resolution: {integrity: sha512-J6M3MizAAZ2dOdSjy2caayJLQT8E8K9XjLce8AUQMwOrCvjCHv24aLC/Lps1R1ylOfol5VIDMaM/Lo9NGlk1SQ==}
@@ -28483,6 +28817,17 @@ packages:
browserslist: 4.21.4
postcss: 8.4.20
postcss-value-parser: 4.2.0
+ dev: true
+
+ /postcss-normalize-unicode/5.1.1_postcss@8.4.21:
+ resolution: {integrity: sha512-qnCL5jzkNUmKVhZoENp1mJiGNPcsJCs1aaRmURmeJGES23Z/ajaln+EPTD+rBeNkSryI+2WTdW+lwcVdOikrpA==}
+ engines: {node: ^10 || ^12 || >=14.0}
+ peerDependencies:
+ postcss: ^8.2.15
+ dependencies:
+ browserslist: 4.21.4
+ postcss: 8.4.21
+ postcss-value-parser: 4.2.0
/postcss-normalize-url/5.1.0_postcss@8.4.14:
resolution: {integrity: sha512-5upGeDO+PVthOxSmds43ZeMeZfKH+/DKgGRD7TElkkyS46JXAUhMzIKiCa7BabPeIy3AQcTkXwVVN7DbqsiCew==}
@@ -28504,6 +28849,17 @@ packages:
normalize-url: 6.1.0
postcss: 8.4.20
postcss-value-parser: 4.2.0
+ dev: true
+
+ /postcss-normalize-url/5.1.0_postcss@8.4.21:
+ resolution: {integrity: sha512-5upGeDO+PVthOxSmds43ZeMeZfKH+/DKgGRD7TElkkyS46JXAUhMzIKiCa7BabPeIy3AQcTkXwVVN7DbqsiCew==}
+ engines: {node: ^10 || ^12 || >=14.0}
+ peerDependencies:
+ postcss: ^8.2.15
+ dependencies:
+ normalize-url: 6.1.0
+ postcss: 8.4.21
+ postcss-value-parser: 4.2.0
/postcss-normalize-whitespace/5.1.1_postcss@8.4.14:
resolution: {integrity: sha512-83ZJ4t3NUDETIHTa3uEg6asWjSBYL5EdkVB0sDncx9ERzOKBVJIUeDO9RyA9Zwtig8El1d79HBp0JEi8wvGQnA==}
@@ -28523,6 +28879,16 @@ packages:
dependencies:
postcss: 8.4.20
postcss-value-parser: 4.2.0
+ dev: true
+
+ /postcss-normalize-whitespace/5.1.1_postcss@8.4.21:
+ resolution: {integrity: sha512-83ZJ4t3NUDETIHTa3uEg6asWjSBYL5EdkVB0sDncx9ERzOKBVJIUeDO9RyA9Zwtig8El1d79HBp0JEi8wvGQnA==}
+ engines: {node: ^10 || ^12 || >=14.0}
+ peerDependencies:
+ postcss: ^8.2.15
+ dependencies:
+ postcss: 8.4.21
+ postcss-value-parser: 4.2.0
/postcss-ordered-values/5.1.3_postcss@8.4.14:
resolution: {integrity: sha512-9UO79VUhPwEkzbb3RNpqqghc6lcYej1aveQteWY+4POIwlqkYE21HKWaLDF6lWNuqCobEAyTovVhtI32Rbv2RQ==}
@@ -28544,14 +28910,25 @@ packages:
cssnano-utils: 3.1.0_postcss@8.4.20
postcss: 8.4.20
postcss-value-parser: 4.2.0
+ dev: true
- /postcss-reduce-idents/5.2.0_postcss@8.4.20:
+ /postcss-ordered-values/5.1.3_postcss@8.4.21:
+ resolution: {integrity: sha512-9UO79VUhPwEkzbb3RNpqqghc6lcYej1aveQteWY+4POIwlqkYE21HKWaLDF6lWNuqCobEAyTovVhtI32Rbv2RQ==}
+ engines: {node: ^10 || ^12 || >=14.0}
+ peerDependencies:
+ postcss: ^8.2.15
+ dependencies:
+ cssnano-utils: 3.1.0_postcss@8.4.21
+ postcss: 8.4.21
+ postcss-value-parser: 4.2.0
+
+ /postcss-reduce-idents/5.2.0_postcss@8.4.21:
resolution: {integrity: sha512-BTrLjICoSB6gxbc58D5mdBK8OhXRDqud/zodYfdSi52qvDHdMwk+9kB9xsM8yJThH/sZU5A6QVSmMmaN001gIg==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.20
+ postcss: 8.4.21
postcss-value-parser: 4.2.0
dev: true
@@ -28586,6 +28963,17 @@ packages:
browserslist: 4.21.4
caniuse-api: 3.0.0
postcss: 8.4.20
+ dev: true
+
+ /postcss-reduce-initial/5.1.1_postcss@8.4.21:
+ resolution: {integrity: sha512-//jeDqWcHPuXGZLoolFrUXBDyuEGbr9S2rMo19bkTIjBQ4PqkaO+oI8wua5BOUxpfi97i3PCoInsiFIEBfkm9w==}
+ engines: {node: ^10 || ^12 || >=14.0}
+ peerDependencies:
+ postcss: ^8.2.15
+ dependencies:
+ browserslist: 4.21.4
+ caniuse-api: 3.0.0
+ postcss: 8.4.21
/postcss-reduce-transforms/5.1.0_postcss@8.4.14:
resolution: {integrity: sha512-2fbdbmgir5AvpW9RLtdONx1QoYG2/EtqpNQbFASDlixBbAYuTcJ0dECwlqNqH7VbaUnEnh8SrxOe2sRIn24XyQ==}
@@ -28605,6 +28993,16 @@ packages:
dependencies:
postcss: 8.4.20
postcss-value-parser: 4.2.0
+ dev: true
+
+ /postcss-reduce-transforms/5.1.0_postcss@8.4.21:
+ resolution: {integrity: sha512-2fbdbmgir5AvpW9RLtdONx1QoYG2/EtqpNQbFASDlixBbAYuTcJ0dECwlqNqH7VbaUnEnh8SrxOe2sRIn24XyQ==}
+ engines: {node: ^10 || ^12 || >=14.0}
+ peerDependencies:
+ postcss: ^8.2.15
+ dependencies:
+ postcss: 8.4.21
+ postcss-value-parser: 4.2.0
/postcss-reporter/7.0.5_postcss@8.4.14:
resolution: {integrity: sha512-glWg7VZBilooZGOFPhN9msJ3FQs19Hie7l5a/eE6WglzYqVeH3ong3ShFcp9kDWJT1g2Y/wd59cocf9XxBtkWA==}
@@ -28624,13 +29022,13 @@ packages:
cssesc: 3.0.0
util-deprecate: 1.0.2
- /postcss-sort-media-queries/4.2.1_postcss@8.4.20:
+ /postcss-sort-media-queries/4.2.1_postcss@8.4.21:
resolution: {integrity: sha512-9VYekQalFZ3sdgcTjXMa0dDjsfBVHXlraYJEMiOJ/2iMmI2JGCMavP16z3kWOaRu8NSaJCTgVpB/IVpH5yT9YQ==}
engines: {node: '>=10.0.0'}
peerDependencies:
postcss: ^8.4.4
dependencies:
- postcss: 8.4.20
+ postcss: 8.4.21
sort-css-media-queries: 2.0.4
dev: true
@@ -28654,6 +29052,17 @@ packages:
postcss: 8.4.20
postcss-value-parser: 4.2.0
svgo: 2.8.0
+ dev: true
+
+ /postcss-svgo/5.1.0_postcss@8.4.21:
+ resolution: {integrity: sha512-D75KsH1zm5ZrHyxPakAxJWtkyXew5qwS70v56exwvw542d9CRtTo78K0WeFxZB4G7JXKKMbEZtZayTGdIky/eA==}
+ engines: {node: ^10 || ^12 || >=14.0}
+ peerDependencies:
+ postcss: ^8.2.15
+ dependencies:
+ postcss: 8.4.21
+ postcss-value-parser: 4.2.0
+ svgo: 2.8.0
/postcss-unique-selectors/5.1.1_postcss@8.4.14:
resolution: {integrity: sha512-5JiODlELrz8L2HwxfPnhOWZYWDxVHWL83ufOv84NrcgipI7TaeRsatAhK4Tr2/ZiYldpK/wBvw5BD3qfaK96GA==}
@@ -28673,6 +29082,16 @@ packages:
dependencies:
postcss: 8.4.20
postcss-selector-parser: 6.0.10
+ dev: true
+
+ /postcss-unique-selectors/5.1.1_postcss@8.4.21:
+ resolution: {integrity: sha512-5JiODlELrz8L2HwxfPnhOWZYWDxVHWL83ufOv84NrcgipI7TaeRsatAhK4Tr2/ZiYldpK/wBvw5BD3qfaK96GA==}
+ engines: {node: ^10 || ^12 || >=14.0}
+ peerDependencies:
+ postcss: ^8.2.15
+ dependencies:
+ postcss: 8.4.21
+ postcss-selector-parser: 6.0.10
/postcss-url/10.1.3_postcss@8.4.20:
resolution: {integrity: sha512-FUzyxfI5l2tKmXdYc6VTu3TWZsInayEKPbiyW+P6vmmIrrb4I6CGX0BFoewgYHLK+oIL5FECEK02REYRpBvUCw==}
@@ -28690,13 +29109,13 @@ packages:
/postcss-value-parser/4.2.0:
resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==}
- /postcss-zindex/5.1.0_postcss@8.4.20:
+ /postcss-zindex/5.1.0_postcss@8.4.21:
resolution: {integrity: sha512-fgFMf0OtVSBR1va1JNHYgMxYk73yhn/qb4uQDq1DLGYolz8gHCyr/sesEuGUaYs58E3ZJRcpoGuPVoB7Meiq9A==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.20
+ postcss: 8.4.21
dev: true
/postcss/8.4.14:
@@ -28723,6 +29142,15 @@ packages:
nanoid: 3.3.4
picocolors: 1.0.0
source-map-js: 1.0.2
+ dev: true
+
+ /postcss/8.4.21:
+ resolution: {integrity: sha512-tP7u/Sn/dVxK2NnruI4H9BG+x+Wxz6oeZ1cJ8P6G/PZY0IKk4k/63TDsQf2kQq3+qoJeLm2kIBUNlZe3zgb4Zg==}
+ engines: {node: ^10 || ^12 || >=14}
+ dependencies:
+ nanoid: 3.3.4
+ picocolors: 1.0.0
+ source-map-js: 1.0.2
/postgres-array/2.0.0:
resolution: {integrity: sha512-VpZrUqU5A69eQyW2c5CA1jtLecCsN2U/bD6VilrFDWq5+5UIEVO7nazS3TEcHf1zuPYO/sqGvUvW62g86RXZuA==}
@@ -29549,7 +29977,7 @@ packages:
react: ^16.6.0 || ^17.0.0 || ^18.0.0
react-dom: ^16.6.0 || ^17.0.0 || ^18.0.0
dependencies:
- '@babel/runtime': 7.20.7
+ '@babel/runtime': 7.20.13
invariant: 2.2.4
prop-types: 15.8.1
react: 18.2.0
@@ -29597,7 +30025,7 @@ packages:
react-loadable: '*'
webpack: '>=4.41.1 || 5.x'
dependencies:
- '@babel/runtime': 7.20.7
+ '@babel/runtime': 7.20.13
react-loadable: /@docusaurus/react-loadable/5.5.2_react@18.2.0
webpack: 5.73.0
dev: true
@@ -29621,7 +30049,7 @@ packages:
react: '>=15'
react-router: '>=5'
dependencies:
- '@babel/runtime': 7.20.7
+ '@babel/runtime': 7.20.13
react: 18.2.0
react-router: 5.3.3_react@18.2.0
dev: true
@@ -29631,7 +30059,7 @@ packages:
peerDependencies:
react: '>=15'
dependencies:
- '@babel/runtime': 7.20.7
+ '@babel/runtime': 7.20.13
history: 4.10.1
loose-envify: 1.4.0
prop-types: 15.8.1
@@ -29646,7 +30074,7 @@ packages:
peerDependencies:
react: '>=15'
dependencies:
- '@babel/runtime': 7.20.7
+ '@babel/runtime': 7.20.13
history: 4.10.1
hoist-non-react-statics: 3.3.2
loose-envify: 1.4.0
@@ -29679,7 +30107,7 @@ packages:
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0
dependencies:
- '@babel/runtime': 7.20.7
+ '@babel/runtime': 7.20.13
react: 18.2.0
use-composed-ref: 1.3.0_react@18.2.0
use-latest: 1.2.1_react@18.2.0
@@ -29826,18 +30254,18 @@ packages:
redis-errors: 1.2.0
dev: true
- /redux-thunk/2.4.2_redux@4.2.0:
+ /redux-thunk/2.4.2_redux@4.2.1:
resolution: {integrity: sha512-+P3TjtnP0k/FEjcBL5FZpoovtvrTNT/UXd4/sluaSyrURlSlhLSzEdfsTBW7WsKB6yPvgd7q/iZPICFjW4o57Q==}
peerDependencies:
redux: ^4
dependencies:
- redux: 4.2.0
+ redux: 4.2.1
dev: false
- /redux/4.2.0:
- resolution: {integrity: sha512-oSBmcKKIuIR4ME29/AeNUnl5L+hvBq7OaJWzaptTQJAntaPvxIJqfnjbaEiCzzaIz+XmVILfqAM3Ob0aXLPfjA==}
+ /redux/4.2.1:
+ resolution: {integrity: sha512-LAUYz4lc+Do8/g7aeRa8JkyDErK6ekstQaqWQrNRW//MY1TvCEpMtpTWvlQ+FPbWCx+Xixu/6SHt5N0HR+SB4w==}
dependencies:
- '@babel/runtime': 7.20.7
+ '@babel/runtime': 7.20.13
dev: false
/reflect-metadata/0.1.13:
@@ -29868,7 +30296,7 @@ packages:
/regenerator-transform/0.15.0:
resolution: {integrity: sha512-LsrGtPmbYg19bcPHwdtmXwbW+TqNvtY4riE3P83foeHRroMbH6/2ddFBfab3t7kbzc7v7p4wbkIecHImqt0QNg==}
dependencies:
- '@babel/runtime': 7.20.7
+ '@babel/runtime': 7.20.13
/regexp.prototype.flags/1.4.3:
resolution: {integrity: sha512-fjggEOO3slI6Wvgjwflkc4NFRCTZAu5CnNfBd5qOMYhWdn67nJBBu34/TkD++eeFmd8C9r9jfXJ27+nSiRkSUA==}
@@ -29958,7 +30386,7 @@ packages:
/relay-runtime/12.0.0:
resolution: {integrity: sha512-QU6JKr1tMsry22DXNy9Whsq5rmvwr3LSZiiWV/9+DFpuTWvp+WFhobWMc8TC4OjKFfNhEZy7mOiqUAn5atQtug==}
dependencies:
- '@babel/runtime': 7.20.7
+ '@babel/runtime': 7.20.13
fbjs: 3.0.4
invariant: 2.2.4
transitivePeerDependencies:
@@ -29977,14 +30405,6 @@ packages:
resolution: {integrity: sha512-3Clt8ZMH75Ayjp9q4CorNeyjwIxHFcTkaektplKGl2A1jNGEUey8cKL0ZC5vJwfcD5GFGsNLImLG/NGzWIzoMQ==}
dev: true
- /remark-github/10.1.0:
- resolution: {integrity: sha512-q0BTFb41N6/uXQVkxRwLRTFRfLFPYP+8li26Js5XC0GKritCSaxrftd+t+8sfN+1i9BtmJPUKoS7CZwtccj0Fg==}
- dependencies:
- mdast-util-find-and-replace: 1.1.1
- mdast-util-to-string: 1.1.0
- unist-util-visit: 2.0.3
- dev: false
-
/remark-mdx/1.6.22:
resolution: {integrity: sha512-phMHBJgeV76uyFkH4rvzCftLfKCr2RZuF+/gmVcaKrpsihyzmhXjA0BEMDaPTXG5y8qZOKPVo83NAOX01LPnOQ==}
dependencies:
@@ -30351,7 +30771,7 @@ packages:
dependencies:
find-up: 5.0.0
picocolors: 1.0.0
- postcss: 8.4.20
+ postcss: 8.4.21
strip-json-comments: 3.1.1
dev: true
@@ -30781,12 +31201,12 @@ packages:
rechoir: 0.6.2
dev: true
- /shiki/0.11.1:
- resolution: {integrity: sha512-EugY9VASFuDqOexOgXR18ZV+TbFrQHeCpEYaXamO+SZlsnT/2LxuLBX25GGtIrwaEVFXUAbUQ601SWE2rMwWHA==}
+ /shiki/0.12.1:
+ resolution: {integrity: sha512-aieaV1m349rZINEBkjxh2QbBvFFQOlgqYTNtCal82hHj4dDZ76oMlQIX+C7ryerBTDiga3e5NfH6smjdJ02BbQ==}
dependencies:
jsonc-parser: 3.2.0
vscode-oniguruma: 1.7.0
- vscode-textmate: 6.0.0
+ vscode-textmate: 8.0.0
dev: true
/side-channel/1.0.4:
@@ -30821,6 +31241,7 @@ packages:
/simple-swizzle/0.2.2:
resolution: {integrity: sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg==}
+ requiresBuild: true
dependencies:
is-arrayish: 0.3.2
@@ -31011,7 +31432,7 @@ packages:
peerDependencies:
solid-js: ^1.3
dependencies:
- '@babel/generator': 7.20.7
+ '@babel/generator': 7.20.14
'@babel/helper-module-imports': 7.18.6
'@babel/types': 7.20.7
solid-js: 1.6.6
@@ -31567,6 +31988,7 @@ packages:
/strip-json-comments/2.0.1:
resolution: {integrity: sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==}
engines: {node: '>=0.10.0'}
+ requiresBuild: true
/strip-json-comments/3.1.1:
resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==}
@@ -31661,8 +32083,8 @@ packages:
react: 18.2.0
dev: false
- /stylehacks/5.1.0_postcss@8.4.14:
- resolution: {integrity: sha512-SzLmvHQTrIWfSgljkQCw2++C9+Ne91d/6Sp92I8c5uHTcy/PgeHamwITIbBW9wnFTY/3ZfSXR9HIL6Ikqmcu6Q==}
+ /stylehacks/5.1.1_postcss@8.4.14:
+ resolution: {integrity: sha512-sBpcd5Hx7G6seo7b1LkpttvTz7ikD0LlH5RmdcBNb6fFR0Fl7LQwHDFr300q4cwUqi+IYrFGmsIHieMBfnN/Bw==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
@@ -31672,17 +32094,6 @@ packages:
postcss-selector-parser: 6.0.10
dev: true
- /stylehacks/5.1.0_postcss@8.4.20:
- resolution: {integrity: sha512-SzLmvHQTrIWfSgljkQCw2++C9+Ne91d/6Sp92I8c5uHTcy/PgeHamwITIbBW9wnFTY/3ZfSXR9HIL6Ikqmcu6Q==}
- engines: {node: ^10 || ^12 || >=14.0}
- peerDependencies:
- postcss: ^8.2.15
- dependencies:
- browserslist: 4.21.4
- postcss: 8.4.20
- postcss-selector-parser: 6.0.10
- dev: true
-
/stylehacks/5.1.1_postcss@8.4.20:
resolution: {integrity: sha512-sBpcd5Hx7G6seo7b1LkpttvTz7ikD0LlH5RmdcBNb6fFR0Fl7LQwHDFr300q4cwUqi+IYrFGmsIHieMBfnN/Bw==}
engines: {node: ^10 || ^12 || >=14.0}
@@ -31692,6 +32103,17 @@ packages:
browserslist: 4.21.4
postcss: 8.4.20
postcss-selector-parser: 6.0.10
+ dev: true
+
+ /stylehacks/5.1.1_postcss@8.4.21:
+ resolution: {integrity: sha512-sBpcd5Hx7G6seo7b1LkpttvTz7ikD0LlH5RmdcBNb6fFR0Fl7LQwHDFr300q4cwUqi+IYrFGmsIHieMBfnN/Bw==}
+ engines: {node: ^10 || ^12 || >=14.0}
+ peerDependencies:
+ postcss: ^8.2.15
+ dependencies:
+ browserslist: 4.21.4
+ postcss: 8.4.21
+ postcss-selector-parser: 6.0.10
/stylis/4.1.3:
resolution: {integrity: sha512-GP6WDNWf+o403jrEp9c5jibKavrtLW+/qYGhFxFrG8maXhwTBI7gLLhiBb0o7uFccWN+EOS9aMO6cGHWAO07OA==}
@@ -32822,28 +33244,25 @@ packages:
resolution: {integrity: sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==}
dev: false
- /typedoc-plugin-markdown/3.14.0_p7xjg2asbi3h7h4efxnoor54kq_typedoc@0.23.22:
- resolution: {integrity: sha512-UyQLkLRkfTFhLdhSf3RRpA3nNInGn+k6sll2vRXjflaMNwQAAiB61SYbisNZTg16t4K1dt1bPQMMGLrxS0GZ0Q==}
+ /typedoc-plugin-markdown/4.0.0-next.2_typedoc@0.23.24:
+ resolution: {integrity: sha512-5Uz3/Wq2syMKh1OiLxqrj7GXz0vwfxjJiyRW3QATrbpwTiRY+5v5n735+FgR5NQyLSoANGqAwMmSxpVnvFqamA==}
peerDependencies:
typedoc: '>=0.23.0'
dependencies:
- handlebars: 4.7.7
- typedoc: 0.23.22_typescript@4.9.4
+ typedoc: 0.23.24
dev: true
- patched: true
- /typedoc/0.23.22_typescript@4.9.4:
- resolution: {integrity: sha512-5sJkjK60xp8A7YpcYniu3+Wf0QcgojEnhzHuCN+CkdpQkKRhOspon/9+sGTkGI8kjVkZs3KHrhltpQyVhRMVfw==}
+ /typedoc/0.23.24:
+ resolution: {integrity: sha512-bfmy8lNQh+WrPYcJbtjQ6JEEsVl/ce1ZIXyXhyW+a1vFrjO39t6J8sL/d6FfAGrJTc7McCXgk9AanYBSNvLdIA==}
engines: {node: '>= 14.14'}
hasBin: true
peerDependencies:
typescript: 4.6.x || 4.7.x || 4.8.x || 4.9.x
dependencies:
lunr: 2.3.9
- marked: 4.2.4
- minimatch: 5.1.0
- shiki: 0.11.1
- typescript: 4.9.4
+ marked: 4.2.12
+ minimatch: 5.1.6
+ shiki: 0.12.1
dev: true
/typeorm-naming-strategies/4.1.0_typeorm@0.3.7:
@@ -33469,7 +33888,7 @@ packages:
optional: true
dependencies:
file-loader: 6.2.0_webpack@5.73.0
- loader-utils: 2.0.2
+ loader-utils: 2.0.4
mime-types: 2.1.35
schema-utils: 3.1.1
webpack: 5.73.0
@@ -33486,7 +33905,7 @@ packages:
optional: true
dependencies:
file-loader: 6.2.0_webpack@5.75.0
- loader-utils: 2.0.2
+ loader-utils: 2.0.4
mime-types: 2.1.35
schema-utils: 3.1.1
webpack: 5.75.0
@@ -33609,8 +34028,8 @@ packages:
resolution: {integrity: sha512-NOJ6JZCAWr0zlxZt+xqCHNTEKOsrks2HQd4MqhP1qy4z1SkbEP467eNx6TgDKXMvUOb+OENfJCZwM+16n7fRfw==}
dev: true
- /value-or-promise/1.0.11:
- resolution: {integrity: sha512-41BrgH+dIbCFXClcSapVs5M6GkENd3gQOJpEfPDNa71LsUGMXDL0jMWpI/Rh7WhX+Aalfz2TTS3Zt5pUsbnhLg==}
+ /value-or-promise/1.0.12:
+ resolution: {integrity: sha512-Z6Uz+TYwEqE7ZN50gwn+1LCVo9ZVrpxRPOhOLnncYkY1ZzOYtrX8Fwf/rFktZ8R5mJms6EZf5TqNOMeZmnPq9Q==}
engines: {node: '>=12'}
dev: false
@@ -33787,7 +34206,7 @@ packages:
optional: true
dependencies:
esbuild: 0.15.16
- postcss: 8.4.20
+ postcss: 8.4.21
resolve: 1.22.1
rollup: 2.79.1
optionalDependencies:
@@ -33975,8 +34394,8 @@ packages:
resolution: {integrity: sha512-L9WMGRfrjOhgHSdOYgCt/yRMsXzLDJSL7BPrOZt73gU0iWO4mpqzqQzOz5srxqTvMBaR0XZTSrVWo4j55Rc6cA==}
dev: true
- /vscode-textmate/6.0.0:
- resolution: {integrity: sha512-gu73tuZfJgu+mvCSy4UZwd2JXykjK9zAZsfmDeut5dx/1a7FeTk0XwJsSuqQn+cuMCGVbIBfl+s53X4T19DnzQ==}
+ /vscode-textmate/8.0.0:
+ resolution: {integrity: sha512-AFbieoL7a5LMqcnOF04ji+rpXadgOXnZsxQr//r83kLPr7biP7am3g9zbaZIaBGwBRWeSvoMD4mgPdX3e4NWBg==}
dev: true
/vscode-uri/3.0.7:
@@ -34549,10 +34968,6 @@ packages:
resolution: {integrity: sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==}
engines: {node: '>=0.10.0'}
- /wordwrap/1.0.0:
- resolution: {integrity: sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q==}
- dev: true
-
/wrap-ansi/6.2.0:
resolution: {integrity: sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==}
engines: {node: '>=8'}
@@ -34716,8 +35131,8 @@ packages:
resolution: {integrity: sha512-xl/50/Cf32VsGq/1R8jJE5ajH1yMCQkpmoS10QbFZWl2Oor4H0Me64Pu2yxvsRWK3m6soJbmGfzSR7BYmDcWAA==}
dev: true
- /xstate/4.35.2:
- resolution: {integrity: sha512-5X7EyJv5OHHtGQwN7DsmCAbSnDs3Mxl1cXQ4PVaLwi+7p/RRapERnd1dFyHjYin+KQoLLfuXpl1dPBThgyIGNg==}
+ /xstate/4.35.4:
+ resolution: {integrity: sha512-mqRBYHhljP1xIItI4xnSQNHEv6CKslSM1cOGmvhmxeoDPAZgNbhSUYAL5N6DZIxRfpYY+M+bSm3mUFHD63iuvg==}
dev: false
/xtend/4.0.2:
diff --git a/turbo.json b/turbo.json
index 9f7a16d3..a88874f0 100644
--- a/turbo.json
+++ b/turbo.json
@@ -43,6 +43,10 @@
},
"@next-auth/upstash-redis-adapter#test": {
"env": ["UPSTASH_REDIS_KEY", "UPSTASH_REDIS_URL"]
+ },
+ "docs#dev": {
+ "dependsOn": ["^build"],
+ "cache": false
}
}
}