chore: update required pnpm version to >=10 (#60285)

This commit is contained in:
Oliver Eyton-Williams
2025-05-12 15:27:18 +02:00
committed by GitHub
parent 7c4ebb4671
commit 7a424171d2
19 changed files with 136 additions and 157 deletions

View File

@@ -101,7 +101,7 @@ jobs:
git status git status
echo -e '\nLOG:Building...' echo -e '\nLOG:Building...'
npm i -g pnpm@9 npm i -g pnpm@10
pnpm clean:packages pnpm clean:packages
pnpm clean:server pnpm clean:server
pnpm install pnpm install

View File

@@ -6,7 +6,7 @@
"private": true, "private": true,
"engines": { "engines": {
"node": ">=16", "node": ">=16",
"pnpm": ">=9" "pnpm": ">=10"
}, },
"repository": { "repository": {
"type": "git", "type": "git",

View File

@@ -6,7 +6,7 @@
"private": true, "private": true,
"engines": { "engines": {
"node": ">=16", "node": ">=16",
"pnpm": ">=9" "pnpm": ">=10"
}, },
"repository": { "repository": {
"type": "git", "type": "git",

View File

@@ -6,7 +6,7 @@
"private": true, "private": true,
"engines": { "engines": {
"node": ">=16", "node": ">=16",
"pnpm": ">=9" "pnpm": ">=10"
}, },
"repository": { "repository": {
"type": "git", "type": "git",

View File

@@ -2,7 +2,7 @@ FROM node:20-bookworm AS builder
RUN apt-get update && apt-get install -y jq RUN apt-get update && apt-get install -y jq
# global installs need root permissions, so have to happen before we switch to # global installs need root permissions, so have to happen before we switch to
# the node user # the node user
RUN npm i -g pnpm@9 RUN npm i -g pnpm@10
# node images create a non-root user that we can use # node images create a non-root user that we can use
USER node USER node
WORKDIR /home/node/build WORKDIR /home/node/build
@@ -45,7 +45,7 @@ COPY --chown=node:node api/ api/
COPY --chown=node:node shared/ shared/ COPY --chown=node:node shared/ shared/
# TODO: Remove once `@fastify/oauth2` is fixed # TODO: Remove once `@fastify/oauth2` is fixed
COPY --chown=node:node patches/ patches/ COPY --chown=node:node patches/ patches/
RUN npm i -g pnpm@9 RUN npm i -g pnpm@10
# Weirdly this config does not seem necessary for the new api (the same number # Weirdly this config does not seem necessary for the new api (the same number
# of deps are installed in both cases), but I'm including it just for # of deps are installed in both cases), but I'm including it just for

View File

@@ -8,6 +8,6 @@ LABEL org.opencontainers.image.source=https://github.com/freecodecamp/freecodeca
RUN bash -c 'VERSION="20" \ RUN bash -c 'VERSION="20" \
&& source $HOME/.nvm/nvm.sh && nvm install $VERSION \ && source $HOME/.nvm/nvm.sh && nvm install $VERSION \
&& nvm use $VERSION && nvm alias default $VERSION \ && nvm use $VERSION && nvm alias default $VERSION \
&& npm i -g pnpm@9 \ && npm i -g pnpm@10 \
&& echo "nvm use default &>/dev/null" >> ~/.bashrc.d/51-nvm-fix \ && echo "nvm use default &>/dev/null" >> ~/.bashrc.d/51-nvm-fix \
&& pnpm dlx playwright@1.47.1 install --with-deps chromium' && pnpm dlx playwright@1.47.1 install --with-deps chromium'

View File

@@ -5,7 +5,7 @@ ARG PROJECT_DIR=tools/screenshot-service
FROM node:20-alpine AS builder FROM node:20-alpine AS builder
ARG PROJECT_DIR ARG PROJECT_DIR
RUN npm i -g pnpm@9 RUN npm i -g pnpm@10
USER node USER node
WORKDIR /home/node/build WORKDIR /home/node/build
@@ -20,7 +20,7 @@ RUN pnpm -F=./${PROJECT_DIR} build
FROM node:20-alpine AS deps FROM node:20-alpine AS deps
ARG PROJECT_DIR ARG PROJECT_DIR
RUN npm i -g pnpm@9 RUN npm i -g pnpm@10
USER node USER node
WORKDIR /home/node/build WORKDIR /home/node/build

View File

@@ -1,7 +1,7 @@
FROM node:20-bookworm AS builder FROM node:20-bookworm AS builder
# global installs need root permissions, so have to happen before we switch to # global installs need root permissions, so have to happen before we switch to
# the node user # the node user
RUN npm i -g pnpm@9 RUN npm i -g pnpm@10
# node images create a non-root user that we can use # node images create a non-root user that we can use
USER node USER node
WORKDIR /home/node/build WORKDIR /home/node/build

View File

@@ -6,7 +6,7 @@
"private": true, "private": true,
"engines": { "engines": {
"node": ">=20", "node": ">=20",
"pnpm": ">=9" "pnpm": ">=10"
}, },
"repository": { "repository": {
"type": "git", "type": "git",
@@ -136,7 +136,7 @@
"webpack-bundle-analyzer": "4.10.1", "webpack-bundle-analyzer": "4.10.1",
"yargs": "17.7.2" "yargs": "17.7.2"
}, },
"packageManager": "pnpm@9.10.0+sha512.73a29afa36a0d092ece5271de5177ecbf8318d454ecd701343131b8ebc0c1a91c487da46ab77c8e596d6acf1461e3594ced4becedf8921b074fbd8653ed7051c", "packageManager": "pnpm@10.10.0+sha512.d615db246fe70f25dcfea6d8d73dee782ce23e2245e3c4f6f888249fb568149318637dca73c2c5c8ef2a4ca0d5657fb9567188bfab47f566d1ee6ce987815c39",
"pnpm": { "pnpm": {
"patchedDependencies": { "patchedDependencies": {
"@fastify/oauth2@7.8.1": "patches/@fastify__oauth2@7.8.1.patch", "@fastify/oauth2@7.8.1": "patches/@fastify__oauth2@7.8.1.patch",
@@ -147,6 +147,25 @@
"react-scrollable-anchor>react": "17", "react-scrollable-anchor>react": "17",
"react-scrollable-anchor>react-dom": "17" "react-scrollable-anchor>react-dom": "17"
} }
} },
"onlyBuiltDependencies": [
"@freecodecamp/ui",
"@prisma/client",
"@prisma/engines",
"core-js",
"ejs",
"es5-ext",
"esbuild",
"gatsby",
"gatsby-cli",
"gatsby-telemetry",
"lmdb",
"msgpackr-extract",
"msw",
"nodemon",
"prisma",
"puppeteer",
"sharp"
]
} }
} }

230
pnpm-lock.yaml generated
View File

@@ -6,10 +6,10 @@ settings:
patchedDependencies: patchedDependencies:
'@fastify/csrf-protection@6.4.1': '@fastify/csrf-protection@6.4.1':
hash: elxrdbqdtcfdnqaccvz7u6zxb4 hash: 4749bbb206ff56e794bd0d79806b74c530a6aee7ae7047c56b984a8a0a0fcb07
path: patches/@fastify__csrf-protection@6.4.1.patch path: patches/@fastify__csrf-protection@6.4.1.patch
'@fastify/oauth2@7.8.1': '@fastify/oauth2@7.8.1':
hash: fjqma2r6xxjavghcsvyjlkhmyy hash: b66c426494fa0b8b631bfaecba9d45b7f41b9dd25f2a78d92891921ae6fb84b2
path: patches/@fastify__oauth2@7.8.1.patch path: patches/@fastify__oauth2@7.8.1.patch
importers: importers:
@@ -169,13 +169,13 @@ importers:
version: 9.4.0 version: 9.4.0
'@fastify/csrf-protection': '@fastify/csrf-protection':
specifier: 6.4.1 specifier: 6.4.1
version: 6.4.1(patch_hash=elxrdbqdtcfdnqaccvz7u6zxb4) version: 6.4.1(patch_hash=4749bbb206ff56e794bd0d79806b74c530a6aee7ae7047c56b984a8a0a0fcb07)
'@fastify/multipart': '@fastify/multipart':
specifier: ^8.3.0 specifier: ^8.3.0
version: 8.3.1 version: 8.3.1
'@fastify/oauth2': '@fastify/oauth2':
specifier: 7.8.1 specifier: 7.8.1
version: 7.8.1(patch_hash=fjqma2r6xxjavghcsvyjlkhmyy) version: 7.8.1(patch_hash=b66c426494fa0b8b631bfaecba9d45b7f41b9dd25f2a78d92891921ae6fb84b2)
'@fastify/swagger': '@fastify/swagger':
specifier: 8.14.0 specifier: 8.14.0
version: 8.14.0 version: 8.14.0
@@ -558,34 +558,34 @@ importers:
version: 4.20.10 version: 4.20.10
gatsby: gatsby:
specifier: 3.15.0 specifier: 3.15.0
version: 3.15.0(@types/node@20.12.8)(babel-eslint@10.1.0(eslint@7.32.0))(eslint-import-resolver-typescript@3.5.5(@typescript-eslint/parser@8.23.0(eslint@9.19.0)(typescript@5.7.3))(eslint-plugin-import@2.31.0)(eslint@9.19.0))(eslint-plugin-testing-library@3.9.0(eslint@7.32.0)(typescript@5.2.2))(react-dom@17.0.2(react@17.0.2))(react@17.0.2)(typescript@5.2.2) version: 3.15.0(@types/node@20.12.8)(babel-eslint@10.1.0(eslint@7.32.0))(eslint-import-resolver-typescript@3.5.5)(eslint-plugin-testing-library@3.9.0(eslint@7.32.0)(typescript@5.2.2))(react-dom@17.0.2(react@17.0.2))(react@17.0.2)(typescript@5.2.2)
gatsby-cli: gatsby-cli:
specifier: 3.15.0 specifier: 3.15.0
version: 3.15.0 version: 3.15.0
gatsby-plugin-create-client-paths: gatsby-plugin-create-client-paths:
specifier: 3.15.0 specifier: 3.15.0
version: 3.15.0(gatsby@3.15.0(@types/node@20.12.8)(babel-eslint@10.1.0(eslint@7.32.0))(eslint-import-resolver-typescript@3.5.5(@typescript-eslint/parser@8.23.0(eslint@9.19.0)(typescript@5.7.3))(eslint-plugin-import@2.31.0)(eslint@9.19.0))(eslint-plugin-testing-library@3.9.0(eslint@7.32.0)(typescript@5.2.2))(react-dom@17.0.2(react@17.0.2))(react@17.0.2)(typescript@5.2.2)) version: 3.15.0(gatsby@3.15.0(@types/node@20.12.8)(babel-eslint@10.1.0(eslint@7.32.0))(eslint-import-resolver-typescript@3.5.5)(eslint-plugin-testing-library@3.9.0(eslint@7.32.0)(typescript@5.2.2))(react-dom@17.0.2(react@17.0.2))(react@17.0.2)(typescript@5.2.2))
gatsby-plugin-manifest: gatsby-plugin-manifest:
specifier: 3.15.0 specifier: 3.15.0
version: 3.15.0(gatsby@3.15.0(@types/node@20.12.8)(babel-eslint@10.1.0(eslint@7.32.0))(eslint-import-resolver-typescript@3.5.5(@typescript-eslint/parser@8.23.0(eslint@9.19.0)(typescript@5.7.3))(eslint-plugin-import@2.31.0)(eslint@9.19.0))(eslint-plugin-testing-library@3.9.0(eslint@7.32.0)(typescript@5.2.2))(react-dom@17.0.2(react@17.0.2))(react@17.0.2)(typescript@5.2.2))(graphql@15.8.0) version: 3.15.0(gatsby@3.15.0(@types/node@20.12.8)(babel-eslint@10.1.0(eslint@7.32.0))(eslint-import-resolver-typescript@3.5.5)(eslint-plugin-testing-library@3.9.0(eslint@7.32.0)(typescript@5.2.2))(react-dom@17.0.2(react@17.0.2))(react@17.0.2)(typescript@5.2.2))(graphql@15.8.0)
gatsby-plugin-pnpm: gatsby-plugin-pnpm:
specifier: ^1.2.10 specifier: ^1.2.10
version: 1.2.10(gatsby@3.15.0(@types/node@20.12.8)(babel-eslint@10.1.0(eslint@7.32.0))(eslint-import-resolver-typescript@3.5.5(@typescript-eslint/parser@8.23.0(eslint@9.19.0)(typescript@5.7.3))(eslint-plugin-import@2.31.0)(eslint@9.19.0))(eslint-plugin-testing-library@3.9.0(eslint@7.32.0)(typescript@5.2.2))(react-dom@17.0.2(react@17.0.2))(react@17.0.2)(typescript@5.2.2)) version: 1.2.10(gatsby@3.15.0(@types/node@20.12.8)(babel-eslint@10.1.0(eslint@7.32.0))(eslint-import-resolver-typescript@3.5.5)(eslint-plugin-testing-library@3.9.0(eslint@7.32.0)(typescript@5.2.2))(react-dom@17.0.2(react@17.0.2))(react@17.0.2)(typescript@5.2.2))
gatsby-plugin-postcss: gatsby-plugin-postcss:
specifier: 4.15.0 specifier: 4.15.0
version: 4.15.0(gatsby@3.15.0(@types/node@20.12.8)(babel-eslint@10.1.0(eslint@7.32.0))(eslint-import-resolver-typescript@3.5.5(@typescript-eslint/parser@8.23.0(eslint@9.19.0)(typescript@5.7.3))(eslint-plugin-import@2.31.0)(eslint@9.19.0))(eslint-plugin-testing-library@3.9.0(eslint@7.32.0)(typescript@5.2.2))(react-dom@17.0.2(react@17.0.2))(react@17.0.2)(typescript@5.2.2))(postcss@8.4.35)(webpack@5.90.3) version: 4.15.0(gatsby@3.15.0(@types/node@20.12.8)(babel-eslint@10.1.0(eslint@7.32.0))(eslint-import-resolver-typescript@3.5.5)(eslint-plugin-testing-library@3.9.0(eslint@7.32.0)(typescript@5.2.2))(react-dom@17.0.2(react@17.0.2))(react@17.0.2)(typescript@5.2.2))(postcss@8.4.35)(webpack@5.90.3)
gatsby-plugin-react-helmet: gatsby-plugin-react-helmet:
specifier: 4.15.0 specifier: 4.15.0
version: 4.15.0(gatsby@3.15.0(@types/node@20.12.8)(babel-eslint@10.1.0(eslint@7.32.0))(eslint-import-resolver-typescript@3.5.5(@typescript-eslint/parser@8.23.0(eslint@9.19.0)(typescript@5.7.3))(eslint-plugin-import@2.31.0)(eslint@9.19.0))(eslint-plugin-testing-library@3.9.0(eslint@7.32.0)(typescript@5.2.2))(react-dom@17.0.2(react@17.0.2))(react@17.0.2)(typescript@5.2.2))(react-helmet@6.1.0(react@17.0.2)) version: 4.15.0(gatsby@3.15.0(@types/node@20.12.8)(babel-eslint@10.1.0(eslint@7.32.0))(eslint-import-resolver-typescript@3.5.5)(eslint-plugin-testing-library@3.9.0(eslint@7.32.0)(typescript@5.2.2))(react-dom@17.0.2(react@17.0.2))(react@17.0.2)(typescript@5.2.2))(react-helmet@6.1.0(react@17.0.2))
gatsby-plugin-remove-serviceworker: gatsby-plugin-remove-serviceworker:
specifier: 1.0.0 specifier: 1.0.0
version: 1.0.0 version: 1.0.0
gatsby-source-filesystem: gatsby-source-filesystem:
specifier: 3.15.0 specifier: 3.15.0
version: 3.15.0(gatsby@3.15.0(@types/node@20.12.8)(babel-eslint@10.1.0(eslint@7.32.0))(eslint-import-resolver-typescript@3.5.5(@typescript-eslint/parser@8.23.0(eslint@9.19.0)(typescript@5.7.3))(eslint-plugin-import@2.31.0)(eslint@9.19.0))(eslint-plugin-testing-library@3.9.0(eslint@7.32.0)(typescript@5.2.2))(react-dom@17.0.2(react@17.0.2))(react@17.0.2)(typescript@5.2.2)) version: 3.15.0(gatsby@3.15.0(@types/node@20.12.8)(babel-eslint@10.1.0(eslint@7.32.0))(eslint-import-resolver-typescript@3.5.5)(eslint-plugin-testing-library@3.9.0(eslint@7.32.0)(typescript@5.2.2))(react-dom@17.0.2(react@17.0.2))(react@17.0.2)(typescript@5.2.2))
gatsby-transformer-remark: gatsby-transformer-remark:
specifier: 5.25.1 specifier: 5.25.1
version: 5.25.1(gatsby@3.15.0(@types/node@20.12.8)(babel-eslint@10.1.0(eslint@7.32.0))(eslint-import-resolver-typescript@3.5.5(@typescript-eslint/parser@8.23.0(eslint@9.19.0)(typescript@5.7.3))(eslint-plugin-import@2.31.0)(eslint@9.19.0))(eslint-plugin-testing-library@3.9.0(eslint@7.32.0)(typescript@5.2.2))(react-dom@17.0.2(react@17.0.2))(react@17.0.2)(typescript@5.2.2)) version: 5.25.1(gatsby@3.15.0(@types/node@20.12.8)(babel-eslint@10.1.0(eslint@7.32.0))(eslint-import-resolver-typescript@3.5.5)(eslint-plugin-testing-library@3.9.0(eslint@7.32.0)(typescript@5.2.2))(react-dom@17.0.2(react@17.0.2))(react@17.0.2)(typescript@5.2.2))
i18next: i18next:
specifier: 22.5.1 specifier: 22.5.1
version: 22.5.1 version: 22.5.1
@@ -826,7 +826,7 @@ importers:
version: 16.4.5 version: 16.4.5
gatsby-plugin-webpack-bundle-analyser-v2: gatsby-plugin-webpack-bundle-analyser-v2:
specifier: 1.1.32 specifier: 1.1.32
version: 1.1.32(gatsby@3.15.0(@types/node@20.12.8)(babel-eslint@10.1.0(eslint@7.32.0))(eslint-import-resolver-typescript@3.5.5(@typescript-eslint/parser@8.23.0(eslint@9.19.0)(typescript@5.7.3))(eslint-plugin-import@2.31.0)(eslint@9.19.0))(eslint-plugin-testing-library@3.9.0(eslint@7.32.0)(typescript@5.2.2))(react-dom@17.0.2(react@17.0.2))(react@17.0.2)(typescript@5.2.2)) version: 1.1.32(gatsby@3.15.0(@types/node@20.12.8)(babel-eslint@10.1.0(eslint@7.32.0))(eslint-import-resolver-typescript@3.5.5)(eslint-plugin-testing-library@3.9.0(eslint@7.32.0)(typescript@5.2.2))(react-dom@17.0.2(react@17.0.2))(react@17.0.2)(typescript@5.2.2))
i18next-fs-backend: i18next-fs-backend:
specifier: 2.3.2 specifier: 2.3.2
version: 2.3.2 version: 2.3.2
@@ -856,7 +856,7 @@ importers:
version: 13.0.4 version: 13.0.4
webpack: webpack:
specifier: 5.90.3 specifier: 5.90.3
version: 5.90.3 version: 5.90.3(webpack-cli@4.10.0)
curriculum: curriculum:
devDependencies: devDependencies:
@@ -1145,7 +1145,7 @@ importers:
version: 4.3.12 version: 4.3.12
'@types/copy-webpack-plugin': '@types/copy-webpack-plugin':
specifier: ^8.0.1 specifier: ^8.0.1
version: 8.0.1(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.1)(webpack@5.90.3)) version: 8.0.1(webpack-cli@4.10.0)
'@types/enzyme': '@types/enzyme':
specifier: 3.10.16 specifier: 3.10.16
version: 3.10.16 version: 3.10.16
@@ -1163,13 +1163,13 @@ importers:
version: 1.6.0(typescript@5.8.2) version: 1.6.0(typescript@5.8.2)
babel-loader: babel-loader:
specifier: 8.3.0 specifier: 8.3.0
version: 8.3.0(@babel/core@7.23.7)(webpack@5.90.3(webpack-cli@4.10.0)) version: 8.3.0(@babel/core@7.23.7)(webpack@5.90.3)
chai: chai:
specifier: 4.4.1 specifier: 4.4.1
version: 4.4.1 version: 4.4.1
copy-webpack-plugin: copy-webpack-plugin:
specifier: 9.1.0 specifier: 9.1.0
version: 9.1.0(webpack@5.90.3(webpack-cli@4.10.0)) version: 9.1.0(webpack@5.90.3)
enzyme: enzyme:
specifier: 3.11.0 specifier: 3.11.0
version: 3.11.0 version: 3.11.0
@@ -19173,7 +19173,7 @@ snapshots:
cookie-signature: 1.2.1 cookie-signature: 1.2.1
fastify-plugin: 4.5.1 fastify-plugin: 4.5.1
'@fastify/csrf-protection@6.4.1(patch_hash=elxrdbqdtcfdnqaccvz7u6zxb4)': '@fastify/csrf-protection@6.4.1(patch_hash=4749bbb206ff56e794bd0d79806b74c530a6aee7ae7047c56b984a8a0a0fcb07)':
dependencies: dependencies:
'@fastify/csrf': 6.2.0 '@fastify/csrf': 6.2.0
'@fastify/error': 3.4.1 '@fastify/error': 3.4.1
@@ -19202,7 +19202,7 @@ snapshots:
secure-json-parse: 2.7.0 secure-json-parse: 2.7.0
stream-wormhole: 1.1.0 stream-wormhole: 1.1.0
'@fastify/oauth2@7.8.1(patch_hash=fjqma2r6xxjavghcsvyjlkhmyy)': '@fastify/oauth2@7.8.1(patch_hash=b66c426494fa0b8b631bfaecba9d45b7f41b9dd25f2a78d92891921ae6fb84b2)':
dependencies: dependencies:
'@fastify/cookie': 9.4.0 '@fastify/cookie': 9.4.0
fastify-plugin: 4.5.1 fastify-plugin: 4.5.1
@@ -20228,7 +20228,7 @@ snapshots:
react-refresh: 0.9.0 react-refresh: 0.9.0
schema-utils: 2.7.1 schema-utils: 2.7.1
source-map: 0.7.4 source-map: 0.7.4
webpack: 5.90.3 webpack: 5.90.3(webpack-cli@4.10.0)
'@polka/url@1.0.0-next.23': {} '@polka/url@1.0.0-next.23': {}
@@ -21297,7 +21297,7 @@ snapshots:
'@types/cookiejar@2.1.2': {} '@types/cookiejar@2.1.2': {}
'@types/copy-webpack-plugin@8.0.1(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.1)(webpack@5.90.3))': '@types/copy-webpack-plugin@8.0.1(webpack-cli@4.10.0)':
dependencies: dependencies:
'@types/node': 20.8.0 '@types/node': 20.8.0
tapable: 2.2.1 tapable: 2.2.1
@@ -22148,17 +22148,17 @@ snapshots:
'@webassemblyjs/ast': 1.11.6 '@webassemblyjs/ast': 1.11.6
'@xtuc/long': 4.2.2 '@xtuc/long': 4.2.2
'@webpack-cli/configtest@1.2.0(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.1)(webpack@5.90.3))(webpack@5.90.3(webpack-cli@4.10.0))': '@webpack-cli/configtest@1.2.0(webpack-cli@4.10.0)(webpack@5.90.3)':
dependencies: dependencies:
webpack: 5.90.3(webpack-cli@4.10.0) webpack: 5.90.3(webpack-cli@4.10.0)
webpack-cli: 4.10.0(webpack-bundle-analyzer@4.10.1)(webpack@5.90.3) webpack-cli: 4.10.0(webpack-bundle-analyzer@4.10.1)(webpack@5.90.3)
'@webpack-cli/info@1.5.0(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.1)(webpack@5.90.3))': '@webpack-cli/info@1.5.0(webpack-cli@4.10.0)':
dependencies: dependencies:
envinfo: 7.10.0 envinfo: 7.10.0
webpack-cli: 4.10.0(webpack-bundle-analyzer@4.10.1)(webpack@5.90.3) webpack-cli: 4.10.0(webpack-bundle-analyzer@4.10.1)(webpack@5.90.3)
'@webpack-cli/serve@1.7.0(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.1)(webpack@5.90.3))': '@webpack-cli/serve@1.7.0(webpack-cli@4.10.0)':
dependencies: dependencies:
webpack-cli: 4.10.0(webpack-bundle-analyzer@4.10.1)(webpack@5.90.3) webpack-cli: 4.10.0(webpack-bundle-analyzer@4.10.1)(webpack@5.90.3)
@@ -22726,9 +22726,9 @@ snapshots:
loader-utils: 2.0.4 loader-utils: 2.0.4
make-dir: 3.1.0 make-dir: 3.1.0
schema-utils: 2.7.1 schema-utils: 2.7.1
webpack: 5.90.3 webpack: 5.90.3(webpack-cli@4.10.0)
babel-loader@8.3.0(@babel/core@7.23.7)(webpack@5.90.3(webpack-cli@4.10.0)): babel-loader@8.3.0(@babel/core@7.23.7)(webpack@5.90.3):
dependencies: dependencies:
'@babel/core': 7.23.7 '@babel/core': 7.23.7
find-cache-dir: 3.3.2 find-cache-dir: 3.3.2
@@ -22893,20 +22893,20 @@ snapshots:
dependencies: dependencies:
prismjs: 1.30.0 prismjs: 1.30.0
babel-plugin-remove-graphql-queries@3.15.0(@babel/core@7.23.0)(gatsby@3.15.0(@types/node@20.12.8)(babel-eslint@10.1.0(eslint@7.32.0))(eslint-import-resolver-typescript@3.5.5(@typescript-eslint/parser@8.23.0(eslint@9.19.0)(typescript@5.7.3))(eslint-plugin-import@2.31.0)(eslint@9.19.0))(eslint-plugin-testing-library@3.9.0(eslint@7.32.0)(typescript@5.2.2))(react-dom@17.0.2(react@17.0.2))(react@17.0.2)(typescript@5.2.2)): babel-plugin-remove-graphql-queries@3.15.0(@babel/core@7.23.0)(gatsby@3.15.0(@types/node@20.12.8)(babel-eslint@10.1.0(eslint@7.32.0))(eslint-import-resolver-typescript@3.5.5)(eslint-plugin-testing-library@3.9.0(eslint@7.32.0)(typescript@5.2.2))(react-dom@17.0.2(react@17.0.2))(react@17.0.2)(typescript@5.2.2)):
dependencies: dependencies:
'@babel/core': 7.23.0 '@babel/core': 7.23.0
'@babel/runtime': 7.23.9 '@babel/runtime': 7.23.9
'@babel/types': 7.23.9 '@babel/types': 7.23.9
gatsby: 3.15.0(@types/node@20.12.8)(babel-eslint@10.1.0(eslint@7.32.0))(eslint-import-resolver-typescript@3.5.5(@typescript-eslint/parser@8.23.0(eslint@9.19.0)(typescript@5.7.3))(eslint-plugin-import@2.31.0)(eslint@9.19.0))(eslint-plugin-testing-library@3.9.0(eslint@7.32.0)(typescript@5.2.2))(react-dom@17.0.2(react@17.0.2))(react@17.0.2)(typescript@5.2.2) gatsby: 3.15.0(@types/node@20.12.8)(babel-eslint@10.1.0(eslint@7.32.0))(eslint-import-resolver-typescript@3.5.5)(eslint-plugin-testing-library@3.9.0(eslint@7.32.0)(typescript@5.2.2))(react-dom@17.0.2(react@17.0.2))(react@17.0.2)(typescript@5.2.2)
gatsby-core-utils: 2.15.0 gatsby-core-utils: 2.15.0
babel-plugin-remove-graphql-queries@3.15.0(@babel/core@7.23.7)(gatsby@3.15.0(@types/node@20.12.8)(babel-eslint@10.1.0(eslint@7.32.0))(eslint-import-resolver-typescript@3.5.5(@typescript-eslint/parser@8.23.0(eslint@9.19.0)(typescript@5.7.3))(eslint-plugin-import@2.31.0)(eslint@9.19.0))(eslint-plugin-testing-library@3.9.0(eslint@7.32.0)(typescript@5.2.2))(react-dom@17.0.2(react@17.0.2))(react@17.0.2)(typescript@5.2.2)): babel-plugin-remove-graphql-queries@3.15.0(@babel/core@7.23.7)(gatsby@3.15.0(@types/node@20.12.8)(babel-eslint@10.1.0(eslint@7.32.0))(eslint-import-resolver-typescript@3.5.5)(eslint-plugin-testing-library@3.9.0(eslint@7.32.0)(typescript@5.2.2))(react-dom@17.0.2(react@17.0.2))(react@17.0.2)(typescript@5.2.2)):
dependencies: dependencies:
'@babel/core': 7.23.7 '@babel/core': 7.23.7
'@babel/runtime': 7.23.9 '@babel/runtime': 7.23.9
'@babel/types': 7.23.9 '@babel/types': 7.23.9
gatsby: 3.15.0(@types/node@20.12.8)(babel-eslint@10.1.0(eslint@7.32.0))(eslint-import-resolver-typescript@3.5.5(@typescript-eslint/parser@8.23.0(eslint@9.19.0)(typescript@5.7.3))(eslint-plugin-import@2.31.0)(eslint@9.19.0))(eslint-plugin-testing-library@3.9.0(eslint@7.32.0)(typescript@5.2.2))(react-dom@17.0.2(react@17.0.2))(react@17.0.2)(typescript@5.2.2) gatsby: 3.15.0(@types/node@20.12.8)(babel-eslint@10.1.0(eslint@7.32.0))(eslint-import-resolver-typescript@3.5.5)(eslint-plugin-testing-library@3.9.0(eslint@7.32.0)(typescript@5.2.2))(react-dom@17.0.2(react@17.0.2))(react@17.0.2)(typescript@5.2.2)
gatsby-core-utils: 2.15.0 gatsby-core-utils: 2.15.0
babel-plugin-transform-react-remove-prop-types@0.4.24: {} babel-plugin-transform-react-remove-prop-types@0.4.24: {}
@@ -23905,7 +23905,7 @@ snapshots:
copy-descriptor@0.1.1: {} copy-descriptor@0.1.1: {}
copy-webpack-plugin@9.1.0(webpack@5.90.3(webpack-cli@4.10.0)): copy-webpack-plugin@9.1.0(webpack@5.90.3):
dependencies: dependencies:
fast-glob: 3.3.1 fast-glob: 3.3.1
glob-parent: 6.0.2 glob-parent: 6.0.2
@@ -24111,7 +24111,7 @@ snapshots:
postcss-value-parser: 4.2.0 postcss-value-parser: 4.2.0
schema-utils: 3.3.0 schema-utils: 3.3.0
semver: 7.6.0 semver: 7.6.0
webpack: 5.90.3 webpack: 5.90.3(webpack-cli@4.10.0)
css-mediaquery@0.1.2: {} css-mediaquery@0.1.2: {}
@@ -24124,7 +24124,7 @@ snapshots:
schema-utils: 3.3.0 schema-utils: 3.3.0
serialize-javascript: 5.0.1 serialize-javascript: 5.0.1
source-map: 0.6.1 source-map: 0.6.1
webpack: 5.90.3 webpack: 5.90.3(webpack-cli@4.10.0)
css-select@4.3.0: css-select@4.3.0:
dependencies: dependencies:
@@ -25158,7 +25158,7 @@ snapshots:
dependencies: dependencies:
eslint: 9.19.0 eslint: 9.19.0
eslint-config-react-app@6.0.0(@typescript-eslint/eslint-plugin@4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@5.2.2))(eslint@7.32.0)(typescript@5.2.2))(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@5.2.2))(babel-eslint@10.1.0(eslint@7.32.0))(eslint-plugin-flowtype@5.10.0(eslint@7.32.0))(eslint-plugin-import@2.28.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@5.2.2))(eslint-import-resolver-typescript@3.5.5(@typescript-eslint/parser@8.23.0(eslint@9.19.0)(typescript@5.7.3))(eslint-plugin-import@2.31.0)(eslint@9.19.0))(eslint@7.32.0))(eslint-plugin-jsx-a11y@6.7.1(eslint@7.32.0))(eslint-plugin-react-hooks@4.6.0(eslint@7.32.0))(eslint-plugin-react@7.33.2(eslint@7.32.0))(eslint-plugin-testing-library@3.9.0(eslint@7.32.0)(typescript@5.2.2))(eslint@7.32.0)(typescript@5.2.2): eslint-config-react-app@6.0.0(@typescript-eslint/eslint-plugin@4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@5.2.2))(eslint@7.32.0)(typescript@5.2.2))(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@5.2.2))(babel-eslint@10.1.0(eslint@7.32.0))(eslint-plugin-flowtype@5.10.0(eslint@7.32.0))(eslint-plugin-import@2.28.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@5.2.2))(eslint-import-resolver-typescript@3.5.5)(eslint@7.32.0))(eslint-plugin-jsx-a11y@6.7.1(eslint@7.32.0))(eslint-plugin-react-hooks@4.6.0(eslint@7.32.0))(eslint-plugin-react@7.33.2(eslint@7.32.0))(eslint-plugin-testing-library@3.9.0(eslint@7.32.0)(typescript@5.2.2))(eslint@7.32.0)(typescript@5.2.2):
dependencies: dependencies:
'@typescript-eslint/eslint-plugin': 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@5.2.2))(eslint@7.32.0)(typescript@5.2.2) '@typescript-eslint/eslint-plugin': 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@5.2.2))(eslint@7.32.0)(typescript@5.2.2)
'@typescript-eslint/parser': 4.33.0(eslint@7.32.0)(typescript@5.2.2) '@typescript-eslint/parser': 4.33.0(eslint@7.32.0)(typescript@5.2.2)
@@ -25166,7 +25166,7 @@ snapshots:
confusing-browser-globals: 1.0.11 confusing-browser-globals: 1.0.11
eslint: 7.32.0 eslint: 7.32.0
eslint-plugin-flowtype: 5.10.0(eslint@7.32.0) eslint-plugin-flowtype: 5.10.0(eslint@7.32.0)
eslint-plugin-import: 2.28.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@5.2.2))(eslint-import-resolver-typescript@3.5.5(@typescript-eslint/parser@8.23.0(eslint@9.19.0)(typescript@5.7.3))(eslint-plugin-import@2.31.0)(eslint@9.19.0))(eslint@7.32.0) eslint-plugin-import: 2.28.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@5.2.2))(eslint-import-resolver-typescript@3.5.5)(eslint@7.32.0)
eslint-plugin-jsx-a11y: 6.7.1(eslint@7.32.0) eslint-plugin-jsx-a11y: 6.7.1(eslint@7.32.0)
eslint-plugin-react: 7.33.2(eslint@7.32.0) eslint-plugin-react: 7.33.2(eslint@7.32.0)
eslint-plugin-react-hooks: 4.6.0(eslint@7.32.0) eslint-plugin-react-hooks: 4.6.0(eslint@7.32.0)
@@ -25187,7 +25187,7 @@ snapshots:
debug: 4.3.4(supports-color@8.1.1) debug: 4.3.4(supports-color@8.1.1)
enhanced-resolve: 5.15.0 enhanced-resolve: 5.15.0
eslint: 9.19.0 eslint: 9.19.0
eslint-module-utils: 2.8.0(@typescript-eslint/parser@8.23.0(eslint@9.19.0)(typescript@5.7.3))(eslint-import-resolver-typescript@3.5.5(@typescript-eslint/parser@8.23.0(eslint@9.19.0)(typescript@5.7.3))(eslint-plugin-import@2.31.0)(eslint@9.19.0))(eslint@9.19.0) eslint-module-utils: 2.8.0(@typescript-eslint/parser@8.23.0(eslint@9.19.0)(typescript@5.7.3))(eslint-import-resolver-typescript@3.5.5)(eslint@9.19.0)
eslint-plugin-import: 2.31.0(@typescript-eslint/parser@8.23.0(eslint@9.19.0)(typescript@5.7.3))(eslint-import-resolver-typescript@3.5.5)(eslint@9.19.0) eslint-plugin-import: 2.31.0(@typescript-eslint/parser@8.23.0(eslint@9.19.0)(typescript@5.7.3))(eslint-import-resolver-typescript@3.5.5)(eslint@9.19.0)
get-tsconfig: 4.7.2 get-tsconfig: 4.7.2
globby: 13.2.2 globby: 13.2.2
@@ -25200,7 +25200,7 @@ snapshots:
- eslint-import-resolver-webpack - eslint-import-resolver-webpack
- supports-color - supports-color
eslint-module-utils@2.12.0(@typescript-eslint/parser@8.23.0(eslint@9.19.0)(typescript@5.7.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.5.5(@typescript-eslint/parser@8.23.0(eslint@9.19.0)(typescript@5.7.3))(eslint-plugin-import@2.31.0)(eslint@9.19.0))(eslint@9.19.0): eslint-module-utils@2.12.0(@typescript-eslint/parser@8.23.0(eslint@9.19.0)(typescript@5.7.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.5.5)(eslint@9.19.0):
dependencies: dependencies:
debug: 3.2.7(supports-color@5.5.0) debug: 3.2.7(supports-color@5.5.0)
optionalDependencies: optionalDependencies:
@@ -25211,7 +25211,7 @@ snapshots:
transitivePeerDependencies: transitivePeerDependencies:
- supports-color - supports-color
eslint-module-utils@2.8.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@5.2.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.5.5(@typescript-eslint/parser@8.23.0(eslint@9.19.0)(typescript@5.7.3))(eslint-plugin-import@2.31.0)(eslint@9.19.0))(eslint@7.32.0): eslint-module-utils@2.8.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@5.2.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.5.5)(eslint@7.32.0):
dependencies: dependencies:
debug: 3.2.7(supports-color@5.5.0) debug: 3.2.7(supports-color@5.5.0)
optionalDependencies: optionalDependencies:
@@ -25222,7 +25222,7 @@ snapshots:
transitivePeerDependencies: transitivePeerDependencies:
- supports-color - supports-color
eslint-module-utils@2.8.0(@typescript-eslint/parser@8.23.0(eslint@9.19.0)(typescript@5.7.3))(eslint-import-resolver-typescript@3.5.5(@typescript-eslint/parser@8.23.0(eslint@9.19.0)(typescript@5.7.3))(eslint-plugin-import@2.31.0)(eslint@9.19.0))(eslint@9.19.0): eslint-module-utils@2.8.0(@typescript-eslint/parser@8.23.0(eslint@9.19.0)(typescript@5.7.3))(eslint-import-resolver-typescript@3.5.5)(eslint@9.19.0):
dependencies: dependencies:
debug: 3.2.7(supports-color@5.5.0) debug: 3.2.7(supports-color@5.5.0)
optionalDependencies: optionalDependencies:
@@ -25257,7 +25257,7 @@ snapshots:
- typescript - typescript
- utf-8-validate - utf-8-validate
eslint-plugin-import@2.28.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@5.2.2))(eslint-import-resolver-typescript@3.5.5(@typescript-eslint/parser@8.23.0(eslint@9.19.0)(typescript@5.7.3))(eslint-plugin-import@2.31.0)(eslint@9.19.0))(eslint@7.32.0): eslint-plugin-import@2.28.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@5.2.2))(eslint-import-resolver-typescript@3.5.5)(eslint@7.32.0):
dependencies: dependencies:
array-includes: 3.1.7 array-includes: 3.1.7
array.prototype.findlastindex: 1.2.3 array.prototype.findlastindex: 1.2.3
@@ -25267,7 +25267,7 @@ snapshots:
doctrine: 2.1.0 doctrine: 2.1.0
eslint: 7.32.0 eslint: 7.32.0
eslint-import-resolver-node: 0.3.9 eslint-import-resolver-node: 0.3.9
eslint-module-utils: 2.8.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@5.2.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.5.5(@typescript-eslint/parser@8.23.0(eslint@9.19.0)(typescript@5.7.3))(eslint-plugin-import@2.31.0)(eslint@9.19.0))(eslint@7.32.0) eslint-module-utils: 2.8.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@5.2.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.5.5)(eslint@7.32.0)
has: 1.0.3 has: 1.0.3
is-core-module: 2.13.1 is-core-module: 2.13.1
is-glob: 4.0.3 is-glob: 4.0.3
@@ -25295,7 +25295,7 @@ snapshots:
doctrine: 2.1.0 doctrine: 2.1.0
eslint: 9.19.0 eslint: 9.19.0
eslint-import-resolver-node: 0.3.9 eslint-import-resolver-node: 0.3.9
eslint-module-utils: 2.12.0(@typescript-eslint/parser@8.23.0(eslint@9.19.0)(typescript@5.7.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.5.5(@typescript-eslint/parser@8.23.0(eslint@9.19.0)(typescript@5.7.3))(eslint-plugin-import@2.31.0)(eslint@9.19.0))(eslint@9.19.0) eslint-module-utils: 2.12.0(@typescript-eslint/parser@8.23.0(eslint@9.19.0)(typescript@5.7.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.5.5)(eslint@9.19.0)
hasown: 2.0.2 hasown: 2.0.2
is-core-module: 2.16.1 is-core-module: 2.16.1
is-glob: 4.0.3 is-glob: 4.0.3
@@ -25481,7 +25481,7 @@ snapshots:
micromatch: 4.0.8 micromatch: 4.0.8
normalize-path: 3.0.0 normalize-path: 3.0.0
schema-utils: 3.3.0 schema-utils: 3.3.0
webpack: 5.90.3 webpack: 5.90.3(webpack-cli@4.10.0)
eslint@7.32.0: eslint@7.32.0:
dependencies: dependencies:
@@ -26021,7 +26021,7 @@ snapshots:
dependencies: dependencies:
loader-utils: 2.0.4 loader-utils: 2.0.4
schema-utils: 3.3.0 schema-utils: 3.3.0
webpack: 5.90.3 webpack: 5.90.3(webpack-cli@4.10.0)
file-type@16.5.4: file-type@16.5.4:
dependencies: dependencies:
@@ -26175,7 +26175,7 @@ snapshots:
semver: 5.7.2 semver: 5.7.2
tapable: 1.1.3 tapable: 1.1.3
typescript: 5.2.2 typescript: 5.2.2
webpack: 5.90.3 webpack: 5.90.3(webpack-cli@4.10.0)
worker-rpc: 0.1.1 worker-rpc: 0.1.1
optionalDependencies: optionalDependencies:
eslint: 7.32.0 eslint: 7.32.0
@@ -26384,23 +26384,23 @@ snapshots:
lodash: 4.17.21 lodash: 4.17.21
micromatch: 4.0.8 micromatch: 4.0.8
gatsby-plugin-create-client-paths@3.15.0(gatsby@3.15.0(@types/node@20.12.8)(babel-eslint@10.1.0(eslint@7.32.0))(eslint-import-resolver-typescript@3.5.5(@typescript-eslint/parser@8.23.0(eslint@9.19.0)(typescript@5.7.3))(eslint-plugin-import@2.31.0)(eslint@9.19.0))(eslint-plugin-testing-library@3.9.0(eslint@7.32.0)(typescript@5.2.2))(react-dom@17.0.2(react@17.0.2))(react@17.0.2)(typescript@5.2.2)): gatsby-plugin-create-client-paths@3.15.0(gatsby@3.15.0(@types/node@20.12.8)(babel-eslint@10.1.0(eslint@7.32.0))(eslint-import-resolver-typescript@3.5.5)(eslint-plugin-testing-library@3.9.0(eslint@7.32.0)(typescript@5.2.2))(react-dom@17.0.2(react@17.0.2))(react@17.0.2)(typescript@5.2.2)):
dependencies: dependencies:
'@babel/runtime': 7.23.9 '@babel/runtime': 7.23.9
gatsby: 3.15.0(@types/node@20.12.8)(babel-eslint@10.1.0(eslint@7.32.0))(eslint-import-resolver-typescript@3.5.5(@typescript-eslint/parser@8.23.0(eslint@9.19.0)(typescript@5.7.3))(eslint-plugin-import@2.31.0)(eslint@9.19.0))(eslint-plugin-testing-library@3.9.0(eslint@7.32.0)(typescript@5.2.2))(react-dom@17.0.2(react@17.0.2))(react@17.0.2)(typescript@5.2.2) gatsby: 3.15.0(@types/node@20.12.8)(babel-eslint@10.1.0(eslint@7.32.0))(eslint-import-resolver-typescript@3.5.5)(eslint-plugin-testing-library@3.9.0(eslint@7.32.0)(typescript@5.2.2))(react-dom@17.0.2(react@17.0.2))(react@17.0.2)(typescript@5.2.2)
gatsby-plugin-manifest@3.15.0(gatsby@3.15.0(@types/node@20.12.8)(babel-eslint@10.1.0(eslint@7.32.0))(eslint-import-resolver-typescript@3.5.5(@typescript-eslint/parser@8.23.0(eslint@9.19.0)(typescript@5.7.3))(eslint-plugin-import@2.31.0)(eslint@9.19.0))(eslint-plugin-testing-library@3.9.0(eslint@7.32.0)(typescript@5.2.2))(react-dom@17.0.2(react@17.0.2))(react@17.0.2)(typescript@5.2.2))(graphql@15.8.0): gatsby-plugin-manifest@3.15.0(gatsby@3.15.0(@types/node@20.12.8)(babel-eslint@10.1.0(eslint@7.32.0))(eslint-import-resolver-typescript@3.5.5)(eslint-plugin-testing-library@3.9.0(eslint@7.32.0)(typescript@5.2.2))(react-dom@17.0.2(react@17.0.2))(react@17.0.2)(typescript@5.2.2))(graphql@15.8.0):
dependencies: dependencies:
'@babel/runtime': 7.23.9 '@babel/runtime': 7.23.9
gatsby: 3.15.0(@types/node@20.12.8)(babel-eslint@10.1.0(eslint@7.32.0))(eslint-import-resolver-typescript@3.5.5(@typescript-eslint/parser@8.23.0(eslint@9.19.0)(typescript@5.7.3))(eslint-plugin-import@2.31.0)(eslint@9.19.0))(eslint-plugin-testing-library@3.9.0(eslint@7.32.0)(typescript@5.2.2))(react-dom@17.0.2(react@17.0.2))(react@17.0.2)(typescript@5.2.2) gatsby: 3.15.0(@types/node@20.12.8)(babel-eslint@10.1.0(eslint@7.32.0))(eslint-import-resolver-typescript@3.5.5)(eslint-plugin-testing-library@3.9.0(eslint@7.32.0)(typescript@5.2.2))(react-dom@17.0.2(react@17.0.2))(react@17.0.2)(typescript@5.2.2)
gatsby-core-utils: 2.15.0 gatsby-core-utils: 2.15.0
gatsby-plugin-utils: 1.15.0(gatsby@3.15.0(@types/node@20.12.8)(babel-eslint@10.1.0(eslint@7.32.0))(eslint-import-resolver-typescript@3.5.5(@typescript-eslint/parser@8.23.0(eslint@9.19.0)(typescript@5.7.3))(eslint-plugin-import@2.31.0)(eslint@9.19.0))(eslint-plugin-testing-library@3.9.0(eslint@7.32.0)(typescript@5.2.2))(react-dom@17.0.2(react@17.0.2))(react@17.0.2)(typescript@5.2.2))(graphql@15.8.0) gatsby-plugin-utils: 1.15.0(gatsby@3.15.0(@types/node@20.12.8)(babel-eslint@10.1.0(eslint@7.32.0))(eslint-import-resolver-typescript@3.5.5)(eslint-plugin-testing-library@3.9.0(eslint@7.32.0)(typescript@5.2.2))(react-dom@17.0.2(react@17.0.2))(react@17.0.2)(typescript@5.2.2))(graphql@15.8.0)
semver: 7.5.4 semver: 7.5.4
sharp: 0.29.3 sharp: 0.29.3
transitivePeerDependencies: transitivePeerDependencies:
- graphql - graphql
gatsby-plugin-page-creator@3.15.0(gatsby@3.15.0(@types/node@20.12.8)(babel-eslint@10.1.0(eslint@7.32.0))(eslint-import-resolver-typescript@3.5.5(@typescript-eslint/parser@8.23.0(eslint@9.19.0)(typescript@5.7.3))(eslint-plugin-import@2.31.0)(eslint@9.19.0))(eslint-plugin-testing-library@3.9.0(eslint@7.32.0)(typescript@5.2.2))(react-dom@17.0.2(react@17.0.2))(react@17.0.2)(typescript@5.2.2))(graphql@15.8.0): gatsby-plugin-page-creator@3.15.0(gatsby@3.15.0(@types/node@20.12.8)(babel-eslint@10.1.0(eslint@7.32.0))(eslint-import-resolver-typescript@3.5.5)(eslint-plugin-testing-library@3.9.0(eslint@7.32.0)(typescript@5.2.2))(react-dom@17.0.2(react@17.0.2))(react@17.0.2)(typescript@5.2.2))(graphql@15.8.0):
dependencies: dependencies:
'@babel/runtime': 7.23.9 '@babel/runtime': 7.23.9
'@babel/traverse': 7.23.7 '@babel/traverse': 7.23.7
@@ -26408,10 +26408,10 @@ snapshots:
chokidar: 3.6.0 chokidar: 3.6.0
fs-exists-cached: 1.0.0 fs-exists-cached: 1.0.0
fs-extra: 10.1.0 fs-extra: 10.1.0
gatsby: 3.15.0(@types/node@20.12.8)(babel-eslint@10.1.0(eslint@7.32.0))(eslint-import-resolver-typescript@3.5.5(@typescript-eslint/parser@8.23.0(eslint@9.19.0)(typescript@5.7.3))(eslint-plugin-import@2.31.0)(eslint@9.19.0))(eslint-plugin-testing-library@3.9.0(eslint@7.32.0)(typescript@5.2.2))(react-dom@17.0.2(react@17.0.2))(react@17.0.2)(typescript@5.2.2) gatsby: 3.15.0(@types/node@20.12.8)(babel-eslint@10.1.0(eslint@7.32.0))(eslint-import-resolver-typescript@3.5.5)(eslint-plugin-testing-library@3.9.0(eslint@7.32.0)(typescript@5.2.2))(react-dom@17.0.2(react@17.0.2))(react@17.0.2)(typescript@5.2.2)
gatsby-core-utils: 2.15.0 gatsby-core-utils: 2.15.0
gatsby-page-utils: 1.15.0 gatsby-page-utils: 1.15.0
gatsby-plugin-utils: 1.15.0(gatsby@3.15.0(@types/node@20.12.8)(babel-eslint@10.1.0(eslint@7.32.0))(eslint-import-resolver-typescript@3.5.5(@typescript-eslint/parser@8.23.0(eslint@9.19.0)(typescript@5.7.3))(eslint-plugin-import@2.31.0)(eslint@9.19.0))(eslint-plugin-testing-library@3.9.0(eslint@7.32.0)(typescript@5.2.2))(react-dom@17.0.2(react@17.0.2))(react@17.0.2)(typescript@5.2.2))(graphql@15.8.0) gatsby-plugin-utils: 1.15.0(gatsby@3.15.0(@types/node@20.12.8)(babel-eslint@10.1.0(eslint@7.32.0))(eslint-import-resolver-typescript@3.5.5)(eslint-plugin-testing-library@3.9.0(eslint@7.32.0)(typescript@5.2.2))(react-dom@17.0.2(react@17.0.2))(react@17.0.2)(typescript@5.2.2))(graphql@15.8.0)
gatsby-telemetry: 2.15.0 gatsby-telemetry: 2.15.0
globby: 11.1.0 globby: 11.1.0
lodash: 4.17.21 lodash: 4.17.21
@@ -26420,30 +26420,30 @@ snapshots:
- graphql - graphql
- supports-color - supports-color
gatsby-plugin-pnpm@1.2.10(gatsby@3.15.0(@types/node@20.12.8)(babel-eslint@10.1.0(eslint@7.32.0))(eslint-import-resolver-typescript@3.5.5(@typescript-eslint/parser@8.23.0(eslint@9.19.0)(typescript@5.7.3))(eslint-plugin-import@2.31.0)(eslint@9.19.0))(eslint-plugin-testing-library@3.9.0(eslint@7.32.0)(typescript@5.2.2))(react-dom@17.0.2(react@17.0.2))(react@17.0.2)(typescript@5.2.2)): gatsby-plugin-pnpm@1.2.10(gatsby@3.15.0(@types/node@20.12.8)(babel-eslint@10.1.0(eslint@7.32.0))(eslint-import-resolver-typescript@3.5.5)(eslint-plugin-testing-library@3.9.0(eslint@7.32.0)(typescript@5.2.2))(react-dom@17.0.2(react@17.0.2))(react@17.0.2)(typescript@5.2.2)):
dependencies: dependencies:
gatsby: 3.15.0(@types/node@20.12.8)(babel-eslint@10.1.0(eslint@7.32.0))(eslint-import-resolver-typescript@3.5.5(@typescript-eslint/parser@8.23.0(eslint@9.19.0)(typescript@5.7.3))(eslint-plugin-import@2.31.0)(eslint@9.19.0))(eslint-plugin-testing-library@3.9.0(eslint@7.32.0)(typescript@5.2.2))(react-dom@17.0.2(react@17.0.2))(react@17.0.2)(typescript@5.2.2) gatsby: 3.15.0(@types/node@20.12.8)(babel-eslint@10.1.0(eslint@7.32.0))(eslint-import-resolver-typescript@3.5.5)(eslint-plugin-testing-library@3.9.0(eslint@7.32.0)(typescript@5.2.2))(react-dom@17.0.2(react@17.0.2))(react@17.0.2)(typescript@5.2.2)
lodash.get: 4.4.2 lodash.get: 4.4.2
lodash.uniq: 4.5.0 lodash.uniq: 4.5.0
gatsby-plugin-postcss@4.15.0(gatsby@3.15.0(@types/node@20.12.8)(babel-eslint@10.1.0(eslint@7.32.0))(eslint-import-resolver-typescript@3.5.5(@typescript-eslint/parser@8.23.0(eslint@9.19.0)(typescript@5.7.3))(eslint-plugin-import@2.31.0)(eslint@9.19.0))(eslint-plugin-testing-library@3.9.0(eslint@7.32.0)(typescript@5.2.2))(react-dom@17.0.2(react@17.0.2))(react@17.0.2)(typescript@5.2.2))(postcss@8.4.35)(webpack@5.90.3): gatsby-plugin-postcss@4.15.0(gatsby@3.15.0(@types/node@20.12.8)(babel-eslint@10.1.0(eslint@7.32.0))(eslint-import-resolver-typescript@3.5.5)(eslint-plugin-testing-library@3.9.0(eslint@7.32.0)(typescript@5.2.2))(react-dom@17.0.2(react@17.0.2))(react@17.0.2)(typescript@5.2.2))(postcss@8.4.35)(webpack@5.90.3):
dependencies: dependencies:
'@babel/runtime': 7.23.9 '@babel/runtime': 7.23.9
gatsby: 3.15.0(@types/node@20.12.8)(babel-eslint@10.1.0(eslint@7.32.0))(eslint-import-resolver-typescript@3.5.5(@typescript-eslint/parser@8.23.0(eslint@9.19.0)(typescript@5.7.3))(eslint-plugin-import@2.31.0)(eslint@9.19.0))(eslint-plugin-testing-library@3.9.0(eslint@7.32.0)(typescript@5.2.2))(react-dom@17.0.2(react@17.0.2))(react@17.0.2)(typescript@5.2.2) gatsby: 3.15.0(@types/node@20.12.8)(babel-eslint@10.1.0(eslint@7.32.0))(eslint-import-resolver-typescript@3.5.5)(eslint-plugin-testing-library@3.9.0(eslint@7.32.0)(typescript@5.2.2))(react-dom@17.0.2(react@17.0.2))(react@17.0.2)(typescript@5.2.2)
postcss: 8.4.35 postcss: 8.4.35
postcss-loader: 4.3.0(postcss@8.4.35)(webpack@5.90.3) postcss-loader: 4.3.0(postcss@8.4.35)(webpack@5.90.3)
transitivePeerDependencies: transitivePeerDependencies:
- webpack - webpack
gatsby-plugin-react-helmet@4.15.0(gatsby@3.15.0(@types/node@20.12.8)(babel-eslint@10.1.0(eslint@7.32.0))(eslint-import-resolver-typescript@3.5.5(@typescript-eslint/parser@8.23.0(eslint@9.19.0)(typescript@5.7.3))(eslint-plugin-import@2.31.0)(eslint@9.19.0))(eslint-plugin-testing-library@3.9.0(eslint@7.32.0)(typescript@5.2.2))(react-dom@17.0.2(react@17.0.2))(react@17.0.2)(typescript@5.2.2))(react-helmet@6.1.0(react@17.0.2)): gatsby-plugin-react-helmet@4.15.0(gatsby@3.15.0(@types/node@20.12.8)(babel-eslint@10.1.0(eslint@7.32.0))(eslint-import-resolver-typescript@3.5.5)(eslint-plugin-testing-library@3.9.0(eslint@7.32.0)(typescript@5.2.2))(react-dom@17.0.2(react@17.0.2))(react@17.0.2)(typescript@5.2.2))(react-helmet@6.1.0(react@17.0.2)):
dependencies: dependencies:
'@babel/runtime': 7.23.9 '@babel/runtime': 7.23.9
gatsby: 3.15.0(@types/node@20.12.8)(babel-eslint@10.1.0(eslint@7.32.0))(eslint-import-resolver-typescript@3.5.5(@typescript-eslint/parser@8.23.0(eslint@9.19.0)(typescript@5.7.3))(eslint-plugin-import@2.31.0)(eslint@9.19.0))(eslint-plugin-testing-library@3.9.0(eslint@7.32.0)(typescript@5.2.2))(react-dom@17.0.2(react@17.0.2))(react@17.0.2)(typescript@5.2.2) gatsby: 3.15.0(@types/node@20.12.8)(babel-eslint@10.1.0(eslint@7.32.0))(eslint-import-resolver-typescript@3.5.5)(eslint-plugin-testing-library@3.9.0(eslint@7.32.0)(typescript@5.2.2))(react-dom@17.0.2(react@17.0.2))(react@17.0.2)(typescript@5.2.2)
react-helmet: 6.1.0(react@17.0.2) react-helmet: 6.1.0(react@17.0.2)
gatsby-plugin-remove-serviceworker@1.0.0: {} gatsby-plugin-remove-serviceworker@1.0.0: {}
gatsby-plugin-typescript@3.15.0(gatsby@3.15.0(@types/node@20.12.8)(babel-eslint@10.1.0(eslint@7.32.0))(eslint-import-resolver-typescript@3.5.5(@typescript-eslint/parser@8.23.0(eslint@9.19.0)(typescript@5.7.3))(eslint-plugin-import@2.31.0)(eslint@9.19.0))(eslint-plugin-testing-library@3.9.0(eslint@7.32.0)(typescript@5.2.2))(react-dom@17.0.2(react@17.0.2))(react@17.0.2)(typescript@5.2.2)): gatsby-plugin-typescript@3.15.0(gatsby@3.15.0(@types/node@20.12.8)(babel-eslint@10.1.0(eslint@7.32.0))(eslint-import-resolver-typescript@3.5.5)(eslint-plugin-testing-library@3.9.0(eslint@7.32.0)(typescript@5.2.2))(react-dom@17.0.2(react@17.0.2))(react@17.0.2)(typescript@5.2.2)):
dependencies: dependencies:
'@babel/core': 7.23.7 '@babel/core': 7.23.7
'@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.23.7) '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.23.7)
@@ -26451,23 +26451,23 @@ snapshots:
'@babel/plugin-proposal-optional-chaining': 7.17.12(@babel/core@7.23.7) '@babel/plugin-proposal-optional-chaining': 7.17.12(@babel/core@7.23.7)
'@babel/preset-typescript': 7.23.3(@babel/core@7.23.7) '@babel/preset-typescript': 7.23.3(@babel/core@7.23.7)
'@babel/runtime': 7.23.9 '@babel/runtime': 7.23.9
babel-plugin-remove-graphql-queries: 3.15.0(@babel/core@7.23.7)(gatsby@3.15.0(@types/node@20.12.8)(babel-eslint@10.1.0(eslint@7.32.0))(eslint-import-resolver-typescript@3.5.5(@typescript-eslint/parser@8.23.0(eslint@9.19.0)(typescript@5.7.3))(eslint-plugin-import@2.31.0)(eslint@9.19.0))(eslint-plugin-testing-library@3.9.0(eslint@7.32.0)(typescript@5.2.2))(react-dom@17.0.2(react@17.0.2))(react@17.0.2)(typescript@5.2.2)) babel-plugin-remove-graphql-queries: 3.15.0(@babel/core@7.23.7)(gatsby@3.15.0(@types/node@20.12.8)(babel-eslint@10.1.0(eslint@7.32.0))(eslint-import-resolver-typescript@3.5.5)(eslint-plugin-testing-library@3.9.0(eslint@7.32.0)(typescript@5.2.2))(react-dom@17.0.2(react@17.0.2))(react@17.0.2)(typescript@5.2.2))
gatsby: 3.15.0(@types/node@20.12.8)(babel-eslint@10.1.0(eslint@7.32.0))(eslint-import-resolver-typescript@3.5.5(@typescript-eslint/parser@8.23.0(eslint@9.19.0)(typescript@5.7.3))(eslint-plugin-import@2.31.0)(eslint@9.19.0))(eslint-plugin-testing-library@3.9.0(eslint@7.32.0)(typescript@5.2.2))(react-dom@17.0.2(react@17.0.2))(react@17.0.2)(typescript@5.2.2) gatsby: 3.15.0(@types/node@20.12.8)(babel-eslint@10.1.0(eslint@7.32.0))(eslint-import-resolver-typescript@3.5.5)(eslint-plugin-testing-library@3.9.0(eslint@7.32.0)(typescript@5.2.2))(react-dom@17.0.2(react@17.0.2))(react@17.0.2)(typescript@5.2.2)
transitivePeerDependencies: transitivePeerDependencies:
- supports-color - supports-color
gatsby-plugin-utils@1.15.0(gatsby@3.15.0(@types/node@20.12.8)(babel-eslint@10.1.0(eslint@7.32.0))(eslint-import-resolver-typescript@3.5.5(@typescript-eslint/parser@8.23.0(eslint@9.19.0)(typescript@5.7.3))(eslint-plugin-import@2.31.0)(eslint@9.19.0))(eslint-plugin-testing-library@3.9.0(eslint@7.32.0)(typescript@5.2.2))(react-dom@17.0.2(react@17.0.2))(react@17.0.2)(typescript@5.2.2))(graphql@15.8.0): gatsby-plugin-utils@1.15.0(gatsby@3.15.0(@types/node@20.12.8)(babel-eslint@10.1.0(eslint@7.32.0))(eslint-import-resolver-typescript@3.5.5)(eslint-plugin-testing-library@3.9.0(eslint@7.32.0)(typescript@5.2.2))(react-dom@17.0.2(react@17.0.2))(react@17.0.2)(typescript@5.2.2))(graphql@15.8.0):
dependencies: dependencies:
'@babel/runtime': 7.23.9 '@babel/runtime': 7.23.9
fastq: 1.17.1 fastq: 1.17.1
gatsby: 3.15.0(@types/node@20.12.8)(babel-eslint@10.1.0(eslint@7.32.0))(eslint-import-resolver-typescript@3.5.5(@typescript-eslint/parser@8.23.0(eslint@9.19.0)(typescript@5.7.3))(eslint-plugin-import@2.31.0)(eslint@9.19.0))(eslint-plugin-testing-library@3.9.0(eslint@7.32.0)(typescript@5.2.2))(react-dom@17.0.2(react@17.0.2))(react@17.0.2)(typescript@5.2.2) gatsby: 3.15.0(@types/node@20.12.8)(babel-eslint@10.1.0(eslint@7.32.0))(eslint-import-resolver-typescript@3.5.5)(eslint-plugin-testing-library@3.9.0(eslint@7.32.0)(typescript@5.2.2))(react-dom@17.0.2(react@17.0.2))(react@17.0.2)(typescript@5.2.2)
graphql: 15.8.0 graphql: 15.8.0
joi: 17.12.2 joi: 17.12.2
gatsby-plugin-webpack-bundle-analyser-v2@1.1.32(gatsby@3.15.0(@types/node@20.12.8)(babel-eslint@10.1.0(eslint@7.32.0))(eslint-import-resolver-typescript@3.5.5(@typescript-eslint/parser@8.23.0(eslint@9.19.0)(typescript@5.7.3))(eslint-plugin-import@2.31.0)(eslint@9.19.0))(eslint-plugin-testing-library@3.9.0(eslint@7.32.0)(typescript@5.2.2))(react-dom@17.0.2(react@17.0.2))(react@17.0.2)(typescript@5.2.2)): gatsby-plugin-webpack-bundle-analyser-v2@1.1.32(gatsby@3.15.0(@types/node@20.12.8)(babel-eslint@10.1.0(eslint@7.32.0))(eslint-import-resolver-typescript@3.5.5)(eslint-plugin-testing-library@3.9.0(eslint@7.32.0)(typescript@5.2.2))(react-dom@17.0.2(react@17.0.2))(react@17.0.2)(typescript@5.2.2)):
dependencies: dependencies:
'@babel/runtime': 7.23.9 '@babel/runtime': 7.23.9
gatsby: 3.15.0(@types/node@20.12.8)(babel-eslint@10.1.0(eslint@7.32.0))(eslint-import-resolver-typescript@3.5.5(@typescript-eslint/parser@8.23.0(eslint@9.19.0)(typescript@5.7.3))(eslint-plugin-import@2.31.0)(eslint@9.19.0))(eslint-plugin-testing-library@3.9.0(eslint@7.32.0)(typescript@5.2.2))(react-dom@17.0.2(react@17.0.2))(react@17.0.2)(typescript@5.2.2) gatsby: 3.15.0(@types/node@20.12.8)(babel-eslint@10.1.0(eslint@7.32.0))(eslint-import-resolver-typescript@3.5.5)(eslint-plugin-testing-library@3.9.0(eslint@7.32.0)(typescript@5.2.2))(react-dom@17.0.2(react@17.0.2))(react@17.0.2)(typescript@5.2.2)
webpack-bundle-analyzer: 4.10.1 webpack-bundle-analyzer: 4.10.1
transitivePeerDependencies: transitivePeerDependencies:
- bufferutil - bufferutil
@@ -26548,14 +26548,14 @@ snapshots:
- supports-color - supports-color
- utf-8-validate - utf-8-validate
gatsby-source-filesystem@3.15.0(gatsby@3.15.0(@types/node@20.12.8)(babel-eslint@10.1.0(eslint@7.32.0))(eslint-import-resolver-typescript@3.5.5(@typescript-eslint/parser@8.23.0(eslint@9.19.0)(typescript@5.7.3))(eslint-plugin-import@2.31.0)(eslint@9.19.0))(eslint-plugin-testing-library@3.9.0(eslint@7.32.0)(typescript@5.2.2))(react-dom@17.0.2(react@17.0.2))(react@17.0.2)(typescript@5.2.2)): gatsby-source-filesystem@3.15.0(gatsby@3.15.0(@types/node@20.12.8)(babel-eslint@10.1.0(eslint@7.32.0))(eslint-import-resolver-typescript@3.5.5)(eslint-plugin-testing-library@3.9.0(eslint@7.32.0)(typescript@5.2.2))(react-dom@17.0.2(react@17.0.2))(react@17.0.2)(typescript@5.2.2)):
dependencies: dependencies:
'@babel/runtime': 7.23.9 '@babel/runtime': 7.23.9
chokidar: 3.6.0 chokidar: 3.6.0
fastq: 1.15.0 fastq: 1.15.0
file-type: 16.5.4 file-type: 16.5.4
fs-extra: 10.1.0 fs-extra: 10.1.0
gatsby: 3.15.0(@types/node@20.12.8)(babel-eslint@10.1.0(eslint@7.32.0))(eslint-import-resolver-typescript@3.5.5(@typescript-eslint/parser@8.23.0(eslint@9.19.0)(typescript@5.7.3))(eslint-plugin-import@2.31.0)(eslint@9.19.0))(eslint-plugin-testing-library@3.9.0(eslint@7.32.0)(typescript@5.2.2))(react-dom@17.0.2(react@17.0.2))(react@17.0.2)(typescript@5.2.2) gatsby: 3.15.0(@types/node@20.12.8)(babel-eslint@10.1.0(eslint@7.32.0))(eslint-import-resolver-typescript@3.5.5)(eslint-plugin-testing-library@3.9.0(eslint@7.32.0)(typescript@5.2.2))(react-dom@17.0.2(react@17.0.2))(react@17.0.2)(typescript@5.2.2)
gatsby-core-utils: 2.15.0 gatsby-core-utils: 2.15.0
got: 9.6.0 got: 9.6.0
md5-file: 5.0.0 md5-file: 5.0.0
@@ -26584,10 +26584,10 @@ snapshots:
transitivePeerDependencies: transitivePeerDependencies:
- encoding - encoding
gatsby-transformer-remark@5.25.1(gatsby@3.15.0(@types/node@20.12.8)(babel-eslint@10.1.0(eslint@7.32.0))(eslint-import-resolver-typescript@3.5.5(@typescript-eslint/parser@8.23.0(eslint@9.19.0)(typescript@5.7.3))(eslint-plugin-import@2.31.0)(eslint@9.19.0))(eslint-plugin-testing-library@3.9.0(eslint@7.32.0)(typescript@5.2.2))(react-dom@17.0.2(react@17.0.2))(react@17.0.2)(typescript@5.2.2)): gatsby-transformer-remark@5.25.1(gatsby@3.15.0(@types/node@20.12.8)(babel-eslint@10.1.0(eslint@7.32.0))(eslint-import-resolver-typescript@3.5.5)(eslint-plugin-testing-library@3.9.0(eslint@7.32.0)(typescript@5.2.2))(react-dom@17.0.2(react@17.0.2))(react@17.0.2)(typescript@5.2.2)):
dependencies: dependencies:
'@babel/runtime': 7.23.9 '@babel/runtime': 7.23.9
gatsby: 3.15.0(@types/node@20.12.8)(babel-eslint@10.1.0(eslint@7.32.0))(eslint-import-resolver-typescript@3.5.5(@typescript-eslint/parser@8.23.0(eslint@9.19.0)(typescript@5.7.3))(eslint-plugin-import@2.31.0)(eslint@9.19.0))(eslint-plugin-testing-library@3.9.0(eslint@7.32.0)(typescript@5.2.2))(react-dom@17.0.2(react@17.0.2))(react@17.0.2)(typescript@5.2.2) gatsby: 3.15.0(@types/node@20.12.8)(babel-eslint@10.1.0(eslint@7.32.0))(eslint-import-resolver-typescript@3.5.5)(eslint-plugin-testing-library@3.9.0(eslint@7.32.0)(typescript@5.2.2))(react-dom@17.0.2(react@17.0.2))(react@17.0.2)(typescript@5.2.2)
gatsby-core-utils: 3.25.0 gatsby-core-utils: 3.25.0
gray-matter: 4.0.3 gray-matter: 4.0.3
hast-util-raw: 6.1.0 hast-util-raw: 6.1.0
@@ -26619,7 +26619,7 @@ snapshots:
transitivePeerDependencies: transitivePeerDependencies:
- supports-color - supports-color
gatsby@3.15.0(@types/node@20.12.8)(babel-eslint@10.1.0(eslint@7.32.0))(eslint-import-resolver-typescript@3.5.5(@typescript-eslint/parser@8.23.0(eslint@9.19.0)(typescript@5.7.3))(eslint-plugin-import@2.31.0)(eslint@9.19.0))(eslint-plugin-testing-library@3.9.0(eslint@7.32.0)(typescript@5.2.2))(react-dom@17.0.2(react@17.0.2))(react@17.0.2)(typescript@5.2.2): gatsby@3.15.0(@types/node@20.12.8)(babel-eslint@10.1.0(eslint@7.32.0))(eslint-import-resolver-typescript@3.5.5)(eslint-plugin-testing-library@3.9.0(eslint@7.32.0)(typescript@5.2.2))(react-dom@17.0.2(react@17.0.2))(react@17.0.2)(typescript@5.2.2):
dependencies: dependencies:
'@babel/code-frame': 7.22.13 '@babel/code-frame': 7.22.13
'@babel/core': 7.23.0 '@babel/core': 7.23.0
@@ -26645,7 +26645,7 @@ snapshots:
babel-plugin-add-module-exports: 1.0.4 babel-plugin-add-module-exports: 1.0.4
babel-plugin-dynamic-import-node: 2.3.3 babel-plugin-dynamic-import-node: 2.3.3
babel-plugin-lodash: 3.3.4 babel-plugin-lodash: 3.3.4
babel-plugin-remove-graphql-queries: 3.15.0(@babel/core@7.23.0)(gatsby@3.15.0(@types/node@20.12.8)(babel-eslint@10.1.0(eslint@7.32.0))(eslint-import-resolver-typescript@3.5.5(@typescript-eslint/parser@8.23.0(eslint@9.19.0)(typescript@5.7.3))(eslint-plugin-import@2.31.0)(eslint@9.19.0))(eslint-plugin-testing-library@3.9.0(eslint@7.32.0)(typescript@5.2.2))(react-dom@17.0.2(react@17.0.2))(react@17.0.2)(typescript@5.2.2)) babel-plugin-remove-graphql-queries: 3.15.0(@babel/core@7.23.0)(gatsby@3.15.0(@types/node@20.12.8)(babel-eslint@10.1.0(eslint@7.32.0))(eslint-import-resolver-typescript@3.5.5)(eslint-plugin-testing-library@3.9.0(eslint@7.32.0)(typescript@5.2.2))(react-dom@17.0.2(react@17.0.2))(react@17.0.2)(typescript@5.2.2))
babel-preset-gatsby: 1.15.0(@babel/core@7.23.0)(core-js@3.33.0) babel-preset-gatsby: 1.15.0(@babel/core@7.23.0)(core-js@3.33.0)
better-opn: 2.1.1 better-opn: 2.1.1
bluebird: 3.7.2 bluebird: 3.7.2
@@ -26670,10 +26670,10 @@ snapshots:
devcert: 1.2.2 devcert: 1.2.2
dotenv: 8.6.0 dotenv: 8.6.0
eslint: 7.32.0 eslint: 7.32.0
eslint-config-react-app: 6.0.0(@typescript-eslint/eslint-plugin@4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@5.2.2))(eslint@7.32.0)(typescript@5.2.2))(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@5.2.2))(babel-eslint@10.1.0(eslint@7.32.0))(eslint-plugin-flowtype@5.10.0(eslint@7.32.0))(eslint-plugin-import@2.28.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@5.2.2))(eslint-import-resolver-typescript@3.5.5(@typescript-eslint/parser@8.23.0(eslint@9.19.0)(typescript@5.7.3))(eslint-plugin-import@2.31.0)(eslint@9.19.0))(eslint@7.32.0))(eslint-plugin-jsx-a11y@6.7.1(eslint@7.32.0))(eslint-plugin-react-hooks@4.6.0(eslint@7.32.0))(eslint-plugin-react@7.33.2(eslint@7.32.0))(eslint-plugin-testing-library@3.9.0(eslint@7.32.0)(typescript@5.2.2))(eslint@7.32.0)(typescript@5.2.2) eslint-config-react-app: 6.0.0(@typescript-eslint/eslint-plugin@4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@5.2.2))(eslint@7.32.0)(typescript@5.2.2))(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@5.2.2))(babel-eslint@10.1.0(eslint@7.32.0))(eslint-plugin-flowtype@5.10.0(eslint@7.32.0))(eslint-plugin-import@2.28.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@5.2.2))(eslint-import-resolver-typescript@3.5.5)(eslint@7.32.0))(eslint-plugin-jsx-a11y@6.7.1(eslint@7.32.0))(eslint-plugin-react-hooks@4.6.0(eslint@7.32.0))(eslint-plugin-react@7.33.2(eslint@7.32.0))(eslint-plugin-testing-library@3.9.0(eslint@7.32.0)(typescript@5.2.2))(eslint@7.32.0)(typescript@5.2.2)
eslint-plugin-flowtype: 5.10.0(eslint@7.32.0) eslint-plugin-flowtype: 5.10.0(eslint@7.32.0)
eslint-plugin-graphql: 4.0.0(@types/node@20.12.8)(graphql@15.8.0)(typescript@5.2.2) eslint-plugin-graphql: 4.0.0(@types/node@20.12.8)(graphql@15.8.0)(typescript@5.2.2)
eslint-plugin-import: 2.28.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@5.2.2))(eslint-import-resolver-typescript@3.5.5(@typescript-eslint/parser@8.23.0(eslint@9.19.0)(typescript@5.7.3))(eslint-plugin-import@2.31.0)(eslint@9.19.0))(eslint@7.32.0) eslint-plugin-import: 2.28.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@5.2.2))(eslint-import-resolver-typescript@3.5.5)(eslint@7.32.0)
eslint-plugin-jsx-a11y: 6.7.1(eslint@7.32.0) eslint-plugin-jsx-a11y: 6.7.1(eslint@7.32.0)
eslint-plugin-react: 7.33.2(eslint@7.32.0) eslint-plugin-react: 7.33.2(eslint@7.32.0)
eslint-plugin-react-hooks: 4.6.0(eslint@7.32.0) eslint-plugin-react-hooks: 4.6.0(eslint@7.32.0)
@@ -26693,9 +26693,9 @@ snapshots:
gatsby-graphiql-explorer: 1.15.0 gatsby-graphiql-explorer: 1.15.0
gatsby-legacy-polyfills: 1.15.0 gatsby-legacy-polyfills: 1.15.0
gatsby-link: 3.15.0(@gatsbyjs/reach-router@1.3.9(react-dom@17.0.2(react@17.0.2))(react@17.0.2))(react-dom@17.0.2(react@17.0.2))(react@17.0.2) gatsby-link: 3.15.0(@gatsbyjs/reach-router@1.3.9(react-dom@17.0.2(react@17.0.2))(react@17.0.2))(react-dom@17.0.2(react@17.0.2))(react@17.0.2)
gatsby-plugin-page-creator: 3.15.0(gatsby@3.15.0(@types/node@20.12.8)(babel-eslint@10.1.0(eslint@7.32.0))(eslint-import-resolver-typescript@3.5.5(@typescript-eslint/parser@8.23.0(eslint@9.19.0)(typescript@5.7.3))(eslint-plugin-import@2.31.0)(eslint@9.19.0))(eslint-plugin-testing-library@3.9.0(eslint@7.32.0)(typescript@5.2.2))(react-dom@17.0.2(react@17.0.2))(react@17.0.2)(typescript@5.2.2))(graphql@15.8.0) gatsby-plugin-page-creator: 3.15.0(gatsby@3.15.0(@types/node@20.12.8)(babel-eslint@10.1.0(eslint@7.32.0))(eslint-import-resolver-typescript@3.5.5)(eslint-plugin-testing-library@3.9.0(eslint@7.32.0)(typescript@5.2.2))(react-dom@17.0.2(react@17.0.2))(react@17.0.2)(typescript@5.2.2))(graphql@15.8.0)
gatsby-plugin-typescript: 3.15.0(gatsby@3.15.0(@types/node@20.12.8)(babel-eslint@10.1.0(eslint@7.32.0))(eslint-import-resolver-typescript@3.5.5(@typescript-eslint/parser@8.23.0(eslint@9.19.0)(typescript@5.7.3))(eslint-plugin-import@2.31.0)(eslint@9.19.0))(eslint-plugin-testing-library@3.9.0(eslint@7.32.0)(typescript@5.2.2))(react-dom@17.0.2(react@17.0.2))(react@17.0.2)(typescript@5.2.2)) gatsby-plugin-typescript: 3.15.0(gatsby@3.15.0(@types/node@20.12.8)(babel-eslint@10.1.0(eslint@7.32.0))(eslint-import-resolver-typescript@3.5.5)(eslint-plugin-testing-library@3.9.0(eslint@7.32.0)(typescript@5.2.2))(react-dom@17.0.2(react@17.0.2))(react@17.0.2)(typescript@5.2.2))
gatsby-plugin-utils: 1.15.0(gatsby@3.15.0(@types/node@20.12.8)(babel-eslint@10.1.0(eslint@7.32.0))(eslint-import-resolver-typescript@3.5.5(@typescript-eslint/parser@8.23.0(eslint@9.19.0)(typescript@5.7.3))(eslint-plugin-import@2.31.0)(eslint@9.19.0))(eslint-plugin-testing-library@3.9.0(eslint@7.32.0)(typescript@5.2.2))(react-dom@17.0.2(react@17.0.2))(react@17.0.2)(typescript@5.2.2))(graphql@15.8.0) gatsby-plugin-utils: 1.15.0(gatsby@3.15.0(@types/node@20.12.8)(babel-eslint@10.1.0(eslint@7.32.0))(eslint-import-resolver-typescript@3.5.5)(eslint-plugin-testing-library@3.9.0(eslint@7.32.0)(typescript@5.2.2))(react-dom@17.0.2(react@17.0.2))(react@17.0.2)(typescript@5.2.2))(graphql@15.8.0)
gatsby-react-router-scroll: 4.15.0(@gatsbyjs/reach-router@1.3.9(react-dom@17.0.2(react@17.0.2))(react@17.0.2))(react-dom@17.0.2(react@17.0.2))(react@17.0.2) gatsby-react-router-scroll: 4.15.0(@gatsbyjs/reach-router@1.3.9(react-dom@17.0.2(react@17.0.2))(react@17.0.2))(react-dom@17.0.2(react@17.0.2))(react@17.0.2)
gatsby-telemetry: 2.15.0 gatsby-telemetry: 2.15.0
gatsby-worker: 0.6.0 gatsby-worker: 0.6.0
@@ -26763,7 +26763,7 @@ snapshots:
url-loader: 4.1.1(file-loader@6.2.0(webpack@5.90.3))(webpack@5.90.3) url-loader: 4.1.1(file-loader@6.2.0(webpack@5.90.3))(webpack@5.90.3)
uuid: 3.4.0 uuid: 3.4.0
v8-compile-cache: 2.4.0 v8-compile-cache: 2.4.0
webpack: 5.90.3 webpack: 5.90.3(webpack-cli@4.10.0)
webpack-dev-middleware: 4.3.0(webpack@5.90.3) webpack-dev-middleware: 4.3.0(webpack@5.90.3)
webpack-merge: 5.9.0 webpack-merge: 5.9.0
webpack-stats-plugin: 1.1.3 webpack-stats-plugin: 1.1.3
@@ -30118,7 +30118,7 @@ snapshots:
dependencies: dependencies:
loader-utils: 2.0.4 loader-utils: 2.0.4
schema-utils: 3.3.0 schema-utils: 3.3.0
webpack: 5.90.3 webpack: 5.90.3(webpack-cli@4.10.0)
webpack-sources: 1.4.3 webpack-sources: 1.4.3
minimalistic-assert@1.0.1: {} minimalistic-assert@1.0.1: {}
@@ -30224,7 +30224,7 @@ snapshots:
dependencies: dependencies:
loader-utils: 2.0.4 loader-utils: 2.0.4
monaco-editor: 0.33.0 monaco-editor: 0.33.0
webpack: 5.90.3 webpack: 5.90.3(webpack-cli@4.10.0)
monaco-editor@0.33.0: {} monaco-editor@0.33.0: {}
@@ -30544,7 +30544,7 @@ snapshots:
dependencies: dependencies:
loader-utils: 2.0.4 loader-utils: 2.0.4
schema-utils: 3.3.0 schema-utils: 3.3.0
webpack: 5.90.3 webpack: 5.90.3(webpack-cli@4.10.0)
nwsapi@2.2.7: {} nwsapi@2.2.7: {}
@@ -31192,7 +31192,7 @@ snapshots:
postcss: 8.4.35 postcss: 8.4.35
schema-utils: 3.3.0 schema-utils: 3.3.0
semver: 7.6.0 semver: 7.6.0
webpack: 5.90.3 webpack: 5.90.3(webpack-cli@4.10.0)
postcss-loader@5.3.0(postcss@8.4.35)(webpack@5.90.3): postcss-loader@5.3.0(postcss@8.4.35)(webpack@5.90.3):
dependencies: dependencies:
@@ -31200,7 +31200,7 @@ snapshots:
klona: 2.0.6 klona: 2.0.6
postcss: 8.4.35 postcss: 8.4.35
semver: 7.6.0 semver: 7.6.0
webpack: 5.90.3 webpack: 5.90.3(webpack-cli@4.10.0)
postcss-merge-longhand@5.1.7(postcss@8.4.35): postcss-merge-longhand@5.1.7(postcss@8.4.35):
dependencies: dependencies:
@@ -31704,7 +31704,7 @@ snapshots:
dependencies: dependencies:
loader-utils: 2.0.4 loader-utils: 2.0.4
schema-utils: 3.3.0 schema-utils: 3.3.0
webpack: 5.90.3 webpack: 5.90.3(webpack-cli@4.10.0)
rc@1.2.8: rc@1.2.8:
dependencies: dependencies:
@@ -31745,7 +31745,7 @@ snapshots:
shell-quote: 1.7.2 shell-quote: 1.7.2
strip-ansi: 6.0.0 strip-ansi: 6.0.0
text-table: 0.2.0 text-table: 0.2.0
webpack: 5.90.3 webpack: 5.90.3(webpack-cli@4.10.0)
optionalDependencies: optionalDependencies:
typescript: 5.2.2 typescript: 5.2.2
transitivePeerDependencies: transitivePeerDependencies:
@@ -32319,7 +32319,7 @@ snapshots:
require-in-the-middle@7.5.2: require-in-the-middle@7.5.2:
dependencies: dependencies:
debug: 4.3.7 debug: 4.4.0
module-details-from-path: 1.0.3 module-details-from-path: 1.0.3
resolve: 1.22.8 resolve: 1.22.8
transitivePeerDependencies: transitivePeerDependencies:
@@ -33459,7 +33459,7 @@ snapshots:
dependencies: dependencies:
loader-utils: 2.0.4 loader-utils: 2.0.4
schema-utils: 3.3.0 schema-utils: 3.3.0
webpack: 5.90.3 webpack: 5.90.3(webpack-cli@4.10.0)
style-to-object@0.3.0: style-to-object@0.3.0:
dependencies: dependencies:
@@ -33659,7 +33659,7 @@ snapshots:
term-size@2.2.1: {} term-size@2.2.1: {}
terser-webpack-plugin@5.3.10(webpack@5.90.3(webpack-cli@4.10.0)): terser-webpack-plugin@5.3.10(webpack@5.90.3):
dependencies: dependencies:
'@jridgewell/trace-mapping': 0.3.25 '@jridgewell/trace-mapping': 0.3.25
jest-worker: 27.5.1 jest-worker: 27.5.1
@@ -33668,15 +33668,6 @@ snapshots:
terser: 5.28.1 terser: 5.28.1
webpack: 5.90.3(webpack-cli@4.10.0) webpack: 5.90.3(webpack-cli@4.10.0)
terser-webpack-plugin@5.3.10(webpack@5.90.3):
dependencies:
'@jridgewell/trace-mapping': 0.3.25
jest-worker: 27.5.1
schema-utils: 3.3.0
serialize-javascript: 6.0.1
terser: 5.28.1
webpack: 5.90.3
terser-webpack-plugin@5.3.9(webpack@5.90.3): terser-webpack-plugin@5.3.9(webpack@5.90.3):
dependencies: dependencies:
'@jridgewell/trace-mapping': 0.3.22 '@jridgewell/trace-mapping': 0.3.22
@@ -33684,7 +33675,7 @@ snapshots:
schema-utils: 3.3.0 schema-utils: 3.3.0
serialize-javascript: 6.0.1 serialize-javascript: 6.0.1
terser: 5.20.0 terser: 5.20.0
webpack: 5.90.3 webpack: 5.90.3(webpack-cli@4.10.0)
terser@5.20.0: terser@5.20.0:
dependencies: dependencies:
@@ -34396,7 +34387,7 @@ snapshots:
loader-utils: 2.0.4 loader-utils: 2.0.4
mime-types: 2.1.35 mime-types: 2.1.35
schema-utils: 3.3.0 schema-utils: 3.3.0
webpack: 5.90.3 webpack: 5.90.3(webpack-cli@4.10.0)
optionalDependencies: optionalDependencies:
file-loader: 6.2.0(webpack@5.90.3) file-loader: 6.2.0(webpack@5.90.3)
@@ -34608,9 +34599,9 @@ snapshots:
webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.1)(webpack@5.90.3): webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.1)(webpack@5.90.3):
dependencies: dependencies:
'@discoveryjs/json-ext': 0.5.7 '@discoveryjs/json-ext': 0.5.7
'@webpack-cli/configtest': 1.2.0(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.1)(webpack@5.90.3))(webpack@5.90.3(webpack-cli@4.10.0)) '@webpack-cli/configtest': 1.2.0(webpack-cli@4.10.0)(webpack@5.90.3)
'@webpack-cli/info': 1.5.0(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.1)(webpack@5.90.3)) '@webpack-cli/info': 1.5.0(webpack-cli@4.10.0)
'@webpack-cli/serve': 1.7.0(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.1)(webpack@5.90.3)) '@webpack-cli/serve': 1.7.0(webpack-cli@4.10.0)
colorette: 2.0.20 colorette: 2.0.20
commander: 7.2.0 commander: 7.2.0
cross-spawn: 7.0.3 cross-spawn: 7.0.3
@@ -34631,7 +34622,7 @@ snapshots:
mime-types: 2.1.35 mime-types: 2.1.35
range-parser: 1.2.1 range-parser: 1.2.1
schema-utils: 3.3.0 schema-utils: 3.3.0
webpack: 5.90.3 webpack: 5.90.3(webpack-cli@4.10.0)
webpack-merge@5.9.0: webpack-merge@5.9.0:
dependencies: dependencies:
@@ -34653,37 +34644,6 @@ snapshots:
transitivePeerDependencies: transitivePeerDependencies:
- supports-color - supports-color
webpack@5.90.3:
dependencies:
'@types/eslint-scope': 3.7.5
'@types/estree': 1.0.5
'@webassemblyjs/ast': 1.11.6
'@webassemblyjs/wasm-edit': 1.11.6
'@webassemblyjs/wasm-parser': 1.11.6
acorn: 8.11.3
acorn-import-assertions: 1.9.0(acorn@8.11.3)
browserslist: 4.23.0
chrome-trace-event: 1.0.3
enhanced-resolve: 5.15.0
es-module-lexer: 1.3.1
eslint-scope: 5.1.1
events: 3.3.0
glob-to-regexp: 0.4.1
graceful-fs: 4.2.11
json-parse-even-better-errors: 2.3.1
loader-runner: 4.3.0
mime-types: 2.1.35
neo-async: 2.6.2
schema-utils: 3.3.0
tapable: 2.2.1
terser-webpack-plugin: 5.3.10(webpack@5.90.3)
watchpack: 2.4.0
webpack-sources: 3.2.3
transitivePeerDependencies:
- '@swc/core'
- esbuild
- uglify-js
webpack@5.90.3(webpack-cli@4.10.0): webpack@5.90.3(webpack-cli@4.10.0):
dependencies: dependencies:
'@types/eslint-scope': 3.7.5 '@types/eslint-scope': 3.7.5
@@ -34707,7 +34667,7 @@ snapshots:
neo-async: 2.6.2 neo-async: 2.6.2
schema-utils: 3.3.0 schema-utils: 3.3.0
tapable: 2.2.1 tapable: 2.2.1
terser-webpack-plugin: 5.3.10(webpack@5.90.3(webpack-cli@4.10.0)) terser-webpack-plugin: 5.3.10(webpack@5.90.3)
watchpack: 2.4.0 watchpack: 2.4.0
webpack-sources: 3.2.3 webpack-sources: 3.2.3
optionalDependencies: optionalDependencies:

View File

@@ -7,7 +7,7 @@
"private": false, "private": false,
"engines": { "engines": {
"node": ">=16", "node": ">=16",
"pnpm": ">=9" "pnpm": ">=10"
}, },
"repository": { "repository": {
"type": "git", "type": "git",

View File

@@ -6,7 +6,7 @@
"private": true, "private": true,
"engines": { "engines": {
"node": ">=16", "node": ">=16",
"pnpm": ">=9" "pnpm": ">=10"
}, },
"repository": { "repository": {
"type": "git", "type": "git",

View File

@@ -6,7 +6,7 @@
"private": true, "private": true,
"engines": { "engines": {
"node": ">=16", "node": ">=16",
"pnpm": ">=9" "pnpm": ">=10"
}, },
"repository": { "repository": {
"type": "git", "type": "git",

View File

@@ -6,7 +6,7 @@
"private": true, "private": true,
"engines": { "engines": {
"node": ">=18", "node": ">=18",
"pnpm": ">=9" "pnpm": ">=10"
}, },
"repository": { "repository": {
"type": "git", "type": "git",

View File

@@ -6,7 +6,7 @@
"private": true, "private": true,
"engines": { "engines": {
"node": ">=16", "node": ">=16",
"pnpm": ">=9" "pnpm": ">=10"
}, },
"repository": { "repository": {
"type": "git", "type": "git",

View File

@@ -6,7 +6,7 @@
"private": true, "private": true,
"engines": { "engines": {
"node": ">=16", "node": ">=16",
"pnpm": ">=9" "pnpm": ">=10"
}, },
"repository": { "repository": {
"type": "git", "type": "git",

View File

@@ -6,7 +6,7 @@
"private": true, "private": true,
"engines": { "engines": {
"node": ">=16", "node": ">=16",
"pnpm": ">=9" "pnpm": ">=10"
}, },
"repository": { "repository": {
"type": "git", "type": "git",

View File

@@ -6,7 +6,7 @@
"private": true, "private": true,
"engines": { "engines": {
"node": ">=16", "node": ">=16",
"pnpm": ">=9" "pnpm": ">=10"
}, },
"repository": { "repository": {
"type": "git", "type": "git",

View File

@@ -6,7 +6,7 @@
"private": true, "private": true,
"engines": { "engines": {
"node": ">=16", "node": ">=16",
"pnpm": ">=9" "pnpm": ">=10"
}, },
"repository": { "repository": {
"type": "git", "type": "git",