-
+
{items.map((item) =>
item.children.length === 0 ? (
-
- {item.title}
-
+ item.target ? (
+
+ {item.title}
+
+ ) : (
+
+ {item.title}
+
+ )
) : (
{item.children.map((child) =>
- child.children.length === 0 ? (
-
- {child.title}
-
+ />
) : (
-
- {child.children.map((grandChild) => (
-
- ))}
-
+ {child.title}
),
)}
@@ -159,8 +153,8 @@ export function Header() {
-
-
+
+
);
}
diff --git a/packages/ui/src/tailwind.config.cjs b/packages/ui/src/tailwind.config.cjs
index bbdaea5bf..722d27a64 100644
--- a/packages/ui/src/tailwind.config.cjs
+++ b/packages/ui/src/tailwind.config.cjs
@@ -3,8 +3,76 @@ const theme = require('./stylingAssets.json');
module.exports = {
content: ['./src/**/*.{tsx, mdx}'],
- ...theme,
+ prefix: '',
+ theme: {
+ ...theme.theme,
+ container: {
+ center: true,
+ padding: '2rem',
+ screens: {
+ '2xl': '1400px',
+ },
+ },
+ extend: {
+ colors: {
+ border: 'hsl(var(--border))',
+ input: 'hsl(var(--input))',
+ ring: 'hsl(var(--ring))',
+ background: 'hsl(var(--background))',
+ foreground: 'hsl(var(--foreground))',
+ primary: {
+ DEFAULT: 'hsl(var(--primary))',
+ foreground: 'hsl(var(--primary-foreground))',
+ },
+ secondary: {
+ DEFAULT: 'hsl(var(--secondary))',
+ foreground: 'hsl(var(--secondary-foreground))',
+ },
+ destructive: {
+ DEFAULT: 'hsl(var(--destructive))',
+ foreground: 'hsl(var(--destructive-foreground))',
+ },
+ muted: {
+ DEFAULT: 'hsl(var(--muted))',
+ foreground: 'hsl(var(--muted-foreground))',
+ },
+ accent: {
+ DEFAULT: 'hsl(var(--accent))',
+ foreground: 'hsl(var(--accent-foreground))',
+ },
+ popover: {
+ DEFAULT: 'hsl(var(--popover))',
+ foreground: 'hsl(var(--popover-foreground))',
+ },
+ card: {
+ DEFAULT: 'hsl(var(--card))',
+ foreground: 'hsl(var(--card-foreground))',
+ },
+ },
+ borderRadius: {
+ lg: 'var(--radius)',
+ md: 'calc(var(--radius) - 2px)',
+ sm: 'calc(var(--radius) - 4px)',
+ },
+ keyframes: {
+ 'accordion-down': {
+ from: { height: '0' },
+ to: { height: 'var(--radix-accordion-content-height)' },
+ },
+ 'accordion-up': {
+ from: { height: 'var(--radix-accordion-content-height)' },
+ to: { height: '0' },
+ },
+ },
+ animation: {
+ 'accordion-down': 'accordion-down 0.2s ease-out',
+ 'accordion-up': 'accordion-up 0.2s ease-out',
+ },
+ },
+ },
plugins: [
+ require('tailwindcss-animate'),
+ require('@tailwindcss/line-clamp'),
require('@tailwindcss/forms'),
require('@tailwindcss/aspect-ratio'),
require('@tailwindcss/typography'),
diff --git a/packages/ui/src/tailwind.css b/packages/ui/src/tailwind.css
index bd6213e1d..6a7572500 100644
--- a/packages/ui/src/tailwind.css
+++ b/packages/ui/src/tailwind.css
@@ -1,3 +1,76 @@
@tailwind base;
@tailwind components;
-@tailwind utilities;
\ No newline at end of file
+@tailwind utilities;
+
+@layer base {
+ :root {
+ --background: 0 0% 100%;
+ --foreground: 222.2 84% 4.9%;
+
+ --card: 0 0% 100%;
+ --card-foreground: 222.2 84% 4.9%;
+
+ --popover: 0 0% 100%;
+ --popover-foreground: 222.2 84% 4.9%;
+
+ --primary: 222.2 47.4% 11.2%;
+ --primary-foreground: 210 40% 98%;
+
+ --secondary: 210 40% 96.1%;
+ --secondary-foreground: 222.2 47.4% 11.2%;
+
+ --muted: 210 40% 96.1%;
+ --muted-foreground: 215.4 16.3% 46.9%;
+
+ --accent: 210 40% 96.1%;
+ --accent-foreground: 222.2 47.4% 11.2%;
+
+ --destructive: 0 84.2% 60.2%;
+ --destructive-foreground: 210 40% 98%;
+
+ --border: 214.3 31.8% 91.4%;
+ --input: 214.3 31.8% 91.4%;
+ --ring: 222.2 84% 4.9%;
+
+ --radius: 0.5rem;
+ }
+
+ .dark {
+ --background: 222.2 84% 4.9%;
+ --foreground: 210 40% 98%;
+
+ --card: 222.2 84% 4.9%;
+ --card-foreground: 210 40% 98%;
+
+ --popover: 222.2 84% 4.9%;
+ --popover-foreground: 210 40% 98%;
+
+ --primary: 210 40% 98%;
+ --primary-foreground: 222.2 47.4% 11.2%;
+
+ --secondary: 217.2 32.6% 17.5%;
+ --secondary-foreground: 210 40% 98%;
+
+ --muted: 217.2 32.6% 17.5%;
+ --muted-foreground: 215 20.2% 65.1%;
+
+ --accent: 217.2 32.6% 17.5%;
+ --accent-foreground: 210 40% 98%;
+
+ --destructive: 0 62.8% 30.6%;
+ --destructive-foreground: 210 40% 98%;
+
+ --border: 217.2 32.6% 17.5%;
+ --input: 217.2 32.6% 17.5%;
+ --ring: 212.7 26.8% 83.9%;
+ }
+}
+
+@layer base {
+ * {
+ @apply border-border;
+ }
+ body {
+ @apply bg-background text-foreground;
+ }
+}
\ No newline at end of file
diff --git a/packages/ui/src/utils/shadcn/utils.ts b/packages/ui/src/utils/shadcn/utils.ts
new file mode 100644
index 000000000..9ad0df426
--- /dev/null
+++ b/packages/ui/src/utils/shadcn/utils.ts
@@ -0,0 +1,6 @@
+import { type ClassValue, clsx } from 'clsx';
+import { twMerge } from 'tailwind-merge';
+
+export function cn(...inputs: ClassValue[]) {
+ return twMerge(clsx(inputs));
+}
diff --git a/packages/ui/tsconfig.json b/packages/ui/tsconfig.json
index c018fced0..41e3583ab 100644
--- a/packages/ui/tsconfig.json
+++ b/packages/ui/tsconfig.json
@@ -1,5 +1,10 @@
{
"compilerOptions": {
+ "baseUrl": ".",
+ "paths": {
+ "@/utils": ["./src/utils/shadcn/utils"],
+ "@/shadcn/*": ["./src/components/Molecules/shadcn/*"]
+ },
"target": "ESNext",
"useDefineForClassFields": true,
"lib": ["DOM", "DOM.Iterable", "ESNext"],
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index 8aca358f2..3768944f9 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -16,40 +16,40 @@ importers:
devDependencies:
'@commitlint/cli':
specifier: ^18.4.3
- version: 18.4.3(@types/node@18.19.31)(typescript@5.3.3)
+ version: 18.4.3(typescript@5.3.3)
'@commitlint/config-conventional':
specifier: ^18.4.3
version: 18.4.3
'@typescript-eslint/eslint-plugin':
specifier: ^6.17.0
- version: 6.17.0(@typescript-eslint/parser@6.17.0)(eslint@7.0.0)(typescript@5.3.3)
+ version: 6.17.0(@typescript-eslint/parser@6.17.0)(eslint@7.32.0)(typescript@5.3.3)
'@typescript-eslint/parser':
specifier: ^6.17.0
- version: 6.17.0(eslint@7.0.0)(typescript@5.3.3)
+ version: 6.17.0(eslint@7.32.0)(typescript@5.3.3)
eslint:
specifier: '7'
- version: 7.0.0
+ version: 7.32.0
eslint-config-prettier:
specifier: ^9.1.0
- version: 9.1.0(eslint@7.0.0)
+ version: 9.1.0(eslint@7.32.0)
eslint-plugin-import:
specifier: ^2.29.1
- version: 2.29.1(@typescript-eslint/parser@6.17.0)(eslint@7.0.0)
+ version: 2.29.1(@typescript-eslint/parser@6.17.0)(eslint@7.32.0)
eslint-plugin-no-only-tests:
specifier: ^3.1.0
version: 3.1.0
eslint-plugin-promise:
specifier: ^6.1.1
- version: 6.1.1(eslint@7.0.0)
+ version: 6.1.1(eslint@7.32.0)
eslint-plugin-react:
specifier: ^7.33.2
- version: 7.33.2(eslint@7.0.0)
+ version: 7.33.2(eslint@7.32.0)
eslint-plugin-react-hooks:
specifier: ^4.6.0
- version: 4.6.0(eslint@7.0.0)
+ version: 4.6.0(eslint@7.32.0)
eslint-plugin-simple-import-sort:
specifier: ^10.0.0
- version: 10.0.0(eslint@7.0.0)
+ version: 10.0.0(eslint@7.32.0)
husky:
specifier: ^8.0.3
version: 8.0.3
@@ -64,13 +64,13 @@ importers:
version: 5.3.3
vitest:
specifier: ^1.1.1
- version: 1.1.1(@types/node@18.19.31)
+ version: 1.1.1(@types/node@18.19.17)
apps/cms:
dependencies:
'@amazeelabs/gatsby-source-silverback':
specifier: '*'
- version: 1.14.0(@types/node@18.19.31)(gatsby-plugin-sharp@5.13.1)(gatsby@5.13.3)(typescript@5.4.4)
+ version: 1.13.17(@types/node@18.19.17)(gatsby-plugin-sharp@5.13.1)(gatsby@5.13.1)(typescript@5.4.2)
'@custom/custom':
specifier: workspace:*
version: link:../../packages/drupal/custom
@@ -100,7 +100,7 @@ importers:
version: 1.0.1
'@amazeelabs/gatsby-source-silverback':
specifier: '*'
- version: 1.14.0(@types/node@18.0.0)(gatsby-plugin-sharp@5.13.1)(gatsby@5.13.3)(typescript@5.3.3)
+ version: 1.13.17(@types/node@18.19.4)(gatsby-plugin-sharp@5.13.1)(gatsby@5.13.1)(typescript@5.3.3)
'@amazeelabs/graphql-directives':
specifier: ^1.3.2
version: 1.3.2
@@ -112,10 +112,10 @@ importers:
version: link:../../packages/ui
decap-cms-app:
specifier: ^3.0.12
- version: 3.0.12(@types/node@18.0.0)(@types/react@18.2.46)(graphql@16.8.1)(react-dom@18.2.0)(react@18.2.0)
+ version: 3.0.12(@types/node@18.19.4)(@types/react@18.2.46)(graphql@16.8.1)(react-dom@18.2.0)(react@18.2.0)
decap-cms-core:
specifier: ^3.2.8
- version: 3.2.8(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/node@18.0.0)(@types/react@18.2.46)(decap-cms-editor-component-image@3.1.1)(decap-cms-lib-auth@3.0.5)(decap-cms-lib-util@3.0.4)(decap-cms-lib-widgets@3.0.2)(decap-cms-ui-default@3.1.1)(immutable@3.8.2)(lodash@4.17.21)(moment@2.30.1)(prop-types@15.8.1)(react-dom@18.2.0)(react-immutable-proptypes@2.2.0)(react@18.2.0)
+ version: 3.2.8(@emotion/react@11.11.3)(@emotion/styled@11.11.0)(@types/node@18.19.4)(@types/react@18.2.46)(decap-cms-editor-component-image@3.0.0)(decap-cms-lib-auth@3.0.2)(decap-cms-lib-util@3.0.2)(decap-cms-lib-widgets@3.0.0)(decap-cms-ui-default@3.1.0)(immutable@3.8.2)(lodash@4.17.21)(moment@2.30.1)(prop-types@15.8.1)(react-dom@18.2.0)(react-immutable-proptypes@2.2.0)(react@18.2.0)
graphql:
specifier: 16.8.1
version: 16.8.1
@@ -152,10 +152,10 @@ importers:
devDependencies:
'@amazeelabs/decap-cms-backend-token-auth':
specifier: ^1.1.7
- version: 1.1.7(@emotion/react@11.11.4)(@types/react@18.2.46)(decap-cms-lib-auth@3.0.5)(immutable@3.8.2)(lodash@4.17.21)(prop-types@15.8.1)(react-dom@18.2.0)(react@18.2.0)
+ version: 1.1.7(@emotion/react@11.11.3)(@types/react@18.2.46)(decap-cms-lib-auth@3.0.2)(immutable@3.8.2)(lodash@4.17.21)(prop-types@15.8.1)(react-dom@18.2.0)(react@18.2.0)
'@types/node':
specifier: ^18
- version: 18.0.0
+ version: 18.19.4
'@types/react':
specifier: ^18.2.46
version: 18.2.46
@@ -176,13 +176,13 @@ importers:
version: 1.3.24
tsup:
specifier: ^8.0.1
- version: 8.0.1(postcss@8.4.38)(typescript@5.3.3)
+ version: 8.0.1(typescript@5.3.3)
typescript:
specifier: ^5.3.3
version: 5.3.3
vite:
specifier: ^5.0.10
- version: 5.0.10(@types/node@18.0.0)
+ version: 5.0.10(@types/node@18.19.4)
apps/website:
dependencies:
@@ -194,7 +194,7 @@ importers:
version: 1.6.15
'@amazeelabs/decap-cms-backend-token-auth':
specifier: ^1.1.7
- version: 1.1.7(@emotion/react@11.11.4)(@types/react@18.2.46)(decap-cms-lib-auth@3.0.5)(immutable@3.8.2)(lodash@4.17.21)(prop-types@15.8.1)(react-dom@18.2.0)(react@18.2.0)
+ version: 1.1.7(@emotion/react@11.11.3)(@types/react@18.2.46)(decap-cms-lib-auth@3.0.2)(immutable@3.8.2)(lodash@4.17.21)(prop-types@15.8.1)(react-dom@18.2.0)(react@18.2.0)
'@amazeelabs/gatsby-plugin-operations':
specifier: ^1.1.3
version: 1.1.3
@@ -203,7 +203,7 @@ importers:
version: 1.0.1
'@amazeelabs/gatsby-source-silverback':
specifier: ^1.14.0
- version: 1.14.0(@types/node@18.19.31)(gatsby-plugin-sharp@5.13.1)(gatsby@5.13.1)(typescript@4.9.5)
+ version: 1.14.0(@types/node@18.19.17)(gatsby-plugin-sharp@5.13.1)(gatsby@5.13.1)(typescript@4.9.5)
'@amazeelabs/publisher':
specifier: ^2.4.17
version: 2.4.17(@types/react@18.2.46)(react@18.2.0)(typescript@4.9.5)
@@ -236,7 +236,7 @@ importers:
version: 5.13.0(gatsby@5.13.1)(graphql@16.8.1)
gatsby-plugin-netlify:
specifier: ^5.1.1
- version: 5.1.1(gatsby@5.13.1)(webpack@5.91.0)
+ version: 5.1.1(gatsby@5.13.1)(webpack@5.89.0)
gatsby-plugin-pnpm:
specifier: ^1.2.10
version: 1.2.10(gatsby@5.13.1)
@@ -263,7 +263,7 @@ importers:
version: 2.1.35
netlify-cli:
specifier: ^17.21.1
- version: 17.21.1(@types/node@18.19.31)
+ version: 17.21.1(@types/node@18.19.17)
react:
specifier: ^18.2.0
version: 18.2.0
@@ -297,7 +297,7 @@ importers:
version: 2.0.3
vitest:
specifier: ^1.1.1
- version: 1.1.1(@types/node@18.19.31)(happy-dom@12.10.3)
+ version: 1.1.1(@types/node@18.19.17)(happy-dom@12.10.3)
packages/drupal/custom: {}
@@ -307,7 +307,7 @@ importers:
dependencies:
'@types/node':
specifier: ^18
- version: 18.0.0
+ version: 18.19.4
clsx:
specifier: ^2.1.0
version: 2.1.0
@@ -362,7 +362,7 @@ importers:
version: 5.3.3
vite:
specifier: ^5.0.10
- version: 5.0.10(@types/node@18.0.0)
+ version: 5.0.10(@types/node@18.19.4)
packages/drupal/test_content: {}
@@ -376,10 +376,10 @@ importers:
version: 1.2.7
'@amazeelabs/gatsby-source-silverback':
specifier: ^1.14.0
- version: 1.14.0(@types/node@18.0.0)(gatsby-plugin-sharp@5.13.1)(gatsby@5.13.1)(typescript@5.3.3)
+ version: 1.14.0(@types/node@18.19.4)(gatsby-plugin-sharp@5.13.1)(gatsby@5.13.1)(typescript@5.3.3)
'@amazeelabs/scalars':
specifier: ^1.6.13
- version: 1.6.13(react@18.2.0)(tailwindcss@3.4.3)
+ version: 1.6.13(react@18.2.0)(tailwindcss@3.4.0)
'@swc/cli':
specifier: ^0.1.63
version: 0.1.63(@swc/core@1.3.102)
@@ -401,7 +401,7 @@ importers:
version: 0.1.34(graphql@16.8.1)
'@graphql-codegen/cli':
specifier: ^5.0.0
- version: 5.0.0(@types/node@18.0.0)(graphql@16.8.1)(typescript@5.3.3)
+ version: 5.0.0(@types/node@18.19.4)(graphql@16.8.1)(typescript@5.3.3)
'@graphql-codegen/schema-ast':
specifier: ^4.0.0
version: 4.0.0(graphql@16.8.1)
@@ -416,7 +416,7 @@ importers:
version: 0.8.0
'@types/node':
specifier: ^18
- version: 18.0.0
+ version: 18.19.4
'@types/react':
specifier: ^18.2.46
version: 18.2.46
@@ -450,6 +450,39 @@ importers:
'@hookform/resolvers':
specifier: ^3.3.3
version: 3.3.3(react-hook-form@7.49.2)
+ '@radix-ui/react-accordion':
+ specifier: ^1.1.2
+ version: 1.1.2(@types/react-dom@18.2.18)(@types/react@18.2.46)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-alert-dialog':
+ specifier: ^1.0.5
+ version: 1.0.5(@types/react-dom@18.2.18)(@types/react@18.2.46)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-context-menu':
+ specifier: ^2.1.5
+ version: 2.1.5(@types/react-dom@18.2.18)(@types/react@18.2.46)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-dialog':
+ specifier: ^1.0.5
+ version: 1.0.5(@types/react-dom@18.2.18)(@types/react@18.2.46)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-dropdown-menu':
+ specifier: ^2.0.6
+ version: 2.0.6(@types/react-dom@18.2.18)(@types/react@18.2.46)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-icons':
+ specifier: ^1.3.0
+ version: 1.3.0(react@18.2.0)
+ '@radix-ui/react-navigation-menu':
+ specifier: ^1.1.4
+ version: 1.1.4(@types/react-dom@18.2.18)(@types/react@18.2.46)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-popover':
+ specifier: ^1.0.7
+ version: 1.0.7(@types/react-dom@18.2.18)(@types/react@18.2.46)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-slot':
+ specifier: ^1.0.2
+ version: 1.0.2(@types/react@18.2.46)(react@18.2.0)
+ '@tailwindcss/line-clamp':
+ specifier: ^0.4.4
+ version: 0.4.4(tailwindcss@3.4.0)
+ class-variance-authority:
+ specifier: ^0.7.0
+ version: 0.7.0
clsx:
specifier: ^2.1.0
version: 2.1.0
@@ -474,6 +507,12 @@ importers:
swr:
specifier: ^2.2.4
version: 2.2.4(react@18.2.0)
+ tailwind-merge:
+ specifier: ^2.2.1
+ version: 2.2.1
+ tailwindcss-animate:
+ specifier: ^1.0.7
+ version: 1.0.7(tailwindcss@3.4.0)
unified:
specifier: ^10.1.2
version: 10.1.2
@@ -522,7 +561,7 @@ importers:
version: 8.0.0-alpha.14(jest@29.7.0)(vitest@1.1.1)
'@storybook/test-runner':
specifier: ^0.16.0
- version: 0.16.0(@types/node@18.19.31)
+ version: 0.16.0(@types/node@18.19.17)
'@swc/cli':
specifier: ^0.1.63
version: 0.1.63(@swc/core@1.3.102)
@@ -615,7 +654,7 @@ importers:
version: 5.3.3
vite:
specifier: ^5.0.10
- version: 5.0.10(@types/node@18.19.31)
+ version: 5.0.10(@types/node@18.19.17)
vite-imagetools:
specifier: ^6.2.9
version: 6.2.9
@@ -624,7 +663,7 @@ importers:
version: 1.0.3
vitest:
specifier: ^1.1.1
- version: 1.1.1(@types/node@18.19.31)(happy-dom@12.10.3)
+ version: 1.1.1(@types/node@18.19.17)(happy-dom@12.10.3)
tests/e2e:
devDependencies:
@@ -636,13 +675,13 @@ importers:
version: 1.40.1
'@types/node':
specifier: ^18
- version: 18.0.0
+ version: 18.19.4
tests/schema:
devDependencies:
'@types/node':
specifier: ^18
- version: 18.0.0
+ version: 18.19.4
'@vitest/ui':
specifier: ^1.1.1
version: 1.1.1(vitest@1.1.1)
@@ -657,16 +696,17 @@ importers:
version: 2.0.3
vitest:
specifier: ^1.1.1
- version: 1.1.1(@types/node@18.0.0)(@vitest/ui@1.1.1)
+ version: 1.1.1(@types/node@18.19.4)(@vitest/ui@1.1.1)
packages:
/@aashutoshrathi/word-wrap@1.2.6:
resolution: {integrity: sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==}
engines: {node: '>=0.10.0'}
+ requiresBuild: true
- /@adobe/css-tools@4.3.3:
- resolution: {integrity: sha512-rE0Pygv0sEZ4vBWHlAgJLGDU7Pm8xoO6p3wsEceb7GYAjScrOHpEo8KK/eVkAcnSM+slAEtXjA2JpdjLp4fJQQ==}
+ /@adobe/css-tools@4.3.2:
+ resolution: {integrity: sha512-DA5a1C0gD/pLOvhv33YMrbf2FK3oUzwNl9oOJqE4XVjuEtt6XIakRcsd7eLiOSPkp1kTRQGICTA8cKra/vFbjw==}
dev: true
/@alloc/quick-lru@5.2.0:
@@ -682,8 +722,8 @@ packages:
gatsby: 5.13.1(babel-eslint@10.1.0)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5)
react: 18.2.0
optionalDependencies:
- '@types/react': 18.2.46
- typescript: 5.4.4
+ '@types/react': 18.2.60
+ typescript: 5.4.2
vitest: 0.34.6(happy-dom@12.10.3)
transitivePeerDependencies:
- '@edge-runtime/vm'
@@ -712,8 +752,8 @@ packages:
'@storybook/addon-actions': 7.6.7
react: 18.2.0
optionalDependencies:
- '@types/react': 18.2.46
- typescript: 5.4.4
+ '@types/react': 18.2.60
+ typescript: 5.4.2
vitest: 0.34.6(happy-dom@12.10.3)
transitivePeerDependencies:
- '@edge-runtime/vm'
@@ -740,8 +780,8 @@ packages:
dependencies:
react: 18.2.0
optionalDependencies:
- '@types/react': 18.2.46
- typescript: 5.4.4
+ '@types/react': 18.2.60
+ typescript: 5.4.2
vitest: 0.34.6
transitivePeerDependencies:
- '@edge-runtime/vm'
@@ -764,13 +804,13 @@ packages:
/@amazeelabs/cloudinary-responsive-image@1.6.15:
resolution: {integrity: sha512-Udofw1VEUuqWmztBb46TvjWra/ijmxrNXFqglN6OgAdM0tzmHW5XQ1XLiiiLWAc9An756t84ZxmXlqone/X7mQ==}
dependencies:
- '@cloudinary/url-gen': 1.19.0
+ '@cloudinary/url-gen': 1.14.0
crypto-js: 4.2.0
/@amazeelabs/codegen-autoloader@1.1.3:
resolution: {integrity: sha512-d09i/xpfHu/CYXKPxojDIIqXQqmUkXvhUN56VhF6II5az/xIg9uBnus/IPbjg7Klaa/6LWK/hbxseNvI+Jq3wA==}
dependencies:
- '@graphql-codegen/plugin-helpers': 5.0.3(graphql@16.8.1)
+ '@graphql-codegen/plugin-helpers': 5.0.1(graphql@16.8.1)
graphql: 16.8.1
dev: true
@@ -779,25 +819,25 @@ packages:
peerDependencies:
graphql: '> 14'
dependencies:
- '@graphql-codegen/plugin-helpers': 5.0.3(graphql@16.8.1)
- '@graphql-codegen/visitor-plugin-common': 4.1.2(graphql@16.8.1)
+ '@graphql-codegen/plugin-helpers': 5.0.1(graphql@16.8.1)
+ '@graphql-codegen/visitor-plugin-common': 4.0.1(graphql@16.8.1)
graphql: 16.8.1
transitivePeerDependencies:
- encoding
- supports-color
dev: true
- /@amazeelabs/decap-cms-backend-token-auth@1.1.7(@emotion/react@11.11.4)(@types/react@18.2.46)(decap-cms-lib-auth@3.0.5)(immutable@3.8.2)(lodash@4.17.21)(prop-types@15.8.1)(react-dom@18.2.0)(react@18.2.0):
+ /@amazeelabs/decap-cms-backend-token-auth@1.1.7(@emotion/react@11.11.3)(@types/react@18.2.46)(decap-cms-lib-auth@3.0.2)(immutable@3.8.2)(lodash@4.17.21)(prop-types@15.8.1)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-DvhrEzR0X0BrhF+vBCVU+qC76UrZj0mM117ij+gTz8U+6P+kjfy6IuMsWfvz+SvO1zqetG458y2mG7m8ZdUh/w==}
peerDependencies:
react: ^18.2.0
react-dom: ^18.2.0
dependencies:
'@amazeelabs/token-auth-middleware': 1.1.1
- '@emotion/styled': 11.11.5(@emotion/react@11.11.4)(@types/react@18.2.46)(react@18.2.0)
- decap-cms-backend-github: 3.1.2(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(decap-cms-lib-auth@3.0.5)(decap-cms-lib-util@3.0.4)(decap-cms-ui-default@3.1.1)(lodash@4.17.21)(prop-types@15.8.1)(react@18.2.0)
- decap-cms-lib-util: 3.0.4(immutable@3.8.2)(lodash@4.17.21)
- decap-cms-ui-default: 3.1.1(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(lodash@4.17.21)(prop-types@15.8.1)(react-dom@18.2.0)(react@18.2.0)
+ '@emotion/styled': 11.11.0(@emotion/react@11.11.3)(@types/react@18.2.46)(react@18.2.0)
+ decap-cms-backend-github: 3.1.0(@emotion/react@11.11.3)(@emotion/styled@11.11.0)(decap-cms-lib-auth@3.0.2)(decap-cms-lib-util@3.0.2)(decap-cms-ui-default@3.1.0)(lodash@4.17.21)(prop-types@15.8.1)(react@18.2.0)
+ decap-cms-lib-util: 3.0.2(immutable@3.8.2)(lodash@4.17.21)
+ decap-cms-ui-default: 3.1.0(@emotion/react@11.11.3)(@emotion/styled@11.11.0)(lodash@4.17.21)(prop-types@15.8.1)(react-dom@18.2.0)(react@18.2.0)
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
transitivePeerDependencies:
@@ -808,23 +848,23 @@ packages:
- lodash
- prop-types
- /@amazeelabs/eslint-config@1.4.43(eslint@7.32.0)(tailwindcss@3.4.3)(typescript@5.4.4):
+ /@amazeelabs/eslint-config@1.4.43(eslint@7.32.0)(tailwindcss@3.4.0)(typescript@5.4.2):
resolution: {integrity: sha512-PsXbfV/R1Xu26ToEZFrnJKzC6MlTH2MLV4XbyX9nT4CO9Y+SHbDJu9qUeXYENbUYED1TyRv6BsCw+NEmRBg39A==}
requiresBuild: true
peerDependencies:
eslint: ^8.36.0
dependencies:
- '@typescript-eslint/eslint-plugin': 5.62.0(@typescript-eslint/parser@5.62.0)(eslint@7.32.0)(typescript@5.4.4)
+ '@typescript-eslint/eslint-plugin': 5.62.0(@typescript-eslint/parser@5.62.0)(eslint@7.32.0)(typescript@5.4.2)
'@typescript-eslint/parser': 5.62.0(eslint@7.32.0)(typescript@5.3.3)
eslint: 7.32.0
eslint-config-prettier: 8.10.0(eslint@7.32.0)
eslint-plugin-import: 2.29.1(@typescript-eslint/parser@5.62.0)(eslint@7.32.0)
eslint-plugin-no-only-tests: 3.1.0
eslint-plugin-promise: 6.1.1(eslint@7.32.0)
- eslint-plugin-react: 7.34.1(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-simple-import-sort: 10.0.0(eslint@7.32.0)
- eslint-plugin-tailwindcss: 3.15.1(tailwindcss@3.4.3)
+ eslint-plugin-tailwindcss: 3.13.1(tailwindcss@3.4.0)
transitivePeerDependencies:
- eslint-import-resolver-typescript
- eslint-import-resolver-webpack
@@ -848,9 +888,9 @@ packages:
/@amazeelabs/gatsby-plugin-operations@1.1.3:
resolution: {integrity: sha512-Gus1zi/GAktsYvuMTjTQn1EqWL6jDzwuKDwnLaVBI4oxnGTRr2QF8mPpItmb8VsXDon1qgsFlGtMD+p0MAN+5A==}
dependencies:
- '@babel/core': 7.24.4
- '@babel/preset-react': 7.24.1(@babel/core@7.24.4)
- '@babel/preset-typescript': 7.24.1(@babel/core@7.24.4)
+ '@babel/core': 7.23.7
+ '@babel/preset-react': 7.23.3(@babel/core@7.23.7)
+ '@babel/preset-typescript': 7.23.3(@babel/core@7.23.7)
transitivePeerDependencies:
- supports-color
dev: false
@@ -867,8 +907,8 @@ packages:
resolution: {integrity: sha512-LUhtYau6zFZPTtE0hut0MmoTu4eFI9YUkiBNLHN02EsZlCrPrP0pdyWTqByGsL10WIvQ4bry0dPotKoqZVnx8g==}
dev: false
- /@amazeelabs/gatsby-source-silverback@1.14.0(@types/node@18.0.0)(gatsby-plugin-sharp@5.13.1)(gatsby@5.13.1)(typescript@5.3.3):
- resolution: {integrity: sha512-tIL4lPx7mQDBH5XiouXgTEhOIXF/oKDss0OYbHJEbxXVofv4IDifZcZZO1Hw9oWmrTSaJhYoC2Bdm+2kdvxf6g==}
+ /@amazeelabs/gatsby-source-silverback@1.13.17(@types/node@18.19.17)(gatsby-plugin-sharp@5.13.1)(gatsby@5.13.1)(typescript@5.4.2):
+ resolution: {integrity: sha512-Y2siMXKiPE40j+RxcWVwB6rI7XLjSdfQPlRiv0cnXRM5o8nFEVjpjONhciN+F7l16XwoL1tRelXMfcs+/iGg6g==}
peerDependencies:
gatsby-plugin-sharp: ^5.13.1
dependencies:
@@ -877,7 +917,7 @@ packages:
gatsby-graphql-source-toolkit: 2.0.4(gatsby@5.13.1)
gatsby-plugin-sharp: 5.13.1(gatsby@5.13.1)(graphql@16.8.1)
graphql: 16.8.1
- graphql-config: 5.0.3(@types/node@18.0.0)(graphql@16.8.1)(typescript@5.3.3)
+ graphql-config: 5.0.3(@types/node@18.19.17)(graphql@16.8.1)(typescript@5.4.2)
isomorphic-fetch: 3.0.0
lodash-es: 4.17.21
node-fetch: 3.3.2
@@ -892,17 +932,17 @@ packages:
- utf-8-validate
dev: false
- /@amazeelabs/gatsby-source-silverback@1.14.0(@types/node@18.0.0)(gatsby-plugin-sharp@5.13.1)(gatsby@5.13.3)(typescript@5.3.3):
- resolution: {integrity: sha512-tIL4lPx7mQDBH5XiouXgTEhOIXF/oKDss0OYbHJEbxXVofv4IDifZcZZO1Hw9oWmrTSaJhYoC2Bdm+2kdvxf6g==}
+ /@amazeelabs/gatsby-source-silverback@1.13.17(@types/node@18.19.4)(gatsby-plugin-sharp@5.13.1)(gatsby@5.13.1)(typescript@5.3.3):
+ resolution: {integrity: sha512-Y2siMXKiPE40j+RxcWVwB6rI7XLjSdfQPlRiv0cnXRM5o8nFEVjpjONhciN+F7l16XwoL1tRelXMfcs+/iGg6g==}
peerDependencies:
gatsby-plugin-sharp: ^5.13.1
dependencies:
'@amazeelabs/graphql-directives': 1.3.2
fetch-retry: 5.0.6
- gatsby-graphql-source-toolkit: 2.0.4(gatsby@5.13.3)
- gatsby-plugin-sharp: 5.13.1(gatsby@5.13.3)(graphql@16.8.1)
+ gatsby-graphql-source-toolkit: 2.0.4(gatsby@5.13.1)
+ gatsby-plugin-sharp: 5.13.1(gatsby@5.13.1)(graphql@16.8.1)
graphql: 16.8.1
- graphql-config: 5.0.3(@types/node@18.0.0)(graphql@16.8.1)(typescript@5.3.3)
+ graphql-config: 5.0.3(@types/node@18.19.4)(graphql@16.8.1)(typescript@5.3.3)
isomorphic-fetch: 3.0.0
lodash-es: 4.17.21
node-fetch: 3.3.2
@@ -917,7 +957,7 @@ packages:
- utf-8-validate
dev: false
- /@amazeelabs/gatsby-source-silverback@1.14.0(@types/node@18.19.31)(gatsby-plugin-sharp@5.13.1)(gatsby@5.13.1)(typescript@4.9.5):
+ /@amazeelabs/gatsby-source-silverback@1.14.0(@types/node@18.19.17)(gatsby-plugin-sharp@5.13.1)(gatsby@5.13.1)(typescript@4.9.5):
resolution: {integrity: sha512-tIL4lPx7mQDBH5XiouXgTEhOIXF/oKDss0OYbHJEbxXVofv4IDifZcZZO1Hw9oWmrTSaJhYoC2Bdm+2kdvxf6g==}
peerDependencies:
gatsby-plugin-sharp: ^5.13.1
@@ -927,7 +967,7 @@ packages:
gatsby-graphql-source-toolkit: 2.0.4(gatsby@5.13.1)
gatsby-plugin-sharp: 5.13.1(gatsby@5.13.1)(graphql@16.8.1)
graphql: 16.8.1
- graphql-config: 5.0.3(@types/node@18.19.31)(graphql@16.8.1)(typescript@4.9.5)
+ graphql-config: 5.0.3(@types/node@18.19.17)(graphql@16.8.1)(typescript@4.9.5)
isomorphic-fetch: 3.0.0
lodash-es: 4.17.21
node-fetch: 3.3.2
@@ -942,17 +982,17 @@ packages:
- utf-8-validate
dev: false
- /@amazeelabs/gatsby-source-silverback@1.14.0(@types/node@18.19.31)(gatsby-plugin-sharp@5.13.1)(gatsby@5.13.3)(typescript@5.4.4):
+ /@amazeelabs/gatsby-source-silverback@1.14.0(@types/node@18.19.4)(gatsby-plugin-sharp@5.13.1)(gatsby@5.13.1)(typescript@5.3.3):
resolution: {integrity: sha512-tIL4lPx7mQDBH5XiouXgTEhOIXF/oKDss0OYbHJEbxXVofv4IDifZcZZO1Hw9oWmrTSaJhYoC2Bdm+2kdvxf6g==}
peerDependencies:
gatsby-plugin-sharp: ^5.13.1
dependencies:
'@amazeelabs/graphql-directives': 1.3.2
fetch-retry: 5.0.6
- gatsby-graphql-source-toolkit: 2.0.4(gatsby@5.13.3)
- gatsby-plugin-sharp: 5.13.1(gatsby@5.13.3)(graphql@16.8.1)
+ gatsby-graphql-source-toolkit: 2.0.4(gatsby@5.13.1)
+ gatsby-plugin-sharp: 5.13.1(gatsby@5.13.1)(graphql@16.8.1)
graphql: 16.8.1
- graphql-config: 5.0.3(@types/node@18.19.31)(graphql@16.8.1)(typescript@5.4.4)
+ graphql-config: 5.0.3(@types/node@18.19.4)(graphql@16.8.1)(typescript@5.3.3)
isomorphic-fetch: 3.0.0
lodash-es: 4.17.21
node-fetch: 3.3.2
@@ -973,13 +1013,13 @@ packages:
lodash-es: 4.17.21
dev: false
- /@amazeelabs/prettier-config@1.1.3(prettier@3.2.5):
+ /@amazeelabs/prettier-config@1.1.3(prettier@3.1.1):
resolution: {integrity: sha512-8rXi0u74lJz6iKQZBhTb6A1ohdO2eD/KEt8ee71O5S6KqeKSmQID++6c934Sfo7EnUp8tXYA1qKbW8CipUXZAQ==}
requiresBuild: true
peerDependencies:
prettier: ^2.8.6
dependencies:
- prettier: 3.2.5
+ prettier: 3.1.1
dev: false
optional: true
@@ -1017,9 +1057,9 @@ packages:
node-fetch: 3.3.2
referrer-policy: 1.2.0
rxjs: 7.8.1
- sequelize: 6.37.2(sqlite3@5.1.7)
+ sequelize: 6.35.2(sqlite3@5.1.6)
simple-oauth2: 5.0.0
- sqlite3: 5.1.7
+ sqlite3: 5.1.6
strip-ansi: 7.1.0
terminate: 2.6.1
ts-import: 4.0.0-beta.10(typescript@4.9.5)
@@ -1030,6 +1070,7 @@ packages:
- bluebird
- bufferutil
- debug
+ - encoding
- ibm_db
- immer
- mariadb
@@ -1053,28 +1094,28 @@ packages:
- supports-color
dev: true
- /@amazeelabs/scalars@1.6.13(react@18.2.0)(tailwindcss@3.4.3):
+ /@amazeelabs/scalars@1.6.13(react@18.2.0)(tailwindcss@3.4.0):
resolution: {integrity: sha512-XhIdqShLa0cW3TSY+dZU/xnAiRorQ4rXnAT3+A+LYnF8mGprZC4UsbyMmt79YYz6Plkgpa1qEQ0Um50bN+p8xQ==}
peerDependencies:
react: ^18.2.0
dependencies:
'@amazeelabs/bridge': 1.5.7(react@18.2.0)
hast-util-select: 5.0.5
- query-string: 8.2.0
+ query-string: 8.1.0
react: 18.2.0
rehype-parse: 8.0.5
- rehype-react: 7.2.0(@types/react@18.2.46)
+ rehype-react: 7.2.0(@types/react@18.2.60)
rehype-slug: 5.1.0
- remeda: 1.58.0
+ remeda: 1.33.0
unified: 10.1.2
optionalDependencies:
- '@amazeelabs/eslint-config': 1.4.43(eslint@7.32.0)(tailwindcss@3.4.3)(typescript@5.4.4)
- '@amazeelabs/prettier-config': 1.1.3(prettier@3.2.5)
- '@types/hast': 2.3.10
- '@types/react': 18.2.46
+ '@amazeelabs/eslint-config': 1.4.43(eslint@7.32.0)(tailwindcss@3.4.0)(typescript@5.4.2)
+ '@amazeelabs/prettier-config': 1.1.3(prettier@3.1.1)
+ '@types/hast': 2.3.9
+ '@types/react': 18.2.60
eslint: 7.32.0
- prettier: 3.2.5
- typescript: 5.4.4
+ prettier: 3.1.1
+ typescript: 5.4.2
vitest: 0.34.6
transitivePeerDependencies:
- '@edge-runtime/vm'
@@ -1117,7 +1158,7 @@ packages:
'@netlify/functions': 2.6.0
react: 18.2.0
optionalDependencies:
- typescript: 5.4.4
+ typescript: 5.4.2
vitest: 0.34.6(happy-dom@12.10.3)
transitivePeerDependencies:
- '@edge-runtime/vm'
@@ -1140,12 +1181,12 @@ packages:
/@amazeelabs/token-auth-middleware@1.1.1:
resolution: {integrity: sha512-Wzz3ZbccMQ0EkYupue3xzL0OB7A+nenKRXmjMKu15pMDUzisC207MluGIFizf7ftcW+KTLBslEwxlN1ayZFwJA==}
- /@ampproject/remapping@2.3.0:
- resolution: {integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==}
+ /@ampproject/remapping@2.2.1:
+ resolution: {integrity: sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg==}
engines: {node: '>=6.0.0'}
dependencies:
- '@jridgewell/gen-mapping': 0.3.5
- '@jridgewell/trace-mapping': 0.3.25
+ '@jridgewell/gen-mapping': 0.3.3
+ '@jridgewell/trace-mapping': 0.3.20
/@ardatan/relay-compiler@12.0.0(graphql@16.8.1):
resolution: {integrity: sha512-9anThAaj1dQr6IGmzBMcfzOQKTa5artjuPmw8NYK/fiGEMjADbSguBY2FMDykt+QhilR3wc9VA/3yVju7JHg7Q==}
@@ -1153,13 +1194,13 @@ packages:
peerDependencies:
graphql: '*'
dependencies:
- '@babel/core': 7.24.4
- '@babel/generator': 7.24.4
- '@babel/parser': 7.24.4
- '@babel/runtime': 7.24.4
- '@babel/traverse': 7.24.1
- '@babel/types': 7.24.0
- babel-preset-fbjs: 3.4.0(@babel/core@7.24.4)
+ '@babel/core': 7.23.7
+ '@babel/generator': 7.23.6
+ '@babel/parser': 7.23.6
+ '@babel/runtime': 7.23.7
+ '@babel/traverse': 7.23.7
+ '@babel/types': 7.23.6
+ babel-preset-fbjs: 3.4.0(@babel/core@7.23.7)
chalk: 4.1.2
fb-watchman: 2.0.2
fbjs: 3.0.5
@@ -1192,34 +1233,36 @@ packages:
/@babel/code-frame@7.12.11:
resolution: {integrity: sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw==}
+ requiresBuild: true
dependencies:
- '@babel/highlight': 7.24.2
+ '@babel/highlight': 7.23.4
- /@babel/code-frame@7.24.2:
- resolution: {integrity: sha512-y5+tLQyV8pg3fsiln67BVLD1P13Eg4lh5RW9mF0zUuvLrv9uIQ4MCL+CRT+FTsBlBjcIan6PGsLcBN0m3ClUyQ==}
+ /@babel/code-frame@7.23.5:
+ resolution: {integrity: sha512-CgH3s1a96LipHCmSUmYFPwY7MNx8C3avkq7i4Wl3cfa662ldtUe4VM1TPXX70pfmrlWTb6jLqTYrZyT2ZTJBgA==}
engines: {node: '>=6.9.0'}
+ requiresBuild: true
dependencies:
- '@babel/highlight': 7.24.2
- picocolors: 1.0.0
+ '@babel/highlight': 7.23.4
+ chalk: 2.4.2
- /@babel/compat-data@7.24.4:
- resolution: {integrity: sha512-vg8Gih2MLK+kOkHJp4gBEIkyaIi00jgWot2D9QOmmfLC8jINSOzmCLta6Bvz/JSBCqnegV0L80jhxkol5GWNfQ==}
+ /@babel/compat-data@7.23.5:
+ resolution: {integrity: sha512-uU27kfDRlhfKl+w1U6vp16IuvSLtjAxdArVXPa9BvLkrr7CYIsxH5adpHObeAGY/41+syctUWOZ140a2Rvkgjw==}
engines: {node: '>=6.9.0'}
- /@babel/core@7.24.4:
- resolution: {integrity: sha512-MBVlMXP+kkl5394RBLSxxk/iLTeVGuXTV3cIDXavPpMMqnSnt6apKgan/U8O3USWZCWZT/TbgfEpKa4uMgN4Dg==}
+ /@babel/core@7.23.7:
+ resolution: {integrity: sha512-+UpDgowcmqe36d4NwqvKsyPMlOLNGMsfMmQ5WGCu+siCe3t3dfe9njrzGfdN4qq+bcNUt0+Vw6haRxBOycs4dw==}
engines: {node: '>=6.9.0'}
dependencies:
- '@ampproject/remapping': 2.3.0
- '@babel/code-frame': 7.24.2
- '@babel/generator': 7.24.4
+ '@ampproject/remapping': 2.2.1
+ '@babel/code-frame': 7.23.5
+ '@babel/generator': 7.23.6
'@babel/helper-compilation-targets': 7.23.6
- '@babel/helper-module-transforms': 7.23.3(@babel/core@7.24.4)
- '@babel/helpers': 7.24.4
- '@babel/parser': 7.24.4
- '@babel/template': 7.24.0
- '@babel/traverse': 7.24.1
- '@babel/types': 7.24.0
+ '@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.7)
+ '@babel/helpers': 7.23.7
+ '@babel/parser': 7.23.6
+ '@babel/template': 7.22.15
+ '@babel/traverse': 7.23.7
+ '@babel/types': 7.23.6
convert-source-map: 2.0.0
debug: 4.3.4
gensync: 1.0.0-beta.2
@@ -1228,86 +1271,86 @@ packages:
transitivePeerDependencies:
- supports-color
- /@babel/eslint-parser@7.24.1(@babel/core@7.24.4)(eslint@7.32.0):
- resolution: {integrity: sha512-d5guuzMlPeDfZIbpQ8+g1NaCNuAGBBGNECh0HVqz1sjOeVLh2CEaifuOysCH18URW6R7pqXINvf5PaR/dC6jLQ==}
+ /@babel/eslint-parser@7.23.3(@babel/core@7.23.7)(eslint@7.32.0):
+ resolution: {integrity: sha512-9bTuNlyx7oSstodm1cR1bECj4fkiknsDa1YniISkJemMY3DGhJNYBECbe6QD/q54mp2J8VO66jW3/7uP//iFCw==}
engines: {node: ^10.13.0 || ^12.13.0 || >=14.0.0}
peerDependencies:
'@babel/core': ^7.11.0
eslint: ^7.5.0 || ^8.0.0
dependencies:
- '@babel/core': 7.24.4
+ '@babel/core': 7.23.7
'@nicolo-ribaudo/eslint-scope-5-internals': 5.1.1-v1
eslint: 7.32.0
eslint-visitor-keys: 2.1.0
semver: 6.3.1
- /@babel/generator@7.24.4:
- resolution: {integrity: sha512-Xd6+v6SnjWVx/nus+y0l1sxMOTOMBkyL4+BIdbALyatQnAe/SRVjANeDPSCYaX+i1iJmuGSKf3Z+E+V/va1Hvw==}
+ /@babel/generator@7.23.6:
+ resolution: {integrity: sha512-qrSfCYxYQB5owCmGLbl8XRpX1ytXlpueOb0N0UmQwA073KZxejgQTzAmJezxvpwQD9uGtK2shHdi55QT+MbjIw==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.24.0
- '@jridgewell/gen-mapping': 0.3.5
- '@jridgewell/trace-mapping': 0.3.25
+ '@babel/types': 7.23.6
+ '@jridgewell/gen-mapping': 0.3.3
+ '@jridgewell/trace-mapping': 0.3.20
jsesc: 2.5.2
/@babel/helper-annotate-as-pure@7.22.5:
resolution: {integrity: sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.24.0
+ '@babel/types': 7.23.6
/@babel/helper-builder-binary-assignment-operator-visitor@7.22.15:
resolution: {integrity: sha512-QkBXwGgaoC2GtGZRoma6kv7Szfv06khvhFav67ZExau2RaXzy8MpHSMO2PNoP2XtmQphJQRHFfg77Bq731Yizw==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.24.0
+ '@babel/types': 7.23.6
/@babel/helper-compilation-targets@7.23.6:
resolution: {integrity: sha512-9JB548GZoQVmzrFgp8o7KxdgkTGm6xs9DW0o/Pim72UDjzr5ObUQ6ZzYPqA+g9OTS2bBQoctLJrky0RDCAWRgQ==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/compat-data': 7.24.4
+ '@babel/compat-data': 7.23.5
'@babel/helper-validator-option': 7.23.5
- browserslist: 4.23.0
+ browserslist: 4.22.2
lru-cache: 5.1.1
semver: 6.3.1
- /@babel/helper-create-class-features-plugin@7.24.4(@babel/core@7.24.4):
- resolution: {integrity: sha512-lG75yeuUSVu0pIcbhiYMXBXANHrpUPaOfu7ryAzskCgKUHuAxRQI5ssrtmF0X9UXldPlvT0XM/A4F44OXRt6iQ==}
+ /@babel/helper-create-class-features-plugin@7.23.7(@babel/core@7.23.7):
+ resolution: {integrity: sha512-xCoqR/8+BoNnXOY7RVSgv6X+o7pmT5q1d+gGcRlXYkI+9B31glE4jeejhKVpA04O1AtzOt7OSQ6VYKP5FcRl9g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.24.4
+ '@babel/core': 7.23.7
'@babel/helper-annotate-as-pure': 7.22.5
'@babel/helper-environment-visitor': 7.22.20
'@babel/helper-function-name': 7.23.0
'@babel/helper-member-expression-to-functions': 7.23.0
'@babel/helper-optimise-call-expression': 7.22.5
- '@babel/helper-replace-supers': 7.24.1(@babel/core@7.24.4)
+ '@babel/helper-replace-supers': 7.22.20(@babel/core@7.23.7)
'@babel/helper-skip-transparent-expression-wrappers': 7.22.5
'@babel/helper-split-export-declaration': 7.22.6
semver: 6.3.1
- /@babel/helper-create-regexp-features-plugin@7.22.15(@babel/core@7.24.4):
+ /@babel/helper-create-regexp-features-plugin@7.22.15(@babel/core@7.23.7):
resolution: {integrity: sha512-29FkPLFjn4TPEa3RE7GpW+qbE8tlsu3jntNYNfcGsc49LphF1PQIiD+vMZ1z1xVOKt+93khA9tc2JBs3kBjA7w==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.24.4
+ '@babel/core': 7.23.7
'@babel/helper-annotate-as-pure': 7.22.5
regexpu-core: 5.3.2
semver: 6.3.1
- /@babel/helper-define-polyfill-provider@0.6.1(@babel/core@7.24.4):
- resolution: {integrity: sha512-o7SDgTJuvx5vLKD6SFvkydkSMBvahDKGiNJzG22IZYXhiqoe9efY7zocICBgzHV4IRg5wdgl2nEL/tulKIEIbA==}
+ /@babel/helper-define-polyfill-provider@0.4.4(@babel/core@7.23.7):
+ resolution: {integrity: sha512-QcJMILQCu2jm5TFPGA3lCpJJTeEP+mqeXooG/NZbg/h5FTFi6V0+99ahlRsW8/kRLyb24LZVCCiclDedhLKcBA==}
peerDependencies:
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
dependencies:
- '@babel/core': 7.24.4
+ '@babel/core': 7.23.7
'@babel/helper-compilation-targets': 7.23.6
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/helper-plugin-utils': 7.22.5
debug: 4.3.4
lodash.debounce: 4.0.8
resolve: 1.22.8
@@ -1322,36 +1365,36 @@ packages:
resolution: {integrity: sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/template': 7.24.0
- '@babel/types': 7.24.0
+ '@babel/template': 7.22.15
+ '@babel/types': 7.23.6
/@babel/helper-hoist-variables@7.22.5:
resolution: {integrity: sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.24.0
+ '@babel/types': 7.23.6
/@babel/helper-member-expression-to-functions@7.23.0:
resolution: {integrity: sha512-6gfrPwh7OuT6gZyJZvd6WbTfrqAo7vm4xCzAXOusKqq/vWdKXphTpj5klHKNmRUU6/QRGlBsyU9mAIPaWHlqJA==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.24.0
+ '@babel/types': 7.23.6
- /@babel/helper-module-imports@7.24.3:
- resolution: {integrity: sha512-viKb0F9f2s0BCS22QSF308z/+1YWKV/76mwt61NBzS5izMzDPwdq1pTrzf+Li3npBWX9KdQbkeCt1jSAM7lZqg==}
+ /@babel/helper-module-imports@7.22.15:
+ resolution: {integrity: sha512-0pYVBnDKZO2fnSPCrgM/6WMc7eS20Fbok+0r88fp+YtWVLZrp4CkafFGIp+W0VKw4a22sgebPT99y+FDNMdP4w==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.24.0
+ '@babel/types': 7.23.6
- /@babel/helper-module-transforms@7.23.3(@babel/core@7.24.4):
+ /@babel/helper-module-transforms@7.23.3(@babel/core@7.23.7):
resolution: {integrity: sha512-7bBs4ED9OmswdfDzpz4MpWgSrV7FXlc3zIagvLFjS5H+Mk7Snr21vQ6QwrsoCGMfNC4e4LQPdoULEt4ykz0SRQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.24.4
+ '@babel/core': 7.23.7
'@babel/helper-environment-visitor': 7.22.20
- '@babel/helper-module-imports': 7.24.3
+ '@babel/helper-module-imports': 7.22.15
'@babel/helper-simple-access': 7.22.5
'@babel/helper-split-export-declaration': 7.22.6
'@babel/helper-validator-identifier': 7.22.20
@@ -1360,30 +1403,30 @@ packages:
resolution: {integrity: sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.24.0
+ '@babel/types': 7.23.6
- /@babel/helper-plugin-utils@7.24.0:
- resolution: {integrity: sha512-9cUznXMG0+FxRuJfvL82QlTqIzhVW9sL0KjMPHhAOOvpQGL8QtdxnBKILjBqxlHyliz0yCa1G903ZXI/FuHy2w==}
+ /@babel/helper-plugin-utils@7.22.5:
+ resolution: {integrity: sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg==}
engines: {node: '>=6.9.0'}
- /@babel/helper-remap-async-to-generator@7.22.20(@babel/core@7.24.4):
+ /@babel/helper-remap-async-to-generator@7.22.20(@babel/core@7.23.7):
resolution: {integrity: sha512-pBGyV4uBqOns+0UvhsTO8qgl8hO89PmiDYv+/COyp1aeMcmfrfruz+/nCMFiYyFF/Knn0yfrC85ZzNFjembFTw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.24.4
+ '@babel/core': 7.23.7
'@babel/helper-annotate-as-pure': 7.22.5
'@babel/helper-environment-visitor': 7.22.20
'@babel/helper-wrap-function': 7.22.20
- /@babel/helper-replace-supers@7.24.1(@babel/core@7.24.4):
- resolution: {integrity: sha512-QCR1UqC9BzG5vZl8BMicmZ28RuUBnHhAMddD8yHFHDRH9lLTZ9uUPehX8ctVPT8l0TKblJidqcgUUKGVrePleQ==}
+ /@babel/helper-replace-supers@7.22.20(@babel/core@7.23.7):
+ resolution: {integrity: sha512-qsW0In3dbwQUbK8kejJ4R7IHVGwHJlV6lpG6UA7a9hSa2YEiAib+N1T2kr6PEeUT+Fl7najmSOS6SmAwCHK6Tw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.24.4
+ '@babel/core': 7.23.7
'@babel/helper-environment-visitor': 7.22.20
'@babel/helper-member-expression-to-functions': 7.23.0
'@babel/helper-optimise-call-expression': 7.22.5
@@ -1392,27 +1435,28 @@ packages:
resolution: {integrity: sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.24.0
+ '@babel/types': 7.23.6
/@babel/helper-skip-transparent-expression-wrappers@7.22.5:
resolution: {integrity: sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.24.0
+ '@babel/types': 7.23.6
/@babel/helper-split-export-declaration@7.22.6:
resolution: {integrity: sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.24.0
+ '@babel/types': 7.23.6
- /@babel/helper-string-parser@7.24.1:
- resolution: {integrity: sha512-2ofRCjnnA9y+wk8b9IAREroeUP02KHp431N2mhKniy2yKIDKpbrHv9eXwm8cBeWQYcJmzv5qKCu65P47eCF7CQ==}
+ /@babel/helper-string-parser@7.23.4:
+ resolution: {integrity: sha512-803gmbQdqwdf4olxrX4AJyFBV/RTr3rSmOj0rKwesmzlfhYNDEs+/iOcznzpNWlJlIlTJC2QfPFcHB6DlzdVLQ==}
engines: {node: '>=6.9.0'}
/@babel/helper-validator-identifier@7.22.20:
resolution: {integrity: sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==}
engines: {node: '>=6.9.0'}
+ requiresBuild: true
/@babel/helper-validator-option@7.23.5:
resolution: {integrity: sha512-85ttAOMLsr53VgXkTbkx8oA6YTfT4q7/HzXSLEYmjcSTJPMPQtvq1BD79Byep5xMUYbGRzEpDsjUf3dyp54IKw==}
@@ -1423,1058 +1467,1049 @@ packages:
engines: {node: '>=6.9.0'}
dependencies:
'@babel/helper-function-name': 7.23.0
- '@babel/template': 7.24.0
- '@babel/types': 7.24.0
+ '@babel/template': 7.22.15
+ '@babel/types': 7.23.6
- /@babel/helpers@7.24.4:
- resolution: {integrity: sha512-FewdlZbSiwaVGlgT1DPANDuCHaDMiOo+D/IDYRFYjHOuv66xMSJ7fQwwODwRNAPkADIO/z1EoF/l2BCWlWABDw==}
+ /@babel/helpers@7.23.7:
+ resolution: {integrity: sha512-6AMnjCoC8wjqBzDHkuqpa7jAKwvMo4dC+lr/TFBz+ucfulO1XMpDnwWPGBNwClOKZ8h6xn5N81W/R5OrcKtCbQ==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/template': 7.24.0
- '@babel/traverse': 7.24.1
- '@babel/types': 7.24.0
+ '@babel/template': 7.22.15
+ '@babel/traverse': 7.23.7
+ '@babel/types': 7.23.6
transitivePeerDependencies:
- supports-color
- /@babel/highlight@7.24.2:
- resolution: {integrity: sha512-Yac1ao4flkTxTteCDZLEvdxg2fZfz1v8M4QpaGypq/WPDqg3ijHYbDfs+LG5hvzSoqaSZ9/Z9lKSP3CjZjv+pA==}
+ /@babel/highlight@7.23.4:
+ resolution: {integrity: sha512-acGdbYSfp2WheJoJm/EBBBLh/ID8KDc64ISZ9DYtBmC8/Q204PZJLHyzeB5qMzJ5trcOkybd78M4x2KWsUq++A==}
engines: {node: '>=6.9.0'}
+ requiresBuild: true
dependencies:
'@babel/helper-validator-identifier': 7.22.20
chalk: 2.4.2
js-tokens: 4.0.0
- picocolors: 1.0.0
- /@babel/parser@7.24.4:
- resolution: {integrity: sha512-zTvEBcghmeBma9QIGunWevvBAp4/Qu9Bdq+2k0Ot4fVMD6v3dsC9WOcRSKk7tRRyBM/53yKMJko9xOatGQAwSg==}
+ /@babel/parser@7.23.6:
+ resolution: {integrity: sha512-Z2uID7YJ7oNvAI20O9X0bblw7Qqs8Q2hFy0R9tAfnfLkp5MW0UH9eUvnDSnFwKZ0AvgS1ucqR4KzvVHgnke1VQ==}
engines: {node: '>=6.0.0'}
hasBin: true
dependencies:
- '@babel/types': 7.24.0
-
- /@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.24.4(@babel/core@7.24.4):
- resolution: {integrity: sha512-qpl6vOOEEzTLLcsuqYYo8yDtrTocmu2xkGvgNebvPjT9DTtfFYGmgDqY+rBYXNlqL4s9qLDn6xkrJv4RxAPiTA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0
- dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-environment-visitor': 7.22.20
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/types': 7.23.6
- /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.24.1(@babel/core@7.24.4):
- resolution: {integrity: sha512-y4HqEnkelJIOQGd+3g1bTeKsA5c6qM7eOn7VggGVbBc0y8MLSKHacwcIE2PplNlQSj0PqS9rrXL/nkPVK+kUNg==}
+ /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.23.3(@babel/core@7.23.7):
+ resolution: {integrity: sha512-iRkKcCqb7iGnq9+3G6rZ+Ciz5VywC4XNRHe57lKM+jOeYAoR0lVqdeeDRfh0tQcTfw/+vBhHn926FmQhLtlFLQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.23.7
+ '@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.24.1(@babel/core@7.24.4):
- resolution: {integrity: sha512-Hj791Ii4ci8HqnaKHAlLNs+zaLXb0EzSDhiAWp5VNlyvCNymYfacs64pxTxbH1znW/NcArSmwpmG9IKE/TUVVQ==}
+ /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.23.3(@babel/core@7.23.7):
+ resolution: {integrity: sha512-WwlxbfMNdVEpQjZmK5mhm7oSwD3dS6eU+Iwsi4Knl9wAletWem7kaRsGOG+8UEbRyqxY4SS5zvtfXwX+jMxUwQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.13.0
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.23.7
+ '@babel/helper-plugin-utils': 7.22.5
'@babel/helper-skip-transparent-expression-wrappers': 7.22.5
- '@babel/plugin-transform-optional-chaining': 7.24.1(@babel/core@7.24.4)
+ '@babel/plugin-transform-optional-chaining': 7.23.4(@babel/core@7.23.7)
- /@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.24.1(@babel/core@7.24.4):
- resolution: {integrity: sha512-m9m/fXsXLiHfwdgydIFnpk+7jlVbnvlK5B2EKiPdLUb6WX654ZaaEWJUjk8TftRbZpK0XibovlLWX4KIZhV6jw==}
+ /@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.23.7(@babel/core@7.23.7):
+ resolution: {integrity: sha512-LlRT7HgaifEpQA1ZgLVOIJZZFVPWN5iReq/7/JixwBtwcoeVGDBD53ZV28rrsLYOZs1Y/EHhA8N/Z6aazHR8cw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.24.4
+ '@babel/core': 7.23.7
'@babel/helper-environment-visitor': 7.22.20
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.24.4):
+ /@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.23.7):
resolution: {integrity: sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==}
engines: {node: '>=6.9.0'}
deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-class-properties instead.
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-create-class-features-plugin': 7.24.4(@babel/core@7.24.4)
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.23.7
+ '@babel/helper-create-class-features-plugin': 7.23.7(@babel/core@7.23.7)
+ '@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-proposal-nullish-coalescing-operator@7.18.6(@babel/core@7.24.4):
+ /@babel/plugin-proposal-nullish-coalescing-operator@7.18.6(@babel/core@7.23.7):
resolution: {integrity: sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==}
engines: {node: '>=6.9.0'}
deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-nullish-coalescing-operator instead.
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.0
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.4)
+ '@babel/core': 7.23.7
+ '@babel/helper-plugin-utils': 7.22.5
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.23.7)
- /@babel/plugin-proposal-numeric-separator@7.18.6(@babel/core@7.24.4):
+ /@babel/plugin-proposal-numeric-separator@7.18.6(@babel/core@7.23.7):
resolution: {integrity: sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==}
engines: {node: '>=6.9.0'}
deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-numeric-separator instead.
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.0
- '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.24.4)
+ '@babel/core': 7.23.7
+ '@babel/helper-plugin-utils': 7.22.5
+ '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.23.7)
- /@babel/plugin-proposal-object-rest-spread@7.20.7(@babel/core@7.24.4):
+ /@babel/plugin-proposal-object-rest-spread@7.20.7(@babel/core@7.23.7):
resolution: {integrity: sha512-d2S98yCiLxDVmBmE8UjGcfPvNEUbA1U5q5WxaWFUGRzJSVAZqm5W6MbPct0jxnegUZ0niLeNX+IOzEs7wYg9Dg==}
engines: {node: '>=6.9.0'}
deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-object-rest-spread instead.
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/compat-data': 7.24.4
- '@babel/core': 7.24.4
+ '@babel/compat-data': 7.23.5
+ '@babel/core': 7.23.7
'@babel/helper-compilation-targets': 7.23.6
- '@babel/helper-plugin-utils': 7.24.0
- '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.24.4)
- '@babel/plugin-transform-parameters': 7.24.1(@babel/core@7.24.4)
+ '@babel/helper-plugin-utils': 7.22.5
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.23.7)
+ '@babel/plugin-transform-parameters': 7.23.3(@babel/core@7.23.7)
- /@babel/plugin-proposal-optional-chaining@7.21.0(@babel/core@7.24.4):
+ /@babel/plugin-proposal-optional-chaining@7.21.0(@babel/core@7.23.7):
resolution: {integrity: sha512-p4zeefM72gpmEe2fkUr/OnOXpWEf8nAgk7ZYVqqfFiyIG7oFfVZcCrU64hWn5xp4tQ9LkV4bTIa5rD0KANpKNA==}
engines: {node: '>=6.9.0'}
deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-optional-chaining instead.
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.23.7
+ '@babel/helper-plugin-utils': 7.22.5
'@babel/helper-skip-transparent-expression-wrappers': 7.22.5
- '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.4)
+ '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.23.7)
- /@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.24.4):
+ /@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.23.7):
resolution: {integrity: sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.4
+ '@babel/core': 7.23.7
- /@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.24.4):
+ /@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.23.7):
resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.23.7
+ '@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.24.4):
+ /@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.23.7):
resolution: {integrity: sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.23.7
+ '@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.24.4):
+ /@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.23.7):
resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.23.7
+ '@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.24.4):
+ /@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.23.7):
resolution: {integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.23.7
+ '@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.24.4):
+ /@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.23.7):
resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.23.7
+ '@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.24.4):
+ /@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.23.7):
resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.23.7
+ '@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-syntax-flow@7.24.1(@babel/core@7.24.4):
- resolution: {integrity: sha512-sxi2kLTI5DeW5vDtMUsk4mTPwvlUDbjOnoWayhynCwrw4QXRld4QEYwqzY8JmQXaJUtgUuCIurtSRH5sn4c7mA==}
+ /@babel/plugin-syntax-flow@7.23.3(@babel/core@7.23.7):
+ resolution: {integrity: sha512-YZiAIpkJAwQXBJLIQbRFayR5c+gJ35Vcz3bg954k7cd73zqjvhacJuL9RbrzPz8qPmZdgqP6EUKwy0PCNhaaPA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.23.7
+ '@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-syntax-import-assertions@7.24.1(@babel/core@7.24.4):
- resolution: {integrity: sha512-IuwnI5XnuF189t91XbxmXeCDz3qs6iDRO7GJ++wcfgeXNs/8FmIlKcpDSXNVyuLQxlwvskmI3Ct73wUODkJBlQ==}
+ /@babel/plugin-syntax-import-assertions@7.23.3(@babel/core@7.23.7):
+ resolution: {integrity: sha512-lPgDSU+SJLK3xmFDTV2ZRQAiM7UuUjGidwBywFavObCiZc1BeAAcMtHJKUya92hPHO+at63JJPLygilZard8jw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.23.7
+ '@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-syntax-import-attributes@7.24.1(@babel/core@7.24.4):
- resolution: {integrity: sha512-zhQTMH0X2nVLnb04tz+s7AMuasX8U0FnpE+nHTOhSOINjWMnopoZTxtIKsd45n4GQ/HIZLyfIpoul8e2m0DnRA==}
+ /@babel/plugin-syntax-import-attributes@7.23.3(@babel/core@7.23.7):
+ resolution: {integrity: sha512-pawnE0P9g10xgoP7yKr6CK63K2FMsTE+FZidZO/1PwRdzmAPVs+HS1mAURUsgaoxammTJvULUdIkEK0gOcU2tA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.23.7
+ '@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.24.4):
+ /@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.23.7):
resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.23.7
+ '@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.24.4):
+ /@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.23.7):
resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.23.7
+ '@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-syntax-jsx@7.24.1(@babel/core@7.24.4):
- resolution: {integrity: sha512-2eCtxZXf+kbkMIsXS4poTvT4Yu5rXiRa+9xGVT56raghjmBTKMpFNc9R4IDiB4emao9eO22Ox7CxuJG7BgExqA==}
+ /@babel/plugin-syntax-jsx@7.23.3(@babel/core@7.23.7):
+ resolution: {integrity: sha512-EB2MELswq55OHUoRZLGg/zC7QWUKfNLpE57m/S2yr1uEneIgsTgrSzXP3NXEsMkVn76OlaVVnzN+ugObuYGwhg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.23.7
+ '@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.24.4):
+ /@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.23.7):
resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.23.7
+ '@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.24.4):
+ /@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.23.7):
resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.23.7
+ '@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.24.4):
+ /@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.23.7):
resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.23.7
+ '@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.24.4):
+ /@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.23.7):
resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.23.7
+ '@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.24.4):
+ /@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.23.7):
resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.23.7
+ '@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.24.4):
+ /@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.23.7):
resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.23.7
+ '@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.24.4):
+ /@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.23.7):
resolution: {integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.23.7
+ '@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.24.4):
+ /@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.23.7):
resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.23.7
+ '@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-syntax-typescript@7.24.1(@babel/core@7.24.4):
- resolution: {integrity: sha512-Yhnmvy5HZEnHUty6i++gcfH1/l68AHnItFHnaCv6hn9dNh0hQvvQJsxpi4BMBFN5DLeHBuucT/0DgzXif/OyRw==}
+ /@babel/plugin-syntax-typescript@7.23.3(@babel/core@7.23.7):
+ resolution: {integrity: sha512-9EiNjVJOMwCO+43TqoTrgQ8jMwcAd0sWyXi9RPfIsLTj4R2MADDDQXELhffaUx/uJv2AYcxBgPwH6j4TIA4ytQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.23.7
+ '@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.24.4):
+ /@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.23.7):
resolution: {integrity: sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.24.4)
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.23.7
+ '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.7)
+ '@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-transform-arrow-functions@7.24.1(@babel/core@7.24.4):
- resolution: {integrity: sha512-ngT/3NkRhsaep9ck9uj2Xhv9+xB1zShY3tM3g6om4xxCELwCDN4g4Aq5dRn48+0hasAql7s2hdBOysCfNpr4fw==}
+ /@babel/plugin-transform-arrow-functions@7.23.3(@babel/core@7.23.7):
+ resolution: {integrity: sha512-NzQcQrzaQPkaEwoTm4Mhyl8jI1huEL/WWIEvudjTCMJ9aBZNpsJbMASx7EQECtQQPS/DcnFpo0FIh3LvEO9cxQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.23.7
+ '@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-transform-async-generator-functions@7.24.3(@babel/core@7.24.4):
- resolution: {integrity: sha512-Qe26CMYVjpQxJ8zxM1340JFNjZaF+ISWpr1Kt/jGo+ZTUzKkfw/pphEWbRCb+lmSM6k/TOgfYLvmbHkUQ0asIg==}
+ /@babel/plugin-transform-async-generator-functions@7.23.7(@babel/core@7.23.7):
+ resolution: {integrity: sha512-PdxEpL71bJp1byMG0va5gwQcXHxuEYC/BgI/e88mGTtohbZN28O5Yit0Plkkm/dBzCF/BxmbNcses1RH1T+urA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.4
+ '@babel/core': 7.23.7
'@babel/helper-environment-visitor': 7.22.20
- '@babel/helper-plugin-utils': 7.24.0
- '@babel/helper-remap-async-to-generator': 7.22.20(@babel/core@7.24.4)
- '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.24.4)
+ '@babel/helper-plugin-utils': 7.22.5
+ '@babel/helper-remap-async-to-generator': 7.22.20(@babel/core@7.23.7)
+ '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.23.7)
- /@babel/plugin-transform-async-to-generator@7.24.1(@babel/core@7.24.4):
- resolution: {integrity: sha512-AawPptitRXp1y0n4ilKcGbRYWfbbzFWz2NqNu7dacYDtFtz0CMjG64b3LQsb3KIgnf4/obcUL78hfaOS7iCUfw==}
+ /@babel/plugin-transform-async-to-generator@7.23.3(@babel/core@7.23.7):
+ resolution: {integrity: sha512-A7LFsKi4U4fomjqXJlZg/u0ft/n8/7n7lpffUP/ZULx/DtV9SGlNKZolHH6PE8Xl1ngCc0M11OaeZptXVkfKSw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-module-imports': 7.24.3
- '@babel/helper-plugin-utils': 7.24.0
- '@babel/helper-remap-async-to-generator': 7.22.20(@babel/core@7.24.4)
+ '@babel/core': 7.23.7
+ '@babel/helper-module-imports': 7.22.15
+ '@babel/helper-plugin-utils': 7.22.5
+ '@babel/helper-remap-async-to-generator': 7.22.20(@babel/core@7.23.7)
- /@babel/plugin-transform-block-scoped-functions@7.24.1(@babel/core@7.24.4):
- resolution: {integrity: sha512-TWWC18OShZutrv9C6mye1xwtam+uNi2bnTOCBUd5sZxyHOiWbU6ztSROofIMrK84uweEZC219POICK/sTYwfgg==}
+ /@babel/plugin-transform-block-scoped-functions@7.23.3(@babel/core@7.23.7):
+ resolution: {integrity: sha512-vI+0sIaPIO6CNuM9Kk5VmXcMVRiOpDh7w2zZt9GXzmE/9KD70CUEVhvPR/etAeNK/FAEkhxQtXOzVF3EuRL41A==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.23.7
+ '@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-transform-block-scoping@7.24.4(@babel/core@7.24.4):
- resolution: {integrity: sha512-nIFUZIpGKDf9O9ttyRXpHFpKC+X3Y5mtshZONuEUYBomAKoM4y029Jr+uB1bHGPhNmK8YXHevDtKDOLmtRrp6g==}
+ /@babel/plugin-transform-block-scoping@7.23.4(@babel/core@7.23.7):
+ resolution: {integrity: sha512-0QqbP6B6HOh7/8iNR4CQU2Th/bbRtBp4KS9vcaZd1fZ0wSh5Fyssg0UCIHwxh+ka+pNDREbVLQnHCMHKZfPwfw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.23.7
+ '@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-transform-class-properties@7.24.1(@babel/core@7.24.4):
- resolution: {integrity: sha512-OMLCXi0NqvJfORTaPQBwqLXHhb93wkBKZ4aNwMl6WtehO7ar+cmp+89iPEQPqxAnxsOKTaMcs3POz3rKayJ72g==}
+ /@babel/plugin-transform-class-properties@7.23.3(@babel/core@7.23.7):
+ resolution: {integrity: sha512-uM+AN8yCIjDPccsKGlw271xjJtGii+xQIF/uMPS8H15L12jZTsLfF4o5vNO7d/oUguOyfdikHGc/yi9ge4SGIg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-create-class-features-plugin': 7.24.4(@babel/core@7.24.4)
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.23.7
+ '@babel/helper-create-class-features-plugin': 7.23.7(@babel/core@7.23.7)
+ '@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-transform-class-static-block@7.24.4(@babel/core@7.24.4):
- resolution: {integrity: sha512-B8q7Pz870Hz/q9UgP8InNpY01CSLDSCyqX7zcRuv3FcPl87A2G17lASroHWaCtbdIcbYzOZ7kWmXFKbijMSmFg==}
+ /@babel/plugin-transform-class-static-block@7.23.4(@babel/core@7.23.7):
+ resolution: {integrity: sha512-nsWu/1M+ggti1SOALj3hfx5FXzAY06fwPJsUZD4/A5e1bWi46VUIWtD+kOX6/IdhXGsXBWllLFDSnqSCdUNydQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.12.0
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-create-class-features-plugin': 7.24.4(@babel/core@7.24.4)
- '@babel/helper-plugin-utils': 7.24.0
- '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.24.4)
+ '@babel/core': 7.23.7
+ '@babel/helper-create-class-features-plugin': 7.23.7(@babel/core@7.23.7)
+ '@babel/helper-plugin-utils': 7.22.5
+ '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.23.7)
- /@babel/plugin-transform-classes@7.24.1(@babel/core@7.24.4):
- resolution: {integrity: sha512-ZTIe3W7UejJd3/3R4p7ScyyOoafetUShSf4kCqV0O7F/RiHxVj/wRaRnQlrGwflvcehNA8M42HkAiEDYZu2F1Q==}
+ /@babel/plugin-transform-classes@7.23.5(@babel/core@7.23.7):
+ resolution: {integrity: sha512-jvOTR4nicqYC9yzOHIhXG5emiFEOpappSJAl73SDSEDcybD+Puuze8Tnpb9p9qEyYup24tq891gkaygIFvWDqg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.4
+ '@babel/core': 7.23.7
'@babel/helper-annotate-as-pure': 7.22.5
'@babel/helper-compilation-targets': 7.23.6
'@babel/helper-environment-visitor': 7.22.20
'@babel/helper-function-name': 7.23.0
- '@babel/helper-plugin-utils': 7.24.0
- '@babel/helper-replace-supers': 7.24.1(@babel/core@7.24.4)
+ '@babel/helper-optimise-call-expression': 7.22.5
+ '@babel/helper-plugin-utils': 7.22.5
+ '@babel/helper-replace-supers': 7.22.20(@babel/core@7.23.7)
'@babel/helper-split-export-declaration': 7.22.6
globals: 11.12.0
- /@babel/plugin-transform-computed-properties@7.24.1(@babel/core@7.24.4):
- resolution: {integrity: sha512-5pJGVIUfJpOS+pAqBQd+QMaTD2vCL/HcePooON6pDpHgRp4gNRmzyHTPIkXntwKsq3ayUFVfJaIKPw2pOkOcTw==}
+ /@babel/plugin-transform-computed-properties@7.23.3(@babel/core@7.23.7):
+ resolution: {integrity: sha512-dTj83UVTLw/+nbiHqQSFdwO9CbTtwq1DsDqm3CUEtDrZNET5rT5E6bIdTlOftDTDLMYxvxHNEYO4B9SLl8SLZw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.0
- '@babel/template': 7.24.0
+ '@babel/core': 7.23.7
+ '@babel/helper-plugin-utils': 7.22.5
+ '@babel/template': 7.22.15
- /@babel/plugin-transform-destructuring@7.24.1(@babel/core@7.24.4):
- resolution: {integrity: sha512-ow8jciWqNxR3RYbSNVuF4U2Jx130nwnBnhRw6N6h1bOejNkABmcI5X5oz29K4alWX7vf1C+o6gtKXikzRKkVdw==}
+ /@babel/plugin-transform-destructuring@7.23.3(@babel/core@7.23.7):
+ resolution: {integrity: sha512-n225npDqjDIr967cMScVKHXJs7rout1q+tt50inyBCPkyZ8KxeI6d+GIbSBTT/w/9WdlWDOej3V9HE5Lgk57gw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.23.7
+ '@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-transform-dotall-regex@7.24.1(@babel/core@7.24.4):
- resolution: {integrity: sha512-p7uUxgSoZwZ2lPNMzUkqCts3xlp8n+o05ikjy7gbtFJSt9gdU88jAmtfmOxHM14noQXBxfgzf2yRWECiNVhTCw==}
+ /@babel/plugin-transform-dotall-regex@7.23.3(@babel/core@7.23.7):
+ resolution: {integrity: sha512-vgnFYDHAKzFaTVp+mneDsIEbnJ2Np/9ng9iviHw3P/KVcgONxpNULEW/51Z/BaFojG2GI2GwwXck5uV1+1NOYQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.24.4)
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.23.7
+ '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.7)
+ '@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-transform-duplicate-keys@7.24.1(@babel/core@7.24.4):
- resolution: {integrity: sha512-msyzuUnvsjsaSaocV6L7ErfNsa5nDWL1XKNnDePLgmz+WdU4w/J8+AxBMrWfi9m4IxfL5sZQKUPQKDQeeAT6lA==}
+ /@babel/plugin-transform-duplicate-keys@7.23.3(@babel/core@7.23.7):
+ resolution: {integrity: sha512-RrqQ+BQmU3Oyav3J+7/myfvRCq7Tbz+kKLLshUmMwNlDHExbGL7ARhajvoBJEvc+fCguPPu887N+3RRXBVKZUA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.23.7
+ '@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-transform-dynamic-import@7.24.1(@babel/core@7.24.4):
- resolution: {integrity: sha512-av2gdSTyXcJVdI+8aFZsCAtR29xJt0S5tas+Ef8NvBNmD1a+N/3ecMLeMBgfcK+xzsjdLDT6oHt+DFPyeqUbDA==}
+ /@babel/plugin-transform-dynamic-import@7.23.4(@babel/core@7.23.7):
+ resolution: {integrity: sha512-V6jIbLhdJK86MaLh4Jpghi8ho5fGzt3imHOBu/x0jlBaPYqDoWz4RDXjmMOfnh+JWNaQleEAByZLV0QzBT4YQQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.0
- '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.24.4)
+ '@babel/core': 7.23.7
+ '@babel/helper-plugin-utils': 7.22.5
+ '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.23.7)
- /@babel/plugin-transform-exponentiation-operator@7.24.1(@babel/core@7.24.4):
- resolution: {integrity: sha512-U1yX13dVBSwS23DEAqU+Z/PkwE9/m7QQy8Y9/+Tdb8UWYaGNDYwTLi19wqIAiROr8sXVum9A/rtiH5H0boUcTw==}
+ /@babel/plugin-transform-exponentiation-operator@7.23.3(@babel/core@7.23.7):
+ resolution: {integrity: sha512-5fhCsl1odX96u7ILKHBj4/Y8vipoqwsJMh4csSA8qFfxrZDEA4Ssku2DyNvMJSmZNOEBT750LfFPbtrnTP90BQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.4
+ '@babel/core': 7.23.7
'@babel/helper-builder-binary-assignment-operator-visitor': 7.22.15
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-transform-export-namespace-from@7.24.1(@babel/core@7.24.4):
- resolution: {integrity: sha512-Ft38m/KFOyzKw2UaJFkWG9QnHPG/Q/2SkOrRk4pNBPg5IPZ+dOxcmkK5IyuBcxiNPyyYowPGUReyBvrvZs7IlQ==}
+ /@babel/plugin-transform-export-namespace-from@7.23.4(@babel/core@7.23.7):
+ resolution: {integrity: sha512-GzuSBcKkx62dGzZI1WVgTWvkkz84FZO5TC5T8dl/Tht/rAla6Dg/Mz9Yhypg+ezVACf/rgDuQt3kbWEv7LdUDQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.0
- '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.24.4)
+ '@babel/core': 7.23.7
+ '@babel/helper-plugin-utils': 7.22.5
+ '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.23.7)
- /@babel/plugin-transform-flow-strip-types@7.24.1(@babel/core@7.24.4):
- resolution: {integrity: sha512-iIYPIWt3dUmUKKE10s3W+jsQ3icFkw0JyRVyY1B7G4yK/nngAOHLVx8xlhA6b/Jzl/Y0nis8gjqhqKtRDQqHWQ==}
+ /@babel/plugin-transform-flow-strip-types@7.23.3(@babel/core@7.23.7):
+ resolution: {integrity: sha512-26/pQTf9nQSNVJCrLB1IkHUKyPxR+lMrH2QDPG89+Znu9rAMbtrybdbWeE9bb7gzjmE5iXHEY+e0HUwM6Co93Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.0
- '@babel/plugin-syntax-flow': 7.24.1(@babel/core@7.24.4)
+ '@babel/core': 7.23.7
+ '@babel/helper-plugin-utils': 7.22.5
+ '@babel/plugin-syntax-flow': 7.23.3(@babel/core@7.23.7)
- /@babel/plugin-transform-for-of@7.24.1(@babel/core@7.24.4):
- resolution: {integrity: sha512-OxBdcnF04bpdQdR3i4giHZNZQn7cm8RQKcSwA17wAAqEELo1ZOwp5FFgeptWUQXFyT9kwHo10aqqauYkRZPCAg==}
+ /@babel/plugin-transform-for-of@7.23.6(@babel/core@7.23.7):
+ resolution: {integrity: sha512-aYH4ytZ0qSuBbpfhuofbg/e96oQ7U2w1Aw/UQmKT+1l39uEhUPoFS3fHevDc1G0OvewyDudfMKY1OulczHzWIw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.23.7
+ '@babel/helper-plugin-utils': 7.22.5
'@babel/helper-skip-transparent-expression-wrappers': 7.22.5
- /@babel/plugin-transform-function-name@7.24.1(@babel/core@7.24.4):
- resolution: {integrity: sha512-BXmDZpPlh7jwicKArQASrj8n22/w6iymRnvHYYd2zO30DbE277JO20/7yXJT3QxDPtiQiOxQBbZH4TpivNXIxA==}
+ /@babel/plugin-transform-function-name@7.23.3(@babel/core@7.23.7):
+ resolution: {integrity: sha512-I1QXp1LxIvt8yLaib49dRW5Okt7Q4oaxao6tFVKS/anCdEOMtYwWVKoiOA1p34GOWIZjUK0E+zCp7+l1pfQyiw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.4
+ '@babel/core': 7.23.7
'@babel/helper-compilation-targets': 7.23.6
'@babel/helper-function-name': 7.23.0
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-transform-json-strings@7.24.1(@babel/core@7.24.4):
- resolution: {integrity: sha512-U7RMFmRvoasscrIFy5xA4gIp8iWnWubnKkKuUGJjsuOH7GfbMkB+XZzeslx2kLdEGdOJDamEmCqOks6e8nv8DQ==}
+ /@babel/plugin-transform-json-strings@7.23.4(@babel/core@7.23.7):
+ resolution: {integrity: sha512-81nTOqM1dMwZ/aRXQ59zVubN9wHGqk6UtqRK+/q+ciXmRy8fSolhGVvG09HHRGo4l6fr/c4ZhXUQH0uFW7PZbg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.0
- '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.24.4)
+ '@babel/core': 7.23.7
+ '@babel/helper-plugin-utils': 7.22.5
+ '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.23.7)
- /@babel/plugin-transform-literals@7.24.1(@babel/core@7.24.4):
- resolution: {integrity: sha512-zn9pwz8U7nCqOYIiBaOxoQOtYmMODXTJnkxG4AtX8fPmnCRYWBOHD0qcpwS9e2VDSp1zNJYpdnFMIKb8jmwu6g==}
+ /@babel/plugin-transform-literals@7.23.3(@babel/core@7.23.7):
+ resolution: {integrity: sha512-wZ0PIXRxnwZvl9AYpqNUxpZ5BiTGrYt7kueGQ+N5FiQ7RCOD4cm8iShd6S6ggfVIWaJf2EMk8eRzAh52RfP4rQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.23.7
+ '@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-transform-logical-assignment-operators@7.24.1(@babel/core@7.24.4):
- resolution: {integrity: sha512-OhN6J4Bpz+hIBqItTeWJujDOfNP+unqv/NJgyhlpSqgBTPm37KkMmZV6SYcOj+pnDbdcl1qRGV/ZiIjX9Iy34w==}
+ /@babel/plugin-transform-logical-assignment-operators@7.23.4(@babel/core@7.23.7):
+ resolution: {integrity: sha512-Mc/ALf1rmZTP4JKKEhUwiORU+vcfarFVLfcFiolKUo6sewoxSEgl36ak5t+4WamRsNr6nzjZXQjM35WsU+9vbg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.0
- '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.24.4)
+ '@babel/core': 7.23.7
+ '@babel/helper-plugin-utils': 7.22.5
+ '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.23.7)
- /@babel/plugin-transform-member-expression-literals@7.24.1(@babel/core@7.24.4):
- resolution: {integrity: sha512-4ojai0KysTWXzHseJKa1XPNXKRbuUrhkOPY4rEGeR+7ChlJVKxFa3H3Bz+7tWaGKgJAXUWKOGmltN+u9B3+CVg==}
+ /@babel/plugin-transform-member-expression-literals@7.23.3(@babel/core@7.23.7):
+ resolution: {integrity: sha512-sC3LdDBDi5x96LA+Ytekz2ZPk8i/Ck+DEuDbRAll5rknJ5XRTSaPKEYwomLcs1AA8wg9b3KjIQRsnApj+q51Ag==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.23.7
+ '@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-transform-modules-amd@7.24.1(@babel/core@7.24.4):
- resolution: {integrity: sha512-lAxNHi4HVtjnHd5Rxg3D5t99Xm6H7b04hUS7EHIXcUl2EV4yl1gWdqZrNzXnSrHveL9qMdbODlLF55mvgjAfaQ==}
+ /@babel/plugin-transform-modules-amd@7.23.3(@babel/core@7.23.7):
+ resolution: {integrity: sha512-vJYQGxeKM4t8hYCKVBlZX/gtIY2I7mRGFNcm85sgXGMTBcoV3QdVtdpbcWEbzbfUIUZKwvgFT82mRvaQIebZzw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-module-transforms': 7.23.3(@babel/core@7.24.4)
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.23.7
+ '@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.7)
+ '@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-transform-modules-commonjs@7.24.1(@babel/core@7.24.4):
- resolution: {integrity: sha512-szog8fFTUxBfw0b98gEWPaEqF42ZUD/T3bkynW/wtgx2p/XCP55WEsb+VosKceRSd6njipdZvNogqdtI4Q0chw==}
+ /@babel/plugin-transform-modules-commonjs@7.23.3(@babel/core@7.23.7):
+ resolution: {integrity: sha512-aVS0F65LKsdNOtcz6FRCpE4OgsP2OFnW46qNxNIX9h3wuzaNcSQsJysuMwqSibC98HPrf2vCgtxKNwS0DAlgcA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-module-transforms': 7.23.3(@babel/core@7.24.4)
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.23.7
+ '@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.7)
+ '@babel/helper-plugin-utils': 7.22.5
'@babel/helper-simple-access': 7.22.5
- /@babel/plugin-transform-modules-systemjs@7.24.1(@babel/core@7.24.4):
- resolution: {integrity: sha512-mqQ3Zh9vFO1Tpmlt8QPnbwGHzNz3lpNEMxQb1kAemn/erstyqw1r9KeOlOfo3y6xAnFEcOv2tSyrXfmMk+/YZA==}
+ /@babel/plugin-transform-modules-systemjs@7.23.3(@babel/core@7.23.7):
+ resolution: {integrity: sha512-ZxyKGTkF9xT9YJuKQRo19ewf3pXpopuYQd8cDXqNzc3mUNbOME0RKMoZxviQk74hwzfQsEe66dE92MaZbdHKNQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.4
+ '@babel/core': 7.23.7
'@babel/helper-hoist-variables': 7.22.5
- '@babel/helper-module-transforms': 7.23.3(@babel/core@7.24.4)
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.7)
+ '@babel/helper-plugin-utils': 7.22.5
'@babel/helper-validator-identifier': 7.22.20
- /@babel/plugin-transform-modules-umd@7.24.1(@babel/core@7.24.4):
- resolution: {integrity: sha512-tuA3lpPj+5ITfcCluy6nWonSL7RvaG0AOTeAuvXqEKS34lnLzXpDb0dcP6K8jD0zWZFNDVly90AGFJPnm4fOYg==}
+ /@babel/plugin-transform-modules-umd@7.23.3(@babel/core@7.23.7):
+ resolution: {integrity: sha512-zHsy9iXX2nIsCBFPud3jKn1IRPWg3Ing1qOZgeKV39m1ZgIdpJqvlWVeiHBZC6ITRG0MfskhYe9cLgntfSFPIg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-module-transforms': 7.23.3(@babel/core@7.24.4)
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.23.7
+ '@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.7)
+ '@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-transform-named-capturing-groups-regex@7.22.5(@babel/core@7.24.4):
+ /@babel/plugin-transform-named-capturing-groups-regex@7.22.5(@babel/core@7.23.7):
resolution: {integrity: sha512-YgLLKmS3aUBhHaxp5hi1WJTgOUb/NCuDHzGT9z9WTt3YG+CPRhJs6nprbStx6DnWM4dh6gt7SU3sZodbZ08adQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.24.4)
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.23.7
+ '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.7)
+ '@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-transform-new-target@7.24.1(@babel/core@7.24.4):
- resolution: {integrity: sha512-/rurytBM34hYy0HKZQyA0nHbQgQNFm4Q/BOc9Hflxi2X3twRof7NaE5W46j4kQitm7SvACVRXsa6N/tSZxvPug==}
+ /@babel/plugin-transform-new-target@7.23.3(@babel/core@7.23.7):
+ resolution: {integrity: sha512-YJ3xKqtJMAT5/TIZnpAR3I+K+WaDowYbN3xyxI8zxx/Gsypwf9B9h0VB+1Nh6ACAAPRS5NSRje0uVv5i79HYGQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.23.7
+ '@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-transform-nullish-coalescing-operator@7.24.1(@babel/core@7.24.4):
- resolution: {integrity: sha512-iQ+caew8wRrhCikO5DrUYx0mrmdhkaELgFa+7baMcVuhxIkN7oxt06CZ51D65ugIb1UWRQ8oQe+HXAVM6qHFjw==}
+ /@babel/plugin-transform-nullish-coalescing-operator@7.23.4(@babel/core@7.23.7):
+ resolution: {integrity: sha512-jHE9EVVqHKAQx+VePv5LLGHjmHSJR76vawFPTdlxR/LVJPfOEGxREQwQfjuZEOPTwG92X3LINSh3M40Rv4zpVA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.0
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.4)
+ '@babel/core': 7.23.7
+ '@babel/helper-plugin-utils': 7.22.5
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.23.7)
- /@babel/plugin-transform-numeric-separator@7.24.1(@babel/core@7.24.4):
- resolution: {integrity: sha512-7GAsGlK4cNL2OExJH1DzmDeKnRv/LXq0eLUSvudrehVA5Rgg4bIrqEUW29FbKMBRT0ztSqisv7kjP+XIC4ZMNw==}
+ /@babel/plugin-transform-numeric-separator@7.23.4(@babel/core@7.23.7):
+ resolution: {integrity: sha512-mps6auzgwjRrwKEZA05cOwuDc9FAzoyFS4ZsG/8F43bTLf/TgkJg7QXOrPO1JO599iA3qgK9MXdMGOEC8O1h6Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.0
- '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.24.4)
+ '@babel/core': 7.23.7
+ '@babel/helper-plugin-utils': 7.22.5
+ '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.23.7)
- /@babel/plugin-transform-object-rest-spread@7.24.1(@babel/core@7.24.4):
- resolution: {integrity: sha512-XjD5f0YqOtebto4HGISLNfiNMTTs6tbkFf2TOqJlYKYmbo+mN9Dnpl4SRoofiziuOWMIyq3sZEUqLo3hLITFEA==}
+ /@babel/plugin-transform-object-rest-spread@7.23.4(@babel/core@7.23.7):
+ resolution: {integrity: sha512-9x9K1YyeQVw0iOXJlIzwm8ltobIIv7j2iLyP2jIhEbqPRQ7ScNgwQufU2I0Gq11VjyG4gI4yMXt2VFags+1N3g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.4
+ '@babel/compat-data': 7.23.5
+ '@babel/core': 7.23.7
'@babel/helper-compilation-targets': 7.23.6
- '@babel/helper-plugin-utils': 7.24.0
- '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.24.4)
- '@babel/plugin-transform-parameters': 7.24.1(@babel/core@7.24.4)
+ '@babel/helper-plugin-utils': 7.22.5
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.23.7)
+ '@babel/plugin-transform-parameters': 7.23.3(@babel/core@7.23.7)
- /@babel/plugin-transform-object-super@7.24.1(@babel/core@7.24.4):
- resolution: {integrity: sha512-oKJqR3TeI5hSLRxudMjFQ9re9fBVUU0GICqM3J1mi8MqlhVr6hC/ZN4ttAyMuQR6EZZIY6h/exe5swqGNNIkWQ==}
+ /@babel/plugin-transform-object-super@7.23.3(@babel/core@7.23.7):
+ resolution: {integrity: sha512-BwQ8q0x2JG+3lxCVFohg+KbQM7plfpBwThdW9A6TMtWwLsbDA01Ek2Zb/AgDN39BiZsExm4qrXxjk+P1/fzGrA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.0
- '@babel/helper-replace-supers': 7.24.1(@babel/core@7.24.4)
+ '@babel/core': 7.23.7
+ '@babel/helper-plugin-utils': 7.22.5
+ '@babel/helper-replace-supers': 7.22.20(@babel/core@7.23.7)
- /@babel/plugin-transform-optional-catch-binding@7.24.1(@babel/core@7.24.4):
- resolution: {integrity: sha512-oBTH7oURV4Y+3EUrf6cWn1OHio3qG/PVwO5J03iSJmBg6m2EhKjkAu/xuaXaYwWW9miYtvbWv4LNf0AmR43LUA==}
+ /@babel/plugin-transform-optional-catch-binding@7.23.4(@babel/core@7.23.7):
+ resolution: {integrity: sha512-XIq8t0rJPHf6Wvmbn9nFxU6ao4c7WhghTR5WyV8SrJfUFzyxhCm4nhC+iAp3HFhbAKLfYpgzhJ6t4XCtVwqO5A==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.0
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.24.4)
+ '@babel/core': 7.23.7
+ '@babel/helper-plugin-utils': 7.22.5
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.23.7)
- /@babel/plugin-transform-optional-chaining@7.24.1(@babel/core@7.24.4):
- resolution: {integrity: sha512-n03wmDt+987qXwAgcBlnUUivrZBPZ8z1plL0YvgQalLm+ZE5BMhGm94jhxXtA1wzv1Cu2aaOv1BM9vbVttrzSg==}
+ /@babel/plugin-transform-optional-chaining@7.23.4(@babel/core@7.23.7):
+ resolution: {integrity: sha512-ZU8y5zWOfjM5vZ+asjgAPwDaBjJzgufjES89Rs4Lpq63O300R/kOz30WCLo6BxxX6QVEilwSlpClnG5cZaikTA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.23.7
+ '@babel/helper-plugin-utils': 7.22.5
'@babel/helper-skip-transparent-expression-wrappers': 7.22.5
- '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.4)
+ '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.23.7)
- /@babel/plugin-transform-parameters@7.24.1(@babel/core@7.24.4):
- resolution: {integrity: sha512-8Jl6V24g+Uw5OGPeWNKrKqXPDw2YDjLc53ojwfMcKwlEoETKU9rU0mHUtcg9JntWI/QYzGAXNWEcVHZ+fR+XXg==}
+ /@babel/plugin-transform-parameters@7.23.3(@babel/core@7.23.7):
+ resolution: {integrity: sha512-09lMt6UsUb3/34BbECKVbVwrT9bO6lILWln237z7sLaWnMsTi7Yc9fhX5DLpkJzAGfaReXI22wP41SZmnAA3Vw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.23.7
+ '@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-transform-private-methods@7.24.1(@babel/core@7.24.4):
- resolution: {integrity: sha512-tGvisebwBO5em4PaYNqt4fkw56K2VALsAbAakY0FjTYqJp7gfdrgr7YX76Or8/cpik0W6+tj3rZ0uHU9Oil4tw==}
+ /@babel/plugin-transform-private-methods@7.23.3(@babel/core@7.23.7):
+ resolution: {integrity: sha512-UzqRcRtWsDMTLrRWFvUBDwmw06tCQH9Rl1uAjfh6ijMSmGYQ+fpdB+cnqRC8EMh5tuuxSv0/TejGL+7vyj+50g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-create-class-features-plugin': 7.24.4(@babel/core@7.24.4)
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.23.7
+ '@babel/helper-create-class-features-plugin': 7.23.7(@babel/core@7.23.7)
+ '@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-transform-private-property-in-object@7.24.1(@babel/core@7.24.4):
- resolution: {integrity: sha512-pTHxDVa0BpUbvAgX3Gat+7cSciXqUcY9j2VZKTbSB6+VQGpNgNO9ailxTGHSXlqOnX1Hcx1Enme2+yv7VqP9bg==}
+ /@babel/plugin-transform-private-property-in-object@7.23.4(@babel/core@7.23.7):
+ resolution: {integrity: sha512-9G3K1YqTq3F4Vt88Djx1UZ79PDyj+yKRnUy7cZGSMe+a7jkwD259uKKuUzQlPkGam7R+8RJwh5z4xO27fA1o2A==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.4
+ '@babel/core': 7.23.7
'@babel/helper-annotate-as-pure': 7.22.5
- '@babel/helper-create-class-features-plugin': 7.24.4(@babel/core@7.24.4)
- '@babel/helper-plugin-utils': 7.24.0
- '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.24.4)
+ '@babel/helper-create-class-features-plugin': 7.23.7(@babel/core@7.23.7)
+ '@babel/helper-plugin-utils': 7.22.5
+ '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.23.7)
- /@babel/plugin-transform-property-literals@7.24.1(@babel/core@7.24.4):
- resolution: {integrity: sha512-LetvD7CrHmEx0G442gOomRr66d7q8HzzGGr4PMHGr+5YIm6++Yke+jxj246rpvsbyhJwCLxcTn6zW1P1BSenqA==}
+ /@babel/plugin-transform-property-literals@7.23.3(@babel/core@7.23.7):
+ resolution: {integrity: sha512-jR3Jn3y7cZp4oEWPFAlRsSWjxKe4PZILGBSd4nis1TsC5qeSpb+nrtihJuDhNI7QHiVbUaiXa0X2RZY3/TI6Nw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.23.7
+ '@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-transform-react-display-name@7.24.1(@babel/core@7.24.4):
- resolution: {integrity: sha512-mvoQg2f9p2qlpDQRBC7M3c3XTr0k7cp/0+kFKKO/7Gtu0LSw16eKB+Fabe2bDT/UpsyasTBBkAnbdsLrkD5XMw==}
+ /@babel/plugin-transform-react-display-name@7.23.3(@babel/core@7.23.7):
+ resolution: {integrity: sha512-GnvhtVfA2OAtzdX58FJxU19rhoGeQzyVndw3GgtdECQvQFXPEZIOVULHVZGAYmOgmqjXpVpfocAbSjh99V/Fqw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.23.7
+ '@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-transform-react-jsx-development@7.22.5(@babel/core@7.24.4):
+ /@babel/plugin-transform-react-jsx-development@7.22.5(@babel/core@7.23.7):
resolution: {integrity: sha512-bDhuzwWMuInwCYeDeMzyi7TaBgRQei6DqxhbyniL7/VG4RSS7HtSL2QbY4eESy1KJqlWt8g3xeEBGPuo+XqC8A==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.4
- '@babel/plugin-transform-react-jsx': 7.23.4(@babel/core@7.24.4)
+ '@babel/core': 7.23.7
+ '@babel/plugin-transform-react-jsx': 7.23.4(@babel/core@7.23.7)
- /@babel/plugin-transform-react-jsx-self@7.24.1(@babel/core@7.24.4):
- resolution: {integrity: sha512-kDJgnPujTmAZ/9q2CN4m2/lRsUUPDvsG3+tSHWUJIzMGTt5U/b/fwWd3RO3n+5mjLrsBrVa5eKFRVSQbi3dF1w==}
+ /@babel/plugin-transform-react-jsx-self@7.23.3(@babel/core@7.23.7):
+ resolution: {integrity: sha512-qXRvbeKDSfwnlJnanVRp0SfuWE5DQhwQr5xtLBzp56Wabyo+4CMosF6Kfp+eOD/4FYpql64XVJ2W0pVLlJZxOQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.23.7
+ '@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-react-jsx-source@7.24.1(@babel/core@7.24.4):
- resolution: {integrity: sha512-1v202n7aUq4uXAieRTKcwPzNyphlCuqHHDcdSNc+vdhoTEZcFMh+L5yZuCmGaIO7bs1nJUNfHB89TZyoL48xNA==}
+ /@babel/plugin-transform-react-jsx-source@7.23.3(@babel/core@7.23.7):
+ resolution: {integrity: sha512-91RS0MDnAWDNvGC6Wio5XYkyWI39FMFO+JK9+4AlgaTH+yWwVTsw7/sn6LK0lH7c5F+TFkpv/3LfCJ1Ydwof/g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.23.7
+ '@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-react-jsx@7.23.4(@babel/core@7.24.4):
+ /@babel/plugin-transform-react-jsx@7.23.4(@babel/core@7.23.7):
resolution: {integrity: sha512-5xOpoPguCZCRbo/JeHlloSkTA8Bld1J/E1/kLfD1nsuiW1m8tduTA1ERCgIZokDflX/IBzKcqR3l7VlRgiIfHA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.4
+ '@babel/core': 7.23.7
'@babel/helper-annotate-as-pure': 7.22.5
- '@babel/helper-module-imports': 7.24.3
- '@babel/helper-plugin-utils': 7.24.0
- '@babel/plugin-syntax-jsx': 7.24.1(@babel/core@7.24.4)
- '@babel/types': 7.24.0
+ '@babel/helper-module-imports': 7.22.15
+ '@babel/helper-plugin-utils': 7.22.5
+ '@babel/plugin-syntax-jsx': 7.23.3(@babel/core@7.23.7)
+ '@babel/types': 7.23.6
- /@babel/plugin-transform-react-pure-annotations@7.24.1(@babel/core@7.24.4):
- resolution: {integrity: sha512-+pWEAaDJvSm9aFvJNpLiM2+ktl2Sn2U5DdyiWdZBxmLc6+xGt88dvFqsHiAiDS+8WqUwbDfkKz9jRxK3M0k+kA==}
+ /@babel/plugin-transform-react-pure-annotations@7.23.3(@babel/core@7.23.7):
+ resolution: {integrity: sha512-qMFdSS+TUhB7Q/3HVPnEdYJDQIk57jkntAwSuz9xfSE4n+3I+vHYCli3HoHawN1Z3RfCz/y1zXA/JXjG6cVImQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.4
+ '@babel/core': 7.23.7
'@babel/helper-annotate-as-pure': 7.22.5
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-transform-regenerator@7.24.1(@babel/core@7.24.4):
- resolution: {integrity: sha512-sJwZBCzIBE4t+5Q4IGLaaun5ExVMRY0lYwos/jNecjMrVCygCdph3IKv0tkP5Fc87e/1+bebAmEAGBfnRD+cnw==}
+ /@babel/plugin-transform-regenerator@7.23.3(@babel/core@7.23.7):
+ resolution: {integrity: sha512-KP+75h0KghBMcVpuKisx3XTu9Ncut8Q8TuvGO4IhY+9D5DFEckQefOuIsB/gQ2tG71lCke4NMrtIPS8pOj18BQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.23.7
+ '@babel/helper-plugin-utils': 7.22.5
regenerator-transform: 0.15.2
- /@babel/plugin-transform-reserved-words@7.24.1(@babel/core@7.24.4):
- resolution: {integrity: sha512-JAclqStUfIwKN15HrsQADFgeZt+wexNQ0uLhuqvqAUFoqPMjEcFCYZBhq0LUdz6dZK/mD+rErhW71fbx8RYElg==}
+ /@babel/plugin-transform-reserved-words@7.23.3(@babel/core@7.23.7):
+ resolution: {integrity: sha512-QnNTazY54YqgGxwIexMZva9gqbPa15t/x9VS+0fsEFWplwVpXYZivtgl43Z1vMpc1bdPP2PP8siFeVcnFvA3Cg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.23.7
+ '@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-transform-runtime@7.24.3(@babel/core@7.24.4):
- resolution: {integrity: sha512-J0BuRPNlNqlMTRJ72eVptpt9VcInbxO6iP3jaxr+1NPhC0UkKL+6oeX6VXMEYdADnuqmMmsBspt4d5w8Y/TCbQ==}
+ /@babel/plugin-transform-runtime@7.23.7(@babel/core@7.23.7):
+ resolution: {integrity: sha512-fa0hnfmiXc9fq/weK34MUV0drz2pOL/vfKWvN7Qw127hiUPabFCUMgAbYWcchRzMJit4o5ARsK/s+5h0249pLw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-module-imports': 7.24.3
- '@babel/helper-plugin-utils': 7.24.0
- babel-plugin-polyfill-corejs2: 0.4.10(@babel/core@7.24.4)
- babel-plugin-polyfill-corejs3: 0.10.4(@babel/core@7.24.4)
- babel-plugin-polyfill-regenerator: 0.6.1(@babel/core@7.24.4)
+ '@babel/core': 7.23.7
+ '@babel/helper-module-imports': 7.22.15
+ '@babel/helper-plugin-utils': 7.22.5
+ babel-plugin-polyfill-corejs2: 0.4.7(@babel/core@7.23.7)
+ babel-plugin-polyfill-corejs3: 0.8.7(@babel/core@7.23.7)
+ babel-plugin-polyfill-regenerator: 0.5.4(@babel/core@7.23.7)
semver: 6.3.1
transitivePeerDependencies:
- supports-color
- /@babel/plugin-transform-shorthand-properties@7.24.1(@babel/core@7.24.4):
- resolution: {integrity: sha512-LyjVB1nsJ6gTTUKRjRWx9C1s9hE7dLfP/knKdrfeH9UPtAGjYGgxIbFfx7xyLIEWs7Xe1Gnf8EWiUqfjLhInZA==}
+ /@babel/plugin-transform-shorthand-properties@7.23.3(@babel/core@7.23.7):
+ resolution: {integrity: sha512-ED2fgqZLmexWiN+YNFX26fx4gh5qHDhn1O2gvEhreLW2iI63Sqm4llRLCXALKrCnbN4Jy0VcMQZl/SAzqug/jg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.23.7
+ '@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-transform-spread@7.24.1(@babel/core@7.24.4):
- resolution: {integrity: sha512-KjmcIM+fxgY+KxPVbjelJC6hrH1CgtPmTvdXAfn3/a9CnWGSTY7nH4zm5+cjmWJybdcPSsD0++QssDsjcpe47g==}
+ /@babel/plugin-transform-spread@7.23.3(@babel/core@7.23.7):
+ resolution: {integrity: sha512-VvfVYlrlBVu+77xVTOAoxQ6mZbnIq5FM0aGBSFEcIh03qHf+zNqA4DC/3XMUozTg7bZV3e3mZQ0i13VB6v5yUg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.23.7
+ '@babel/helper-plugin-utils': 7.22.5
'@babel/helper-skip-transparent-expression-wrappers': 7.22.5
- /@babel/plugin-transform-sticky-regex@7.24.1(@babel/core@7.24.4):
- resolution: {integrity: sha512-9v0f1bRXgPVcPrngOQvLXeGNNVLc8UjMVfebo9ka0WF3/7+aVUHmaJVT3sa0XCzEFioPfPHZiOcYG9qOsH63cw==}
+ /@babel/plugin-transform-sticky-regex@7.23.3(@babel/core@7.23.7):
+ resolution: {integrity: sha512-HZOyN9g+rtvnOU3Yh7kSxXrKbzgrm5X4GncPY1QOquu7epga5MxKHVpYu2hvQnry/H+JjckSYRb93iNfsioAGg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.23.7
+ '@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-transform-template-literals@7.24.1(@babel/core@7.24.4):
- resolution: {integrity: sha512-WRkhROsNzriarqECASCNu/nojeXCDTE/F2HmRgOzi7NGvyfYGq1NEjKBK3ckLfRgGc6/lPAqP0vDOSw3YtG34g==}
+ /@babel/plugin-transform-template-literals@7.23.3(@babel/core@7.23.7):
+ resolution: {integrity: sha512-Flok06AYNp7GV2oJPZZcP9vZdszev6vPBkHLwxwSpaIqx75wn6mUd3UFWsSsA0l8nXAKkyCmL/sR02m8RYGeHg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.23.7
+ '@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-transform-typeof-symbol@7.24.1(@babel/core@7.24.4):
- resolution: {integrity: sha512-CBfU4l/A+KruSUoW+vTQthwcAdwuqbpRNB8HQKlZABwHRhsdHZ9fezp4Sn18PeAlYxTNiLMlx4xUBV3AWfg1BA==}
+ /@babel/plugin-transform-typeof-symbol@7.23.3(@babel/core@7.23.7):
+ resolution: {integrity: sha512-4t15ViVnaFdrPC74be1gXBSMzXk3B4Us9lP7uLRQHTFpV5Dvt33pn+2MyyNxmN3VTTm3oTrZVMUmuw3oBnQ2oQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.23.7
+ '@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-transform-typescript@7.24.4(@babel/core@7.24.4):
- resolution: {integrity: sha512-79t3CQ8+oBGk/80SQ8MN3Bs3obf83zJ0YZjDmDaEZN8MqhMI760apl5z6a20kFeMXBwJX99VpKT8CKxEBp5H1g==}
+ /@babel/plugin-transform-typescript@7.23.6(@babel/core@7.23.7):
+ resolution: {integrity: sha512-6cBG5mBvUu4VUD04OHKnYzbuHNP8huDsD3EDqqpIpsswTDoqHCjLoHb6+QgsV1WsT2nipRqCPgxD3LXnEO7XfA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.4
+ '@babel/core': 7.23.7
'@babel/helper-annotate-as-pure': 7.22.5
- '@babel/helper-create-class-features-plugin': 7.24.4(@babel/core@7.24.4)
- '@babel/helper-plugin-utils': 7.24.0
- '@babel/plugin-syntax-typescript': 7.24.1(@babel/core@7.24.4)
+ '@babel/helper-create-class-features-plugin': 7.23.7(@babel/core@7.23.7)
+ '@babel/helper-plugin-utils': 7.22.5
+ '@babel/plugin-syntax-typescript': 7.23.3(@babel/core@7.23.7)
- /@babel/plugin-transform-unicode-escapes@7.24.1(@babel/core@7.24.4):
- resolution: {integrity: sha512-RlkVIcWT4TLI96zM660S877E7beKlQw7Ig+wqkKBiWfj0zH5Q4h50q6er4wzZKRNSYpfo6ILJ+hrJAGSX2qcNw==}
+ /@babel/plugin-transform-unicode-escapes@7.23.3(@babel/core@7.23.7):
+ resolution: {integrity: sha512-OMCUx/bU6ChE3r4+ZdylEqAjaQgHAgipgW8nsCfu5pGqDcFytVd91AwRvUJSBZDz0exPGgnjoqhgRYLRjFZc9Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.23.7
+ '@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-transform-unicode-property-regex@7.24.1(@babel/core@7.24.4):
- resolution: {integrity: sha512-Ss4VvlfYV5huWApFsF8/Sq0oXnGO+jB+rijFEFugTd3cwSObUSnUi88djgR5528Csl0uKlrI331kRqe56Ov2Ng==}
+ /@babel/plugin-transform-unicode-property-regex@7.23.3(@babel/core@7.23.7):
+ resolution: {integrity: sha512-KcLIm+pDZkWZQAFJ9pdfmh89EwVfmNovFBcXko8szpBeF8z68kWIPeKlmSOkT9BXJxs2C0uk+5LxoxIv62MROA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.24.4)
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.23.7
+ '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.7)
+ '@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-transform-unicode-regex@7.24.1(@babel/core@7.24.4):
- resolution: {integrity: sha512-2A/94wgZgxfTsiLaQ2E36XAOdcZmGAaEEgVmxQWwZXWkGhvoHbaqXcKnU8zny4ycpu3vNqg0L/PcCiYtHtA13g==}
+ /@babel/plugin-transform-unicode-regex@7.23.3(@babel/core@7.23.7):
+ resolution: {integrity: sha512-wMHpNA4x2cIA32b/ci3AfwNgheiva2W0WUKWTK7vBHBhDKfPsc5cFGNWm69WBqpwd86u1qwZ9PWevKqm1A3yAw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.24.4)
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.23.7
+ '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.7)
+ '@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-transform-unicode-sets-regex@7.24.1(@babel/core@7.24.4):
- resolution: {integrity: sha512-fqj4WuzzS+ukpgerpAoOnMfQXwUHFxXUZUE84oL2Kao2N8uSlvcpnAidKASgsNgzZHBsHWvcm8s9FPWUhAb8fA==}
+ /@babel/plugin-transform-unicode-sets-regex@7.23.3(@babel/core@7.23.7):
+ resolution: {integrity: sha512-W7lliA/v9bNR83Qc3q1ip9CQMZ09CcHDbHfbLRDNuAhn1Mvkr1ZNF7hPmztMQvtTGVLJ9m8IZqWsTkXOml8dbw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.24.4)
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.23.7
+ '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.7)
+ '@babel/helper-plugin-utils': 7.22.5
- /@babel/preset-env@7.24.4(@babel/core@7.24.4):
- resolution: {integrity: sha512-7Kl6cSmYkak0FK/FXjSEnLJ1N9T/WA2RkMhu17gZ/dsxKJUuTYNIylahPTzqpLyJN4WhDif8X0XK1R8Wsguo/A==}
+ /@babel/preset-env@7.23.7(@babel/core@7.23.7):
+ resolution: {integrity: sha512-SY27X/GtTz/L4UryMNJ6p4fH4nsgWbz84y9FE0bQeWJP6O5BhgVCt53CotQKHCOeXJel8VyhlhujhlltKms/CA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/compat-data': 7.24.4
- '@babel/core': 7.24.4
+ '@babel/compat-data': 7.23.5
+ '@babel/core': 7.23.7
'@babel/helper-compilation-targets': 7.23.6
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/helper-plugin-utils': 7.22.5
'@babel/helper-validator-option': 7.23.5
- '@babel/plugin-bugfix-firefox-class-in-computed-class-key': 7.24.4(@babel/core@7.24.4)
- '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.24.4)
- '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.24.4)
- '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.24.4)
- '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.24.4)
- '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.24.4)
- '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.24.4)
- '@babel/plugin-syntax-import-assertions': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-syntax-import-attributes': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.24.4)
- '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.24.4)
- '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.24.4)
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.4)
- '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.24.4)
- '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.24.4)
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.24.4)
- '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.4)
- '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.24.4)
- '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.24.4)
- '@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.24.4)
- '@babel/plugin-transform-arrow-functions': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-transform-async-generator-functions': 7.24.3(@babel/core@7.24.4)
- '@babel/plugin-transform-async-to-generator': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-transform-block-scoped-functions': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-transform-block-scoping': 7.24.4(@babel/core@7.24.4)
- '@babel/plugin-transform-class-properties': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-transform-class-static-block': 7.24.4(@babel/core@7.24.4)
- '@babel/plugin-transform-classes': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-transform-computed-properties': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-transform-destructuring': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-transform-dotall-regex': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-transform-duplicate-keys': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-transform-dynamic-import': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-transform-exponentiation-operator': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-transform-export-namespace-from': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-transform-for-of': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-transform-function-name': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-transform-json-strings': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-transform-literals': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-transform-logical-assignment-operators': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-transform-member-expression-literals': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-transform-modules-amd': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-transform-modules-commonjs': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-transform-modules-systemjs': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-transform-modules-umd': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-transform-named-capturing-groups-regex': 7.22.5(@babel/core@7.24.4)
- '@babel/plugin-transform-new-target': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-transform-nullish-coalescing-operator': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-transform-numeric-separator': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-transform-object-rest-spread': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-transform-object-super': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-transform-optional-catch-binding': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-transform-optional-chaining': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-transform-parameters': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-transform-private-methods': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-transform-private-property-in-object': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-transform-property-literals': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-transform-regenerator': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-transform-reserved-words': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-transform-shorthand-properties': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-transform-spread': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-transform-sticky-regex': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-transform-template-literals': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-transform-typeof-symbol': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-transform-unicode-escapes': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-transform-unicode-property-regex': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-transform-unicode-regex': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-transform-unicode-sets-regex': 7.24.1(@babel/core@7.24.4)
- '@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@7.24.4)
- babel-plugin-polyfill-corejs2: 0.4.10(@babel/core@7.24.4)
- babel-plugin-polyfill-corejs3: 0.10.4(@babel/core@7.24.4)
- babel-plugin-polyfill-regenerator: 0.6.1(@babel/core@7.24.4)
- core-js-compat: 3.36.1
+ '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.23.3(@babel/core@7.23.7)
+ '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.23.3(@babel/core@7.23.7)
+ '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly': 7.23.7(@babel/core@7.23.7)
+ '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.23.7)
+ '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.23.7)
+ '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.23.7)
+ '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.23.7)
+ '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.23.7)
+ '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.23.7)
+ '@babel/plugin-syntax-import-assertions': 7.23.3(@babel/core@7.23.7)
+ '@babel/plugin-syntax-import-attributes': 7.23.3(@babel/core@7.23.7)
+ '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.23.7)
+ '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.23.7)
+ '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.23.7)
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.23.7)
+ '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.23.7)
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.23.7)
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.23.7)
+ '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.23.7)
+ '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.23.7)
+ '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.23.7)
+ '@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.23.7)
+ '@babel/plugin-transform-arrow-functions': 7.23.3(@babel/core@7.23.7)
+ '@babel/plugin-transform-async-generator-functions': 7.23.7(@babel/core@7.23.7)
+ '@babel/plugin-transform-async-to-generator': 7.23.3(@babel/core@7.23.7)
+ '@babel/plugin-transform-block-scoped-functions': 7.23.3(@babel/core@7.23.7)
+ '@babel/plugin-transform-block-scoping': 7.23.4(@babel/core@7.23.7)
+ '@babel/plugin-transform-class-properties': 7.23.3(@babel/core@7.23.7)
+ '@babel/plugin-transform-class-static-block': 7.23.4(@babel/core@7.23.7)
+ '@babel/plugin-transform-classes': 7.23.5(@babel/core@7.23.7)
+ '@babel/plugin-transform-computed-properties': 7.23.3(@babel/core@7.23.7)
+ '@babel/plugin-transform-destructuring': 7.23.3(@babel/core@7.23.7)
+ '@babel/plugin-transform-dotall-regex': 7.23.3(@babel/core@7.23.7)
+ '@babel/plugin-transform-duplicate-keys': 7.23.3(@babel/core@7.23.7)
+ '@babel/plugin-transform-dynamic-import': 7.23.4(@babel/core@7.23.7)
+ '@babel/plugin-transform-exponentiation-operator': 7.23.3(@babel/core@7.23.7)
+ '@babel/plugin-transform-export-namespace-from': 7.23.4(@babel/core@7.23.7)
+ '@babel/plugin-transform-for-of': 7.23.6(@babel/core@7.23.7)
+ '@babel/plugin-transform-function-name': 7.23.3(@babel/core@7.23.7)
+ '@babel/plugin-transform-json-strings': 7.23.4(@babel/core@7.23.7)
+ '@babel/plugin-transform-literals': 7.23.3(@babel/core@7.23.7)
+ '@babel/plugin-transform-logical-assignment-operators': 7.23.4(@babel/core@7.23.7)
+ '@babel/plugin-transform-member-expression-literals': 7.23.3(@babel/core@7.23.7)
+ '@babel/plugin-transform-modules-amd': 7.23.3(@babel/core@7.23.7)
+ '@babel/plugin-transform-modules-commonjs': 7.23.3(@babel/core@7.23.7)
+ '@babel/plugin-transform-modules-systemjs': 7.23.3(@babel/core@7.23.7)
+ '@babel/plugin-transform-modules-umd': 7.23.3(@babel/core@7.23.7)
+ '@babel/plugin-transform-named-capturing-groups-regex': 7.22.5(@babel/core@7.23.7)
+ '@babel/plugin-transform-new-target': 7.23.3(@babel/core@7.23.7)
+ '@babel/plugin-transform-nullish-coalescing-operator': 7.23.4(@babel/core@7.23.7)
+ '@babel/plugin-transform-numeric-separator': 7.23.4(@babel/core@7.23.7)
+ '@babel/plugin-transform-object-rest-spread': 7.23.4(@babel/core@7.23.7)
+ '@babel/plugin-transform-object-super': 7.23.3(@babel/core@7.23.7)
+ '@babel/plugin-transform-optional-catch-binding': 7.23.4(@babel/core@7.23.7)
+ '@babel/plugin-transform-optional-chaining': 7.23.4(@babel/core@7.23.7)
+ '@babel/plugin-transform-parameters': 7.23.3(@babel/core@7.23.7)
+ '@babel/plugin-transform-private-methods': 7.23.3(@babel/core@7.23.7)
+ '@babel/plugin-transform-private-property-in-object': 7.23.4(@babel/core@7.23.7)
+ '@babel/plugin-transform-property-literals': 7.23.3(@babel/core@7.23.7)
+ '@babel/plugin-transform-regenerator': 7.23.3(@babel/core@7.23.7)
+ '@babel/plugin-transform-reserved-words': 7.23.3(@babel/core@7.23.7)
+ '@babel/plugin-transform-shorthand-properties': 7.23.3(@babel/core@7.23.7)
+ '@babel/plugin-transform-spread': 7.23.3(@babel/core@7.23.7)
+ '@babel/plugin-transform-sticky-regex': 7.23.3(@babel/core@7.23.7)
+ '@babel/plugin-transform-template-literals': 7.23.3(@babel/core@7.23.7)
+ '@babel/plugin-transform-typeof-symbol': 7.23.3(@babel/core@7.23.7)
+ '@babel/plugin-transform-unicode-escapes': 7.23.3(@babel/core@7.23.7)
+ '@babel/plugin-transform-unicode-property-regex': 7.23.3(@babel/core@7.23.7)
+ '@babel/plugin-transform-unicode-regex': 7.23.3(@babel/core@7.23.7)
+ '@babel/plugin-transform-unicode-sets-regex': 7.23.3(@babel/core@7.23.7)
+ '@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@7.23.7)
+ babel-plugin-polyfill-corejs2: 0.4.7(@babel/core@7.23.7)
+ babel-plugin-polyfill-corejs3: 0.8.7(@babel/core@7.23.7)
+ babel-plugin-polyfill-regenerator: 0.5.4(@babel/core@7.23.7)
+ core-js-compat: 3.35.0
semver: 6.3.1
transitivePeerDependencies:
- supports-color
- /@babel/preset-flow@7.24.1(@babel/core@7.24.4):
- resolution: {integrity: sha512-sWCV2G9pcqZf+JHyv/RyqEIpFypxdCSxWIxQjpdaQxenNog7cN1pr76hg8u0Fz8Qgg0H4ETkGcJnXL8d4j0PPA==}
+ /@babel/preset-flow@7.23.3(@babel/core@7.23.7):
+ resolution: {integrity: sha512-7yn6hl8RIv+KNk6iIrGZ+D06VhVY35wLVf23Cz/mMu1zOr7u4MMP4j0nZ9tLf8+4ZFpnib8cFYgB/oYg9hfswA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.23.7
+ '@babel/helper-plugin-utils': 7.22.5
'@babel/helper-validator-option': 7.23.5
- '@babel/plugin-transform-flow-strip-types': 7.24.1(@babel/core@7.24.4)
+ '@babel/plugin-transform-flow-strip-types': 7.23.3(@babel/core@7.23.7)
dev: true
- /@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.24.4):
+ /@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.23.7):
resolution: {integrity: sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA==}
peerDependencies:
'@babel/core': ^7.0.0-0 || ^8.0.0-0 <8.0.0
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.0
- '@babel/types': 7.24.0
+ '@babel/core': 7.23.7
+ '@babel/helper-plugin-utils': 7.22.5
+ '@babel/types': 7.23.6
esutils: 2.0.3
- /@babel/preset-react@7.24.1(@babel/core@7.24.4):
- resolution: {integrity: sha512-eFa8up2/8cZXLIpkafhaADTXSnl7IsUFCYenRWrARBz0/qZwcT0RBXpys0LJU4+WfPoF2ZG6ew6s2V6izMCwRA==}
+ /@babel/preset-react@7.23.3(@babel/core@7.23.7):
+ resolution: {integrity: sha512-tbkHOS9axH6Ysf2OUEqoSZ6T3Fa2SrNH6WTWSPBboxKzdxNc9qOICeLXkNG0ZEwbQ1HY8liwOce4aN/Ceyuq6w==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.23.7
+ '@babel/helper-plugin-utils': 7.22.5
'@babel/helper-validator-option': 7.23.5
- '@babel/plugin-transform-react-display-name': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-transform-react-jsx': 7.23.4(@babel/core@7.24.4)
- '@babel/plugin-transform-react-jsx-development': 7.22.5(@babel/core@7.24.4)
- '@babel/plugin-transform-react-pure-annotations': 7.24.1(@babel/core@7.24.4)
+ '@babel/plugin-transform-react-display-name': 7.23.3(@babel/core@7.23.7)
+ '@babel/plugin-transform-react-jsx': 7.23.4(@babel/core@7.23.7)
+ '@babel/plugin-transform-react-jsx-development': 7.22.5(@babel/core@7.23.7)
+ '@babel/plugin-transform-react-pure-annotations': 7.23.3(@babel/core@7.23.7)
- /@babel/preset-typescript@7.24.1(@babel/core@7.24.4):
- resolution: {integrity: sha512-1DBaMmRDpuYQBPWD8Pf/WEwCrtgRHxsZnP4mIy9G/X+hFfbI47Q2G4t1Paakld84+qsk2fSsUPMKg71jkoOOaQ==}
+ /@babel/preset-typescript@7.23.3(@babel/core@7.23.7):
+ resolution: {integrity: sha512-17oIGVlqz6CchO9RFYn5U6ZpWRZIngayYCtrPRSgANSwC2V1Jb+iP74nVxzzXJte8b8BYxrL1yY96xfhTBrNNQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.23.7
+ '@babel/helper-plugin-utils': 7.22.5
'@babel/helper-validator-option': 7.23.5
- '@babel/plugin-syntax-jsx': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-transform-modules-commonjs': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-transform-typescript': 7.24.4(@babel/core@7.24.4)
+ '@babel/plugin-syntax-jsx': 7.23.3(@babel/core@7.23.7)
+ '@babel/plugin-transform-modules-commonjs': 7.23.3(@babel/core@7.23.7)
+ '@babel/plugin-transform-typescript': 7.23.6(@babel/core@7.23.7)
- /@babel/register@7.23.7(@babel/core@7.24.4):
+ /@babel/register@7.23.7(@babel/core@7.23.7):
resolution: {integrity: sha512-EjJeB6+kvpk+Y5DAkEAmbOBEFkh9OASx0huoEkqYTFxAZHzOAX2Oh5uwAUuL2rUddqfM0SA+KPXV2TbzoZ2kvQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.4
+ '@babel/core': 7.23.7
clone-deep: 4.0.1
find-cache-dir: 2.1.0
make-dir: 2.1.0
@@ -2485,32 +2520,32 @@ packages:
/@babel/regjsgen@0.8.0:
resolution: {integrity: sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA==}
- /@babel/runtime@7.24.4:
- resolution: {integrity: sha512-dkxf7+hn8mFBwKjs9bvBlArzLVxVbS8usaPUDd5p2a9JCL9tB8OaOVN1isD4+Xyk4ns89/xeOmbQvgdK7IIVdA==}
+ /@babel/runtime@7.23.7:
+ resolution: {integrity: sha512-w06OXVOFso7LcbzMiDGt+3X7Rh7Ho8MmgPoWU3rarH+8upf+wSU/grlGbWzQyr3DkdN6ZeuMFjpdwW0Q+HxobA==}
engines: {node: '>=6.9.0'}
dependencies:
regenerator-runtime: 0.14.1
- /@babel/template@7.24.0:
- resolution: {integrity: sha512-Bkf2q8lMB0AFpX0NFEqSbx1OkTHf0f+0j82mkw+ZpzBnkk7e9Ql0891vlfgi+kHwOk8tQjiQHpqh4LaSa0fKEA==}
+ /@babel/template@7.22.15:
+ resolution: {integrity: sha512-QPErUVm4uyJa60rkI73qneDacvdvzxshT3kksGqlGWYdOTIUOwJ7RDUL8sGqslY1uXWSL6xMFKEXDS3ox2uF0w==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/code-frame': 7.24.2
- '@babel/parser': 7.24.4
- '@babel/types': 7.24.0
+ '@babel/code-frame': 7.23.5
+ '@babel/parser': 7.23.6
+ '@babel/types': 7.23.6
- /@babel/traverse@7.24.1:
- resolution: {integrity: sha512-xuU6o9m68KeqZbQuDt2TcKSxUw/mrsvavlEqQ1leZ/B+C9tk6E4sRWy97WaXgvq5E+nU3cXMxv3WKOCanVMCmQ==}
+ /@babel/traverse@7.23.7:
+ resolution: {integrity: sha512-tY3mM8rH9jM0YHFGyfC0/xf+SB5eKUu7HPj7/k3fpi9dAlsMc5YbQvDi0Sh2QTPXqMhyaAtzAr807TIyfQrmyg==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/code-frame': 7.24.2
- '@babel/generator': 7.24.4
+ '@babel/code-frame': 7.23.5
+ '@babel/generator': 7.23.6
'@babel/helper-environment-visitor': 7.22.20
'@babel/helper-function-name': 7.23.0
'@babel/helper-hoist-variables': 7.22.5
'@babel/helper-split-export-declaration': 7.22.6
- '@babel/parser': 7.24.4
- '@babel/types': 7.24.0
+ '@babel/parser': 7.23.6
+ '@babel/types': 7.23.6
debug: 4.3.4
globals: 11.12.0
transitivePeerDependencies:
@@ -2520,16 +2555,7 @@ packages:
resolution: {integrity: sha512-+uarb83brBzPKN38NX1MkB6vb6+mwvR6amUulqAE7ccQw1pEl+bCia9TbdG1lsnFP7lZySvUn37CHyXQdfTwzg==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/helper-string-parser': 7.24.1
- '@babel/helper-validator-identifier': 7.22.20
- to-fast-properties: 2.0.0
- dev: false
-
- /@babel/types@7.24.0:
- resolution: {integrity: sha512-+j7a5c253RfKh8iABBhywc8NSfP5LURe7Uh4qpsh6jc+aLJguvmIUBdjSdEMQv2bENrCR5MfRdjGo7vzS/ob7w==}
- engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/helper-string-parser': 7.24.1
+ '@babel/helper-string-parser': 7.23.4
'@babel/helper-validator-identifier': 7.22.20
to-fast-properties: 2.0.0
@@ -2541,8 +2567,8 @@ packages:
resolution: {integrity: sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==}
dev: true
- /@bugsnag/browser@7.22.4:
- resolution: {integrity: sha512-h2o9RZhAEIgJAUsECd7a00IkLnvQvLT7dUyUYx/s8VLvcq89gKa8E59rlM7f15wtkJ5MPfozhErXDpsdOvF4Rg==}
+ /@bugsnag/browser@7.22.3:
+ resolution: {integrity: sha512-TWQSdsCqzxEVmaKzbtmqoBLWF58yjXi/ScC+6L5VNgSj+62jkIQuw5Evjs+7kLQX8WCnaG6XLiDmUJmPx6ZUrA==}
dependencies:
'@bugsnag/core': 7.19.0
dev: false
@@ -2564,7 +2590,7 @@ packages:
/@bugsnag/js@7.20.2:
resolution: {integrity: sha512-Q08k0h0h6NFwFGkFmib39Uln2WpvJdqT1EGF1JlyYiGW03Y+VopVb9r37pZrRrN9IY08mxaIEO8la5xeaWAs6A==}
dependencies:
- '@bugsnag/browser': 7.22.4
+ '@bugsnag/browser': 7.22.3
'@bugsnag/node': 7.22.3
dev: false
@@ -2587,15 +2613,15 @@ packages:
resolution: {integrity: sha512-snXIGNiZpqjno3XYQN2lbBB+05hsQR/LSttbtIW1c0gmZ7Kh/DIo0YrxlDxCDulAMFPFM8J+4voLwvYepSj3sw==}
hasBin: true
- /@cloudinary/transformation-builder-sdk@1.13.3:
- resolution: {integrity: sha512-tBMpjcwBjUgINGm2lKodb1fe32yBeq2KTSD7TrrFPm2/dQOb7lKmVuDaDe89IPcV+QZbb1JY/ZWL9pZjUV4aKw==}
+ /@cloudinary/transformation-builder-sdk@1.10.0:
+ resolution: {integrity: sha512-T8evZcLOgvcrBS6bVLseZPGL/BXLReRn+DbbBnKj7yTuJ9ppZ+8EFXpZn7c0Bb2hZz6C/0mC4B5fxKfgTPzDsw==}
dependencies:
- '@cloudinary/url-gen': 1.19.0
+ '@cloudinary/url-gen': 1.14.0
- /@cloudinary/url-gen@1.19.0:
- resolution: {integrity: sha512-3WSqYAMEe8lcYMFmkNPhOfv6Ql76mpf8O7YEC+CCaoIYrfBubzzeF8yENCaZK9tFJEHvMepI+uWWfilNrz48XA==}
+ /@cloudinary/url-gen@1.14.0:
+ resolution: {integrity: sha512-XbG8QgD5fkTUO/YYUWftfz3sUpKzRZJkXhp6xLSxmK/36iyMy2wA4SF5FLCOnv6fLLUneQzXbc4OAwaDM0EWCQ==}
dependencies:
- '@cloudinary/transformation-builder-sdk': 1.13.3
+ '@cloudinary/transformation-builder-sdk': 1.10.0
/@colors/colors@1.5.0:
resolution: {integrity: sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ==}
@@ -2608,23 +2634,22 @@ packages:
resolution: {integrity: sha512-Ir+AOibqzrIsL6ajt3Rz3LskB7OiMVHqltZmspbW/TJuTVuyOMirVqAkjfY6JISiLHgyNqicAC8AyHHGzNd/dA==}
engines: {node: '>=0.1.90'}
- /@commitlint/cli@18.4.3(@types/node@18.19.31)(typescript@5.3.3):
+ /@commitlint/cli@18.4.3(typescript@5.3.3):
resolution: {integrity: sha512-zop98yfB3A6NveYAZ3P1Mb6bIXuCeWgnUfVNkH4yhIMQpQfzFwseadazOuSn0OOfTt0lWuFauehpm9GcqM5lww==}
engines: {node: '>=v18'}
hasBin: true
dependencies:
- '@commitlint/format': 18.6.1
- '@commitlint/lint': 18.6.1
- '@commitlint/load': 18.6.1(@types/node@18.19.31)(typescript@5.3.3)
- '@commitlint/read': 18.6.1
- '@commitlint/types': 18.6.1
+ '@commitlint/format': 18.4.3
+ '@commitlint/lint': 18.4.3
+ '@commitlint/load': 18.4.3(typescript@5.3.3)
+ '@commitlint/read': 18.4.3
+ '@commitlint/types': 18.4.3
execa: 5.1.1
lodash.isfunction: 3.0.9
resolve-from: 5.0.0
resolve-global: 1.0.0
yargs: 17.7.2
transitivePeerDependencies:
- - '@types/node'
- typescript
dev: true
@@ -2635,19 +2660,19 @@ packages:
conventional-changelog-conventionalcommits: 7.0.2
dev: true
- /@commitlint/config-validator@18.6.1:
- resolution: {integrity: sha512-05uiToBVfPhepcQWE1ZQBR/Io3+tb3gEotZjnI4tTzzPk16NffN6YABgwFQCLmzZefbDcmwWqJWc2XT47q7Znw==}
+ /@commitlint/config-validator@18.4.3:
+ resolution: {integrity: sha512-FPZZmTJBARPCyef9ohRC9EANiQEKSWIdatx5OlgeHKu878dWwpyeFauVkhzuBRJFcCA4Uvz/FDtlDKs008IHcA==}
engines: {node: '>=v18'}
dependencies:
- '@commitlint/types': 18.6.1
+ '@commitlint/types': 18.4.3
ajv: 8.12.0
dev: true
- /@commitlint/ensure@18.6.1:
- resolution: {integrity: sha512-BPm6+SspyxQ7ZTsZwXc7TRQL5kh5YWt3euKmEIBZnocMFkJevqs3fbLRb8+8I/cfbVcAo4mxRlpTPfz8zX7SnQ==}
+ /@commitlint/ensure@18.4.3:
+ resolution: {integrity: sha512-MI4fwD9TWDVn4plF5+7JUyLLbkOdzIRBmVeNlk4dcGlkrVA+/l5GLcpN66q9LkFsFv6G2X31y89ApA3hqnqIFg==}
engines: {node: '>=v18'}
dependencies:
- '@commitlint/types': 18.6.1
+ '@commitlint/types': 18.4.3
lodash.camelcase: 4.3.0
lodash.kebabcase: 4.1.1
lodash.snakecase: 4.1.1
@@ -2655,118 +2680,119 @@ packages:
lodash.upperfirst: 4.3.1
dev: true
- /@commitlint/execute-rule@18.6.1:
- resolution: {integrity: sha512-7s37a+iWyJiGUeMFF6qBlyZciUkF8odSAnHijbD36YDctLhGKoYltdvuJ/AFfRm6cBLRtRk9cCVPdsEFtt/2rg==}
+ /@commitlint/execute-rule@18.4.3:
+ resolution: {integrity: sha512-t7FM4c+BdX9WWZCPrrbV5+0SWLgT3kCq7e7/GhHCreYifg3V8qyvO127HF796vyFql75n4TFF+5v1asOOWkV1Q==}
engines: {node: '>=v18'}
dev: true
- /@commitlint/format@18.6.1:
- resolution: {integrity: sha512-K8mNcfU/JEFCharj2xVjxGSF+My+FbUHoqR+4GqPGrHNqXOGNio47ziiR4HQUPKtiNs05o8/WyLBoIpMVOP7wg==}
+ /@commitlint/format@18.4.3:
+ resolution: {integrity: sha512-8b+ItXYHxAhRAXFfYki5PpbuMMOmXYuzLxib65z2XTqki59YDQJGpJ/wB1kEE5MQDgSTQWtKUrA8n9zS/1uIDQ==}
engines: {node: '>=v18'}
dependencies:
- '@commitlint/types': 18.6.1
+ '@commitlint/types': 18.4.3
chalk: 4.1.2
dev: true
- /@commitlint/is-ignored@18.6.1:
- resolution: {integrity: sha512-MOfJjkEJj/wOaPBw5jFjTtfnx72RGwqYIROABudOtJKW7isVjFe9j0t8xhceA02QebtYf4P/zea4HIwnXg8rvA==}
+ /@commitlint/is-ignored@18.4.3:
+ resolution: {integrity: sha512-ZseOY9UfuAI32h9w342Km4AIaTieeFskm2ZKdrG7r31+c6zGBzuny9KQhwI9puc0J3GkUquEgKJblCl7pMnjwg==}
engines: {node: '>=v18'}
dependencies:
- '@commitlint/types': 18.6.1
- semver: 7.6.0
+ '@commitlint/types': 18.4.3
+ semver: 7.5.4
dev: true
- /@commitlint/lint@18.6.1:
- resolution: {integrity: sha512-8WwIFo3jAuU+h1PkYe5SfnIOzp+TtBHpFr4S8oJWhu44IWKuVx6GOPux3+9H1iHOan/rGBaiacicZkMZuluhfQ==}
+ /@commitlint/lint@18.4.3:
+ resolution: {integrity: sha512-18u3MRgEXNbnYkMOWoncvq6QB8/90m9TbERKgdPqVvS+zQ/MsuRhdvHYCIXGXZxUb0YI4DV2PC4bPneBV/fYuA==}
engines: {node: '>=v18'}
dependencies:
- '@commitlint/is-ignored': 18.6.1
- '@commitlint/parse': 18.6.1
- '@commitlint/rules': 18.6.1
- '@commitlint/types': 18.6.1
+ '@commitlint/is-ignored': 18.4.3
+ '@commitlint/parse': 18.4.3
+ '@commitlint/rules': 18.4.3
+ '@commitlint/types': 18.4.3
dev: true
- /@commitlint/load@18.6.1(@types/node@18.19.31)(typescript@5.3.3):
- resolution: {integrity: sha512-p26x8734tSXUHoAw0ERIiHyW4RaI4Bj99D8YgUlVV9SedLf8hlWAfyIFhHRIhfPngLlCe0QYOdRKYFt8gy56TA==}
+ /@commitlint/load@18.4.3(typescript@5.3.3):
+ resolution: {integrity: sha512-v6j2WhvRQJrcJaj5D+EyES2WKTxPpxENmNpNG3Ww8MZGik3jWRXtph0QTzia5ZJyPh2ib5aC/6BIDymkUUM58Q==}
engines: {node: '>=v18'}
dependencies:
- '@commitlint/config-validator': 18.6.1
- '@commitlint/execute-rule': 18.6.1
- '@commitlint/resolve-extends': 18.6.1
- '@commitlint/types': 18.6.1
+ '@commitlint/config-validator': 18.4.3
+ '@commitlint/execute-rule': 18.4.3
+ '@commitlint/resolve-extends': 18.4.3
+ '@commitlint/types': 18.4.3
+ '@types/node': 18.19.17
chalk: 4.1.2
cosmiconfig: 8.3.6(typescript@5.3.3)
- cosmiconfig-typescript-loader: 5.0.0(@types/node@18.19.31)(cosmiconfig@8.3.6)(typescript@5.3.3)
+ cosmiconfig-typescript-loader: 5.0.0(@types/node@18.19.17)(cosmiconfig@8.3.6)(typescript@5.3.3)
lodash.isplainobject: 4.0.6
lodash.merge: 4.6.2
lodash.uniq: 4.5.0
resolve-from: 5.0.0
transitivePeerDependencies:
- - '@types/node'
- typescript
dev: true
- /@commitlint/message@18.6.1:
- resolution: {integrity: sha512-VKC10UTMLcpVjMIaHHsY1KwhuTQtdIKPkIdVEwWV+YuzKkzhlI3aNy6oo1eAN6b/D2LTtZkJe2enHmX0corYRw==}
+ /@commitlint/message@18.4.3:
+ resolution: {integrity: sha512-ddJ7AztWUIoEMAXoewx45lKEYEOeOlBVWjk8hDMUGpprkuvWULpaXczqdjwVtjrKT3JhhN+gMs8pm5G3vB2how==}
engines: {node: '>=v18'}
dev: true
- /@commitlint/parse@18.6.1:
- resolution: {integrity: sha512-eS/3GREtvVJqGZrwAGRwR9Gdno3YcZ6Xvuaa+vUF8j++wsmxrA2En3n0ccfVO2qVOLJC41ni7jSZhQiJpMPGOQ==}
+ /@commitlint/parse@18.4.3:
+ resolution: {integrity: sha512-eoH7CXM9L+/Me96KVcfJ27EIIbA5P9sqw3DqjJhRYuhaULIsPHFs5S5GBDCqT0vKZQDx0DgxhMpW6AQbnKrFtA==}
engines: {node: '>=v18'}
dependencies:
- '@commitlint/types': 18.6.1
+ '@commitlint/types': 18.4.3
conventional-changelog-angular: 7.0.0
conventional-commits-parser: 5.0.0
dev: true
- /@commitlint/read@18.6.1:
- resolution: {integrity: sha512-ia6ODaQFzXrVul07ffSgbZGFajpe8xhnDeLIprLeyfz3ivQU1dIoHp7yz0QIorZ6yuf4nlzg4ZUkluDrGN/J/w==}
+ /@commitlint/read@18.4.3:
+ resolution: {integrity: sha512-H4HGxaYA6OBCimZAtghL+B+SWu8ep4X7BwgmedmqWZRHxRLcX2q0bWBtUm5FsMbluxbOfrJwOs/Z0ah4roP/GQ==}
engines: {node: '>=v18'}
dependencies:
- '@commitlint/top-level': 18.6.1
- '@commitlint/types': 18.6.1
+ '@commitlint/top-level': 18.4.3
+ '@commitlint/types': 18.4.3
+ fs-extra: 11.2.0
git-raw-commits: 2.0.11
minimist: 1.2.8
dev: true
- /@commitlint/resolve-extends@18.6.1:
- resolution: {integrity: sha512-ifRAQtHwK+Gj3Bxj/5chhc4L2LIc3s30lpsyW67yyjsETR6ctHAHRu1FSpt0KqahK5xESqoJ92v6XxoDRtjwEQ==}
+ /@commitlint/resolve-extends@18.4.3:
+ resolution: {integrity: sha512-30sk04LZWf8+SDgJrbJCjM90gTg2LxsD9cykCFeFu+JFHvBFq5ugzp2eO/DJGylAdVaqxej3c7eTSE64hR/lnw==}
engines: {node: '>=v18'}
dependencies:
- '@commitlint/config-validator': 18.6.1
- '@commitlint/types': 18.6.1
+ '@commitlint/config-validator': 18.4.3
+ '@commitlint/types': 18.4.3
import-fresh: 3.3.0
lodash.mergewith: 4.6.2
resolve-from: 5.0.0
resolve-global: 1.0.0
dev: true
- /@commitlint/rules@18.6.1:
- resolution: {integrity: sha512-kguM6HxZDtz60v/zQYOe0voAtTdGybWXefA1iidjWYmyUUspO1zBPQEmJZ05/plIAqCVyNUTAiRPWIBKLCrGew==}
+ /@commitlint/rules@18.4.3:
+ resolution: {integrity: sha512-8KIeukDf45BiY+Lul1T0imSNXF0sMrlLG6JpLLKolkmYVQ6PxxoNOriwyZ3UTFFpaVbPy0rcITaV7U9JCAfDTA==}
engines: {node: '>=v18'}
dependencies:
- '@commitlint/ensure': 18.6.1
- '@commitlint/message': 18.6.1
- '@commitlint/to-lines': 18.6.1
- '@commitlint/types': 18.6.1
+ '@commitlint/ensure': 18.4.3
+ '@commitlint/message': 18.4.3
+ '@commitlint/to-lines': 18.4.3
+ '@commitlint/types': 18.4.3
execa: 5.1.1
dev: true
- /@commitlint/to-lines@18.6.1:
- resolution: {integrity: sha512-Gl+orGBxYSNphx1+83GYeNy5N0dQsHBQ9PJMriaLQDB51UQHCVLBT/HBdOx5VaYksivSf5Os55TLePbRLlW50Q==}
+ /@commitlint/to-lines@18.4.3:
+ resolution: {integrity: sha512-fy1TAleik4Zfru1RJ8ZU6cOSvgSVhUellxd3WZV1D5RwHZETt1sZdcA4mQN2y3VcIZsUNKkW0Mq8CM9/L9harQ==}
engines: {node: '>=v18'}
dev: true
- /@commitlint/top-level@18.6.1:
- resolution: {integrity: sha512-HyiHQZUTf0+r0goTCDs/bbVv/LiiQ7AVtz6KIar+8ZrseB9+YJAIo8HQ2IC2QT1y3N1lbW6OqVEsTHjbT6hGSw==}
+ /@commitlint/top-level@18.4.3:
+ resolution: {integrity: sha512-E6fJPBLPFL5R8+XUNSYkj4HekIOuGMyJo3mIx2PkYc3clel+pcWQ7TConqXxNWW4x1ugigiIY2RGot55qUq1hw==}
engines: {node: '>=v18'}
dependencies:
find-up: 5.0.0
dev: true
- /@commitlint/types@18.6.1:
- resolution: {integrity: sha512-gwRLBLra/Dozj2OywopeuHj2ac26gjGkz2cZ+86cTJOdtWfiRRr4+e77ZDAGc6MDWxaWheI+mAV5TLWWRwqrFg==}
+ /@commitlint/types@18.4.3:
+ resolution: {integrity: sha512-cvzx+vtY/I2hVBZHCLrpoh+sA0hfuzHwDc+BAFPimYLjJkpHnghQM+z8W/KyLGkygJh3BtI3xXXq+dKjnSWEmA==}
engines: {node: '>=v18'}
dependencies:
chalk: 4.1.2
@@ -2864,11 +2890,11 @@ packages:
/@emotion/babel-plugin@11.11.0:
resolution: {integrity: sha512-m4HEDZleaaCH+XgDDsPF15Ht6wTLsgDTeR3WYj9Q/k76JtWhrJjcP4+/XlG8LGT/Rol9qUfOIztXeA84ATpqPQ==}
dependencies:
- '@babel/helper-module-imports': 7.24.3
- '@babel/runtime': 7.24.4
+ '@babel/helper-module-imports': 7.22.15
+ '@babel/runtime': 7.23.7
'@emotion/hash': 0.9.1
'@emotion/memoize': 0.8.1
- '@emotion/serialize': 1.1.4
+ '@emotion/serialize': 1.1.3
babel-plugin-macros: 3.1.0
convert-source-map: 1.9.0
escape-string-regexp: 4.0.0
@@ -2896,8 +2922,8 @@ packages:
dev: false
optional: true
- /@emotion/is-prop-valid@1.2.2:
- resolution: {integrity: sha512-uNsoYd37AFmaCdXlg6EYD1KaPOaRWRByMCYzbKUX4+hhMfrxdVSelShywL4JVaAeM/eHUOSprYBQls+/neX3pw==}
+ /@emotion/is-prop-valid@1.2.1:
+ resolution: {integrity: sha512-61Mf7Ufx4aDxx1xlDeOm8aFFigGHE4z+0sKCa+IHCeZKiyP9RLD0Mmx7m8b9/Cf37f7NAvQOOJAbQQGVr5uERw==}
dependencies:
'@emotion/memoize': 0.8.1
@@ -2910,8 +2936,8 @@ packages:
/@emotion/memoize@0.8.1:
resolution: {integrity: sha512-W2P2c/VRW1/1tLox0mVUalvnWXxavmv/Oum2aPsRcoDJuob75FC3Y8FbpfLwUegRcxINtGUMPq0tFCvYNTBXNA==}
- /@emotion/react@11.11.4(@types/react@18.2.46)(react@18.2.0):
- resolution: {integrity: sha512-t8AjMlF0gHpvvxk5mAtCqR4vmxiGHCeJBaQO6gncUSdklELOgtwjerNY2yuJNfwnc6vi16U/+uMF+afIawJ9iw==}
+ /@emotion/react@11.11.3(@types/react@18.2.46)(react@18.2.0):
+ resolution: {integrity: sha512-Cnn0kuq4DoONOMcnoVsTOR8E+AdnKFf//6kUWc4LCdnxj31pZWn7rIULd6Y7/Js1PiPHzn7SKCM9vB/jBni8eA==}
peerDependencies:
'@types/react': '*'
react: '>=16.8.0'
@@ -2919,10 +2945,10 @@ packages:
'@types/react':
optional: true
dependencies:
- '@babel/runtime': 7.24.4
+ '@babel/runtime': 7.23.7
'@emotion/babel-plugin': 11.11.0
'@emotion/cache': 11.11.0
- '@emotion/serialize': 1.1.4
+ '@emotion/serialize': 1.1.3
'@emotion/use-insertion-effect-with-fallbacks': 1.0.1(react@18.2.0)
'@emotion/utils': 1.2.1
'@emotion/weak-memoize': 0.3.1
@@ -2930,8 +2956,8 @@ packages:
hoist-non-react-statics: 3.3.2
react: 18.2.0
- /@emotion/serialize@1.1.4:
- resolution: {integrity: sha512-RIN04MBT8g+FnDwgvIUi8czvr1LU1alUMI05LekWB5DGyTm8cCBMCRpq3GqaiyEDRptEXOyXnvZ58GZYu4kBxQ==}
+ /@emotion/serialize@1.1.3:
+ resolution: {integrity: sha512-iD4D6QVZFDhcbH0RAG1uVu1CwVLMWUkCvAqqlewO/rxf8+87yIBAlt4+AxMiiKPLs5hFc0owNk/sLLAOROw3cA==}
dependencies:
'@emotion/hash': 0.9.1
'@emotion/memoize': 0.8.1
@@ -2942,8 +2968,8 @@ packages:
/@emotion/sheet@1.2.2:
resolution: {integrity: sha512-0QBtGvaqtWi+nx6doRwDdBIzhNdZrXUppvTM4dtZZWEGTXL/XE/yJxLMGlDT1Gt+UHH5IX1n+jkXyytE/av7OA==}
- /@emotion/styled@11.11.5(@emotion/react@11.11.4)(@types/react@18.2.46)(react@18.2.0):
- resolution: {integrity: sha512-/ZjjnaNKvuMPxcIiUkf/9SHoG4Q196DRl1w82hQ3WCsjo1IUR8uaGWrC6a87CrYAW0Kb/pK7hk8BnLgLRi9KoQ==}
+ /@emotion/styled@11.11.0(@emotion/react@11.11.3)(@types/react@18.2.46)(react@18.2.0):
+ resolution: {integrity: sha512-hM5Nnvu9P3midq5aaXj4I+lnSfNi7Pmd4EWk1fOZ3pxookaQTNew6bp4JaCBYM4HVFZF9g7UjJmsUmC2JlxOng==}
peerDependencies:
'@emotion/react': ^11.0.0-rc.0
'@types/react': '*'
@@ -2952,11 +2978,11 @@ packages:
'@types/react':
optional: true
dependencies:
- '@babel/runtime': 7.24.4
+ '@babel/runtime': 7.23.7
'@emotion/babel-plugin': 11.11.0
- '@emotion/is-prop-valid': 1.2.2
- '@emotion/react': 11.11.4(@types/react@18.2.46)(react@18.2.0)
- '@emotion/serialize': 1.1.4
+ '@emotion/is-prop-valid': 1.2.1
+ '@emotion/react': 11.11.3(@types/react@18.2.46)(react@18.2.0)
+ '@emotion/serialize': 1.1.3
'@emotion/use-insertion-effect-with-fallbacks': 1.0.1(react@18.2.0)
'@emotion/utils': 1.2.1
'@types/react': 18.2.46
@@ -2984,15 +3010,6 @@ packages:
cpu: [ppc64]
os: [aix]
requiresBuild: true
- dev: false
- optional: true
-
- /@esbuild/aix-ppc64@0.19.12:
- resolution: {integrity: sha512-bmoCYyWdEL3wDQIVbcyzRyeKLgk2WtWLTWz1ZIAZF/EGbNOwSA6ew3PftJ1PqMiOOGu0OyFMzG53L0zqIpPeNA==}
- engines: {node: '>=12'}
- cpu: [ppc64]
- os: [aix]
- requiresBuild: true
optional: true
/@esbuild/aix-ppc64@0.20.0:
@@ -3004,14 +3021,6 @@ packages:
dev: false
optional: true
- /@esbuild/aix-ppc64@0.20.2:
- resolution: {integrity: sha512-D+EBOJHXdNZcLJRBkhENNG8Wji2kgc9AZ9KiPr1JuZjsNtyHzrsfLRrY0tk2H2aoFu6RANO1y1iPPUCDYWkb5g==}
- engines: {node: '>=12'}
- cpu: [ppc64]
- os: [aix]
- requiresBuild: true
- optional: true
-
/@esbuild/android-arm64@0.18.20:
resolution: {integrity: sha512-Nz4rJcchGDtENV0eMKUNa6L12zz2zBDXuhj/Vjh18zGqB44Bi7MBMSXjgunJgjRhCmKOjnPuZp4Mb6OKqtMHLQ==}
engines: {node: '>=12'}
@@ -3027,15 +3036,6 @@ packages:
cpu: [arm64]
os: [android]
requiresBuild: true
- dev: false
- optional: true
-
- /@esbuild/android-arm64@0.19.12:
- resolution: {integrity: sha512-P0UVNGIienjZv3f5zq0DP3Nt2IE/3plFzuaS96vihvD0Hd6H/q4WXUGpCxD/E8YrSXfNyRPbpTq+T8ZQioSuPA==}
- engines: {node: '>=12'}
- cpu: [arm64]
- os: [android]
- requiresBuild: true
optional: true
/@esbuild/android-arm64@0.20.0:
@@ -3047,14 +3047,6 @@ packages:
dev: false
optional: true
- /@esbuild/android-arm64@0.20.2:
- resolution: {integrity: sha512-mRzjLacRtl/tWU0SvD8lUEwb61yP9cqQo6noDZP/O8VkwafSYwZ4yWy24kan8jE/IMERpYncRt2dw438LP3Xmg==}
- engines: {node: '>=12'}
- cpu: [arm64]
- os: [android]
- requiresBuild: true
- optional: true
-
/@esbuild/android-arm@0.18.20:
resolution: {integrity: sha512-fyi7TDI/ijKKNZTUJAQqiG5T7YjJXgnzkURqmGj13C6dCqckZBLdl4h7bkhHt/t0WP+zO9/zwroDvANaOqO5Sw==}
engines: {node: '>=12'}
@@ -3070,15 +3062,6 @@ packages:
cpu: [arm]
os: [android]
requiresBuild: true
- dev: false
- optional: true
-
- /@esbuild/android-arm@0.19.12:
- resolution: {integrity: sha512-qg/Lj1mu3CdQlDEEiWrlC4eaPZ1KztwGJ9B6J+/6G+/4ewxJg7gqj8eVYWvao1bXrqGiW2rsBZFSX3q2lcW05w==}
- engines: {node: '>=12'}
- cpu: [arm]
- os: [android]
- requiresBuild: true
optional: true
/@esbuild/android-arm@0.20.0:
@@ -3090,14 +3073,6 @@ packages:
dev: false
optional: true
- /@esbuild/android-arm@0.20.2:
- resolution: {integrity: sha512-t98Ra6pw2VaDhqNWO2Oph2LXbz/EJcnLmKLGBJwEwXX/JAN83Fym1rU8l0JUWK6HkIbWONCSSatf4sf2NBRx/w==}
- engines: {node: '>=12'}
- cpu: [arm]
- os: [android]
- requiresBuild: true
- optional: true
-
/@esbuild/android-x64@0.18.20:
resolution: {integrity: sha512-8GDdlePJA8D6zlZYJV/jnrRAi6rOiNaCC/JclcXpB+KIuvfBN4owLtgzY2bsxnx666XjJx2kDPUmnTtR8qKQUg==}
engines: {node: '>=12'}
@@ -3113,15 +3088,6 @@ packages:
cpu: [x64]
os: [android]
requiresBuild: true
- dev: false
- optional: true
-
- /@esbuild/android-x64@0.19.12:
- resolution: {integrity: sha512-3k7ZoUW6Q6YqhdhIaq/WZ7HwBpnFBlW905Fa4s4qWJyiNOgT1dOqDiVAQFwBH7gBRZr17gLrlFCRzF6jFh7Kew==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [android]
- requiresBuild: true
optional: true
/@esbuild/android-x64@0.20.0:
@@ -3133,14 +3099,6 @@ packages:
dev: false
optional: true
- /@esbuild/android-x64@0.20.2:
- resolution: {integrity: sha512-btzExgV+/lMGDDa194CcUQm53ncxzeBrWJcncOBxuC6ndBkKxnHdFJn86mCIgTELsooUmwUm9FkhSp5HYu00Rg==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [android]
- requiresBuild: true
- optional: true
-
/@esbuild/darwin-arm64@0.18.20:
resolution: {integrity: sha512-bxRHW5kHU38zS2lPTPOyuyTm+S+eobPUnTNkdJEfAddYgEcll4xkT8DB9d2008DtTbl7uJag2HuE5NZAZgnNEA==}
engines: {node: '>=12'}
@@ -3156,15 +3114,6 @@ packages:
cpu: [arm64]
os: [darwin]
requiresBuild: true
- dev: false
- optional: true
-
- /@esbuild/darwin-arm64@0.19.12:
- resolution: {integrity: sha512-B6IeSgZgtEzGC42jsI+YYu9Z3HKRxp8ZT3cqhvliEHovq8HSX2YX8lNocDn79gCKJXOSaEot9MVYky7AKjCs8g==}
- engines: {node: '>=12'}
- cpu: [arm64]
- os: [darwin]
- requiresBuild: true
optional: true
/@esbuild/darwin-arm64@0.20.0:
@@ -3176,14 +3125,6 @@ packages:
dev: false
optional: true
- /@esbuild/darwin-arm64@0.20.2:
- resolution: {integrity: sha512-4J6IRT+10J3aJH3l1yzEg9y3wkTDgDk7TSDFX+wKFiWjqWp/iCfLIYzGyasx9l0SAFPT1HwSCR+0w/h1ES/MjA==}
- engines: {node: '>=12'}
- cpu: [arm64]
- os: [darwin]
- requiresBuild: true
- optional: true
-
/@esbuild/darwin-x64@0.18.20:
resolution: {integrity: sha512-pc5gxlMDxzm513qPGbCbDukOdsGtKhfxD1zJKXjCCcU7ju50O7MeAZ8c4krSJcOIJGFR+qx21yMMVYwiQvyTyQ==}
engines: {node: '>=12'}
@@ -3199,15 +3140,6 @@ packages:
cpu: [x64]
os: [darwin]
requiresBuild: true
- dev: false
- optional: true
-
- /@esbuild/darwin-x64@0.19.12:
- resolution: {integrity: sha512-hKoVkKzFiToTgn+41qGhsUJXFlIjxI/jSYeZf3ugemDYZldIXIxhvwN6erJGlX4t5h417iFuheZ7l+YVn05N3A==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [darwin]
- requiresBuild: true
optional: true
/@esbuild/darwin-x64@0.20.0:
@@ -3219,14 +3151,6 @@ packages:
dev: false
optional: true
- /@esbuild/darwin-x64@0.20.2:
- resolution: {integrity: sha512-tBcXp9KNphnNH0dfhv8KYkZhjc+H3XBkF5DKtswJblV7KlT9EI2+jeA8DgBjp908WEuYll6pF+UStUCfEpdysA==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [darwin]
- requiresBuild: true
- optional: true
-
/@esbuild/freebsd-arm64@0.18.20:
resolution: {integrity: sha512-yqDQHy4QHevpMAaxhhIwYPMv1NECwOvIpGCZkECn8w2WFHXjEwrBn3CeNIYsibZ/iZEUemj++M26W3cNR5h+Tw==}
engines: {node: '>=12'}
@@ -3242,15 +3166,6 @@ packages:
cpu: [arm64]
os: [freebsd]
requiresBuild: true
- dev: false
- optional: true
-
- /@esbuild/freebsd-arm64@0.19.12:
- resolution: {integrity: sha512-4aRvFIXmwAcDBw9AueDQ2YnGmz5L6obe5kmPT8Vd+/+x/JMVKCgdcRwH6APrbpNXsPz+K653Qg8HB/oXvXVukA==}
- engines: {node: '>=12'}
- cpu: [arm64]
- os: [freebsd]
- requiresBuild: true
optional: true
/@esbuild/freebsd-arm64@0.20.0:
@@ -3262,14 +3177,6 @@ packages:
dev: false
optional: true
- /@esbuild/freebsd-arm64@0.20.2:
- resolution: {integrity: sha512-d3qI41G4SuLiCGCFGUrKsSeTXyWG6yem1KcGZVS+3FYlYhtNoNgYrWcvkOoaqMhwXSMrZRl69ArHsGJ9mYdbbw==}
- engines: {node: '>=12'}
- cpu: [arm64]
- os: [freebsd]
- requiresBuild: true
- optional: true
-
/@esbuild/freebsd-x64@0.18.20:
resolution: {integrity: sha512-tgWRPPuQsd3RmBZwarGVHZQvtzfEBOreNuxEMKFcd5DaDn2PbBxfwLcj4+aenoh7ctXcbXmOQIn8HI6mCSw5MQ==}
engines: {node: '>=12'}
@@ -3285,15 +3192,6 @@ packages:
cpu: [x64]
os: [freebsd]
requiresBuild: true
- dev: false
- optional: true
-
- /@esbuild/freebsd-x64@0.19.12:
- resolution: {integrity: sha512-EYoXZ4d8xtBoVN7CEwWY2IN4ho76xjYXqSXMNccFSx2lgqOG/1TBPW0yPx1bJZk94qu3tX0fycJeeQsKovA8gg==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [freebsd]
- requiresBuild: true
optional: true
/@esbuild/freebsd-x64@0.20.0:
@@ -3305,14 +3203,6 @@ packages:
dev: false
optional: true
- /@esbuild/freebsd-x64@0.20.2:
- resolution: {integrity: sha512-d+DipyvHRuqEeM5zDivKV1KuXn9WeRX6vqSqIDgwIfPQtwMP4jaDsQsDncjTDDsExT4lR/91OLjRo8bmC1e+Cw==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [freebsd]
- requiresBuild: true
- optional: true
-
/@esbuild/linux-arm64@0.18.20:
resolution: {integrity: sha512-2YbscF+UL7SQAVIpnWvYwM+3LskyDmPhe31pE7/aoTMFKKzIc9lLbyGUpmmb8a8AixOL61sQ/mFh3jEjHYFvdA==}
engines: {node: '>=12'}
@@ -3328,15 +3218,6 @@ packages:
cpu: [arm64]
os: [linux]
requiresBuild: true
- dev: false
- optional: true
-
- /@esbuild/linux-arm64@0.19.12:
- resolution: {integrity: sha512-EoTjyYyLuVPfdPLsGVVVC8a0p1BFFvtpQDB/YLEhaXyf/5bczaGeN15QkR+O4S5LeJ92Tqotve7i1jn35qwvdA==}
- engines: {node: '>=12'}
- cpu: [arm64]
- os: [linux]
- requiresBuild: true
optional: true
/@esbuild/linux-arm64@0.20.0:
@@ -3348,14 +3229,6 @@ packages:
dev: false
optional: true
- /@esbuild/linux-arm64@0.20.2:
- resolution: {integrity: sha512-9pb6rBjGvTFNira2FLIWqDk/uaf42sSyLE8j1rnUpuzsODBq7FvpwHYZxQ/It/8b+QOS1RYfqgGFNLRI+qlq2A==}
- engines: {node: '>=12'}
- cpu: [arm64]
- os: [linux]
- requiresBuild: true
- optional: true
-
/@esbuild/linux-arm@0.18.20:
resolution: {integrity: sha512-/5bHkMWnq1EgKr1V+Ybz3s1hWXok7mDFUMQ4cG10AfW3wL02PSZi5kFpYKrptDsgb2WAJIvRcDm+qIvXf/apvg==}
engines: {node: '>=12'}
@@ -3371,15 +3244,6 @@ packages:
cpu: [arm]
os: [linux]
requiresBuild: true
- dev: false
- optional: true
-
- /@esbuild/linux-arm@0.19.12:
- resolution: {integrity: sha512-J5jPms//KhSNv+LO1S1TX1UWp1ucM6N6XuL6ITdKWElCu8wXP72l9MM0zDTzzeikVyqFE6U8YAV9/tFyj0ti+w==}
- engines: {node: '>=12'}
- cpu: [arm]
- os: [linux]
- requiresBuild: true
optional: true
/@esbuild/linux-arm@0.20.0:
@@ -3391,14 +3255,6 @@ packages:
dev: false
optional: true
- /@esbuild/linux-arm@0.20.2:
- resolution: {integrity: sha512-VhLPeR8HTMPccbuWWcEUD1Az68TqaTYyj6nfE4QByZIQEQVWBB8vup8PpR7y1QHL3CpcF6xd5WVBU/+SBEvGTg==}
- engines: {node: '>=12'}
- cpu: [arm]
- os: [linux]
- requiresBuild: true
- optional: true
-
/@esbuild/linux-ia32@0.18.20:
resolution: {integrity: sha512-P4etWwq6IsReT0E1KHU40bOnzMHoH73aXp96Fs8TIT6z9Hu8G6+0SHSw9i2isWrD2nbx2qo5yUqACgdfVGx7TA==}
engines: {node: '>=12'}
@@ -3414,15 +3270,6 @@ packages:
cpu: [ia32]
os: [linux]
requiresBuild: true
- dev: false
- optional: true
-
- /@esbuild/linux-ia32@0.19.12:
- resolution: {integrity: sha512-Thsa42rrP1+UIGaWz47uydHSBOgTUnwBwNq59khgIwktK6x60Hivfbux9iNR0eHCHzOLjLMLfUMLCypBkZXMHA==}
- engines: {node: '>=12'}
- cpu: [ia32]
- os: [linux]
- requiresBuild: true
optional: true
/@esbuild/linux-ia32@0.20.0:
@@ -3434,14 +3281,6 @@ packages:
dev: false
optional: true
- /@esbuild/linux-ia32@0.20.2:
- resolution: {integrity: sha512-o10utieEkNPFDZFQm9CoP7Tvb33UutoJqg3qKf1PWVeeJhJw0Q347PxMvBgVVFgouYLGIhFYG0UGdBumROyiig==}
- engines: {node: '>=12'}
- cpu: [ia32]
- os: [linux]
- requiresBuild: true
- optional: true
-
/@esbuild/linux-loong64@0.18.20:
resolution: {integrity: sha512-nXW8nqBTrOpDLPgPY9uV+/1DjxoQ7DoB2N8eocyq8I9XuqJ7BiAMDMf9n1xZM9TgW0J8zrquIb/A7s3BJv7rjg==}
engines: {node: '>=12'}
@@ -3457,15 +3296,6 @@ packages:
cpu: [loong64]
os: [linux]
requiresBuild: true
- dev: false
- optional: true
-
- /@esbuild/linux-loong64@0.19.12:
- resolution: {integrity: sha512-LiXdXA0s3IqRRjm6rV6XaWATScKAXjI4R4LoDlvO7+yQqFdlr1Bax62sRwkVvRIrwXxvtYEHHI4dm50jAXkuAA==}
- engines: {node: '>=12'}
- cpu: [loong64]
- os: [linux]
- requiresBuild: true
optional: true
/@esbuild/linux-loong64@0.20.0:
@@ -3477,14 +3307,6 @@ packages:
dev: false
optional: true
- /@esbuild/linux-loong64@0.20.2:
- resolution: {integrity: sha512-PR7sp6R/UC4CFVomVINKJ80pMFlfDfMQMYynX7t1tNTeivQ6XdX5r2XovMmha/VjR1YN/HgHWsVcTRIMkymrgQ==}
- engines: {node: '>=12'}
- cpu: [loong64]
- os: [linux]
- requiresBuild: true
- optional: true
-
/@esbuild/linux-mips64el@0.18.20:
resolution: {integrity: sha512-d5NeaXZcHp8PzYy5VnXV3VSd2D328Zb+9dEq5HE6bw6+N86JVPExrA6O68OPwobntbNJ0pzCpUFZTo3w0GyetQ==}
engines: {node: '>=12'}
@@ -3500,15 +3322,6 @@ packages:
cpu: [mips64el]
os: [linux]
requiresBuild: true
- dev: false
- optional: true
-
- /@esbuild/linux-mips64el@0.19.12:
- resolution: {integrity: sha512-fEnAuj5VGTanfJ07ff0gOA6IPsvrVHLVb6Lyd1g2/ed67oU1eFzL0r9WL7ZzscD+/N6i3dWumGE1Un4f7Amf+w==}
- engines: {node: '>=12'}
- cpu: [mips64el]
- os: [linux]
- requiresBuild: true
optional: true
/@esbuild/linux-mips64el@0.20.0:
@@ -3520,14 +3333,6 @@ packages:
dev: false
optional: true
- /@esbuild/linux-mips64el@0.20.2:
- resolution: {integrity: sha512-4BlTqeutE/KnOiTG5Y6Sb/Hw6hsBOZapOVF6njAESHInhlQAghVVZL1ZpIctBOoTFbQyGW+LsVYZ8lSSB3wkjA==}
- engines: {node: '>=12'}
- cpu: [mips64el]
- os: [linux]
- requiresBuild: true
- optional: true
-
/@esbuild/linux-ppc64@0.18.20:
resolution: {integrity: sha512-WHPyeScRNcmANnLQkq6AfyXRFr5D6N2sKgkFo2FqguP44Nw2eyDlbTdZwd9GYk98DZG9QItIiTlFLHJHjxP3FA==}
engines: {node: '>=12'}
@@ -3543,15 +3348,6 @@ packages:
cpu: [ppc64]
os: [linux]
requiresBuild: true
- dev: false
- optional: true
-
- /@esbuild/linux-ppc64@0.19.12:
- resolution: {integrity: sha512-nYJA2/QPimDQOh1rKWedNOe3Gfc8PabU7HT3iXWtNUbRzXS9+vgB0Fjaqr//XNbd82mCxHzik2qotuI89cfixg==}
- engines: {node: '>=12'}
- cpu: [ppc64]
- os: [linux]
- requiresBuild: true
optional: true
/@esbuild/linux-ppc64@0.20.0:
@@ -3563,14 +3359,6 @@ packages:
dev: false
optional: true
- /@esbuild/linux-ppc64@0.20.2:
- resolution: {integrity: sha512-rD3KsaDprDcfajSKdn25ooz5J5/fWBylaaXkuotBDGnMnDP1Uv5DLAN/45qfnf3JDYyJv/ytGHQaziHUdyzaAg==}
- engines: {node: '>=12'}
- cpu: [ppc64]
- os: [linux]
- requiresBuild: true
- optional: true
-
/@esbuild/linux-riscv64@0.18.20:
resolution: {integrity: sha512-WSxo6h5ecI5XH34KC7w5veNnKkju3zBRLEQNY7mv5mtBmrP/MjNBCAlsM2u5hDBlS3NGcTQpoBvRzqBcRtpq1A==}
engines: {node: '>=12'}
@@ -3586,15 +3374,6 @@ packages:
cpu: [riscv64]
os: [linux]
requiresBuild: true
- dev: false
- optional: true
-
- /@esbuild/linux-riscv64@0.19.12:
- resolution: {integrity: sha512-2MueBrlPQCw5dVJJpQdUYgeqIzDQgw3QtiAHUC4RBz9FXPrskyyU3VI1hw7C0BSKB9OduwSJ79FTCqtGMWqJHg==}
- engines: {node: '>=12'}
- cpu: [riscv64]
- os: [linux]
- requiresBuild: true
optional: true
/@esbuild/linux-riscv64@0.20.0:
@@ -3606,14 +3385,6 @@ packages:
dev: false
optional: true
- /@esbuild/linux-riscv64@0.20.2:
- resolution: {integrity: sha512-snwmBKacKmwTMmhLlz/3aH1Q9T8v45bKYGE3j26TsaOVtjIag4wLfWSiZykXzXuE1kbCE+zJRmwp+ZbIHinnVg==}
- engines: {node: '>=12'}
- cpu: [riscv64]
- os: [linux]
- requiresBuild: true
- optional: true
-
/@esbuild/linux-s390x@0.18.20:
resolution: {integrity: sha512-+8231GMs3mAEth6Ja1iK0a1sQ3ohfcpzpRLH8uuc5/KVDFneH6jtAJLFGafpzpMRO6DzJ6AvXKze9LfFMrIHVQ==}
engines: {node: '>=12'}
@@ -3629,15 +3400,6 @@ packages:
cpu: [s390x]
os: [linux]
requiresBuild: true
- dev: false
- optional: true
-
- /@esbuild/linux-s390x@0.19.12:
- resolution: {integrity: sha512-+Pil1Nv3Umes4m3AZKqA2anfhJiVmNCYkPchwFJNEJN5QxmTs1uzyy4TvmDrCRNT2ApwSari7ZIgrPeUx4UZDg==}
- engines: {node: '>=12'}
- cpu: [s390x]
- os: [linux]
- requiresBuild: true
optional: true
/@esbuild/linux-s390x@0.20.0:
@@ -3649,14 +3411,6 @@ packages:
dev: false
optional: true
- /@esbuild/linux-s390x@0.20.2:
- resolution: {integrity: sha512-wcWISOobRWNm3cezm5HOZcYz1sKoHLd8VL1dl309DiixxVFoFe/o8HnwuIwn6sXre88Nwj+VwZUvJf4AFxkyrQ==}
- engines: {node: '>=12'}
- cpu: [s390x]
- os: [linux]
- requiresBuild: true
- optional: true
-
/@esbuild/linux-x64@0.18.20:
resolution: {integrity: sha512-UYqiqemphJcNsFEskc73jQ7B9jgwjWrSayxawS6UVFZGWrAAtkzjxSqnoclCXxWtfwLdzU+vTpcNYhpn43uP1w==}
engines: {node: '>=12'}
@@ -3672,15 +3426,6 @@ packages:
cpu: [x64]
os: [linux]
requiresBuild: true
- dev: false
- optional: true
-
- /@esbuild/linux-x64@0.19.12:
- resolution: {integrity: sha512-B71g1QpxfwBvNrfyJdVDexenDIt1CiDN1TIXLbhOw0KhJzE78KIFGX6OJ9MrtC0oOqMWf+0xop4qEU8JrJTwCg==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [linux]
- requiresBuild: true
optional: true
/@esbuild/linux-x64@0.20.0:
@@ -3692,14 +3437,6 @@ packages:
dev: false
optional: true
- /@esbuild/linux-x64@0.20.2:
- resolution: {integrity: sha512-1MdwI6OOTsfQfek8sLwgyjOXAu+wKhLEoaOLTjbijk6E2WONYpH9ZU2mNtR+lZ2B4uwr+usqGuVfFT9tMtGvGw==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [linux]
- requiresBuild: true
- optional: true
-
/@esbuild/netbsd-x64@0.18.20:
resolution: {integrity: sha512-iO1c++VP6xUBUmltHZoMtCUdPlnPGdBom6IrO4gyKPFFVBKioIImVooR5I83nTew5UOYrk3gIJhbZh8X44y06A==}
engines: {node: '>=12'}
@@ -3715,15 +3452,6 @@ packages:
cpu: [x64]
os: [netbsd]
requiresBuild: true
- dev: false
- optional: true
-
- /@esbuild/netbsd-x64@0.19.12:
- resolution: {integrity: sha512-3ltjQ7n1owJgFbuC61Oj++XhtzmymoCihNFgT84UAmJnxJfm4sYCiSLTXZtE00VWYpPMYc+ZQmB6xbSdVh0JWA==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [netbsd]
- requiresBuild: true
optional: true
/@esbuild/netbsd-x64@0.20.0:
@@ -3735,14 +3463,6 @@ packages:
dev: false
optional: true
- /@esbuild/netbsd-x64@0.20.2:
- resolution: {integrity: sha512-K8/DhBxcVQkzYc43yJXDSyjlFeHQJBiowJ0uVL6Tor3jGQfSGHNNJcWxNbOI8v5k82prYqzPuwkzHt3J1T1iZQ==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [netbsd]
- requiresBuild: true
- optional: true
-
/@esbuild/openbsd-x64@0.18.20:
resolution: {integrity: sha512-e5e4YSsuQfX4cxcygw/UCPIEP6wbIL+se3sxPdCiMbFLBWu0eiZOJ7WoD+ptCLrmjZBK1Wk7I6D/I3NglUGOxg==}
engines: {node: '>=12'}
@@ -3758,15 +3478,6 @@ packages:
cpu: [x64]
os: [openbsd]
requiresBuild: true
- dev: false
- optional: true
-
- /@esbuild/openbsd-x64@0.19.12:
- resolution: {integrity: sha512-RbrfTB9SWsr0kWmb9srfF+L933uMDdu9BIzdA7os2t0TXhCRjrQyCeOt6wVxr79CKD4c+p+YhCj31HBkYcXebw==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [openbsd]
- requiresBuild: true
optional: true
/@esbuild/openbsd-x64@0.20.0:
@@ -3778,14 +3489,6 @@ packages:
dev: false
optional: true
- /@esbuild/openbsd-x64@0.20.2:
- resolution: {integrity: sha512-eMpKlV0SThJmmJgiVyN9jTPJ2VBPquf6Kt/nAoo6DgHAoN57K15ZghiHaMvqjCye/uU4X5u3YSMgVBI1h3vKrQ==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [openbsd]
- requiresBuild: true
- optional: true
-
/@esbuild/sunos-x64@0.18.20:
resolution: {integrity: sha512-kDbFRFp0YpTQVVrqUd5FTYmWo45zGaXe0X8E1G/LKFC0v8x0vWrhOWSLITcCn63lmZIxfOMXtCfti/RxN/0wnQ==}
engines: {node: '>=12'}
@@ -3801,15 +3504,6 @@ packages:
cpu: [x64]
os: [sunos]
requiresBuild: true
- dev: false
- optional: true
-
- /@esbuild/sunos-x64@0.19.12:
- resolution: {integrity: sha512-HKjJwRrW8uWtCQnQOz9qcU3mUZhTUQvi56Q8DPTLLB+DawoiQdjsYq+j+D3s9I8VFtDr+F9CjgXKKC4ss89IeA==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [sunos]
- requiresBuild: true
optional: true
/@esbuild/sunos-x64@0.20.0:
@@ -3821,14 +3515,6 @@ packages:
dev: false
optional: true
- /@esbuild/sunos-x64@0.20.2:
- resolution: {integrity: sha512-2UyFtRC6cXLyejf/YEld4Hajo7UHILetzE1vsRcGL3earZEW77JxrFjH4Ez2qaTiEfMgAXxfAZCm1fvM/G/o8w==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [sunos]
- requiresBuild: true
- optional: true
-
/@esbuild/win32-arm64@0.18.20:
resolution: {integrity: sha512-ddYFR6ItYgoaq4v4JmQQaAI5s7npztfV4Ag6NrhiaW0RrnOXqBkgwZLofVTlq1daVTQNhtI5oieTvkRPfZrePg==}
engines: {node: '>=12'}
@@ -3844,15 +3530,6 @@ packages:
cpu: [arm64]
os: [win32]
requiresBuild: true
- dev: false
- optional: true
-
- /@esbuild/win32-arm64@0.19.12:
- resolution: {integrity: sha512-URgtR1dJnmGvX864pn1B2YUYNzjmXkuJOIqG2HdU62MVS4EHpU2946OZoTMnRUHklGtJdJZ33QfzdjGACXhn1A==}
- engines: {node: '>=12'}
- cpu: [arm64]
- os: [win32]
- requiresBuild: true
optional: true
/@esbuild/win32-arm64@0.20.0:
@@ -3864,14 +3541,6 @@ packages:
dev: false
optional: true
- /@esbuild/win32-arm64@0.20.2:
- resolution: {integrity: sha512-GRibxoawM9ZCnDxnP3usoUDO9vUkpAxIIZ6GQI+IlVmr5kP3zUq+l17xELTHMWTWzjxa2guPNyrpq1GWmPvcGQ==}
- engines: {node: '>=12'}
- cpu: [arm64]
- os: [win32]
- requiresBuild: true
- optional: true
-
/@esbuild/win32-ia32@0.18.20:
resolution: {integrity: sha512-Wv7QBi3ID/rROT08SABTS7eV4hX26sVduqDOTe1MvGMjNd3EjOz4b7zeexIR62GTIEKrfJXKL9LFxTYgkyeu7g==}
engines: {node: '>=12'}
@@ -3887,15 +3556,6 @@ packages:
cpu: [ia32]
os: [win32]
requiresBuild: true
- dev: false
- optional: true
-
- /@esbuild/win32-ia32@0.19.12:
- resolution: {integrity: sha512-+ZOE6pUkMOJfmxmBZElNOx72NKpIa/HFOMGzu8fqzQJ5kgf6aTGrcJaFsNiVMH4JKpMipyK+7k0n2UXN7a8YKQ==}
- engines: {node: '>=12'}
- cpu: [ia32]
- os: [win32]
- requiresBuild: true
optional: true
/@esbuild/win32-ia32@0.20.0:
@@ -3907,14 +3567,6 @@ packages:
dev: false
optional: true
- /@esbuild/win32-ia32@0.20.2:
- resolution: {integrity: sha512-HfLOfn9YWmkSKRQqovpnITazdtquEW8/SoHW7pWpuEeguaZI4QnCRW6b+oZTztdBnZOS2hqJ6im/D5cPzBTTlQ==}
- engines: {node: '>=12'}
- cpu: [ia32]
- os: [win32]
- requiresBuild: true
- optional: true
-
/@esbuild/win32-x64@0.18.20:
resolution: {integrity: sha512-kTdfRcSiDfQca/y9QIkng02avJ+NCaQvrMejlsB3RRv5sE9rRoeBPISaZpKxHELzRxZyLvNts1P27W3wV+8geQ==}
engines: {node: '>=12'}
@@ -3930,15 +3582,6 @@ packages:
cpu: [x64]
os: [win32]
requiresBuild: true
- dev: false
- optional: true
-
- /@esbuild/win32-x64@0.19.12:
- resolution: {integrity: sha512-T1QyPSDCyMXaO3pzBkF96E8xMkiRYbUEZADd29SyPGabqxMViNoii+NcK7eWJAEoU6RZyEm5lVSIjTmcdoB9HA==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [win32]
- requiresBuild: true
optional: true
/@esbuild/win32-x64@0.20.0:
@@ -3950,24 +3593,6 @@ packages:
dev: false
optional: true
- /@esbuild/win32-x64@0.20.2:
- resolution: {integrity: sha512-N49X4lJX27+l9jbLKSqZ6bKNjzQvHaT8IIFUy+YIqmXQdjYCToGWwOItDrfby14c78aDd5NHQl29xingXfCdLQ==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [win32]
- requiresBuild: true
- optional: true
-
- /@eslint-community/eslint-utils@4.4.0(eslint@7.0.0):
- resolution: {integrity: sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==}
- engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
- peerDependencies:
- eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
- dependencies:
- eslint: 7.0.0
- eslint-visitor-keys: 3.4.3
- dev: true
-
/@eslint-community/eslint-utils@4.4.0(eslint@7.32.0):
resolution: {integrity: sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
@@ -3984,6 +3609,7 @@ packages:
/@eslint/eslintrc@0.4.3:
resolution: {integrity: sha512-J6KFFz5QCYUJq3pf0mjEcCJVERbzv71PUIDczuh9JkwGEzced6CO5ADLHB1rbf/+oPBtoPfMYNOpGDzCANlbXw==}
engines: {node: ^10.12.0 || >=12.0.0}
+ requiresBuild: true
dependencies:
ajv: 6.12.6
debug: 4.3.4
@@ -4014,6 +3640,10 @@ packages:
fast-uri: 2.3.0
dev: false
+ /@fastify/deepmerge@1.3.0:
+ resolution: {integrity: sha512-J8TOSBq3SoZbDhM9+R/u77hP93gz/rajSA+K2kGyijPpORPWUXHUpTaleoj+92As0S9uPRP7Oi8IqMf0u+ro6A==}
+ dev: false
+
/@fastify/error@3.4.1:
resolution: {integrity: sha512-wWSvph+29GR783IhmvdwWnN4bUxTD01Vm5Xad4i7i1VuAOItLvbPAb69sb0IQ2N57yprvhNIwAP5B6xfKTmjmQ==}
dev: false
@@ -4021,13 +3651,7 @@ packages:
/@fastify/fast-json-stringify-compiler@4.3.0:
resolution: {integrity: sha512-aZAXGYo6m22Fk1zZzEUKBvut/CIIQe/BapEORnxiD5Qr0kPHqqI69NtEMCme74h+at72sPhbkb4ZrLd1W3KRLA==}
dependencies:
- fast-json-stringify: 5.14.1
- dev: false
-
- /@fastify/merge-json-schemas@0.1.1:
- resolution: {integrity: sha512-fERDVz7topgNjtXsJTTW1JKLy0rhuLRcquYqNR9rF7OcVpCa2OVW49ZPDIhaRRCaUuvVxI+N416xUoF76HNSXA==}
- dependencies:
- fast-deep-equal: 3.1.3
+ fast-json-stringify: 5.9.2
dev: false
/@fastify/send@2.1.0:
@@ -4052,33 +3676,29 @@ packages:
readable-stream: 4.5.2
dev: false
- /@floating-ui/core@1.6.0:
- resolution: {integrity: sha512-PcF++MykgmTj3CIyOQbKA/hDzOAiqI3mhuoN44WRCopIs1sgoDoU4oty4Jtqaj/y3oDU6fnVSm4QG0a3t5i0+g==}
+ /@floating-ui/core@1.5.2:
+ resolution: {integrity: sha512-Ii3MrfY/GAIN3OhXNzpCKaLxHQfJF9qvwq/kEJYdqDxeIHa01K8sldugal6TmeeXl+WMvhv9cnVzUTaFFJF09A==}
dependencies:
- '@floating-ui/utils': 0.2.1
- dev: true
+ '@floating-ui/utils': 0.1.6
- /@floating-ui/dom@1.6.3:
- resolution: {integrity: sha512-RnDthu3mzPlQ31Ss/BTwQ1zjzIhr3lk1gZB1OC56h/1vEtaXkESrOqL5fQVMfXpwGtRwX+YsZBdyHtJMQnkArw==}
+ /@floating-ui/dom@1.5.3:
+ resolution: {integrity: sha512-ClAbQnEqJAKCJOEbbLo5IUlZHkNszqhuxS4fHAVxRPXPya6Ysf2G8KypnYcOTpx6I8xcgF9bbHb6g/2KpbV8qA==}
dependencies:
- '@floating-ui/core': 1.6.0
- '@floating-ui/utils': 0.2.1
- dev: true
+ '@floating-ui/core': 1.5.2
+ '@floating-ui/utils': 0.1.6
- /@floating-ui/react-dom@2.0.8(react-dom@18.2.0)(react@18.2.0):
- resolution: {integrity: sha512-HOdqOt3R3OGeTKidaLvJKcgg75S6tibQ3Tif4eyd91QnIJWr0NLvoXFpJA/j8HqkFSL68GDca9AuyWEHlhyClw==}
+ /@floating-ui/react-dom@2.0.4(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-CF8k2rgKeh/49UrnIBs4BdxPUV6vize/Db1d/YbCLyp9GiVZ0BEwf5AiDSxJRCr6yOkGqTFHtmrULxkEfYZ7dQ==}
peerDependencies:
react: '>=16.8.0'
react-dom: '>=16.8.0'
dependencies:
- '@floating-ui/dom': 1.6.3
+ '@floating-ui/dom': 1.5.3
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
- dev: true
- /@floating-ui/utils@0.2.1:
- resolution: {integrity: sha512-9TANp6GPoMtYzQdt54kfAyMmz1+osLlXdg2ENroU7zzrtflTLrrC/lgrIfaSe+Wu0b89GKccT7vxXA0MoAIO+Q==}
- dev: true
+ /@floating-ui/utils@0.1.6:
+ resolution: {integrity: sha512-OfX7E2oUDYxtBvsuS4e/jSn4Q9Qb6DzgeYtsAdkPZ47znpoNsMgZw0+tVijiv3uGNR6dgNlty6r9rzIzHjtd/A==}
/@formatjs/cli@6.2.4:
resolution: {integrity: sha512-g1o9O143F5TGB55skib3fKbyjifPa9YoDcX9L07hVJocRKngCcu4JhKViyUSN55KGcN2ttfBomM+wihN6wtBSQ==}
@@ -4199,9 +3819,9 @@ packages:
'@types/json-stable-stringify': 1.0.36
'@types/node': 17.0.45
chalk: 4.1.2
- json-stable-stringify: 1.1.1
+ json-stable-stringify: 1.1.0
tslib: 2.6.2
- typescript: 5.4.4
+ typescript: 5.4.2
dev: true
/@gar/promisify@1.1.3:
@@ -4210,11 +3830,11 @@ packages:
dev: false
optional: true
- /@gatsbyjs/parcel-namer-relative-to-cwd@2.13.1(@parcel/core@2.8.3):
- resolution: {integrity: sha512-ze0u/CAt6fKV2yQlExkBARi8oqA559lX6/GFWwdtD9S1J4h8Bje70Odl/bcIECvT/w9mWCCQEVtKLvqkraDopw==}
+ /@gatsbyjs/parcel-namer-relative-to-cwd@2.13.0(@parcel/core@2.8.3):
+ resolution: {integrity: sha512-KCB3j6uufUirkd4831nqyCT05n7JTJ2fklQGLNZ//P8DQPANz/5DhOqvkUdrcAe9qtIps9LGr+dmLPgmBIrxjw==}
engines: {node: '>=18.0.0', parcel: 2.x}
dependencies:
- '@babel/runtime': 7.24.4
+ '@babel/runtime': 7.23.7
'@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.13.1
@@ -4236,7 +3856,7 @@ packages:
resolution: {integrity: sha512-ul17OZ8Dlw+ATRbnuU+kwxuAlq9lKbYz/2uBS1FLCdgoPTF1H2heP7HbUbgfMZbfRQNcCG2rMscMnr32ritCDw==}
dependencies:
ansi-html-community: 0.0.8
- html-entities: 2.5.2
+ html-entities: 2.4.0
strip-ansi: 6.0.1
/@graphql-codegen/add@3.2.3(graphql@16.8.1):
@@ -4248,7 +3868,7 @@ packages:
graphql: 16.8.1
tslib: 2.4.1
- /@graphql-codegen/cli@5.0.0(@types/node@18.0.0)(graphql@16.8.1)(typescript@5.3.3):
+ /@graphql-codegen/cli@5.0.0(@types/node@18.19.4)(graphql@16.8.1)(typescript@5.3.3):
resolution: {integrity: sha512-A7J7+be/a6e+/ul2KI5sfJlpoqeqwX8EzktaKCeduyVKgOLA6W5t+NUGf6QumBDXU8PEOqXk3o3F+RAwCWOiqA==}
hasBin: true
peerDependencies:
@@ -4258,28 +3878,28 @@ packages:
'@parcel/watcher':
optional: true
dependencies:
- '@babel/generator': 7.24.4
- '@babel/template': 7.24.0
- '@babel/types': 7.24.0
- '@graphql-codegen/core': 4.0.2(graphql@16.8.1)
- '@graphql-codegen/plugin-helpers': 5.0.3(graphql@16.8.1)
- '@graphql-tools/apollo-engine-loader': 8.0.1(graphql@16.8.1)
- '@graphql-tools/code-file-loader': 8.1.1(graphql@16.8.1)
- '@graphql-tools/git-loader': 8.0.5(graphql@16.8.1)
- '@graphql-tools/github-loader': 8.0.1(@types/node@18.0.0)(graphql@16.8.1)
- '@graphql-tools/graphql-file-loader': 8.0.1(graphql@16.8.1)
- '@graphql-tools/json-file-loader': 8.0.1(graphql@16.8.1)
- '@graphql-tools/load': 8.0.2(graphql@16.8.1)
- '@graphql-tools/prisma-loader': 8.0.3(@types/node@18.0.0)(graphql@16.8.1)
- '@graphql-tools/url-loader': 8.0.2(@types/node@18.0.0)(graphql@16.8.1)
- '@graphql-tools/utils': 10.1.2(graphql@16.8.1)
+ '@babel/generator': 7.23.6
+ '@babel/template': 7.22.15
+ '@babel/types': 7.23.6
+ '@graphql-codegen/core': 4.0.0(graphql@16.8.1)
+ '@graphql-codegen/plugin-helpers': 5.0.1(graphql@16.8.1)
+ '@graphql-tools/apollo-engine-loader': 8.0.0(graphql@16.8.1)
+ '@graphql-tools/code-file-loader': 8.0.3(graphql@16.8.1)
+ '@graphql-tools/git-loader': 8.0.3(graphql@16.8.1)
+ '@graphql-tools/github-loader': 8.0.0(@types/node@18.19.4)(graphql@16.8.1)
+ '@graphql-tools/graphql-file-loader': 8.0.0(graphql@16.8.1)
+ '@graphql-tools/json-file-loader': 8.0.0(graphql@16.8.1)
+ '@graphql-tools/load': 8.0.1(graphql@16.8.1)
+ '@graphql-tools/prisma-loader': 8.0.2(@types/node@18.19.4)(graphql@16.8.1)
+ '@graphql-tools/url-loader': 8.0.1(@types/node@18.19.4)(graphql@16.8.1)
+ '@graphql-tools/utils': 10.0.12(graphql@16.8.1)
'@whatwg-node/fetch': 0.8.8
chalk: 4.1.2
cosmiconfig: 8.3.6(typescript@5.3.3)
debounce: 1.2.1
detect-indent: 6.1.0
graphql: 16.8.1
- graphql-config: 5.0.3(@types/node@18.0.0)(graphql@16.8.1)(typescript@5.3.3)
+ graphql-config: 5.0.3(@types/node@18.19.4)(graphql@16.8.1)(typescript@5.3.3)
inquirer: 8.2.6
is-glob: 4.0.3
jiti: 1.21.0
@@ -4291,7 +3911,7 @@ packages:
string-env-interpolation: 1.0.1
ts-log: 2.2.5
tslib: 2.6.2
- yaml: 2.4.1
+ yaml: 2.3.4
yargs: 17.7.2
transitivePeerDependencies:
- '@types/node'
@@ -4315,16 +3935,16 @@ packages:
graphql: 16.8.1
tslib: 2.4.1
- /@graphql-codegen/core@4.0.2(graphql@16.8.1):
- resolution: {integrity: sha512-IZbpkhwVqgizcjNiaVzNAzm/xbWT6YnGgeOLwVjm4KbJn3V2jchVtuzHH09G5/WkkLSk2wgbXNdwjM41JxO6Eg==}
+ /@graphql-codegen/core@4.0.0(graphql@16.8.1):
+ resolution: {integrity: sha512-JAGRn49lEtSsZVxeIlFVIRxts2lWObR+OQo7V2LHDJ7ohYYw3ilv7nJ8pf8P4GTg/w6ptcYdSdVVdkI8kUHB/Q==}
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-codegen/plugin-helpers': 5.0.3(graphql@16.8.1)
- '@graphql-tools/schema': 10.0.3(graphql@16.8.1)
- '@graphql-tools/utils': 10.1.2(graphql@16.8.1)
+ '@graphql-codegen/plugin-helpers': 5.0.1(graphql@16.8.1)
+ '@graphql-tools/schema': 10.0.2(graphql@16.8.1)
+ '@graphql-tools/utils': 10.0.12(graphql@16.8.1)
graphql: 16.8.1
- tslib: 2.6.2
+ tslib: 2.5.3
dev: true
/@graphql-codegen/plugin-helpers@2.7.2(graphql@16.8.1):
@@ -4353,18 +3973,18 @@ packages:
lodash: 4.17.21
tslib: 2.4.1
- /@graphql-codegen/plugin-helpers@5.0.3(graphql@16.8.1):
- resolution: {integrity: sha512-yZ1rpULIWKBZqCDlvGIJRSyj1B2utkEdGmXZTBT/GVayP4hyRYlkd36AJV/LfEsVD8dnsKL5rLz2VTYmRNlJ5Q==}
+ /@graphql-codegen/plugin-helpers@5.0.1(graphql@16.8.1):
+ resolution: {integrity: sha512-6L5sb9D8wptZhnhLLBcheSPU7Tg//DGWgc5tQBWX46KYTOTQHGqDpv50FxAJJOyFVJrveN9otWk9UT9/yfY4ww==}
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': 10.1.2(graphql@16.8.1)
+ '@graphql-tools/utils': 10.0.12(graphql@16.8.1)
change-case-all: 1.0.15
common-tags: 1.8.2
graphql: 16.8.1
import-from: 4.0.0
lodash: 4.17.21
- tslib: 2.6.2
+ tslib: 2.5.3
dev: true
/@graphql-codegen/schema-ast@2.6.1(graphql@16.8.1):
@@ -4382,8 +4002,8 @@ 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-codegen/plugin-helpers': 5.0.3(graphql@16.8.1)
- '@graphql-tools/utils': 10.1.2(graphql@16.8.1)
+ '@graphql-codegen/plugin-helpers': 5.0.1(graphql@16.8.1)
+ '@graphql-tools/utils': 10.0.12(graphql@16.8.1)
graphql: 16.8.1
tslib: 2.5.3
dev: true
@@ -4408,7 +4028,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-codegen/plugin-helpers': 5.0.3(graphql@16.8.1)
+ '@graphql-codegen/plugin-helpers': 5.0.1(graphql@16.8.1)
'@graphql-codegen/typescript': 4.0.1(graphql@16.8.1)
'@graphql-codegen/visitor-plugin-common': 4.0.1(graphql@16.8.1)
auto-bind: 4.0.0
@@ -4439,7 +4059,7 @@ packages:
peerDependencies:
graphql: ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0
dependencies:
- '@graphql-codegen/plugin-helpers': 5.0.3(graphql@16.8.1)
+ '@graphql-codegen/plugin-helpers': 5.0.1(graphql@16.8.1)
'@graphql-codegen/schema-ast': 4.0.0(graphql@16.8.1)
'@graphql-codegen/visitor-plugin-common': 4.0.1(graphql@16.8.1)
auto-bind: 4.0.0
@@ -4475,10 +4095,10 @@ 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-codegen/plugin-helpers': 5.0.3(graphql@16.8.1)
+ '@graphql-codegen/plugin-helpers': 5.0.1(graphql@16.8.1)
'@graphql-tools/optimize': 2.0.0(graphql@16.8.1)
- '@graphql-tools/relay-operation-optimizer': 7.0.1(graphql@16.8.1)
- '@graphql-tools/utils': 10.1.2(graphql@16.8.1)
+ '@graphql-tools/relay-operation-optimizer': 7.0.0(graphql@16.8.1)
+ '@graphql-tools/utils': 10.0.12(graphql@16.8.1)
auto-bind: 4.0.0
change-case-all: 1.0.15
dependency-graph: 0.11.0
@@ -4491,60 +4111,39 @@ packages:
- supports-color
dev: true
- /@graphql-codegen/visitor-plugin-common@4.1.2(graphql@16.8.1):
- resolution: {integrity: sha512-yk7iEAL1kYZ2Gi/pvVjdsZhul5WsYEM4Zcgh2Ev15VicMdJmPHsMhNUsZWyVJV0CaQCYpNOFlGD/11Ea3pn4GA==}
- 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-codegen/plugin-helpers': 5.0.3(graphql@16.8.1)
- '@graphql-tools/optimize': 2.0.0(graphql@16.8.1)
- '@graphql-tools/relay-operation-optimizer': 7.0.1(graphql@16.8.1)
- '@graphql-tools/utils': 10.1.2(graphql@16.8.1)
- auto-bind: 4.0.0
- change-case-all: 1.0.15
- dependency-graph: 0.11.0
- graphql: 16.8.1
- graphql-tag: 2.12.6(graphql@16.8.1)
- parse-filepath: 1.0.2
- tslib: 2.6.2
- transitivePeerDependencies:
- - encoding
- - supports-color
- dev: true
-
- /@graphql-tools/apollo-engine-loader@8.0.1(graphql@16.8.1):
- resolution: {integrity: sha512-NaPeVjtrfbPXcl+MLQCJLWtqe2/E4bbAqcauEOQ+3sizw1Fc2CNmhHRF8a6W4D0ekvTRRXAMptXYgA2uConbrA==}
+ /@graphql-tools/apollo-engine-loader@8.0.0(graphql@16.8.1):
+ resolution: {integrity: sha512-axQTbN5+Yxs1rJ6cWQBOfw3AEeC+fvIuZSfJLPLLvFJLj4pUm9fhxey/g6oQZAAQJqKPfw+tLDUQvnfvRK8Kmg==}
engines: {node: '>=16.0.0'}
peerDependencies:
graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
dependencies:
'@ardatan/sync-fetch': 0.0.1
- '@graphql-tools/utils': 10.1.2(graphql@16.8.1)
- '@whatwg-node/fetch': 0.9.17
+ '@graphql-tools/utils': 10.0.12(graphql@16.8.1)
+ '@whatwg-node/fetch': 0.9.15
graphql: 16.8.1
tslib: 2.6.2
transitivePeerDependencies:
- encoding
dev: true
- /@graphql-tools/batch-execute@9.0.4(graphql@16.8.1):
- resolution: {integrity: sha512-kkebDLXgDrep5Y0gK1RN3DMUlLqNhg60OAz0lTCqrYeja6DshxLtLkj+zV4mVbBA4mQOEoBmw6g1LZs3dA84/w==}
+ /@graphql-tools/batch-execute@9.0.2(graphql@16.8.1):
+ resolution: {integrity: sha512-Y2uwdZI6ZnatopD/SYfZ1eGuQFI7OU2KGZ2/B/7G9ISmgMl5K+ZZWz/PfIEXeiHirIDhyk54s4uka5rj2xwKqQ==}
engines: {node: '>=16.0.0'}
peerDependencies:
graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
dependencies:
- '@graphql-tools/utils': 10.1.2(graphql@16.8.1)
+ '@graphql-tools/utils': 10.0.12(graphql@16.8.1)
dataloader: 2.2.2
graphql: 16.8.1
tslib: 2.6.2
value-or-promise: 1.0.12
- /@graphql-tools/code-file-loader@7.3.23(@babel/core@7.24.4)(graphql@16.8.1):
+ /@graphql-tools/code-file-loader@7.3.23(@babel/core@7.23.7)(graphql@16.8.1):
resolution: {integrity: sha512-8Wt1rTtyTEs0p47uzsPJ1vAtfAx0jmxPifiNdmo9EOCuUPyQGEbMaik/YkqZ7QUFIEYEQu+Vgfo8tElwOPtx5Q==}
peerDependencies:
graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
dependencies:
- '@graphql-tools/graphql-tag-pluck': 7.5.2(@babel/core@7.24.4)(graphql@16.8.1)
+ '@graphql-tools/graphql-tag-pluck': 7.5.2(@babel/core@7.23.7)(graphql@16.8.1)
'@graphql-tools/utils': 9.2.1(graphql@16.8.1)
globby: 11.1.0
graphql: 16.8.1
@@ -4554,14 +4153,14 @@ packages:
- '@babel/core'
- supports-color
- /@graphql-tools/code-file-loader@8.1.1(graphql@16.8.1):
- resolution: {integrity: sha512-q4KN25EPSUztc8rA8YUU3ufh721Yk12xXDbtUA+YstczWS7a1RJlghYMFEfR1HsHSYbF7cUqkbnTKSGM3o52bQ==}
+ /@graphql-tools/code-file-loader@8.0.3(graphql@16.8.1):
+ resolution: {integrity: sha512-gVnnlWs0Ua+5FkuHHEriFUOI3OIbHv6DS1utxf28n6NkfGMJldC4j0xlJRY0LS6dWK34IGYgD4HelKYz2l8KiA==}
engines: {node: '>=16.0.0'}
peerDependencies:
graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
dependencies:
- '@graphql-tools/graphql-tag-pluck': 8.3.0(graphql@16.8.1)
- '@graphql-tools/utils': 10.1.2(graphql@16.8.1)
+ '@graphql-tools/graphql-tag-pluck': 8.1.0(graphql@16.8.1)
+ '@graphql-tools/utils': 10.0.12(graphql@16.8.1)
globby: 11.1.0
graphql: 16.8.1
tslib: 2.6.2
@@ -4570,30 +4169,30 @@ packages:
- supports-color
dev: true
- /@graphql-tools/delegate@10.0.4(graphql@16.8.1):
- resolution: {integrity: sha512-WswZRbQZMh/ebhc8zSomK9DIh6Pd5KbuiMsyiKkKz37TWTrlCOe+4C/fyrBFez30ksq6oFyCeSKMwfrCbeGo0Q==}
+ /@graphql-tools/delegate@10.0.3(graphql@16.8.1):
+ resolution: {integrity: sha512-Jor9oazZ07zuWkykD3OOhT/2XD74Zm6Ar0ENZMk75MDD51wB2UWUIMljtHxbJhV5A6UBC2v8x6iY0xdCGiIlyw==}
engines: {node: '>=16.0.0'}
peerDependencies:
graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
dependencies:
- '@graphql-tools/batch-execute': 9.0.4(graphql@16.8.1)
- '@graphql-tools/executor': 1.2.6(graphql@16.8.1)
- '@graphql-tools/schema': 10.0.3(graphql@16.8.1)
- '@graphql-tools/utils': 10.1.2(graphql@16.8.1)
+ '@graphql-tools/batch-execute': 9.0.2(graphql@16.8.1)
+ '@graphql-tools/executor': 1.2.0(graphql@16.8.1)
+ '@graphql-tools/schema': 10.0.2(graphql@16.8.1)
+ '@graphql-tools/utils': 10.0.12(graphql@16.8.1)
dataloader: 2.2.2
graphql: 16.8.1
tslib: 2.6.2
- /@graphql-tools/executor-graphql-ws@1.1.2(graphql@16.8.1):
- resolution: {integrity: sha512-+9ZK0rychTH1LUv4iZqJ4ESbmULJMTsv3XlFooPUngpxZkk00q6LqHKJRrsLErmQrVaC7cwQCaRBJa0teK17Lg==}
+ /@graphql-tools/executor-graphql-ws@1.1.0(graphql@16.8.1):
+ resolution: {integrity: sha512-yM67SzwE8rYRpm4z4AuGtABlOp9mXXVy6sxXnTJRoYIdZrmDbKVfIY+CpZUJCqS0FX3xf2+GoHlsj7Qswaxgcg==}
engines: {node: '>=16.0.0'}
peerDependencies:
graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
dependencies:
- '@graphql-tools/utils': 10.1.2(graphql@16.8.1)
+ '@graphql-tools/utils': 10.0.12(graphql@16.8.1)
'@types/ws': 8.5.10
graphql: 16.8.1
- graphql-ws: 5.16.0(graphql@16.8.1)
+ graphql-ws: 5.14.3(graphql@16.8.1)
isomorphic-ws: 5.0.0(ws@8.16.0)
tslib: 2.6.2
ws: 8.16.0
@@ -4601,48 +4200,48 @@ packages:
- bufferutil
- utf-8-validate
- /@graphql-tools/executor-http@1.0.9(@types/node@18.0.0)(graphql@16.8.1):
- resolution: {integrity: sha512-+NXaZd2MWbbrWHqU4EhXcrDbogeiCDmEbrAN+rMn4Nu2okDjn2MTFDbTIab87oEubQCH4Te1wDkWPKrzXup7+Q==}
+ /@graphql-tools/executor-http@1.0.6(@types/node@18.19.17)(graphql@16.8.1):
+ resolution: {integrity: sha512-EKZ6b7EtP+oUs+jG4r5OUYRl4OolcRzQElAZofA4TFCK4k7HxlKh8DAwdD2eZHSt/s8q6uRG1dAE0lqfMAA9qQ==}
engines: {node: '>=16.0.0'}
peerDependencies:
graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
dependencies:
- '@graphql-tools/utils': 10.1.2(graphql@16.8.1)
+ '@graphql-tools/utils': 10.0.12(graphql@16.8.1)
'@repeaterjs/repeater': 3.0.5
- '@whatwg-node/fetch': 0.9.17
+ '@whatwg-node/fetch': 0.9.15
extract-files: 11.0.0
graphql: 16.8.1
- meros: 1.3.0(@types/node@18.0.0)
+ meros: 1.3.0(@types/node@18.19.17)
tslib: 2.6.2
value-or-promise: 1.0.12
transitivePeerDependencies:
- '@types/node'
+ dev: false
- /@graphql-tools/executor-http@1.0.9(@types/node@18.19.31)(graphql@16.8.1):
- resolution: {integrity: sha512-+NXaZd2MWbbrWHqU4EhXcrDbogeiCDmEbrAN+rMn4Nu2okDjn2MTFDbTIab87oEubQCH4Te1wDkWPKrzXup7+Q==}
+ /@graphql-tools/executor-http@1.0.6(@types/node@18.19.4)(graphql@16.8.1):
+ resolution: {integrity: sha512-EKZ6b7EtP+oUs+jG4r5OUYRl4OolcRzQElAZofA4TFCK4k7HxlKh8DAwdD2eZHSt/s8q6uRG1dAE0lqfMAA9qQ==}
engines: {node: '>=16.0.0'}
peerDependencies:
graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
dependencies:
- '@graphql-tools/utils': 10.1.2(graphql@16.8.1)
+ '@graphql-tools/utils': 10.0.12(graphql@16.8.1)
'@repeaterjs/repeater': 3.0.5
- '@whatwg-node/fetch': 0.9.17
+ '@whatwg-node/fetch': 0.9.15
extract-files: 11.0.0
graphql: 16.8.1
- meros: 1.3.0(@types/node@18.19.31)
+ meros: 1.3.0(@types/node@18.19.4)
tslib: 2.6.2
value-or-promise: 1.0.12
transitivePeerDependencies:
- '@types/node'
- dev: false
- /@graphql-tools/executor-legacy-ws@1.0.6(graphql@16.8.1):
- resolution: {integrity: sha512-lDSxz9VyyquOrvSuCCnld3256Hmd+QI2lkmkEv7d4mdzkxkK4ddAWW1geQiWrQvWmdsmcnGGlZ7gDGbhEExwqg==}
+ /@graphql-tools/executor-legacy-ws@1.0.5(graphql@16.8.1):
+ resolution: {integrity: sha512-w54AZ7zkNuvpyV09FH+eGHnnAmaxhBVHg4Yh2ICcsMfRg0brkLt77PlbjBuxZ4HY8XZnKJaYWf+tKazQZtkQtg==}
engines: {node: '>=16.0.0'}
peerDependencies:
graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
dependencies:
- '@graphql-tools/utils': 10.1.2(graphql@16.8.1)
+ '@graphql-tools/utils': 10.0.12(graphql@16.8.1)
'@types/ws': 8.5.10
graphql: 16.8.1
isomorphic-ws: 5.0.0(ws@8.16.0)
@@ -4652,27 +4251,27 @@ packages:
- bufferutil
- utf-8-validate
- /@graphql-tools/executor@1.2.6(graphql@16.8.1):
- resolution: {integrity: sha512-+1kjfqzM5T2R+dCw7F4vdJ3CqG+fY/LYJyhNiWEFtq0ToLwYzR/KKyD8YuzTirEjSxWTVlcBh7endkx5n5F6ew==}
+ /@graphql-tools/executor@1.2.0(graphql@16.8.1):
+ resolution: {integrity: sha512-SKlIcMA71Dha5JnEWlw4XxcaJ+YupuXg0QCZgl2TOLFz4SkGCwU/geAsJvUJFwK2RbVLpQv/UMq67lOaBuwDtg==}
engines: {node: '>=16.0.0'}
peerDependencies:
graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
dependencies:
- '@graphql-tools/utils': 10.1.2(graphql@16.8.1)
+ '@graphql-tools/utils': 10.0.12(graphql@16.8.1)
'@graphql-typed-document-node/core': 3.2.0(graphql@16.8.1)
'@repeaterjs/repeater': 3.0.5
graphql: 16.8.1
tslib: 2.6.2
value-or-promise: 1.0.12
- /@graphql-tools/git-loader@8.0.5(graphql@16.8.1):
- resolution: {integrity: sha512-P97/1mhruDiA6D5WUmx3n/aeGPLWj2+4dpzDOxFGGU+z9NcI/JdygMkeFpGZNHeJfw+kHfxgPcMPnxHcyhAoVA==}
+ /@graphql-tools/git-loader@8.0.3(graphql@16.8.1):
+ resolution: {integrity: sha512-Iz9KbRUAkuOe8JGTS0qssyJ+D5Snle17W+z9anwWrLFrkBhHrRFUy5AdjZqgJuhls0x30QkZBnnCtnHDBdQ4nA==}
engines: {node: '>=16.0.0'}
peerDependencies:
graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
dependencies:
- '@graphql-tools/graphql-tag-pluck': 8.3.0(graphql@16.8.1)
- '@graphql-tools/utils': 10.1.2(graphql@16.8.1)
+ '@graphql-tools/graphql-tag-pluck': 8.1.0(graphql@16.8.1)
+ '@graphql-tools/utils': 10.0.12(graphql@16.8.1)
graphql: 16.8.1
is-glob: 4.0.3
micromatch: 4.0.5
@@ -4682,17 +4281,17 @@ packages:
- supports-color
dev: true
- /@graphql-tools/github-loader@8.0.1(@types/node@18.0.0)(graphql@16.8.1):
- resolution: {integrity: sha512-W4dFLQJ5GtKGltvh/u1apWRFKBQOsDzFxO9cJkOYZj1VzHCpRF43uLST4VbCfWve+AwBqOuKr7YgkHoxpRMkcg==}
+ /@graphql-tools/github-loader@8.0.0(@types/node@18.19.4)(graphql@16.8.1):
+ resolution: {integrity: sha512-VuroArWKcG4yaOWzV0r19ElVIV6iH6UKDQn1MXemND0xu5TzrFme0kf3U9o0YwNo0kUYEk9CyFM0BYg4he17FA==}
engines: {node: '>=16.0.0'}
peerDependencies:
graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
dependencies:
'@ardatan/sync-fetch': 0.0.1
- '@graphql-tools/executor-http': 1.0.9(@types/node@18.0.0)(graphql@16.8.1)
- '@graphql-tools/graphql-tag-pluck': 8.3.0(graphql@16.8.1)
- '@graphql-tools/utils': 10.1.2(graphql@16.8.1)
- '@whatwg-node/fetch': 0.9.17
+ '@graphql-tools/executor-http': 1.0.6(@types/node@18.19.4)(graphql@16.8.1)
+ '@graphql-tools/graphql-tag-pluck': 8.1.0(graphql@16.8.1)
+ '@graphql-tools/utils': 10.0.12(graphql@16.8.1)
+ '@whatwg-node/fetch': 0.9.15
graphql: 16.8.1
tslib: 2.6.2
value-or-promise: 1.0.12
@@ -4702,28 +4301,28 @@ packages:
- supports-color
dev: true
- /@graphql-tools/graphql-file-loader@8.0.1(graphql@16.8.1):
- resolution: {integrity: sha512-7gswMqWBabTSmqbaNyWSmRRpStWlcCkBc73E6NZNlh4YNuiyKOwbvSkOUYFOqFMfEL+cFsXgAvr87Vz4XrYSbA==}
+ /@graphql-tools/graphql-file-loader@8.0.0(graphql@16.8.1):
+ resolution: {integrity: sha512-wRXj9Z1IFL3+zJG1HWEY0S4TXal7+s1vVhbZva96MSp0kbb/3JBF7j0cnJ44Eq0ClccMgGCDFqPFXty4JlpaPg==}
engines: {node: '>=16.0.0'}
peerDependencies:
graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
dependencies:
- '@graphql-tools/import': 7.0.1(graphql@16.8.1)
- '@graphql-tools/utils': 10.1.2(graphql@16.8.1)
+ '@graphql-tools/import': 7.0.0(graphql@16.8.1)
+ '@graphql-tools/utils': 10.0.12(graphql@16.8.1)
globby: 11.1.0
graphql: 16.8.1
tslib: 2.6.2
unixify: 1.0.0
- /@graphql-tools/graphql-tag-pluck@7.5.2(@babel/core@7.24.4)(graphql@16.8.1):
+ /@graphql-tools/graphql-tag-pluck@7.5.2(@babel/core@7.23.7)(graphql@16.8.1):
resolution: {integrity: sha512-RW+H8FqOOLQw0BPXaahYepVSRjuOHw+7IL8Opaa5G5uYGOBxoXR7DceyQ7BcpMgktAOOmpDNQ2WtcboChOJSRA==}
peerDependencies:
graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
dependencies:
- '@babel/parser': 7.24.4
- '@babel/plugin-syntax-import-assertions': 7.24.1(@babel/core@7.24.4)
- '@babel/traverse': 7.24.1
- '@babel/types': 7.24.0
+ '@babel/parser': 7.23.6
+ '@babel/plugin-syntax-import-assertions': 7.23.3(@babel/core@7.23.7)
+ '@babel/traverse': 7.23.7
+ '@babel/types': 7.23.6
'@graphql-tools/utils': 9.2.1(graphql@16.8.1)
graphql: 16.8.1
tslib: 2.6.2
@@ -4731,42 +4330,42 @@ packages:
- '@babel/core'
- supports-color
- /@graphql-tools/graphql-tag-pluck@8.3.0(graphql@16.8.1):
- resolution: {integrity: sha512-gNqukC+s7iHC7vQZmx1SEJQmLnOguBq+aqE2zV2+o1hxkExvKqyFli1SY/9gmukFIKpKutCIj+8yLOM+jARutw==}
+ /@graphql-tools/graphql-tag-pluck@8.1.0(graphql@16.8.1):
+ resolution: {integrity: sha512-kt5l6H/7QxQcIaewInTcune6NpATojdFEW98/8xWcgmy7dgXx5vU9e0AicFZIH+ewGyZzTpwFqO2RI03roxj2w==}
engines: {node: '>=16.0.0'}
peerDependencies:
graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
dependencies:
- '@babel/core': 7.24.4
- '@babel/parser': 7.24.4
- '@babel/plugin-syntax-import-assertions': 7.24.1(@babel/core@7.24.4)
- '@babel/traverse': 7.24.1
- '@babel/types': 7.24.0
- '@graphql-tools/utils': 10.1.2(graphql@16.8.1)
+ '@babel/core': 7.23.7
+ '@babel/parser': 7.23.6
+ '@babel/plugin-syntax-import-assertions': 7.23.3(@babel/core@7.23.7)
+ '@babel/traverse': 7.23.7
+ '@babel/types': 7.23.6
+ '@graphql-tools/utils': 10.0.12(graphql@16.8.1)
graphql: 16.8.1
tslib: 2.6.2
transitivePeerDependencies:
- supports-color
dev: true
- /@graphql-tools/import@7.0.1(graphql@16.8.1):
- resolution: {integrity: sha512-935uAjAS8UAeXThqHfYVr4HEAp6nHJ2sximZKO1RzUTq5WoALMAhhGARl0+ecm6X+cqNUwIChJbjtaa6P/ML0w==}
+ /@graphql-tools/import@7.0.0(graphql@16.8.1):
+ resolution: {integrity: sha512-NVZiTO8o1GZs6OXzNfjB+5CtQtqsZZpQOq+Uu0w57kdUkT4RlQKlwhT8T81arEsbV55KpzkpFsOZP7J1wdmhBw==}
engines: {node: '>=16.0.0'}
peerDependencies:
graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
dependencies:
- '@graphql-tools/utils': 10.1.2(graphql@16.8.1)
+ '@graphql-tools/utils': 10.0.12(graphql@16.8.1)
graphql: 16.8.1
resolve-from: 5.0.0
tslib: 2.6.2
- /@graphql-tools/json-file-loader@8.0.1(graphql@16.8.1):
- resolution: {integrity: sha512-lAy2VqxDAHjVyqeJonCP6TUemrpYdDuKt25a10X6zY2Yn3iFYGnuIDQ64cv3ytyGY6KPyPB+Kp+ZfOkNDG3FQA==}
+ /@graphql-tools/json-file-loader@8.0.0(graphql@16.8.1):
+ resolution: {integrity: sha512-ki6EF/mobBWJjAAC84xNrFMhNfnUFD6Y0rQMGXekrUgY0NdeYXHU0ZUgHzC9O5+55FslqUmAUHABePDHTyZsLg==}
engines: {node: '>=16.0.0'}
peerDependencies:
graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
dependencies:
- '@graphql-tools/utils': 10.1.2(graphql@16.8.1)
+ '@graphql-tools/utils': 10.0.12(graphql@16.8.1)
globby: 11.1.0
graphql: 16.8.1
tslib: 2.6.2
@@ -4783,14 +4382,14 @@ packages:
p-limit: 3.1.0
tslib: 2.6.2
- /@graphql-tools/load@8.0.2(graphql@16.8.1):
- resolution: {integrity: sha512-S+E/cmyVmJ3CuCNfDuNF2EyovTwdWfQScXv/2gmvJOti2rGD8jTt9GYVzXaxhblLivQR9sBUCNZu/w7j7aXUCA==}
+ /@graphql-tools/load@8.0.1(graphql@16.8.1):
+ resolution: {integrity: sha512-qSMsKngJhDqRbuWyo3NvakEFqFL6+eSjy8ooJ1o5qYD26N7dqXkKzIMycQsX7rBK19hOuINAUSaRcVWH6hTccw==}
engines: {node: '>=16.0.0'}
peerDependencies:
graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
dependencies:
- '@graphql-tools/schema': 10.0.3(graphql@16.8.1)
- '@graphql-tools/utils': 10.1.2(graphql@16.8.1)
+ '@graphql-tools/schema': 10.0.2(graphql@16.8.1)
+ '@graphql-tools/utils': 10.0.12(graphql@16.8.1)
graphql: 16.8.1
p-limit: 3.1.0
tslib: 2.6.2
@@ -4804,13 +4403,13 @@ packages:
graphql: 16.8.1
tslib: 2.6.2
- /@graphql-tools/merge@9.0.3(graphql@16.8.1):
- resolution: {integrity: sha512-FeKv9lKLMwqDu0pQjPpF59GY3HReUkWXKsMIuMuJQOKh9BETu7zPEFUELvcw8w+lwZkl4ileJsHXC9+AnsT2Lw==}
+ /@graphql-tools/merge@9.0.1(graphql@16.8.1):
+ resolution: {integrity: sha512-hIEExWO9fjA6vzsVjJ3s0cCQ+Q/BEeMVJZtMXd7nbaVefVy0YDyYlEkeoYYNV3NVVvu1G9lr6DM1Qd0DGo9Caw==}
engines: {node: '>=16.0.0'}
peerDependencies:
graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
dependencies:
- '@graphql-tools/utils': 10.1.2(graphql@16.8.1)
+ '@graphql-tools/utils': 10.0.12(graphql@16.8.1)
graphql: 16.8.1
tslib: 2.6.2
@@ -4832,27 +4431,27 @@ packages:
tslib: 2.6.2
dev: true
- /@graphql-tools/prisma-loader@8.0.3(@types/node@18.0.0)(graphql@16.8.1):
- resolution: {integrity: sha512-oZhxnMr3Jw2WAW1h9FIhF27xWzIB7bXWM8olz4W12oII4NiZl7VRkFw9IT50zME2Bqi9LGh9pkmMWkjvbOpl+Q==}
+ /@graphql-tools/prisma-loader@8.0.2(@types/node@18.19.4)(graphql@16.8.1):
+ resolution: {integrity: sha512-8d28bIB0bZ9Bj0UOz9sHagVPW+6AHeqvGljjERtwCnWl8OCQw2c2pNboYXISLYUG5ub76r4lDciLLTU+Ks7Q0w==}
engines: {node: '>=16.0.0'}
peerDependencies:
graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
dependencies:
- '@graphql-tools/url-loader': 8.0.2(@types/node@18.0.0)(graphql@16.8.1)
- '@graphql-tools/utils': 10.1.2(graphql@16.8.1)
+ '@graphql-tools/url-loader': 8.0.1(@types/node@18.19.4)(graphql@16.8.1)
+ '@graphql-tools/utils': 10.0.12(graphql@16.8.1)
'@types/js-yaml': 4.0.9
'@types/json-stable-stringify': 1.0.36
- '@whatwg-node/fetch': 0.9.17
+ '@whatwg-node/fetch': 0.9.15
chalk: 4.1.2
debug: 4.3.4
- dotenv: 16.4.5
+ dotenv: 16.3.1
graphql: 16.8.1
graphql-request: 6.1.0(graphql@16.8.1)
- http-proxy-agent: 7.0.2
- https-proxy-agent: 7.0.4
- jose: 5.2.4
+ http-proxy-agent: 7.0.0
+ https-proxy-agent: 7.0.2
+ jose: 5.2.2
js-yaml: 4.1.0
- json-stable-stringify: 1.1.1
+ json-stable-stringify: 1.1.0
lodash: 4.17.21
scuid: 1.1.0
tslib: 2.6.2
@@ -4878,14 +4477,14 @@ packages:
- encoding
- supports-color
- /@graphql-tools/relay-operation-optimizer@7.0.1(graphql@16.8.1):
- resolution: {integrity: sha512-y0ZrQ/iyqWZlsS/xrJfSir3TbVYJTYmMOu4TaSz6F4FRDTQ3ie43BlKkhf04rC28pnUOS4BO9pDcAo1D30l5+A==}
+ /@graphql-tools/relay-operation-optimizer@7.0.0(graphql@16.8.1):
+ resolution: {integrity: sha512-UNlJi5y3JylhVWU4MBpL0Hun4Q7IoJwv9xYtmAz+CgRa066szzY7dcuPfxrA7cIGgG/Q6TVsKsYaiF4OHPs1Fw==}
engines: {node: '>=16.0.0'}
peerDependencies:
graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
dependencies:
'@ardatan/relay-compiler': 12.0.0(graphql@16.8.1)
- '@graphql-tools/utils': 10.1.2(graphql@16.8.1)
+ '@graphql-tools/utils': 10.0.12(graphql@16.8.1)
graphql: 16.8.1
tslib: 2.6.2
transitivePeerDependencies:
@@ -4893,14 +4492,14 @@ packages:
- supports-color
dev: true
- /@graphql-tools/schema@10.0.3(graphql@16.8.1):
- resolution: {integrity: sha512-p28Oh9EcOna6i0yLaCFOnkcBDQECVf3SCexT6ktb86QNj9idnkhI+tCxnwZDh58Qvjd2nURdkbevvoZkvxzCog==}
+ /@graphql-tools/schema@10.0.2(graphql@16.8.1):
+ resolution: {integrity: sha512-TbPsIZnWyDCLhgPGnDjt4hosiNU2mF/rNtSk5BVaXWnZqvKJ6gzJV4fcHcvhRIwtscDMW2/YTnK6dLVnk8pc4w==}
engines: {node: '>=16.0.0'}
peerDependencies:
graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
dependencies:
- '@graphql-tools/merge': 9.0.3(graphql@16.8.1)
- '@graphql-tools/utils': 10.1.2(graphql@16.8.1)
+ '@graphql-tools/merge': 9.0.1(graphql@16.8.1)
+ '@graphql-tools/utils': 10.0.12(graphql@16.8.1)
graphql: 16.8.1
tslib: 2.6.2
value-or-promise: 1.0.12
@@ -4916,21 +4515,21 @@ packages:
tslib: 2.6.2
value-or-promise: 1.0.12
- /@graphql-tools/url-loader@8.0.2(@types/node@18.0.0)(graphql@16.8.1):
- resolution: {integrity: sha512-1dKp2K8UuFn7DFo1qX5c1cyazQv2h2ICwA9esHblEqCYrgf69Nk8N7SODmsfWg94OEaI74IqMoM12t7eIGwFzQ==}
+ /@graphql-tools/url-loader@8.0.1(@types/node@18.19.17)(graphql@16.8.1):
+ resolution: {integrity: sha512-B2k8KQEkEQmfV1zhurT5GLoXo8jbXP+YQHUayhCSxKYlRV7j/1Fhp1b21PDM8LXIDGlDRXaZ0FbWKOs7eYXDuQ==}
engines: {node: '>=16.0.0'}
peerDependencies:
graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
dependencies:
'@ardatan/sync-fetch': 0.0.1
- '@graphql-tools/delegate': 10.0.4(graphql@16.8.1)
- '@graphql-tools/executor-graphql-ws': 1.1.2(graphql@16.8.1)
- '@graphql-tools/executor-http': 1.0.9(@types/node@18.0.0)(graphql@16.8.1)
- '@graphql-tools/executor-legacy-ws': 1.0.6(graphql@16.8.1)
- '@graphql-tools/utils': 10.1.2(graphql@16.8.1)
- '@graphql-tools/wrap': 10.0.5(graphql@16.8.1)
+ '@graphql-tools/delegate': 10.0.3(graphql@16.8.1)
+ '@graphql-tools/executor-graphql-ws': 1.1.0(graphql@16.8.1)
+ '@graphql-tools/executor-http': 1.0.6(@types/node@18.19.17)(graphql@16.8.1)
+ '@graphql-tools/executor-legacy-ws': 1.0.5(graphql@16.8.1)
+ '@graphql-tools/utils': 10.0.12(graphql@16.8.1)
+ '@graphql-tools/wrap': 10.0.1(graphql@16.8.1)
'@types/ws': 8.5.10
- '@whatwg-node/fetch': 0.9.17
+ '@whatwg-node/fetch': 0.9.15
graphql: 16.8.1
isomorphic-ws: 5.0.0(ws@8.16.0)
tslib: 2.6.2
@@ -4941,22 +4540,23 @@ packages:
- bufferutil
- encoding
- utf-8-validate
+ dev: false
- /@graphql-tools/url-loader@8.0.2(@types/node@18.19.31)(graphql@16.8.1):
- resolution: {integrity: sha512-1dKp2K8UuFn7DFo1qX5c1cyazQv2h2ICwA9esHblEqCYrgf69Nk8N7SODmsfWg94OEaI74IqMoM12t7eIGwFzQ==}
+ /@graphql-tools/url-loader@8.0.1(@types/node@18.19.4)(graphql@16.8.1):
+ resolution: {integrity: sha512-B2k8KQEkEQmfV1zhurT5GLoXo8jbXP+YQHUayhCSxKYlRV7j/1Fhp1b21PDM8LXIDGlDRXaZ0FbWKOs7eYXDuQ==}
engines: {node: '>=16.0.0'}
peerDependencies:
graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
dependencies:
'@ardatan/sync-fetch': 0.0.1
- '@graphql-tools/delegate': 10.0.4(graphql@16.8.1)
- '@graphql-tools/executor-graphql-ws': 1.1.2(graphql@16.8.1)
- '@graphql-tools/executor-http': 1.0.9(@types/node@18.19.31)(graphql@16.8.1)
- '@graphql-tools/executor-legacy-ws': 1.0.6(graphql@16.8.1)
- '@graphql-tools/utils': 10.1.2(graphql@16.8.1)
- '@graphql-tools/wrap': 10.0.5(graphql@16.8.1)
+ '@graphql-tools/delegate': 10.0.3(graphql@16.8.1)
+ '@graphql-tools/executor-graphql-ws': 1.1.0(graphql@16.8.1)
+ '@graphql-tools/executor-http': 1.0.6(@types/node@18.19.4)(graphql@16.8.1)
+ '@graphql-tools/executor-legacy-ws': 1.0.5(graphql@16.8.1)
+ '@graphql-tools/utils': 10.0.12(graphql@16.8.1)
+ '@graphql-tools/wrap': 10.0.1(graphql@16.8.1)
'@types/ws': 8.5.10
- '@whatwg-node/fetch': 0.9.17
+ '@whatwg-node/fetch': 0.9.15
graphql: 16.8.1
isomorphic-ws: 5.0.0(ws@8.16.0)
tslib: 2.6.2
@@ -4967,10 +4567,9 @@ packages:
- bufferutil
- encoding
- utf-8-validate
- dev: false
- /@graphql-tools/utils@10.1.2(graphql@16.8.1):
- resolution: {integrity: sha512-fX13CYsDnX4yifIyNdiN0cVygz/muvkreWWem6BBw130+ODbRRgfiVveL0NizCEnKXkpvdeTy9Bxvo9LIKlhrw==}
+ /@graphql-tools/utils@10.0.12(graphql@16.8.1):
+ resolution: {integrity: sha512-+yS1qlFwXlwU3Gv8ek/h2aJ95quog4yF22haC11M0zReMSTddbGJZ5yXKkE3sXoY2BcL1utilSFjylJ9uXpSNQ==}
engines: {node: '>=16.0.0'}
peerDependencies:
graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
@@ -4998,15 +4597,15 @@ packages:
graphql: 16.8.1
tslib: 2.6.2
- /@graphql-tools/wrap@10.0.5(graphql@16.8.1):
- resolution: {integrity: sha512-Cbr5aYjr3HkwdPvetZp1cpDWTGdD1Owgsb3z/ClzhmrboiK86EnQDxDvOJiQkDCPWE9lNBwj8Y4HfxroY0D9DQ==}
+ /@graphql-tools/wrap@10.0.1(graphql@16.8.1):
+ resolution: {integrity: sha512-Cw6hVrKGM2OKBXeuAGltgy4tzuqQE0Nt7t/uAqnuokSXZhMHXJUb124Bnvxc2gPZn5chfJSDafDe4Cp8ZAVJgg==}
engines: {node: '>=16.0.0'}
peerDependencies:
graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
dependencies:
- '@graphql-tools/delegate': 10.0.4(graphql@16.8.1)
- '@graphql-tools/schema': 10.0.3(graphql@16.8.1)
- '@graphql-tools/utils': 10.1.2(graphql@16.8.1)
+ '@graphql-tools/delegate': 10.0.3(graphql@16.8.1)
+ '@graphql-tools/schema': 10.0.2(graphql@16.8.1)
+ '@graphql-tools/utils': 10.0.12(graphql@16.8.1)
graphql: 16.8.1
tslib: 2.6.2
value-or-promise: 1.0.12
@@ -5110,6 +4709,7 @@ packages:
/@humanwhocodes/config-array@0.5.0:
resolution: {integrity: sha512-FagtKFz74XrTl7y6HCzQpwDfXP0yhxe9lHLD1UZxjvZIcbyRz8zTFF/yYNfSfzU414eDwZ1SrO0Qvtyf+wFMQg==}
engines: {node: '>=10.10.0'}
+ requiresBuild: true
dependencies:
'@humanwhocodes/object-schema': 1.2.1
debug: 4.3.4
@@ -5124,6 +4724,7 @@ packages:
/@humanwhocodes/object-schema@1.2.1:
resolution: {integrity: sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==}
+ requiresBuild: true
/@iarna/toml@2.2.5:
resolution: {integrity: sha512-trnsAYxU3xnS1gPHPyU961coFyLkh4gAD/0zQ5mymY4yOZ+CYvsPqUbOFSw0aDM4y0tV7tiFxL/1XfXPNC6IPg==}
@@ -5310,6 +4911,10 @@ packages:
resolution: {integrity: sha512-tWZNBIS1CoekcwlMuyG2mr0a1Wo5lb5lEHwwWvZo+5GLgr3e9LLDTtmgtCWEwBpXMkxn9D+2W9j2FY6eZQq0tA==}
dev: false
+ /@ioredis/commands@1.2.0:
+ resolution: {integrity: sha512-Sx1pU8EM64o2BrqNpEO1CNLtKQwyhuXuqyfH7oGKCk+1a33d2r5saW8zNwm3j6BTExtjrv2BxTgzzkMwts6vGg==}
+ dev: false
+
/@isaacs/cliui@8.0.2:
resolution: {integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==}
engines: {node: '>=12'}
@@ -5342,7 +4947,7 @@ packages:
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
'@jest/types': 29.6.3
- '@types/node': 18.19.31
+ '@types/node': 18.19.17
chalk: 4.1.2
jest-message-util: 29.7.0
jest-util: 29.7.0
@@ -5363,14 +4968,14 @@ packages:
'@jest/test-result': 29.7.0
'@jest/transform': 29.7.0
'@jest/types': 29.6.3
- '@types/node': 18.19.31
+ '@types/node': 18.19.17
ansi-escapes: 4.3.2
chalk: 4.1.2
ci-info: 3.9.0
exit: 0.1.2
graceful-fs: 4.2.11
jest-changed-files: 29.7.0
- jest-config: 29.7.0(@types/node@18.19.31)
+ jest-config: 29.7.0(@types/node@18.19.17)
jest-haste-map: 29.7.0
jest-message-util: 29.7.0
jest-regex-util: 29.6.3
@@ -5392,11 +4997,11 @@ packages:
- ts-node
dev: true
- /@jest/create-cache-key-function@29.7.0:
- resolution: {integrity: sha512-4QqS3LY5PBmTRHj9sAg1HLoPzqAI0uOX6wI/TRqHIcOxlFidy6YEmCQJk6FSZjNLGCeubDMfmkWL+qaLKhSGQA==}
- engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
+ /@jest/create-cache-key-function@27.5.1:
+ resolution: {integrity: sha512-dmH1yW+makpTSURTy8VzdUwFnfQh1G8R+DxO2Ho2FFmBbKFEVm+3jWdvFhE2VqB/LATCTokkP0dotjyQyw5/AQ==}
+ engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
dependencies:
- '@jest/types': 29.6.3
+ '@jest/types': 27.5.1
dev: true
/@jest/environment@29.7.0:
@@ -5405,7 +5010,7 @@ packages:
dependencies:
'@jest/fake-timers': 29.7.0
'@jest/types': 29.6.3
- '@types/node': 18.19.31
+ '@types/node': 18.19.17
jest-mock: 29.7.0
dev: true
@@ -5432,7 +5037,7 @@ packages:
dependencies:
'@jest/types': 29.6.3
'@sinonjs/fake-timers': 10.3.0
- '@types/node': 18.19.31
+ '@types/node': 18.19.17
jest-message-util: 29.7.0
jest-mock: 29.7.0
jest-util: 29.7.0
@@ -5464,18 +5069,18 @@ packages:
'@jest/test-result': 29.7.0
'@jest/transform': 29.7.0
'@jest/types': 29.6.3
- '@jridgewell/trace-mapping': 0.3.25
- '@types/node': 18.19.31
+ '@jridgewell/trace-mapping': 0.3.20
+ '@types/node': 18.19.17
chalk: 4.1.2
collect-v8-coverage: 1.0.2
exit: 0.1.2
glob: 7.2.3
graceful-fs: 4.2.11
istanbul-lib-coverage: 3.2.2
- istanbul-lib-instrument: 6.0.2
+ istanbul-lib-instrument: 6.0.1
istanbul-lib-report: 3.0.1
istanbul-lib-source-maps: 4.0.1
- istanbul-reports: 3.1.7
+ istanbul-reports: 3.1.6
jest-message-util: 29.7.0
jest-util: 29.7.0
jest-worker: 29.7.0
@@ -5497,7 +5102,7 @@ packages:
resolution: {integrity: sha512-MHjT95QuipcPrpLM+8JMSzFx6eHp5Bm+4XeFDJlwsvVBjmKNiIAvasGK2fxz2WbGRlnvqehFbh07MMa7n3YJnw==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
- '@jridgewell/trace-mapping': 0.3.25
+ '@jridgewell/trace-mapping': 0.3.20
callsites: 3.1.0
graceful-fs: 4.2.11
dev: true
@@ -5526,9 +5131,9 @@ packages:
resolution: {integrity: sha512-ok/BTPFzFKVMwO5eOHRrvnBVHdRy9IrsrW1GpMaQ9MCnilNLXQKmAX8s1YXDFaai9xJpac2ySzV0YeRRECr2Vw==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
- '@babel/core': 7.24.4
+ '@babel/core': 7.23.7
'@jest/types': 29.6.3
- '@jridgewell/trace-mapping': 0.3.25
+ '@jridgewell/trace-mapping': 0.3.20
babel-plugin-istanbul: 6.1.1
chalk: 4.1.2
convert-source-map: 2.0.0
@@ -5551,7 +5156,7 @@ packages:
dependencies:
'@types/istanbul-lib-coverage': 2.0.6
'@types/istanbul-reports': 3.0.4
- '@types/node': 18.19.31
+ '@types/node': 18.19.17
'@types/yargs': 16.0.9
chalk: 4.1.2
@@ -5562,7 +5167,7 @@ packages:
'@jest/schemas': 29.6.3
'@types/istanbul-lib-coverage': 2.0.6
'@types/istanbul-reports': 3.0.4
- '@types/node': 18.19.31
+ '@types/node': 18.19.17
'@types/yargs': 17.0.32
chalk: 4.1.2
dev: true
@@ -5581,44 +5186,44 @@ packages:
magic-string: 0.27.0
react-docgen-typescript: 2.2.2(typescript@5.3.3)
typescript: 5.3.3
- vite: 5.0.10(@types/node@18.19.31)
+ vite: 5.0.10(@types/node@18.19.17)
dev: true
- /@jridgewell/gen-mapping@0.3.5:
- resolution: {integrity: sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==}
+ /@jridgewell/gen-mapping@0.3.3:
+ resolution: {integrity: sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==}
engines: {node: '>=6.0.0'}
dependencies:
- '@jridgewell/set-array': 1.2.1
+ '@jridgewell/set-array': 1.1.2
'@jridgewell/sourcemap-codec': 1.4.15
- '@jridgewell/trace-mapping': 0.3.25
+ '@jridgewell/trace-mapping': 0.3.20
- /@jridgewell/resolve-uri@3.1.2:
- resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==}
+ /@jridgewell/resolve-uri@3.1.1:
+ resolution: {integrity: sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==}
engines: {node: '>=6.0.0'}
- /@jridgewell/set-array@1.2.1:
- resolution: {integrity: sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==}
+ /@jridgewell/set-array@1.1.2:
+ resolution: {integrity: sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==}
engines: {node: '>=6.0.0'}
- /@jridgewell/source-map@0.3.6:
- resolution: {integrity: sha512-1ZJTZebgqllO79ue2bm3rIGud/bOe0pP5BjSRCRxxYkEZS8STV7zN84UBbiYu7jy+eCKSnVIUgoWWE/tt+shMQ==}
+ /@jridgewell/source-map@0.3.5:
+ resolution: {integrity: sha512-UTYAUj/wviwdsMfzoSJspJxbkH5o1snzwX0//0ENX1u/55kkZZkcTZP6u9bwKGkv+dkk9at4m1Cpt0uY80kcpQ==}
dependencies:
- '@jridgewell/gen-mapping': 0.3.5
- '@jridgewell/trace-mapping': 0.3.25
+ '@jridgewell/gen-mapping': 0.3.3
+ '@jridgewell/trace-mapping': 0.3.20
/@jridgewell/sourcemap-codec@1.4.15:
resolution: {integrity: sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==}
- /@jridgewell/trace-mapping@0.3.25:
- resolution: {integrity: sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==}
+ /@jridgewell/trace-mapping@0.3.20:
+ resolution: {integrity: sha512-R8LcPeWZol2zR8mmH3JeKQ6QRCFb7XgUhV9ZlGhHLGyg4wpPiPZNQOOWhFZhxKw8u//yTbNGI42Bx/3paXEQ+Q==}
dependencies:
- '@jridgewell/resolve-uri': 3.1.2
+ '@jridgewell/resolve-uri': 3.1.1
'@jridgewell/sourcemap-codec': 1.4.15
/@jridgewell/trace-mapping@0.3.9:
resolution: {integrity: sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==}
dependencies:
- '@jridgewell/resolve-uri': 3.1.2
+ '@jridgewell/resolve-uri': 3.1.1
'@jridgewell/sourcemap-codec': 1.4.15
dev: false
@@ -5652,13 +5257,13 @@ packages:
resolution: {integrity: sha512-GaHYm+c0O9MjZRu0ongGBRbinu8gVAMd2UZjji6jVmqKtZluZnptXGWhz1E8j8D2HJ3f/yMxKAUC0b+57wncIw==}
dev: true
- /@lezer/common@1.2.1:
- resolution: {integrity: sha512-yemX0ZD2xS/73llMZIK6KplkjIjf2EvAHcinDi/TfJ9hS25G0388+ClHt6/3but0oOxinTcQHJLDXh6w1crzFQ==}
+ /@lezer/common@1.2.0:
+ resolution: {integrity: sha512-Wmvlm4q6tRpwiy20TnB3yyLTZim38Tkc50dPY8biQRwqE+ati/wD84rm3N15hikvdT4uSg9phs9ubjvcLmkpKg==}
- /@lezer/lr@1.4.0:
- resolution: {integrity: sha512-Wst46p51km8gH0ZUmeNrtpRYmdlRHUpN1DQd3GFAyKANi8WVz8c2jHYTf1CVScFaCjQw1iO3ZZdqGDxQPRErTg==}
+ /@lezer/lr@1.3.14:
+ resolution: {integrity: sha512-z5mY4LStlA3yL7aHT/rqgG614cfcvklS+8oFRFBYrs4YaWLJyKKM4+nN6KopToX0o9Hj6zmH6M5kinOYuy06ug==}
dependencies:
- '@lezer/common': 1.2.1
+ '@lezer/common': 1.2.0
/@lmdb/lmdb-darwin-arm64@2.5.2:
resolution: {integrity: sha512-+F8ioQIUN68B4UFiIBYu0QQvgb9FmlKw2ctQMSBfW2QBrZIxz9vD9jCGqTCPqZBRbPHAS/vG1zSXnKqnS2ch/A==}
@@ -5779,15 +5384,15 @@ packages:
resolution: {integrity: sha512-Yhlar6v9WQgUp/He7BdgzOz8lqMQ8sU+jkCq7Wx8Myc5YFJLbEe7lgui/V7G1qB1DJykHSGwreceSaD60Y0PUQ==}
hasBin: true
dependencies:
- detect-libc: 2.0.3
+ detect-libc: 2.0.2
https-proxy-agent: 5.0.1
make-dir: 3.1.0
- node-fetch: 2.6.12
+ node-fetch: 2.7.0
nopt: 5.0.0
npmlog: 5.0.1
rimraf: 3.0.2
- semver: 7.6.0
- tar: 6.2.1
+ semver: 7.5.4
+ tar: 6.2.0
transitivePeerDependencies:
- encoding
- supports-color
@@ -5797,15 +5402,15 @@ packages:
resolution: {integrity: sha512-Yhlar6v9WQgUp/He7BdgzOz8lqMQ8sU+jkCq7Wx8Myc5YFJLbEe7lgui/V7G1qB1DJykHSGwreceSaD60Y0PUQ==}
hasBin: true
dependencies:
- detect-libc: 2.0.3
+ detect-libc: 2.0.2
https-proxy-agent: 5.0.1(supports-color@9.4.0)
make-dir: 3.1.0
- node-fetch: 2.6.12
+ node-fetch: 2.7.0
nopt: 5.0.0
npmlog: 5.0.1
rimraf: 3.0.2
- semver: 7.6.0
- tar: 6.2.1
+ semver: 7.5.4
+ tar: 6.2.0
transitivePeerDependencies:
- encoding
- supports-color
@@ -5824,8 +5429,8 @@ packages:
peerDependencies:
react: '>=16'
dependencies:
- '@types/mdx': 2.0.12
- '@types/react': 18.2.46
+ '@types/mdx': 2.0.10
+ '@types/react': 18.2.60
react: 18.2.0
dev: true
@@ -5833,8 +5438,8 @@ packages:
resolution: {integrity: sha512-iA7+tyVqfrATAIsIRWQG+a7ZLLD0VaOCKV2Wd/v4mqIU3J9c4jx9p7S0nw1XH3gJCKNBOOwACOPYYSUu9pgT+w==}
engines: {node: '>=12.0.0'}
dependencies:
- '@lezer/common': 1.2.1
- '@lezer/lr': 1.4.0
+ '@lezer/common': 1.2.0
+ '@lezer/lr': 1.3.14
json5: 2.2.3
/@mole-inc/bin-wrapper@8.0.1:
@@ -5923,14 +5528,14 @@ packages:
'@iarna/toml': 2.2.5
dot-prop: 7.2.0
find-up: 6.3.0
- minimatch: 9.0.4
+ minimatch: 9.0.3
read-pkg: 7.1.0
- semver: 7.6.0
- yaml: 2.4.1
+ semver: 7.5.4
+ yaml: 2.3.4
yargs: 17.7.2
dev: false
- /@netlify/build@29.36.6(@opentelemetry/api@1.8.0)(@types/node@18.19.31):
+ /@netlify/build@29.36.6(@opentelemetry/api@1.8.0)(@types/node@18.19.17):
resolution: {integrity: sha512-crNoY5Vr7tAodBfYdz8weM+NTw5q6W6ArkowNw6QhKXa4iRXT5MY6H0c2ztsge9o5gAYs55bDhBpKiPcZlzDlA==}
engines: {node: ^14.16.0 || >=16.0.0}
hasBin: true
@@ -5947,16 +5552,16 @@ packages:
'@netlify/config': 20.12.1
'@netlify/edge-bundler': 11.3.0(supports-color@9.4.0)
'@netlify/framework-info': 9.8.11
- '@netlify/functions-utils': 5.2.54(supports-color@9.4.0)
+ '@netlify/functions-utils': 5.2.51(supports-color@9.4.0)
'@netlify/git-utils': 5.1.1
'@netlify/opentelemetry-utils': 1.1.0(@opentelemetry/api@1.8.0)
- '@netlify/plugins-list': 6.77.0
+ '@netlify/plugins-list': 6.75.0
'@netlify/run-utils': 5.1.1
'@netlify/zip-it-and-ship-it': 9.29.2(supports-color@9.4.0)
'@opentelemetry/api': 1.8.0
'@sindresorhus/slugify': 2.2.1
ansi-escapes: 6.2.1
- chalk: 5.2.0
+ chalk: 5.3.0
clean-stack: 4.2.0
execa: 6.1.0
fdir: 6.1.1
@@ -5988,16 +5593,16 @@ packages:
read-pkg-up: 9.1.0
readdirp: 3.6.0
resolve: 2.0.0-next.5
- rfdc: 1.3.1
+ rfdc: 1.3.0
safe-json-stringify: 1.2.0
- semver: 7.6.0
+ semver: 7.5.4
string-width: 5.1.2
strip-ansi: 7.1.0
supports-color: 9.4.0
terminal-link: 3.0.0
- ts-node: 10.9.2(@types/node@18.19.31)(typescript@5.4.4)
- typescript: 5.4.4
- uuid: 9.0.0
+ ts-node: 10.9.2(@types/node@18.19.17)(typescript@5.4.2)
+ typescript: 5.4.2
+ uuid: 9.0.1
yargs: 17.7.2
transitivePeerDependencies:
- '@swc/core'
@@ -6027,7 +5632,7 @@ packages:
hasBin: true
dependencies:
'@iarna/toml': 2.2.5
- chalk: 5.2.0
+ chalk: 5.3.0
cron-parser: 4.8.1
deepmerge: 4.3.1
dot-prop: 7.2.0
@@ -6069,16 +5674,16 @@ packages:
get-package-name: 2.2.0
get-port: 6.1.2
is-path-inside: 4.0.0
- jsonc-parser: 3.2.1
+ jsonc-parser: 3.2.0
node-fetch: 3.3.2
node-stream-zip: 1.15.0
p-retry: 5.1.2
p-wait-for: 4.1.0
path-key: 4.0.0
- semver: 7.6.0
+ semver: 7.5.4
tmp-promise: 3.0.3
urlpattern-polyfill: 8.0.2
- uuid: 9.0.0
+ uuid: 9.0.1
transitivePeerDependencies:
- encoding
- supports-color
@@ -6101,16 +5706,16 @@ packages:
get-package-name: 2.2.0
get-port: 6.1.2
is-path-inside: 4.0.0
- jsonc-parser: 3.2.1
+ jsonc-parser: 3.2.0
node-fetch: 3.3.2
node-stream-zip: 1.15.0
p-retry: 5.1.2
p-wait-for: 4.1.0
path-key: 4.0.0
- semver: 7.6.0
+ semver: 7.5.4
tmp-promise: 3.0.3
urlpattern-polyfill: 8.0.2
- uuid: 9.0.0
+ uuid: 9.0.1
transitivePeerDependencies:
- encoding
- supports-color
@@ -6133,14 +5738,14 @@ packages:
p-locate: 6.0.0
process: 0.11.10
read-pkg-up: 9.1.0
- semver: 7.6.0
+ semver: 7.5.4
dev: false
- /@netlify/functions-utils@5.2.54(supports-color@9.4.0):
- resolution: {integrity: sha512-QdYmIPC6NBp90MfuHWeNGqf1XdsRUcIIbcWnT2AK1g2By8ur8m28qGM99GlReRmprzC7ZT7YmwcHjUjaq24sRA==}
+ /@netlify/functions-utils@5.2.51(supports-color@9.4.0):
+ resolution: {integrity: sha512-A4XLQOE2pfcOHcCTs97G6FDVQg20zGoROCAZcpnNd8bMvBDDVgziC/xoFxm4xGC36u0YogSECsLoIbSKSxLloA==}
engines: {node: ^14.16.0 || >=16.0.0}
dependencies:
- '@netlify/zip-it-and-ship-it': 9.31.3(supports-color@9.4.0)
+ '@netlify/zip-it-and-ship-it': 9.29.2(supports-color@9.4.0)
cpy: 9.0.1
path-exists: 5.0.0
transitivePeerDependencies:
@@ -6294,8 +5899,8 @@ packages:
resolution: {integrity: sha512-OAs1xG+FfLX0LoRASpqzVntVV/RpYkgpI0VrUnw2u0Q1qiZUzcPffxRK8HF3gc4GjuhG5ahOEMJ9bswBiZPq0g==}
engines: {node: ^14.16.0 || >=16.0.0}
- /@netlify/open-api@2.30.0:
- resolution: {integrity: sha512-SMRzNwaG6/2MTIBe/RThLQRm3kNpiwb90te+iDJgMLLfTdVA33P/oiinTypBMyQU4Cm3IvQm7P5zD2mXZacSsg==}
+ /@netlify/open-api@2.28.0:
+ resolution: {integrity: sha512-lSx9yVn5mzTS7u9aevQyDRoWaHJYNl15B7CU373g8We39wW8fGh4sdNY7ciPWshf42FblOVlBdoasn/LpzquXg==}
engines: {node: '>=14'}
dev: false
@@ -6308,8 +5913,8 @@ packages:
'@opentelemetry/api': 1.8.0
dev: false
- /@netlify/plugins-list@6.77.0:
- resolution: {integrity: sha512-czL3FH61hFhhVQydRj2xjIwLVYHDNskMhRib7dUfOQrUHifqLlUFKp03NwBD87G9BFKXUYGWZMEUU+JjIpVc9w==}
+ /@netlify/plugins-list@6.75.0:
+ resolution: {integrity: sha512-xH5UWc6v6oOu53kaNhJI6o0vESVECoGBjD5hW5nmjFaIkEJFDfbtHj/gSQ2hCcwIzTlGYRGIyGVBMY+e7ki6bw==}
engines: {node: ^14.14.0 || >=16.0.0}
dev: false
@@ -6327,28 +5932,20 @@ packages:
'@netlify/node-cookies': 0.1.0
urlpattern-polyfill: 8.0.2
- /@netlify/serverless-functions-api@1.16.2:
- resolution: {integrity: sha512-v28g91/bnvvFw+LO/ro/n766RhbWqB5UG2H73kwEUuSqlnLuO/tMgPh13vOeeIgjZcXZoulGn13g7eUs4j6Qpg==}
- engines: {node: ^14.18.0 || >=16.0.0}
- dependencies:
- '@netlify/node-cookies': 0.1.0
- urlpattern-polyfill: 8.0.2
- dev: false
-
/@netlify/zip-it-and-ship-it@9.29.2(supports-color@9.4.0):
resolution: {integrity: sha512-9o/4lsFWuyPpe38Rhk/00JyccKSBRGM9Av3DINnh/QrpTeIC6esfJsaJNQ4JQ+gU4XXAwxPY9Uk+16WMPs/zkg==}
engines: {node: ^14.18.0 || >=16.0.0}
hasBin: true
dependencies:
- '@babel/parser': 7.24.4
+ '@babel/parser': 7.23.6
'@babel/types': 7.23.6
'@netlify/binary-info': 1.0.0
- '@netlify/serverless-functions-api': 1.16.2
+ '@netlify/serverless-functions-api': 1.14.0
'@vercel/nft': 0.23.1(supports-color@9.4.0)
- archiver: 6.0.2
+ archiver: 6.0.1
common-path-prefix: 3.0.0
cp-file: 10.0.0
- es-module-lexer: 1.5.0
+ es-module-lexer: 1.4.1
esbuild: 0.19.11
execa: 6.1.0
fast-glob: 3.3.2
@@ -6360,14 +5957,14 @@ packages:
junk: 4.0.1
locate-path: 7.2.0
merge-options: 3.0.4
- minimatch: 9.0.4
+ minimatch: 9.0.3
normalize-path: 3.0.0
p-map: 5.5.0
path-exists: 5.0.0
precinct: 11.0.5(supports-color@9.4.0)
require-package-name: 2.0.1
resolve: 2.0.0-next.5
- semver: 7.6.0
+ semver: 7.5.4
tmp-promise: 3.0.3
toml: 3.0.0
unixify: 1.0.0
@@ -6383,15 +5980,15 @@ packages:
engines: {node: ^14.18.0 || >=16.0.0}
hasBin: true
dependencies:
- '@babel/parser': 7.24.4
+ '@babel/parser': 7.23.6
'@babel/types': 7.23.6
'@netlify/binary-info': 1.0.0
- '@netlify/serverless-functions-api': 1.16.2
+ '@netlify/serverless-functions-api': 1.14.0
'@vercel/nft': 0.23.1
- archiver: 6.0.2
+ archiver: 6.0.1
common-path-prefix: 3.0.0
cp-file: 10.0.0
- es-module-lexer: 1.5.0
+ es-module-lexer: 1.4.1
esbuild: 0.19.11
execa: 6.1.0
fast-glob: 3.3.2
@@ -6403,57 +6000,14 @@ packages:
junk: 4.0.1
locate-path: 7.2.0
merge-options: 3.0.4
- minimatch: 9.0.4
+ minimatch: 9.0.3
normalize-path: 3.0.0
p-map: 5.5.0
path-exists: 5.0.0
precinct: 11.0.5
require-package-name: 2.0.1
resolve: 2.0.0-next.5
- semver: 7.6.0
- tmp-promise: 3.0.3
- toml: 3.0.0
- unixify: 1.0.0
- urlpattern-polyfill: 8.0.2
- yargs: 17.7.2
- transitivePeerDependencies:
- - encoding
- - supports-color
- dev: false
-
- /@netlify/zip-it-and-ship-it@9.31.3(supports-color@9.4.0):
- resolution: {integrity: sha512-cB8DE0pV90IYShytLcKyxZFy6aolKqSuFDMOKVL/svJ6hMQOVlngz5ZKcNRX4rQ2uHWHTe75tgTn6OqmelQYrw==}
- engines: {node: ^14.18.0 || >=16.0.0}
- hasBin: true
- dependencies:
- '@babel/parser': 7.24.4
- '@babel/types': 7.23.6
- '@netlify/binary-info': 1.0.0
- '@netlify/serverless-functions-api': 1.16.2
- '@vercel/nft': 0.23.1(supports-color@9.4.0)
- archiver: 6.0.2
- common-path-prefix: 3.0.0
- cp-file: 10.0.0
- es-module-lexer: 1.5.0
- esbuild: 0.19.11
- execa: 6.1.0
- fast-glob: 3.3.2
- filter-obj: 5.1.0
- find-up: 6.3.0
- glob: 8.1.0
- is-builtin-module: 3.2.1
- is-path-inside: 4.0.0
- junk: 4.0.1
- locate-path: 7.2.0
- merge-options: 3.0.4
- minimatch: 9.0.4
- normalize-path: 3.0.0
- p-map: 5.5.0
- path-exists: 5.0.0
- precinct: 11.0.5(supports-color@9.4.0)
- require-package-name: 2.0.1
- resolve: 2.0.0-next.5
- semver: 7.6.0
+ semver: 7.5.4
tmp-promise: 3.0.3
toml: 3.0.0
unixify: 1.0.0
@@ -6485,14 +6039,14 @@ packages:
engines: {node: '>= 8'}
dependencies:
'@nodelib/fs.scandir': 2.1.5
- fastq: 1.17.1
+ fastq: 1.16.0
/@npmcli/fs@1.1.1:
resolution: {integrity: sha512-8KG5RD0GVP4ydEzRn/I4BNDuxDtqVbOdm8675T49OIG/NGhaK0pjPX7ZcDlvKYbA+ulvVK3ztfcF4uBdOxuJbQ==}
requiresBuild: true
dependencies:
'@gar/promisify': 1.1.3
- semver: 7.6.0
+ semver: 7.5.4
dev: false
optional: true
@@ -6597,7 +6151,7 @@ packages:
'@octokit/request-error': 3.0.3
'@octokit/types': 9.3.2
is-plain-object: 5.0.0
- node-fetch: 2.6.12
+ node-fetch: 2.7.0
universal-user-agent: 6.0.1
transitivePeerDependencies:
- encoding
@@ -6695,7 +6249,7 @@ packages:
'@parcel/workers': 2.8.3(@parcel/core@2.8.3)
abortcontroller-polyfill: 1.7.5
base-x: 3.0.9
- browserslist: 4.23.0
+ browserslist: 4.22.2
clone: 2.1.2
dotenv: 7.0.0
dotenv-expand: 5.1.0
@@ -6731,7 +6285,7 @@ packages:
'@parcel/fs-search': 2.8.3
'@parcel/types': 2.8.3(@parcel/core@2.8.3)
'@parcel/utils': 2.8.3
- '@parcel/watcher': 2.4.1
+ '@parcel/watcher': 2.3.0
'@parcel/workers': 2.8.3(@parcel/core@2.8.3)
/@parcel/graph@2.8.3:
@@ -6788,7 +6342,7 @@ packages:
'@parcel/source-map': 2.1.1
'@parcel/utils': 2.8.3
nullthrows: 1.1.1
- terser: 5.30.3
+ terser: 5.26.0
transitivePeerDependencies:
- '@parcel/core'
@@ -6884,7 +6438,7 @@ packages:
'@parcel/utils': 2.8.3
'@parcel/workers': 2.8.3(@parcel/core@2.8.3)
'@swc/helpers': 0.4.36
- browserslist: 4.23.0
+ browserslist: 4.22.2
detect-libc: 1.0.3
nullthrows: 1.1.1
regenerator-runtime: 0.13.11
@@ -6908,7 +6462,7 @@ packages:
'@parcel/package-manager': 2.8.3(@parcel/core@2.8.3)
'@parcel/source-map': 2.1.1
'@parcel/workers': 2.8.3(@parcel/core@2.8.3)
- utility-types: 3.11.0
+ utility-types: 3.10.0
transitivePeerDependencies:
- '@parcel/core'
@@ -6924,44 +6478,97 @@ packages:
'@parcel/source-map': 2.1.1
chalk: 4.1.2
+ /@parcel/watcher-android-arm64@2.3.0:
+ resolution: {integrity: sha512-f4o9eA3dgk0XRT3XhB0UWpWpLnKgrh1IwNJKJ7UJek7eTYccQ8LR7XUWFKqw6aEq5KUNlCcGvSzKqSX/vtWVVA==}
+ engines: {node: '>= 10.0.0'}
+ cpu: [arm64]
+ os: [android]
+ requiresBuild: true
+ optional: true
+
/@parcel/watcher-android-arm64@2.4.1:
resolution: {integrity: sha512-LOi/WTbbh3aTn2RYddrO8pnapixAziFl6SMxHM69r3tvdSm94JtCenaKgk1GRg5FJ5wpMCpHeW+7yqPlvZv7kg==}
engines: {node: '>= 10.0.0'}
cpu: [arm64]
os: [android]
requiresBuild: true
+ dev: false
optional: true
- /@parcel/watcher-darwin-arm64@2.4.1:
- resolution: {integrity: sha512-ln41eihm5YXIY043vBrrHfn94SIBlqOWmoROhsMVTSXGh0QahKGy77tfEywQ7v3NywyxBBkGIfrWRHm0hsKtzA==}
+ /@parcel/watcher-darwin-arm64@2.3.0:
+ resolution: {integrity: sha512-mKY+oijI4ahBMc/GygVGvEdOq0L4DxhYgwQqYAz/7yPzuGi79oXrZG52WdpGA1wLBPrYb0T8uBaGFo7I6rvSKw==}
engines: {node: '>= 10.0.0'}
cpu: [arm64]
os: [darwin]
requiresBuild: true
optional: true
- /@parcel/watcher-darwin-x64@2.4.1:
- resolution: {integrity: sha512-yrw81BRLjjtHyDu7J61oPuSoeYWR3lDElcPGJyOvIXmor6DEo7/G2u1o7I38cwlcoBHQFULqF6nesIX3tsEXMg==}
+ /@parcel/watcher-darwin-arm64@2.4.1:
+ resolution: {integrity: sha512-ln41eihm5YXIY043vBrrHfn94SIBlqOWmoROhsMVTSXGh0QahKGy77tfEywQ7v3NywyxBBkGIfrWRHm0hsKtzA==}
engines: {node: '>= 10.0.0'}
- cpu: [x64]
+ cpu: [arm64]
os: [darwin]
requiresBuild: true
+ dev: false
optional: true
- /@parcel/watcher-freebsd-x64@2.4.1:
- resolution: {integrity: sha512-TJa3Pex/gX3CWIx/Co8k+ykNdDCLx+TuZj3f3h7eOjgpdKM+Mnix37RYsYU4LHhiYJz3DK5nFCCra81p6g050w==}
+ /@parcel/watcher-darwin-x64@2.3.0:
+ resolution: {integrity: sha512-20oBj8LcEOnLE3mgpy6zuOq8AplPu9NcSSSfyVKgfOhNAc4eF4ob3ldj0xWjGGbOF7Dcy1Tvm6ytvgdjlfUeow==}
engines: {node: '>= 10.0.0'}
cpu: [x64]
- os: [freebsd]
+ os: [darwin]
requiresBuild: true
optional: true
- /@parcel/watcher-linux-arm-glibc@2.4.1:
+ /@parcel/watcher-darwin-x64@2.4.1:
+ resolution: {integrity: sha512-yrw81BRLjjtHyDu7J61oPuSoeYWR3lDElcPGJyOvIXmor6DEo7/G2u1o7I38cwlcoBHQFULqF6nesIX3tsEXMg==}
+ engines: {node: '>= 10.0.0'}
+ cpu: [x64]
+ os: [darwin]
+ requiresBuild: true
+ dev: false
+ optional: true
+
+ /@parcel/watcher-freebsd-x64@2.3.0:
+ resolution: {integrity: sha512-7LftKlaHunueAEiojhCn+Ef2CTXWsLgTl4hq0pkhkTBFI3ssj2bJXmH2L67mKpiAD5dz66JYk4zS66qzdnIOgw==}
+ engines: {node: '>= 10.0.0'}
+ cpu: [x64]
+ os: [freebsd]
+ requiresBuild: true
+ optional: true
+
+ /@parcel/watcher-freebsd-x64@2.4.1:
+ resolution: {integrity: sha512-TJa3Pex/gX3CWIx/Co8k+ykNdDCLx+TuZj3f3h7eOjgpdKM+Mnix37RYsYU4LHhiYJz3DK5nFCCra81p6g050w==}
+ engines: {node: '>= 10.0.0'}
+ cpu: [x64]
+ os: [freebsd]
+ requiresBuild: true
+ dev: false
+ optional: true
+
+ /@parcel/watcher-linux-arm-glibc@2.3.0:
+ resolution: {integrity: sha512-1apPw5cD2xBv1XIHPUlq0cO6iAaEUQ3BcY0ysSyD9Kuyw4MoWm1DV+W9mneWI+1g6OeP6dhikiFE6BlU+AToTQ==}
+ engines: {node: '>= 10.0.0'}
+ cpu: [arm]
+ os: [linux]
+ requiresBuild: true
+ optional: true
+
+ /@parcel/watcher-linux-arm-glibc@2.4.1:
resolution: {integrity: sha512-4rVYDlsMEYfa537BRXxJ5UF4ddNwnr2/1O4MHM5PjI9cvV2qymvhwZSFgXqbS8YoTk5i/JR0L0JDs69BUn45YA==}
engines: {node: '>= 10.0.0'}
cpu: [arm]
os: [linux]
requiresBuild: true
+ dev: false
+ optional: true
+
+ /@parcel/watcher-linux-arm64-glibc@2.3.0:
+ resolution: {integrity: sha512-mQ0gBSQEiq1k/MMkgcSB0Ic47UORZBmWoAWlMrTW6nbAGoLZP+h7AtUM7H3oDu34TBFFvjy4JCGP43JlylkTQA==}
+ engines: {node: '>= 10.0.0'}
+ cpu: [arm64]
+ os: [linux]
+ requiresBuild: true
optional: true
/@parcel/watcher-linux-arm64-glibc@2.4.1:
@@ -6970,6 +6577,15 @@ packages:
cpu: [arm64]
os: [linux]
requiresBuild: true
+ dev: false
+ optional: true
+
+ /@parcel/watcher-linux-arm64-musl@2.3.0:
+ resolution: {integrity: sha512-LXZAExpepJew0Gp8ZkJ+xDZaTQjLHv48h0p0Vw2VMFQ8A+RKrAvpFuPVCVwKJCr5SE+zvaG+Etg56qXvTDIedw==}
+ engines: {node: '>= 10.0.0'}
+ cpu: [arm64]
+ os: [linux]
+ requiresBuild: true
optional: true
/@parcel/watcher-linux-arm64-musl@2.4.1:
@@ -6978,6 +6594,15 @@ packages:
cpu: [arm64]
os: [linux]
requiresBuild: true
+ dev: false
+ optional: true
+
+ /@parcel/watcher-linux-x64-glibc@2.3.0:
+ resolution: {integrity: sha512-P7Wo91lKSeSgMTtG7CnBS6WrA5otr1K7shhSjKHNePVmfBHDoAOHYRXgUmhiNfbcGk0uMCHVcdbfxtuiZCHVow==}
+ engines: {node: '>= 10.0.0'}
+ cpu: [x64]
+ os: [linux]
+ requiresBuild: true
optional: true
/@parcel/watcher-linux-x64-glibc@2.4.1:
@@ -6986,6 +6611,15 @@ packages:
cpu: [x64]
os: [linux]
requiresBuild: true
+ dev: false
+ optional: true
+
+ /@parcel/watcher-linux-x64-musl@2.3.0:
+ resolution: {integrity: sha512-+kiRE1JIq8QdxzwoYY+wzBs9YbJ34guBweTK8nlzLKimn5EQ2b2FSC+tAOpq302BuIMjyuUGvBiUhEcLIGMQ5g==}
+ engines: {node: '>= 10.0.0'}
+ cpu: [x64]
+ os: [linux]
+ requiresBuild: true
optional: true
/@parcel/watcher-linux-x64-musl@2.4.1:
@@ -6994,6 +6628,7 @@ packages:
cpu: [x64]
os: [linux]
requiresBuild: true
+ dev: false
optional: true
/@parcel/watcher-wasm@2.4.1:
@@ -7007,12 +6642,29 @@ packages:
bundledDependencies:
- napi-wasm
+ /@parcel/watcher-win32-arm64@2.3.0:
+ resolution: {integrity: sha512-35gXCnaz1AqIXpG42evcoP2+sNL62gZTMZne3IackM+6QlfMcJLy3DrjuL6Iks7Czpd3j4xRBzez3ADCj1l7Aw==}
+ engines: {node: '>= 10.0.0'}
+ cpu: [arm64]
+ os: [win32]
+ requiresBuild: true
+ optional: true
+
/@parcel/watcher-win32-arm64@2.4.1:
resolution: {integrity: sha512-Uq2BPp5GWhrq/lcuItCHoqxjULU1QYEcyjSO5jqqOK8RNFDBQnenMMx4gAl3v8GiWa59E9+uDM7yZ6LxwUIfRg==}
engines: {node: '>= 10.0.0'}
cpu: [arm64]
os: [win32]
requiresBuild: true
+ dev: false
+ optional: true
+
+ /@parcel/watcher-win32-ia32@2.3.0:
+ resolution: {integrity: sha512-FJS/IBQHhRpZ6PiCjFt1UAcPr0YmCLHRbTc00IBTrelEjlmmgIVLeOx4MSXzx2HFEy5Jo5YdhGpxCuqCyDJ5ow==}
+ engines: {node: '>= 10.0.0'}
+ cpu: [ia32]
+ os: [win32]
+ requiresBuild: true
optional: true
/@parcel/watcher-win32-ia32@2.4.1:
@@ -7021,6 +6673,15 @@ packages:
cpu: [ia32]
os: [win32]
requiresBuild: true
+ dev: false
+ optional: true
+
+ /@parcel/watcher-win32-x64@2.3.0:
+ resolution: {integrity: sha512-dLx+0XRdMnVI62kU3wbXvbIRhLck4aE28bIGKbRGS7BJNt54IIj9+c/Dkqb+7DJEbHUZAX1bwaoM8PqVlHJmCA==}
+ engines: {node: '>= 10.0.0'}
+ cpu: [x64]
+ os: [win32]
+ requiresBuild: true
optional: true
/@parcel/watcher-win32-x64@2.4.1:
@@ -7029,8 +6690,31 @@ packages:
cpu: [x64]
os: [win32]
requiresBuild: true
+ dev: false
optional: true
+ /@parcel/watcher@2.3.0:
+ resolution: {integrity: sha512-pW7QaFiL11O0BphO+bq3MgqeX/INAk9jgBldVDYjlQPO4VddoZnF22TcF9onMhnLVHuNqBJeRf+Fj7eezi/+rQ==}
+ engines: {node: '>= 10.0.0'}
+ dependencies:
+ detect-libc: 1.0.3
+ is-glob: 4.0.3
+ micromatch: 4.0.5
+ node-addon-api: 7.0.0
+ optionalDependencies:
+ '@parcel/watcher-android-arm64': 2.3.0
+ '@parcel/watcher-darwin-arm64': 2.3.0
+ '@parcel/watcher-darwin-x64': 2.3.0
+ '@parcel/watcher-freebsd-x64': 2.3.0
+ '@parcel/watcher-linux-arm-glibc': 2.3.0
+ '@parcel/watcher-linux-arm64-glibc': 2.3.0
+ '@parcel/watcher-linux-arm64-musl': 2.3.0
+ '@parcel/watcher-linux-x64-glibc': 2.3.0
+ '@parcel/watcher-linux-x64-musl': 2.3.0
+ '@parcel/watcher-win32-arm64': 2.3.0
+ '@parcel/watcher-win32-ia32': 2.3.0
+ '@parcel/watcher-win32-x64': 2.3.0
+
/@parcel/watcher@2.4.1:
resolution: {integrity: sha512-HNjmfLQEVRZmHRET336f20H/8kOozUGwk7yajvsonjNxbj2wBTK1WsQuHkD5yYh9RxFGL2EyDHryOihOwUoKDA==}
engines: {node: '>= 10.0.0'}
@@ -7038,7 +6722,7 @@ packages:
detect-libc: 1.0.3
is-glob: 4.0.3
micromatch: 4.0.5
- node-addon-api: 7.1.0
+ node-addon-api: 7.0.0
optionalDependencies:
'@parcel/watcher-android-arm64': 2.4.1
'@parcel/watcher-darwin-arm64': 2.4.1
@@ -7052,6 +6736,7 @@ packages:
'@parcel/watcher-win32-arm64': 2.4.1
'@parcel/watcher-win32-ia32': 2.4.1
'@parcel/watcher-win32-x64': 2.4.1
+ dev: false
/@parcel/workers@2.8.3(@parcel/core@2.8.3):
resolution: {integrity: sha512-+AxBnKgjqVpUHBcHLWIHcjYgKIvHIpZjN33mG5LG9XXvrZiqdWvouEzqEXlVLq5VzzVbKIQQcmsvRy138YErkg==}
@@ -7082,19 +6767,19 @@ packages:
tslib: 2.6.2
dev: true
- /@peculiar/webcrypto@1.4.6:
- resolution: {integrity: sha512-YBcMfqNSwn3SujUJvAaySy5tlYbYm6tVt9SKoXu8BaTdKGROiJDgPR3TXpZdAKUfklzm3lRapJEAltiMQtBgZg==}
+ /@peculiar/webcrypto@1.4.3:
+ resolution: {integrity: sha512-VtaY4spKTdN5LjJ04im/d/joXuvLbQdgy5Z4DXF4MFZhQ+MTrejbNMkfZBp1Bs3O5+bFqnJgyGdPuZQflvIa5A==}
engines: {node: '>=10.12.0'}
dependencies:
'@peculiar/asn1-schema': 2.3.8
'@peculiar/json-schema': 1.1.12
pvtsutils: 1.3.5
tslib: 2.6.2
- webcrypto-core: 1.7.9
+ webcrypto-core: 1.7.7
dev: true
- /@petamoriken/float16@3.8.6:
- resolution: {integrity: sha512-GNJhABTtcmt9al/nqdJPycwFD46ww2+q2zwZzTjY0dFFwUAFRw9zszvEr9osyJRd9krRGy6hUDopWUg9fX7VVw==}
+ /@petamoriken/float16@3.8.4:
+ resolution: {integrity: sha512-kB+NJ5Br56ZhElKsf0pM7/PQfrDdDVMRz8f0JM6eVOGE+L89z9hwcst9QvWBBnazzuqGTGtPsJNZoQ1JdNiGSQ==}
dev: false
/@pkgjs/parseargs@0.11.0:
@@ -7107,11 +6792,12 @@ packages:
resolution: {integrity: sha512-EaaawMTOeEItCRvfmkI9v6rBkF1svM8wjl/YPRrg2N2Wmp+4qJYkWtJsbew1szfKKDm6fPLy4YAanBhIlf9dWw==}
engines: {node: '>=16'}
hasBin: true
+ requiresBuild: true
dependencies:
playwright: 1.40.1
dev: true
- /@pmmmwh/react-refresh-webpack-plugin@0.5.11(react-refresh@0.14.0)(webpack@5.91.0):
+ /@pmmmwh/react-refresh-webpack-plugin@0.5.11(react-refresh@0.14.0)(webpack@5.89.0):
resolution: {integrity: sha512-7j/6vdTym0+qZ6u4XbSAxrWBGYSdCfTzySkj7WAFgDLmSyWlOrWvpyzxlFh5jtw9dn0oL/jtW+06XfFiisN3JQ==}
engines: {node: '>= 10.13'}
peerDependencies:
@@ -7139,15 +6825,15 @@ packages:
dependencies:
ansi-html-community: 0.0.8
common-path-prefix: 3.0.0
- core-js-pure: 3.36.1
+ core-js-pure: 3.35.0
error-stack-parser: 2.1.4
find-up: 5.0.0
- html-entities: 2.5.2
+ html-entities: 2.4.0
loader-utils: 2.0.4
react-refresh: 0.14.0
schema-utils: 3.3.0
source-map: 0.7.4
- webpack: 5.91.0(esbuild@0.19.12)
+ webpack: 5.89.0
/@pnpm/config.env-replace@1.1.0:
resolution: {integrity: sha512-htyl8TWnKL7K/ESFa1oW2UB5lVDxuF5DpM7tBi6Hu2LNL3mWkIzNLG6N4zoCUP1lCKNxWy/3iu8mS8MvToGd6w==}
@@ -7167,21 +6853,76 @@ packages:
'@pnpm/network.ca-file': 1.0.2
config-chain: 1.1.13
- /@polka/url@1.0.0-next.25:
- resolution: {integrity: sha512-j7P6Rgr3mmtdkeDGTe0E/aYyWEWVtc5yFXtHCRHs28/jptDEWfaVOc5T7cblqy1XKPPfCxJc/8DwQ5YgLOZOVQ==}
+ /@polka/url@1.0.0-next.24:
+ resolution: {integrity: sha512-2LuNTFBIO0m7kKIQvvPHN6UE63VjpmL9rnEEaOOaiSPbZK+zUOYIzBAWcED+3XYzhYsd/0mD57VdxAEqqV52CQ==}
+ requiresBuild: true
dev: true
/@radix-ui/number@1.0.1:
resolution: {integrity: sha512-T5gIdVO2mmPW3NNhjNgEP3cqMXjXL9UbO0BzWcXfvdBs+BohbQxvd/K5hSVKmn9/lbTdsQVKbUcP5WLCwvUbBg==}
dependencies:
- '@babel/runtime': 7.24.4
+ '@babel/runtime': 7.23.7
dev: true
/@radix-ui/primitive@1.0.1:
resolution: {integrity: sha512-yQ8oGX2GVsEYMWGxcovu1uGWPCxV5BFfeeYxqPmuAzUyLT9qmaMXSAhXpb0WrspIeqYzdJpkh2vHModJPgRIaw==}
dependencies:
- '@babel/runtime': 7.24.4
- dev: true
+ '@babel/runtime': 7.23.7
+
+ /@radix-ui/react-accordion@1.1.2(@types/react-dom@18.2.18)(@types/react@18.2.46)(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-fDG7jcoNKVjSK6yfmuAs0EnPDro0WMXIhMtXdTBWqEioVW206ku+4Lw07e+13lUkFkpoEQ2PdeMIAGpdqEAmDg==}
+ peerDependencies:
+ '@types/react': '*'
+ '@types/react-dom': '*'
+ react: ^16.8 || ^17.0 || ^18.0
+ react-dom: ^16.8 || ^17.0 || ^18.0
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
+ dependencies:
+ '@babel/runtime': 7.23.7
+ '@radix-ui/primitive': 1.0.1
+ '@radix-ui/react-collapsible': 1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.46)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.46)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.46)(react@18.2.0)
+ '@radix-ui/react-context': 1.0.1(@types/react@18.2.46)(react@18.2.0)
+ '@radix-ui/react-direction': 1.0.1(@types/react@18.2.46)(react@18.2.0)
+ '@radix-ui/react-id': 1.0.1(@types/react@18.2.46)(react@18.2.0)
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.46)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.46)(react@18.2.0)
+ '@types/react': 18.2.46
+ '@types/react-dom': 18.2.18
+ react: 18.2.0
+ react-dom: 18.2.0(react@18.2.0)
+ dev: false
+
+ /@radix-ui/react-alert-dialog@1.0.5(@types/react-dom@18.2.18)(@types/react@18.2.46)(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-OrVIOcZL0tl6xibeuGt5/+UxoT2N27KCFOPjFyfXMnchxSHZ/OW7cCX2nGlIYJrbHK/fczPcFzAwvNBB6XBNMA==}
+ peerDependencies:
+ '@types/react': '*'
+ '@types/react-dom': '*'
+ react: ^16.8 || ^17.0 || ^18.0
+ react-dom: ^16.8 || ^17.0 || ^18.0
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
+ dependencies:
+ '@babel/runtime': 7.23.7
+ '@radix-ui/primitive': 1.0.1
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.46)(react@18.2.0)
+ '@radix-ui/react-context': 1.0.1(@types/react@18.2.46)(react@18.2.0)
+ '@radix-ui/react-dialog': 1.0.5(@types/react-dom@18.2.18)(@types/react@18.2.46)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.46)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-slot': 1.0.2(@types/react@18.2.46)(react@18.2.0)
+ '@types/react': 18.2.46
+ '@types/react-dom': 18.2.18
+ react: 18.2.0
+ react-dom: 18.2.0(react@18.2.0)
+ dev: false
/@radix-ui/react-arrow@1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.46)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-wSP+pHsB/jQRaL6voubsQ/ZlrGBHHrOjmBnr19hxYgtS0WvAFwZhK2WP/YY5yF9uKECCEEDGxuLxq1NBK51wFA==}
@@ -7196,13 +6937,40 @@ packages:
'@types/react-dom':
optional: true
dependencies:
- '@babel/runtime': 7.24.4
+ '@babel/runtime': 7.23.7
'@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.46)(react-dom@18.2.0)(react@18.2.0)
'@types/react': 18.2.46
'@types/react-dom': 18.2.18
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
- dev: true
+
+ /@radix-ui/react-collapsible@1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.46)(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-UBmVDkmR6IvDsloHVN+3rtx4Mi5TFvylYXpluuv0f37dtaz3H99bp8No0LGXRigVpl3UAT4l9j6bIchh42S/Gg==}
+ peerDependencies:
+ '@types/react': '*'
+ '@types/react-dom': '*'
+ react: ^16.8 || ^17.0 || ^18.0
+ react-dom: ^16.8 || ^17.0 || ^18.0
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
+ dependencies:
+ '@babel/runtime': 7.23.7
+ '@radix-ui/primitive': 1.0.1
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.46)(react@18.2.0)
+ '@radix-ui/react-context': 1.0.1(@types/react@18.2.46)(react@18.2.0)
+ '@radix-ui/react-id': 1.0.1(@types/react@18.2.46)(react@18.2.0)
+ '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.18)(@types/react@18.2.46)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.46)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.46)(react@18.2.0)
+ '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.46)(react@18.2.0)
+ '@types/react': 18.2.46
+ '@types/react-dom': 18.2.18
+ react: 18.2.0
+ react-dom: 18.2.0(react@18.2.0)
+ dev: false
/@radix-ui/react-collection@1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.46)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-3SzW+0PW7yBBoQlT8wNcGtaxaD0XSu0uLUFgrtHY08Acx05TaHaOmVLR73c0j/cqpDy53KBMO7s0dx2wmOIDIA==}
@@ -7217,7 +6985,7 @@ packages:
'@types/react-dom':
optional: true
dependencies:
- '@babel/runtime': 7.24.4
+ '@babel/runtime': 7.23.7
'@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.46)(react@18.2.0)
'@radix-ui/react-context': 1.0.1(@types/react@18.2.46)(react@18.2.0)
'@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.46)(react-dom@18.2.0)(react@18.2.0)
@@ -7226,7 +6994,6 @@ packages:
'@types/react-dom': 18.2.18
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
- dev: true
/@radix-ui/react-compose-refs@1.0.1(@types/react@18.2.46)(react@18.2.0):
resolution: {integrity: sha512-fDSBgd44FKHa1FRMU59qBMPFcl2PZE+2nmqunj+BWFyYYjnhIDWL2ItDs3rrbJDQOtzt5nIebLCQc4QRfz6LJw==}
@@ -7237,10 +7004,35 @@ packages:
'@types/react':
optional: true
dependencies:
- '@babel/runtime': 7.24.4
+ '@babel/runtime': 7.23.7
'@types/react': 18.2.46
react: 18.2.0
- dev: true
+
+ /@radix-ui/react-context-menu@2.1.5(@types/react-dom@18.2.18)(@types/react@18.2.46)(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-R5XaDj06Xul1KGb+WP8qiOh7tKJNz2durpLBXAGZjSVtctcRFCuEvy2gtMwRJGePwQQE5nV77gs4FwRi8T+r2g==}
+ peerDependencies:
+ '@types/react': '*'
+ '@types/react-dom': '*'
+ react: ^16.8 || ^17.0 || ^18.0
+ react-dom: ^16.8 || ^17.0 || ^18.0
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
+ dependencies:
+ '@babel/runtime': 7.23.7
+ '@radix-ui/primitive': 1.0.1
+ '@radix-ui/react-context': 1.0.1(@types/react@18.2.46)(react@18.2.0)
+ '@radix-ui/react-menu': 2.0.6(@types/react-dom@18.2.18)(@types/react@18.2.46)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.46)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.46)(react@18.2.0)
+ '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.46)(react@18.2.0)
+ '@types/react': 18.2.46
+ '@types/react-dom': 18.2.18
+ react: 18.2.0
+ react-dom: 18.2.0(react@18.2.0)
+ dev: false
/@radix-ui/react-context@1.0.1(@types/react@18.2.46)(react@18.2.0):
resolution: {integrity: sha512-ebbrdFoYTcuZ0v4wG5tedGnp9tzcV8awzsxYph7gXUyvnNLuTIcCk1q17JEbnVhXAKG9oX3KtchwiMIAYp9NLg==}
@@ -7251,13 +7043,203 @@ packages:
'@types/react':
optional: true
dependencies:
- '@babel/runtime': 7.24.4
+ '@babel/runtime': 7.23.7
+ '@types/react': 18.2.46
+ react: 18.2.0
+
+ /@radix-ui/react-dialog@1.0.5(@types/react-dom@18.2.18)(@types/react@18.2.46)(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-GjWJX/AUpB703eEBanuBnIWdIXg6NvJFCXcNlSZk4xdszCdhrJgBoUd1cGk67vFO+WdA2pfI/plOpqz/5GUP6Q==}
+ peerDependencies:
+ '@types/react': '*'
+ '@types/react-dom': '*'
+ react: ^16.8 || ^17.0 || ^18.0
+ react-dom: ^16.8 || ^17.0 || ^18.0
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
+ dependencies:
+ '@babel/runtime': 7.23.7
+ '@radix-ui/primitive': 1.0.1
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.46)(react@18.2.0)
+ '@radix-ui/react-context': 1.0.1(@types/react@18.2.46)(react@18.2.0)
+ '@radix-ui/react-dismissable-layer': 1.0.5(@types/react-dom@18.2.18)(@types/react@18.2.46)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-focus-guards': 1.0.1(@types/react@18.2.46)(react@18.2.0)
+ '@radix-ui/react-focus-scope': 1.0.4(@types/react-dom@18.2.18)(@types/react@18.2.46)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-id': 1.0.1(@types/react@18.2.46)(react@18.2.0)
+ '@radix-ui/react-portal': 1.0.4(@types/react-dom@18.2.18)(@types/react@18.2.46)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.18)(@types/react@18.2.46)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.46)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-slot': 1.0.2(@types/react@18.2.46)(react@18.2.0)
+ '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.46)(react@18.2.0)
+ '@types/react': 18.2.46
+ '@types/react-dom': 18.2.18
+ aria-hidden: 1.2.3
+ react: 18.2.0
+ react-dom: 18.2.0(react@18.2.0)
+ react-remove-scroll: 2.5.5(@types/react@18.2.46)(react@18.2.0)
+ dev: false
+
+ /@radix-ui/react-direction@1.0.1(@types/react@18.2.46)(react@18.2.0):
+ resolution: {integrity: sha512-RXcvnXgyvYvBEOhCBuddKecVkoMiI10Jcm5cTI7abJRAHYfFxeu+FBQs/DvdxSYucxR5mna0dNsL6QFlds5TMA==}
+ peerDependencies:
+ '@types/react': '*'
+ react: ^16.8 || ^17.0 || ^18.0
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ dependencies:
+ '@babel/runtime': 7.23.7
+ '@types/react': 18.2.46
+ react: 18.2.0
+
+ /@radix-ui/react-dismissable-layer@1.0.4(@types/react-dom@18.2.18)(@types/react@18.2.46)(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-7UpBa/RKMoHJYjie1gkF1DlK8l1fdU/VKDpoS3rCCo8YBJR294GwcEHyxHw72yvphJ7ld0AXEcSLAzY2F/WyCg==}
+ peerDependencies:
+ '@types/react': '*'
+ '@types/react-dom': '*'
+ react: ^16.8 || ^17.0 || ^18.0
+ react-dom: ^16.8 || ^17.0 || ^18.0
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
+ dependencies:
+ '@babel/runtime': 7.23.7
+ '@radix-ui/primitive': 1.0.1
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.46)(react@18.2.0)
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.46)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.46)(react@18.2.0)
+ '@radix-ui/react-use-escape-keydown': 1.0.3(@types/react@18.2.46)(react@18.2.0)
+ '@types/react': 18.2.46
+ '@types/react-dom': 18.2.18
+ react: 18.2.0
+ react-dom: 18.2.0(react@18.2.0)
+ dev: true
+
+ /@radix-ui/react-dismissable-layer@1.0.5(@types/react-dom@18.2.18)(@types/react@18.2.46)(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-aJeDjQhywg9LBu2t/At58hCvr7pEm0o2Ke1x33B+MhjNmmZ17sy4KImo0KPLgsnc/zN7GPdce8Cnn0SWvwZO7g==}
+ peerDependencies:
+ '@types/react': '*'
+ '@types/react-dom': '*'
+ react: ^16.8 || ^17.0 || ^18.0
+ react-dom: ^16.8 || ^17.0 || ^18.0
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
+ dependencies:
+ '@babel/runtime': 7.23.7
+ '@radix-ui/primitive': 1.0.1
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.46)(react@18.2.0)
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.46)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.46)(react@18.2.0)
+ '@radix-ui/react-use-escape-keydown': 1.0.3(@types/react@18.2.46)(react@18.2.0)
+ '@types/react': 18.2.46
+ '@types/react-dom': 18.2.18
+ react: 18.2.0
+ react-dom: 18.2.0(react@18.2.0)
+ dev: false
+
+ /@radix-ui/react-dropdown-menu@2.0.6(@types/react-dom@18.2.18)(@types/react@18.2.46)(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-i6TuFOoWmLWq+M/eCLGd/bQ2HfAX1RJgvrBQ6AQLmzfvsLdefxbWu8G9zczcPFfcSPehz9GcpF6K9QYreFV8hA==}
+ peerDependencies:
+ '@types/react': '*'
+ '@types/react-dom': '*'
+ react: ^16.8 || ^17.0 || ^18.0
+ react-dom: ^16.8 || ^17.0 || ^18.0
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
+ dependencies:
+ '@babel/runtime': 7.23.7
+ '@radix-ui/primitive': 1.0.1
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.46)(react@18.2.0)
+ '@radix-ui/react-context': 1.0.1(@types/react@18.2.46)(react@18.2.0)
+ '@radix-ui/react-id': 1.0.1(@types/react@18.2.46)(react@18.2.0)
+ '@radix-ui/react-menu': 2.0.6(@types/react-dom@18.2.18)(@types/react@18.2.46)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.46)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.46)(react@18.2.0)
+ '@types/react': 18.2.46
+ '@types/react-dom': 18.2.18
+ react: 18.2.0
+ react-dom: 18.2.0(react@18.2.0)
+ dev: false
+
+ /@radix-ui/react-focus-guards@1.0.1(@types/react@18.2.46)(react@18.2.0):
+ resolution: {integrity: sha512-Rect2dWbQ8waGzhMavsIbmSVCgYxkXLxxR3ZvCX79JOglzdEy4JXMb98lq4hPxUbLr77nP0UOGf4rcMU+s1pUA==}
+ peerDependencies:
+ '@types/react': '*'
+ react: ^16.8 || ^17.0 || ^18.0
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ dependencies:
+ '@babel/runtime': 7.23.7
+ '@types/react': 18.2.46
+ react: 18.2.0
+
+ /@radix-ui/react-focus-scope@1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.46)(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-upXdPfqI4islj2CslyfUBNlaJCPybbqRHAi1KER7Isel9Q2AtSJ0zRBZv8mWQiFXD2nyAJ4BhC3yXgZ6kMBSrQ==}
+ peerDependencies:
+ '@types/react': '*'
+ '@types/react-dom': '*'
+ react: ^16.8 || ^17.0 || ^18.0
+ react-dom: ^16.8 || ^17.0 || ^18.0
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
+ dependencies:
+ '@babel/runtime': 7.23.7
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.46)(react@18.2.0)
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.46)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.46)(react@18.2.0)
+ '@types/react': 18.2.46
+ '@types/react-dom': 18.2.18
+ react: 18.2.0
+ react-dom: 18.2.0(react@18.2.0)
+ dev: true
+
+ /@radix-ui/react-focus-scope@1.0.4(@types/react-dom@18.2.18)(@types/react@18.2.46)(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-sL04Mgvf+FmyvZeYfNu1EPAaaxD+aw7cYeIB9L9Fvq8+urhltTRaEo5ysKOpHuKPclsZcSUMKlN05x4u+CINpA==}
+ peerDependencies:
+ '@types/react': '*'
+ '@types/react-dom': '*'
+ react: ^16.8 || ^17.0 || ^18.0
+ react-dom: ^16.8 || ^17.0 || ^18.0
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
+ dependencies:
+ '@babel/runtime': 7.23.7
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.46)(react@18.2.0)
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.46)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.46)(react@18.2.0)
'@types/react': 18.2.46
+ '@types/react-dom': 18.2.18
+ react: 18.2.0
+ react-dom: 18.2.0(react@18.2.0)
+ dev: false
+
+ /@radix-ui/react-icons@1.3.0(react@18.2.0):
+ resolution: {integrity: sha512-jQxj/0LKgp+j9BiTXz3O3sgs26RNet2iLWmsPyRz2SIcR4q/4SbazXfnYwbAr+vLYKSfc7qxzyGQA1HLlYiuNw==}
+ peerDependencies:
+ react: ^16.x || ^17.x || ^18.x
+ dependencies:
react: 18.2.0
- dev: true
+ dev: false
- /@radix-ui/react-direction@1.0.1(@types/react@18.2.46)(react@18.2.0):
- resolution: {integrity: sha512-RXcvnXgyvYvBEOhCBuddKecVkoMiI10Jcm5cTI7abJRAHYfFxeu+FBQs/DvdxSYucxR5mna0dNsL6QFlds5TMA==}
+ /@radix-ui/react-id@1.0.1(@types/react@18.2.46)(react@18.2.0):
+ resolution: {integrity: sha512-tI7sT/kqYp8p96yGWY1OAnLHrqDgzHefRBKQ2YAkBS5ja7QLcZ9Z/uY7bEjPUatf8RomoXM8/1sMj1IJaE5UzQ==}
peerDependencies:
'@types/react': '*'
react: ^16.8 || ^17.0 || ^18.0
@@ -7265,13 +7247,13 @@ packages:
'@types/react':
optional: true
dependencies:
- '@babel/runtime': 7.24.4
+ '@babel/runtime': 7.23.7
+ '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.46)(react@18.2.0)
'@types/react': 18.2.46
react: 18.2.0
- dev: true
- /@radix-ui/react-dismissable-layer@1.0.4(@types/react-dom@18.2.18)(@types/react@18.2.46)(react-dom@18.2.0)(react@18.2.0):
- resolution: {integrity: sha512-7UpBa/RKMoHJYjie1gkF1DlK8l1fdU/VKDpoS3rCCo8YBJR294GwcEHyxHw72yvphJ7ld0AXEcSLAzY2F/WyCg==}
+ /@radix-ui/react-menu@2.0.6(@types/react-dom@18.2.18)(@types/react@18.2.46)(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-BVkFLS+bUC8HcImkRKPSiVumA1VPOOEC5WBMiT+QAVsPzW1FJzI9KnqgGxVDPBcql5xXrHkD3JOVoXWEXD8SYA==}
peerDependencies:
'@types/react': '*'
'@types/react-dom': '*'
@@ -7283,34 +7265,67 @@ packages:
'@types/react-dom':
optional: true
dependencies:
- '@babel/runtime': 7.24.4
+ '@babel/runtime': 7.23.7
'@radix-ui/primitive': 1.0.1
+ '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.46)(react-dom@18.2.0)(react@18.2.0)
'@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.46)(react@18.2.0)
+ '@radix-ui/react-context': 1.0.1(@types/react@18.2.46)(react@18.2.0)
+ '@radix-ui/react-direction': 1.0.1(@types/react@18.2.46)(react@18.2.0)
+ '@radix-ui/react-dismissable-layer': 1.0.5(@types/react-dom@18.2.18)(@types/react@18.2.46)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-focus-guards': 1.0.1(@types/react@18.2.46)(react@18.2.0)
+ '@radix-ui/react-focus-scope': 1.0.4(@types/react-dom@18.2.18)(@types/react@18.2.46)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-id': 1.0.1(@types/react@18.2.46)(react@18.2.0)
+ '@radix-ui/react-popper': 1.1.3(@types/react-dom@18.2.18)(@types/react@18.2.46)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-portal': 1.0.4(@types/react-dom@18.2.18)(@types/react@18.2.46)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.18)(@types/react@18.2.46)(react-dom@18.2.0)(react@18.2.0)
'@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.46)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-roving-focus': 1.0.4(@types/react-dom@18.2.18)(@types/react@18.2.46)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-slot': 1.0.2(@types/react@18.2.46)(react@18.2.0)
'@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.46)(react@18.2.0)
- '@radix-ui/react-use-escape-keydown': 1.0.3(@types/react@18.2.46)(react@18.2.0)
'@types/react': 18.2.46
'@types/react-dom': 18.2.18
+ aria-hidden: 1.2.3
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
- dev: true
+ react-remove-scroll: 2.5.5(@types/react@18.2.46)(react@18.2.0)
+ dev: false
- /@radix-ui/react-focus-guards@1.0.1(@types/react@18.2.46)(react@18.2.0):
- resolution: {integrity: sha512-Rect2dWbQ8waGzhMavsIbmSVCgYxkXLxxR3ZvCX79JOglzdEy4JXMb98lq4hPxUbLr77nP0UOGf4rcMU+s1pUA==}
+ /@radix-ui/react-navigation-menu@1.1.4(@types/react-dom@18.2.18)(@types/react@18.2.46)(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-Cc+seCS3PmWmjI51ufGG7zp1cAAIRqHVw7C9LOA2TZ+R4hG6rDvHcTqIsEEFLmZO3zNVH72jOOE7kKNy8W+RtA==}
peerDependencies:
'@types/react': '*'
+ '@types/react-dom': '*'
react: ^16.8 || ^17.0 || ^18.0
+ react-dom: ^16.8 || ^17.0 || ^18.0
peerDependenciesMeta:
'@types/react':
optional: true
+ '@types/react-dom':
+ optional: true
dependencies:
- '@babel/runtime': 7.24.4
+ '@babel/runtime': 7.23.7
+ '@radix-ui/primitive': 1.0.1
+ '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.46)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.46)(react@18.2.0)
+ '@radix-ui/react-context': 1.0.1(@types/react@18.2.46)(react@18.2.0)
+ '@radix-ui/react-direction': 1.0.1(@types/react@18.2.46)(react@18.2.0)
+ '@radix-ui/react-dismissable-layer': 1.0.5(@types/react-dom@18.2.18)(@types/react@18.2.46)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-id': 1.0.1(@types/react@18.2.46)(react@18.2.0)
+ '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.18)(@types/react@18.2.46)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.46)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.46)(react@18.2.0)
+ '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.46)(react@18.2.0)
+ '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.46)(react@18.2.0)
+ '@radix-ui/react-use-previous': 1.0.1(@types/react@18.2.46)(react@18.2.0)
+ '@radix-ui/react-visually-hidden': 1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.46)(react-dom@18.2.0)(react@18.2.0)
'@types/react': 18.2.46
+ '@types/react-dom': 18.2.18
react: 18.2.0
- dev: true
+ react-dom: 18.2.0(react@18.2.0)
+ dev: false
- /@radix-ui/react-focus-scope@1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.46)(react-dom@18.2.0)(react@18.2.0):
- resolution: {integrity: sha512-upXdPfqI4islj2CslyfUBNlaJCPybbqRHAi1KER7Isel9Q2AtSJ0zRBZv8mWQiFXD2nyAJ4BhC3yXgZ6kMBSrQ==}
+ /@radix-ui/react-popover@1.0.7(@types/react-dom@18.2.18)(@types/react@18.2.46)(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-shtvVnlsxT6faMnK/a7n0wptwBD23xc1Z5mdrtKLwVEfsEMXodS0r5s0/g5P0hX//EKYZS2sxUjqfzlg52ZSnQ==}
peerDependencies:
'@types/react': '*'
'@types/react-dom': '*'
@@ -7322,33 +7337,60 @@ packages:
'@types/react-dom':
optional: true
dependencies:
- '@babel/runtime': 7.24.4
+ '@babel/runtime': 7.23.7
+ '@radix-ui/primitive': 1.0.1
'@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.46)(react@18.2.0)
+ '@radix-ui/react-context': 1.0.1(@types/react@18.2.46)(react@18.2.0)
+ '@radix-ui/react-dismissable-layer': 1.0.5(@types/react-dom@18.2.18)(@types/react@18.2.46)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-focus-guards': 1.0.1(@types/react@18.2.46)(react@18.2.0)
+ '@radix-ui/react-focus-scope': 1.0.4(@types/react-dom@18.2.18)(@types/react@18.2.46)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-id': 1.0.1(@types/react@18.2.46)(react@18.2.0)
+ '@radix-ui/react-popper': 1.1.3(@types/react-dom@18.2.18)(@types/react@18.2.46)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-portal': 1.0.4(@types/react-dom@18.2.18)(@types/react@18.2.46)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.18)(@types/react@18.2.46)(react-dom@18.2.0)(react@18.2.0)
'@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.46)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.46)(react@18.2.0)
+ '@radix-ui/react-slot': 1.0.2(@types/react@18.2.46)(react@18.2.0)
+ '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.46)(react@18.2.0)
'@types/react': 18.2.46
'@types/react-dom': 18.2.18
+ aria-hidden: 1.2.3
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
- dev: true
+ react-remove-scroll: 2.5.5(@types/react@18.2.46)(react@18.2.0)
+ dev: false
- /@radix-ui/react-id@1.0.1(@types/react@18.2.46)(react@18.2.0):
- resolution: {integrity: sha512-tI7sT/kqYp8p96yGWY1OAnLHrqDgzHefRBKQ2YAkBS5ja7QLcZ9Z/uY7bEjPUatf8RomoXM8/1sMj1IJaE5UzQ==}
+ /@radix-ui/react-popper@1.1.2(@types/react-dom@18.2.18)(@types/react@18.2.46)(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-1CnGGfFi/bbqtJZZ0P/NQY20xdG3E0LALJaLUEoKwPLwl6PPPfbeiCqMVQnhoFRAxjJj4RpBRJzDmUgsex2tSg==}
peerDependencies:
'@types/react': '*'
+ '@types/react-dom': '*'
react: ^16.8 || ^17.0 || ^18.0
+ react-dom: ^16.8 || ^17.0 || ^18.0
peerDependenciesMeta:
'@types/react':
optional: true
+ '@types/react-dom':
+ optional: true
dependencies:
- '@babel/runtime': 7.24.4
+ '@babel/runtime': 7.23.7
+ '@floating-ui/react-dom': 2.0.4(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-arrow': 1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.46)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.46)(react@18.2.0)
+ '@radix-ui/react-context': 1.0.1(@types/react@18.2.46)(react@18.2.0)
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.46)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.46)(react@18.2.0)
'@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.46)(react@18.2.0)
+ '@radix-ui/react-use-rect': 1.0.1(@types/react@18.2.46)(react@18.2.0)
+ '@radix-ui/react-use-size': 1.0.1(@types/react@18.2.46)(react@18.2.0)
+ '@radix-ui/rect': 1.0.1
'@types/react': 18.2.46
+ '@types/react-dom': 18.2.18
react: 18.2.0
+ react-dom: 18.2.0(react@18.2.0)
dev: true
- /@radix-ui/react-popper@1.1.2(@types/react-dom@18.2.18)(@types/react@18.2.46)(react-dom@18.2.0)(react@18.2.0):
- resolution: {integrity: sha512-1CnGGfFi/bbqtJZZ0P/NQY20xdG3E0LALJaLUEoKwPLwl6PPPfbeiCqMVQnhoFRAxjJj4RpBRJzDmUgsex2tSg==}
+ /@radix-ui/react-popper@1.1.3(@types/react-dom@18.2.18)(@types/react@18.2.46)(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-cKpopj/5RHZWjrbF2846jBNacjQVwkP068DfmgrNJXpvVWrOvlAmE9xSiy5OqeE+Gi8D9fP+oDhUnPqNMY8/5w==}
peerDependencies:
'@types/react': '*'
'@types/react-dom': '*'
@@ -7360,8 +7402,8 @@ packages:
'@types/react-dom':
optional: true
dependencies:
- '@babel/runtime': 7.24.4
- '@floating-ui/react-dom': 2.0.8(react-dom@18.2.0)(react@18.2.0)
+ '@babel/runtime': 7.23.7
+ '@floating-ui/react-dom': 2.0.4(react-dom@18.2.0)(react@18.2.0)
'@radix-ui/react-arrow': 1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.46)(react-dom@18.2.0)(react@18.2.0)
'@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.46)(react@18.2.0)
'@radix-ui/react-context': 1.0.1(@types/react@18.2.46)(react@18.2.0)
@@ -7375,7 +7417,7 @@ packages:
'@types/react-dom': 18.2.18
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
- dev: true
+ dev: false
/@radix-ui/react-portal@1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.46)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-xLYZeHrWoPmA5mEKEfZZevoVRK/Q43GfzRXkWV6qawIWWK8t6ifIiLQdd7rmQ4Vk1bmI21XhqF9BN3jWf+phpA==}
@@ -7390,7 +7432,7 @@ packages:
'@types/react-dom':
optional: true
dependencies:
- '@babel/runtime': 7.24.4
+ '@babel/runtime': 7.23.7
'@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.46)(react-dom@18.2.0)(react@18.2.0)
'@types/react': 18.2.46
'@types/react-dom': 18.2.18
@@ -7398,6 +7440,49 @@ packages:
react-dom: 18.2.0(react@18.2.0)
dev: true
+ /@radix-ui/react-portal@1.0.4(@types/react-dom@18.2.18)(@types/react@18.2.46)(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-Qki+C/EuGUVCQTOTD5vzJzJuMUlewbzuKyUy+/iHM2uwGiru9gZeBJtHAPKAEkB5KWGi9mP/CHKcY0wt1aW45Q==}
+ peerDependencies:
+ '@types/react': '*'
+ '@types/react-dom': '*'
+ react: ^16.8 || ^17.0 || ^18.0
+ react-dom: ^16.8 || ^17.0 || ^18.0
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
+ dependencies:
+ '@babel/runtime': 7.23.7
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.46)(react-dom@18.2.0)(react@18.2.0)
+ '@types/react': 18.2.46
+ '@types/react-dom': 18.2.18
+ react: 18.2.0
+ react-dom: 18.2.0(react@18.2.0)
+ dev: false
+
+ /@radix-ui/react-presence@1.0.1(@types/react-dom@18.2.18)(@types/react@18.2.46)(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-UXLW4UAbIY5ZjcvzjfRFo5gxva8QirC9hF7wRE4U5gz+TP0DbRk+//qyuAQ1McDxBt1xNMBTaciFGvEmJvAZCg==}
+ peerDependencies:
+ '@types/react': '*'
+ '@types/react-dom': '*'
+ react: ^16.8 || ^17.0 || ^18.0
+ react-dom: ^16.8 || ^17.0 || ^18.0
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
+ dependencies:
+ '@babel/runtime': 7.23.7
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.46)(react@18.2.0)
+ '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.46)(react@18.2.0)
+ '@types/react': 18.2.46
+ '@types/react-dom': 18.2.18
+ react: 18.2.0
+ react-dom: 18.2.0(react@18.2.0)
+ dev: false
+
/@radix-ui/react-primitive@1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.46)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-yi58uVyoAcK/Nq1inRY56ZSjKypBNKTa/1mcL8qdl6oJeEaDbOldlzrGn7P6Q3Id5d+SYNGc5AJgc4vGhjs5+g==}
peerDependencies:
@@ -7411,13 +7496,12 @@ packages:
'@types/react-dom':
optional: true
dependencies:
- '@babel/runtime': 7.24.4
+ '@babel/runtime': 7.23.7
'@radix-ui/react-slot': 1.0.2(@types/react@18.2.46)(react@18.2.0)
'@types/react': 18.2.46
'@types/react-dom': 18.2.18
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
- dev: true
/@radix-ui/react-roving-focus@1.0.4(@types/react-dom@18.2.18)(@types/react@18.2.46)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-2mUg5Mgcu001VkGy+FfzZyzbmuUWzgWkj3rvv4yu+mLw03+mTzbxZHvfcGyFp2b8EkQeMkpRQ5FiA2Vr2O6TeQ==}
@@ -7432,7 +7516,7 @@ packages:
'@types/react-dom':
optional: true
dependencies:
- '@babel/runtime': 7.24.4
+ '@babel/runtime': 7.23.7
'@radix-ui/primitive': 1.0.1
'@radix-ui/react-collection': 1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.46)(react-dom@18.2.0)(react@18.2.0)
'@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.46)(react@18.2.0)
@@ -7446,7 +7530,6 @@ packages:
'@types/react-dom': 18.2.18
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
- dev: true
/@radix-ui/react-select@1.2.2(@types/react-dom@18.2.18)(@types/react@18.2.46)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-zI7McXr8fNaSrUY9mZe4x/HC0jTLY9fWNhO1oLWYMQGDXuV4UCivIGTxwioSzO0ZCYX9iSLyWmAh/1TOmX3Cnw==}
@@ -7461,7 +7544,7 @@ packages:
'@types/react-dom':
optional: true
dependencies:
- '@babel/runtime': 7.24.4
+ '@babel/runtime': 7.23.7
'@radix-ui/number': 1.0.1
'@radix-ui/primitive': 1.0.1
'@radix-ui/react-collection': 1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.46)(react-dom@18.2.0)(react@18.2.0)
@@ -7483,7 +7566,7 @@ packages:
'@radix-ui/react-visually-hidden': 1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.46)(react-dom@18.2.0)(react@18.2.0)
'@types/react': 18.2.46
'@types/react-dom': 18.2.18
- aria-hidden: 1.2.4
+ aria-hidden: 1.2.3
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
react-remove-scroll: 2.5.5(@types/react@18.2.46)(react@18.2.0)
@@ -7502,7 +7585,7 @@ packages:
'@types/react-dom':
optional: true
dependencies:
- '@babel/runtime': 7.24.4
+ '@babel/runtime': 7.23.7
'@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.46)(react-dom@18.2.0)(react@18.2.0)
'@types/react': 18.2.46
'@types/react-dom': 18.2.18
@@ -7519,11 +7602,10 @@ packages:
'@types/react':
optional: true
dependencies:
- '@babel/runtime': 7.24.4
+ '@babel/runtime': 7.23.7
'@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.46)(react@18.2.0)
'@types/react': 18.2.46
react: 18.2.0
- dev: true
/@radix-ui/react-toggle-group@1.0.4(@types/react-dom@18.2.18)(@types/react@18.2.46)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-Uaj/M/cMyiyT9Bx6fOZO0SAG4Cls0GptBWiBmBxofmDbNVnYYoyRWj/2M/6VCi/7qcXFWnHhRUfdfZFvvkuu8A==}
@@ -7538,7 +7620,7 @@ packages:
'@types/react-dom':
optional: true
dependencies:
- '@babel/runtime': 7.24.4
+ '@babel/runtime': 7.23.7
'@radix-ui/primitive': 1.0.1
'@radix-ui/react-context': 1.0.1(@types/react@18.2.46)(react@18.2.0)
'@radix-ui/react-direction': 1.0.1(@types/react@18.2.46)(react@18.2.0)
@@ -7565,7 +7647,7 @@ packages:
'@types/react-dom':
optional: true
dependencies:
- '@babel/runtime': 7.24.4
+ '@babel/runtime': 7.23.7
'@radix-ui/primitive': 1.0.1
'@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.46)(react-dom@18.2.0)(react@18.2.0)
'@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.46)(react@18.2.0)
@@ -7588,7 +7670,7 @@ packages:
'@types/react-dom':
optional: true
dependencies:
- '@babel/runtime': 7.24.4
+ '@babel/runtime': 7.23.7
'@radix-ui/primitive': 1.0.1
'@radix-ui/react-context': 1.0.1(@types/react@18.2.46)(react@18.2.0)
'@radix-ui/react-direction': 1.0.1(@types/react@18.2.46)(react@18.2.0)
@@ -7611,10 +7693,9 @@ packages:
'@types/react':
optional: true
dependencies:
- '@babel/runtime': 7.24.4
+ '@babel/runtime': 7.23.7
'@types/react': 18.2.46
react: 18.2.0
- dev: true
/@radix-ui/react-use-controllable-state@1.0.1(@types/react@18.2.46)(react@18.2.0):
resolution: {integrity: sha512-Svl5GY5FQeN758fWKrjM6Qb7asvXeiZltlT4U2gVfl8Gx5UAv2sMR0LWo8yhsIZh2oQ0eFdZ59aoOOMV7b47VA==}
@@ -7625,11 +7706,10 @@ packages:
'@types/react':
optional: true
dependencies:
- '@babel/runtime': 7.24.4
+ '@babel/runtime': 7.23.7
'@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.46)(react@18.2.0)
'@types/react': 18.2.46
react: 18.2.0
- dev: true
/@radix-ui/react-use-escape-keydown@1.0.3(@types/react@18.2.46)(react@18.2.0):
resolution: {integrity: sha512-vyL82j40hcFicA+M4Ex7hVkB9vHgSse1ZWomAqV2Je3RleKGO5iM8KMOEtfoSB0PnIelMd2lATjTGMYqN5ylTg==}
@@ -7640,11 +7720,10 @@ packages:
'@types/react':
optional: true
dependencies:
- '@babel/runtime': 7.24.4
+ '@babel/runtime': 7.23.7
'@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.46)(react@18.2.0)
'@types/react': 18.2.46
react: 18.2.0
- dev: true
/@radix-ui/react-use-layout-effect@1.0.1(@types/react@18.2.46)(react@18.2.0):
resolution: {integrity: sha512-v/5RegiJWYdoCvMnITBkNNx6bCj20fiaJnWtRkU18yITptraXjffz5Qbn05uOiQnOvi+dbkznkoaMltz1GnszQ==}
@@ -7655,10 +7734,9 @@ packages:
'@types/react':
optional: true
dependencies:
- '@babel/runtime': 7.24.4
+ '@babel/runtime': 7.23.7
'@types/react': 18.2.46
react: 18.2.0
- dev: true
/@radix-ui/react-use-previous@1.0.1(@types/react@18.2.46)(react@18.2.0):
resolution: {integrity: sha512-cV5La9DPwiQ7S0gf/0qiD6YgNqM5Fk97Kdrlc5yBcrF3jyEZQwm7vYFqMo4IfeHgJXsRaMvLABFtd0OVEmZhDw==}
@@ -7669,10 +7747,9 @@ packages:
'@types/react':
optional: true
dependencies:
- '@babel/runtime': 7.24.4
+ '@babel/runtime': 7.23.7
'@types/react': 18.2.46
react: 18.2.0
- dev: true
/@radix-ui/react-use-rect@1.0.1(@types/react@18.2.46)(react@18.2.0):
resolution: {integrity: sha512-Cq5DLuSiuYVKNU8orzJMbl15TXilTnJKUCltMVQg53BQOF1/C5toAaGrowkgksdBQ9H+SRL23g0HDmg9tvmxXw==}
@@ -7683,11 +7760,10 @@ packages:
'@types/react':
optional: true
dependencies:
- '@babel/runtime': 7.24.4
+ '@babel/runtime': 7.23.7
'@radix-ui/rect': 1.0.1
'@types/react': 18.2.46
react: 18.2.0
- dev: true
/@radix-ui/react-use-size@1.0.1(@types/react@18.2.46)(react@18.2.0):
resolution: {integrity: sha512-ibay+VqrgcaI6veAojjofPATwledXiSmX+C0KrBk/xgpX9rBzPV3OsfwlhQdUOFbh+LKQorLYT+xTXW9V8yd0g==}
@@ -7698,11 +7774,10 @@ packages:
'@types/react':
optional: true
dependencies:
- '@babel/runtime': 7.24.4
+ '@babel/runtime': 7.23.7
'@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.46)(react@18.2.0)
'@types/react': 18.2.46
react: 18.2.0
- dev: true
/@radix-ui/react-visually-hidden@1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.46)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-D4w41yN5YRKtu464TLnByKzMDG/JlMPHtfZgQAu9v6mNakUqGUI9vUrfQKz8NK41VMm/xbZbh76NUTVtIYqOMA==}
@@ -7717,19 +7792,17 @@ packages:
'@types/react-dom':
optional: true
dependencies:
- '@babel/runtime': 7.24.4
+ '@babel/runtime': 7.23.7
'@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.46)(react-dom@18.2.0)(react@18.2.0)
'@types/react': 18.2.46
'@types/react-dom': 18.2.18
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
- dev: true
/@radix-ui/rect@1.0.1:
resolution: {integrity: sha512-fyrgCaedtvMg9NK3en0pnOYJdtfwxUcNolezkNPUsoX57X8oQk+NkqcvzHXD2uKNij6GXmWU9NDru2IWjrO4BQ==}
dependencies:
- '@babel/runtime': 7.24.4
- dev: true
+ '@babel/runtime': 7.23.7
/@react-dnd/asap@4.0.1:
resolution: {integrity: sha512-kLy0PJDDwvwwTXxqTFNAAllPHD73AycE9ypWeln/IguoGBEbvFcPDbCV03G52bEcC5E+YgupBE0VzHGdC8SIXg==}
@@ -7787,113 +7860,99 @@ packages:
picomatch: 2.3.1
dev: true
- /@rollup/rollup-android-arm-eabi@4.14.1:
- resolution: {integrity: sha512-fH8/o8nSUek8ceQnT7K4EQbSiV7jgkHq81m9lWZFIXjJ7lJzpWXbQFpT/Zh6OZYnpFykvzC3fbEvEAFZu03dPA==}
+ /@rollup/rollup-android-arm-eabi@4.9.2:
+ resolution: {integrity: sha512-RKzxFxBHq9ysZ83fn8Iduv3A283K7zPPYuhL/z9CQuyFrjwpErJx0h4aeb/bnJ+q29GRLgJpY66ceQ/Wcsn3wA==}
cpu: [arm]
os: [android]
requiresBuild: true
optional: true
- /@rollup/rollup-android-arm64@4.14.1:
- resolution: {integrity: sha512-Y/9OHLjzkunF+KGEoJr3heiD5X9OLa8sbT1lm0NYeKyaM3oMhhQFvPB0bNZYJwlq93j8Z6wSxh9+cyKQaxS7PQ==}
+ /@rollup/rollup-android-arm64@4.9.2:
+ resolution: {integrity: sha512-yZ+MUbnwf3SHNWQKJyWh88ii2HbuHCFQnAYTeeO1Nb8SyEiWASEi5dQUygt3ClHWtA9My9RQAYkjvrsZ0WK8Xg==}
cpu: [arm64]
os: [android]
requiresBuild: true
optional: true
- /@rollup/rollup-darwin-arm64@4.14.1:
- resolution: {integrity: sha512-+kecg3FY84WadgcuSVm6llrABOdQAEbNdnpi5X3UwWiFVhZIZvKgGrF7kmLguvxHNQy+UuRV66cLVl3S+Rkt+Q==}
+ /@rollup/rollup-darwin-arm64@4.9.2:
+ resolution: {integrity: sha512-vqJ/pAUh95FLc/G/3+xPqlSBgilPnauVf2EXOQCZzhZJCXDXt/5A8mH/OzU6iWhb3CNk5hPJrh8pqJUPldN5zw==}
cpu: [arm64]
os: [darwin]
requiresBuild: true
optional: true
- /@rollup/rollup-darwin-x64@4.14.1:
- resolution: {integrity: sha512-2pYRzEjVqq2TB/UNv47BV/8vQiXkFGVmPFwJb+1E0IFFZbIX8/jo1olxqqMbo6xCXf8kabANhp5bzCij2tFLUA==}
+ /@rollup/rollup-darwin-x64@4.9.2:
+ resolution: {integrity: sha512-otPHsN5LlvedOprd3SdfrRNhOahhVBwJpepVKUN58L0RnC29vOAej1vMEaVU6DadnpjivVsNTM5eNt0CcwTahw==}
cpu: [x64]
os: [darwin]
requiresBuild: true
optional: true
- /@rollup/rollup-linux-arm-gnueabihf@4.14.1:
- resolution: {integrity: sha512-mS6wQ6Do6/wmrF9aTFVpIJ3/IDXhg1EZcQFYHZLHqw6AzMBjTHWnCG35HxSqUNphh0EHqSM6wRTT8HsL1C0x5g==}
+ /@rollup/rollup-linux-arm-gnueabihf@4.9.2:
+ resolution: {integrity: sha512-ewG5yJSp+zYKBYQLbd1CUA7b1lSfIdo9zJShNTyc2ZP1rcPrqyZcNlsHgs7v1zhgfdS+kW0p5frc0aVqhZCiYQ==}
cpu: [arm]
os: [linux]
requiresBuild: true
optional: true
- /@rollup/rollup-linux-arm64-gnu@4.14.1:
- resolution: {integrity: sha512-p9rGKYkHdFMzhckOTFubfxgyIO1vw//7IIjBBRVzyZebWlzRLeNhqxuSaZ7kCEKVkm/kuC9fVRW9HkC/zNRG2w==}
+ /@rollup/rollup-linux-arm64-gnu@4.9.2:
+ resolution: {integrity: sha512-pL6QtV26W52aCWTG1IuFV3FMPL1m4wbsRG+qijIvgFO/VBsiXJjDPE/uiMdHBAO6YcpV4KvpKtd0v3WFbaxBtg==}
cpu: [arm64]
os: [linux]
requiresBuild: true
optional: true
- /@rollup/rollup-linux-arm64-musl@4.14.1:
- resolution: {integrity: sha512-nDY6Yz5xS/Y4M2i9JLQd3Rofh5OR8Bn8qe3Mv/qCVpHFlwtZSBYSPaU4mrGazWkXrdQ98GB//H0BirGR/SKFSw==}
+ /@rollup/rollup-linux-arm64-musl@4.9.2:
+ resolution: {integrity: sha512-On+cc5EpOaTwPSNetHXBuqylDW+765G/oqB9xGmWU3npEhCh8xu0xqHGUA+4xwZLqBbIZNcBlKSIYfkBm6ko7g==}
cpu: [arm64]
os: [linux]
requiresBuild: true
optional: true
- /@rollup/rollup-linux-powerpc64le-gnu@4.14.1:
- resolution: {integrity: sha512-im7HE4VBL+aDswvcmfx88Mp1soqL9OBsdDBU8NqDEYtkri0qV0THhQsvZtZeNNlLeCUQ16PZyv7cqutjDF35qw==}
- cpu: [ppc64le]
- os: [linux]
- requiresBuild: true
- optional: true
-
- /@rollup/rollup-linux-riscv64-gnu@4.14.1:
- resolution: {integrity: sha512-RWdiHuAxWmzPJgaHJdpvUUlDz8sdQz4P2uv367T2JocdDa98iRw2UjIJ4QxSyt077mXZT2X6pKfT2iYtVEvOFw==}
+ /@rollup/rollup-linux-riscv64-gnu@4.9.2:
+ resolution: {integrity: sha512-Wnx/IVMSZ31D/cO9HSsU46FjrPWHqtdF8+0eyZ1zIB5a6hXaZXghUKpRrC4D5DcRTZOjml2oBhXoqfGYyXKipw==}
cpu: [riscv64]
os: [linux]
requiresBuild: true
optional: true
- /@rollup/rollup-linux-s390x-gnu@4.14.1:
- resolution: {integrity: sha512-VMgaGQ5zRX6ZqV/fas65/sUGc9cPmsntq2FiGmayW9KMNfWVG/j0BAqImvU4KTeOOgYSf1F+k6at1UfNONuNjA==}
- cpu: [s390x]
- os: [linux]
- requiresBuild: true
- optional: true
-
- /@rollup/rollup-linux-x64-gnu@4.14.1:
- resolution: {integrity: sha512-9Q7DGjZN+hTdJomaQ3Iub4m6VPu1r94bmK2z3UeWP3dGUecRC54tmVu9vKHTm1bOt3ASoYtEz6JSRLFzrysKlA==}
+ /@rollup/rollup-linux-x64-gnu@4.9.2:
+ resolution: {integrity: sha512-ym5x1cj4mUAMBummxxRkI4pG5Vht1QMsJexwGP8547TZ0sox9fCLDHw9KCH9c1FO5d9GopvkaJsBIOkTKxksdw==}
cpu: [x64]
os: [linux]
requiresBuild: true
optional: true
- /@rollup/rollup-linux-x64-musl@4.14.1:
- resolution: {integrity: sha512-JNEG/Ti55413SsreTguSx0LOVKX902OfXIKVg+TCXO6Gjans/k9O6ww9q3oLGjNDaTLxM+IHFMeXy/0RXL5R/g==}
+ /@rollup/rollup-linux-x64-musl@4.9.2:
+ resolution: {integrity: sha512-m0hYELHGXdYx64D6IDDg/1vOJEaiV8f1G/iO+tejvRCJNSwK4jJ15e38JQy5Q6dGkn1M/9KcyEOwqmlZ2kqaZg==}
cpu: [x64]
os: [linux]
requiresBuild: true
optional: true
- /@rollup/rollup-win32-arm64-msvc@4.14.1:
- resolution: {integrity: sha512-ryS22I9y0mumlLNwDFYZRDFLwWh3aKaC72CWjFcFvxK0U6v/mOkM5Up1bTbCRAhv3kEIwW2ajROegCIQViUCeA==}
+ /@rollup/rollup-win32-arm64-msvc@4.9.2:
+ resolution: {integrity: sha512-x1CWburlbN5JjG+juenuNa4KdedBdXLjZMp56nHFSHTOsb/MI2DYiGzLtRGHNMyydPGffGId+VgjOMrcltOksA==}
cpu: [arm64]
os: [win32]
requiresBuild: true
optional: true
- /@rollup/rollup-win32-ia32-msvc@4.14.1:
- resolution: {integrity: sha512-TdloItiGk+T0mTxKx7Hp279xy30LspMso+GzQvV2maYePMAWdmrzqSNZhUpPj3CGw12aGj57I026PgLCTu8CGg==}
+ /@rollup/rollup-win32-ia32-msvc@4.9.2:
+ resolution: {integrity: sha512-VVzCB5yXR1QlfsH1Xw1zdzQ4Pxuzv+CPr5qpElpKhVxlxD3CRdfubAG9mJROl6/dmj5gVYDDWk8sC+j9BI9/kQ==}
cpu: [ia32]
os: [win32]
requiresBuild: true
optional: true
- /@rollup/rollup-win32-x64-msvc@4.14.1:
- resolution: {integrity: sha512-wQGI+LY/Py20zdUPq+XCem7JcPOyzIJBm3dli+56DJsQOHbnXZFEwgmnC6el1TPAfC8lBT3m+z69RmLykNUbew==}
+ /@rollup/rollup-win32-x64-msvc@4.9.2:
+ resolution: {integrity: sha512-SYRedJi+mweatroB+6TTnJYLts0L0bosg531xnQWtklOI6dezEagx4Q0qDyvRdK+qgdA3YZpjjGuPFtxBmddBA==}
cpu: [x64]
os: [win32]
requiresBuild: true
optional: true
- /@sideway/address@4.1.5:
- resolution: {integrity: sha512-IqO/DUQHUkPeixNQ8n0JA6102hT9CmaljNTPmQ1u8MEhBo/R4Q8eKLN/vGZxuebwOroDB4cbpjheD4+/sKFK4Q==}
+ /@sideway/address@4.1.4:
+ resolution: {integrity: sha512-7vwq+rOHVWjyXxVlR76Agnvhy8I9rpzjosTESvmhNeXOXdZZB15Fl+TI9x1SiHZH5Jv2wTGduSxFDIaq0m3DUw==}
dependencies:
'@hapi/hoek': 9.3.0
@@ -7903,16 +7962,6 @@ packages:
/@sideway/pinpoint@2.0.0:
resolution: {integrity: sha512-RNiOoTPkptFtSVzQevY/yWtZwf/RxyVnPy/OcA9HBM3MlGDnBEYL5B41H0MTn0Uec8Hi+2qUtTfG2WWZBmMejQ==}
- /@sigmacomputing/babel-plugin-lodash@3.3.5:
- resolution: {integrity: sha512-VFhaHjlNzWyBtBm3YdqOwP8GbQHK7sWzXKpSUBTLjl2Zz6/9PwCK4qXZXI5CHpDjmvbouHUDbjrZP2KU5h6VQg==}
- dependencies:
- '@babel/helper-module-imports': 7.24.3
- '@babel/types': 7.24.0
- glob: 7.2.3
- lodash: 4.17.21
- require-package-name: 2.0.1
- dev: false
-
/@sinclair/typebox@0.27.8:
resolution: {integrity: sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==}
@@ -7924,8 +7973,8 @@ packages:
resolution: {integrity: sha512-TV7t8GKYaJWsn00tFDqBw8+Uqmr8A0fRU1tvTQhyZzGv0sJCGRQL3JGMI3ucuKo3XIZdUP+Lx7/gh2t3lewy7g==}
engines: {node: '>=14.16'}
- /@sindresorhus/merge-streams@2.3.0:
- resolution: {integrity: sha512-LtoMMhxAlorcGhmFYI+LhPgbPZCkgP6ra1YL604EeF6U98pLlQ3iWIGMdWSC+vWmPBWBNgmDBAhnAobLROJmwg==}
+ /@sindresorhus/merge-streams@1.0.0:
+ resolution: {integrity: sha512-rUV5WyJrJLoloD4NDN1V1+LDMDWOa4OTsT4yYJwQNpTU6FWxkxHpL7eu4w+DmiH8x/EAM1otkPE1+LaspIbplw==}
engines: {node: '>=18'}
dev: true
@@ -7958,8 +8007,8 @@ packages:
escape-string-regexp: 5.0.0
dev: false
- /@sinonjs/commons@3.0.1:
- resolution: {integrity: sha512-K3mCHKQ9sVh8o1C9cxkwxaOmXoAMlDxC1mYyHrjqOWEcBjYr76t96zL2zlj5dUGZ3HSw240X1qgH3Mjf1yJWpQ==}
+ /@sinonjs/commons@3.0.0:
+ resolution: {integrity: sha512-jXBtWAF4vmdNmZgD5FoKsVLv3rPgDnLgPbU84LIJ3otV44vJlDRokVng5v8NFJdCf/da9legHcKaRuZs4L7faA==}
dependencies:
type-detect: 4.0.8
dev: true
@@ -7967,7 +8016,7 @@ packages:
/@sinonjs/fake-timers@10.3.0:
resolution: {integrity: sha512-V4BG07kuYSUkTCSBHG8G8TNhM+F19jXFWnQtzj+we8DrkpSBCee9Z3Ms8yiGer/dlmhe35/Xdgyo3/0rQKg7YA==}
dependencies:
- '@sinonjs/commons': 3.0.1
+ '@sinonjs/commons': 3.0.0
dev: true
/@slack/types@2.11.0:
@@ -7980,8 +8029,8 @@ packages:
engines: {node: '>= 18', npm: '>= 8.6.0'}
dependencies:
'@slack/types': 2.11.0
- '@types/node': 18.19.31
- axios: 1.6.8
+ '@types/node': 18.19.17
+ axios: 1.6.4
transitivePeerDependencies:
- debug
dev: false
@@ -7994,9 +8043,9 @@ packages:
dependencies:
'@storybook/core-events': 7.6.7
'@storybook/global': 5.0.0
- '@types/uuid': 9.0.8
+ '@types/uuid': 9.0.7
dequal: 2.0.3
- polished: 4.3.1
+ polished: 4.2.2
uuid: 9.0.1
dev: true
@@ -8031,7 +8080,7 @@ packages:
'@types/istanbul-lib-coverage': 2.0.6
convert-source-map: 2.0.0
espree: 9.6.1
- istanbul-lib-instrument: 6.0.2
+ istanbul-lib-instrument: 6.0.1
source-map: 0.7.4
test-exclude: 6.0.0
vite-plugin-istanbul: 3.0.4
@@ -8114,7 +8163,7 @@ packages:
'@storybook/global': 5.0.0
'@storybook/types': 7.6.7
jest-mock: 27.5.1
- polished: 4.3.1
+ polished: 4.2.2
ts-dedent: 2.2.0
dev: true
@@ -8126,7 +8175,7 @@ packages:
react:
optional: true
dependencies:
- '@storybook/csf': 0.1.3
+ '@storybook/csf': 0.1.2
'@storybook/global': 5.0.0
react: 18.2.0
ts-dedent: 2.2.0
@@ -8136,7 +8185,7 @@ packages:
resolution: {integrity: sha512-t1RnnNO4Xzgnsxu63FlZwsCTF0+9jKxr44NiJAUOxW9ppbCvs/JfSDOOvcDRtPWyjgnyzexNUUctMfxvLrU01A==}
dependencies:
'@storybook/global': 5.0.0
- tiny-invariant: 1.3.3
+ tiny-invariant: 1.3.1
dev: true
/@storybook/addon-outline@7.6.7:
@@ -8166,20 +8215,20 @@ packages:
'@storybook/client-logger': 7.6.7
'@storybook/components': 7.6.7(@types/react-dom@18.2.18)(@types/react@18.2.46)(react-dom@18.2.0)(react@18.2.0)
'@storybook/core-events': 7.6.7
- '@storybook/csf': 0.1.3
+ '@storybook/csf': 0.1.2
'@storybook/docs-tools': 7.6.7
'@storybook/global': 5.0.0
'@storybook/manager-api': 7.6.7(react-dom@18.2.0)(react@18.2.0)
'@storybook/preview-api': 7.6.7
'@storybook/theming': 7.6.7(react-dom@18.2.0)(react@18.2.0)
'@storybook/types': 7.6.7
- '@types/lodash': 4.17.0
+ '@types/lodash': 4.14.202
color-convert: 2.0.1
dequal: 2.0.3
lodash: 4.17.21
- markdown-to-jsx: 7.4.6(react@18.2.0)
+ markdown-to-jsx: 7.4.0(react@18.2.0)
memoizerific: 1.11.3
- polished: 4.3.1
+ polished: 4.2.2
react: 18.2.0
react-colorful: 5.6.1(react-dom@18.2.0)(react@18.2.0)
react-dom: 18.2.0(react@18.2.0)
@@ -8208,7 +8257,7 @@ packages:
ejs: 3.1.9
esbuild: 0.18.20
esbuild-plugin-alias: 0.2.1
- express: 4.19.2
+ express: 4.18.3
find-cache-dir: 3.3.2
fs-extra: 11.2.0
process: 0.11.10
@@ -8244,38 +8293,27 @@ packages:
'@types/find-cache-dir': 3.2.1
browser-assert: 1.2.1
es-module-lexer: 0.9.3
- express: 4.19.2
+ express: 4.18.3
find-cache-dir: 3.3.2
fs-extra: 11.2.0
- magic-string: 0.30.9
+ magic-string: 0.30.5
rollup: 3.29.4
typescript: 5.3.3
- vite: 5.0.10(@types/node@18.19.31)
+ vite: 5.0.10(@types/node@18.19.17)
transitivePeerDependencies:
- encoding
- supports-color
dev: true
- /@storybook/channels@7.6.17:
- resolution: {integrity: sha512-GFG40pzaSxk1hUr/J/TMqW5AFDDPUSu+HkeE/oqSWJbOodBOLJzHN6CReJS6y1DjYSZLNFt1jftPWZZInG/XUA==}
- dependencies:
- '@storybook/client-logger': 7.6.17
- '@storybook/core-events': 7.6.17
- '@storybook/global': 5.0.0
- qs: 6.12.0
- telejson: 7.2.0
- tiny-invariant: 1.3.3
- dev: true
-
/@storybook/channels@7.6.7:
resolution: {integrity: sha512-u1hURhfQHHtZyRIDUENRCp+CRRm7IQfcjQaoWI06XCevQPuhVEtFUfXHjG+J74aA/JuuTLFUtqwNm1zGqbXTAQ==}
dependencies:
'@storybook/client-logger': 7.6.7
'@storybook/core-events': 7.6.7
'@storybook/global': 5.0.0
- qs: 6.12.0
+ qs: 6.11.2
telejson: 7.2.0
- tiny-invariant: 1.3.3
+ tiny-invariant: 1.3.1
dev: true
/@storybook/channels@8.0.0-alpha.14:
@@ -8284,18 +8322,18 @@ packages:
'@storybook/client-logger': 8.0.0-alpha.14
'@storybook/core-events': 8.0.0-alpha.14
'@storybook/global': 5.0.0
- qs: 6.12.0
+ qs: 6.11.2
telejson: 7.2.0
- tiny-invariant: 1.3.3
+ tiny-invariant: 1.3.1
dev: true
/@storybook/cli@7.6.7:
resolution: {integrity: sha512-DwDWzkifBH17ry+n+d+u52Sv69dZQ+04ETJdDDzghcyAcKnFzrRNukj4tJ21cm+ZAU/r0fKR9d4Qpbogca9fAg==}
hasBin: true
dependencies:
- '@babel/core': 7.24.4
- '@babel/preset-env': 7.24.4(@babel/core@7.24.4)
- '@babel/types': 7.24.0
+ '@babel/core': 7.23.7
+ '@babel/preset-env': 7.23.7(@babel/core@7.23.7)
+ '@babel/types': 7.23.6
'@ndelangen/get-tarball': 3.0.9
'@storybook/codemod': 7.6.7
'@storybook/core-common': 7.6.7
@@ -8305,30 +8343,30 @@ packages:
'@storybook/node-logger': 7.6.7
'@storybook/telemetry': 7.6.7
'@storybook/types': 7.6.7
- '@types/semver': 7.5.8
+ '@types/semver': 7.5.6
'@yarnpkg/fslib': 2.10.3
'@yarnpkg/libzip': 2.3.0
chalk: 4.1.2
commander: 6.2.1
cross-spawn: 7.0.3
detect-indent: 6.1.0
- envinfo: 7.12.0
+ envinfo: 7.11.0
execa: 5.1.1
- express: 4.19.2
+ express: 4.18.3
find-up: 5.0.0
fs-extra: 11.2.0
get-npm-tarball-url: 2.1.0
get-port: 5.1.1
- giget: 1.2.3
+ giget: 1.2.1
globby: 11.1.0
- jscodeshift: 0.15.2(@babel/preset-env@7.24.4)
+ jscodeshift: 0.15.1(@babel/preset-env@7.23.7)
leven: 3.1.0
ora: 5.4.1
prettier: 2.8.8
prompts: 2.4.2
puppeteer-core: 2.1.1
read-pkg-up: 7.0.1
- semver: 7.6.0
+ semver: 7.5.4
simple-update-notifier: 2.0.0
strip-json-comments: 3.1.1
tempy: 1.0.1
@@ -8341,12 +8379,6 @@ packages:
- utf-8-validate
dev: true
- /@storybook/client-logger@7.6.17:
- resolution: {integrity: sha512-6WBYqixAXNAXlSaBWwgljWpAu10tPRBJrcFvx2gPUne58EeMM20Gi/iHYBz2kMCY+JLAgeIH7ZxInqwO8vDwiQ==}
- dependencies:
- '@storybook/global': 5.0.0
- dev: true
-
/@storybook/client-logger@7.6.7:
resolution: {integrity: sha512-A16zpWgsa0gSdXMR9P3bWVdC9u/1B1oG4H7Z1+JhNzgnL3CdyOYO0qFSiAtNBso4nOjIAJVb6/AoBzdRhmSVQg==}
dependencies:
@@ -8362,20 +8394,20 @@ packages:
/@storybook/codemod@7.6.7:
resolution: {integrity: sha512-an2pD5OHqO7CE8Wb7JxjrDnpQgeoxB22MyOs8PPJ9Rvclhpjg+Ku9RogoObYm//zR4g406l7Ec8mTltUkVCEOA==}
dependencies:
- '@babel/core': 7.24.4
- '@babel/preset-env': 7.24.4(@babel/core@7.24.4)
- '@babel/types': 7.24.0
- '@storybook/csf': 0.1.3
+ '@babel/core': 7.23.7
+ '@babel/preset-env': 7.23.7(@babel/core@7.23.7)
+ '@babel/types': 7.23.6
+ '@storybook/csf': 0.1.2
'@storybook/csf-tools': 7.6.7
'@storybook/node-logger': 7.6.7
'@storybook/types': 7.6.7
'@types/cross-spawn': 6.0.6
cross-spawn: 7.0.3
globby: 11.1.0
- jscodeshift: 0.15.2(@babel/preset-env@7.24.4)
+ jscodeshift: 0.15.1(@babel/preset-env@7.23.7)
lodash: 4.17.21
prettier: 2.8.8
- recast: 0.23.6
+ recast: 0.23.4
transitivePeerDependencies:
- supports-color
dev: true
@@ -8389,7 +8421,7 @@ packages:
'@radix-ui/react-select': 1.2.2(@types/react-dom@18.2.18)(@types/react@18.2.46)(react-dom@18.2.0)(react@18.2.0)
'@radix-ui/react-toolbar': 1.0.4(@types/react-dom@18.2.18)(@types/react@18.2.46)(react-dom@18.2.0)(react@18.2.0)
'@storybook/client-logger': 7.6.7
- '@storybook/csf': 0.1.3
+ '@storybook/csf': 0.1.2
'@storybook/global': 5.0.0
'@storybook/theming': 7.6.7(react-dom@18.2.0)(react@18.2.0)
'@storybook/types': 7.6.7
@@ -8410,37 +8442,6 @@ packages:
'@storybook/preview-api': 7.6.7
dev: true
- /@storybook/core-common@7.6.17:
- resolution: {integrity: sha512-me2TP3Q9/qzqCLoDHUSsUF+VS1MHxfHbTVF6vAz0D/COTxzsxLpu9TxTbzJoBCxse6XRb6wWI1RgF1mIcjic7g==}
- dependencies:
- '@storybook/core-events': 7.6.17
- '@storybook/node-logger': 7.6.17
- '@storybook/types': 7.6.17
- '@types/find-cache-dir': 3.2.1
- '@types/node': 18.19.31
- '@types/node-fetch': 2.6.11
- '@types/pretty-hrtime': 1.0.3
- chalk: 4.1.2
- esbuild: 0.18.20
- esbuild-register: 3.5.0(esbuild@0.18.20)
- file-system-cache: 2.3.0
- find-cache-dir: 3.3.2
- find-up: 5.0.0
- fs-extra: 11.2.0
- glob: 10.3.12
- handlebars: 4.7.8
- lazy-universal-dotenv: 4.0.0
- node-fetch: 2.7.0
- picomatch: 2.3.1
- pkg-dir: 5.0.0
- pretty-hrtime: 1.0.3
- resolve-from: 5.0.0
- ts-dedent: 2.2.0
- transitivePeerDependencies:
- - encoding
- - supports-color
- dev: true
-
/@storybook/core-common@7.6.7:
resolution: {integrity: sha512-F1fJnauVSPQtAlpicbN/O4XW38Ai8kf/IoU0Hgm9gEwurIk6MF5hiVLsaTI/5GUbrepMl9d9J+iIL4lHAT8IyA==}
dependencies:
@@ -8448,8 +8449,8 @@ packages:
'@storybook/node-logger': 7.6.7
'@storybook/types': 7.6.7
'@types/find-cache-dir': 3.2.1
- '@types/node': 18.19.31
- '@types/node-fetch': 2.6.11
+ '@types/node': 18.19.17
+ '@types/node-fetch': 2.6.10
'@types/pretty-hrtime': 1.0.3
chalk: 4.1.2
esbuild: 0.18.20
@@ -8458,7 +8459,7 @@ packages:
find-cache-dir: 3.3.2
find-up: 5.0.0
fs-extra: 11.2.0
- glob: 10.3.12
+ glob: 10.3.10
handlebars: 4.7.8
lazy-universal-dotenv: 4.0.0
node-fetch: 2.7.0
@@ -8472,12 +8473,6 @@ packages:
- supports-color
dev: true
- /@storybook/core-events@7.6.17:
- resolution: {integrity: sha512-AriWMCm/k1cxlv10f+jZ1wavThTRpLaN3kY019kHWbYT9XgaSuLU67G7GPr3cGnJ6HuA6uhbzu8qtqVCd6OfXA==}
- dependencies:
- ts-dedent: 2.2.0
- dev: true
-
/@storybook/core-events@7.6.7:
resolution: {integrity: sha512-KZ5d03c47pnr5/kY26pJtWq7WpmCPXLbgyjJZDSc+TTY153BdZksvlBXRHtqM1yj2UM6QsSyIuiJaADJNAbP2w==}
dependencies:
@@ -8499,7 +8494,7 @@ packages:
'@storybook/channels': 7.6.7
'@storybook/core-common': 7.6.7
'@storybook/core-events': 7.6.7
- '@storybook/csf': 0.1.3
+ '@storybook/csf': 0.1.2
'@storybook/csf-tools': 7.6.7
'@storybook/docs-mdx': 0.1.0
'@storybook/global': 5.0.0
@@ -8509,30 +8504,30 @@ packages:
'@storybook/telemetry': 7.6.7
'@storybook/types': 7.6.7
'@types/detect-port': 1.3.5
- '@types/node': 18.19.31
+ '@types/node': 18.19.17
'@types/pretty-hrtime': 1.0.3
- '@types/semver': 7.5.8
+ '@types/semver': 7.5.6
better-opn: 3.0.2
chalk: 4.1.2
- cli-table3: 0.6.4
+ cli-table3: 0.6.3
compression: 1.7.4
detect-port: 1.5.1
- express: 4.19.2
+ express: 4.18.3
fs-extra: 11.2.0
globby: 11.1.0
- ip: 2.0.1
+ ip: 2.0.0
lodash: 4.17.21
open: 8.4.2
pretty-hrtime: 1.0.3
prompts: 2.4.2
read-pkg-up: 7.0.1
- semver: 7.6.0
+ semver: 7.5.4
telejson: 7.2.0
- tiny-invariant: 1.3.3
+ tiny-invariant: 1.3.1
ts-dedent: 2.2.0
util: 0.12.5
util-deprecate: 1.0.2
- watchpack: 2.4.1
+ watchpack: 2.4.0
ws: 8.16.0
transitivePeerDependencies:
- bufferutil
@@ -8545,23 +8540,7 @@ packages:
resolution: {integrity: sha512-YL7e6H4iVcsDI0UpgpdQX2IiGDrlbgaQMHQgDLWXmZyKxBcy0ONROAX5zoT1ml44EHkL60TMaG4f7SinviJCog==}
dependencies:
'@storybook/csf-tools': 7.6.7
- unplugin: 1.10.1
- transitivePeerDependencies:
- - supports-color
- dev: true
-
- /@storybook/csf-tools@7.6.17:
- resolution: {integrity: sha512-dAQtam0EBPeTJYcQPLxXgz4L9JFqD+HWbLFG9CmNIhMMjticrB0mpk1EFIS6vPXk/VsVWpBgMLD7dZlD6YMKcQ==}
- dependencies:
- '@babel/generator': 7.24.4
- '@babel/parser': 7.24.4
- '@babel/traverse': 7.24.1
- '@babel/types': 7.24.0
- '@storybook/csf': 0.1.3
- '@storybook/types': 7.6.17
- fs-extra: 11.2.0
- recast: 0.23.6
- ts-dedent: 2.2.0
+ unplugin: 1.6.0
transitivePeerDependencies:
- supports-color
dev: true
@@ -8569,14 +8548,14 @@ packages:
/@storybook/csf-tools@7.6.7:
resolution: {integrity: sha512-hyRbUGa2Uxvz3U09BjcOfMNf/5IYgRum1L6XszqK2O8tK9DGte1r6hArCIAcqiEmFMC40d0kalPzqu6WMNn7sg==}
dependencies:
- '@babel/generator': 7.24.4
- '@babel/parser': 7.24.4
- '@babel/traverse': 7.24.1
- '@babel/types': 7.24.0
- '@storybook/csf': 0.1.3
+ '@babel/generator': 7.23.6
+ '@babel/parser': 7.23.6
+ '@babel/traverse': 7.23.7
+ '@babel/types': 7.23.6
+ '@storybook/csf': 0.1.2
'@storybook/types': 7.6.7
fs-extra: 11.2.0
- recast: 0.23.6
+ recast: 0.23.4
ts-dedent: 2.2.0
transitivePeerDependencies:
- supports-color
@@ -8588,8 +8567,8 @@ packages:
lodash: 4.17.21
dev: true
- /@storybook/csf@0.1.3:
- resolution: {integrity: sha512-IPZvXXo4b3G+gpmgBSBqVM81jbp2ePOKsvhgJdhyZJtkYQCII7rg9KKLQhvBQM5sLaF1eU6r0iuwmyynC9d9SA==}
+ /@storybook/csf@0.1.2:
+ resolution: {integrity: sha512-ePrvE/pS1vsKR9Xr+o+YwdqNgHUyXvg+1Xjx0h9LrVx7Zq4zNe06pd63F5EvzTbCbJsHj7GHr9tkiaqm7U8WRA==}
dependencies:
type-fest: 2.19.0
dev: true
@@ -8625,7 +8604,7 @@ packages:
'@storybook/core-events': 8.0.0-alpha.14
'@storybook/global': 5.0.0
'@storybook/preview-api': 8.0.0-alpha.14
- '@vitest/utils': 0.34.7
+ '@vitest/utils': 0.34.6
util: 0.12.5
dev: true
@@ -8635,7 +8614,7 @@ packages:
'@storybook/channels': 7.6.7
'@storybook/client-logger': 7.6.7
'@storybook/core-events': 7.6.7
- '@storybook/csf': 0.1.3
+ '@storybook/csf': 0.1.2
'@storybook/global': 5.0.0
'@storybook/router': 7.6.7
'@storybook/theming': 7.6.7(react-dom@18.2.0)(react@18.2.0)
@@ -8643,7 +8622,7 @@ packages:
dequal: 2.0.3
lodash: 4.17.21
memoizerific: 1.11.3
- store2: 2.14.3
+ store2: 2.14.2
telejson: 7.2.0
ts-dedent: 2.2.0
transitivePeerDependencies:
@@ -8659,10 +8638,6 @@ packages:
resolution: {integrity: sha512-TXJJd5RAKakWx4BtpwvSNdgTDkKM6RkXU8GK34S/LhidQ5Pjz3wcnqb0TxEkfhK/ztbP8nKHqXFwLfa2CYkvQw==}
dev: true
- /@storybook/node-logger@7.6.17:
- resolution: {integrity: sha512-w59MQuXhhUNrUVmVkXhMwIg2nvFWjdDczLTwYLorhfsE36CWeUOY5QCZWQy0Qf/h+jz8Uo7Evy64qn18v9C4wA==}
- dev: true
-
/@storybook/node-logger@7.6.7:
resolution: {integrity: sha512-XLih8MxylkpZG9+8tgp8sPGc2tldlWF+DpuAkUv6J3Mc81mPyc3cQKQWZ7Hb+m1LpRGqKV4wyOQj1rC+leVMoQ==}
dev: true
@@ -8671,39 +8646,20 @@ packages:
resolution: {integrity: sha512-mrpRmcwFd9FcvtHPXA9x6vOrHLVCKScZX/Xx2QPWgAvB3W6uzP8G+8QNb1u834iToxrWeuszUMB9UXZK4Qj5yg==}
dev: true
- /@storybook/preview-api@7.6.17:
- resolution: {integrity: sha512-wLfDdI9RWo1f2zzFe54yRhg+2YWyxLZvqdZnSQ45mTs4/7xXV5Wfbv3QNTtcdw8tT3U5KRTrN1mTfTCiRJc0Kw==}
- dependencies:
- '@storybook/channels': 7.6.17
- '@storybook/client-logger': 7.6.17
- '@storybook/core-events': 7.6.17
- '@storybook/csf': 0.1.3
- '@storybook/global': 5.0.0
- '@storybook/types': 7.6.17
- '@types/qs': 6.9.14
- dequal: 2.0.3
- lodash: 4.17.21
- memoizerific: 1.11.3
- qs: 6.12.0
- synchronous-promise: 2.0.17
- ts-dedent: 2.2.0
- util-deprecate: 1.0.2
- dev: true
-
/@storybook/preview-api@7.6.7:
resolution: {integrity: sha512-ja85ItrT6q2TeBQ6n0CNoRi1R6L8yF2kkis9hVeTQHpwLdZyHUTRqqR5WmhtLqqQXcofyasBPOeJV06wuOhgRQ==}
dependencies:
'@storybook/channels': 7.6.7
'@storybook/client-logger': 7.6.7
'@storybook/core-events': 7.6.7
- '@storybook/csf': 0.1.3
+ '@storybook/csf': 0.1.2
'@storybook/global': 5.0.0
'@storybook/types': 7.6.7
- '@types/qs': 6.9.14
+ '@types/qs': 6.9.11
dequal: 2.0.3
lodash: 4.17.21
memoizerific: 1.11.3
- qs: 6.12.0
+ qs: 6.11.2
synchronous-promise: 2.0.17
ts-dedent: 2.2.0
util-deprecate: 1.0.2
@@ -8715,15 +8671,15 @@ packages:
'@storybook/channels': 8.0.0-alpha.14
'@storybook/client-logger': 8.0.0-alpha.14
'@storybook/core-events': 8.0.0-alpha.14
- '@storybook/csf': 0.1.3
+ '@storybook/csf': 0.1.2
'@storybook/global': 5.0.0
'@storybook/types': 8.0.0-alpha.14
- '@types/qs': 6.9.14
+ '@types/qs': 6.9.11
dequal: 2.0.3
lodash: 4.17.21
memoizerific: 1.11.3
- qs: 6.12.0
- tiny-invariant: 1.3.3
+ qs: 6.11.2
+ tiny-invariant: 1.3.1
ts-dedent: 2.2.0
util-deprecate: 1.0.2
dev: true
@@ -8755,11 +8711,11 @@ packages:
'@storybook/builder-vite': 7.6.7(typescript@5.3.3)(vite@5.0.10)
'@storybook/react': 7.6.7(react-dom@18.2.0)(react@18.2.0)(typescript@5.3.3)
'@vitejs/plugin-react': 3.1.0(vite@5.0.10)
- magic-string: 0.30.9
+ magic-string: 0.30.5
react: 18.2.0
- react-docgen: 7.0.3
+ react-docgen: 7.0.1
react-dom: 18.2.0(react@18.2.0)
- vite: 5.0.10(@types/node@18.19.31)
+ vite: 5.0.10(@types/node@18.19.17)
transitivePeerDependencies:
- '@preact/preset-vite'
- encoding
@@ -8789,7 +8745,7 @@ packages:
'@storybook/types': 7.6.7
'@types/escodegen': 0.0.6
'@types/estree': 0.0.51
- '@types/node': 18.19.31
+ '@types/node': 18.19.17
acorn: 7.4.1
acorn-jsx: 5.3.2(acorn@7.4.1)
acorn-walk: 7.2.0
@@ -8814,7 +8770,7 @@ packages:
dependencies:
'@storybook/client-logger': 7.6.7
memoizerific: 1.11.3
- qs: 6.12.0
+ qs: 6.11.2
dev: true
/@storybook/telemetry@7.6.7:
@@ -8833,27 +8789,27 @@ packages:
- supports-color
dev: true
- /@storybook/test-runner@0.16.0(@types/node@18.19.31):
+ /@storybook/test-runner@0.16.0(@types/node@18.19.17):
resolution: {integrity: sha512-LDmNbKFoEDW/VS9o6KR8e1r5MnbCc5ZojUfi5yqLdq80gFD7BvilgKgV0lUh/xWHryzoy+Ids5LYgrPJZmU2dQ==}
engines: {node: ^16.10.0 || ^18.0.0 || >=20.0.0}
hasBin: true
dependencies:
- '@babel/core': 7.24.4
- '@babel/generator': 7.24.4
- '@babel/template': 7.24.0
- '@babel/types': 7.24.0
+ '@babel/core': 7.23.7
+ '@babel/generator': 7.23.6
+ '@babel/template': 7.22.15
+ '@babel/types': 7.23.6
'@jest/types': 29.6.3
- '@storybook/core-common': 7.6.17
- '@storybook/csf': 0.1.3
- '@storybook/csf-tools': 7.6.17
- '@storybook/preview-api': 7.6.17
- '@swc/core': 1.3.102
- '@swc/jest': 0.2.36(@swc/core@1.3.102)
+ '@storybook/core-common': 7.6.7
+ '@storybook/csf': 0.1.2
+ '@storybook/csf-tools': 7.6.7
+ '@storybook/preview-api': 7.6.7
+ '@swc/core': 1.4.2
+ '@swc/jest': 0.2.29(@swc/core@1.4.2)
can-bind-to-host: 1.1.2
commander: 9.5.0
expect-playwright: 0.8.0
- glob: 10.3.12
- jest: 29.7.0(@types/node@18.19.31)
+ glob: 10.3.10
+ jest: 29.7.0(@types/node@18.19.17)
jest-circus: 29.7.0
jest-environment-node: 29.7.0
jest-junit: 16.0.0
@@ -8862,7 +8818,7 @@ packages:
jest-serializer-html: 7.1.0
jest-watch-typeahead: 2.2.2(jest@29.7.0)
node-fetch: 2.7.0
- playwright: 1.43.0
+ playwright: 1.40.1
read-pkg-up: 7.0.1
tempy: 1.0.1
ts-dedent: 2.2.0
@@ -8884,16 +8840,15 @@ packages:
'@storybook/core-events': 8.0.0-alpha.14
'@storybook/instrumenter': 8.0.0-alpha.14
'@storybook/preview-api': 8.0.0-alpha.14
- '@testing-library/dom': 9.3.4
- '@testing-library/jest-dom': 6.4.2(jest@29.7.0)(vitest@1.1.1)
- '@testing-library/user-event': 14.3.0(@testing-library/dom@9.3.4)
+ '@testing-library/dom': 9.3.3
+ '@testing-library/jest-dom': 6.2.0(jest@29.7.0)(vitest@1.1.1)
+ '@testing-library/user-event': 14.3.0(@testing-library/dom@9.3.3)
'@vitest/expect': 1.1.3
- '@vitest/spy': 1.4.0
- chai: 4.4.1
+ '@vitest/spy': 1.2.1
+ chai: 4.3.10
util: 0.12.5
transitivePeerDependencies:
- '@jest/globals'
- - '@types/bun'
- '@types/jest'
- jest
- vitest
@@ -8913,15 +8868,6 @@ packages:
react-dom: 18.2.0(react@18.2.0)
dev: true
- /@storybook/types@7.6.17:
- resolution: {integrity: sha512-GRY0xEJQ0PrL7DY2qCNUdIfUOE0Gsue6N+GBJw9ku1IUDFLJRDOF+4Dx2BvYcVCPI5XPqdWKlEyZdMdKjiQN7Q==}
- dependencies:
- '@storybook/channels': 7.6.17
- '@types/babel__core': 7.20.5
- '@types/express': 4.17.21
- file-system-cache: 2.3.0
- dev: true
-
/@storybook/types@7.6.7:
resolution: {integrity: sha512-VcGwrI4AkBENxkoAUJ+Z7SyMK73hpoY0TTtw2J7tc05/xdiXhkQTX15Qa12IBWIkoXCyNrtaU+q7KR8Tjzi+uw==}
dependencies:
@@ -8954,7 +8900,7 @@ packages:
'@swc/core': 1.3.102
commander: 7.2.0
fast-glob: 3.3.2
- semver: 7.6.0
+ semver: 7.5.4
slash: 3.0.0
source-map: 0.7.4
@@ -8966,8 +8912,8 @@ packages:
requiresBuild: true
optional: true
- /@swc/core-darwin-arm64@1.4.13:
- resolution: {integrity: sha512-36P72FLpm5iq85IvoEjBvi22DiqkkEIanJ1M0E8bkxcFHUbjBrYfPY9T6cpPyK5oQqkaTBvNAc3j1BlVD6IH6w==}
+ /@swc/core-darwin-arm64@1.4.2:
+ resolution: {integrity: sha512-1uSdAn1MRK5C1m/TvLZ2RDvr0zLvochgrZ2xL+lRzugLlCTlSA+Q4TWtrZaOz+vnnFVliCpw7c7qu0JouhgQIw==}
engines: {node: '>=10'}
cpu: [arm64]
os: [darwin]
@@ -8983,8 +8929,8 @@ packages:
requiresBuild: true
optional: true
- /@swc/core-darwin-x64@1.4.13:
- resolution: {integrity: sha512-ye7OgKpDdyA8AMIVVdmD1ICDaFXgoEXORnVO8bBHyul0WN71yUBZMX+YxEx2lpWtiftA2vY/1MAuOR80vHkBCw==}
+ /@swc/core-darwin-x64@1.4.2:
+ resolution: {integrity: sha512-TYD28+dCQKeuxxcy7gLJUCFLqrwDZnHtC2z7cdeGfZpbI2mbfppfTf2wUPzqZk3gEC96zHd4Yr37V3Tvzar+lQ==}
engines: {node: '>=10'}
cpu: [x64]
os: [darwin]
@@ -9000,8 +8946,8 @@ packages:
requiresBuild: true
optional: true
- /@swc/core-linux-arm-gnueabihf@1.4.13:
- resolution: {integrity: sha512-+x593Jlmu4c3lJtZUKRejWpV2MAij1Js5nmQLLdjo6ChR2D4B2rzj3iMiKn5gITew7fraF9t3fvXALdWh7HmUg==}
+ /@swc/core-linux-arm-gnueabihf@1.4.2:
+ resolution: {integrity: sha512-Eyqipf7ZPGj0vplKHo8JUOoU1un2sg5PjJMpEesX0k+6HKE2T8pdyeyXODN0YTFqzndSa/J43EEPXm+rHAsLFQ==}
engines: {node: '>=10'}
cpu: [arm]
os: [linux]
@@ -9017,8 +8963,8 @@ packages:
requiresBuild: true
optional: true
- /@swc/core-linux-arm64-gnu@1.4.13:
- resolution: {integrity: sha512-0x8OVw4dfyNerrs/9eZX9wNnmvwbwXSMCi+LbE6Xt1pXOIwvoLtFIXcV3NsrlkFboO3sr5UAQIwDxKqbIZA9pQ==}
+ /@swc/core-linux-arm64-gnu@1.4.2:
+ resolution: {integrity: sha512-wZn02DH8VYPv3FC0ub4my52Rttsus/rFw+UUfzdb3tHMHXB66LqN+rR0ssIOZrH6K+VLN6qpTw9VizjyoH0BxA==}
engines: {node: '>=10'}
cpu: [arm64]
os: [linux]
@@ -9034,8 +8980,8 @@ packages:
requiresBuild: true
optional: true
- /@swc/core-linux-arm64-musl@1.4.13:
- resolution: {integrity: sha512-Z9c4JiequtZvngPcxbCuAOkmWBxi2vInZbjjhD5I+Q9oiJdXUz1t2USGwsGPS41Xvk1BOA3ecK2Sn1ilY3titg==}
+ /@swc/core-linux-arm64-musl@1.4.2:
+ resolution: {integrity: sha512-3G0D5z9hUj9bXNcwmA1eGiFTwe5rWkuL3DsoviTj73TKLpk7u64ND0XjEfO0huVv4vVu9H1jodrKb7nvln/dlw==}
engines: {node: '>=10'}
cpu: [arm64]
os: [linux]
@@ -9051,8 +8997,8 @@ packages:
requiresBuild: true
optional: true
- /@swc/core-linux-x64-gnu@1.4.13:
- resolution: {integrity: sha512-ChatHtk+vX0Ke5QG+jO+rIapw/KwZsi9MedCBHFXHH6iWF4z8d51cJeN68ykcn+vAXzjNeFNdlNy5Vbkd1zAqg==}
+ /@swc/core-linux-x64-gnu@1.4.2:
+ resolution: {integrity: sha512-LFxn9U8cjmYHw3jrdPNqPAkBGglKE3tCZ8rA7hYyp0BFxuo7L2ZcEnPm4RFpmSCCsExFH+LEJWuMGgWERoktvg==}
engines: {node: '>=10'}
cpu: [x64]
os: [linux]
@@ -9068,8 +9014,8 @@ packages:
requiresBuild: true
optional: true
- /@swc/core-linux-x64-musl@1.4.13:
- resolution: {integrity: sha512-0Pz39YR530mXpsztwQkmEKdkkZy4fY4Smdh4pkm6Ly8Nndyo0te/l4bcAGqN24Jp7aVwF/QSy14SAtw4HRjU9g==}
+ /@swc/core-linux-x64-musl@1.4.2:
+ resolution: {integrity: sha512-dp0fAmreeVVYTUcb4u9njTPrYzKnbIH0EhH2qvC9GOYNNREUu2GezSIDgonjOXkHiTCvopG4xU7y56XtXj4VrQ==}
engines: {node: '>=10'}
cpu: [x64]
os: [linux]
@@ -9085,8 +9031,8 @@ packages:
requiresBuild: true
optional: true
- /@swc/core-win32-arm64-msvc@1.4.13:
- resolution: {integrity: sha512-LVZfhlD+jHcAbz5NN+gAJ1BEasB0WpcvUzcsJt0nQSRsojgzPzFjJ+fzEBnvT7SMtqKkrnVJ0OmDYeh88bDRpw==}
+ /@swc/core-win32-arm64-msvc@1.4.2:
+ resolution: {integrity: sha512-HlVIiLMQkzthAdqMslQhDkoXJ5+AOLUSTV6fm6shFKZKqc/9cJvr4S8UveNERL9zUficA36yM3bbfo36McwnvQ==}
engines: {node: '>=10'}
cpu: [arm64]
os: [win32]
@@ -9102,8 +9048,8 @@ packages:
requiresBuild: true
optional: true
- /@swc/core-win32-ia32-msvc@1.4.13:
- resolution: {integrity: sha512-78hxHWUvUZtWsnhcf8DKwhBcNFJw+j4y4fN2B9ioXmBWX2tIyw+BqUHOrismOtjPihaZmwe/Ok2e4qmkawE2fw==}
+ /@swc/core-win32-ia32-msvc@1.4.2:
+ resolution: {integrity: sha512-WCF8faPGjCl4oIgugkp+kL9nl3nUATlzKXCEGFowMEmVVCFM0GsqlmGdPp1pjZoWc9tpYanoXQDnp5IvlDSLhA==}
engines: {node: '>=10'}
cpu: [ia32]
os: [win32]
@@ -9119,8 +9065,8 @@ packages:
requiresBuild: true
optional: true
- /@swc/core-win32-x64-msvc@1.4.13:
- resolution: {integrity: sha512-WSfy1u2Xde6jU7UpHIInCUMW98Zw9iZglddKUAvmr1obkZji5U6EX0Oca3asEJdZPFb+2lMLjt0Mh5a1YisROg==}
+ /@swc/core-win32-x64-msvc@1.4.2:
+ resolution: {integrity: sha512-oV71rwiSpA5xre2C5570BhCsg1HF97SNLsZ/12xv7zayGzqr3yvFALFJN8tHKpqUdCB4FGPjoP3JFdV3i+1wUw==}
engines: {node: '>=10'}
cpu: [x64]
os: [win32]
@@ -9138,8 +9084,8 @@ packages:
'@swc/helpers':
optional: true
dependencies:
- '@swc/counter': 0.1.3
- '@swc/types': 0.1.6
+ '@swc/counter': 0.1.2
+ '@swc/types': 0.1.5
optionalDependencies:
'@swc/core-darwin-arm64': 1.3.102
'@swc/core-darwin-x64': 1.3.102
@@ -9152,8 +9098,8 @@ packages:
'@swc/core-win32-ia32-msvc': 1.3.102
'@swc/core-win32-x64-msvc': 1.3.102
- /@swc/core@1.4.13:
- resolution: {integrity: sha512-rOtusBE+2gaeRkAJn5E4zp5yzZekZOypzSOz5ZG6P1hFbd+Cc26fWEdK6sUSnrkkvTd0Oj33KXLB/4UkbK/UHA==}
+ /@swc/core@1.4.2:
+ resolution: {integrity: sha512-vWgY07R/eqj1/a0vsRKLI9o9klGZfpLNOVEnrv4nrccxBgYPjcf22IWwAoaBJ+wpA7Q4fVjCUM8lP0m01dpxcg==}
engines: {node: '>=10'}
requiresBuild: true
peerDependencies:
@@ -9163,22 +9109,26 @@ packages:
optional: true
dependencies:
'@swc/counter': 0.1.3
- '@swc/types': 0.1.6
+ '@swc/types': 0.1.5
optionalDependencies:
- '@swc/core-darwin-arm64': 1.4.13
- '@swc/core-darwin-x64': 1.4.13
- '@swc/core-linux-arm-gnueabihf': 1.4.13
- '@swc/core-linux-arm64-gnu': 1.4.13
- '@swc/core-linux-arm64-musl': 1.4.13
- '@swc/core-linux-x64-gnu': 1.4.13
- '@swc/core-linux-x64-musl': 1.4.13
- '@swc/core-win32-arm64-msvc': 1.4.13
- '@swc/core-win32-ia32-msvc': 1.4.13
- '@swc/core-win32-x64-msvc': 1.4.13
+ '@swc/core-darwin-arm64': 1.4.2
+ '@swc/core-darwin-x64': 1.4.2
+ '@swc/core-linux-arm-gnueabihf': 1.4.2
+ '@swc/core-linux-arm64-gnu': 1.4.2
+ '@swc/core-linux-arm64-musl': 1.4.2
+ '@swc/core-linux-x64-gnu': 1.4.2
+ '@swc/core-linux-x64-musl': 1.4.2
+ '@swc/core-win32-arm64-msvc': 1.4.2
+ '@swc/core-win32-ia32-msvc': 1.4.2
+ '@swc/core-win32-x64-msvc': 1.4.2
dev: true
+ /@swc/counter@0.1.2:
+ resolution: {integrity: sha512-9F4ys4C74eSTEUNndnER3VJ15oru2NumfQxS8geE+f3eB5xvfxpWyqE5XlVnxb/R14uoXi6SLbBwwiDSkv+XEw==}
+
/@swc/counter@0.1.3:
resolution: {integrity: sha512-e2BR4lsJkkRlKZ/qCHPw9ZaSxc0MVUd7gtbtaB7aMvHeJVYe8sOB8DBZkP2DtISHGSku9sCK6T6cnY0CtXrOCQ==}
+ dev: true
/@swc/helpers@0.4.14:
resolution: {integrity: sha512-4C7nX/dvpzB7za4Ql9K81xK3HPxCpHMgwTZVyf+9JQ6VUbn9jjZVN7/Nkdz/Ugzs2CSjqnL/UPXroiVBVHUWUw==}
@@ -9191,22 +9141,19 @@ packages:
legacy-swc-helpers: /@swc/helpers@0.4.14
tslib: 2.6.2
- /@swc/jest@0.2.36(@swc/core@1.3.102):
- resolution: {integrity: sha512-8X80dp81ugxs4a11z1ka43FPhP+/e+mJNXJSxiNYk8gIX/jPBtY4gQTrKu/KIoco8bzKuPI5lUxjfLiGsfvnlw==}
+ /@swc/jest@0.2.29(@swc/core@1.4.2):
+ resolution: {integrity: sha512-8reh5RvHBsSikDC3WGCd5ZTd2BXKkyOdK7QwynrCH58jk2cQFhhHhFBg/jvnWZehUQe/EoOImLENc9/DwbBFow==}
engines: {npm: '>= 7.0.0'}
peerDependencies:
'@swc/core': '*'
dependencies:
- '@jest/create-cache-key-function': 29.7.0
- '@swc/core': 1.3.102
- '@swc/counter': 0.1.3
- jsonc-parser: 3.2.1
+ '@jest/create-cache-key-function': 27.5.1
+ '@swc/core': 1.4.2
+ jsonc-parser: 3.2.0
dev: true
- /@swc/types@0.1.6:
- resolution: {integrity: sha512-/JLo/l2JsT/LRd80C3HfbmVpxOAJ11FO2RCEslFrgzLltoP9j8XIbsyDcfCt2WWyX+CM96rBoNM+IToAkFOugg==}
- dependencies:
- '@swc/counter': 0.1.3
+ /@swc/types@0.1.5:
+ resolution: {integrity: sha512-myfUej5naTBWnqOCc/MdVOLVjXUXtIA+NpDrDBKJtLLg2shUjBu3cZmB/85RyitKc55+lUUyl7oRfLOvkr2hsw==}
/@szmarczak/http-timer@4.0.6:
resolution: {integrity: sha512-4BAffykYOgO+5nzBWYwE3W90sBgLJoUPRWWcL8wlyiM8IB8ipJz3UMJ9KXQd1RKQXpKp8Tutn80HZtWsu2u76w==}
@@ -9237,6 +9184,14 @@ packages:
tailwindcss: 3.4.0
dev: true
+ /@tailwindcss/line-clamp@0.4.4(tailwindcss@3.4.0):
+ resolution: {integrity: sha512-5U6SY5z8N42VtrCrKlsTAA35gy2VSyYtHWCsg1H87NU1SXnEfekTVlrga9fzUDrrHcGi2Lb5KenUWb4lRQT5/g==}
+ peerDependencies:
+ tailwindcss: '>=2.0.0 || >=3.0.0 || >=3.0.0-alpha.1'
+ dependencies:
+ tailwindcss: 3.4.0
+ dev: false
+
/@tailwindcss/typography@0.5.10(tailwindcss@3.4.0):
resolution: {integrity: sha512-Pe8BuPJQJd3FfRnm6H0ulKIGoMEQS+Vq01R6M5aCrFB/ccR/shT+0kXLjouGC1gFLm9hopTFN+DMP0pfwRWzPw==}
peerDependencies:
@@ -9270,12 +9225,12 @@ packages:
resolution: {integrity: sha512-oocsqY7g0cR+Gur5jRQLSrX2OtpMLMse1I10JQBm8CdGMrDkh1Mg2gjsiquMHRtBs4Qwu5wgEp5GgIYHk4SNPw==}
dev: true
- /@testing-library/dom@9.3.4:
- resolution: {integrity: sha512-FlS4ZWlp97iiNWig0Muq8p+3rVDjRiYE+YKGbAqXOu9nwJFFOdL00kFpz42M+4huzYi86vAK1sOOfyOG45muIQ==}
+ /@testing-library/dom@9.3.3:
+ resolution: {integrity: sha512-fB0R+fa3AUqbLHWyxXa2kGVtf1Fe1ZZFr0Zp6AIbIAzXb2mKbEXl+PCQNUOaq5lbTab5tfctfXRNsWXxa2f7Aw==}
engines: {node: '>=14'}
dependencies:
- '@babel/code-frame': 7.24.2
- '@babel/runtime': 7.24.4
+ '@babel/code-frame': 7.23.5
+ '@babel/runtime': 7.23.7
'@types/aria-query': 5.0.4
aria-query: 5.1.3
chalk: 4.1.2
@@ -9284,20 +9239,17 @@ packages:
pretty-format: 27.5.1
dev: true
- /@testing-library/jest-dom@6.4.2(jest@29.7.0)(vitest@1.1.1):
- resolution: {integrity: sha512-CzqH0AFymEMG48CpzXFriYYkOjk6ZGPCLMhW9e9jg3KMCn5OfJecF8GtGW7yGfR/IgCe3SX8BSwjdzI6BBbZLw==}
+ /@testing-library/jest-dom@6.2.0(jest@29.7.0)(vitest@1.1.1):
+ resolution: {integrity: sha512-+BVQlJ9cmEn5RDMUS8c2+TU6giLvzaHZ8sU/x0Jj7fk+6/46wPdwlgOPcpxS17CjcanBi/3VmGMqVr2rmbUmNw==}
engines: {node: '>=14', npm: '>=6', yarn: '>=1'}
peerDependencies:
'@jest/globals': '>= 28'
- '@types/bun': latest
'@types/jest': '>= 28'
jest: '>= 28'
vitest: '>= 0.32'
peerDependenciesMeta:
'@jest/globals':
optional: true
- '@types/bun':
- optional: true
'@types/jest':
optional: true
jest:
@@ -9305,16 +9257,16 @@ packages:
vitest:
optional: true
dependencies:
- '@adobe/css-tools': 4.3.3
- '@babel/runtime': 7.24.4
+ '@adobe/css-tools': 4.3.2
+ '@babel/runtime': 7.23.7
aria-query: 5.3.0
chalk: 3.0.0
css.escape: 1.5.1
dom-accessibility-api: 0.6.3
- jest: 29.7.0(@types/node@18.19.31)
+ jest: 29.7.0(@types/node@18.19.17)
lodash: 4.17.21
redent: 3.0.0
- vitest: 1.1.1(@types/node@18.19.31)(happy-dom@12.10.3)
+ vitest: 1.1.1(@types/node@18.19.17)(happy-dom@12.10.3)
dev: true
/@testing-library/react@14.1.2(react-dom@18.2.0)(react@18.2.0):
@@ -9324,20 +9276,20 @@ packages:
react: ^18.0.0
react-dom: ^18.0.0
dependencies:
- '@babel/runtime': 7.24.4
- '@testing-library/dom': 9.3.4
+ '@babel/runtime': 7.23.7
+ '@testing-library/dom': 9.3.3
'@types/react-dom': 18.2.18
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
dev: true
- /@testing-library/user-event@14.3.0(@testing-library/dom@9.3.4):
+ /@testing-library/user-event@14.3.0(@testing-library/dom@9.3.3):
resolution: {integrity: sha512-P02xtBBa8yMaLhK8CzJCIns8rqwnF6FxhR9zs810flHOBXUYCFjLd8Io1rQrAkQRWEmW2PGdZIEdMxf/KLsqFA==}
engines: {node: '>=12', npm: '>=6'}
peerDependencies:
'@testing-library/dom': '>=7.21.4'
dependencies:
- '@testing-library/dom': 9.3.4
+ '@testing-library/dom': 9.3.3
dev: true
/@tokenizer/token@0.3.0:
@@ -9354,8 +9306,8 @@ packages:
resolution: {integrity: sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==}
engines: {node: '>=10.13.0'}
- /@tsconfig/node10@1.0.11:
- resolution: {integrity: sha512-DcRjDCujK/kCk/cUe8Xz8ZSpm8mS3mNNpta+jGCA6USEDfktlNvm1+IuZ9eTcDbNk41BHwpHHeW+N1lKCz4zOw==}
+ /@tsconfig/node10@1.0.9:
+ resolution: {integrity: sha512-jNsYVVxU8v5g43Erja32laIDHXeoNvFEpX33OK4d6hljo3jDhCBDhx5dhCCTMWUojscpAagGiRkBKxpdl9fxqA==}
dev: false
/@tsconfig/node12@1.0.11:
@@ -9375,7 +9327,7 @@ packages:
peerDependencies:
node-fetch: '2'
dependencies:
- '@types/node-fetch': 2.6.11
+ '@types/node-fetch': 2.6.10
node-fetch: 2.7.0
/@turist/time@0.0.2:
@@ -9388,8 +9340,8 @@ packages:
/@types/babel__core@7.20.5:
resolution: {integrity: sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==}
dependencies:
- '@babel/parser': 7.24.4
- '@babel/types': 7.24.0
+ '@babel/parser': 7.23.6
+ '@babel/types': 7.23.6
'@types/babel__generator': 7.6.8
'@types/babel__template': 7.4.4
'@types/babel__traverse': 7.20.5
@@ -9398,27 +9350,27 @@ packages:
/@types/babel__generator@7.6.8:
resolution: {integrity: sha512-ASsj+tpEDsEiFr1arWrlN6V3mdfjRMZt6LtK/Vp/kreFLnr5QH5+DhvD5nINYZXzwJvXeGq+05iUXcAzVrqWtw==}
dependencies:
- '@babel/types': 7.24.0
+ '@babel/types': 7.23.6
dev: true
/@types/babel__template@7.4.4:
resolution: {integrity: sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==}
dependencies:
- '@babel/parser': 7.24.4
- '@babel/types': 7.24.0
+ '@babel/parser': 7.23.6
+ '@babel/types': 7.23.6
dev: true
/@types/babel__traverse@7.20.5:
resolution: {integrity: sha512-WXCyOcRtH37HAUkpXhUduaxdm82b4GSlyTqajXviN4EfiuPgNYR109xMCKvpl6zPIpua0DGlMEDCq+g8EdoheQ==}
dependencies:
- '@babel/types': 7.24.0
+ '@babel/types': 7.23.6
dev: true
/@types/body-parser@1.19.5:
resolution: {integrity: sha512-fB3Zu92ucau0iQ0JMCFQE7b/dv8Ot07NI3KaZIkIUNXq82k4eBAqUaneXfleGY9JWskeS9y+u0nXMyspcuQrCg==}
dependencies:
'@types/connect': 3.4.38
- '@types/node': 18.19.31
+ '@types/node': 18.19.17
dev: true
/@types/cacheable-request@6.0.3:
@@ -9426,18 +9378,18 @@ packages:
dependencies:
'@types/http-cache-semantics': 4.0.4
'@types/keyv': 3.1.4
- '@types/node': 18.19.31
+ '@types/node': 18.19.17
'@types/responselike': 1.0.3
/@types/chai-subset@1.3.5:
resolution: {integrity: sha512-c2mPnw+xHtXDoHmdtcCXGwyLMiauiAyxWMzhGpqHC4nqI/Y5G2XhTampslK2rb59kpcuHon03UH8W6iYUzw88A==}
requiresBuild: true
dependencies:
- '@types/chai': 4.3.14
+ '@types/chai': 4.3.11
optional: true
- /@types/chai@4.3.14:
- resolution: {integrity: sha512-Wj71sXE4Q4AkGdG9Tvq1u/fquNz9EdG4LIJMwVVII7ashjD/8cf8fyIfJAjRr6YcsXnSE8cOGQPq1gqeR8z+3w==}
+ /@types/chai@4.3.11:
+ resolution: {integrity: sha512-qQR1dr2rGIHYlJulmr8Ioq3De0Le9E4MJ5AiaeAETJJpndT1uUNHsGFK3L/UIu+rbkQSdj8J/w2bCsBZc/Y5fQ==}
requiresBuild: true
optional: true
@@ -9450,7 +9402,7 @@ packages:
/@types/connect@3.4.38:
resolution: {integrity: sha512-K6uROf1LD88uDQqJCktA4yzL1YYAK6NgfsI0v/mTgyPKWsX1CnJ0XPSDhViejru1GcRkLWb8RlzFYJRqGUbaug==}
dependencies:
- '@types/node': 18.19.31
+ '@types/node': 18.19.17
dev: true
/@types/cookie@0.4.1:
@@ -9459,12 +9411,12 @@ packages:
/@types/cors@2.8.17:
resolution: {integrity: sha512-8CGDvrBj1zgo2qE+oS3pOCyYNqCPryMWY2bGfwA0dcfopWGgxs+78df0Rs3rc9THP4JkOhLsAa+15VdpAqkcUA==}
dependencies:
- '@types/node': 18.0.0
+ '@types/node': 18.19.17
/@types/cross-spawn@6.0.6:
resolution: {integrity: sha512-fXRhhUkG4H3TQk5dBhQ7m/JDdSNHKwR2BBia62lhwEIq9xGiQKLxd6LymNhn47SjXhsUEPmxi+PKw2OkW4LLjA==}
dependencies:
- '@types/node': 18.19.31
+ '@types/node': 18.19.17
dev: true
/@types/debug@0.0.30:
@@ -9507,7 +9459,7 @@ packages:
/@types/eslint-scope@3.7.7:
resolution: {integrity: sha512-MzMFlSLBqNF2gcHWO0G1vP/YQyfvrxZ0bF+u7mzUdZ1/xK4A4sru+nraZz5i3iEIk1l1uyicaDVTB4QbbEkAYg==}
dependencies:
- '@types/eslint': 8.56.7
+ '@types/eslint': 8.56.1
'@types/estree': 1.0.5
/@types/eslint@7.29.0:
@@ -9516,8 +9468,8 @@ packages:
'@types/estree': 1.0.5
'@types/json-schema': 7.0.15
- /@types/eslint@8.56.7:
- resolution: {integrity: sha512-SjDvI/x3zsZnOkYZ3lCt9lOZWZLB2jIlNKz+LBgCtDurK0JZcwucxYHn1w2BJkD34dgX9Tjnak0txtq4WTggEA==}
+ /@types/eslint@8.56.1:
+ resolution: {integrity: sha512-18PLWRzhy9glDQp3+wOgfLYRWlhgX0azxgJ63rdpoUHyrC9z0f5CkFburjQx4uD7ZCruw85ZtMt6K+L+R8fLJQ==}
dependencies:
'@types/estree': 1.0.5
'@types/json-schema': 7.0.15
@@ -9529,11 +9481,11 @@ packages:
/@types/estree@1.0.5:
resolution: {integrity: sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==}
- /@types/express-serve-static-core@4.19.0:
- resolution: {integrity: sha512-bGyep3JqPCRry1wq+O5n7oiBgGWmeIJXPjXXCo8EK0u8duZGSYar7cGqd3ML2JUsLGeB7fmc06KYo9fLGWqPvQ==}
+ /@types/express-serve-static-core@4.17.41:
+ resolution: {integrity: sha512-OaJ7XLaelTgrvlZD8/aa0vvvxZdUmlCn6MtWeB7TkiKW70BQLc9XEPpDLPdbo52ZhXUCrznlWdCHWxJWtdyajA==}
dependencies:
- '@types/node': 18.19.31
- '@types/qs': 6.9.14
+ '@types/node': 18.19.17
+ '@types/qs': 6.9.11
'@types/range-parser': 1.2.7
'@types/send': 0.17.4
dev: true
@@ -9542,9 +9494,9 @@ packages:
resolution: {integrity: sha512-ejlPM315qwLpaQlQDTjPdsUFSc6ZsP4AN6AlWnogPjQ7CVi7PYF3YVz+CY3jE2pwYf7E/7HlDAN0rV2GxTG0HQ==}
dependencies:
'@types/body-parser': 1.19.5
- '@types/express-serve-static-core': 4.19.0
- '@types/qs': 6.9.14
- '@types/serve-static': 1.15.7
+ '@types/express-serve-static-core': 4.17.41
+ '@types/qs': 6.9.11
+ '@types/serve-static': 1.15.5
dev: true
/@types/find-cache-dir@3.2.1:
@@ -9558,27 +9510,20 @@ packages:
resolution: {integrity: sha512-rTtf75rwyP9G2qO5yRpYtdJ6aU1QqEhWbtW55qEgquEDa6bXW0s2TWZfDm02GuppjEozOWG/F2UnPq5hAQb+gw==}
dependencies:
'@types/minimatch': 5.1.2
- '@types/node': 18.0.0
+ '@types/node': 18.19.17
/@types/glob@7.2.0:
resolution: {integrity: sha512-ZUxbzKl0IfJILTS6t7ip5fQQM/J3TJYubDm3nMbgubNNYS62eXeUpoLUC8/7fJNiFYHTrGPQn7hspDUzIHX3UA==}
dependencies:
'@types/minimatch': 5.1.2
- '@types/node': 18.19.31
- dev: true
+ '@types/node': 18.19.17
/@types/graceful-fs@4.1.9:
resolution: {integrity: sha512-olP3sd1qOEe5dXTSaFvQG+02VdRXcdytWLAZsAq1PecU8uqQAhkrnbli7DagjtXKW/Bl7YJbUsa8MPcuc8LHEQ==}
dependencies:
- '@types/node': 18.19.31
+ '@types/node': 18.19.17
dev: true
- /@types/hast@2.3.10:
- resolution: {integrity: sha512-McWspRw8xx8J9HurkVBfYj0xKoE25tOFlHGdx4MJ5xORQrMGZNqJhVQWaIbm6Oyla5kYOXtDiopzKRJzEOkwJw==}
- dependencies:
- '@types/unist': 2.0.10
- dev: false
-
/@types/hast@2.3.9:
resolution: {integrity: sha512-pTHyNlaMD/oKJmS+ZZUyFUcsZeBZpC0lmGquw98CqRVNgAdJZJeD7GoeLiT6Xbx5rU9VCjSt0RwEvDgzh4obFw==}
dependencies:
@@ -9587,7 +9532,7 @@ packages:
/@types/hoist-non-react-statics@3.3.5:
resolution: {integrity: sha512-SbcrWzkKBw2cdwRTwQAswfpB9g9LJWfjtUeW/jvNwbhC8cpmmNYVePa+ncbUe0rGTQ7G3Ff6mYUN2VMfLVr+Sg==}
dependencies:
- '@types/react': 18.2.46
+ '@types/react': 18.2.60
hoist-non-react-statics: 3.3.2
dev: false
@@ -9601,7 +9546,7 @@ packages:
/@types/http-proxy@1.17.14:
resolution: {integrity: sha512-SSrD0c1OQzlFX7pGu1eXxSEjemej64aaNPRhhVYUGqXh0BtldAAx37MG8btcumvpgKyZp1F5Gn3JkktdxiFv6w==}
dependencies:
- '@types/node': 18.0.0
+ '@types/node': 18.19.17
/@types/image-size@0.8.0:
resolution: {integrity: sha512-hMlhu25ji75dXQk2uZkN3pTJ+lWrgKr8M1fTpyyFvuu+SJZBdGa5gDm4BVNobWXHZbOU11mBj0vciYp7qOfAFg==}
@@ -9640,14 +9585,15 @@ packages:
/@types/json5@0.0.29:
resolution: {integrity: sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==}
+ requiresBuild: true
/@types/keyv@3.1.4:
resolution: {integrity: sha512-BQ5aZNSCpj7D6K2ksrRCTmKRLEpnPvWDiLPfoGyhZ++8YtiK9d/3DBKPJgry359X/P1PfruyYwvnvwFjuEiEIg==}
dependencies:
- '@types/node': 18.0.0
+ '@types/node': 18.19.17
- /@types/lodash@4.17.0:
- resolution: {integrity: sha512-t7dhREVv6dbNj0q17X12j7yDG4bD/DHYX7o5/DbDxobP0HnGPgpRz2Ej77aL7TZT3DSw13fqUTj8J4mMnqa7WA==}
+ /@types/lodash@4.14.202:
+ resolution: {integrity: sha512-OvlIYQK9tNneDlS0VN54LLd5uiPCBOp7gS5Z0f1mjoJYBrtStzgmJBxONW3U6OZqdtNzZPmn9BS/7WI7BFFcFQ==}
/@types/mdast@3.0.15:
resolution: {integrity: sha512-LnwD+mUEfxWMa1QpDraczIn6k0Ee3SMicuYSSzS6ZYl2gKS09EClnJYGd8Du6rfc5r/GZEk5o1mRb8TaTj03sQ==}
@@ -9655,8 +9601,8 @@ packages:
'@types/unist': 2.0.10
dev: false
- /@types/mdx@2.0.12:
- resolution: {integrity: sha512-H9VZ9YqE+H28FQVchC83RCs5xQ2J7mAAv6qdDEaWmXEVl3OpdH+xfrSUzQ1lp7U7oSTRZ0RvW08ASPJsYBi7Cw==}
+ /@types/mdx@2.0.10:
+ resolution: {integrity: sha512-Rllzc5KHk0Al5/WANwgSPl1/CwjqCy+AZrGd78zuK+jO9aDM6ffblZ+zIjgPNAaEBmlO0RYDvLNh7wD0zKVgEg==}
dev: true
/@types/mime-types@2.1.4:
@@ -9667,11 +9613,8 @@ packages:
resolution: {integrity: sha512-/pyBZWSLD2n0dcHE3hq8s8ZvcETHtEuF+3E7XVt0Ig2nvsVQXdghHVcEkIWjy9A0wKfTn97a/PSDYohKIlnP/w==}
dev: true
- /@types/mime@4.0.0:
- resolution: {integrity: sha512-5eEkJZ/BLvTE3vXGKkWlyTSUVZuzj23Wj8PoyOq2lt5I3CYbiLBOPb3XmCW6QcuOibIUE6emHXHt9E/F/rCa6w==}
- deprecated: This is a stub types definition. mime provides its own type definitions, so you do not need this installed.
- dependencies:
- mime: 4.0.1
+ /@types/mime@3.0.4:
+ resolution: {integrity: sha512-iJt33IQnVRkqeqC7PzBHPTC6fDlRNRW8vjrgqtScAhrmMwe8c4Eo7+fUGTa+XdWrpEgpyKWMYmi2dIwMAYRzPw==}
dev: true
/@types/minimatch@5.1.2:
@@ -9683,7 +9626,7 @@ packages:
/@types/mkdirp@0.5.2:
resolution: {integrity: sha512-U5icWpv7YnZYGsN4/cmh3WD2onMY0aJIiTE6+51TwJCttdHvtCYmkBNOobHlXwrJRL0nkH9jH4kD+1FAdMN4Tg==}
dependencies:
- '@types/node': 18.0.0
+ '@types/node': 18.19.17
/@types/mousetrap@1.6.15:
resolution: {integrity: sha512-qL0hyIMNPow317QWW/63RvL1x5MVMV+Ru3NaY9f/CuEpCqrmb7WeuK2071ZY5hczOnm38qExWM2i2WtkXLSqFw==}
@@ -9693,20 +9636,22 @@ packages:
resolution: {integrity: sha512-nG96G3Wp6acyAgJqGasjODb+acrI7KltPiRxzHPXnP3NgI28bpQDRv53olbqGXbfcgF5aiiHmO3xpwEpS5Ld9g==}
dev: false
- /@types/node-fetch@2.6.11:
- resolution: {integrity: sha512-24xFj9R5+rfQJLRyM56qh+wnVSYhyXC2tkoBndtY0U+vubqNsYXGjufB2nn8Q6gt0LrARwL6UBtMCSVCwl4B1g==}
+ /@types/node-fetch@2.6.10:
+ resolution: {integrity: sha512-PPpPK6F9ALFTn59Ka3BaL+qGuipRfxNE8qVgkp0bVixeiR2c2/L+IVOiBdu9JhhT22sWnQEp6YyHGI2b2+CMcA==}
dependencies:
- '@types/node': 18.19.31
+ '@types/node': 18.19.17
form-data: 4.0.0
/@types/node@17.0.45:
resolution: {integrity: sha512-w+tIMs3rq2afQdsPJlODhoUEKzFP1ayaoyl1CcnwtIlsVe7K7bA1NGm4s3PraqTLlXnbIN84zuBlxBWo1u9BLw==}
- /@types/node@18.0.0:
- resolution: {integrity: sha512-cHlGmko4gWLVI27cGJntjs/Sj8th9aYwplmZFwmmgYQQvL5NUsgVJG7OddLvNfLqYS31KFN0s3qlaD9qCaxACA==}
+ /@types/node@18.19.17:
+ resolution: {integrity: sha512-SzyGKgwPzuWp2SHhlpXKzCX0pIOfcI4V2eF37nNBJOhwlegQ83omtVQ1XxZpDE06V/d6AQvfQdPfnw0tRC//Ng==}
+ dependencies:
+ undici-types: 5.26.5
- /@types/node@18.19.31:
- resolution: {integrity: sha512-ArgCD39YpyyrtFKIqMDvjz79jto5fcI/SVUs2HwB+f0dAzq68yqOdyaSivLiLugSziTpNXLQrVb7RZFmdZzbhA==}
+ /@types/node@18.19.4:
+ resolution: {integrity: sha512-xNzlUhzoHotIsnFoXmJB+yWmBvFZgKCI9TtPIEdYIMM1KWfwuY8zh7wvc1u1OAXlC7dlf6mZVx/s+Y5KfFz19A==}
dependencies:
undici-types: 5.26.5
@@ -9731,11 +9676,12 @@ packages:
resolution: {integrity: sha512-nj39q0wAIdhwn7DGUyT9irmsKK1tV0bd5WFEhgpqNTMFZ8cE+jieuTphCW0tfdm47S2zVT5mr09B28b1chmQMA==}
dev: true
- /@types/prop-types@15.7.12:
- resolution: {integrity: sha512-5zvhXYtRNRluoE/jAp4GVsSduVUzNWKkOZrCDBWYtE7biZywwdC2AcEzg+cSMLFRfVgeAFqpfNabiPjxFddV1Q==}
+ /@types/prop-types@15.7.11:
+ resolution: {integrity: sha512-ga8y9v9uyeiLdpKddhxYQkxNDrfvuPrlFb0N1qnZZByvcElJaXthF1UhvCh9TLWJBEHeNtdnbysW7Y6Uq8CVng==}
+ requiresBuild: true
- /@types/qs@6.9.14:
- resolution: {integrity: sha512-5khscbd3SwWMhFqylJBLQ0zIu7c1K6Vz0uBIt915BI3zV0q1nfjRQD3RqSBcPaO6PHEF4ov/t9y89fSiyThlPA==}
+ /@types/qs@6.9.11:
+ resolution: {integrity: sha512-oGk0gmhnEJK4Yyk+oI7EfXsLayXatCWPHary1MtcmbAifkobT9cM9yutG/hZKIseOU0MqbIwQ/u2nn/Gb+ltuQ==}
dev: true
/@types/range-parser@1.2.7:
@@ -9745,48 +9691,55 @@ packages:
/@types/reach__router@1.3.15:
resolution: {integrity: sha512-5WEHKGglRjq/Ae3F8UQxg+GYUIhTUEiyBT9GKPoOLU/vPTn8iZrRbdzxqvarOaGludIejJykHLMdOCdhgWqaxA==}
dependencies:
- '@types/react': 18.2.46
+ '@types/react': 18.2.60
/@types/react-body-classname@1.1.10:
resolution: {integrity: sha512-BS5V6xbn9m76WA13ied9xYXVacIf70/alT4AfPNiJmyAJy3LnmPCFSI31aS67DeVvekVLidXhmmk42Z0272N7g==}
dependencies:
- '@types/react': 18.2.46
+ '@types/react': 18.2.60
dev: true
/@types/react-dom@17.0.25:
resolution: {integrity: sha512-urx7A7UxkZQmThYA4So0NelOVjx3V4rNFVJwp0WZlbIK5eM4rNJDiN3R/E9ix0MBh6kAEojk/9YL+Te6D9zHNA==}
dependencies:
- '@types/react': 17.0.80
+ '@types/react': 17.0.74
dev: true
/@types/react-dom@18.2.18:
resolution: {integrity: sha512-TJxDm6OfAX2KJWJdMEVTwWke5Sc/E/RlnPGvGfS0W7+6ocy2xhDVQVh/KvC2Uf7kACs+gDytdusDSdWfWkaNzw==}
dependencies:
- '@types/react': 18.2.46
- dev: true
+ '@types/react': 18.2.60
/@types/react-redux@7.1.33:
resolution: {integrity: sha512-NF8m5AjWCkert+fosDsN3hAlHzpjSiXlVy9EgQEmLoBhaNXbmyeGs/aj5dQzKuF+/q+S7JQagorGDW8pJ28Hmg==}
dependencies:
'@types/hoist-non-react-statics': 3.3.5
- '@types/react': 18.2.46
+ '@types/react': 18.2.60
hoist-non-react-statics: 3.3.2
redux: 4.2.1
dev: false
- /@types/react@17.0.80:
- resolution: {integrity: sha512-LrgHIu2lEtIo8M7d1FcI3BdwXWoRQwMoXOZ7+dPTW0lYREjmlHl3P0U1VD0i/9tppOuv8/sam7sOjx34TxSFbA==}
+ /@types/react@17.0.74:
+ resolution: {integrity: sha512-nBtFGaeTMzpiL/p73xbmCi00SiCQZDTJUk9ZuHOLtil3nI+y7l269LHkHIAYpav99ZwGnPJzuJsJpfLXjiQ52g==}
+ dependencies:
+ '@types/prop-types': 15.7.11
+ '@types/scheduler': 0.16.8
+ csstype: 3.1.3
+ dev: true
+
+ /@types/react@18.2.46:
+ resolution: {integrity: sha512-nNCvVBcZlvX4NU1nRRNV/mFl1nNRuTuslAJglQsq+8ldXe5Xv0Wd2f7WTE3jOxhLH2BFfiZGC6GCp+kHQbgG+w==}
+ requiresBuild: true
dependencies:
- '@types/prop-types': 15.7.12
+ '@types/prop-types': 15.7.11
'@types/scheduler': 0.16.8
csstype: 3.1.3
- dev: true
- /@types/react@18.2.46:
- resolution: {integrity: sha512-nNCvVBcZlvX4NU1nRRNV/mFl1nNRuTuslAJglQsq+8ldXe5Xv0Wd2f7WTE3jOxhLH2BFfiZGC6GCp+kHQbgG+w==}
+ /@types/react@18.2.60:
+ resolution: {integrity: sha512-dfiPj9+k20jJrLGOu9Nf6eqxm2EyJRrq2NvwOFsfbb7sFExZ9WELPs67UImHj3Ayxg8ruTtKtNnbjaF8olPq0A==}
dependencies:
- '@types/prop-types': 15.7.12
- '@types/scheduler': 0.23.0
+ '@types/prop-types': 15.7.11
+ '@types/scheduler': 0.16.8
csstype: 3.1.3
/@types/resolve@1.20.6:
@@ -9796,7 +9749,7 @@ packages:
/@types/responselike@1.0.3:
resolution: {integrity: sha512-H/+L+UkTV33uf49PH5pCAUBVPNj2nDBXTN+qS1dOwyyg24l3CcicicCA7ca+HMvJBZcFgl5r8e+RR6elsb4Lyw==}
dependencies:
- '@types/node': 18.0.0
+ '@types/node': 18.19.17
/@types/retry@0.12.1:
resolution: {integrity: sha512-xoDlM2S4ortawSWORYqsdU+2rxdh4LRW9ytc3zmT37RIKQh6IHyKwwtKhKis9ah8ol07DCkZxPt8BBvPjC6v4g==}
@@ -9805,46 +9758,35 @@ packages:
/@types/rimraf@2.0.5:
resolution: {integrity: sha512-YyP+VfeaqAyFmXoTh3HChxOQMyjByRMsHU7kc5KOJkSlXudhMhQIALbYV7rHh/l8d2lX3VUQzprrcAgWdRuU8g==}
dependencies:
- '@types/glob': 5.0.38
- '@types/node': 18.0.0
+ '@types/glob': 7.2.0
+ '@types/node': 18.19.17
/@types/sax@1.2.7:
resolution: {integrity: sha512-rO73L89PJxeYM3s3pPPjiPgVVcymqU490g0YO5n5By0k2Erzj6tay/4lr1CHAAU4JyOWd1rpQ8bCf6cZfHU96A==}
dependencies:
- '@types/node': 18.19.31
+ '@types/node': 18.19.17
dev: false
/@types/scheduler@0.16.8:
resolution: {integrity: sha512-WZLiwShhwLRmeV6zH+GkbOFT6Z6VklCItrDioxUnv+u4Ll+8vKeFySoFyK/0ctcRpOmwAicELfmys1sDc/Rw+A==}
- dev: true
-
- /@types/scheduler@0.23.0:
- resolution: {integrity: sha512-YIoDCTH3Af6XM5VuwGG/QL/CJqga1Zm3NkU3HZ4ZHK2fRMPYP1VczsTUqtsf43PH/iJNVlPHAo2oWX7BSdB2Hw==}
+ requiresBuild: true
- /@types/semver@7.5.8:
- resolution: {integrity: sha512-I8EUhyrgfLrcTkzV3TSsGyl1tSuPrEDzr0yd5m90UgNxQkyDXULk3b6MlQqTCpZpNtWe1K0hzclnZkTcLBe2UQ==}
+ /@types/semver@7.5.6:
+ resolution: {integrity: sha512-dn1l8LaMea/IjDoHNd9J52uBbInB796CDffS6VdIxvqYCPSG0V0DzHp76GpaWnlhg88uYyPbXCDIowa86ybd5A==}
/@types/send@0.17.4:
resolution: {integrity: sha512-x2EM6TJOybec7c52BX0ZspPodMsQUd5L6PRwOunVyVUhXiBSKf3AezDL8Dgvgt5o0UfKNfuA0eMLr2wLT4AiBA==}
dependencies:
'@types/mime': 1.3.5
- '@types/node': 18.19.31
+ '@types/node': 18.19.17
dev: true
/@types/serve-static@1.15.5:
resolution: {integrity: sha512-PDRk21MnK70hja/YF8AHfC7yIsiQHn1rcXx7ijCFBX/k+XQJhQT/gw3xekXKJvx+5SXaMMS8oqQy09Mzvz2TuQ==}
dependencies:
'@types/http-errors': 2.0.4
- '@types/mime': 4.0.0
- '@types/node': 18.19.31
- dev: true
-
- /@types/serve-static@1.15.7:
- resolution: {integrity: sha512-W8Ym+h8nhuRwaKPaDw34QUkwsGi6Rc4yYqvKFo5rm2FUEhCFbzVWrxXUxuKK8TASjWsysJY0nsmNCGhCOIsrOw==}
- dependencies:
- '@types/http-errors': 2.0.4
- '@types/node': 18.19.31
- '@types/send': 0.17.4
+ '@types/mime': 3.0.4
+ '@types/node': 18.19.17
dev: true
/@types/stack-utils@2.0.3:
@@ -9864,29 +9806,48 @@ packages:
/@types/unist@2.0.10:
resolution: {integrity: sha512-IfYcSBWE3hLpBg8+X2SEa8LVkJdJEkT2Ese2aaLs3ptGdVtABxndrMaxuFlQ1qdFf9Q5rDvDpxI3WwgvKFAsQA==}
- /@types/uuid@9.0.8:
- resolution: {integrity: sha512-jg+97EGIcY9AGHJJRaaPVgetKDsrTgbRjQ5Msgjh/DQKEFl0DtyRr/VCOyD1T2R1MNeWPK/u7JoGhlDZnKBAfA==}
+ /@types/unist@3.0.2:
+ resolution: {integrity: sha512-dqId9J8K/vGi5Zr7oo212BGii5m3q5Hxlkwy3WpYuKPklmBEvsbMYYyLxAQpSffdLl/gdW0XUpKWFvYmyoWCoQ==}
+ dev: false
+
+ /@types/uuid@9.0.7:
+ resolution: {integrity: sha512-WUtIVRUZ9i5dYXefDEAI7sh9/O7jGvHg7Df/5O/gtH3Yabe5odI3UWopVR1qbPXQtvOxWu3mM4XxlYeZtMWF4g==}
dev: true
- /@types/validator@13.11.9:
- resolution: {integrity: sha512-FCTsikRozryfayPuiI46QzH3fnrOoctTjvOYZkho9BTFLCOZ2rgZJHMOVgCOfttjPJcgOx52EpkY0CMfy87MIw==}
+ /@types/validator@13.11.7:
+ resolution: {integrity: sha512-q0JomTsJ2I5Mv7dhHhQLGjMvX0JJm5dyZ1DXQySIUzU1UlwzB8bt+R6+LODUbz0UDIOvEzGc28tk27gBJw2N8Q==}
+ dev: false
+
+ /@types/vfile-message@2.0.0:
+ resolution: {integrity: sha512-GpTIuDpb9u4zIO165fUy9+fXcULdD8HFRNli04GehoMVbeNq7D6OBnqSmg3lxZnC+UvgUhEWKxdKiwYUkGltIw==}
+ deprecated: This is a stub types definition. vfile-message provides its own type definitions, so you do not need this installed.
+ dependencies:
+ vfile-message: 4.0.2
+ dev: false
+
+ /@types/vfile@3.0.2:
+ resolution: {integrity: sha512-b3nLFGaGkJ9rzOcuXRfHkZMdjsawuDD0ENL9fzTophtBg8FJHSGbH7daXkEpcwy3v7Xol3pAvsmlYyFhR4pqJw==}
+ dependencies:
+ '@types/node': 18.19.17
+ '@types/unist': 3.0.2
+ '@types/vfile-message': 2.0.0
dev: false
/@types/wait-on@5.3.4:
resolution: {integrity: sha512-EBsPjFMrFlMbbUFf9D1Fp+PAB2TwmUn7a3YtHyD9RLuTIk1jDd8SxXVAoez2Ciy+8Jsceo2MYEYZzJ/DvorOKw==}
dependencies:
- '@types/node': 18.19.31
+ '@types/node': 18.19.17
dev: true
/@types/wordpress__block-editor@11.5.0(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-Q4aY88Q2eq3At5tLDEHeR7CFRrf+CHx8+JdMq8RMlsZFdnUKGoRVrqCg8sKqVTelljEtiBCbSisbgf4UltnOxg==}
dependencies:
- '@types/react': 18.2.46
+ '@types/react': 18.2.60
'@types/wordpress__blocks': 12.5.0(react-dom@18.2.0)(react@18.2.0)
'@types/wordpress__components': 23.0.1(react-dom@18.2.0)(react@18.2.0)
- '@types/wordpress__keycodes': 2.18.0
+ '@types/wordpress__keycodes': 2.3.3
'@wordpress/data': 8.6.0(react@18.2.0)
- '@wordpress/element': 5.32.0
+ '@wordpress/element': 5.25.0
react-autosize-textarea: 7.1.0(react-dom@18.2.0)(react@18.2.0)
transitivePeerDependencies:
- react
@@ -9896,11 +9857,11 @@ packages:
/@types/wordpress__blocks@12.5.0(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-SGuNlBUYlzZTJmuc/iCfYGAj7QzLXxcJShSMPdPjay8k52Zy9PvCOcie+owpi2EHPZADAKhLrSzQFUh1F2F7PA==}
dependencies:
- '@types/react': 18.2.46
+ '@types/react': 18.2.60
'@types/wordpress__components': 23.0.1(react-dom@18.2.0)(react@18.2.0)
'@types/wordpress__shortcode': 2.3.6
'@wordpress/data': 8.6.0(react@18.2.0)
- '@wordpress/element': 5.32.0
+ '@wordpress/element': 5.25.0
transitivePeerDependencies:
- react
- react-dom
@@ -9909,11 +9870,11 @@ packages:
/@types/wordpress__components@23.0.1(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-mpAVr74ElANYR6f8+atultx4A1Md40vZeKfA2ZtgcJMWXQWez3OzP1W2g20BENxOo2kWVsp1r3Tcik/mt/8l/g==}
dependencies:
- '@types/react': 18.2.46
+ '@types/react': 18.2.60
'@types/tinycolor2': 1.4.6
- '@types/wordpress__notices': 4.0.0(react@18.2.0)
- '@types/wordpress__rich-text': 6.10.0(react@18.2.0)
- '@wordpress/element': 5.32.0
+ '@types/wordpress__notices': 3.27.6(react@18.2.0)
+ '@types/wordpress__rich-text': 6.4.5(react@18.2.0)
+ '@wordpress/element': 5.25.0
downshift: 6.1.12(react@18.2.0)
re-resizable: 6.9.11(react-dom@18.2.0)(react@18.2.0)
transitivePeerDependencies:
@@ -9924,9 +9885,9 @@ packages:
/@types/wordpress__compose@6.0.1:
resolution: {integrity: sha512-LBGIgpJPOc1WIpZyc1O6CtquhBu0mxNc7mrVdwWm+6oXGfFuWTdoYwpVJpEONXBJYNVXzQ2jM7w+UeMHFHm6CQ==}
dependencies:
- '@types/lodash': 4.17.0
- '@types/react': 18.2.46
- '@wordpress/element': 5.32.0
+ '@types/lodash': 4.14.202
+ '@types/react': 18.2.60
+ '@wordpress/element': 5.25.0
dev: true
/@types/wordpress__core-data@2.4.5:
@@ -9936,31 +9897,28 @@ packages:
/@types/wordpress__data@6.0.2:
resolution: {integrity: sha512-Pu67knXXoTWgCpxTKwePNZz/iKkYe8AQbkkSD/Ba1mw8t4zgEM+jJs5IV5N5ij/awwjs4Subj8mkvS3jMTDwyw==}
dependencies:
- '@types/react': 18.2.46
+ '@types/react': 18.2.60
redux: 4.2.1
dev: true
/@types/wordpress__editor@13.0.0(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-hqnO/L82pY90l5XX88nhJjGxHyKAC5Q2k68bQaUPIHduRi28jCoKrWw/s6Wa6DesFBealF/at6Df8ooQY0TZcQ==}
dependencies:
- '@types/react': 18.2.46
+ '@types/react': 18.2.60
'@types/wordpress__block-editor': 11.5.0(react-dom@18.2.0)(react@18.2.0)
'@types/wordpress__blocks': 12.5.0(react-dom@18.2.0)(react@18.2.0)
'@types/wordpress__components': 23.0.1(react-dom@18.2.0)(react@18.2.0)
'@types/wordpress__core-data': 2.4.5
'@types/wordpress__data': 6.0.2
'@types/wordpress__media-utils': 4.14.4(react-dom@18.2.0)(react@18.2.0)
- '@wordpress/element': 5.32.0
+ '@wordpress/element': 5.25.0
transitivePeerDependencies:
- react
- react-dom
dev: true
- /@types/wordpress__keycodes@2.18.0:
- resolution: {integrity: sha512-09ku81E6tjB//bI5PatKM/rhTJ0aEmNLvhIn380orea+SX6/09t7luO27zxI0uHSs/1Pxue1ifrMKY+gE5lfzw==}
- deprecated: This is a stub types definition. @wordpress/keycodes provides its own type definitions, so you do not need this installed.
- dependencies:
- '@wordpress/keycodes': 3.55.0
+ /@types/wordpress__keycodes@2.3.3:
+ resolution: {integrity: sha512-jOI0L5NbLc0Ht/vkbZwgBfgWZbPKexXS+nxlYZ0kHQCjVCM7tdSwptItksCY3Qc9IV2nRc1pTnj/UJC2E2cUQw==}
dev: true
/@types/wordpress__media-utils@4.14.4(react-dom@18.2.0)(react@18.2.0):
@@ -9968,26 +9926,26 @@ packages:
dependencies:
'@types/wordpress__block-editor': 11.5.0(react-dom@18.2.0)(react@18.2.0)
'@wordpress/core-data': 5.5.0(react@18.2.0)
- '@wordpress/element': 5.32.0
+ '@wordpress/element': 5.25.0
transitivePeerDependencies:
- react
- react-dom
dev: true
- /@types/wordpress__notices@4.0.0(react@18.2.0):
- resolution: {integrity: sha512-mceFxFkj2jJvnzGG3d1AY3nT+IgcTJR5fRaWz2NS+JbqrHNO+YbIlb6cqlvqS9FlrAJvFrSHHhji9dghqNeUow==}
- deprecated: This is a stub types definition. @wordpress/notices provides its own type definitions, so you do not need this installed.
+ /@types/wordpress__notices@3.27.6(react@18.2.0):
+ resolution: {integrity: sha512-cKK9Cu/br81XqNwxUTRjwGZuLtf6Ug76O77Qc1YF4+RhY8pruxKcWa2+TYzojeh6/83HXw4JjXY7tiI/WD4uoA==}
dependencies:
- '@wordpress/notices': 4.23.0(react@18.2.0)
+ '@types/react': 18.2.60
+ '@wordpress/data': 9.18.0(react@18.2.0)
transitivePeerDependencies:
- react
dev: true
- /@types/wordpress__rich-text@6.10.0(react@18.2.0):
- resolution: {integrity: sha512-NrG+000/kI0ltUe1uT750E/YuHzDceAFbrcEG7AY81BoqUBNhjUE8QNOwt07V6QXZ/tPcKEdhGOGMs9K9SrHKg==}
- deprecated: This is a stub types definition. @wordpress/rich-text provides its own type definitions, so you do not need this installed.
+ /@types/wordpress__rich-text@6.4.5(react@18.2.0):
+ resolution: {integrity: sha512-t+3EvAxkByO6/naRM5FKr1s33d72L/qHLXXdmHiPm54xUxIW6azQFhUWfScRlCcFTlszdwgJyqpaw4HJQIiZ8g==}
dependencies:
- '@wordpress/rich-text': 6.32.0(react@18.2.0)
+ '@types/react': 18.2.60
+ '@wordpress/data': 9.18.0(react@18.2.0)
transitivePeerDependencies:
- react
dev: true
@@ -9999,7 +9957,7 @@ packages:
/@types/ws@8.5.10:
resolution: {integrity: sha512-vmQSUcfalpIq0R9q7uTo2lXs6eGIpt9wtnLdMv9LVpIjCA/+ufZRozlVoVelIYixx1ugCBKDhn89vnsEGOCx9A==}
dependencies:
- '@types/node': 18.19.31
+ '@types/node': 18.19.17
/@types/yargs-parser@21.0.3:
resolution: {integrity: sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ==}
@@ -10019,7 +9977,7 @@ packages:
resolution: {integrity: sha512-oJoftv0LSuaDZE3Le4DbKX+KS9G36NzOeSap90UIK0yMA/NhKJhqlSGtNDORNRaIbQfzjXDrQa0ytJ6mNRGz/Q==}
requiresBuild: true
dependencies:
- '@types/node': 18.19.31
+ '@types/node': 18.19.17
dev: false
optional: true
@@ -10048,13 +10006,14 @@ packages:
debug: 4.3.4
eslint: 7.32.0
graphemer: 1.4.0
- ignore: 5.3.1
+ ignore: 5.3.0
natural-compare-lite: 1.4.0
- semver: 7.6.0
+ semver: 7.5.4
tsutils: 3.21.0(typescript@4.9.5)
typescript: 4.9.5
transitivePeerDependencies:
- supports-color
+ dev: false
/@typescript-eslint/eslint-plugin@5.62.0(@typescript-eslint/parser@5.62.0)(eslint@7.32.0)(typescript@5.3.3):
resolution: {integrity: sha512-TiZzBSJja/LbhNPvk6yc0JrX9XqhQ0hdh6M2svYfsHGejaKFIAGd9MQ+ERIMzLGlN/kZoYIgdxFV0PuljTKXag==}
@@ -10075,15 +10034,16 @@ packages:
debug: 4.3.4
eslint: 7.32.0
graphemer: 1.4.0
- ignore: 5.3.1
+ ignore: 5.3.0
natural-compare-lite: 1.4.0
- semver: 7.6.0
+ semver: 7.5.4
tsutils: 3.21.0(typescript@5.3.3)
typescript: 5.3.3
transitivePeerDependencies:
- supports-color
+ dev: true
- /@typescript-eslint/eslint-plugin@5.62.0(@typescript-eslint/parser@5.62.0)(eslint@7.32.0)(typescript@5.4.4):
+ /@typescript-eslint/eslint-plugin@5.62.0(@typescript-eslint/parser@5.62.0)(eslint@7.32.0)(typescript@5.4.2):
resolution: {integrity: sha512-TiZzBSJja/LbhNPvk6yc0JrX9XqhQ0hdh6M2svYfsHGejaKFIAGd9MQ+ERIMzLGlN/kZoYIgdxFV0PuljTKXag==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
@@ -10095,51 +10055,20 @@ packages:
optional: true
dependencies:
'@eslint-community/regexpp': 4.10.0
- '@typescript-eslint/parser': 5.62.0(eslint@7.32.0)(typescript@5.4.4)
+ '@typescript-eslint/parser': 5.62.0(eslint@7.32.0)(typescript@5.4.2)
'@typescript-eslint/scope-manager': 5.62.0
- '@typescript-eslint/type-utils': 5.62.0(eslint@7.32.0)(typescript@5.4.4)
- '@typescript-eslint/utils': 5.62.0(eslint@7.32.0)(typescript@5.4.4)
+ '@typescript-eslint/type-utils': 5.62.0(eslint@7.32.0)(typescript@5.4.2)
+ '@typescript-eslint/utils': 5.62.0(eslint@7.32.0)(typescript@5.4.2)
debug: 4.3.4
eslint: 7.32.0
graphemer: 1.4.0
- ignore: 5.3.1
+ ignore: 5.3.0
natural-compare-lite: 1.4.0
- semver: 7.6.0
- tsutils: 3.21.0(typescript@5.4.4)
- typescript: 5.4.4
- transitivePeerDependencies:
- - supports-color
- dev: false
- optional: true
-
- /@typescript-eslint/eslint-plugin@6.17.0(@typescript-eslint/parser@6.17.0)(eslint@7.0.0)(typescript@5.3.3):
- resolution: {integrity: sha512-Vih/4xLXmY7V490dGwBQJTpIZxH4ZFH6eCVmQ4RFkB+wmaCTDAx4dtgoWwMNGKLkqRY1L6rPqzEbjorRnDo4rQ==}
- engines: {node: ^16.0.0 || >=18.0.0}
- peerDependencies:
- '@typescript-eslint/parser': ^6.0.0 || ^6.0.0-alpha
- eslint: ^7.0.0 || ^8.0.0
- typescript: '*'
- peerDependenciesMeta:
- typescript:
- optional: true
- dependencies:
- '@eslint-community/regexpp': 4.10.0
- '@typescript-eslint/parser': 6.17.0(eslint@7.0.0)(typescript@5.3.3)
- '@typescript-eslint/scope-manager': 6.17.0
- '@typescript-eslint/type-utils': 6.17.0(eslint@7.0.0)(typescript@5.3.3)
- '@typescript-eslint/utils': 6.17.0(eslint@7.0.0)(typescript@5.3.3)
- '@typescript-eslint/visitor-keys': 6.17.0
- debug: 4.3.4
- eslint: 7.0.0
- graphemer: 1.4.0
- ignore: 5.3.1
- natural-compare: 1.4.0
- semver: 7.6.0
- ts-api-utils: 1.3.0(typescript@5.3.3)
- typescript: 5.3.3
+ semver: 7.5.4
+ tsutils: 3.21.0(typescript@5.4.2)
+ typescript: 5.4.2
transitivePeerDependencies:
- supports-color
- dev: true
/@typescript-eslint/eslint-plugin@6.17.0(@typescript-eslint/parser@6.17.0)(eslint@7.32.0)(typescript@5.3.3):
resolution: {integrity: sha512-Vih/4xLXmY7V490dGwBQJTpIZxH4ZFH6eCVmQ4RFkB+wmaCTDAx4dtgoWwMNGKLkqRY1L6rPqzEbjorRnDo4rQ==}
@@ -10161,10 +10090,10 @@ packages:
debug: 4.3.4
eslint: 7.32.0
graphemer: 1.4.0
- ignore: 5.3.1
+ ignore: 5.3.0
natural-compare: 1.4.0
- semver: 7.6.0
- ts-api-utils: 1.3.0(typescript@5.3.3)
+ semver: 7.5.4
+ ts-api-utils: 1.0.3(typescript@5.3.3)
typescript: 5.3.3
transitivePeerDependencies:
- supports-color
@@ -10188,6 +10117,7 @@ packages:
typescript: 4.9.5
transitivePeerDependencies:
- supports-color
+ dev: false
/@typescript-eslint/parser@5.62.0(eslint@7.32.0)(typescript@5.3.3):
resolution: {integrity: sha512-VlJEV0fOQ7BExOsHYAGrgbEiZoi8D+Bl2+f6V2RrXerRSylnp+ZBHmPvaIa8cz0Ajx7WO7Z5RqfgYg7ED1nRhA==}
@@ -10208,7 +10138,7 @@ packages:
transitivePeerDependencies:
- supports-color
- /@typescript-eslint/parser@5.62.0(eslint@7.32.0)(typescript@5.4.4):
+ /@typescript-eslint/parser@5.62.0(eslint@7.32.0)(typescript@5.4.2):
resolution: {integrity: sha512-VlJEV0fOQ7BExOsHYAGrgbEiZoi8D+Bl2+f6V2RrXerRSylnp+ZBHmPvaIa8cz0Ajx7WO7Z5RqfgYg7ED1nRhA==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
@@ -10220,35 +10150,12 @@ packages:
dependencies:
'@typescript-eslint/scope-manager': 5.62.0
'@typescript-eslint/types': 5.62.0
- '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.4.4)
+ '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.4.2)
debug: 4.3.4
eslint: 7.32.0
- typescript: 5.4.4
- transitivePeerDependencies:
- - supports-color
- dev: false
- optional: true
-
- /@typescript-eslint/parser@6.17.0(eslint@7.0.0)(typescript@5.3.3):
- resolution: {integrity: sha512-C4bBaX2orvhK+LlwrY8oWGmSl4WolCfYm513gEccdWZj0CwGadbIADb0FtVEcI+WzUyjyoBj2JRP8g25E6IB8A==}
- engines: {node: ^16.0.0 || >=18.0.0}
- peerDependencies:
- eslint: ^7.0.0 || ^8.0.0
- typescript: '*'
- peerDependenciesMeta:
- typescript:
- optional: true
- dependencies:
- '@typescript-eslint/scope-manager': 6.17.0
- '@typescript-eslint/types': 6.17.0
- '@typescript-eslint/typescript-estree': 6.17.0(typescript@5.3.3)
- '@typescript-eslint/visitor-keys': 6.17.0
- debug: 4.3.4
- eslint: 7.0.0
- typescript: 5.3.3
+ typescript: 5.4.2
transitivePeerDependencies:
- supports-color
- dev: true
/@typescript-eslint/parser@6.17.0(eslint@7.32.0)(typescript@5.3.3):
resolution: {integrity: sha512-C4bBaX2orvhK+LlwrY8oWGmSl4WolCfYm513gEccdWZj0CwGadbIADb0FtVEcI+WzUyjyoBj2JRP8g25E6IB8A==}
@@ -10269,10 +10176,12 @@ packages:
typescript: 5.3.3
transitivePeerDependencies:
- supports-color
+ dev: true
/@typescript-eslint/scope-manager@5.62.0:
resolution: {integrity: sha512-VXuvVvZeQCQb5Zgf4HAxc04q5j+WrNAtNh9OwCsCgpKqESMTu3tF/jhZ3xG6T4NZwWl65Bg8KuS2uEvhSfLl0w==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
+ requiresBuild: true
dependencies:
'@typescript-eslint/types': 5.62.0
'@typescript-eslint/visitor-keys': 5.62.0
@@ -10283,18 +10192,12 @@ packages:
dependencies:
'@typescript-eslint/types': 6.17.0
'@typescript-eslint/visitor-keys': 6.17.0
-
- /@typescript-eslint/scope-manager@6.21.0:
- resolution: {integrity: sha512-OwLUIWZJry80O99zvqXVEioyniJMa+d2GrqpUTqi5/v5D5rOrppJVBPa0yKCblcigC0/aYAzxxqQ1B+DS2RYsg==}
- engines: {node: ^16.0.0 || >=18.0.0}
- dependencies:
- '@typescript-eslint/types': 6.21.0
- '@typescript-eslint/visitor-keys': 6.21.0
dev: true
/@typescript-eslint/type-utils@5.62.0(eslint@7.32.0)(typescript@4.9.5):
resolution: {integrity: sha512-xsSQreu+VnfbqQpW5vnCJdq1Z3Q0U31qiWmRhr98ONQmcp/yhiPJFPq8MXiJVLiksmOKSjIldZzkebzHuCGzew==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
+ requiresBuild: true
peerDependencies:
eslint: '*'
typescript: '*'
@@ -10310,10 +10213,12 @@ packages:
typescript: 4.9.5
transitivePeerDependencies:
- supports-color
+ dev: false
/@typescript-eslint/type-utils@5.62.0(eslint@7.32.0)(typescript@5.3.3):
resolution: {integrity: sha512-xsSQreu+VnfbqQpW5vnCJdq1Z3Q0U31qiWmRhr98ONQmcp/yhiPJFPq8MXiJVLiksmOKSjIldZzkebzHuCGzew==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
+ requiresBuild: true
peerDependencies:
eslint: '*'
typescript: '*'
@@ -10329,10 +10234,12 @@ packages:
typescript: 5.3.3
transitivePeerDependencies:
- supports-color
+ dev: true
- /@typescript-eslint/type-utils@5.62.0(eslint@7.32.0)(typescript@5.4.4):
+ /@typescript-eslint/type-utils@5.62.0(eslint@7.32.0)(typescript@5.4.2):
resolution: {integrity: sha512-xsSQreu+VnfbqQpW5vnCJdq1Z3Q0U31qiWmRhr98ONQmcp/yhiPJFPq8MXiJVLiksmOKSjIldZzkebzHuCGzew==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
+ requiresBuild: true
peerDependencies:
eslint: '*'
typescript: '*'
@@ -10340,36 +10247,14 @@ packages:
typescript:
optional: true
dependencies:
- '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.4.4)
- '@typescript-eslint/utils': 5.62.0(eslint@7.32.0)(typescript@5.4.4)
+ '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.4.2)
+ '@typescript-eslint/utils': 5.62.0(eslint@7.32.0)(typescript@5.4.2)
debug: 4.3.4
eslint: 7.32.0
- tsutils: 3.21.0(typescript@5.4.4)
- typescript: 5.4.4
- transitivePeerDependencies:
- - supports-color
- dev: false
- optional: true
-
- /@typescript-eslint/type-utils@6.17.0(eslint@7.0.0)(typescript@5.3.3):
- resolution: {integrity: sha512-hDXcWmnbtn4P2B37ka3nil3yi3VCQO2QEB9gBiHJmQp5wmyQWqnjA85+ZcE8c4FqnaB6lBwMrPkgd4aBYz3iNg==}
- engines: {node: ^16.0.0 || >=18.0.0}
- peerDependencies:
- eslint: ^7.0.0 || ^8.0.0
- typescript: '*'
- peerDependenciesMeta:
- typescript:
- optional: true
- dependencies:
- '@typescript-eslint/typescript-estree': 6.17.0(typescript@5.3.3)
- '@typescript-eslint/utils': 6.17.0(eslint@7.0.0)(typescript@5.3.3)
- debug: 4.3.4
- eslint: 7.0.0
- ts-api-utils: 1.3.0(typescript@5.3.3)
- typescript: 5.3.3
+ tsutils: 3.21.0(typescript@5.4.2)
+ typescript: 5.4.2
transitivePeerDependencies:
- supports-color
- dev: true
/@typescript-eslint/type-utils@6.17.0(eslint@7.32.0)(typescript@5.3.3):
resolution: {integrity: sha512-hDXcWmnbtn4P2B37ka3nil3yi3VCQO2QEB9gBiHJmQp5wmyQWqnjA85+ZcE8c4FqnaB6lBwMrPkgd4aBYz3iNg==}
@@ -10385,7 +10270,7 @@ packages:
'@typescript-eslint/utils': 6.17.0(eslint@7.32.0)(typescript@5.3.3)
debug: 4.3.4
eslint: 7.32.0
- ts-api-utils: 1.3.0(typescript@5.3.3)
+ ts-api-utils: 1.0.3(typescript@5.3.3)
typescript: 5.3.3
transitivePeerDependencies:
- supports-color
@@ -10394,17 +10279,14 @@ packages:
/@typescript-eslint/types@5.62.0:
resolution: {integrity: sha512-87NVngcbVXUahrRTqIK27gD2t5Cu1yuCXxbLcFtCzZGlfyVWWh8mLHkoxzjsB6DDNnvdL+fW8MiwPEJyGJQDgQ==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
+ requiresBuild: true
/@typescript-eslint/types@6.17.0:
resolution: {integrity: sha512-qRKs9tvc3a4RBcL/9PXtKSehI/q8wuU9xYJxe97WFxnzH8NWWtcW3ffNS+EWg8uPvIerhjsEZ+rHtDqOCiH57A==}
engines: {node: ^16.0.0 || >=18.0.0}
-
- /@typescript-eslint/types@6.21.0:
- resolution: {integrity: sha512-1kFmZ1rOm5epu9NZEZm1kckCDGj5UJEf7P1kliH4LKu/RkwpsfqqGmY2OOcUs18lSlQBKLDYBOGxRVtrMN5lpg==}
- engines: {node: ^16.0.0 || >=18.0.0}
dev: true
- /@typescript-eslint/typescript-estree@5.62.0(supports-color@9.4.0)(typescript@5.4.4):
+ /@typescript-eslint/typescript-estree@5.62.0(supports-color@9.4.0)(typescript@5.4.2):
resolution: {integrity: sha512-CmcQ6uY7b9y694lKdRB8FEel7JbU/40iSAPomu++SjLMntB+2Leay2LO6i8VnJk58MtE9/nQSFIH6jpyRWyYzA==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
@@ -10418,9 +10300,9 @@ packages:
debug: 4.3.4(supports-color@9.4.0)
globby: 11.1.0
is-glob: 4.0.3
- semver: 7.6.0
- tsutils: 3.21.0(typescript@5.4.4)
- typescript: 5.4.4
+ semver: 7.5.4
+ tsutils: 3.21.0(typescript@5.4.2)
+ typescript: 5.4.2
transitivePeerDependencies:
- supports-color
dev: false
@@ -10439,11 +10321,12 @@ packages:
debug: 4.3.4
globby: 11.1.0
is-glob: 4.0.3
- semver: 7.6.0
+ semver: 7.5.4
tsutils: 3.21.0(typescript@4.9.5)
typescript: 4.9.5
transitivePeerDependencies:
- supports-color
+ dev: false
/@typescript-eslint/typescript-estree@5.62.0(typescript@5.3.3):
resolution: {integrity: sha512-CmcQ6uY7b9y694lKdRB8FEel7JbU/40iSAPomu++SjLMntB+2Leay2LO6i8VnJk58MtE9/nQSFIH6jpyRWyYzA==}
@@ -10459,13 +10342,13 @@ packages:
debug: 4.3.4
globby: 11.1.0
is-glob: 4.0.3
- semver: 7.6.0
+ semver: 7.5.4
tsutils: 3.21.0(typescript@5.3.3)
typescript: 5.3.3
transitivePeerDependencies:
- supports-color
- /@typescript-eslint/typescript-estree@5.62.0(typescript@5.4.4):
+ /@typescript-eslint/typescript-estree@5.62.0(typescript@5.4.2):
resolution: {integrity: sha512-CmcQ6uY7b9y694lKdRB8FEel7JbU/40iSAPomu++SjLMntB+2Leay2LO6i8VnJk58MtE9/nQSFIH6jpyRWyYzA==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
@@ -10479,12 +10362,11 @@ packages:
debug: 4.3.4
globby: 11.1.0
is-glob: 4.0.3
- semver: 7.6.0
- tsutils: 3.21.0(typescript@5.4.4)
- typescript: 5.4.4
+ semver: 7.5.4
+ tsutils: 3.21.0(typescript@5.4.2)
+ typescript: 5.4.2
transitivePeerDependencies:
- supports-color
- dev: false
/@typescript-eslint/typescript-estree@6.17.0(typescript@5.3.3):
resolution: {integrity: sha512-gVQe+SLdNPfjlJn5VNGhlOhrXz4cajwFd5kAgWtZ9dCZf4XJf8xmgCTLIqec7aha3JwgLI2CK6GY1043FRxZwg==}
@@ -10501,14 +10383,15 @@ packages:
globby: 11.1.0
is-glob: 4.0.3
minimatch: 9.0.3
- semver: 7.6.0
- ts-api-utils: 1.3.0(typescript@5.3.3)
+ semver: 7.5.4
+ ts-api-utils: 1.0.3(typescript@5.3.3)
typescript: 5.3.3
transitivePeerDependencies:
- supports-color
+ dev: true
- /@typescript-eslint/typescript-estree@6.21.0(typescript@5.3.3):
- resolution: {integrity: sha512-6npJTkZcO+y2/kr+z0hc4HwNfrrP4kNYh57ek7yCNlrBjWQ1Y0OS7jiZTkgumrvkX5HkEKXFZkkdFNkaW2wmUQ==}
+ /@typescript-eslint/typescript-estree@6.17.0(typescript@5.4.2):
+ resolution: {integrity: sha512-gVQe+SLdNPfjlJn5VNGhlOhrXz4cajwFd5kAgWtZ9dCZf4XJf8xmgCTLIqec7aha3JwgLI2CK6GY1043FRxZwg==}
engines: {node: ^16.0.0 || >=18.0.0}
peerDependencies:
typescript: '*'
@@ -10516,15 +10399,15 @@ packages:
typescript:
optional: true
dependencies:
- '@typescript-eslint/types': 6.21.0
- '@typescript-eslint/visitor-keys': 6.21.0
+ '@typescript-eslint/types': 6.17.0
+ '@typescript-eslint/visitor-keys': 6.17.0
debug: 4.3.4
globby: 11.1.0
is-glob: 4.0.3
minimatch: 9.0.3
- semver: 7.6.0
- ts-api-utils: 1.3.0(typescript@5.3.3)
- typescript: 5.3.3
+ semver: 7.5.4
+ ts-api-utils: 1.0.3(typescript@5.4.2)
+ typescript: 5.4.2
transitivePeerDependencies:
- supports-color
dev: true
@@ -10532,80 +10415,64 @@ packages:
/@typescript-eslint/utils@5.62.0(eslint@7.32.0)(typescript@4.9.5):
resolution: {integrity: sha512-n8oxjeb5aIbPFEtmQxQYOLI0i9n5ySBEY/ZEHHZqKQSFnxio1rv6dthascc9dLuwrL0RC5mPCxB7vnAVGAYWAQ==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
+ requiresBuild: true
peerDependencies:
eslint: ^6.0.0 || ^7.0.0 || ^8.0.0
dependencies:
'@eslint-community/eslint-utils': 4.4.0(eslint@7.32.0)
'@types/json-schema': 7.0.15
- '@types/semver': 7.5.8
+ '@types/semver': 7.5.6
'@typescript-eslint/scope-manager': 5.62.0
'@typescript-eslint/types': 5.62.0
'@typescript-eslint/typescript-estree': 5.62.0(typescript@4.9.5)
eslint: 7.32.0
eslint-scope: 5.1.1
- semver: 7.6.0
+ semver: 7.5.4
transitivePeerDependencies:
- supports-color
- typescript
+ dev: false
/@typescript-eslint/utils@5.62.0(eslint@7.32.0)(typescript@5.3.3):
resolution: {integrity: sha512-n8oxjeb5aIbPFEtmQxQYOLI0i9n5ySBEY/ZEHHZqKQSFnxio1rv6dthascc9dLuwrL0RC5mPCxB7vnAVGAYWAQ==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
+ requiresBuild: true
peerDependencies:
eslint: ^6.0.0 || ^7.0.0 || ^8.0.0
dependencies:
'@eslint-community/eslint-utils': 4.4.0(eslint@7.32.0)
'@types/json-schema': 7.0.15
- '@types/semver': 7.5.8
+ '@types/semver': 7.5.6
'@typescript-eslint/scope-manager': 5.62.0
'@typescript-eslint/types': 5.62.0
'@typescript-eslint/typescript-estree': 5.62.0(typescript@5.3.3)
eslint: 7.32.0
eslint-scope: 5.1.1
- semver: 7.6.0
+ semver: 7.5.4
transitivePeerDependencies:
- supports-color
- typescript
+ dev: true
- /@typescript-eslint/utils@5.62.0(eslint@7.32.0)(typescript@5.4.4):
+ /@typescript-eslint/utils@5.62.0(eslint@7.32.0)(typescript@5.4.2):
resolution: {integrity: sha512-n8oxjeb5aIbPFEtmQxQYOLI0i9n5ySBEY/ZEHHZqKQSFnxio1rv6dthascc9dLuwrL0RC5mPCxB7vnAVGAYWAQ==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
+ requiresBuild: true
peerDependencies:
eslint: ^6.0.0 || ^7.0.0 || ^8.0.0
dependencies:
'@eslint-community/eslint-utils': 4.4.0(eslint@7.32.0)
'@types/json-schema': 7.0.15
- '@types/semver': 7.5.8
+ '@types/semver': 7.5.6
'@typescript-eslint/scope-manager': 5.62.0
'@typescript-eslint/types': 5.62.0
- '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.4.4)
+ '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.4.2)
eslint: 7.32.0
eslint-scope: 5.1.1
- semver: 7.6.0
- transitivePeerDependencies:
- - supports-color
- - typescript
- dev: false
- optional: true
-
- /@typescript-eslint/utils@6.17.0(eslint@7.0.0)(typescript@5.3.3):
- resolution: {integrity: sha512-LofsSPjN/ITNkzV47hxas2JCsNCEnGhVvocfyOcLzT9c/tSZE7SfhS/iWtzP1lKNOEfLhRTZz6xqI8N2RzweSQ==}
- engines: {node: ^16.0.0 || >=18.0.0}
- peerDependencies:
- eslint: ^7.0.0 || ^8.0.0
- dependencies:
- '@eslint-community/eslint-utils': 4.4.0(eslint@7.0.0)
- '@types/json-schema': 7.0.15
- '@types/semver': 7.5.8
- '@typescript-eslint/scope-manager': 6.17.0
- '@typescript-eslint/types': 6.17.0
- '@typescript-eslint/typescript-estree': 6.17.0(typescript@5.3.3)
- eslint: 7.0.0
- semver: 7.6.0
+ semver: 7.5.4
transitivePeerDependencies:
- supports-color
- typescript
- dev: true
/@typescript-eslint/utils@6.17.0(eslint@7.32.0)(typescript@5.3.3):
resolution: {integrity: sha512-LofsSPjN/ITNkzV47hxas2JCsNCEnGhVvocfyOcLzT9c/tSZE7SfhS/iWtzP1lKNOEfLhRTZz6xqI8N2RzweSQ==}
@@ -10615,31 +10482,31 @@ packages:
dependencies:
'@eslint-community/eslint-utils': 4.4.0(eslint@7.32.0)
'@types/json-schema': 7.0.15
- '@types/semver': 7.5.8
+ '@types/semver': 7.5.6
'@typescript-eslint/scope-manager': 6.17.0
'@typescript-eslint/types': 6.17.0
'@typescript-eslint/typescript-estree': 6.17.0(typescript@5.3.3)
eslint: 7.32.0
- semver: 7.6.0
+ semver: 7.5.4
transitivePeerDependencies:
- supports-color
- typescript
dev: true
- /@typescript-eslint/utils@6.21.0(eslint@7.32.0)(typescript@5.3.3):
- resolution: {integrity: sha512-NfWVaC8HP9T8cbKQxHcsJBY5YE1O33+jpMwN45qzWWaPDZgLIbo12toGMWnmhvCpd3sIxkpDw3Wv1B3dYrbDQQ==}
+ /@typescript-eslint/utils@6.17.0(eslint@7.32.0)(typescript@5.4.2):
+ resolution: {integrity: sha512-LofsSPjN/ITNkzV47hxas2JCsNCEnGhVvocfyOcLzT9c/tSZE7SfhS/iWtzP1lKNOEfLhRTZz6xqI8N2RzweSQ==}
engines: {node: ^16.0.0 || >=18.0.0}
peerDependencies:
eslint: ^7.0.0 || ^8.0.0
dependencies:
'@eslint-community/eslint-utils': 4.4.0(eslint@7.32.0)
'@types/json-schema': 7.0.15
- '@types/semver': 7.5.8
- '@typescript-eslint/scope-manager': 6.21.0
- '@typescript-eslint/types': 6.21.0
- '@typescript-eslint/typescript-estree': 6.21.0(typescript@5.3.3)
+ '@types/semver': 7.5.6
+ '@typescript-eslint/scope-manager': 6.17.0
+ '@typescript-eslint/types': 6.17.0
+ '@typescript-eslint/typescript-estree': 6.17.0(typescript@5.4.2)
eslint: 7.32.0
- semver: 7.6.0
+ semver: 7.5.4
transitivePeerDependencies:
- supports-color
- typescript
@@ -10648,6 +10515,7 @@ packages:
/@typescript-eslint/visitor-keys@5.62.0:
resolution: {integrity: sha512-07ny+LHRzQXepkGg6w0mFY41fVUNBrL2Roj/++7V1txKugfjm/Ci/qSND03r2RhlJhJYMcTn9AhhSSqQp0Ysyw==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
+ requiresBuild: true
dependencies:
'@typescript-eslint/types': 5.62.0
eslint-visitor-keys: 3.4.3
@@ -10658,13 +10526,6 @@ packages:
dependencies:
'@typescript-eslint/types': 6.17.0
eslint-visitor-keys: 3.4.3
-
- /@typescript-eslint/visitor-keys@6.21.0:
- resolution: {integrity: sha512-JJtkDduxLi9bivAB+cYOVMtbkqdPOhZ+ZI5LC47MIRrDV4Yn2o+ZnW10Nkmr28xRpSpdJ6Sm42Hjf2+REYXm0A==}
- engines: {node: ^16.0.0 || >=18.0.0}
- dependencies:
- '@typescript-eslint/types': 6.21.0
- eslint-visitor-keys: 3.4.3
dev: true
/@vercel/nft@0.23.1:
@@ -10681,7 +10542,7 @@ packages:
glob: 7.2.3
graceful-fs: 4.2.11
micromatch: 4.0.5
- node-gyp-build: 4.8.0
+ node-gyp-build: 4.7.1
resolve-from: 5.0.0
transitivePeerDependencies:
- encoding
@@ -10702,7 +10563,7 @@ packages:
glob: 7.2.3
graceful-fs: 4.2.11
micromatch: 4.0.5
- node-gyp-build: 4.8.0
+ node-gyp-build: 4.7.1
resolve-from: 5.0.0
transitivePeerDependencies:
- encoding
@@ -10717,14 +10578,14 @@ packages:
'@mapbox/node-pre-gyp': 1.0.11
'@rollup/pluginutils': 4.2.1
acorn: 8.11.3
- acorn-import-attributes: 1.9.5(acorn@8.11.3)
+ acorn-import-attributes: 1.9.2(acorn@8.11.3)
async-sema: 3.1.1
bindings: 1.5.0
estree-walker: 2.0.2
glob: 7.2.3
graceful-fs: 4.2.11
micromatch: 4.0.5
- node-gyp-build: 4.8.0
+ node-gyp-build: 4.7.1
resolve-from: 5.0.0
transitivePeerDependencies:
- encoding
@@ -10739,14 +10600,14 @@ packages:
'@mapbox/node-pre-gyp': 1.0.11(supports-color@9.4.0)
'@rollup/pluginutils': 4.2.1
acorn: 8.11.3
- acorn-import-attributes: 1.9.5(acorn@8.11.3)
+ acorn-import-attributes: 1.9.2(acorn@8.11.3)
async-sema: 3.1.1
bindings: 1.5.0
estree-walker: 2.0.2
glob: 7.2.3
graceful-fs: 4.2.11
micromatch: 4.0.5
- node-gyp-build: 4.8.0
+ node-gyp-build: 4.7.1
resolve-from: 5.0.0
transitivePeerDependencies:
- encoding
@@ -10763,8 +10624,8 @@ packages:
peerDependencies:
vite: ^4 || ^5
dependencies:
- '@swc/core': 1.4.13
- vite: 5.0.10(@types/node@18.0.0)
+ '@swc/core': 1.3.102
+ vite: 5.0.10(@types/node@18.19.4)
transitivePeerDependencies:
- '@swc/helpers'
dev: true
@@ -10775,12 +10636,12 @@ packages:
peerDependencies:
vite: ^4.1.0-beta.0
dependencies:
- '@babel/core': 7.24.4
- '@babel/plugin-transform-react-jsx-self': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-transform-react-jsx-source': 7.24.1(@babel/core@7.24.4)
+ '@babel/core': 7.23.7
+ '@babel/plugin-transform-react-jsx-self': 7.23.3(@babel/core@7.23.7)
+ '@babel/plugin-transform-react-jsx-source': 7.23.3(@babel/core@7.23.7)
magic-string: 0.27.0
react-refresh: 0.14.0
- vite: 5.0.10(@types/node@18.19.31)
+ vite: 5.0.10(@types/node@18.19.17)
transitivePeerDependencies:
- supports-color
dev: true
@@ -10791,12 +10652,12 @@ packages:
peerDependencies:
vite: ^4.2.0 || ^5.0.0
dependencies:
- '@babel/core': 7.24.4
- '@babel/plugin-transform-react-jsx-self': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-transform-react-jsx-source': 7.24.1(@babel/core@7.24.4)
+ '@babel/core': 7.23.7
+ '@babel/plugin-transform-react-jsx-self': 7.23.3(@babel/core@7.23.7)
+ '@babel/plugin-transform-react-jsx-source': 7.23.3(@babel/core@7.23.7)
'@types/babel__core': 7.20.5
react-refresh: 0.14.0
- vite: 5.0.10(@types/node@18.0.0)
+ vite: 5.0.10(@types/node@18.19.4)
transitivePeerDependencies:
- supports-color
dev: true
@@ -10807,7 +10668,7 @@ packages:
dependencies:
'@vitest/spy': 0.34.6
'@vitest/utils': 0.34.6
- chai: 4.4.1
+ chai: 4.3.10
optional: true
/@vitest/expect@1.1.1:
@@ -10815,7 +10676,7 @@ packages:
dependencies:
'@vitest/spy': 1.1.1
'@vitest/utils': 1.1.1
- chai: 4.4.1
+ chai: 4.3.10
dev: true
/@vitest/expect@1.1.3:
@@ -10823,7 +10684,7 @@ packages:
dependencies:
'@vitest/spy': 1.1.3
'@vitest/utils': 1.1.3
- chai: 4.4.1
+ chai: 4.3.10
dev: true
/@vitest/runner@0.34.6:
@@ -10840,14 +10701,14 @@ packages:
dependencies:
'@vitest/utils': 1.1.1
p-limit: 5.0.0
- pathe: 1.1.2
+ pathe: 1.1.1
dev: true
/@vitest/snapshot@0.34.6:
resolution: {integrity: sha512-B3OZqYn6k4VaN011D+ve+AA4whM4QkcwcrwaKwAbyyvS/NB1hCWjFIBQxAQQSQir9/RtyAAGuq+4RJmbn2dH4w==}
requiresBuild: true
dependencies:
- magic-string: 0.30.9
+ magic-string: 0.30.5
pathe: 1.1.2
pretty-format: 29.7.0
optional: true
@@ -10855,8 +10716,8 @@ packages:
/@vitest/snapshot@1.1.1:
resolution: {integrity: sha512-WnMHjv4VdHLbFGgCdVVvyRkRPnOKN75JJg+LLTdr6ah7YnL75W+7CTIMdzPEPzaDxA8r5yvSVlc1d8lH3yE28w==}
dependencies:
- magic-string: 0.30.9
- pathe: 1.1.2
+ magic-string: 0.30.5
+ pathe: 1.1.1
pretty-format: 29.7.0
dev: true
@@ -10864,40 +10725,41 @@ packages:
resolution: {integrity: sha512-xaCvneSaeBw/cz8ySmF7ZwGvL0lBjfvqc1LpQ/vcdHEvpLn3Ff1vAvjw+CoGn0802l++5L/pxb7whwcWAw+DUQ==}
requiresBuild: true
dependencies:
- tinyspy: 2.2.1
+ tinyspy: 2.2.0
optional: true
/@vitest/spy@1.1.1:
resolution: {integrity: sha512-hDU2KkOTfFp4WFFPWwHFauddwcKuGQ7gF6Un/ZZkCogoAiTMN7/7YKvUDbywPZZ754iCQGjdUmXN3t4k0jm1IQ==}
dependencies:
- tinyspy: 2.2.1
+ tinyspy: 2.2.0
dev: true
/@vitest/spy@1.1.3:
resolution: {integrity: sha512-Ec0qWyGS5LhATFQtldvChPTAHv08yHIOZfiNcjwRQbFPHpkih0md9KAbs7TfeIfL7OFKoe7B/6ukBTqByubXkQ==}
dependencies:
- tinyspy: 2.2.1
+ tinyspy: 2.2.0
dev: true
- /@vitest/spy@1.4.0:
- resolution: {integrity: sha512-Ywau/Qs1DzM/8Uc+yA77CwSegizMlcgTJuYGAi0jujOteJOUf1ujunHThYo243KG9nAyWT3L9ifPYZ5+As/+6Q==}
+ /@vitest/spy@1.2.1:
+ resolution: {integrity: sha512-vG3a/b7INKH7L49Lbp0IWrG6sw9j4waWAucwnksPB1r1FTJgV7nkBByd9ufzu6VWya/QTvQW4V9FShZbZIB2UQ==}
dependencies:
- tinyspy: 2.2.1
+ tinyspy: 2.2.0
dev: true
/@vitest/ui@1.1.1(vitest@1.1.1):
resolution: {integrity: sha512-BibaJ/Ry01XIK4Ctg02omnxt1CbpKcq/jY/o/0UMak543dxtaENdLNz+3rGC2y8kYOEV9AVRhuL2NvZlQEv7xQ==}
+ requiresBuild: true
peerDependencies:
vitest: ^1.0.0
dependencies:
'@vitest/utils': 1.1.1
fast-glob: 3.3.2
- fflate: 0.8.2
- flatted: 3.3.1
- pathe: 1.1.2
+ fflate: 0.8.1
+ flatted: 3.2.9
+ pathe: 1.1.1
picocolors: 1.0.0
sirv: 2.0.4
- vitest: 1.1.1(@types/node@18.0.0)(@vitest/ui@1.1.1)
+ vitest: 1.1.1(@types/node@18.19.4)(@vitest/ui@1.1.1)
dev: true
/@vitest/utils@0.34.6:
@@ -10907,15 +10769,6 @@ packages:
diff-sequences: 29.6.3
loupe: 2.3.7
pretty-format: 29.7.0
- optional: true
-
- /@vitest/utils@0.34.7:
- resolution: {integrity: sha512-ziAavQLpCYS9sLOorGrFFKmy2gnfiNU0ZJ15TsMz/K92NAPS/rp9K4z6AJQQk5Y8adCy4Iwpxy7pQumQ/psnRg==}
- dependencies:
- diff-sequences: 29.6.3
- loupe: 2.3.7
- pretty-format: 29.7.0
- dev: true
/@vitest/utils@1.1.1:
resolution: {integrity: sha512-E9LedH093vST/JuBSyHLFMpxJKW3dLhe/flUSPFedoyj4wKiFX7Jm8gYLtOIiin59dgrssfmFv0BJ1u8P/LC/A==}
@@ -10934,8 +10787,8 @@ packages:
pretty-format: 29.7.0
dev: true
- /@webassemblyjs/ast@1.12.1:
- resolution: {integrity: sha512-EKfMUOPRRUTy5UII4qJDGPpqfwjOmZ5jeGFwid9mnoqIFK+e0vqoi1qH56JpmZSzEL53jKnNzScdmftJyG5xWg==}
+ /@webassemblyjs/ast@1.11.6:
+ resolution: {integrity: sha512-IN1xI7PwOvLPgjcf180gC1bqn3q/QaOCwYUahIOhbYUu8KA/3tw2RT/T0Gidi1l7Hhj5D/INhJxiICObqpMu4Q==}
dependencies:
'@webassemblyjs/helper-numbers': 1.11.6
'@webassemblyjs/helper-wasm-bytecode': 1.11.6
@@ -10946,8 +10799,8 @@ packages:
/@webassemblyjs/helper-api-error@1.11.6:
resolution: {integrity: sha512-o0YkoP4pVu4rN8aTJgAyj9hC2Sv5UlkzCHhxqWj8butaLvnpdc2jOwh4ewE6CX0txSfLn/UYaV/pheS2Txg//Q==}
- /@webassemblyjs/helper-buffer@1.12.1:
- resolution: {integrity: sha512-nzJwQw99DNDKr9BVCOZcLuJJUlqkJh+kVzVl6Fmq/tI5ZtEyWT1KZMyOXltXLZJmDtvLCDgwsyrkohEtopTXCw==}
+ /@webassemblyjs/helper-buffer@1.11.6:
+ resolution: {integrity: sha512-z3nFzdcp1mb8nEOFFk8DrYLpHvhKC3grJD2ardfKOzmbmJvEf/tPIqCY+sNcwZIY8ZD7IkB2l7/pqhUhqm7hLA==}
/@webassemblyjs/helper-numbers@1.11.6:
resolution: {integrity: sha512-vUIhZ8LZoIWHBohiEObxVm6hwP034jwmc9kuq5GdHZH0wiLVLIPcMCdpJzG4C11cHoQ25TFIQj9kaVADVX7N3g==}
@@ -10959,13 +10812,13 @@ packages:
/@webassemblyjs/helper-wasm-bytecode@1.11.6:
resolution: {integrity: sha512-sFFHKwcmBprO9e7Icf0+gddyWYDViL8bpPjJJl0WHxCdETktXdmtWLGVzoHbqUcY4Be1LkNfwTmXOJUFZYSJdA==}
- /@webassemblyjs/helper-wasm-section@1.12.1:
- resolution: {integrity: sha512-Jif4vfB6FJlUlSbgEMHUyk1j234GTNG9dBJ4XJdOySoj518Xj0oGsNi59cUQF4RRMS9ouBUxDDdyBVfPTypa5g==}
+ /@webassemblyjs/helper-wasm-section@1.11.6:
+ resolution: {integrity: sha512-LPpZbSOwTpEC2cgn4hTydySy1Ke+XEu+ETXuoyvuyezHO3Kjdu90KK95Sh9xTbmjrCsUwvWwCOQQNta37VrS9g==}
dependencies:
- '@webassemblyjs/ast': 1.12.1
- '@webassemblyjs/helper-buffer': 1.12.1
+ '@webassemblyjs/ast': 1.11.6
+ '@webassemblyjs/helper-buffer': 1.11.6
'@webassemblyjs/helper-wasm-bytecode': 1.11.6
- '@webassemblyjs/wasm-gen': 1.12.1
+ '@webassemblyjs/wasm-gen': 1.11.6
/@webassemblyjs/ieee754@1.11.6:
resolution: {integrity: sha512-LM4p2csPNvbij6U1f19v6WR56QZ8JcHg3QIJTlSwzFcmx6WSORicYj6I63f9yU1kEUtrpG+kjkiIAkevHpDXrg==}
@@ -10980,49 +10833,49 @@ packages:
/@webassemblyjs/utf8@1.11.6:
resolution: {integrity: sha512-vtXf2wTQ3+up9Zsg8sa2yWiQpzSsMyXj0qViVP6xKGCUT8p8YJ6HqI7l5eCnWx1T/FYdsv07HQs2wTFbbof/RA==}
- /@webassemblyjs/wasm-edit@1.12.1:
- resolution: {integrity: sha512-1DuwbVvADvS5mGnXbE+c9NfA8QRcZ6iKquqjjmR10k6o+zzsRVesil54DKexiowcFCPdr/Q0qaMgB01+SQ1u6g==}
+ /@webassemblyjs/wasm-edit@1.11.6:
+ resolution: {integrity: sha512-Ybn2I6fnfIGuCR+Faaz7YcvtBKxvoLV3Lebn1tM4o/IAJzmi9AWYIPWpyBfU8cC+JxAO57bk4+zdsTjJR+VTOw==}
dependencies:
- '@webassemblyjs/ast': 1.12.1
- '@webassemblyjs/helper-buffer': 1.12.1
+ '@webassemblyjs/ast': 1.11.6
+ '@webassemblyjs/helper-buffer': 1.11.6
'@webassemblyjs/helper-wasm-bytecode': 1.11.6
- '@webassemblyjs/helper-wasm-section': 1.12.1
- '@webassemblyjs/wasm-gen': 1.12.1
- '@webassemblyjs/wasm-opt': 1.12.1
- '@webassemblyjs/wasm-parser': 1.12.1
- '@webassemblyjs/wast-printer': 1.12.1
+ '@webassemblyjs/helper-wasm-section': 1.11.6
+ '@webassemblyjs/wasm-gen': 1.11.6
+ '@webassemblyjs/wasm-opt': 1.11.6
+ '@webassemblyjs/wasm-parser': 1.11.6
+ '@webassemblyjs/wast-printer': 1.11.6
- /@webassemblyjs/wasm-gen@1.12.1:
- resolution: {integrity: sha512-TDq4Ojh9fcohAw6OIMXqiIcTq5KUXTGRkVxbSo1hQnSy6lAM5GSdfwWeSxpAo0YzgsgF182E/U0mDNhuA0tW7w==}
+ /@webassemblyjs/wasm-gen@1.11.6:
+ resolution: {integrity: sha512-3XOqkZP/y6B4F0PBAXvI1/bky7GryoogUtfwExeP/v7Nzwo1QLcq5oQmpKlftZLbT+ERUOAZVQjuNVak6UXjPA==}
dependencies:
- '@webassemblyjs/ast': 1.12.1
+ '@webassemblyjs/ast': 1.11.6
'@webassemblyjs/helper-wasm-bytecode': 1.11.6
'@webassemblyjs/ieee754': 1.11.6
'@webassemblyjs/leb128': 1.11.6
'@webassemblyjs/utf8': 1.11.6
- /@webassemblyjs/wasm-opt@1.12.1:
- resolution: {integrity: sha512-Jg99j/2gG2iaz3hijw857AVYekZe2SAskcqlWIZXjji5WStnOpVoat3gQfT/Q5tb2djnCjBtMocY/Su1GfxPBg==}
+ /@webassemblyjs/wasm-opt@1.11.6:
+ resolution: {integrity: sha512-cOrKuLRE7PCe6AsOVl7WasYf3wbSo4CeOk6PkrjS7g57MFfVUF9u6ysQBBODX0LdgSvQqRiGz3CXvIDKcPNy4g==}
dependencies:
- '@webassemblyjs/ast': 1.12.1
- '@webassemblyjs/helper-buffer': 1.12.1
- '@webassemblyjs/wasm-gen': 1.12.1
- '@webassemblyjs/wasm-parser': 1.12.1
+ '@webassemblyjs/ast': 1.11.6
+ '@webassemblyjs/helper-buffer': 1.11.6
+ '@webassemblyjs/wasm-gen': 1.11.6
+ '@webassemblyjs/wasm-parser': 1.11.6
- /@webassemblyjs/wasm-parser@1.12.1:
- resolution: {integrity: sha512-xikIi7c2FHXysxXe3COrVUPSheuBtpcfhbpFj4gmu7KRLYOzANztwUU0IbsqvMqzuNK2+glRGWCEqZo1WCLyAQ==}
+ /@webassemblyjs/wasm-parser@1.11.6:
+ resolution: {integrity: sha512-6ZwPeGzMJM3Dqp3hCsLgESxBGtT/OeCvCZ4TA1JUPYgmhAx38tTPR9JaKy0S5H3evQpO/h2uWs2j6Yc/fjkpTQ==}
dependencies:
- '@webassemblyjs/ast': 1.12.1
+ '@webassemblyjs/ast': 1.11.6
'@webassemblyjs/helper-api-error': 1.11.6
'@webassemblyjs/helper-wasm-bytecode': 1.11.6
'@webassemblyjs/ieee754': 1.11.6
'@webassemblyjs/leb128': 1.11.6
'@webassemblyjs/utf8': 1.11.6
- /@webassemblyjs/wast-printer@1.12.1:
- resolution: {integrity: sha512-+X4WAlOisVWQMikjbcvY2e0rwPsKQ9F688lksZhBcPycBBuii3O7m8FACbDMWDojpAqvjIncrG8J0XHKyQfVeA==}
+ /@webassemblyjs/wast-printer@1.11.6:
+ resolution: {integrity: sha512-JM7AhRcE+yW2GWYaKeHL5vt4xqee5N2WcezptmgyhNS+ScggqcT1OtXykhAb13Sn5Yas0j2uv9tHgrjwvzAP4A==}
dependencies:
- '@webassemblyjs/ast': 1.12.1
+ '@webassemblyjs/ast': 1.11.6
'@xtuc/long': 4.2.2
/@whatwg-node/events@0.0.3:
@@ -11036,19 +10889,19 @@ packages:
/@whatwg-node/fetch@0.8.8:
resolution: {integrity: sha512-CdcjGC2vdKhc13KKxgsc6/616BQ7ooDIgPeTuAiE8qfCnS0mGzcfCOoZXypQSz73nxI+GWc7ZReIAVhxoE1KCg==}
dependencies:
- '@peculiar/webcrypto': 1.4.6
+ '@peculiar/webcrypto': 1.4.3
'@whatwg-node/node-fetch': 0.3.6
busboy: 1.6.0
urlpattern-polyfill: 8.0.2
- web-streams-polyfill: 3.3.3
+ web-streams-polyfill: 3.2.1
dev: true
- /@whatwg-node/fetch@0.9.17:
- resolution: {integrity: sha512-TDYP3CpCrxwxpiNY0UMNf096H5Ihf67BK1iKGegQl5u9SlpEDYrvnV71gWBGJm+Xm31qOy8ATgma9rm8Pe7/5Q==}
+ /@whatwg-node/fetch@0.9.15:
+ resolution: {integrity: sha512-2wIUcolUthZt0nsPRj+pT7K9h/EO3t/j09IBuq0FtITCsASc2fRCmRw2JHS6hk9fzUQrz2+YYrA1ZDpV7+vLsQ==}
engines: {node: '>=16.0.0'}
dependencies:
- '@whatwg-node/node-fetch': 0.5.10
- urlpattern-polyfill: 10.0.0
+ '@whatwg-node/node-fetch': 0.5.3
+ urlpattern-polyfill: 9.0.0
/@whatwg-node/node-fetch@0.3.6:
resolution: {integrity: sha512-w9wKgDO4C95qnXZRwZTfCmLWqyRnooGjcIwG0wADWjw9/HN0p7dtvtgSvItZtUyNteEvgTrd8QojNEqV6DAGTA==}
@@ -11060,8 +10913,8 @@ packages:
tslib: 2.6.2
dev: true
- /@whatwg-node/node-fetch@0.5.10:
- resolution: {integrity: sha512-KIAHepie/T1PRkUfze4t+bPlyvpxlWiXTPtcGlbIZ0vWkBJMdRmCg4ZrJ2y4XaO1eTPo1HlWYUuj1WvoIpumqg==}
+ /@whatwg-node/node-fetch@0.5.3:
+ resolution: {integrity: sha512-toMC8N53RxgprcuU7Fc05KOrJhZV49njJCHPZvXBsjZMQBKrDm9o14Y56CsrUC85cvjQu862MaYOjd8rKgHdDw==}
engines: {node: '>=16.0.0'}
dependencies:
'@kamilkisiela/fast-url-parser': 1.1.4
@@ -11070,43 +10923,34 @@ packages:
fast-querystring: 1.1.2
tslib: 2.6.2
- /@wordpress/a11y@3.55.0:
- resolution: {integrity: sha512-YcyZysUEHMfEJoVVXppM1n4Ib0EcjT4OL37crYqGCpOyMsX/HnxcxORkmDorMhb6v2QZhbSTVvzhs7IZLnIqJg==}
- engines: {node: '>=12'}
- dependencies:
- '@babel/runtime': 7.24.4
- '@wordpress/dom-ready': 3.55.0
- '@wordpress/i18n': 4.55.0
- dev: true
-
- /@wordpress/api-fetch@6.52.0:
- resolution: {integrity: sha512-zLgpRT6iKdfQupF7hGYbixjqgkeU2taclEHbbQqP6ClLfG709I3kX6Ft+2wh6FaG8MhdVZkl0/E0DTROJ5lbyA==}
+ /@wordpress/api-fetch@6.45.0:
+ resolution: {integrity: sha512-87GhllJcdlxqLugQUx/hL+PE4z7Aqf+AFs8CgzN5/V7INq9IFlIjcbm5TpI4WrGVDSa2puA0tMrjhR/FWXF3NQ==}
engines: {node: '>=12'}
dependencies:
- '@babel/runtime': 7.24.4
- '@wordpress/i18n': 4.55.0
- '@wordpress/url': 3.56.0
+ '@babel/runtime': 7.23.7
+ '@wordpress/i18n': 4.48.0
+ '@wordpress/url': 3.49.0
dev: true
- /@wordpress/autop@3.55.0:
- resolution: {integrity: sha512-tZi3VrB8N2cPM2PSalhUV16qfF/eUu5uEW+zvNymahemE9uHu8/pMSZ3AWnXuBEv8GnZq0xAanj33zwIWpml3A==}
+ /@wordpress/autop@3.48.0:
+ resolution: {integrity: sha512-vhcUVW/ZQC5UAeAQA9tkiwJDPEHF2gASCQp0G70Kt+wjUrXhS0mYt+gecWyRI6DwY3ZagYSdu5pAdV21iegBYg==}
engines: {node: '>=12'}
dependencies:
- '@babel/runtime': 7.24.4
+ '@babel/runtime': 7.23.7
dev: true
- /@wordpress/blob@3.55.0:
- resolution: {integrity: sha512-S5PxZGaAyg8ebckTNB6IC1qjOHNev/RYQ1CwSXjT7hw6N4AtnkaNlm7GlHL8bM0xGw3B5/PD90LC3kL++sL6Kg==}
+ /@wordpress/blob@3.48.0:
+ resolution: {integrity: sha512-+Jh8WLuA49S7tx9tSqfGpCZLgJU6aG4LNXy9E6YIU70J+K2WcnUVyx8AbFefGFjB7sEJaI9nd9Y/ZUsTnmD2uw==}
engines: {node: '>=12'}
dependencies:
- '@babel/runtime': 7.24.4
+ '@babel/runtime': 7.23.7
dev: true
- /@wordpress/block-serialization-default-parser@4.55.0:
- resolution: {integrity: sha512-5CbUjxpt4YpCFHPwh4whJvt054wK+yYvhcxcKUPIF5Qa+pQF8BvaXy5ufEQ5C4FZiRlyJTRUKeDfUORzdLZmjQ==}
+ /@wordpress/block-serialization-default-parser@4.48.0:
+ resolution: {integrity: sha512-1wOIRn82Lfrz27M2GN1c1f1oJdDGUcsLzzFbDNdhV9iAQ3mEleMc8cbhGRQBagAdK1SVhH5ssAJ3I/E4RXLFNw==}
engines: {node: '>=12'}
dependencies:
- '@babel/runtime': 7.24.4
+ '@babel/runtime': 7.23.7
dev: true
/@wordpress/blocks@11.21.0(react@18.2.0):
@@ -11115,20 +10959,20 @@ packages:
peerDependencies:
react: ^17.0.0
dependencies:
- '@babel/runtime': 7.24.4
- '@wordpress/autop': 3.55.0
- '@wordpress/blob': 3.55.0
- '@wordpress/block-serialization-default-parser': 4.55.0
+ '@babel/runtime': 7.23.7
+ '@wordpress/autop': 3.48.0
+ '@wordpress/blob': 3.48.0
+ '@wordpress/block-serialization-default-parser': 4.48.0
'@wordpress/compose': 5.20.0(react@18.2.0)
'@wordpress/data': 7.6.0(react@18.2.0)
- '@wordpress/deprecated': 3.55.0
- '@wordpress/dom': 3.55.0
+ '@wordpress/deprecated': 3.48.0
+ '@wordpress/dom': 3.48.0
'@wordpress/element': 4.20.0
- '@wordpress/hooks': 3.55.0
- '@wordpress/html-entities': 3.55.0
- '@wordpress/i18n': 4.55.0
- '@wordpress/is-shallow-equal': 4.55.0
- '@wordpress/shortcode': 3.55.0
+ '@wordpress/hooks': 3.48.0
+ '@wordpress/html-entities': 3.48.0
+ '@wordpress/i18n': 4.48.0
+ '@wordpress/is-shallow-equal': 4.48.0
+ '@wordpress/shortcode': 3.48.0
change-case: 4.1.2
colord: 2.9.3
hpq: 1.4.0
@@ -11149,14 +10993,14 @@ packages:
peerDependencies:
react: ^17.0.0
dependencies:
- '@babel/runtime': 7.24.4
+ '@babel/runtime': 7.23.7
'@types/mousetrap': 1.6.15
- '@wordpress/deprecated': 3.55.0
- '@wordpress/dom': 3.55.0
+ '@wordpress/deprecated': 3.48.0
+ '@wordpress/dom': 3.48.0
'@wordpress/element': 4.20.0
- '@wordpress/is-shallow-equal': 4.55.0
- '@wordpress/keycodes': 3.55.0
- '@wordpress/priority-queue': 2.55.0
+ '@wordpress/is-shallow-equal': 4.48.0
+ '@wordpress/keycodes': 3.48.0
+ '@wordpress/priority-queue': 2.48.0
change-case: 4.1.2
clipboard: 2.0.11
mousetrap: 1.6.5
@@ -11164,21 +11008,21 @@ packages:
use-memo-one: 1.1.3(react@18.2.0)
dev: true
- /@wordpress/compose@6.32.0(react@18.2.0):
- resolution: {integrity: sha512-5NM1vsYaZO9kXYuW8vD/DdvvTpPZMJuy9uTBiFGpGP2rGGD3K08WYqHWG7f4t/9GWIw4GfPQVD3mPzGubsoimQ==}
+ /@wordpress/compose@6.25.0(react@18.2.0):
+ resolution: {integrity: sha512-+VPP6qsOvYLB3sNSN6rNPZaj2dAEYq3tFBu3Laq632hhVwKnr3fyMLp3ADow/z1qr1ywUcEhZ4DeMVtqDp73Lw==}
engines: {node: '>=12'}
peerDependencies:
react: ^18.0.0
dependencies:
- '@babel/runtime': 7.24.4
+ '@babel/runtime': 7.23.7
'@types/mousetrap': 1.6.15
- '@wordpress/deprecated': 3.55.0
- '@wordpress/dom': 3.55.0
- '@wordpress/element': 5.32.0
- '@wordpress/is-shallow-equal': 4.55.0
- '@wordpress/keycodes': 3.55.0
- '@wordpress/priority-queue': 2.55.0
- '@wordpress/undo-manager': 0.15.0
+ '@wordpress/deprecated': 3.48.0
+ '@wordpress/dom': 3.48.0
+ '@wordpress/element': 5.25.0
+ '@wordpress/is-shallow-equal': 4.48.0
+ '@wordpress/keycodes': 3.48.0
+ '@wordpress/priority-queue': 2.48.0
+ '@wordpress/undo-manager': 0.8.0
change-case: 4.1.2
clipboard: 2.0.11
mousetrap: 1.6.5
@@ -11192,17 +11036,17 @@ packages:
peerDependencies:
react: ^17.0.0
dependencies:
- '@babel/runtime': 7.24.4
- '@wordpress/api-fetch': 6.52.0
+ '@babel/runtime': 7.23.7
+ '@wordpress/api-fetch': 6.45.0
'@wordpress/blocks': 11.21.0(react@18.2.0)
'@wordpress/compose': 5.20.0(react@18.2.0)
'@wordpress/data': 7.6.0(react@18.2.0)
- '@wordpress/deprecated': 3.55.0
+ '@wordpress/deprecated': 3.48.0
'@wordpress/element': 4.20.0
- '@wordpress/html-entities': 3.55.0
- '@wordpress/i18n': 4.55.0
- '@wordpress/is-shallow-equal': 4.55.0
- '@wordpress/url': 3.56.0
+ '@wordpress/html-entities': 3.48.0
+ '@wordpress/i18n': 4.48.0
+ '@wordpress/is-shallow-equal': 4.48.0
+ '@wordpress/url': 3.49.0
change-case: 4.1.2
equivalent-key-map: 0.2.2
lodash: 4.17.21
@@ -11218,13 +11062,13 @@ packages:
peerDependencies:
react: ^17.0.0
dependencies:
- '@babel/runtime': 7.24.4
+ '@babel/runtime': 7.23.7
'@wordpress/compose': 5.20.0(react@18.2.0)
- '@wordpress/deprecated': 3.55.0
+ '@wordpress/deprecated': 3.48.0
'@wordpress/element': 4.20.0
- '@wordpress/is-shallow-equal': 4.55.0
- '@wordpress/priority-queue': 2.55.0
- '@wordpress/redux-routine': 4.55.0(redux@4.2.1)
+ '@wordpress/is-shallow-equal': 4.48.0
+ '@wordpress/priority-queue': 2.48.0
+ '@wordpress/redux-routine': 4.48.0(redux@4.2.1)
equivalent-key-map: 0.2.2
is-plain-object: 5.0.0
is-promise: 4.0.0
@@ -11241,14 +11085,14 @@ packages:
peerDependencies:
react: ^18.0.0
dependencies:
- '@babel/runtime': 7.24.4
- '@wordpress/compose': 6.32.0(react@18.2.0)
- '@wordpress/deprecated': 3.55.0
- '@wordpress/element': 5.32.0
- '@wordpress/is-shallow-equal': 4.55.0
- '@wordpress/priority-queue': 2.55.0
+ '@babel/runtime': 7.23.7
+ '@wordpress/compose': 6.25.0(react@18.2.0)
+ '@wordpress/deprecated': 3.48.0
+ '@wordpress/element': 5.25.0
+ '@wordpress/is-shallow-equal': 4.48.0
+ '@wordpress/priority-queue': 2.48.0
'@wordpress/private-apis': 0.11.0
- '@wordpress/redux-routine': 4.55.0(redux@4.2.1)
+ '@wordpress/redux-routine': 4.48.0(redux@4.2.1)
deepmerge: 4.3.1
equivalent-key-map: 0.2.2
is-plain-object: 5.0.0
@@ -11259,20 +11103,20 @@ packages:
use-memo-one: 1.1.3(react@18.2.0)
dev: true
- /@wordpress/data@9.25.0(react@18.2.0):
- resolution: {integrity: sha512-8WMOUZjSO7GERknEfycmUHM31zi/h8O8FB9kE6L88rKn6+v2DoSUh0nOgCIPcJ3aWo20XCOrCxiaZf9k1FW2VA==}
+ /@wordpress/data@9.18.0(react@18.2.0):
+ resolution: {integrity: sha512-ni+MehrwryItjpqDkPHtSSutkGTNkHhTnzQasZ9eHlME5a4SZugs6B6Lea7Gd+bbpocNEHFsP1dacluW72ov6A==}
engines: {node: '>=12'}
peerDependencies:
react: ^18.0.0
dependencies:
- '@babel/runtime': 7.24.4
- '@wordpress/compose': 6.32.0(react@18.2.0)
- '@wordpress/deprecated': 3.55.0
- '@wordpress/element': 5.32.0
- '@wordpress/is-shallow-equal': 4.55.0
- '@wordpress/priority-queue': 2.55.0
- '@wordpress/private-apis': 0.37.0
- '@wordpress/redux-routine': 4.55.0(redux@4.2.1)
+ '@babel/runtime': 7.23.7
+ '@wordpress/compose': 6.25.0(react@18.2.0)
+ '@wordpress/deprecated': 3.48.0
+ '@wordpress/element': 5.25.0
+ '@wordpress/is-shallow-equal': 4.48.0
+ '@wordpress/priority-queue': 2.48.0
+ '@wordpress/private-apis': 0.30.0
+ '@wordpress/redux-routine': 4.48.0(redux@4.2.1)
deepmerge: 4.3.1
equivalent-key-map: 0.2.2
is-plain-object: 5.0.0
@@ -11283,123 +11127,104 @@ packages:
use-memo-one: 1.1.3(react@18.2.0)
dev: true
- /@wordpress/deprecated@3.55.0:
- resolution: {integrity: sha512-f2q5I2W/Or1+eIJgBh69ymtnfxvMpwZTl6l8f2ujVw1i0zbOvtV0DRsovFalKyenaD4hH8Q2XUQDJsMbsQr6zg==}
- engines: {node: '>=12'}
- dependencies:
- '@babel/runtime': 7.24.4
- '@wordpress/hooks': 3.55.0
- dev: true
-
- /@wordpress/dom-ready@3.55.0:
- resolution: {integrity: sha512-/LAjxo/dM6V4FPN9Iyh5N/ToHTtY1B6F9JenbuZXUF/EZX5EpmfxzNZIcFKf9f0Lca1+XnQs0pBEj5QNxDeQSQ==}
+ /@wordpress/deprecated@3.48.0:
+ resolution: {integrity: sha512-G0IQQ/Fzx2yc9hpqxiNMCltdaQYrLWzcNcicVIjTJIPGzSXSnG++ATO2CsW3yDn93Rzx8pyscyW2KkXWoRJIng==}
engines: {node: '>=12'}
dependencies:
- '@babel/runtime': 7.24.4
+ '@babel/runtime': 7.23.7
+ '@wordpress/hooks': 3.48.0
dev: true
- /@wordpress/dom@3.55.0:
- resolution: {integrity: sha512-PI8v/0+qzIIWvRo5UcGfu9Jfod884R4RIFQUIHZL6vCbILB1SXNKPzb7S9vbfMscSMk4aOQ1tBkE7UI3xh6Xmg==}
+ /@wordpress/dom@3.48.0:
+ resolution: {integrity: sha512-z3oeqippSrD8kX2gpUctPYsEg0u2hr89jVaMXxITVDMSpxXzJ4O8R9ioCDCyYbpZZwdM5CD39lTrvJs1YQEiyw==}
engines: {node: '>=12'}
dependencies:
- '@babel/runtime': 7.24.4
- '@wordpress/deprecated': 3.55.0
+ '@babel/runtime': 7.23.7
+ '@wordpress/deprecated': 3.48.0
dev: true
/@wordpress/element@4.20.0:
resolution: {integrity: sha512-Ou7EoGtGe4FUL6fKALINXJLKoSfyWTBJzkJfN2HzSgM1wira9EuWahl8MQN0HAUaWeOoDqMKPvnglfS+kC8JLA==}
engines: {node: '>=12'}
dependencies:
- '@babel/runtime': 7.24.4
- '@types/react': 17.0.80
+ '@babel/runtime': 7.23.7
+ '@types/react': 17.0.74
'@types/react-dom': 17.0.25
- '@wordpress/escape-html': 2.55.0
+ '@wordpress/escape-html': 2.48.0
change-case: 4.1.2
is-plain-object: 5.0.0
react: 17.0.2
react-dom: 17.0.2(react@17.0.2)
dev: true
- /@wordpress/element@5.32.0:
- resolution: {integrity: sha512-tHphxNspSIw3UFZ7oRUc1UlmHnViDbiACmNqWyUoVfIOv/f9bKe1UMrPxLKaF3HoSmAkQuWcLJu+/k202a40xA==}
+ /@wordpress/element@5.25.0:
+ resolution: {integrity: sha512-8FFK1wJ/4n7Y7s3wWRJinoX5WSPbgnJJawYEc6f5Jc7cG+OddHiWZQkU94o6lnRRm0+cCarxMV8K8hNI2Jc7OQ==}
engines: {node: '>=12'}
dependencies:
- '@babel/runtime': 7.24.4
- '@types/react': 18.2.46
+ '@babel/runtime': 7.23.7
+ '@types/react': 18.2.60
'@types/react-dom': 18.2.18
- '@wordpress/escape-html': 2.55.0
+ '@wordpress/escape-html': 2.48.0
change-case: 4.1.2
is-plain-object: 5.0.0
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
dev: true
- /@wordpress/escape-html@2.55.0:
- resolution: {integrity: sha512-usYRUHFAsTcO3RLUfnBr8CSA6fO9swi0rYHh0H+rX0bxVWnoDQQTdTkQ00FfyN8D44Y80CY9/pQLmtoeK3rLNA==}
+ /@wordpress/escape-html@2.48.0:
+ resolution: {integrity: sha512-zWOJWyRYVddJeZHnAJzV8f58+0GukbIdp+EcbNuRVm+Q2rhv0BpyO1HJB3Z8ba35whtNcGWJibk9WqdMzBAMAw==}
engines: {node: '>=12'}
dependencies:
- '@babel/runtime': 7.24.4
+ '@babel/runtime': 7.23.7
dev: true
- /@wordpress/hooks@3.55.0:
- resolution: {integrity: sha512-2bgHAbHR2srPBEkWthlT0i137q01WEYHPA8RQv0jbaBdO6uzkdtraSBZIJQQ1C7dYJloj7RqWuxaJ2TcN0/VXA==}
+ /@wordpress/hooks@3.48.0:
+ resolution: {integrity: sha512-vFmjpq/XN2bYgz67BS2ZC0n4P1FZUi0UPv8PTMKK+dzCPhQRYrJb8DRhBafwu2mXRzw4rO7vmVTCNJQM6xVObQ==}
engines: {node: '>=12'}
dependencies:
- '@babel/runtime': 7.24.4
+ '@babel/runtime': 7.23.7
dev: true
- /@wordpress/html-entities@3.55.0:
- resolution: {integrity: sha512-80e82UVKPWCl7jX9Mb7XxOayM9EKagDQtAzndA0rX6kqGzcl5fYPvFILNazKy6iruEiecpu5UJIOzw+W5Z1ZWg==}
+ /@wordpress/html-entities@3.48.0:
+ resolution: {integrity: sha512-La4ErNVZPV6kt1jj0Thay/YlR16GkAOYZlaFXtKeYgwiyOzMsIVlghpExk7rvEj2ygRMeWoMSU0+cbciv6QeBg==}
engines: {node: '>=12'}
dependencies:
- '@babel/runtime': 7.24.4
+ '@babel/runtime': 7.23.7
dev: true
- /@wordpress/i18n@4.55.0:
- resolution: {integrity: sha512-ZM1G0AQHgriIe44pp8r/dvbqqRlgfmCeo8ijXgga4GCuxwjENZpJdCjL4UaBljgNfCf+b/H4c6XUUVoHWDBCYw==}
+ /@wordpress/i18n@4.48.0:
+ resolution: {integrity: sha512-CEaBkh1o1lArLqSv9misdmu4hNhs15Fc1tu9t/CzVWPhm7JkkZUi/+mfdAsQmMuON4lJLZKfOjjcRIfTq9YHhA==}
engines: {node: '>=12'}
hasBin: true
dependencies:
- '@babel/runtime': 7.24.4
- '@wordpress/hooks': 3.55.0
+ '@babel/runtime': 7.23.7
+ '@wordpress/hooks': 3.48.0
gettext-parser: 1.4.0
memize: 2.1.0
sprintf-js: 1.1.3
tannin: 1.2.0
dev: true
- /@wordpress/is-shallow-equal@4.55.0:
- resolution: {integrity: sha512-XvUXihYiIcCzKK0H0gonTjsW5tQs9qMu6DkQiZ9F4VXHOZI1VqYkMvd5kRCpUqFIwYbZ3MNGEtNNE3I2cXSLOA==}
- engines: {node: '>=12'}
- dependencies:
- '@babel/runtime': 7.24.4
- dev: true
-
- /@wordpress/keycodes@3.55.0:
- resolution: {integrity: sha512-93Z479aesGmCo2BZ4UX8gVGabVfj128hCaod1cknZBkOymYxOCc6bobiEQ3ncZ1m6HTxAt5ikjeDXoWuCrPKsQ==}
+ /@wordpress/is-shallow-equal@4.48.0:
+ resolution: {integrity: sha512-IVwWEP+jwSBA/G56ie5zKRZUd2vBftVFdRexgJ+ah6lRobLVa03nVuzKtNu1b1ehmwnY9fZEpOeJ88qHZURbTg==}
engines: {node: '>=12'}
dependencies:
- '@babel/runtime': 7.24.4
- '@wordpress/i18n': 4.55.0
+ '@babel/runtime': 7.23.7
dev: true
- /@wordpress/notices@4.23.0(react@18.2.0):
- resolution: {integrity: sha512-EHhxq2/gNw1CV3Wp7KjFNoJ9KyTDeD72Akf7p3P+cv7iHBqCkx25XbIY59or+7/j9x1Fci/tLpTMFZeKQN80Mg==}
+ /@wordpress/keycodes@3.48.0:
+ resolution: {integrity: sha512-VhNsfx5h1haKafyiXNW8o+goVLq2mLNhZUTwk3qc07dLfwW/kg6h2zrdWyYYJzRb2UhLd+DXbBcvukRnFUm3Aw==}
engines: {node: '>=12'}
- peerDependencies:
- react: ^18.0.0
dependencies:
- '@babel/runtime': 7.24.4
- '@wordpress/a11y': 3.55.0
- '@wordpress/data': 9.25.0(react@18.2.0)
- react: 18.2.0
+ '@babel/runtime': 7.23.7
+ '@wordpress/i18n': 4.48.0
dev: true
- /@wordpress/priority-queue@2.55.0:
- resolution: {integrity: sha512-eO21zOVJn1iqd01bFOj/ugOG5vxzf/8Jz/3nZJHCVcmtu/AbbVvA9O4YNXZPFEbLx1vrcXEqgCZI2NjqpoYmmA==}
+ /@wordpress/priority-queue@2.48.0:
+ resolution: {integrity: sha512-PXQ3B2pX8BHbSIQE7sIHql2AQfcTXK3SqL3ObR91GyjjVNrWb8vsYz2obW0UEraJWWOYQnv7f760/vuRz270ng==}
engines: {node: '>=12'}
dependencies:
- '@babel/runtime': 7.24.4
+ '@babel/runtime': 7.23.7
requestidlecallback: 0.3.0
dev: true
@@ -11407,77 +11232,57 @@ packages:
resolution: {integrity: sha512-GpAZ34Ou9YkYi9fuJCb9oDIZhsLqj41stuHflxpTNih6vV/Qw7ApBkLZDhDCyWjOybnjtHQH1LWw3K3RCN4miw==}
engines: {node: '>=12'}
dependencies:
- '@babel/runtime': 7.24.4
+ '@babel/runtime': 7.23.7
dev: true
- /@wordpress/private-apis@0.37.0:
- resolution: {integrity: sha512-M4o0e7ak/LXNmGL54ABuvJFZRstXKvB0DVkN9aC9hWjzUWlTCzY8bx9z/6im12dwrvcOz2YAl938EkmOhuWvbA==}
+ /@wordpress/private-apis@0.30.0:
+ resolution: {integrity: sha512-mkz2QtbSVNAsFNXBni5XMLV1KYhQAx1vyC5KcEyeQADiRkRUW6XJ+u53WwQfpdjvsEQhkyGpK13Rl7gt3KOpeQ==}
engines: {node: '>=12'}
dependencies:
- '@babel/runtime': 7.24.4
+ '@babel/runtime': 7.23.7
dev: true
- /@wordpress/redux-routine@4.55.0(redux@4.2.1):
- resolution: {integrity: sha512-7VigueHjltQqpKlc6YefJDZ/gtBh/NZz13HuYZK8SN8ytx1z6oJ1DegiHdAwCN6IiP0oeT87Y8tgav3BhhmIkw==}
+ /@wordpress/redux-routine@4.48.0(redux@4.2.1):
+ resolution: {integrity: sha512-E/hjX05LdgIE+cL4tZVxrwnRCmqEKTE5zlrO9mRqP+zNbatipgAgMMQc+yu/9oJbqOUFTu2D78b/JbsDYqU0yQ==}
engines: {node: '>=12'}
peerDependencies:
redux: '>=4'
dependencies:
- '@babel/runtime': 7.24.4
+ '@babel/runtime': 7.23.7
is-plain-object: 5.0.0
is-promise: 4.0.0
redux: 4.2.1
rungen: 0.3.2
dev: true
- /@wordpress/rich-text@6.32.0(react@18.2.0):
- resolution: {integrity: sha512-V2RazmdGKZqAXYizIoLL+sWY9XQJuaQMILIYIXpOWmJFWwnJNgw3WrMo7CpMHmsu8qTrHTdtEIn3PtGu4RGzFw==}
- engines: {node: '>=12'}
- peerDependencies:
- react: ^18.0.0
- dependencies:
- '@babel/runtime': 7.24.4
- '@wordpress/a11y': 3.55.0
- '@wordpress/compose': 6.32.0(react@18.2.0)
- '@wordpress/data': 9.25.0(react@18.2.0)
- '@wordpress/deprecated': 3.55.0
- '@wordpress/element': 5.32.0
- '@wordpress/escape-html': 2.55.0
- '@wordpress/i18n': 4.55.0
- '@wordpress/keycodes': 3.55.0
- memize: 2.1.0
- react: 18.2.0
- rememo: 4.0.2
- dev: true
-
- /@wordpress/shortcode@3.55.0:
- resolution: {integrity: sha512-vhOfWdovDTC26Re1QlGHhlxtu6IxbDbDsXHQhV4oJCYDubdcKQEeL/Ne6Elsz4UonhrO7qaFnjR6sav99fHf7Q==}
+ /@wordpress/shortcode@3.48.0:
+ resolution: {integrity: sha512-PpDy14uPEDjHXU1EC+4C/AdY9j9XbmMU1vJA7SOwNul5rvTdJxC48QFWSQi8HWjEsxmC0ow0P3cE5M/hJcl1RA==}
engines: {node: '>=12'}
dependencies:
- '@babel/runtime': 7.24.4
+ '@babel/runtime': 7.23.7
memize: 2.1.0
dev: true
- /@wordpress/undo-manager@0.15.0:
- resolution: {integrity: sha512-lPnoL7K1YQf+PIrnjwgTImtDu30mwrKJ80nIUF2PhI7cNbInnb8RPYrFGJJ3xwTHKkKwWlu5oCR9rFttnFiYGg==}
+ /@wordpress/undo-manager@0.8.0:
+ resolution: {integrity: sha512-960Vvr8I78nCp2r2u0Ia9JTUiTTwR43kbLHrFztqqpRH5WIIBgqH5KOOlylT9jLhozYOuOTz9vmN5NMfZKmyAg==}
engines: {node: '>=12'}
dependencies:
- '@babel/runtime': 7.24.4
- '@wordpress/is-shallow-equal': 4.55.0
+ '@babel/runtime': 7.23.7
+ '@wordpress/is-shallow-equal': 4.48.0
dev: true
- /@wordpress/url@3.56.0:
- resolution: {integrity: sha512-uW5cTftroxvYSoF2Wy/Rfc5eUuqANXSrqBu8axv1dmNLYbg+2Y8f/bzH1ZNLLtmkpD25QPOIstGjA8lsYRPuig==}
+ /@wordpress/url@3.49.0:
+ resolution: {integrity: sha512-AARE9FMGEf3bf/EKb+OhFivgps38s5fRGFMqeHImP8JvKAt6xc7Q6IrpFOTXkI2BOWA4ERK//PAygR8PR5bgVA==}
engines: {node: '>=12'}
dependencies:
- '@babel/runtime': 7.24.4
+ '@babel/runtime': 7.23.7
remove-accents: 0.5.0
dev: true
/@wry/context@0.4.4:
resolution: {integrity: sha512-LrKVLove/zw6h2Md/KZyWxIkFM6AoyKp71OqpH9Hiip1csjPVoD3tPxlbQUNxEnHENks3UGgNpSBCAfq9KWuag==}
dependencies:
- '@types/node': 18.0.0
+ '@types/node': 18.19.17
tslib: 1.14.1
/@wry/equality@0.1.11:
@@ -11498,7 +11303,7 @@ packages:
dependencies:
file-type: 18.7.0
is-stream: 3.0.0
- tar-stream: 3.1.7
+ tar-stream: 3.1.6
dev: false
/@xhmikosr/decompress-tarbz2@7.0.0:
@@ -11636,8 +11441,8 @@ packages:
dependencies:
acorn: 8.11.3
- /acorn-import-attributes@1.9.5(acorn@8.11.3):
- resolution: {integrity: sha512-n02Vykv5uA3eHGM/Z2dQrcD56kL8TyDb2p1+0P83PClMnC/nc+anbQRhIOWnSq4Ke/KvDPrY3C9hDtC/A3eHnQ==}
+ /acorn-import-attributes@1.9.2(acorn@8.11.3):
+ resolution: {integrity: sha512-O+nfJwNolEA771IYJaiLWK1UAwjNsQmZbTRqqwBYxCgVQTmpFEMvBw6LOIQV0Me339L5UMVYFyRohGnGlQDdIQ==}
peerDependencies:
acorn: ^8
dependencies:
@@ -11646,6 +11451,7 @@ packages:
/acorn-jsx@5.3.2(acorn@7.4.1):
resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==}
+ requiresBuild: true
peerDependencies:
acorn: ^6.0.0 || ^7.0.0 || ^8.0.0
dependencies:
@@ -11653,6 +11459,7 @@ packages:
/acorn-jsx@5.3.2(acorn@8.11.3):
resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==}
+ requiresBuild: true
peerDependencies:
acorn: ^6.0.0 || ^7.0.0 || ^8.0.0
dependencies:
@@ -11670,9 +11477,14 @@ packages:
engines: {node: '>=0.4.0'}
dev: true
+ /acorn-walk@8.3.1:
+ resolution: {integrity: sha512-TgUZgYvqZprrl7YldZNoa9OciCAyZR+Ejm9eXzKCmjsF5IKp/wgQ7Z/ZpjpGTIUPwrHQIcYeI8qDh4PsEwxMbw==}
+ engines: {node: '>=0.4.0'}
+
/acorn-walk@8.3.2:
resolution: {integrity: sha512-cjkyv4OtNCIeqhHrfS81QWXoCBPExR/J62oyEqepVw8WaQeSqpW2uhuLPh1m9eWhDuOo/jUXVTlifvesOWp/4A==}
engines: {node: '>=0.4.0'}
+ requiresBuild: true
/acorn@6.4.2:
resolution: {integrity: sha512-XtGIhXwF8YM8bJhGxG5kXgjkEuNGLTkoYqVE+KMR+aspr4KGYmKYg7yUe3KghyQ9yheNwLnjmzh/7+gfDBmHCQ==}
@@ -11683,6 +11495,7 @@ packages:
resolution: {integrity: sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==}
engines: {node: '>=0.4.0'}
hasBin: true
+ requiresBuild: true
/acorn@8.11.3:
resolution: {integrity: sha512-Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg==}
@@ -11716,8 +11529,8 @@ packages:
- supports-color
dev: false
- /agent-base@7.1.1:
- resolution: {integrity: sha512-H0TSyFNDMomMNJQBn8wFV5YC/2eJ+VXECwOadZJT554xP6cODZHPX3H9QMQECxvrgiSOP1pHjy1sMWQVYJOUOA==}
+ /agent-base@7.1.0:
+ resolution: {integrity: sha512-o/zjMZRhJxny7OyEF+Op8X+efiELC7k7yOjMzgfzVqOzXqkBkWI79YoTdOtsuWd5BWhAGAuOY/Xa6xpiaWXiNg==}
engines: {node: '>= 14'}
dependencies:
debug: 4.3.4
@@ -11737,6 +11550,7 @@ packages:
/aggregate-error@3.1.0:
resolution: {integrity: sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==}
engines: {node: '>=8'}
+ requiresBuild: true
dependencies:
clean-stack: 2.2.0
indent-string: 4.0.0
@@ -11768,17 +11582,6 @@ packages:
ajv: 8.12.0
dev: false
- /ajv-formats@3.0.1(ajv@8.12.0):
- resolution: {integrity: sha512-8iUql50EUR+uUcdRQ3HDqa6EVyo3docL8g5WJ3FNcWmu62IbkGUue/pEyLBW8VGKKucTPgqeks4fIU1DA4yowQ==}
- peerDependencies:
- ajv: ^8.0.0
- peerDependenciesMeta:
- ajv:
- optional: true
- dependencies:
- ajv: 8.12.0
- dev: false
-
/ajv-keywords@3.5.2(ajv@6.12.6):
resolution: {integrity: sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==}
peerDependencies:
@@ -11797,6 +11600,7 @@ packages:
/ajv@6.12.6:
resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==}
+ requiresBuild: true
dependencies:
fast-deep-equal: 3.1.3
fast-json-stable-stringify: 2.1.0
@@ -11814,6 +11618,7 @@ packages:
/ajv@8.12.0:
resolution: {integrity: sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==}
+ requiresBuild: true
dependencies:
fast-deep-equal: 3.1.3
json-schema-traverse: 1.0.0
@@ -11830,7 +11635,7 @@ packages:
global-cache-dir: 4.4.0
is-plain-obj: 4.1.0
path-exists: 5.0.0
- semver: 7.6.0
+ semver: 7.5.4
write-file-atomic: 4.0.2
dev: false
@@ -11845,6 +11650,7 @@ packages:
/ansi-colors@4.1.3:
resolution: {integrity: sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==}
engines: {node: '>=6'}
+ requiresBuild: true
/ansi-escapes@3.2.0:
resolution: {integrity: sha512-cBhpre4ma+U0T1oM5fXg7Dy1Jw7zzwv7lt/GoCpr+hDQJoYnKVPLL4dCvSEFMmQurOQvSrwT7SL/DAlhBI97RQ==}
@@ -11864,9 +11670,17 @@ packages:
type-fest: 1.4.0
dev: false
+ /ansi-escapes@6.2.0:
+ resolution: {integrity: sha512-kzRaCqXnpzWs+3z5ABPQiVke+iq0KXkHo8xiWV4RPTi5Yli0l97BEQuhXV1s7+aSU/fu1kUuxgS4MsQ0fRuygw==}
+ engines: {node: '>=14.16'}
+ dependencies:
+ type-fest: 3.13.1
+ dev: true
+
/ansi-escapes@6.2.1:
resolution: {integrity: sha512-4nJ3yixlEthEJ9Rk4vPcdBRkZvQZlYyu8j4/Mqz5sgIkddmEnH2Yj2ZrnP9S3tQOvSNRUIgVNF/1yPpRAGNRig==}
engines: {node: '>=14.16'}
+ dev: false
/ansi-html-community@0.0.8:
resolution: {integrity: sha512-1APHAyr3+PCamwNw3bXCPp4HFLONZt/yIH0sZp0/469KWNTEy+qN5jQ3GVX6DMZ1UXAi34yVwtTeaG/HpBuuzw==}
@@ -11909,6 +11723,7 @@ packages:
/ansi-styles@5.2.0:
resolution: {integrity: sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==}
engines: {node: '>=10'}
+ requiresBuild: true
/ansi-styles@6.2.1:
resolution: {integrity: sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==}
@@ -12054,8 +11869,8 @@ packages:
readable-stream: 3.6.2
dev: false
- /archiver@6.0.2:
- resolution: {integrity: sha512-UQ/2nW7NMl1G+1UnrLypQw1VdT9XZg/ECcKPq7l+STzStrSivFIXIp34D8M5zeNGW5NoOupdYCHv6VySCPNNlw==}
+ /archiver@6.0.1:
+ resolution: {integrity: sha512-CXGy4poOLBKptiZH//VlWdFuUC1RESbdZjGjILwBuZ73P7WkAUN0htfSfBq/7k6FRFlpu7bg4JOkj1vU9G6jcQ==}
engines: {node: '>= 12.0.0'}
dependencies:
archiver-utils: 4.0.1
@@ -12063,8 +11878,8 @@ packages:
buffer-crc32: 0.2.13
readable-stream: 3.6.2
readdir-glob: 1.1.3
- tar-stream: 3.1.7
- zip-stream: 5.0.2
+ tar-stream: 3.1.6
+ zip-stream: 5.0.1
dev: false
/archy@1.0.0:
@@ -12097,18 +11912,18 @@ packages:
/argparse@1.0.10:
resolution: {integrity: sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==}
+ requiresBuild: true
dependencies:
sprintf-js: 1.0.3
/argparse@2.0.1:
resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==}
- /aria-hidden@1.2.4:
- resolution: {integrity: sha512-y+CcFFwelSXpLZk/7fMB2mUbGtX9lKycf1MWJ7CaTIERyitVlyQx6C+sxcROU2BAJ24OiZyK+8wj2i8AlBoS3A==}
+ /aria-hidden@1.2.3:
+ resolution: {integrity: sha512-xcLxITLe2HYa1cnYnwCjkOO1PqUHQpozB8x9AR0OgWN2woOBi5kSDVxKfd0b7sb1hw5qFeJhXm9H1nu3xSfLeQ==}
engines: {node: '>=10'}
dependencies:
tslib: 2.6.2
- dev: true
/aria-query@5.1.3:
resolution: {integrity: sha512-R5iJ5lkuHybztUfuOAznmboyjWq8O6sqNqtK7CLOqdydi54VNbORp49mb14KbWgG1QD3JFO9hJdZ+y4KutfdOQ==}
@@ -12136,12 +11951,12 @@ packages:
engines: {node: '>=0.10.0'}
dev: false
- /array-buffer-byte-length@1.0.1:
- resolution: {integrity: sha512-ahC5W1xgou+KTXix4sAO8Ki12Q+jf4i0+tmk3sC+zgcynshkHxzpXdImBehiUYKKKDwvfFiJl1tZt6ewscS1Mg==}
- engines: {node: '>= 0.4'}
+ /array-buffer-byte-length@1.0.0:
+ resolution: {integrity: sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A==}
+ requiresBuild: true
dependencies:
- call-bind: 1.0.7
- is-array-buffer: 3.0.4
+ call-bind: 1.0.5
+ is-array-buffer: 3.0.2
/array-flatten@1.1.1:
resolution: {integrity: sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==}
@@ -12150,15 +11965,14 @@ packages:
resolution: {integrity: sha512-c5AMf34bKdvPhQ7tBGhqkgKNUzMr4WUs+WDtC2ZUGOUncbxKMTvqxYctiseW3+L4bA8ec+GcZ6/A/FW4m8ukng==}
dev: true
- /array-includes@3.1.8:
- resolution: {integrity: sha512-itaWrbYbqpGXkGhZPGUulwnhVf5Hpy1xiCFsGqyIGglbBxmG5vSjxQen3/WGOjPpNEv1RtBLKxbmVXm8HpJStQ==}
+ /array-includes@3.1.7:
+ resolution: {integrity: sha512-dlcsNBIiWhPkHdOEEKnehA+RNUWDc4UqFtnIXU4uuYDPtA4LDkr7qip2p0VvFAEXNDr0yWZ9PJyIRiGjRLQzwQ==}
engines: {node: '>= 0.4'}
dependencies:
- call-bind: 1.0.7
+ call-bind: 1.0.5
define-properties: 1.2.1
- es-abstract: 1.23.3
- es-object-atoms: 1.0.0
- get-intrinsic: 1.2.4
+ es-abstract: 1.22.3
+ get-intrinsic: 1.2.2
is-string: 1.0.7
/array-move@4.0.0:
@@ -12179,88 +11993,67 @@ packages:
engines: {node: '>=0.10.0'}
dev: false
- /array.prototype.findlast@1.2.5:
- resolution: {integrity: sha512-CVvd6FHg1Z3POpBLxO6E6zr+rSKEQ9L6rZHAaY7lLfhKsWYUBBOuMs0e9o24oopj6H+geRCX0YJ+TJLBK2eHyQ==}
- engines: {node: '>= 0.4'}
- dependencies:
- call-bind: 1.0.7
- define-properties: 1.2.1
- es-abstract: 1.23.3
- es-errors: 1.3.0
- es-object-atoms: 1.0.0
- es-shim-unscopables: 1.0.2
-
- /array.prototype.findlastindex@1.2.5:
- resolution: {integrity: sha512-zfETvRFA8o7EiNn++N5f/kaCw221hrpGsDmcpndVupkPzEc1Wuf3VgC0qby1BbHs7f5DVYjgtEU2LLh5bqeGfQ==}
+ /array.prototype.findlastindex@1.2.3:
+ resolution: {integrity: sha512-LzLoiOMAxvy+Gd3BAq3B7VeIgPdo+Q8hthvKtXybMvRV0jrXfJM/t8mw7nNlpEcVlVUnCnM2KSX4XU5HmpodOA==}
engines: {node: '>= 0.4'}
dependencies:
- call-bind: 1.0.7
+ call-bind: 1.0.5
define-properties: 1.2.1
- es-abstract: 1.23.3
- es-errors: 1.3.0
- es-object-atoms: 1.0.0
+ es-abstract: 1.22.3
es-shim-unscopables: 1.0.2
+ get-intrinsic: 1.2.2
/array.prototype.flat@1.3.2:
resolution: {integrity: sha512-djYB+Zx2vLewY8RWlNCUdHjDXs2XOgm602S9E7P/UpHgfeHL00cRiIF+IN/G/aUJ7kGPb6yO/ErDI5V2s8iycA==}
engines: {node: '>= 0.4'}
dependencies:
- call-bind: 1.0.7
+ call-bind: 1.0.5
define-properties: 1.2.1
- es-abstract: 1.23.3
+ es-abstract: 1.22.3
es-shim-unscopables: 1.0.2
/array.prototype.flatmap@1.3.2:
resolution: {integrity: sha512-Ewyx0c9PmpcsByhSW4r+9zDU7sGjFc86qf/kKtuSCRdhfbk0SNLLkaT5qvcHnRGgc5NP/ly/y+qkXkqONX54CQ==}
engines: {node: '>= 0.4'}
dependencies:
- call-bind: 1.0.7
+ call-bind: 1.0.5
define-properties: 1.2.1
- es-abstract: 1.23.3
+ es-abstract: 1.22.3
es-shim-unscopables: 1.0.2
- /array.prototype.foreach@1.0.7:
- resolution: {integrity: sha512-T6Y2wgc24suLW78a3Iq/Iu0zgucdBRtj11GElARgGZaqNC8ESFZV8qeJR9/I7bHCB3Vh5N6ATYUOBIZLLl9WCw==}
+ /array.prototype.foreach@1.0.5:
+ resolution: {integrity: sha512-FSk2BdZDQVdxGeh63usPldJo5xtkdBp3iYBqEGlGnId5TV0xtrKOnz9kXzfFL5L/81EIuVkxtiYtJSE2IjKoPA==}
engines: {node: '>= 0.4'}
dependencies:
- call-bind: 1.0.7
+ call-bind: 1.0.5
define-properties: 1.2.1
- es-abstract: 1.23.3
+ es-abstract: 1.22.3
es-array-method-boxes-properly: 1.0.0
- es-errors: 1.3.0
- es-object-atoms: 1.0.0
+ get-intrinsic: 1.2.2
is-string: 1.0.7
dev: false
- /array.prototype.toreversed@1.1.2:
- resolution: {integrity: sha512-wwDCoT4Ck4Cz7sLtgUmzR5UV3YF5mFHUlbChCzZBQZ+0m2cl/DH3tKgvphv1nKgFsJ48oCSg6p91q2Vm0I/ZMA==}
- dependencies:
- call-bind: 1.0.7
- define-properties: 1.2.1
- es-abstract: 1.23.3
- es-shim-unscopables: 1.0.2
-
- /array.prototype.tosorted@1.1.3:
- resolution: {integrity: sha512-/DdH4TiTmOKzyQbp/eadcCVexiCb36xJg7HshYOYJnNZFDj33GEv0P7GxsynpShhq4OLYJzbGcBDkLsDt7MnNg==}
+ /array.prototype.tosorted@1.1.2:
+ resolution: {integrity: sha512-HuQCHOlk1Weat5jzStICBCd83NxiIMwqDg/dHEsoefabn/hJRj5pVdWcPUSpRrwhwxZOsQassMpgN/xRYFBMIg==}
dependencies:
- call-bind: 1.0.7
+ call-bind: 1.0.5
define-properties: 1.2.1
- es-abstract: 1.23.3
- es-errors: 1.3.0
+ es-abstract: 1.22.3
es-shim-unscopables: 1.0.2
+ get-intrinsic: 1.2.2
- /arraybuffer.prototype.slice@1.0.3:
- resolution: {integrity: sha512-bMxMKAjg13EBSVscxTaYA4mRc5t1UAXa2kXiGTNfZ079HIWXEkKmkgFrh/nJqamaLSrXO5H4WFFkPEaLJWbs3A==}
+ /arraybuffer.prototype.slice@1.0.2:
+ resolution: {integrity: sha512-yMBKppFur/fbHu9/6USUe03bZ4knMYiwFBcyiaXB8Go0qNehwX6inYPzK9U0NeQvGxKthcmHcaR8P5MStSRBAw==}
engines: {node: '>= 0.4'}
+ requiresBuild: true
dependencies:
- array-buffer-byte-length: 1.0.1
- call-bind: 1.0.7
+ array-buffer-byte-length: 1.0.0
+ call-bind: 1.0.5
define-properties: 1.2.1
- es-abstract: 1.23.3
- es-errors: 1.3.0
- get-intrinsic: 1.2.4
- is-array-buffer: 3.0.4
- is-shared-array-buffer: 1.0.3
+ es-abstract: 1.22.3
+ get-intrinsic: 1.2.2
+ is-array-buffer: 3.0.2
+ is-shared-array-buffer: 1.0.2
/arrify@1.0.1:
resolution: {integrity: sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA==}
@@ -12294,15 +12087,16 @@ packages:
/assert@2.1.0:
resolution: {integrity: sha512-eLHpSK/Y4nhMJ07gDaAzoX/XAKS8PSaojml3M0DM4JpV1LAi5JOJ/p6H/XWrl8L+DzVEvVCW1z3vWAaB9oTsQw==}
dependencies:
- call-bind: 1.0.7
+ call-bind: 1.0.5
is-nan: 1.3.2
- object-is: 1.1.6
+ object-is: 1.1.5
object.assign: 4.1.5
util: 0.12.5
dev: true
/assertion-error@1.1.0:
resolution: {integrity: sha512-jgsaNduz+ndvGyFt3uSuWqvy4lCnIJiovtouQN5JZHOKCS2QuhEdbcQHFhVksz2N2U9hXJo8odG7ETyWlEeuDw==}
+ requiresBuild: true
/assign-symbols@1.0.0:
resolution: {integrity: sha512-Q+JC7Whu8HhmTdBph/Tq59IoRtoy6KAm5zzPv00WdujX82lbAL8K7WVjne7vdCsAmbF4AYaDOPyO3k0kl8qIrw==}
@@ -12324,11 +12118,6 @@ packages:
tslib: 2.6.2
dev: true
- /astral-regex@1.0.0:
- resolution: {integrity: sha512-+Ryf6g3BKoRc7jfp7ad8tM4TtMiaWvbF/1/sQcZPkkS7ag3D5nMBCe2UfOTONtAkaG0tO0ij3C5Lwmf1EiyjHg==}
- engines: {node: '>=4'}
- dev: true
-
/astral-regex@2.0.0:
resolution: {integrity: sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==}
engines: {node: '>=8'}
@@ -12353,6 +12142,11 @@ packages:
/async@3.2.5:
resolution: {integrity: sha512-baNZyqaaLhyLVKm/DlvdW051MSgO6b8eVfIezl9E5PqWxFgzLm/wQntEW4zOytVburDEr0JlALEpdOFwvErLsg==}
+ /asynciterator.prototype@1.0.0:
+ resolution: {integrity: sha512-wwHYEIS0Q80f5mosx3L/dfG5t5rjEa9Ft51GTaNt862EnpyGHpgz2RkZvLPp1oF5TnAiTohkEKVEu8pQPJI7Vg==}
+ dependencies:
+ has-symbols: 1.0.3
+
/asynckit@0.4.0:
resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==}
@@ -12376,53 +12170,35 @@ packages:
engines: {node: '>=8'}
/autoprefixer@10.4.16(postcss@8.4.32):
- resolution: {integrity: sha512-7vd3UC6xKp0HLfua5IjZlcXvGAGy7cBAXTg2lyQ/8WpNhd6SiZ8Be+xm3FyBSYJx5GKcpRCzBh7RH4/0dnY+uQ==}
- engines: {node: ^10 || ^12 || >=14}
- hasBin: true
- peerDependencies:
- postcss: ^8.1.0
- dependencies:
- browserslist: 4.23.0
- caniuse-lite: 1.0.30001608
- fraction.js: 4.3.7
- normalize-range: 0.1.2
- picocolors: 1.0.0
- postcss: 8.4.32
- postcss-value-parser: 4.2.0
- dev: true
-
- /autoprefixer@10.4.19(postcss@8.4.38):
- resolution: {integrity: sha512-BaENR2+zBZ8xXhM4pUaKUxlVdxZ0EZhjvbopwnXmxRUfqDmwSpC2lAi/QXvx7NRdPCo1WKEcEF6mV64si1z4Ew==}
+ resolution: {integrity: sha512-7vd3UC6xKp0HLfua5IjZlcXvGAGy7cBAXTg2lyQ/8WpNhd6SiZ8Be+xm3FyBSYJx5GKcpRCzBh7RH4/0dnY+uQ==}
engines: {node: ^10 || ^12 || >=14}
hasBin: true
peerDependencies:
postcss: ^8.1.0
dependencies:
- browserslist: 4.23.0
- caniuse-lite: 1.0.30001608
+ browserslist: 4.22.2
+ caniuse-lite: 1.0.30001574
fraction.js: 4.3.7
normalize-range: 0.1.2
picocolors: 1.0.0
- postcss: 8.4.38
+ postcss: 8.4.32
postcss-value-parser: 4.2.0
/autosize@4.0.4:
resolution: {integrity: sha512-5yxLQ22O0fCRGoxGfeLSNt3J8LB1v+umtpMnPW6XjkTWXKoN0AmXAIhelJcDtFT/Y/wYWmfE+oqU10Q0b8FhaQ==}
dev: true
- /available-typed-arrays@1.0.7:
- resolution: {integrity: sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==}
+ /available-typed-arrays@1.0.5:
+ resolution: {integrity: sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==}
engines: {node: '>= 0.4'}
- dependencies:
- possible-typed-array-names: 1.0.0
+ requiresBuild: true
- /avvio@8.3.0:
- resolution: {integrity: sha512-VBVH0jubFr9LdFASy/vNtm5giTrnbVquWBhT0fyizuNK2rQ7e7ONU2plZQWUNqtE1EmxFEb+kbSkFRkstiaS9Q==}
+ /avvio@8.2.1:
+ resolution: {integrity: sha512-TAlMYvOuwGyLK3PfBb5WKBXZmXz2fVCgv23d6zZFdle/q3gPjmxBaeuC0pY0Dzs5PWMSgfqqEZkrye19GlDTgw==}
dependencies:
- '@fastify/error': 3.4.1
archy: 1.0.0
debug: 4.3.4
- fastq: 1.17.1
+ fastq: 1.16.0
transitivePeerDependencies:
- supports-color
dev: false
@@ -12434,23 +12210,23 @@ packages:
/axios@0.21.4(debug@4.3.4):
resolution: {integrity: sha512-ut5vewkiu8jjGBdqpM44XxjuCjq9LAKeHVmoVfHVzy8eHgxxq8SbAVQNovDA8mVi05kP0Ea/n/UzcSHcTJQfNg==}
dependencies:
- follow-redirects: 1.15.6(debug@4.3.4)
+ follow-redirects: 1.15.4(debug@4.3.4)
transitivePeerDependencies:
- debug
- /axios@1.6.8:
- resolution: {integrity: sha512-v/ZHtJDU39mDpyBoFVkETcd/uNdxrWRrg3bKpOKzXFA6Bvqopts6ALSMU3y6ijYxbw2B+wPrIv46egTzJXCLGQ==}
+ /axios@1.6.4:
+ resolution: {integrity: sha512-heJnIs6N4aa1eSthhN9M5ioILu8Wi8vmQW9iHQ9NUvfkJb0lEEDUiIdQNAuBtfUt3FxReaKdpQA5DbmMOqzF/A==}
dependencies:
- follow-redirects: 1.15.6
+ follow-redirects: 1.15.4
form-data: 4.0.0
proxy-from-env: 1.1.0
transitivePeerDependencies:
- debug
- /axios@1.6.8(debug@4.3.4):
- resolution: {integrity: sha512-v/ZHtJDU39mDpyBoFVkETcd/uNdxrWRrg3bKpOKzXFA6Bvqopts6ALSMU3y6ijYxbw2B+wPrIv46egTzJXCLGQ==}
+ /axios@1.6.4(debug@4.3.4):
+ resolution: {integrity: sha512-heJnIs6N4aa1eSthhN9M5ioILu8Wi8vmQW9iHQ9NUvfkJb0lEEDUiIdQNAuBtfUt3FxReaKdpQA5DbmMOqzF/A==}
dependencies:
- follow-redirects: 1.15.6(debug@4.3.4)
+ follow-redirects: 1.15.4(debug@4.3.4)
form-data: 4.0.0
proxy-from-env: 1.1.0
transitivePeerDependencies:
@@ -12462,16 +12238,17 @@ packages:
dependencies:
dequal: 2.0.3
- /b4a@1.6.6:
- resolution: {integrity: sha512-5Tk1HLk6b6ctmjIkAcU/Ujv/1WqiDl0F0JdRCR80VsOcUlHcu7pWeWRlOqQLHfDEsVx9YH/aif5AG4ehoCtTmg==}
+ /b4a@1.6.4:
+ resolution: {integrity: sha512-fpWrvyVHEKyeEvbKZTVOeZF3VSKKWtJxFIxX/jaVPf+cLbGUSitjb49pHLqPV2BUNNZ0LcoeEGfE/YCpyDYHIw==}
+ requiresBuild: true
dev: false
- /babel-core@7.0.0-bridge.0(@babel/core@7.24.4):
+ /babel-core@7.0.0-bridge.0(@babel/core@7.23.7):
resolution: {integrity: sha512-poPX9mZH/5CSanm50Q+1toVci6pv5KSRv/5TWCwtzQS5XEwn40BcCrgIeMFWP9CKKIniKXNxoIOnOq4VVlGXhg==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.4
+ '@babel/core': 7.23.7
dev: true
/babel-eslint@10.1.0(eslint@7.32.0):
@@ -12481,27 +12258,27 @@ packages:
peerDependencies:
eslint: '>= 4.12.1'
dependencies:
- '@babel/code-frame': 7.24.2
- '@babel/parser': 7.24.4
- '@babel/traverse': 7.24.1
- '@babel/types': 7.24.0
+ '@babel/code-frame': 7.23.5
+ '@babel/parser': 7.23.6
+ '@babel/traverse': 7.23.7
+ '@babel/types': 7.23.6
eslint: 7.32.0
eslint-visitor-keys: 1.3.0
resolve: 1.22.8
transitivePeerDependencies:
- supports-color
- /babel-jest@29.7.0(@babel/core@7.24.4):
+ /babel-jest@29.7.0(@babel/core@7.23.7):
resolution: {integrity: sha512-BrvGY3xZSwEcCzKvKsCi2GgHqDqsYkOP4/by5xCgIwGXQxIEh+8ew3gmrE1y7XRR6LHZIj6yLYnUi/mm2KXKBg==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
peerDependencies:
'@babel/core': ^7.8.0
dependencies:
- '@babel/core': 7.24.4
+ '@babel/core': 7.23.7
'@jest/transform': 29.7.0
'@types/babel__core': 7.20.5
babel-plugin-istanbul: 6.1.1
- babel-preset-jest: 29.6.3(@babel/core@7.24.4)
+ babel-preset-jest: 29.6.3(@babel/core@7.23.7)
chalk: 4.1.2
graceful-fs: 4.2.11
slash: 3.0.0
@@ -12512,19 +12289,19 @@ packages:
/babel-jsx-utils@1.1.0:
resolution: {integrity: sha512-Mh1j/rw4xM9T3YICkw22aBQ78FhsHdsmlb9NEk4uVAFBOg+Ez9ZgXXHugoBPCZui3XLomk/7/JBBH4daJqTkQQ==}
- /babel-loader@8.3.0(@babel/core@7.24.4)(webpack@5.91.0):
+ /babel-loader@8.3.0(@babel/core@7.23.7)(webpack@5.89.0):
resolution: {integrity: sha512-H8SvsMF+m9t15HNLMipppzkC+Y2Yq+v3SonZyU70RBL/h1gxPkH08Ot8pEE9Z4Kd+czyWJClmFS8qzIP9OZ04Q==}
engines: {node: '>= 8.9'}
peerDependencies:
'@babel/core': ^7.0.0
webpack: '>=2'
dependencies:
- '@babel/core': 7.24.4
+ '@babel/core': 7.23.7
find-cache-dir: 3.3.2
loader-utils: 2.0.4
make-dir: 3.1.0
schema-utils: 2.7.1
- webpack: 5.91.0(esbuild@0.19.12)
+ webpack: 5.89.0
/babel-plugin-add-module-exports@1.0.4:
resolution: {integrity: sha512-g+8yxHUZ60RcyaUpfNzy56OtWW+x9cyEe9j+CranqLiqbju2yf/Cy6ZtYK40EZxtrdHllzlVZgLmcOUCTlJ7Jg==}
@@ -12538,7 +12315,7 @@ packages:
resolution: {integrity: sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==}
engines: {node: '>=8'}
dependencies:
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/helper-plugin-utils': 7.22.5
'@istanbuljs/load-nyc-config': 1.1.0
'@istanbuljs/schema': 0.1.3
istanbul-lib-instrument: 5.2.1
@@ -12551,8 +12328,8 @@ packages:
resolution: {integrity: sha512-ESAc/RJvGTFEzRwOTT4+lNDk/GNHMkKbNzsvT0qKRfDyyYTskxB5rnU2njIDYVxXCBHHEI1c0YwHob3WaYujOg==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
- '@babel/template': 7.24.0
- '@babel/types': 7.24.0
+ '@babel/template': 7.22.15
+ '@babel/types': 7.23.6
'@types/babel__core': 7.20.5
'@types/babel__traverse': 7.20.5
dev: true
@@ -12560,8 +12337,8 @@ packages:
/babel-plugin-lodash@3.3.4:
resolution: {integrity: sha512-yDZLjK7TCkWl1gpBeBGmuaDIFhZKmkoL+Cu2MUUjv5VxUZx/z7tBGBCBcQs5RI1Bkz5LLmNdjx7paOyQtMovyg==}
dependencies:
- '@babel/helper-module-imports': 7.24.3
- '@babel/types': 7.24.0
+ '@babel/helper-module-imports': 7.22.15
+ '@babel/types': 7.23.6
glob: 7.2.3
lodash: 4.17.21
require-package-name: 2.0.1
@@ -12570,69 +12347,55 @@ packages:
resolution: {integrity: sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg==}
engines: {node: '>=10', npm: '>=6'}
dependencies:
- '@babel/runtime': 7.24.4
+ '@babel/runtime': 7.23.7
cosmiconfig: 7.1.0
resolve: 1.22.8
- /babel-plugin-polyfill-corejs2@0.4.10(@babel/core@7.24.4):
- resolution: {integrity: sha512-rpIuu//y5OX6jVU+a5BCn1R5RSZYWAl2Nar76iwaOdycqb6JPxediskWFMMl7stfwNJR4b7eiQvh5fB5TEQJTQ==}
+ /babel-plugin-polyfill-corejs2@0.4.7(@babel/core@7.23.7):
+ resolution: {integrity: sha512-LidDk/tEGDfuHW2DWh/Hgo4rmnw3cduK6ZkOI1NPFceSK3n/yAGeOsNT7FLnSGHkXj3RHGSEVkN3FsCTY6w2CQ==}
peerDependencies:
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
dependencies:
- '@babel/compat-data': 7.24.4
- '@babel/core': 7.24.4
- '@babel/helper-define-polyfill-provider': 0.6.1(@babel/core@7.24.4)
+ '@babel/compat-data': 7.23.5
+ '@babel/core': 7.23.7
+ '@babel/helper-define-polyfill-provider': 0.4.4(@babel/core@7.23.7)
semver: 6.3.1
transitivePeerDependencies:
- supports-color
- /babel-plugin-polyfill-corejs3@0.10.4(@babel/core@7.24.4):
- resolution: {integrity: sha512-25J6I8NGfa5YkCDogHRID3fVCadIR8/pGl1/spvCkzb6lVn6SR3ojpx9nOn9iEBcUsjY24AmdKm5khcfKdylcg==}
+ /babel-plugin-polyfill-corejs3@0.8.7(@babel/core@7.23.7):
+ resolution: {integrity: sha512-KyDvZYxAzkC0Aj2dAPyDzi2Ym15e5JKZSK+maI7NAwSqofvuFglbSsxE7wUOvTg9oFVnHMzVzBKcqEb4PJgtOA==}
peerDependencies:
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-define-polyfill-provider': 0.6.1(@babel/core@7.24.4)
- core-js-compat: 3.36.1
+ '@babel/core': 7.23.7
+ '@babel/helper-define-polyfill-provider': 0.4.4(@babel/core@7.23.7)
+ core-js-compat: 3.35.0
transitivePeerDependencies:
- supports-color
- /babel-plugin-polyfill-regenerator@0.6.1(@babel/core@7.24.4):
- resolution: {integrity: sha512-JfTApdE++cgcTWjsiCQlLyFBMbTUft9ja17saCc93lgV33h4tuCVj7tlvu//qpLwaG+3yEz7/KhahGrUMkVq9g==}
+ /babel-plugin-polyfill-regenerator@0.5.4(@babel/core@7.23.7):
+ resolution: {integrity: sha512-S/x2iOCvDaCASLYsOOgWOq4bCfKYVqvO/uxjkaYyZ3rVsVE3CeAI/c84NpyuBBymEgNvHgjEot3a9/Z/kXvqsg==}
peerDependencies:
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-define-polyfill-provider': 0.6.1(@babel/core@7.24.4)
+ '@babel/core': 7.23.7
+ '@babel/helper-define-polyfill-provider': 0.4.4(@babel/core@7.23.7)
transitivePeerDependencies:
- supports-color
- /babel-plugin-remove-graphql-queries@5.13.1(@babel/core@7.24.4)(gatsby@5.13.1):
- resolution: {integrity: sha512-yncJ/W6Un48aBRpK/rmdpQOMcr4+EmJ3oi2Wq1zXKu8WLlw+j93KTbejf7fg2msm8GUskb/+9Nnpz7oMCqO9aA==}
- engines: {node: '>=18.0.0'}
- peerDependencies:
- '@babel/core': ^7.0.0
- gatsby: ^5.0.0-next
- dependencies:
- '@babel/core': 7.24.4
- '@babel/runtime': 7.24.4
- '@babel/types': 7.24.0
- gatsby: 5.13.1(babel-eslint@10.1.0)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5)
- gatsby-core-utils: 4.13.1
-
- /babel-plugin-remove-graphql-queries@5.13.1(@babel/core@7.24.4)(gatsby@5.13.3):
- resolution: {integrity: sha512-yncJ/W6Un48aBRpK/rmdpQOMcr4+EmJ3oi2Wq1zXKu8WLlw+j93KTbejf7fg2msm8GUskb/+9Nnpz7oMCqO9aA==}
+ /babel-plugin-remove-graphql-queries@5.13.0(@babel/core@7.23.7)(gatsby@5.13.1):
+ resolution: {integrity: sha512-ZqrQUsnkOuEEjofPXSDfBbDY0CYEQEieofyaBIg/apQop+eQCmMphWPMd7/57MLMZi1Dnq1yw1FfSWO50LmhjA==}
engines: {node: '>=18.0.0'}
peerDependencies:
'@babel/core': ^7.0.0
gatsby: ^5.0.0-next
dependencies:
- '@babel/core': 7.24.4
- '@babel/runtime': 7.24.4
- '@babel/types': 7.24.0
- gatsby: 5.13.3(babel-eslint@10.1.0)(esbuild@0.19.12)(react-dom@18.2.0)(react@18.2.0)(typescript@5.3.3)
+ '@babel/core': 7.23.7
+ '@babel/runtime': 7.23.7
+ '@babel/types': 7.23.6
+ gatsby: 5.13.1(babel-eslint@10.1.0)(react-dom@18.2.0)(react@18.2.0)(typescript@5.4.2)
gatsby-core-utils: 4.13.1
- dev: false
/babel-plugin-syntax-trailing-function-commas@7.0.0-beta.0:
resolution: {integrity: sha512-Xj9XuRuz3nTSbaTXWv3itLOcxyF4oPD8douBBmj7U9BBC6nEBYfyOJYQMf/8PJAFotC62UY5dFfIGEPr7WswzQ==}
@@ -12640,96 +12403,96 @@ packages:
/babel-plugin-transform-react-remove-prop-types@0.4.24:
resolution: {integrity: sha512-eqj0hVcJUR57/Ug2zE1Yswsw4LhuqqHhD+8v120T1cl3kjg76QwtyBrdIk4WVwK+lAhBJVYCd/v+4nc4y+8JsA==}
- /babel-preset-current-node-syntax@1.0.1(@babel/core@7.24.4):
+ /babel-preset-current-node-syntax@1.0.1(@babel/core@7.23.7):
resolution: {integrity: sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.24.4
- '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.24.4)
- '@babel/plugin-syntax-bigint': 7.8.3(@babel/core@7.24.4)
- '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.24.4)
- '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.24.4)
- '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.24.4)
- '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.24.4)
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.4)
- '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.24.4)
- '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.24.4)
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.24.4)
- '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.4)
- '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.24.4)
- dev: true
-
- /babel-preset-fbjs@3.4.0(@babel/core@7.24.4):
+ '@babel/core': 7.23.7
+ '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.23.7)
+ '@babel/plugin-syntax-bigint': 7.8.3(@babel/core@7.23.7)
+ '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.23.7)
+ '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.23.7)
+ '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.23.7)
+ '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.23.7)
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.23.7)
+ '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.23.7)
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.23.7)
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.23.7)
+ '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.23.7)
+ '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.23.7)
+ dev: true
+
+ /babel-preset-fbjs@3.4.0(@babel/core@7.23.7):
resolution: {integrity: sha512-9ywCsCvo1ojrw0b+XYk7aFvTH6D9064t0RIL1rtMf3nsa02Xw41MS7sZw216Im35xj/UY0PDBQsa1brUDDF1Ow==}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.24.4
- '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.24.4)
- '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.24.4)
- '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.24.4)
- '@babel/plugin-syntax-flow': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-syntax-jsx': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.24.4)
- '@babel/plugin-transform-arrow-functions': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-transform-block-scoped-functions': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-transform-block-scoping': 7.24.4(@babel/core@7.24.4)
- '@babel/plugin-transform-classes': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-transform-computed-properties': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-transform-destructuring': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-transform-flow-strip-types': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-transform-for-of': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-transform-function-name': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-transform-literals': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-transform-member-expression-literals': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-transform-modules-commonjs': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-transform-object-super': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-transform-parameters': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-transform-property-literals': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-transform-react-display-name': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-transform-react-jsx': 7.23.4(@babel/core@7.24.4)
- '@babel/plugin-transform-shorthand-properties': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-transform-spread': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-transform-template-literals': 7.24.1(@babel/core@7.24.4)
+ '@babel/core': 7.23.7
+ '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.23.7)
+ '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.23.7)
+ '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.23.7)
+ '@babel/plugin-syntax-flow': 7.23.3(@babel/core@7.23.7)
+ '@babel/plugin-syntax-jsx': 7.23.3(@babel/core@7.23.7)
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.23.7)
+ '@babel/plugin-transform-arrow-functions': 7.23.3(@babel/core@7.23.7)
+ '@babel/plugin-transform-block-scoped-functions': 7.23.3(@babel/core@7.23.7)
+ '@babel/plugin-transform-block-scoping': 7.23.4(@babel/core@7.23.7)
+ '@babel/plugin-transform-classes': 7.23.5(@babel/core@7.23.7)
+ '@babel/plugin-transform-computed-properties': 7.23.3(@babel/core@7.23.7)
+ '@babel/plugin-transform-destructuring': 7.23.3(@babel/core@7.23.7)
+ '@babel/plugin-transform-flow-strip-types': 7.23.3(@babel/core@7.23.7)
+ '@babel/plugin-transform-for-of': 7.23.6(@babel/core@7.23.7)
+ '@babel/plugin-transform-function-name': 7.23.3(@babel/core@7.23.7)
+ '@babel/plugin-transform-literals': 7.23.3(@babel/core@7.23.7)
+ '@babel/plugin-transform-member-expression-literals': 7.23.3(@babel/core@7.23.7)
+ '@babel/plugin-transform-modules-commonjs': 7.23.3(@babel/core@7.23.7)
+ '@babel/plugin-transform-object-super': 7.23.3(@babel/core@7.23.7)
+ '@babel/plugin-transform-parameters': 7.23.3(@babel/core@7.23.7)
+ '@babel/plugin-transform-property-literals': 7.23.3(@babel/core@7.23.7)
+ '@babel/plugin-transform-react-display-name': 7.23.3(@babel/core@7.23.7)
+ '@babel/plugin-transform-react-jsx': 7.23.4(@babel/core@7.23.7)
+ '@babel/plugin-transform-shorthand-properties': 7.23.3(@babel/core@7.23.7)
+ '@babel/plugin-transform-spread': 7.23.3(@babel/core@7.23.7)
+ '@babel/plugin-transform-template-literals': 7.23.3(@babel/core@7.23.7)
babel-plugin-syntax-trailing-function-commas: 7.0.0-beta.0
- /babel-preset-gatsby@3.13.1(@babel/core@7.24.4)(core-js@3.36.1):
- resolution: {integrity: sha512-JpWj9bkUZ2mlcu4Hc+8Yp8Bml5jmShW1IGVVCQyXrbiKHyBoTr77PhWqy00mvY9EPwlmfTPlgB6QrQBVONLqmw==}
+ /babel-preset-gatsby@3.13.0(@babel/core@7.23.7)(core-js@3.35.0):
+ resolution: {integrity: sha512-dkTg3j8K1FLXQvAAs3iQnL5rPVaWFqvBeWns0rOg7iijyXC63Ma5FI1Mp7aKfwXWDd29//hIZ1+DNpy2rrGiDg==}
engines: {node: '>=18.0.0'}
peerDependencies:
'@babel/core': ^7.11.6
core-js: ^3.0.0
dependencies:
- '@babel/core': 7.24.4
- '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.24.4)
- '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.24.4)
- '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.24.4)
- '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.24.4)
- '@babel/plugin-transform-classes': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-transform-runtime': 7.24.3(@babel/core@7.24.4)
- '@babel/plugin-transform-spread': 7.24.1(@babel/core@7.24.4)
- '@babel/preset-env': 7.24.4(@babel/core@7.24.4)
- '@babel/preset-react': 7.24.1(@babel/core@7.24.4)
- '@babel/runtime': 7.24.4
+ '@babel/core': 7.23.7
+ '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.23.7)
+ '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.23.7)
+ '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.23.7)
+ '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.23.7)
+ '@babel/plugin-transform-classes': 7.23.5(@babel/core@7.23.7)
+ '@babel/plugin-transform-runtime': 7.23.7(@babel/core@7.23.7)
+ '@babel/plugin-transform-spread': 7.23.3(@babel/core@7.23.7)
+ '@babel/preset-env': 7.23.7(@babel/core@7.23.7)
+ '@babel/preset-react': 7.23.3(@babel/core@7.23.7)
+ '@babel/runtime': 7.23.7
babel-plugin-dynamic-import-node: 2.3.3
babel-plugin-macros: 3.1.0
babel-plugin-transform-react-remove-prop-types: 0.4.24
- core-js: 3.36.1
+ core-js: 3.35.0
gatsby-core-utils: 4.13.1
gatsby-legacy-polyfills: 3.13.0
transitivePeerDependencies:
- supports-color
- /babel-preset-jest@29.6.3(@babel/core@7.24.4):
+ /babel-preset-jest@29.6.3(@babel/core@7.23.7):
resolution: {integrity: sha512-0B3bhxR6snWXJZtR/RliHTDPRgn1sNHOR0yVtq/IiQFyuOVjFS+wuio/R4gSNkyYmKmJB4wGZv2NZanmKmTnNA==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.24.4
+ '@babel/core': 7.23.7
babel-plugin-jest-hoist: 29.6.3
- babel-preset-current-node-syntax: 1.0.1(@babel/core@7.24.4)
+ babel-preset-current-node-syntax: 1.0.1(@babel/core@7.23.7)
dev: true
/backoff@2.5.0:
@@ -12750,12 +12513,6 @@ packages:
/balanced-match@1.0.2:
resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==}
- /bare-events@2.2.2:
- resolution: {integrity: sha512-h7z00dWdG0PYOQEvChhOSWvOfkIKsdZGkWr083FgN/HyoQuebSew/cgirYqh9SCuy/hRvxc5Vy6Fw8xAmYHLkQ==}
- requiresBuild: true
- dev: false
- optional: true
-
/base-x@3.0.9:
resolution: {integrity: sha512-H7JU6iBHTal1gp56aKoaa//YUxEaAOUiydvrV/pILqIHXTtqxSkATOnDA2u+jZ/61sD+L/412+7kzXRtWukhpQ==}
dependencies:
@@ -12763,6 +12520,7 @@ packages:
/base64-js@1.5.1:
resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==}
+ requiresBuild: true
/base64id@2.0.0:
resolution: {integrity: sha512-lGe34o6EHj9y3Kts9R4ZYs/Gr+6N7MCaMlIFA3F1R2O5/m7K06AxfSeO5530PEERE6/WyEg3lsuyw4GHlPZHog==}
@@ -12801,7 +12559,7 @@ packages:
peerDependencies:
ajv: 4.11.8 - 8
dependencies:
- '@babel/code-frame': 7.24.2
+ '@babel/code-frame': 7.23.5
'@humanwhocodes/momoa': 2.0.4
ajv: 8.12.0
chalk: 4.1.2
@@ -12841,7 +12599,7 @@ packages:
engines: {node: '>=12'}
dependencies:
bin-version: 6.0.0
- semver: 7.6.0
+ semver: 7.5.4
semver-truncate: 3.0.0
/bin-version@6.0.0:
@@ -12851,8 +12609,8 @@ packages:
execa: 5.1.1
find-versions: 5.1.0
- /binary-extensions@2.3.0:
- resolution: {integrity: sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==}
+ /binary-extensions@2.2.0:
+ resolution: {integrity: sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==}
engines: {node: '>=8'}
/bindings@1.5.0:
@@ -12863,10 +12621,12 @@ packages:
/bl@4.1.0:
resolution: {integrity: sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==}
+ requiresBuild: true
dependencies:
buffer: 5.7.1
inherits: 2.0.4
readable-stream: 3.6.2
+ dev: true
/bl@5.1.0:
resolution: {integrity: sha512-tv1ZJHLfTDnXE6tMHv73YgSJaWR2AFuPwMntBe7XL/GBFHnT0CLnsHMogfk5+GzCDC5ZWarSCYaIGATZt9dNsQ==}
@@ -12881,6 +12641,7 @@ packages:
/blueimp-md5@2.19.0:
resolution: {integrity: sha512-DRQrD6gJyy8FbiE4s+bDoXS9hiW3Vbx5uCdwvcCf3zLHL+Iv7LtGHLpr+GZV8rHG8tK766FGYBwRbu8pELTt+w==}
+ requiresBuild: true
dev: false
/body-parser@1.20.1:
@@ -12947,7 +12708,7 @@ packages:
dependencies:
ansi-align: 3.0.1
camelcase: 7.0.1
- chalk: 5.0.1
+ chalk: 5.3.0
cli-boxes: 3.0.0
string-width: 5.1.2
type-fest: 2.19.0
@@ -12961,7 +12722,7 @@ packages:
dependencies:
ansi-align: 3.0.1
camelcase: 7.0.1
- chalk: 5.2.0
+ chalk: 5.3.0
cli-boxes: 3.0.0
string-width: 5.1.2
type-fest: 2.19.0
@@ -13021,15 +12782,15 @@ packages:
pako: 0.2.9
dev: true
- /browserslist@4.23.0:
- resolution: {integrity: sha512-QW8HiM1shhT2GuzkvklfjcKDiWFXHOeFCIA/huJPwHsslwcydgk7X+z2zXpEijP98UCY7HbubZt5J2Zgvf0CaQ==}
+ /browserslist@4.22.2:
+ resolution: {integrity: sha512-0UgcrvQmBDvZHFGdYUehrCNIazki7/lUP3kkoi/r3YB2amZbFM9J43ZRkJTXBUZK4gmx56+Sqk9+Vs9mwZx9+A==}
engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
hasBin: true
dependencies:
- caniuse-lite: 1.0.30001608
- electron-to-chromium: 1.4.731
+ caniuse-lite: 1.0.30001574
+ electron-to-chromium: 1.4.620
node-releases: 2.0.14
- update-browserslist-db: 1.0.13(browserslist@4.23.0)
+ update-browserslist-db: 1.0.13(browserslist@4.22.2)
/bser@2.1.1:
resolution: {integrity: sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==}
@@ -13048,6 +12809,7 @@ packages:
/buffer@5.7.1:
resolution: {integrity: sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==}
+ requiresBuild: true
dependencies:
base64-js: 1.5.1
ieee754: 1.2.1
@@ -13064,19 +12826,19 @@ packages:
engines: {node: '>=6'}
dev: false
- /builtins@5.1.0:
- resolution: {integrity: sha512-SW9lzGTLvWTP1AY8xeAMZimqDrIaSdLQUcVr9DMef51niJ022Ri87SwRRKYm4A6iHfkPaiVUu/Duw2Wc4J7kKg==}
+ /builtins@5.0.1:
+ resolution: {integrity: sha512-qwVpFEHNfhYJIzNRBvd2C1kyo6jz3ZSMPyyuR47OPdiKWlbYnZNyDWuyR175qDnAJLiCo5fBBqPb3RiXgWlkOQ==}
dependencies:
- semver: 7.6.0
+ semver: 7.5.4
dev: false
- /bundle-require@4.0.2(esbuild@0.19.12):
+ /bundle-require@4.0.2(esbuild@0.19.11):
resolution: {integrity: sha512-jwzPOChofl67PSTW2SGubV9HBQAhhR2i6nskiOThauo9dzwDUgOWQScFVaJkjEfYX+UXiD+LEx8EblQMc2wIag==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
peerDependencies:
esbuild: '>=0.17'
dependencies:
- esbuild: 0.19.12
+ esbuild: 0.19.11
load-tsconfig: 0.2.5
dev: true
@@ -13102,6 +12864,7 @@ packages:
/cac@6.7.14:
resolution: {integrity: sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==}
engines: {node: '>=8'}
+ requiresBuild: true
/cacache@15.3.0:
resolution: {integrity: sha512-VVdYzXEn+cnbXpFgWs5hTT7OScegHVmLhJIR8Ufqk3iFD6A6j5iSX1KuBTfNEv4tdJWE2PzA6IVFtcLC7fN9wQ==}
@@ -13124,7 +12887,7 @@ packages:
promise-inflight: 1.0.1
rimraf: 3.0.2
ssri: 8.0.1
- tar: 6.2.1
+ tar: 6.2.0
unique-filename: 1.1.1
transitivePeerDependencies:
- bluebird
@@ -13170,7 +12933,7 @@ packages:
http-cache-semantics: 4.1.1
keyv: 4.5.4
mimic-response: 4.0.0
- normalize-url: 8.0.1
+ normalize-url: 8.0.0
responselike: 3.0.0
/cacheable-request@7.0.4:
@@ -13200,15 +12963,13 @@ packages:
write-file-atomic: 3.0.3
dev: true
- /call-bind@1.0.7:
- resolution: {integrity: sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==}
- engines: {node: '>= 0.4'}
+ /call-bind@1.0.5:
+ resolution: {integrity: sha512-C3nQxfFZxFRVoJoGKKI8y3MOEo129NQ+FgQ08iye+Mk4zNZZGdjfs06bVTr+DBSlA66Q2VEcMki/cUCP4SercQ==}
+ requiresBuild: true
dependencies:
- es-define-property: 1.0.0
- es-errors: 1.3.0
function-bind: 1.1.2
- get-intrinsic: 1.2.4
- set-function-length: 1.2.2
+ get-intrinsic: 1.2.2
+ set-function-length: 1.1.1
/callsite@1.0.0:
resolution: {integrity: sha512-0vdNRFXn5q+dtOqjfFtmtlI9N2eVZ7LMyEV2iKC5mEEFvSg/69Ml6b/WU2qF8W1nLRa0wiSrDT3Y5jOHZCwKPQ==}
@@ -13256,13 +13017,13 @@ packages:
/caniuse-api@3.0.0:
resolution: {integrity: sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==}
dependencies:
- browserslist: 4.23.0
- caniuse-lite: 1.0.30001608
+ browserslist: 4.22.2
+ caniuse-lite: 1.0.30001574
lodash.memoize: 4.1.2
lodash.uniq: 4.5.0
- /caniuse-lite@1.0.30001608:
- resolution: {integrity: sha512-cjUJTQkk9fQlJR2s4HMuPMvTiRggl0rAVMtthQuyOlDWuqHXqN8azLq+pi8B2TjwKJ32diHjUqRIKeFX4z1FoA==}
+ /caniuse-lite@1.0.30001574:
+ resolution: {integrity: sha512-BtYEK4r/iHt/txm81KBudCUcTy7t+s9emrIaHqjYurQ10x71zJ5VQ9x1dYPcz/b+pKSp4y/v1xSI67A+LzpNyg==}
/capital-case@1.0.4:
resolution: {integrity: sha512-ds37W8CytHgwnhGGTi88pcPyR15qoNkOpYwmMMfnWqqWgESapLqvDx6huFjQ5vqWSn2Z06173XNA7LtMOeUh1A==}
@@ -13279,8 +13040,8 @@ packages:
resolution: {integrity: sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==}
dev: false
- /chai@4.4.1:
- resolution: {integrity: sha512-13sOfMv2+DWduEU+/xbun3LScLoqN17nBeTLUsmDfKdoiC1fr0n9PU4guu4AhRcOVFk/sW8LyZWHuhWtQZiF+g==}
+ /chai@4.3.10:
+ resolution: {integrity: sha512-0UXG04VuVbruMUYbJ6JctvH0YnC/4q3/AkT18q4NaITo91CUm0liMS9VqzT9vZhVQ/1eqPanMWjBM+Juhfb/9g==}
engines: {node: '>=4'}
dependencies:
assertion-error: 1.1.0
@@ -13338,7 +13099,6 @@ packages:
/chalk@5.3.0:
resolution: {integrity: sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==}
engines: {node: ^12.17.0 || ^14.13 || >=16.0.0}
- dev: true
/change-case-all@1.0.14:
resolution: {integrity: sha512-CWVm2uT7dmSHdO/z1CXT/n47mWonyypzBbuCy5tN7uMg22BsfkhwT6oHmFCAk+gL1LOOxhdbB9SZz3J1KTY3gA==}
@@ -13472,24 +13232,11 @@ packages:
readdirp: 3.6.0
optionalDependencies:
fsevents: 2.3.3
- dev: false
-
- /chokidar@3.6.0:
- resolution: {integrity: sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==}
- engines: {node: '>= 8.10.0'}
- dependencies:
- anymatch: 3.1.3
- braces: 3.0.2
- glob-parent: 5.1.2
- is-binary-path: 2.1.0
- is-glob: 4.0.3
- normalize-path: 3.0.0
- readdirp: 3.6.0
- optionalDependencies:
- fsevents: 2.3.3
/chownr@1.1.4:
resolution: {integrity: sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==}
+ requiresBuild: true
+ dev: true
/chownr@2.0.0:
resolution: {integrity: sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==}
@@ -13530,6 +13277,12 @@ packages:
static-extend: 0.1.2
dev: false
+ /class-variance-authority@0.7.0:
+ resolution: {integrity: sha512-jFI8IQw4hczaL4ALINxqLEXQbWcNjoSkloa4IaufXCJr6QawJyw7tuRysRsrE8w2p/4gGaxKIt/hX3qz/IbD1A==}
+ dependencies:
+ clsx: 2.0.0
+ dev: false
+
/clean-deep@3.4.0:
resolution: {integrity: sha512-Lo78NV5ItJL/jl+B5w0BycAisaieJGXK1qYi/9m4SjR8zbqmrUtO7Yhro40wEShGmmxs/aJLI/A+jNhdkXK8mw==}
engines: {node: '>=4'}
@@ -13542,6 +13295,7 @@ packages:
/clean-stack@2.2.0:
resolution: {integrity: sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==}
engines: {node: '>=6'}
+ requiresBuild: true
/clean-stack@4.2.0:
resolution: {integrity: sha512-LYv6XPxoyODi36Dp976riBtSY27VmFo+MKqEU9QCCWyTrdEPDog+RWA7xQWHi6Vbp61j5c4cdzzX1NidnwtUWg==}
@@ -13589,8 +13343,8 @@ packages:
resolution: {integrity: sha512-ywqV+5MmyL4E7ybXgKys4DugZbX0FC6LnwrhjuykIjnK9k8OQacQ7axGKnjDXWNhns0xot3bZI5h55H8yo9cJg==}
engines: {node: '>=6'}
- /cli-table3@0.6.4:
- resolution: {integrity: sha512-Lm3L0p+/npIQWNIiyF/nAn7T5dnOwR3xNTHXYEBFBFVPXzCVNZ5lqEC/1eo/EVfpDsQ1I+TX4ORPQgp+UI0CRw==}
+ /cli-table3@0.6.3:
+ resolution: {integrity: sha512-w5Jac5SykAeZJKntOxJCrm63Eg5/4dhMWIcuTbo9rpE+brgaSZo0RuNJZeOyMgsUdhDeojvgyQLmjI+K50ZGyg==}
engines: {node: 10.* || >= 12.*}
dependencies:
string-width: 4.2.3
@@ -13700,11 +13454,21 @@ packages:
engines: {node: '>=6'}
dev: false
+ /clsx@2.0.0:
+ resolution: {integrity: sha512-rQ1+kcj+ttHG0MKVGBUXwayCCF1oh39BF5COIpRzuCEv8Mwjv0XucrI2ExNTOn9IlLifGClWQcU9BrZORvtw6Q==}
+ engines: {node: '>=6'}
+ dev: false
+
/clsx@2.1.0:
resolution: {integrity: sha512-m3iNNWpd9rl3jvvcBnu70ylMdrXt8Vlq4HYadnU5fwcOtvkSQWPmj7amUcDT2qYI7risszBjI5AUIUox9D16pg==}
engines: {node: '>=6'}
dev: false
+ /cluster-key-slot@1.1.2:
+ resolution: {integrity: sha512-RMr0FhtfXemyinomL4hrWcYJxmX6deFdCxpJzhDttxgO1+bcCnkk+9drydLVDmAMG7NE6aN/fl4F7ucU/90gAA==}
+ engines: {node: '>=0.10.0'}
+ dev: false
+
/co@4.6.0:
resolution: {integrity: sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==}
engines: {iojs: '>= 1.0.0', node: '>= 0.12.0'}
@@ -13732,6 +13496,7 @@ packages:
/color-convert@1.9.3:
resolution: {integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==}
+ requiresBuild: true
dependencies:
color-name: 1.1.3
@@ -13743,12 +13508,14 @@ packages:
/color-name@1.1.3:
resolution: {integrity: sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==}
+ requiresBuild: true
/color-name@1.1.4:
resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==}
/color-string@1.9.1:
resolution: {integrity: sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==}
+ requiresBuild: true
dependencies:
color-name: 1.1.4
simple-swizzle: 0.2.2
@@ -13767,6 +13534,7 @@ packages:
/color@4.2.3:
resolution: {integrity: sha512-1rXeuUUiGGrykh+CeBdu5Ie7OJwinCgQY0bc7GCRxy5xVHy+moaqkpL/jqQq0MtQOeYcrqEz4abc5f0KtU7W4A==}
engines: {node: '>=12.5.0'}
+ requiresBuild: true
dependencies:
color-convert: 2.0.1
color-string: 1.9.1
@@ -13784,7 +13552,7 @@ packages:
resolution: {integrity: sha512-DP3FpjsiDDvnQC1OJBsdOJZPuy7r0o6sepY2T5M3L/d2nrE23O/ErFkEqyY3ngVL1ZhTj/H0pCMNObZGkEOaaQ==}
engines: {node: '>=12.20.0'}
dependencies:
- chalk: 5.2.0
+ chalk: 5.3.0
filter-obj: 3.0.0
is-plain-obj: 4.1.0
jest-validate: 27.5.1
@@ -13794,7 +13562,7 @@ packages:
resolution: {integrity: sha512-Soe5lerRg3erMRgYC0EC696/8dMCGpBzcQchFfi55Yrkja8F+P7cUt0LVTIg7u5ob5BexLZ/F1kO+ejmv+nq8w==}
engines: {node: '>=14.18.0'}
dependencies:
- chalk: 5.2.0
+ chalk: 5.3.0
is-plain-obj: 4.1.0
dev: false
@@ -13897,12 +13665,12 @@ packages:
resolution: {integrity: sha512-T0+barUSQRTUQASh8bx02dl+DhF54GtIDY13Y3m9oWTklKbb3Wv974meRpeZ3lp1JpLVECWWNHC4vaG2XHXouQ==}
dev: false
- /compress-commons@5.0.3:
- resolution: {integrity: sha512-/UIcLWvwAQyVibgpQDPtfNM3SvqN7G9elAPAV7GM0L53EbNWwWiCsWtK8Fwed/APEbptPHXs5PuW+y8Bq8lFTA==}
+ /compress-commons@5.0.1:
+ resolution: {integrity: sha512-MPh//1cERdLtqwO3pOFLeXtpuai0Y2WCd5AhtKxznqM7WtaMYaOEMSgn45d9D10sIHSfIKE603HlOp8OPGrvag==}
engines: {node: '>= 12.0.0'}
dependencies:
crc-32: 1.2.2
- crc32-stream: 5.0.1
+ crc32-stream: 5.0.0
normalize-path: 3.0.0
readable-stream: 3.6.2
dev: false
@@ -13949,6 +13717,7 @@ packages:
/concordance@5.0.4:
resolution: {integrity: sha512-OAcsnTEYu1ARJqWVGwf4zh4JDfHZEaSNlNccFmt8YjB2l/n19/PF2viLINHc57vO4FKIAFl2FWASIGZZWZ2Kxw==}
engines: {node: '>=10.18.0 <11 || >=12.14.0 <13 || >=14'}
+ requiresBuild: true
dependencies:
date-time: 3.1.0
esutils: 2.0.3
@@ -13956,7 +13725,7 @@ packages:
js-string-escape: 1.0.1
lodash: 4.17.21
md5-hex: 3.0.1
- semver: 7.6.0
+ semver: 7.5.4
well-known-symbols: 2.0.0
dev: false
@@ -14076,8 +13845,8 @@ packages:
/convert-source-map@2.0.0:
resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==}
- /cookie-es@1.1.0:
- resolution: {integrity: sha512-L2rLOcK0wzWSfSDA33YR+PUHDG10a8px7rUHKWbGLP4YfbsMed2KFUw5fczvDPbT98DDe3LEzviswl810apTEw==}
+ /cookie-es@1.0.0:
+ resolution: {integrity: sha512-mWYvfOLrfEc996hlKcdABeIiPHUPC6DM2QYZdGGOvhOTbA3tjm2eBwqlJpoFdjC89NI4Qt6h0Pu06Mp+1Pj5OQ==}
dev: false
/cookie-parser@1.4.6:
@@ -14107,6 +13876,7 @@ packages:
/cookie@0.6.0:
resolution: {integrity: sha512-U71cyTamuh1CRNCfpGY6to28lxvNwPG4Guz/EVjgf3Jmzv0vlDp1atT9eS5dDjMYHucpHbWns6Lwf3BKz6svdw==}
engines: {node: '>= 0.6'}
+ dev: false
/copy-descriptor@0.1.1:
resolution: {integrity: sha512-XgZ0pFcakEUlbwQEVNg3+QAis1FyTL3Qel9FYy8pSkQqoG3PNoT0bOCQtOXcOkur21r2Eq2kI+IE+gsmAEVlYw==}
@@ -14137,19 +13907,19 @@ packages:
/core-js-compat@3.31.0:
resolution: {integrity: sha512-hM7YCu1cU6Opx7MXNu0NuumM0ezNeAeRKadixyiQELWY3vT3De9S4J5ZBMraWV2vZnrE1Cirl0GtFtDtMUXzPw==}
dependencies:
- browserslist: 4.23.0
+ browserslist: 4.22.2
- /core-js-compat@3.36.1:
- resolution: {integrity: sha512-Dk997v9ZCt3X/npqzyGdTlq6t7lDBhZwGvV94PKzDArjp7BTRm7WlDAXYd/OWdeFHO8OChQYRJNJvUCqCbrtKA==}
+ /core-js-compat@3.35.0:
+ resolution: {integrity: sha512-5blwFAddknKeNgsjBzilkdQ0+YK8L1PfqPYq40NOYMYFSS38qj+hpTcLLWwpIwA2A5bje/x5jmVn2tzUMg9IVw==}
dependencies:
- browserslist: 4.23.0
+ browserslist: 4.22.2
- /core-js-pure@3.36.1:
- resolution: {integrity: sha512-NXCvHvSVYSrewP0L5OhltzXeWFJLo2AL2TYnj6iLV3Bw8mM62wAQMNgUCRI6EBu6hVVpbCxmOPlxh1Ikw2PfUA==}
+ /core-js-pure@3.35.0:
+ resolution: {integrity: sha512-f+eRYmkou59uh7BPcyJ8MC76DiGhspj1KMxVIcF24tzP8NA9HVa1uC7BTW2tgx7E1QVCzDzsgp7kArrzhlz8Ew==}
requiresBuild: true
- /core-js@3.36.1:
- resolution: {integrity: sha512-BTvUrwxVBezj5SZ3f10ImnX2oRByMxql3EimVqMysepbC9EeMUOpLwdy6Eoili2x6E4kf+ZUB5k/+Jv55alPfA==}
+ /core-js@3.35.0:
+ resolution: {integrity: sha512-ntakECeqg81KqMueeGJ79Q5ZgQNR+6eaE8sxGCx62zMbAIj65q+uYvatToew3m6eAGdU4gNZwpZ34NMe4GYswg==}
requiresBuild: true
/core-util-is@1.0.3:
@@ -14162,7 +13932,7 @@ packages:
object-assign: 4.1.1
vary: 1.1.2
- /cosmiconfig-typescript-loader@5.0.0(@types/node@18.19.31)(cosmiconfig@8.3.6)(typescript@5.3.3):
+ /cosmiconfig-typescript-loader@5.0.0(@types/node@18.19.17)(cosmiconfig@8.3.6)(typescript@5.3.3):
resolution: {integrity: sha512-+8cK7jRAReYkMwMiG+bxhcNKiHJDM6bR9FD/nGBXOWdMLuYawjF5cGrtLilJ+LGd3ZjCXnJjR5DkfWPoIVlqJA==}
engines: {node: '>=v16'}
peerDependencies:
@@ -14170,7 +13940,7 @@ packages:
cosmiconfig: '>=8.2'
typescript: '>=4'
dependencies:
- '@types/node': 18.19.31
+ '@types/node': 18.19.17
cosmiconfig: 8.3.6(typescript@5.3.3)
jiti: 1.21.0
typescript: 5.3.3
@@ -14227,7 +13997,7 @@ packages:
path-type: 4.0.0
typescript: 5.3.3
- /cosmiconfig@8.3.6(typescript@5.4.4):
+ /cosmiconfig@8.3.6(typescript@5.4.2):
resolution: {integrity: sha512-kcZ6+W5QzcJ3P1Mt+83OUv/oHFqZHIx8DuxG6eZ5RGMERoLqp4BuGjhHLYGK+Kf5XVkQvqBSmAy/nGWN3qDgEA==}
engines: {node: '>=14'}
peerDependencies:
@@ -14240,7 +14010,7 @@ packages:
js-yaml: 4.1.0
parse-json: 5.2.0
path-type: 4.0.0
- typescript: 5.4.4
+ typescript: 5.4.2
dev: false
/cp-file@10.0.0:
@@ -14282,21 +14052,21 @@ packages:
hasBin: true
dev: false
- /crc32-stream@5.0.1:
- resolution: {integrity: sha512-lO1dFui+CEUh/ztYIpgpKItKW9Bb4NWakCRJrnqAbFIYD+OZAwb2VfD5T5eXMw2FNcsDHkQcNl/Wh3iVXYwU6g==}
+ /crc32-stream@5.0.0:
+ resolution: {integrity: sha512-B0EPa1UK+qnpBZpG+7FgPCu0J2ETLpXq09o9BkLkEAhdB6Z61Qo4pJ3JYu0c+Qi+/SAL7QThqnzS06pmSSyZaw==}
engines: {node: '>= 12.0.0'}
dependencies:
crc-32: 1.2.2
readable-stream: 3.6.2
dev: false
- /create-gatsby@3.13.1:
- resolution: {integrity: sha512-CCg8Vz/iQs1cgMEzyRlVGMvNs8ivE/2w+TL6yS56FVe1JjOou8nKYHzxnWxRmBUtC7rTfjxVaTESIotuYBsltQ==}
+ /create-gatsby@3.13.0:
+ resolution: {integrity: sha512-LioljItQuXjGOmla7tmpaPQ452mO8FYlEzEvhF6oMy+aureMLjiYHrO1BlpNQoaRQxIPp85iMnhliy4cQwDVwg==}
hasBin: true
dependencies:
- '@babel/runtime': 7.24.4
+ '@babel/runtime': 7.23.7
- /create-jest@29.7.0(@types/node@18.19.31):
+ /create-jest@29.7.0(@types/node@18.19.17):
resolution: {integrity: sha512-Adz2bdH0Vq3F53KEMJOoftQFutWCukm6J24wbPWRO4k1kMY7gS7ds/uoJkNuV8wDCtWWnuwGcJwpWcih+zEW1Q==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
hasBin: true
@@ -14305,7 +14075,7 @@ packages:
chalk: 4.1.2
exit: 0.1.2
graceful-fs: 4.2.11
- jest-config: 29.7.0(@types/node@18.19.31)
+ jest-config: 29.7.0(@types/node@18.19.17)
jest-util: 29.7.0
prompts: 2.4.2
transitivePeerDependencies:
@@ -14384,16 +14154,16 @@ packages:
type-fest: 1.4.0
dev: false
- /css-declaration-sorter@6.4.1(postcss@8.4.38):
+ /css-declaration-sorter@6.4.1(postcss@8.4.32):
resolution: {integrity: sha512-rtdthzxKuyq6IzqX6jEcIzQF/YqccluefyCYheovBOLhFT/drQA9zj/UbRAa9J7C0o6EG6u3E6g+vKkay7/k3g==}
engines: {node: ^10 || ^12 || >=14}
peerDependencies:
postcss: ^8.0.9
dependencies:
- postcss: 8.4.38
+ postcss: 8.4.32
- /css-declaration-sorter@7.2.0(postcss@8.4.32):
- resolution: {integrity: sha512-h70rUM+3PNFuaBDTLe8wF/cdWu+dOZmb7pJt8Z2sedYbAcQVQV/tEchueg3GWxwqS0cxtbxmaHEdkNACqcvsow==}
+ /css-declaration-sorter@7.1.1(postcss@8.4.32):
+ resolution: {integrity: sha512-dZ3bVTEEc1vxr3Bek9vGwfB5Z6ESPULhcRvO472mfjVnj8jRcTnKO8/JTczlvxM10Myb+wBM++1MtdO76eWcaQ==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
postcss: ^8.0.9
@@ -14401,25 +14171,25 @@ packages:
postcss: 8.4.32
dev: true
- /css-loader@5.2.7(webpack@5.91.0):
+ /css-loader@5.2.7(webpack@5.89.0):
resolution: {integrity: sha512-Q7mOvpBNBG7YrVGMxRxcBJZFL75o+cH2abNASdibkj/fffYD8qWbInZrD0S9ccI6vZclF3DsHE7njGlLtaHbhg==}
engines: {node: '>= 10.13.0'}
peerDependencies:
webpack: ^4.27.0 || ^5.0.0
dependencies:
- icss-utils: 5.1.0(postcss@8.4.38)
+ icss-utils: 5.1.0(postcss@8.4.32)
loader-utils: 2.0.4
- postcss: 8.4.38
- postcss-modules-extract-imports: 3.1.0(postcss@8.4.38)
- postcss-modules-local-by-default: 4.0.5(postcss@8.4.38)
- postcss-modules-scope: 3.2.0(postcss@8.4.38)
- postcss-modules-values: 4.0.0(postcss@8.4.38)
+ postcss: 8.4.32
+ postcss-modules-extract-imports: 3.0.0(postcss@8.4.32)
+ postcss-modules-local-by-default: 4.0.3(postcss@8.4.32)
+ postcss-modules-scope: 3.1.0(postcss@8.4.32)
+ postcss-modules-values: 4.0.0(postcss@8.4.32)
postcss-value-parser: 4.2.0
schema-utils: 3.3.0
- semver: 7.6.0
- webpack: 5.91.0(esbuild@0.19.12)
+ semver: 7.5.4
+ webpack: 5.89.0
- /css-minimizer-webpack-plugin@2.0.0(webpack@5.91.0):
+ /css-minimizer-webpack-plugin@2.0.0(webpack@5.89.0):
resolution: {integrity: sha512-cG/uc94727tx5pBNtb1Sd7gvUPzwmcQi1lkpfqTpdkuNq75hJCw7bIVsCNijLm4dhDcr1atvuysl2rZqOG8Txw==}
engines: {node: '>= 10.13.0'}
peerDependencies:
@@ -14432,14 +14202,14 @@ packages:
csso:
optional: true
dependencies:
- cssnano: 5.1.15(postcss@8.4.38)
+ cssnano: 5.1.15(postcss@8.4.32)
jest-worker: 26.6.2
p-limit: 3.1.0
- postcss: 8.4.38
+ postcss: 8.4.32
schema-utils: 3.3.0
serialize-javascript: 5.0.1
source-map: 0.6.1
- webpack: 5.91.0(esbuild@0.19.12)
+ webpack: 5.89.0
/css-select@4.3.0:
resolution: {integrity: sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==}
@@ -14475,14 +14245,14 @@ packages:
engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0, npm: '>=7.0.0'}
dependencies:
mdn-data: 2.0.28
- source-map-js: 1.2.0
+ source-map-js: 1.0.2
/css-tree@2.3.1:
resolution: {integrity: sha512-6Fv1DV/TYw//QF5IzQdqsNDjx/wc8TrMBZsqjL9eW01tWb7R7k/mq+/VXfJCl7SoD5emsJop9cOByJZfs8hYIw==}
engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0}
dependencies:
mdn-data: 2.0.30
- source-map-js: 1.2.0
+ source-map-js: 1.0.2
/css-url-parser@1.1.3:
resolution: {integrity: sha512-KO4HrqK3lAlrnobbBEHib/lFRw7kGOlQTLYhwTwWzDEGilGTYIYOpI22d+6euyZiqfZpV96pii87ZufifbxpqA==}
@@ -14508,92 +14278,91 @@ packages:
resolution: {integrity: sha512-FAaLDaplstoRsDR8XGYH51znUN0UY7nMc6Z9/fvE8EXGwvJE9hu7W2vHwx1+bd6gCYnln9nLbzxFTrcO9YQDZw==}
dev: false
- /cssnano-preset-default@5.2.14(postcss@8.4.38):
+ /cssnano-preset-default@5.2.14(postcss@8.4.32):
resolution: {integrity: sha512-t0SFesj/ZV2OTylqQVOrFgEh5uanxbO6ZAdeCrNsUQ6fVuXwYTxJPNAGvGTxHbD68ldIJNec7PyYZDBrfDQ+6A==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- css-declaration-sorter: 6.4.1(postcss@8.4.38)
- cssnano-utils: 3.1.0(postcss@8.4.38)
- postcss: 8.4.38
- postcss-calc: 8.2.4(postcss@8.4.38)
- postcss-colormin: 5.3.1(postcss@8.4.38)
- postcss-convert-values: 5.1.3(postcss@8.4.38)
- postcss-discard-comments: 5.1.2(postcss@8.4.38)
- postcss-discard-duplicates: 5.1.0(postcss@8.4.38)
- postcss-discard-empty: 5.1.1(postcss@8.4.38)
- postcss-discard-overridden: 5.1.0(postcss@8.4.38)
- postcss-merge-longhand: 5.1.7(postcss@8.4.38)
- postcss-merge-rules: 5.1.4(postcss@8.4.38)
- postcss-minify-font-values: 5.1.0(postcss@8.4.38)
- postcss-minify-gradients: 5.1.1(postcss@8.4.38)
- postcss-minify-params: 5.1.4(postcss@8.4.38)
- postcss-minify-selectors: 5.2.1(postcss@8.4.38)
- postcss-normalize-charset: 5.1.0(postcss@8.4.38)
- postcss-normalize-display-values: 5.1.0(postcss@8.4.38)
- postcss-normalize-positions: 5.1.1(postcss@8.4.38)
- postcss-normalize-repeat-style: 5.1.1(postcss@8.4.38)
- postcss-normalize-string: 5.1.0(postcss@8.4.38)
- postcss-normalize-timing-functions: 5.1.0(postcss@8.4.38)
- postcss-normalize-unicode: 5.1.1(postcss@8.4.38)
- postcss-normalize-url: 5.1.0(postcss@8.4.38)
- postcss-normalize-whitespace: 5.1.1(postcss@8.4.38)
- postcss-ordered-values: 5.1.3(postcss@8.4.38)
- postcss-reduce-initial: 5.1.2(postcss@8.4.38)
- postcss-reduce-transforms: 5.1.0(postcss@8.4.38)
- postcss-svgo: 5.1.0(postcss@8.4.38)
- postcss-unique-selectors: 5.1.1(postcss@8.4.38)
-
- /cssnano-preset-default@6.1.2(postcss@8.4.32):
- resolution: {integrity: sha512-1C0C+eNaeN8OcHQa193aRgYexyJtU8XwbdieEjClw+J9d94E41LwT6ivKH0WT+fYwYWB0Zp3I3IZ7tI/BbUbrg==}
+ css-declaration-sorter: 6.4.1(postcss@8.4.32)
+ cssnano-utils: 3.1.0(postcss@8.4.32)
+ postcss: 8.4.32
+ postcss-calc: 8.2.4(postcss@8.4.32)
+ postcss-colormin: 5.3.1(postcss@8.4.32)
+ postcss-convert-values: 5.1.3(postcss@8.4.32)
+ postcss-discard-comments: 5.1.2(postcss@8.4.32)
+ postcss-discard-duplicates: 5.1.0(postcss@8.4.32)
+ postcss-discard-empty: 5.1.1(postcss@8.4.32)
+ postcss-discard-overridden: 5.1.0(postcss@8.4.32)
+ postcss-merge-longhand: 5.1.7(postcss@8.4.32)
+ postcss-merge-rules: 5.1.4(postcss@8.4.32)
+ postcss-minify-font-values: 5.1.0(postcss@8.4.32)
+ postcss-minify-gradients: 5.1.1(postcss@8.4.32)
+ postcss-minify-params: 5.1.4(postcss@8.4.32)
+ postcss-minify-selectors: 5.2.1(postcss@8.4.32)
+ postcss-normalize-charset: 5.1.0(postcss@8.4.32)
+ postcss-normalize-display-values: 5.1.0(postcss@8.4.32)
+ postcss-normalize-positions: 5.1.1(postcss@8.4.32)
+ postcss-normalize-repeat-style: 5.1.1(postcss@8.4.32)
+ postcss-normalize-string: 5.1.0(postcss@8.4.32)
+ postcss-normalize-timing-functions: 5.1.0(postcss@8.4.32)
+ postcss-normalize-unicode: 5.1.1(postcss@8.4.32)
+ postcss-normalize-url: 5.1.0(postcss@8.4.32)
+ postcss-normalize-whitespace: 5.1.1(postcss@8.4.32)
+ postcss-ordered-values: 5.1.3(postcss@8.4.32)
+ postcss-reduce-initial: 5.1.2(postcss@8.4.32)
+ postcss-reduce-transforms: 5.1.0(postcss@8.4.32)
+ postcss-svgo: 5.1.0(postcss@8.4.32)
+ postcss-unique-selectors: 5.1.1(postcss@8.4.32)
+
+ /cssnano-preset-default@6.0.3(postcss@8.4.32):
+ resolution: {integrity: sha512-4y3H370aZCkT9Ev8P4SO4bZbt+AExeKhh8wTbms/X7OLDo5E7AYUUy6YPxa/uF5Grf+AJwNcCnxKhZynJ6luBA==}
engines: {node: ^14 || ^16 || >=18.0}
peerDependencies:
postcss: ^8.4.31
dependencies:
- browserslist: 4.23.0
- css-declaration-sorter: 7.2.0(postcss@8.4.32)
- cssnano-utils: 4.0.2(postcss@8.4.32)
+ css-declaration-sorter: 7.1.1(postcss@8.4.32)
+ cssnano-utils: 4.0.1(postcss@8.4.32)
postcss: 8.4.32
postcss-calc: 9.0.1(postcss@8.4.32)
- postcss-colormin: 6.1.0(postcss@8.4.32)
- postcss-convert-values: 6.1.0(postcss@8.4.32)
- postcss-discard-comments: 6.0.2(postcss@8.4.32)
- postcss-discard-duplicates: 6.0.3(postcss@8.4.32)
- postcss-discard-empty: 6.0.3(postcss@8.4.32)
- postcss-discard-overridden: 6.0.2(postcss@8.4.32)
- postcss-merge-longhand: 6.0.5(postcss@8.4.32)
- postcss-merge-rules: 6.1.1(postcss@8.4.32)
- postcss-minify-font-values: 6.1.0(postcss@8.4.32)
- postcss-minify-gradients: 6.0.3(postcss@8.4.32)
- postcss-minify-params: 6.1.0(postcss@8.4.32)
- postcss-minify-selectors: 6.0.4(postcss@8.4.32)
- postcss-normalize-charset: 6.0.2(postcss@8.4.32)
- postcss-normalize-display-values: 6.0.2(postcss@8.4.32)
- postcss-normalize-positions: 6.0.2(postcss@8.4.32)
- postcss-normalize-repeat-style: 6.0.2(postcss@8.4.32)
- postcss-normalize-string: 6.0.2(postcss@8.4.32)
- postcss-normalize-timing-functions: 6.0.2(postcss@8.4.32)
- postcss-normalize-unicode: 6.1.0(postcss@8.4.32)
- postcss-normalize-url: 6.0.2(postcss@8.4.32)
- postcss-normalize-whitespace: 6.0.2(postcss@8.4.32)
- postcss-ordered-values: 6.0.2(postcss@8.4.32)
- postcss-reduce-initial: 6.1.0(postcss@8.4.32)
- postcss-reduce-transforms: 6.0.2(postcss@8.4.32)
- postcss-svgo: 6.0.3(postcss@8.4.32)
- postcss-unique-selectors: 6.0.4(postcss@8.4.32)
- dev: true
-
- /cssnano-utils@3.1.0(postcss@8.4.38):
+ postcss-colormin: 6.0.2(postcss@8.4.32)
+ postcss-convert-values: 6.0.2(postcss@8.4.32)
+ postcss-discard-comments: 6.0.1(postcss@8.4.32)
+ postcss-discard-duplicates: 6.0.1(postcss@8.4.32)
+ postcss-discard-empty: 6.0.1(postcss@8.4.32)
+ postcss-discard-overridden: 6.0.1(postcss@8.4.32)
+ postcss-merge-longhand: 6.0.2(postcss@8.4.32)
+ postcss-merge-rules: 6.0.3(postcss@8.4.32)
+ postcss-minify-font-values: 6.0.1(postcss@8.4.32)
+ postcss-minify-gradients: 6.0.1(postcss@8.4.32)
+ postcss-minify-params: 6.0.2(postcss@8.4.32)
+ postcss-minify-selectors: 6.0.2(postcss@8.4.32)
+ postcss-normalize-charset: 6.0.1(postcss@8.4.32)
+ postcss-normalize-display-values: 6.0.1(postcss@8.4.32)
+ postcss-normalize-positions: 6.0.1(postcss@8.4.32)
+ postcss-normalize-repeat-style: 6.0.1(postcss@8.4.32)
+ postcss-normalize-string: 6.0.1(postcss@8.4.32)
+ postcss-normalize-timing-functions: 6.0.1(postcss@8.4.32)
+ postcss-normalize-unicode: 6.0.2(postcss@8.4.32)
+ postcss-normalize-url: 6.0.1(postcss@8.4.32)
+ postcss-normalize-whitespace: 6.0.1(postcss@8.4.32)
+ postcss-ordered-values: 6.0.1(postcss@8.4.32)
+ postcss-reduce-initial: 6.0.2(postcss@8.4.32)
+ postcss-reduce-transforms: 6.0.1(postcss@8.4.32)
+ postcss-svgo: 6.0.2(postcss@8.4.32)
+ postcss-unique-selectors: 6.0.2(postcss@8.4.32)
+ dev: true
+
+ /cssnano-utils@3.1.0(postcss@8.4.32):
resolution: {integrity: sha512-JQNR19/YZhz4psLX/rQ9M83e3z2Wf/HdJbryzte4a3NSuafyp9w/I4U+hx5C2S9g41qlstH7DEWnZaaj83OuEA==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.38
+ postcss: 8.4.32
- /cssnano-utils@4.0.2(postcss@8.4.32):
- resolution: {integrity: sha512-ZR1jHg+wZ8o4c3zqf1SIUSTIvm/9mU343FMR6Obe/unskbvpGhZOo1J6d/r8D1pzkRQYuwbcH3hToOuoA2G7oQ==}
+ /cssnano-utils@4.0.1(postcss@8.4.32):
+ resolution: {integrity: sha512-6qQuYDqsGoiXssZ3zct6dcMxiqfT6epy7x4R0TQJadd4LWO3sPR6JH6ZByOvVLoZ6EdwPGgd7+DR1EmX3tiXQQ==}
engines: {node: ^14 || ^16 || >=18.0}
peerDependencies:
postcss: ^8.4.31
@@ -14601,15 +14370,15 @@ packages:
postcss: 8.4.32
dev: true
- /cssnano@5.1.15(postcss@8.4.38):
+ /cssnano@5.1.15(postcss@8.4.32):
resolution: {integrity: sha512-j+BKgDcLDQA+eDifLx0EO4XSA56b7uut3BQFH+wbSaSTuGLuiyTa/wbRYthUXX8LC9mLg+WWKe8h+qJuwTAbHw==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- cssnano-preset-default: 5.2.14(postcss@8.4.38)
+ cssnano-preset-default: 5.2.14(postcss@8.4.32)
lilconfig: 2.1.0
- postcss: 8.4.38
+ postcss: 8.4.32
yaml: 1.10.2
/cssnano@6.0.3(postcss@8.4.32):
@@ -14618,8 +14387,8 @@ packages:
peerDependencies:
postcss: ^8.4.31
dependencies:
- cssnano-preset-default: 6.1.2(postcss@8.4.32)
- lilconfig: 3.1.1
+ cssnano-preset-default: 6.0.3(postcss@8.4.32)
+ lilconfig: 3.0.0
postcss: 8.4.32
dev: true
@@ -14637,6 +14406,7 @@ packages:
/csstype@3.1.3:
resolution: {integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==}
+ requiresBuild: true
/cwd@0.10.0:
resolution: {integrity: sha512-YGZxdTTL9lmLkCUTpg4j0zQ7IhRB5ZmqNBbGCl3Tg6MP/d5/6sY7L5mmTjzbc6JKgVZYiqTQTNhPFsbXNGlRaA==}
@@ -14650,12 +14420,11 @@ packages:
resolution: {integrity: sha512-0sVXIohTfLqVIW3kb/0n6IiWF3Ifj5nm2XaSrLq2DI6fKIGa2fYAZdk917rUneaeLVpYfFcyXE2ft0fe3remsA==}
dev: false
- /d@1.0.2:
- resolution: {integrity: sha512-MOqHvMWF9/9MX6nza0KgvFH4HpMU0EF5uUDXqX/BtxtU8NfB0QzRtJ8Oe/6SuS4kbhyzVJwjd97EA4PKrzJ8bw==}
- engines: {node: '>=0.12'}
+ /d@1.0.1:
+ resolution: {integrity: sha512-m62ShEObQ39CfralilEQRjH6oAMtNCV1xJyEx5LpRYUVN+EviphDgUc/F3hnYbADmkiNs67Y+3ylmlG7Lnu+FA==}
dependencies:
- es5-ext: 0.10.64
- type: 2.7.2
+ es5-ext: 0.10.62
+ type: 1.2.0
/damerau-levenshtein@1.0.8:
resolution: {integrity: sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==}
@@ -14670,30 +14439,6 @@ packages:
engines: {node: '>= 12'}
dev: false
- /data-view-buffer@1.0.1:
- resolution: {integrity: sha512-0lht7OugA5x3iJLOWFhWK/5ehONdprk0ISXqVFn/NFrDu+cuc8iADFrGQz5BnRK7LLU3JmkbXSxaqX+/mXYtUA==}
- engines: {node: '>= 0.4'}
- dependencies:
- call-bind: 1.0.7
- es-errors: 1.3.0
- is-data-view: 1.0.1
-
- /data-view-byte-length@1.0.1:
- resolution: {integrity: sha512-4J7wRJD3ABAzr8wP+OcIcqq2dlUKp4DVflx++hs5h5ZKydWMI6/D/fAot+yh6g2tHh8fLFTvNOaVN357NvSrOQ==}
- engines: {node: '>= 0.4'}
- dependencies:
- call-bind: 1.0.7
- es-errors: 1.3.0
- is-data-view: 1.0.1
-
- /data-view-byte-offset@1.0.0:
- resolution: {integrity: sha512-t/Ygsytq+R995EJ5PZlD4Cu56sWa8InXySaViRzw9apusqsOO2bQP+SbYzAhR0pFKoB+43lYy8rWban9JSuXnA==}
- engines: {node: '>= 0.4'}
- dependencies:
- call-bind: 1.0.7
- es-errors: 1.3.0
- is-data-view: 1.0.1
-
/dataloader@2.2.2:
resolution: {integrity: sha512-8YnDaaf7N3k/q5HnTJVuzSyLETjoZjVmHc4AeKAzOvKHEFQKcn64OKBfzHYtE9zGjctNM7V9I0MfnUVLpi7M5g==}
@@ -14701,19 +14446,16 @@ packages:
resolution: {integrity: sha512-fnULvOpxnC5/Vg3NCiWelDsLiUc9bRwAPs/+LfTLNvetFCtCTN+yQz15C/fs4AwX1R9K5GLtLfn8QW+dWisaAw==}
engines: {node: '>=0.11'}
dependencies:
- '@babel/runtime': 7.24.4
+ '@babel/runtime': 7.23.7
/date-time@3.1.0:
resolution: {integrity: sha512-uqCUKXE5q1PNBXjPqvwhwJf9SwMoAHBgWJ6DcrnS5o+W2JOiIILl0JEdVD8SGujrNS02GGxgwAg2PN2zONgtjg==}
engines: {node: '>=6'}
+ requiresBuild: true
dependencies:
time-zone: 1.0.0
dev: false
- /dayjs@1.11.10:
- resolution: {integrity: sha512-vjAczensTgRcqDERK0SR2XMwsF/tSvnvlv6VcF2GIhg6Sx4yOIt/irsr1RDJsKiIyBzJDpCoXiWWq28MqH2cnQ==}
- dev: false
-
/debounce@1.2.1:
resolution: {integrity: sha512-XRRe6Glud4rd/ZGQfiV1ruXSfbvfJedlV9Y6zOlP+2K04vBYiJEte6stfFkCP03aMnY5tsipamumUjL14fofug==}
dev: true
@@ -14730,6 +14472,7 @@ packages:
/debug@3.2.7:
resolution: {integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==}
+ requiresBuild: true
peerDependencies:
supports-color: '*'
peerDependenciesMeta:
@@ -14779,44 +14522,44 @@ packages:
resolution: {integrity: sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==}
engines: {node: '>=0.10.0'}
- /decap-cms-app@3.0.12(@types/node@18.0.0)(@types/react@18.2.46)(graphql@16.8.1)(react-dom@18.2.0)(react@18.2.0):
+ /decap-cms-app@3.0.12(@types/node@18.19.4)(@types/react@18.2.46)(graphql@16.8.1)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-sMbh6RKP4EeOlupGuMuv/F4Z+35GPPy6hAB0LCvOuC7h6YmasxT630gKndfmFF8EE1PlTFHbuu4Aq0+SmXo+cg==}
peerDependencies:
react: ^16.8.4 || ^17.0.0
react-dom: ^16.8.4 || ^17.0.0
dependencies:
- '@emotion/react': 11.11.4(@types/react@18.2.46)(react@18.2.0)
- '@emotion/styled': 11.11.5(@emotion/react@11.11.4)(@types/react@18.2.46)(react@18.2.0)
+ '@emotion/react': 11.11.3(@types/react@18.2.46)(react@18.2.0)
+ '@emotion/styled': 11.11.0(@emotion/react@11.11.3)(@types/react@18.2.46)(react@18.2.0)
codemirror: 5.65.16
- decap-cms-backend-azure: 3.1.1(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(decap-cms-lib-auth@3.0.5)(decap-cms-lib-util@3.0.4)(decap-cms-ui-default@3.1.1)(immutable@3.8.2)(lodash@4.17.21)(prop-types@15.8.1)(react@18.2.0)
- decap-cms-backend-bitbucket: 3.1.2(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(decap-cms-lib-auth@3.0.5)(decap-cms-lib-util@3.0.4)(decap-cms-ui-default@3.1.1)(immutable@3.8.2)(lodash@4.17.21)(prop-types@15.8.1)(react@18.2.0)
- decap-cms-backend-git-gateway: 3.1.1(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(decap-cms-backend-bitbucket@3.1.2)(decap-cms-backend-github@3.1.2)(decap-cms-backend-gitlab@3.1.3)(decap-cms-lib-auth@3.0.5)(decap-cms-lib-util@3.0.4)(decap-cms-ui-default@3.1.1)(lodash@4.17.21)(prop-types@15.8.1)(react@18.2.0)
- decap-cms-backend-github: 3.1.2(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(decap-cms-lib-auth@3.0.5)(decap-cms-lib-util@3.0.4)(decap-cms-ui-default@3.1.1)(lodash@4.17.21)(prop-types@15.8.1)(react@18.2.0)
- decap-cms-backend-gitlab: 3.1.3(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(decap-cms-lib-auth@3.0.5)(decap-cms-lib-util@3.0.4)(decap-cms-ui-default@3.1.1)(graphql@16.8.1)(immutable@3.8.2)(lodash@4.17.21)(prop-types@15.8.1)(react@18.2.0)
- decap-cms-backend-proxy: 3.1.1(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(decap-cms-lib-util@3.0.4)(decap-cms-ui-default@3.1.1)(prop-types@15.8.1)(react@18.2.0)
- decap-cms-backend-test: 3.1.1(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(decap-cms-lib-util@3.0.4)(decap-cms-ui-default@3.1.1)(lodash@4.17.21)(prop-types@15.8.1)(react@18.2.0)(uuid@8.3.2)
- decap-cms-core: 3.2.8(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/node@18.0.0)(@types/react@18.2.46)(decap-cms-editor-component-image@3.1.1)(decap-cms-lib-auth@3.0.5)(decap-cms-lib-util@3.0.4)(decap-cms-lib-widgets@3.0.2)(decap-cms-ui-default@3.1.1)(immutable@3.8.2)(lodash@4.17.21)(moment@2.30.1)(prop-types@15.8.1)(react-dom@18.2.0)(react-immutable-proptypes@2.2.0)(react@18.2.0)
- decap-cms-editor-component-image: 3.1.1(react@18.2.0)
- decap-cms-lib-auth: 3.0.5(immutable@3.8.2)(lodash@4.17.21)(uuid@8.3.2)
- decap-cms-lib-util: 3.0.4(immutable@3.8.2)(lodash@4.17.21)
- decap-cms-lib-widgets: 3.0.2(immutable@3.8.2)(lodash@4.17.21)
- decap-cms-locales: 3.1.4
- decap-cms-ui-default: 3.1.1(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(lodash@4.17.21)(prop-types@15.8.1)(react-dom@18.2.0)(react@18.2.0)
- decap-cms-widget-boolean: 3.1.1(@emotion/react@11.11.4)(decap-cms-ui-default@3.1.1)(lodash@4.17.21)(prop-types@15.8.1)(react-immutable-proptypes@2.2.0)(react@18.2.0)
- decap-cms-widget-code: 3.1.2(@emotion/react@11.11.4)(@types/react@18.2.46)(codemirror@5.65.16)(decap-cms-ui-default@3.1.1)(lodash@4.17.21)(react-dom@18.2.0)(react@18.2.0)
- decap-cms-widget-colorstring: 3.1.1(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(decap-cms-ui-default@3.1.1)(prop-types@15.8.1)(react@18.2.0)
- decap-cms-widget-datetime: 3.1.3(@emotion/react@11.11.4)(react@18.2.0)
- decap-cms-widget-file: 3.1.1(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(decap-cms-ui-default@3.1.1)(immutable@3.8.2)(prop-types@15.8.1)(react-dom@18.2.0)(react-immutable-proptypes@2.2.0)(react@18.2.0)(uuid@8.3.2)
- decap-cms-widget-image: 3.1.1(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(decap-cms-ui-default@3.1.1)(decap-cms-widget-file@3.1.1)(immutable@3.8.2)(prop-types@15.8.1)(react@18.2.0)
- decap-cms-widget-list: 3.1.1(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(decap-cms-lib-widgets@3.0.2)(decap-cms-ui-default@3.1.1)(decap-cms-widget-object@3.1.2)(immutable@3.8.2)(lodash@4.17.21)(prop-types@15.8.1)(react-dom@18.2.0)(react-immutable-proptypes@2.2.0)(react@18.2.0)
- decap-cms-widget-map: 3.1.1(@emotion/react@11.11.4)(decap-cms-ui-default@3.1.1)(lodash@4.17.21)(prop-types@15.8.1)(react-immutable-proptypes@2.2.0)(react@18.2.0)
- decap-cms-widget-markdown: 3.1.3(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(decap-cms-ui-default@3.1.1)(immutable@3.8.2)(lodash@4.17.21)(prop-types@15.8.1)(react-dom@18.2.0)(react-immutable-proptypes@2.2.0)(react@18.2.0)
- decap-cms-widget-number: 3.1.1(decap-cms-ui-default@3.1.1)(prop-types@15.8.1)(react@18.2.0)
- decap-cms-widget-object: 3.1.2(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(decap-cms-ui-default@3.1.1)(immutable@3.8.2)(lodash@4.17.21)(prop-types@15.8.1)(react-immutable-proptypes@2.2.0)(react@18.2.0)
- decap-cms-widget-relation: 3.2.1(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.2.46)(decap-cms-lib-widgets@3.0.2)(decap-cms-ui-default@3.1.1)(immutable@3.8.2)(lodash@4.17.21)(prop-types@15.8.1)(react-dom@18.2.0)(react@18.2.0)(uuid@8.3.2)
- decap-cms-widget-select: 3.1.1(@types/react@18.2.46)(decap-cms-lib-widgets@3.0.2)(decap-cms-ui-default@3.1.1)(immutable@3.8.2)(prop-types@15.8.1)(react-dom@18.2.0)(react-immutable-proptypes@2.2.0)(react@18.2.0)
- decap-cms-widget-string: 3.1.1(decap-cms-ui-default@3.1.1)(prop-types@15.8.1)(react@18.2.0)
- decap-cms-widget-text: 3.1.1(@types/react@18.2.46)(decap-cms-ui-default@3.1.1)(prop-types@15.8.1)(react@18.2.0)
+ decap-cms-backend-azure: 3.0.2(@emotion/react@11.11.3)(@emotion/styled@11.11.0)(decap-cms-lib-auth@3.0.2)(decap-cms-lib-util@3.0.2)(decap-cms-ui-default@3.1.0)(immutable@3.8.2)(lodash@4.17.21)(prop-types@15.8.1)(react@18.2.0)
+ decap-cms-backend-bitbucket: 3.0.2(@emotion/react@11.11.3)(@emotion/styled@11.11.0)(decap-cms-lib-auth@3.0.2)(decap-cms-lib-util@3.0.2)(decap-cms-ui-default@3.1.0)(immutable@3.8.2)(lodash@4.17.21)(prop-types@15.8.1)(react@18.2.0)
+ decap-cms-backend-git-gateway: 3.0.3(@emotion/react@11.11.3)(@emotion/styled@11.11.0)(decap-cms-backend-bitbucket@3.0.2)(decap-cms-backend-github@3.1.0)(decap-cms-backend-gitlab@3.0.2)(decap-cms-lib-auth@3.0.2)(decap-cms-lib-util@3.0.2)(decap-cms-ui-default@3.1.0)(lodash@4.17.21)(prop-types@15.8.1)(react@18.2.0)
+ decap-cms-backend-github: 3.1.0(@emotion/react@11.11.3)(@emotion/styled@11.11.0)(decap-cms-lib-auth@3.0.2)(decap-cms-lib-util@3.0.2)(decap-cms-ui-default@3.1.0)(lodash@4.17.21)(prop-types@15.8.1)(react@18.2.0)
+ decap-cms-backend-gitlab: 3.0.2(@emotion/react@11.11.3)(@emotion/styled@11.11.0)(decap-cms-lib-auth@3.0.2)(decap-cms-lib-util@3.0.2)(decap-cms-ui-default@3.1.0)(graphql@16.8.1)(immutable@3.8.2)(lodash@4.17.21)(prop-types@15.8.1)(react@18.2.0)
+ decap-cms-backend-proxy: 3.0.2(@emotion/react@11.11.3)(@emotion/styled@11.11.0)(decap-cms-lib-util@3.0.2)(decap-cms-ui-default@3.1.0)(prop-types@15.8.1)(react@18.2.0)
+ decap-cms-backend-test: 3.1.0(@emotion/react@11.11.3)(@emotion/styled@11.11.0)(decap-cms-lib-util@3.0.2)(decap-cms-ui-default@3.1.0)(lodash@4.17.21)(prop-types@15.8.1)(react@18.2.0)(uuid@8.3.2)
+ decap-cms-core: 3.2.8(@emotion/react@11.11.3)(@emotion/styled@11.11.0)(@types/node@18.19.4)(@types/react@18.2.46)(decap-cms-editor-component-image@3.0.0)(decap-cms-lib-auth@3.0.2)(decap-cms-lib-util@3.0.2)(decap-cms-lib-widgets@3.0.0)(decap-cms-ui-default@3.1.0)(immutable@3.8.2)(lodash@4.17.21)(moment@2.30.1)(prop-types@15.8.1)(react-dom@18.2.0)(react-immutable-proptypes@2.2.0)(react@18.2.0)
+ decap-cms-editor-component-image: 3.0.0(react@18.2.0)
+ decap-cms-lib-auth: 3.0.2(immutable@3.8.2)(lodash@4.17.21)(uuid@8.3.2)
+ decap-cms-lib-util: 3.0.2(immutable@3.8.2)(lodash@4.17.21)
+ decap-cms-lib-widgets: 3.0.0(immutable@3.8.2)(lodash@4.17.21)(moment@2.30.1)
+ decap-cms-locales: 3.1.2
+ decap-cms-ui-default: 3.1.0(@emotion/react@11.11.3)(@emotion/styled@11.11.0)(lodash@4.17.21)(prop-types@15.8.1)(react-dom@18.2.0)(react@18.2.0)
+ decap-cms-widget-boolean: 3.0.2(@emotion/react@11.11.3)(decap-cms-ui-default@3.1.0)(lodash@4.17.21)(prop-types@15.8.1)(react-immutable-proptypes@2.2.0)(react@18.2.0)
+ decap-cms-widget-code: 3.0.2(@emotion/react@11.11.3)(@types/react@18.2.46)(codemirror@5.65.16)(decap-cms-ui-default@3.1.0)(lodash@4.17.21)(react-dom@18.2.0)(react@18.2.0)
+ decap-cms-widget-colorstring: 3.0.2(@emotion/react@11.11.3)(@emotion/styled@11.11.0)(decap-cms-ui-default@3.1.0)(prop-types@15.8.1)(react@18.2.0)
+ decap-cms-widget-datetime: 3.0.3(@emotion/react@11.11.3)(moment@2.30.1)(react@18.2.0)
+ decap-cms-widget-file: 3.0.4(@emotion/react@11.11.3)(@emotion/styled@11.11.0)(decap-cms-ui-default@3.1.0)(immutable@3.8.2)(prop-types@15.8.1)(react-dom@18.2.0)(react-immutable-proptypes@2.2.0)(react@18.2.0)(uuid@8.3.2)
+ decap-cms-widget-image: 3.0.3(@emotion/react@11.11.3)(@emotion/styled@11.11.0)(decap-cms-ui-default@3.1.0)(decap-cms-widget-file@3.0.4)(immutable@3.8.2)(prop-types@15.8.1)(react@18.2.0)
+ decap-cms-widget-list: 3.0.4(@emotion/react@11.11.3)(@emotion/styled@11.11.0)(decap-cms-lib-widgets@3.0.0)(decap-cms-ui-default@3.1.0)(decap-cms-widget-object@3.0.2)(immutable@3.8.2)(lodash@4.17.21)(prop-types@15.8.1)(react-dom@18.2.0)(react-immutable-proptypes@2.2.0)(react@18.2.0)
+ decap-cms-widget-map: 3.0.2(@emotion/react@11.11.3)(decap-cms-ui-default@3.1.0)(lodash@4.17.21)(prop-types@15.8.1)(react-immutable-proptypes@2.2.0)(react@18.2.0)
+ decap-cms-widget-markdown: 3.0.3(@emotion/react@11.11.3)(@emotion/styled@11.11.0)(decap-cms-ui-default@3.1.0)(immutable@3.8.2)(lodash@4.17.21)(prop-types@15.8.1)(react-dom@18.2.0)(react-immutable-proptypes@2.2.0)(react@18.2.0)
+ decap-cms-widget-number: 3.0.1(decap-cms-ui-default@3.1.0)(prop-types@15.8.1)(react@18.2.0)
+ decap-cms-widget-object: 3.0.2(@emotion/react@11.11.3)(@emotion/styled@11.11.0)(decap-cms-ui-default@3.1.0)(immutable@3.8.2)(lodash@4.17.21)(prop-types@15.8.1)(react-immutable-proptypes@2.2.0)(react@18.2.0)
+ decap-cms-widget-relation: 3.0.3(@emotion/react@11.11.3)(@emotion/styled@11.11.0)(@types/react@18.2.46)(decap-cms-lib-widgets@3.0.0)(decap-cms-ui-default@3.1.0)(immutable@3.8.2)(lodash@4.17.21)(prop-types@15.8.1)(react-dom@18.2.0)(react@18.2.0)(uuid@8.3.2)
+ decap-cms-widget-select: 3.0.1(@types/react@18.2.46)(decap-cms-lib-widgets@3.0.0)(decap-cms-ui-default@3.1.0)(immutable@3.8.2)(prop-types@15.8.1)(react-dom@18.2.0)(react-immutable-proptypes@2.2.0)(react@18.2.0)
+ decap-cms-widget-string: 3.0.1(decap-cms-ui-default@3.1.0)(prop-types@15.8.1)(react@18.2.0)
+ decap-cms-widget-text: 3.0.1(@types/react@18.2.46)(decap-cms-ui-default@3.1.0)(prop-types@15.8.1)(react@18.2.0)
immutable: 3.8.2
lodash: 4.17.21
moment: 2.30.1
@@ -14834,8 +14577,8 @@ packages:
- supports-color
dev: false
- /decap-cms-backend-azure@3.1.1(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(decap-cms-lib-auth@3.0.5)(decap-cms-lib-util@3.0.4)(decap-cms-ui-default@3.1.1)(immutable@3.8.2)(lodash@4.17.21)(prop-types@15.8.1)(react@18.2.0):
- resolution: {integrity: sha512-zzPy8bJkS8Sh+DOdUiF31gbAFeb+xqr1KvyeTP8ul31oCBbzJt6K6sybDEm/1Rt4S20Lq4CbP476qcHA89ZmVg==}
+ /decap-cms-backend-azure@3.0.2(@emotion/react@11.11.3)(@emotion/styled@11.11.0)(decap-cms-lib-auth@3.0.2)(decap-cms-lib-util@3.0.2)(decap-cms-ui-default@3.1.0)(immutable@3.8.2)(lodash@4.17.21)(prop-types@15.8.1)(react@18.2.0):
+ resolution: {integrity: sha512-bB9y8RIxn6aMMSTkD4/l67+JJZbetWipBmmjm6YVy5j/tTaSb0SBTDPaCvB3lUaImiPrVNo6OE9YpLS/MkWrVQ==}
peerDependencies:
'@emotion/react': ^11.11.1
'@emotion/styled': ^11.11.0
@@ -14845,23 +14588,23 @@ packages:
immutable: ^3.7.6
lodash: ^4.17.11
prop-types: ^15.7.2
- react: ^18.2.0
+ react: ^16.8.4 || ^17.0.0
dependencies:
- '@emotion/react': 11.11.4(@types/react@18.2.46)(react@18.2.0)
- '@emotion/styled': 11.11.5(@emotion/react@11.11.4)(@types/react@18.2.46)(react@18.2.0)
- decap-cms-lib-auth: 3.0.5(immutable@3.8.2)(lodash@4.17.21)(uuid@8.3.2)
- decap-cms-lib-util: 3.0.4(immutable@3.8.2)(lodash@4.17.21)
- decap-cms-ui-default: 3.1.1(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(lodash@4.17.21)(prop-types@15.8.1)(react-dom@18.2.0)(react@18.2.0)
+ '@emotion/react': 11.11.3(@types/react@18.2.46)(react@18.2.0)
+ '@emotion/styled': 11.11.0(@emotion/react@11.11.3)(@types/react@18.2.46)(react@18.2.0)
+ decap-cms-lib-auth: 3.0.2(immutable@3.8.2)(lodash@4.17.21)(uuid@8.3.2)
+ decap-cms-lib-util: 3.0.2(immutable@3.8.2)(lodash@4.17.21)
+ decap-cms-ui-default: 3.1.0(@emotion/react@11.11.3)(@emotion/styled@11.11.0)(lodash@4.17.21)(prop-types@15.8.1)(react-dom@18.2.0)(react@18.2.0)
immutable: 3.8.2
- js-base64: 3.7.7
+ js-base64: 3.7.5
lodash: 4.17.21
prop-types: 15.8.1
react: 18.2.0
semaphore: 1.1.0
dev: false
- /decap-cms-backend-bitbucket@3.1.2(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(decap-cms-lib-auth@3.0.5)(decap-cms-lib-util@3.0.4)(decap-cms-ui-default@3.1.1)(immutable@3.8.2)(lodash@4.17.21)(prop-types@15.8.1)(react@18.2.0):
- resolution: {integrity: sha512-YW1AvzKUbeWppcWVK9ZlN+3bYBLjC479ryuPJDV4GyVIxjvgqP7KMtHgULlPT15VPLP11kwdH0qQf8r4AJnPqw==}
+ /decap-cms-backend-bitbucket@3.0.2(@emotion/react@11.11.3)(@emotion/styled@11.11.0)(decap-cms-lib-auth@3.0.2)(decap-cms-lib-util@3.0.2)(decap-cms-ui-default@3.1.0)(immutable@3.8.2)(lodash@4.17.21)(prop-types@15.8.1)(react@18.2.0):
+ resolution: {integrity: sha512-0WIKGy3fbFIX+UdScBizDrEvqesQkxNaFYf8LhEOF/gX29QSHhCyaIEDVjim/ohFnTCs59O4tPFjxFNdaZl4yg==}
peerDependencies:
'@emotion/react': ^11.11.1
'@emotion/styled': ^11.11.0
@@ -14871,16 +14614,16 @@ packages:
immutable: ^3.7.6
lodash: ^4.17.11
prop-types: ^15.7.2
- react: ^18.2.0
+ react: ^16.8.4 || ^17.0.0
dependencies:
- '@emotion/react': 11.11.4(@types/react@18.2.46)(react@18.2.0)
- '@emotion/styled': 11.11.5(@emotion/react@11.11.4)(@types/react@18.2.46)(react@18.2.0)
+ '@emotion/react': 11.11.3(@types/react@18.2.46)(react@18.2.0)
+ '@emotion/styled': 11.11.0(@emotion/react@11.11.3)(@types/react@18.2.46)(react@18.2.0)
common-tags: 1.8.2
- decap-cms-lib-auth: 3.0.5(immutable@3.8.2)(lodash@4.17.21)(uuid@8.3.2)
- decap-cms-lib-util: 3.0.4(immutable@3.8.2)(lodash@4.17.21)
- decap-cms-ui-default: 3.1.1(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(lodash@4.17.21)(prop-types@15.8.1)(react-dom@18.2.0)(react@18.2.0)
+ decap-cms-lib-auth: 3.0.2(immutable@3.8.2)(lodash@4.17.21)(uuid@8.3.2)
+ decap-cms-lib-util: 3.0.2(immutable@3.8.2)(lodash@4.17.21)
+ decap-cms-ui-default: 3.1.0(@emotion/react@11.11.3)(@emotion/styled@11.11.0)(lodash@4.17.21)(prop-types@15.8.1)(react-dom@18.2.0)(react@18.2.0)
immutable: 3.8.2
- js-base64: 3.7.7
+ js-base64: 3.7.5
lodash: 4.17.21
prop-types: 15.8.1
react: 18.2.0
@@ -14888,8 +14631,8 @@ packages:
what-the-diff: 0.6.0
dev: false
- /decap-cms-backend-git-gateway@3.1.1(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(decap-cms-backend-bitbucket@3.1.2)(decap-cms-backend-github@3.1.2)(decap-cms-backend-gitlab@3.1.3)(decap-cms-lib-auth@3.0.5)(decap-cms-lib-util@3.0.4)(decap-cms-ui-default@3.1.1)(lodash@4.17.21)(prop-types@15.8.1)(react@18.2.0):
- resolution: {integrity: sha512-Do+WU8sFC5rkKDjkbiSjIP5CBYlN8CWRQuOUJ5cwRgUSrmfJAKFB0AlRQmr79JburAk/JdAS8faljeL/L85Byw==}
+ /decap-cms-backend-git-gateway@3.0.3(@emotion/react@11.11.3)(@emotion/styled@11.11.0)(decap-cms-backend-bitbucket@3.0.2)(decap-cms-backend-github@3.1.0)(decap-cms-backend-gitlab@3.0.2)(decap-cms-lib-auth@3.0.2)(decap-cms-lib-util@3.0.2)(decap-cms-ui-default@3.1.0)(lodash@4.17.21)(prop-types@15.8.1)(react@18.2.0):
+ resolution: {integrity: sha512-PR6j14opbvF2XfOkoKEqlO+PfNB8lAqhJqJiyqIJPeQ9EIlxl1Xcm/UDa6zwLblnHIRCNSrJ3kO2RAm/C0cdyQ==}
peerDependencies:
'@emotion/react': ^11.11.1
'@emotion/styled': ^11.11.0
@@ -14901,16 +14644,16 @@ packages:
decap-cms-ui-default: ^3.0.0
lodash: ^4.17.11
prop-types: ^15.7.2
- react: ^18.2.0
+ react: ^16.8.4 || ^17.0.0
dependencies:
- '@emotion/react': 11.11.4(@types/react@18.2.46)(react@18.2.0)
- '@emotion/styled': 11.11.5(@emotion/react@11.11.4)(@types/react@18.2.46)(react@18.2.0)
- decap-cms-backend-bitbucket: 3.1.2(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(decap-cms-lib-auth@3.0.5)(decap-cms-lib-util@3.0.4)(decap-cms-ui-default@3.1.1)(immutable@3.8.2)(lodash@4.17.21)(prop-types@15.8.1)(react@18.2.0)
- decap-cms-backend-github: 3.1.2(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(decap-cms-lib-auth@3.0.5)(decap-cms-lib-util@3.0.4)(decap-cms-ui-default@3.1.1)(lodash@4.17.21)(prop-types@15.8.1)(react@18.2.0)
- decap-cms-backend-gitlab: 3.1.3(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(decap-cms-lib-auth@3.0.5)(decap-cms-lib-util@3.0.4)(decap-cms-ui-default@3.1.1)(graphql@16.8.1)(immutable@3.8.2)(lodash@4.17.21)(prop-types@15.8.1)(react@18.2.0)
- decap-cms-lib-auth: 3.0.5(immutable@3.8.2)(lodash@4.17.21)(uuid@8.3.2)
- decap-cms-lib-util: 3.0.4(immutable@3.8.2)(lodash@4.17.21)
- decap-cms-ui-default: 3.1.1(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(lodash@4.17.21)(prop-types@15.8.1)(react-dom@18.2.0)(react@18.2.0)
+ '@emotion/react': 11.11.3(@types/react@18.2.46)(react@18.2.0)
+ '@emotion/styled': 11.11.0(@emotion/react@11.11.3)(@types/react@18.2.46)(react@18.2.0)
+ decap-cms-backend-bitbucket: 3.0.2(@emotion/react@11.11.3)(@emotion/styled@11.11.0)(decap-cms-lib-auth@3.0.2)(decap-cms-lib-util@3.0.2)(decap-cms-ui-default@3.1.0)(immutable@3.8.2)(lodash@4.17.21)(prop-types@15.8.1)(react@18.2.0)
+ decap-cms-backend-github: 3.1.0(@emotion/react@11.11.3)(@emotion/styled@11.11.0)(decap-cms-lib-auth@3.0.2)(decap-cms-lib-util@3.0.2)(decap-cms-ui-default@3.1.0)(lodash@4.17.21)(prop-types@15.8.1)(react@18.2.0)
+ decap-cms-backend-gitlab: 3.0.2(@emotion/react@11.11.3)(@emotion/styled@11.11.0)(decap-cms-lib-auth@3.0.2)(decap-cms-lib-util@3.0.2)(decap-cms-ui-default@3.1.0)(graphql@16.8.1)(immutable@3.8.2)(lodash@4.17.21)(prop-types@15.8.1)(react@18.2.0)
+ decap-cms-lib-auth: 3.0.2(immutable@3.8.2)(lodash@4.17.21)(uuid@8.3.2)
+ decap-cms-lib-util: 3.0.2(immutable@3.8.2)(lodash@4.17.21)
+ decap-cms-ui-default: 3.1.0(@emotion/react@11.11.3)(@emotion/styled@11.11.0)(lodash@4.17.21)(prop-types@15.8.1)(react-dom@18.2.0)(react@18.2.0)
gotrue-js: 0.9.29
ini: 2.0.0
jwt-decode: 3.1.2
@@ -14920,8 +14663,8 @@ packages:
react: 18.2.0
dev: false
- /decap-cms-backend-github@3.1.2(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(decap-cms-lib-auth@3.0.5)(decap-cms-lib-util@3.0.4)(decap-cms-ui-default@3.1.1)(lodash@4.17.21)(prop-types@15.8.1)(react@18.2.0):
- resolution: {integrity: sha512-K2WXwdlqMXgMNuEe0JMaDBd7jRayxT6zBLZ5Eqyl2frIDGxV63JXSoBIkhxLpOsP1Z0SC8XeCx9cPmTe26KnGw==}
+ /decap-cms-backend-github@3.1.0(@emotion/react@11.11.3)(@emotion/styled@11.11.0)(decap-cms-lib-auth@3.0.2)(decap-cms-lib-util@3.0.2)(decap-cms-ui-default@3.1.0)(lodash@4.17.21)(prop-types@15.8.1)(react@18.2.0):
+ resolution: {integrity: sha512-LpIvh//vRwjBoyEo3hwPJ3y8yZHnmWXXaRXmZbhQGZNbxQRPnkl6/LA0HIPNP/xWTcakNxqsfeaiJV0gGKVPFQ==}
peerDependencies:
'@emotion/react': ^11.11.1
'@emotion/styled': ^11.11.0
@@ -14932,26 +14675,26 @@ packages:
prop-types: ^15.7.2
react: ^18.2.0
dependencies:
- '@emotion/react': 11.11.4(@types/react@18.2.46)(react@18.2.0)
- '@emotion/styled': 11.11.5(@emotion/react@11.11.4)(@types/react@18.2.46)(react@18.2.0)
+ '@emotion/react': 11.11.3(@types/react@18.2.46)(react@18.2.0)
+ '@emotion/styled': 11.11.0(@emotion/react@11.11.3)(@types/react@18.2.46)(react@18.2.0)
apollo-cache-inmemory: 1.6.6(graphql@16.8.1)
apollo-client: 2.6.10(graphql@16.8.1)
apollo-link-context: 1.0.20(graphql@16.8.1)
apollo-link-http: 1.5.17(graphql@16.8.1)
common-tags: 1.8.2
- decap-cms-lib-auth: 3.0.5(immutable@3.8.2)(lodash@4.17.21)(uuid@8.3.2)
- decap-cms-lib-util: 3.0.4(immutable@3.8.2)(lodash@4.17.21)
- decap-cms-ui-default: 3.1.1(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(lodash@4.17.21)(prop-types@15.8.1)(react-dom@18.2.0)(react@18.2.0)
+ decap-cms-lib-auth: 3.0.2(immutable@3.8.2)(lodash@4.17.21)(uuid@8.3.2)
+ decap-cms-lib-util: 3.0.2(immutable@3.8.2)(lodash@4.17.21)
+ decap-cms-ui-default: 3.1.0(@emotion/react@11.11.3)(@emotion/styled@11.11.0)(lodash@4.17.21)(prop-types@15.8.1)(react-dom@18.2.0)(react@18.2.0)
graphql: 16.8.1
graphql-tag: 2.12.6(graphql@16.8.1)
- js-base64: 3.7.7
+ js-base64: 3.7.5
lodash: 4.17.21
prop-types: 15.8.1
react: 18.2.0
semaphore: 1.1.0
- /decap-cms-backend-gitlab@3.1.3(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(decap-cms-lib-auth@3.0.5)(decap-cms-lib-util@3.0.4)(decap-cms-ui-default@3.1.1)(graphql@16.8.1)(immutable@3.8.2)(lodash@4.17.21)(prop-types@15.8.1)(react@18.2.0):
- resolution: {integrity: sha512-RoyfkL9hPncojB98IjdC8UFZpJajq88hy3ymXSW0oFuZotMG2RZwyZejKltq/unq/YNGpLzdDIk5kVfrm+o64g==}
+ /decap-cms-backend-gitlab@3.0.2(@emotion/react@11.11.3)(@emotion/styled@11.11.0)(decap-cms-lib-auth@3.0.2)(decap-cms-lib-util@3.0.2)(decap-cms-ui-default@3.1.0)(graphql@16.8.1)(immutable@3.8.2)(lodash@4.17.21)(prop-types@15.8.1)(react@18.2.0):
+ resolution: {integrity: sha512-M0UsPpg9pMKjW24gRVqlZ0jFq2nt4E1XoseXdTMQ7fjEV/JY1SB7DkqZTfT1+anXGToi4s6ylb1Ya9sTSmXqhQ==}
peerDependencies:
'@emotion/react': ^11.11.1
'@emotion/styled': ^11.11.0
@@ -14961,19 +14704,19 @@ packages:
immutable: ^3.7.6
lodash: ^4.17.11
prop-types: ^15.7.2
- react: ^18.2.0
+ react: ^16.8.4 || ^17.0.0
dependencies:
- '@emotion/react': 11.11.4(@types/react@18.2.46)(react@18.2.0)
- '@emotion/styled': 11.11.5(@emotion/react@11.11.4)(@types/react@18.2.46)(react@18.2.0)
+ '@emotion/react': 11.11.3(@types/react@18.2.46)(react@18.2.0)
+ '@emotion/styled': 11.11.0(@emotion/react@11.11.3)(@types/react@18.2.46)(react@18.2.0)
apollo-cache-inmemory: 1.6.6(graphql@16.8.1)
apollo-client: 2.6.10(graphql@16.8.1)
apollo-link-context: 1.0.20(graphql@16.8.1)
apollo-link-http: 1.5.17(graphql@16.8.1)
- decap-cms-lib-auth: 3.0.5(immutable@3.8.2)(lodash@4.17.21)(uuid@8.3.2)
- decap-cms-lib-util: 3.0.4(immutable@3.8.2)(lodash@4.17.21)
- decap-cms-ui-default: 3.1.1(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(lodash@4.17.21)(prop-types@15.8.1)(react-dom@18.2.0)(react@18.2.0)
+ decap-cms-lib-auth: 3.0.2(immutable@3.8.2)(lodash@4.17.21)(uuid@8.3.2)
+ decap-cms-lib-util: 3.0.2(immutable@3.8.2)(lodash@4.17.21)
+ decap-cms-ui-default: 3.1.0(@emotion/react@11.11.3)(@emotion/styled@11.11.0)(lodash@4.17.21)(prop-types@15.8.1)(react-dom@18.2.0)(react@18.2.0)
immutable: 3.8.2
- js-base64: 3.7.7
+ js-base64: 3.7.5
lodash: 4.17.21
prop-types: 15.8.1
react: 18.2.0
@@ -14982,26 +14725,26 @@ packages:
- graphql
dev: false
- /decap-cms-backend-proxy@3.1.1(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(decap-cms-lib-util@3.0.4)(decap-cms-ui-default@3.1.1)(prop-types@15.8.1)(react@18.2.0):
- resolution: {integrity: sha512-w1AClt+bScKBehvLOEWCvwaAI7idG6IJ4070zwNkTspsyjnqSQoay8T9VySoo9aDnKQi4iI0mNojlcI0uBY3tA==}
+ /decap-cms-backend-proxy@3.0.2(@emotion/react@11.11.3)(@emotion/styled@11.11.0)(decap-cms-lib-util@3.0.2)(decap-cms-ui-default@3.1.0)(prop-types@15.8.1)(react@18.2.0):
+ resolution: {integrity: sha512-TOZojrNc3f/QacCxlQKNCHXSGNzxuRdF0lSS5pQF5Uwek6V584YfAxRKFftRTYPfPC2OTNA9mgf/P3l/QBHQqQ==}
peerDependencies:
'@emotion/react': ^11.11.1
'@emotion/styled': ^11.11.0
decap-cms-lib-util: ^3.0.0
decap-cms-ui-default: ^3.0.0
prop-types: ^15.7.2
- react: ^18.2.0
+ react: ^16.8.4 || ^17.0.0
dependencies:
- '@emotion/react': 11.11.4(@types/react@18.2.46)(react@18.2.0)
- '@emotion/styled': 11.11.5(@emotion/react@11.11.4)(@types/react@18.2.46)(react@18.2.0)
- decap-cms-lib-util: 3.0.4(immutable@3.8.2)(lodash@4.17.21)
- decap-cms-ui-default: 3.1.1(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(lodash@4.17.21)(prop-types@15.8.1)(react-dom@18.2.0)(react@18.2.0)
+ '@emotion/react': 11.11.3(@types/react@18.2.46)(react@18.2.0)
+ '@emotion/styled': 11.11.0(@emotion/react@11.11.3)(@types/react@18.2.46)(react@18.2.0)
+ decap-cms-lib-util: 3.0.2(immutable@3.8.2)(lodash@4.17.21)
+ decap-cms-ui-default: 3.1.0(@emotion/react@11.11.3)(@emotion/styled@11.11.0)(lodash@4.17.21)(prop-types@15.8.1)(react-dom@18.2.0)(react@18.2.0)
prop-types: 15.8.1
react: 18.2.0
dev: false
- /decap-cms-backend-test@3.1.1(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(decap-cms-lib-util@3.0.4)(decap-cms-ui-default@3.1.1)(lodash@4.17.21)(prop-types@15.8.1)(react@18.2.0)(uuid@8.3.2):
- resolution: {integrity: sha512-62CbnDfF9EUJNcfNJbX/V40ArbMbF09wQeHEPwtzj8l5byWIhtzZwSMIrmtstuhfBtYVlc/7e5A2E6zSVI9l9w==}
+ /decap-cms-backend-test@3.1.0(@emotion/react@11.11.3)(@emotion/styled@11.11.0)(decap-cms-lib-util@3.0.2)(decap-cms-ui-default@3.1.0)(lodash@4.17.21)(prop-types@15.8.1)(react@18.2.0)(uuid@8.3.2):
+ resolution: {integrity: sha512-Ik2AjtNv0Ty3VVVvfqvJAqwNBieZL1dkR0JAxER5IKX/sPfSKN0pLagmzGksUU1krQnXm6+TGREalzrB0n5GEA==}
peerDependencies:
'@emotion/react': ^11.11.1
'@emotion/styled': ^11.11.0
@@ -15012,17 +14755,17 @@ packages:
react: ^18.2.0
uuid: ^8.3.2
dependencies:
- '@emotion/react': 11.11.4(@types/react@18.2.46)(react@18.2.0)
- '@emotion/styled': 11.11.5(@emotion/react@11.11.4)(@types/react@18.2.46)(react@18.2.0)
- decap-cms-lib-util: 3.0.4(immutable@3.8.2)(lodash@4.17.21)
- decap-cms-ui-default: 3.1.1(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(lodash@4.17.21)(prop-types@15.8.1)(react-dom@18.2.0)(react@18.2.0)
+ '@emotion/react': 11.11.3(@types/react@18.2.46)(react@18.2.0)
+ '@emotion/styled': 11.11.0(@emotion/react@11.11.3)(@types/react@18.2.46)(react@18.2.0)
+ decap-cms-lib-util: 3.0.2(immutable@3.8.2)(lodash@4.17.21)
+ decap-cms-ui-default: 3.1.0(@emotion/react@11.11.3)(@emotion/styled@11.11.0)(lodash@4.17.21)(prop-types@15.8.1)(react-dom@18.2.0)(react@18.2.0)
lodash: 4.17.21
prop-types: 15.8.1
react: 18.2.0
uuid: 8.3.2
dev: false
- /decap-cms-core@3.2.8(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/node@18.0.0)(@types/react@18.2.46)(decap-cms-editor-component-image@3.1.1)(decap-cms-lib-auth@3.0.5)(decap-cms-lib-util@3.0.4)(decap-cms-lib-widgets@3.0.2)(decap-cms-ui-default@3.1.1)(immutable@3.8.2)(lodash@4.17.21)(moment@2.30.1)(prop-types@15.8.1)(react-dom@18.2.0)(react-immutable-proptypes@2.2.0)(react@18.2.0):
+ /decap-cms-core@3.2.8(@emotion/react@11.11.3)(@emotion/styled@11.11.0)(@types/node@18.19.4)(@types/react@18.2.46)(decap-cms-editor-component-image@3.0.0)(decap-cms-lib-auth@3.0.2)(decap-cms-lib-util@3.0.2)(decap-cms-lib-widgets@3.0.0)(decap-cms-ui-default@3.1.0)(immutable@3.8.2)(lodash@4.17.21)(moment@2.30.1)(prop-types@15.8.1)(react-dom@18.2.0)(react-immutable-proptypes@2.2.0)(react@18.2.0):
resolution: {integrity: sha512-REuopDPHONQ88rE3rQCTd8QYsMEM/ZzKNQDJAsYvmQx5OuIPfklgfxz5OiVU3w2yTw5Y5GwWtThT8U5WtfFODw==}
peerDependencies:
'@emotion/react': ^11.11.1
@@ -15040,8 +14783,8 @@ packages:
react-dom: ^16.8.4 || ^17.0.0
react-immutable-proptypes: ^2.1.0
dependencies:
- '@emotion/react': 11.11.4(@types/react@18.2.46)(react@18.2.0)
- '@emotion/styled': 11.11.5(@emotion/react@11.11.4)(@types/react@18.2.46)(react@18.2.0)
+ '@emotion/react': 11.11.3(@types/react@18.2.46)(react@18.2.0)
+ '@emotion/styled': 11.11.0(@emotion/react@11.11.3)(@types/react@18.2.46)(react@18.2.0)
'@iarna/toml': 2.2.5
'@reduxjs/toolkit': 1.9.7(react-redux@7.2.9)(react@18.2.0)
ajv: 8.12.0
@@ -15049,11 +14792,11 @@ packages:
ajv-keywords: 5.1.0(ajv@8.12.0)
clean-stack: 4.2.0
copy-text-to-clipboard: 3.2.0
- decap-cms-editor-component-image: 3.1.1(react@18.2.0)
- decap-cms-lib-auth: 3.0.5(immutable@3.8.2)(lodash@4.17.21)(uuid@8.3.2)
- decap-cms-lib-util: 3.0.4(immutable@3.8.2)(lodash@4.17.21)
- decap-cms-lib-widgets: 3.0.2(immutable@3.8.2)(lodash@4.17.21)
- decap-cms-ui-default: 3.1.1(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(lodash@4.17.21)(prop-types@15.8.1)(react-dom@18.2.0)(react@18.2.0)
+ decap-cms-editor-component-image: 3.0.0(react@18.2.0)
+ decap-cms-lib-auth: 3.0.2(immutable@3.8.2)(lodash@4.17.21)(uuid@8.3.2)
+ decap-cms-lib-util: 3.0.2(immutable@3.8.2)(lodash@4.17.21)
+ decap-cms-lib-widgets: 3.0.0(immutable@3.8.2)(lodash@4.17.21)(moment@2.30.1)
+ decap-cms-ui-default: 3.1.0(@emotion/react@11.11.3)(@emotion/styled@11.11.0)(lodash@4.17.21)(prop-types@15.8.1)(react-dom@18.2.0)(react@18.2.0)
deepmerge: 4.3.1
diacritics: 1.3.0
fuzzy: 0.1.3
@@ -15062,14 +14805,14 @@ packages:
history: 4.10.1
immer: 9.0.21
immutable: 3.8.2
- js-base64: 3.7.7
+ js-base64: 3.7.5
jwt-decode: 3.1.2
lodash: 4.17.21
moment: 2.30.1
node-polyglot: 2.5.0
prop-types: 15.8.1
react: 18.2.0
- react-dnd: 14.0.5(@types/node@18.0.0)(@types/react@18.2.46)(react@18.2.0)
+ react-dnd: 14.0.5(@types/node@18.19.4)(@types/react@18.2.46)(react@18.2.0)
react-dnd-html5-backend: 14.1.0
react-dom: 18.2.0(react@18.2.0)
react-frame-component: 5.2.6(prop-types@15.8.1)(react-dom@18.2.0)(react@18.2.0)
@@ -15085,7 +14828,7 @@ packages:
react-split-pane: 0.1.92(react-dom@18.2.0)(react@18.2.0)
react-toastify: 9.1.3(react-dom@18.2.0)(react@18.2.0)
react-topbar-progress-indicator: 4.1.1(react@18.2.0)
- react-virtualized-auto-sizer: 1.0.24(react-dom@18.2.0)(react@18.2.0)
+ react-virtualized-auto-sizer: 1.0.20(react-dom@18.2.0)(react@18.2.0)
react-waypoint: 10.3.0(react@18.2.0)
react-window: 1.8.10(react-dom@18.2.0)(react@18.2.0)
redux: 4.2.1
@@ -15108,16 +14851,16 @@ packages:
- supports-color
dev: false
- /decap-cms-editor-component-image@3.1.1(react@18.2.0):
- resolution: {integrity: sha512-T2wPaVW0Vp+UAzxwbrkbAgO+cWPinX515C6PxjNh9MbtcHyBL8sYIXtqBcvgvH6sfyUZLsfTCtcHjcV0+qO8vw==}
+ /decap-cms-editor-component-image@3.0.0(react@18.2.0):
+ resolution: {integrity: sha512-yTiX1OxZpUDAe7v5AmwTXD0b4Tz3BaEPP6hy2DKeft846U2LC5fQm3fTQ9SIS8PFzStfGvEPKoI2s/8utGHtsQ==}
peerDependencies:
- react: ^18.2.0
+ react: ^16.8.4 || ^17.0.0
dependencies:
react: 18.2.0
dev: false
- /decap-cms-lib-auth@3.0.5(immutable@3.8.2)(lodash@4.17.21)(uuid@8.3.2):
- resolution: {integrity: sha512-NG+dI1Pg0UBoxRQfuI0zeRLZAtPU23R3qUOA1mDUJ4OpKmX6/lsznmvu0l+e3TzGUhCkOXyz2fl/9HctsMjTXw==}
+ /decap-cms-lib-auth@3.0.2(immutable@3.8.2)(lodash@4.17.21)(uuid@8.3.2):
+ resolution: {integrity: sha512-6W5ZqLeBU392/nVccyGpaReXTRqwDbqtuEpyKcM2Rf5WevO0zWV8BthCQdHHbctMDXZamgkhYd6do5Z/zJ7Kkw==}
peerDependencies:
immutable: ^3.7.6
lodash: ^4.17.11
@@ -15127,8 +14870,8 @@ packages:
lodash: 4.17.21
uuid: 8.3.2
- /decap-cms-lib-util@3.0.4(immutable@3.8.2)(lodash@4.17.21):
- resolution: {integrity: sha512-hvawum2GW2N9M4ljPT929s4oLeo0kRPlR0Wlt/CxdD84leROrBAUfwWB1Upfznvuirvme1EBToFiLg9zdrfOqg==}
+ /decap-cms-lib-util@3.0.2(immutable@3.8.2)(lodash@4.17.21):
+ resolution: {integrity: sha512-Zw2u0B9RxFd3PDdUFr0FJdlQDFACrweu1jnpG/IJUmgciqTGTM0uAOb1TCONOJUoblMJig/fKYu+4lpt2eiNnA==}
peerDependencies:
immutable: ^3.7.6
lodash: ^4.17.11
@@ -15139,23 +14882,24 @@ packages:
lodash: 4.17.21
semaphore: 1.1.0
- /decap-cms-lib-widgets@3.0.2(immutable@3.8.2)(lodash@4.17.21):
- resolution: {integrity: sha512-bb53ZKh98XnmBWXhvyyc9vXn6Nw4RCcS465V1bhI3AI+ec22feGg0G5dWb61NONj0j9XPbZKaqFxL7dcO9/S8Q==}
+ /decap-cms-lib-widgets@3.0.0(immutable@3.8.2)(lodash@4.17.21)(moment@2.30.1):
+ resolution: {integrity: sha512-k9Vf3cXkvQTTdq/oMQC2eQ9GAWTKOhUgk/or9deCDdhU4AMFmZdbd2pWnf3Wh/DDY6VeJRT8uFhDCOyGv+dGdw==}
peerDependencies:
immutable: ^3.7.6
lodash: ^4.17.11
+ moment: ^2.24.0
dependencies:
- dayjs: 1.11.10
immutable: 3.8.2
lodash: 4.17.21
+ moment: 2.30.1
dev: false
- /decap-cms-locales@3.1.4:
- resolution: {integrity: sha512-JenOninZv4qY1nyLKTShYrQ2zdUNkUmRzhYqWbU1a54OJQT/QUS1T3ekNrcwygDX/RHgzsYPxkyOdmaUV2iR6w==}
+ /decap-cms-locales@3.1.2:
+ resolution: {integrity: sha512-H11VEYwlwN8C2y8h66/rw/fTLX/n0RHGomYJ4WDeDo+aErVcePMSikVrXc5FoQs+6OG4wDDMFmSmDB91bIHybQ==}
dev: false
- /decap-cms-ui-default@3.1.1(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(lodash@4.17.21)(prop-types@15.8.1)(react-dom@18.2.0)(react@18.2.0):
- resolution: {integrity: sha512-d50DGTYqn9cty6UYf7PZMi7EZ5pOZLpmyf/JapRpuwU+7aWeb22Gj9Zs8nQ4GNd0EFBQXG/KjSoxVx+jqfPw4Q==}
+ /decap-cms-ui-default@3.1.0(@emotion/react@11.11.3)(@emotion/styled@11.11.0)(lodash@4.17.21)(prop-types@15.8.1)(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-apR9QsbyObHNezbaYZ0DjYzj0C47YNIaSHeGUIn5yceVaTmhcxkq4vJE6RfRWtfpcbPqkmFzKzsTe5V5JoJ/BQ==}
peerDependencies:
'@emotion/react': ^11.11.1
'@emotion/styled': ^11.11.0
@@ -15163,8 +14907,8 @@ packages:
prop-types: ^15.7.2
react: ^18.2.0
dependencies:
- '@emotion/react': 11.11.4(@types/react@18.2.46)(react@18.2.0)
- '@emotion/styled': 11.11.5(@emotion/react@11.11.4)(@types/react@18.2.46)(react@18.2.0)
+ '@emotion/react': 11.11.3(@types/react@18.2.46)(react@18.2.0)
+ '@emotion/styled': 11.11.0(@emotion/react@11.11.3)(@types/react@18.2.46)(react@18.2.0)
lodash: 4.17.21
prop-types: 15.8.1
react: 18.2.0
@@ -15173,36 +14917,36 @@ packages:
transitivePeerDependencies:
- react-dom
- /decap-cms-widget-boolean@3.1.1(@emotion/react@11.11.4)(decap-cms-ui-default@3.1.1)(lodash@4.17.21)(prop-types@15.8.1)(react-immutable-proptypes@2.2.0)(react@18.2.0):
- resolution: {integrity: sha512-uUpucKVlWvCHiypmru92BUs1agDAyQ8g9b+XQCcR+T4CVuU+Q/M+fFH5nxKE/qBZv/WAUnsh+t+Jqtby+vy8lA==}
+ /decap-cms-widget-boolean@3.0.2(@emotion/react@11.11.3)(decap-cms-ui-default@3.1.0)(lodash@4.17.21)(prop-types@15.8.1)(react-immutable-proptypes@2.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-kNLirN5QkKWmFIWqKkxRl1nt1fluuxPsbdwBh6M80KqsvQUZn63Kn3tK3NUAOp19PMMbwIINWr1J0mx+zaOaZA==}
peerDependencies:
'@emotion/react': ^11.11.1
decap-cms-ui-default: ^3.0.0
lodash: ^4.17.11
prop-types: ^15.7.2
- react: ^18.2.0
+ react: ^16.8.4 || ^17.0.0
react-immutable-proptypes: ^2.1.0
dependencies:
- '@emotion/react': 11.11.4(@types/react@18.2.46)(react@18.2.0)
- decap-cms-ui-default: 3.1.1(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(lodash@4.17.21)(prop-types@15.8.1)(react-dom@18.2.0)(react@18.2.0)
+ '@emotion/react': 11.11.3(@types/react@18.2.46)(react@18.2.0)
+ decap-cms-ui-default: 3.1.0(@emotion/react@11.11.3)(@emotion/styled@11.11.0)(lodash@4.17.21)(prop-types@15.8.1)(react-dom@18.2.0)(react@18.2.0)
lodash: 4.17.21
prop-types: 15.8.1
react: 18.2.0
react-immutable-proptypes: 2.2.0(immutable@3.8.2)
dev: false
- /decap-cms-widget-code@3.1.2(@emotion/react@11.11.4)(@types/react@18.2.46)(codemirror@5.65.16)(decap-cms-ui-default@3.1.1)(lodash@4.17.21)(react-dom@18.2.0)(react@18.2.0):
- resolution: {integrity: sha512-ok9JFEzHID8/H0x5kf4HIGW/933B4VgVPLk7KGFYEu/nXG3fn7c9HsYSZVdCBQs9de9+hhDZyjnOpW/M+LguEA==}
+ /decap-cms-widget-code@3.0.2(@emotion/react@11.11.3)(@types/react@18.2.46)(codemirror@5.65.16)(decap-cms-ui-default@3.1.0)(lodash@4.17.21)(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-NQ5wVSzS3aY5+M3YsGQM47nbhSe3aO9dnaBRpAheJZ/AJR6aZ225T/fBR7WNMF/yYrwoEXlbBg49l1E6LL2C6A==}
peerDependencies:
'@emotion/react': ^11.11.1
codemirror: ^5.46.0
decap-cms-ui-default: ^3.0.0
lodash: ^4.17.11
- react: ^18.2.0
+ react: ^16.8.4 || ^17.0.0
dependencies:
- '@emotion/react': 11.11.4(@types/react@18.2.46)(react@18.2.0)
+ '@emotion/react': 11.11.3(@types/react@18.2.46)(react@18.2.0)
codemirror: 5.65.16
- decap-cms-ui-default: 3.1.1(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(lodash@4.17.21)(prop-types@15.8.1)(react-dom@18.2.0)(react@18.2.0)
+ decap-cms-ui-default: 3.1.0(@emotion/react@11.11.3)(@emotion/styled@11.11.0)(lodash@4.17.21)(prop-types@15.8.1)(react-dom@18.2.0)(react@18.2.0)
lodash: 4.17.21
react: 18.2.0
react-codemirror2: 7.3.0(codemirror@5.65.16)(react@18.2.0)
@@ -15212,55 +14956,57 @@ packages:
- react-dom
dev: false
- /decap-cms-widget-colorstring@3.1.1(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(decap-cms-ui-default@3.1.1)(prop-types@15.8.1)(react@18.2.0):
- resolution: {integrity: sha512-ZAIcTYJjR8K/uvDQlFGFe6PnqDc6dDJzEDggB4EgvAl99ruj9Q+a89+j17dWYyf4PZppByrlSK1A8Tu3MIzlqQ==}
+ /decap-cms-widget-colorstring@3.0.2(@emotion/react@11.11.3)(@emotion/styled@11.11.0)(decap-cms-ui-default@3.1.0)(prop-types@15.8.1)(react@18.2.0):
+ resolution: {integrity: sha512-UmT13F+tlJ71WK10rb8dfWPqhaspSO5sMlcx7DCRYHyi7yV1jZNu8QwSAf9d5cXVKdNdW2+vBMAS829wVG/47Q==}
peerDependencies:
'@emotion/react': ^11.11.1
'@emotion/styled': ^11.11.0
decap-cms-ui-default: ^3.0.0
prop-types: ^15.7.2
- react: ^18.2.0
+ react: ^16.8.4 || ^17.0.0
dependencies:
- '@emotion/react': 11.11.4(@types/react@18.2.46)(react@18.2.0)
- '@emotion/styled': 11.11.5(@emotion/react@11.11.4)(@types/react@18.2.46)(react@18.2.0)
- decap-cms-ui-default: 3.1.1(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(lodash@4.17.21)(prop-types@15.8.1)(react-dom@18.2.0)(react@18.2.0)
+ '@emotion/react': 11.11.3(@types/react@18.2.46)(react@18.2.0)
+ '@emotion/styled': 11.11.0(@emotion/react@11.11.3)(@types/react@18.2.46)(react@18.2.0)
+ decap-cms-ui-default: 3.1.0(@emotion/react@11.11.3)(@emotion/styled@11.11.0)(lodash@4.17.21)(prop-types@15.8.1)(react-dom@18.2.0)(react@18.2.0)
prop-types: 15.8.1
react: 18.2.0
react-color: 2.19.3(react@18.2.0)
- tinycolor2: 1.6.0
+ validate-color: 2.2.4
dev: false
- /decap-cms-widget-datetime@3.1.3(@emotion/react@11.11.4)(react@18.2.0):
- resolution: {integrity: sha512-9KkK4uZ6B+4GC1jvGJ/fMUUXwQoTInaWJVW3WoS02cA8QWp6rGSTDsO4jjJiK4xjSQwR9d9Hlq0TdBjg6YX2uA==}
+ /decap-cms-widget-datetime@3.0.3(@emotion/react@11.11.3)(moment@2.30.1)(react@18.2.0):
+ resolution: {integrity: sha512-lY7icSiMSW8nAaLXMzAgLU5bhe6Coj3znQ2y+n2jftc7KQ4ppYBszpAmCjuJmiMbQ6IbZ3zGSDssUZifAKbyFQ==}
peerDependencies:
'@emotion/react': ^11.11.1
- react: ^18.2.0
+ react: ^16.8.4 || ^17.0.0
dependencies:
- '@emotion/react': 11.11.4(@types/react@18.2.46)(react@18.2.0)
- dayjs: 1.11.10
+ '@emotion/react': 11.11.3(@types/react@18.2.46)(react@18.2.0)
react: 18.2.0
+ react-datetime: 3.2.0(moment@2.30.1)(react@18.2.0)
+ transitivePeerDependencies:
+ - moment
dev: false
- /decap-cms-widget-file@3.1.1(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(decap-cms-ui-default@3.1.1)(immutable@3.8.2)(prop-types@15.8.1)(react-dom@18.2.0)(react-immutable-proptypes@2.2.0)(react@18.2.0)(uuid@8.3.2):
- resolution: {integrity: sha512-MKZaRF6uyB7j6HnvIpR4N6vYjwi2DJlhtToGhO+adRCkgmJi0IXj78kASk/3rJsCKv/XCShY/pu3pQg671nmaA==}
+ /decap-cms-widget-file@3.0.4(@emotion/react@11.11.3)(@emotion/styled@11.11.0)(decap-cms-ui-default@3.1.0)(immutable@3.8.2)(prop-types@15.8.1)(react-dom@18.2.0)(react-immutable-proptypes@2.2.0)(react@18.2.0)(uuid@8.3.2):
+ resolution: {integrity: sha512-lq86moCuFMn/XMJXHalmtZNSnuu27Asg10luajfrhLSYqluAA9l4f/ckCrn9kiSIWBVkkoWRqhm0Fr/HAeKqWg==}
peerDependencies:
'@emotion/react': ^11.11.1
'@emotion/styled': ^11.11.0
decap-cms-ui-default: ^3.0.0
immutable: ^3.7.6
prop-types: ^15.7.2
- react: ^18.2.0
+ react: ^16.8.4 || ^17.0.0
react-immutable-proptypes: ^2.1.0
uuid: ^8.3.2
dependencies:
'@dnd-kit/core': 6.1.0(react-dom@18.2.0)(react@18.2.0)
'@dnd-kit/modifiers': 6.0.1(@dnd-kit/core@6.1.0)(react@18.2.0)
'@dnd-kit/sortable': 7.0.2(@dnd-kit/core@6.1.0)(react@18.2.0)
- '@emotion/react': 11.11.4(@types/react@18.2.46)(react@18.2.0)
- '@emotion/styled': 11.11.5(@emotion/react@11.11.4)(@types/react@18.2.46)(react@18.2.0)
+ '@emotion/react': 11.11.3(@types/react@18.2.46)(react@18.2.0)
+ '@emotion/styled': 11.11.0(@emotion/react@11.11.3)(@types/react@18.2.46)(react@18.2.0)
array-move: 4.0.0
common-tags: 1.8.2
- decap-cms-ui-default: 3.1.1(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(lodash@4.17.21)(prop-types@15.8.1)(react-dom@18.2.0)(react@18.2.0)
+ decap-cms-ui-default: 3.1.0(@emotion/react@11.11.3)(@emotion/styled@11.11.0)(lodash@4.17.21)(prop-types@15.8.1)(react-dom@18.2.0)(react@18.2.0)
immutable: 3.8.2
prop-types: 15.8.1
react: 18.2.0
@@ -15270,8 +15016,8 @@ packages:
- react-dom
dev: false
- /decap-cms-widget-image@3.1.1(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(decap-cms-ui-default@3.1.1)(decap-cms-widget-file@3.1.1)(immutable@3.8.2)(prop-types@15.8.1)(react@18.2.0):
- resolution: {integrity: sha512-yxD+kUD9XXUmiHQnAV1PR28gfpaKCxKT80gm6BIob4S4RO7+HBtZmKz5vnw6w1pnAXNFK+R+gkERBxTxFwrPhQ==}
+ /decap-cms-widget-image@3.0.3(@emotion/react@11.11.3)(@emotion/styled@11.11.0)(decap-cms-ui-default@3.1.0)(decap-cms-widget-file@3.0.4)(immutable@3.8.2)(prop-types@15.8.1)(react@18.2.0):
+ resolution: {integrity: sha512-IzbjZq5dwXaOHOnEqREGmQErULDEw95y5dj9ZcRnT5w2aSRitnKf9K/mjMkZrznjSanSWNZv5BYx8/1OPe2k3Q==}
peerDependencies:
'@emotion/react': ^11.11.1
'@emotion/styled': ^11.11.0
@@ -15279,19 +15025,19 @@ packages:
decap-cms-widget-file: ^3.0.0
immutable: ^3.7.6
prop-types: ^15.7.2
- react: ^18.2.0
+ react: ^16.8.4 || ^17.0.0
dependencies:
- '@emotion/react': 11.11.4(@types/react@18.2.46)(react@18.2.0)
- '@emotion/styled': 11.11.5(@emotion/react@11.11.4)(@types/react@18.2.46)(react@18.2.0)
- decap-cms-ui-default: 3.1.1(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(lodash@4.17.21)(prop-types@15.8.1)(react-dom@18.2.0)(react@18.2.0)
- decap-cms-widget-file: 3.1.1(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(decap-cms-ui-default@3.1.1)(immutable@3.8.2)(prop-types@15.8.1)(react-dom@18.2.0)(react-immutable-proptypes@2.2.0)(react@18.2.0)(uuid@8.3.2)
+ '@emotion/react': 11.11.3(@types/react@18.2.46)(react@18.2.0)
+ '@emotion/styled': 11.11.0(@emotion/react@11.11.3)(@types/react@18.2.46)(react@18.2.0)
+ decap-cms-ui-default: 3.1.0(@emotion/react@11.11.3)(@emotion/styled@11.11.0)(lodash@4.17.21)(prop-types@15.8.1)(react-dom@18.2.0)(react@18.2.0)
+ decap-cms-widget-file: 3.0.4(@emotion/react@11.11.3)(@emotion/styled@11.11.0)(decap-cms-ui-default@3.1.0)(immutable@3.8.2)(prop-types@15.8.1)(react-dom@18.2.0)(react-immutable-proptypes@2.2.0)(react@18.2.0)(uuid@8.3.2)
immutable: 3.8.2
prop-types: 15.8.1
react: 18.2.0
dev: false
- /decap-cms-widget-list@3.1.1(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(decap-cms-lib-widgets@3.0.2)(decap-cms-ui-default@3.1.1)(decap-cms-widget-object@3.1.2)(immutable@3.8.2)(lodash@4.17.21)(prop-types@15.8.1)(react-dom@18.2.0)(react-immutable-proptypes@2.2.0)(react@18.2.0):
- resolution: {integrity: sha512-yzp1VnyOfT9oFFdS38NXFNoVtvLmoYq3DbQvc9hW6gd5U5TZ1FeCblsMIaucJbO2SS7Hhno79cGGXWzvHRHeSg==}
+ /decap-cms-widget-list@3.0.4(@emotion/react@11.11.3)(@emotion/styled@11.11.0)(decap-cms-lib-widgets@3.0.0)(decap-cms-ui-default@3.1.0)(decap-cms-widget-object@3.0.2)(immutable@3.8.2)(lodash@4.17.21)(prop-types@15.8.1)(react-dom@18.2.0)(react-immutable-proptypes@2.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-2CpTexznKhgenOSsVnxUBSCdxsZpCYIL6MrxoqFFYil3v9i5N2rSW4U/6fFpOvZz6DPTEBmRWNluacQhaJw3Jw==}
peerDependencies:
'@emotion/react': ^11.11.1
'@emotion/styled': ^11.11.0
@@ -15301,17 +15047,17 @@ packages:
immutable: ^3.7.6
lodash: ^4.17.11
prop-types: ^15.7.2
- react: ^18.2.0
+ react: ^16.8.4 || ^17.0.0
react-immutable-proptypes: ^2.1.0
dependencies:
'@dnd-kit/core': 6.1.0(react-dom@18.2.0)(react@18.2.0)
'@dnd-kit/modifiers': 6.0.1(@dnd-kit/core@6.1.0)(react@18.2.0)
'@dnd-kit/sortable': 7.0.2(@dnd-kit/core@6.1.0)(react@18.2.0)
- '@emotion/react': 11.11.4(@types/react@18.2.46)(react@18.2.0)
- '@emotion/styled': 11.11.5(@emotion/react@11.11.4)(@types/react@18.2.46)(react@18.2.0)
- decap-cms-lib-widgets: 3.0.2(immutable@3.8.2)(lodash@4.17.21)
- decap-cms-ui-default: 3.1.1(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(lodash@4.17.21)(prop-types@15.8.1)(react-dom@18.2.0)(react@18.2.0)
- decap-cms-widget-object: 3.1.2(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(decap-cms-ui-default@3.1.1)(immutable@3.8.2)(lodash@4.17.21)(prop-types@15.8.1)(react-immutable-proptypes@2.2.0)(react@18.2.0)
+ '@emotion/react': 11.11.3(@types/react@18.2.46)(react@18.2.0)
+ '@emotion/styled': 11.11.0(@emotion/react@11.11.3)(@types/react@18.2.46)(react@18.2.0)
+ decap-cms-lib-widgets: 3.0.0(immutable@3.8.2)(lodash@4.17.21)(moment@2.30.1)
+ decap-cms-ui-default: 3.1.0(@emotion/react@11.11.3)(@emotion/styled@11.11.0)(lodash@4.17.21)(prop-types@15.8.1)(react-dom@18.2.0)(react@18.2.0)
+ decap-cms-widget-object: 3.0.2(@emotion/react@11.11.3)(@emotion/styled@11.11.0)(decap-cms-ui-default@3.1.0)(immutable@3.8.2)(lodash@4.17.21)(prop-types@15.8.1)(react-immutable-proptypes@2.2.0)(react@18.2.0)
immutable: 3.8.2
lodash: 4.17.21
prop-types: 15.8.1
@@ -15321,18 +15067,18 @@ packages:
- react-dom
dev: false
- /decap-cms-widget-map@3.1.1(@emotion/react@11.11.4)(decap-cms-ui-default@3.1.1)(lodash@4.17.21)(prop-types@15.8.1)(react-immutable-proptypes@2.2.0)(react@18.2.0):
- resolution: {integrity: sha512-SZ3ydJ4D6o6ptwUk4K0hcGPxYY+XF1060QCaefKRUB43Utd7tu8lB9bD7D/rosPgNpsY/M34846Lzbkmg3pUTA==}
+ /decap-cms-widget-map@3.0.2(@emotion/react@11.11.3)(decap-cms-ui-default@3.1.0)(lodash@4.17.21)(prop-types@15.8.1)(react-immutable-proptypes@2.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-pG95r+ehEO9skBaytLBUF8KSo69+xRoDshN1xO9nkF6w7BPXfMBHbEUArQqMWksGYAnK/5XRq9iwyXR3z0+pRQ==}
peerDependencies:
'@emotion/react': ^11.11.1
decap-cms-ui-default: ^3.0.0
lodash: ^4.17.11
prop-types: ^15.7.2
- react: ^18.2.0
+ react: ^16.8.4 || ^17.0.0
react-immutable-proptypes: ^2.1.0
dependencies:
- '@emotion/react': 11.11.4(@types/react@18.2.46)(react@18.2.0)
- decap-cms-ui-default: 3.1.1(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(lodash@4.17.21)(prop-types@15.8.1)(react-dom@18.2.0)(react@18.2.0)
+ '@emotion/react': 11.11.3(@types/react@18.2.46)(react@18.2.0)
+ decap-cms-ui-default: 3.1.0(@emotion/react@11.11.3)(@emotion/styled@11.11.0)(lodash@4.17.21)(prop-types@15.8.1)(react-dom@18.2.0)(react@18.2.0)
lodash: 4.17.21
ol: 6.15.1
prop-types: 15.8.1
@@ -15340,8 +15086,8 @@ packages:
react-immutable-proptypes: 2.2.0(immutable@3.8.2)
dev: false
- /decap-cms-widget-markdown@3.1.3(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(decap-cms-ui-default@3.1.1)(immutable@3.8.2)(lodash@4.17.21)(prop-types@15.8.1)(react-dom@18.2.0)(react-immutable-proptypes@2.2.0)(react@18.2.0):
- resolution: {integrity: sha512-7e+9OJ4bH2akPFi1gRuhAKAYt1tGW1tWBDa6IEs7lqCdEohQOtT23+weV8CGylslZOBu1sBi6qkrZ7iyHYoGYw==}
+ /decap-cms-widget-markdown@3.0.3(@emotion/react@11.11.3)(@emotion/styled@11.11.0)(decap-cms-ui-default@3.1.0)(immutable@3.8.2)(lodash@4.17.21)(prop-types@15.8.1)(react-dom@18.2.0)(react-immutable-proptypes@2.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-XOIoRNwMRX/gJmRahVZexUPOTCGqug9Wqvo4XWGlJioXm/dSxsQgEaqU6IRgzXQs6bIa1DOmpeieRy29uKrwig==}
peerDependencies:
'@emotion/react': ^11.11.1
'@emotion/styled': ^11.11.0
@@ -15349,14 +15095,14 @@ packages:
immutable: ^3.7.6
lodash: ^4.17.11
prop-types: ^15.7.2
- react: ^18.2.0
- react-dom: ^18.2.0
+ react: ^16.8.4 || ^17.0.0
+ react-dom: ^16.8.4 || ^17.0.0
react-immutable-proptypes: ^2.1.0
dependencies:
- '@emotion/react': 11.11.4(@types/react@18.2.46)(react@18.2.0)
- '@emotion/styled': 11.11.5(@emotion/react@11.11.4)(@types/react@18.2.46)(react@18.2.0)
- decap-cms-ui-default: 3.1.1(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(lodash@4.17.21)(prop-types@15.8.1)(react-dom@18.2.0)(react@18.2.0)
- dompurify: 2.5.0
+ '@emotion/react': 11.11.3(@types/react@18.2.46)(react@18.2.0)
+ '@emotion/styled': 11.11.0(@emotion/react@11.11.3)(@types/react@18.2.46)(react@18.2.0)
+ decap-cms-ui-default: 3.1.0(@emotion/react@11.11.3)(@emotion/styled@11.11.0)(lodash@4.17.21)(prop-types@15.8.1)(react-dom@18.2.0)(react@18.2.0)
+ dompurify: 2.4.7
immutable: 3.8.2
is-hotkey: 0.2.0
is-url: 1.2.4
@@ -15373,7 +15119,7 @@ packages:
remark-parse: 6.0.3
remark-rehype: 4.0.1
remark-slate: 1.8.6
- remark-slate-transformer: 0.7.5(unified@9.2.2)
+ remark-slate-transformer: 0.7.5(unified@7.1.0)
remark-stringify: 6.0.4
slate: 0.91.4
slate-base64-serializer: 0.2.115(slate@0.91.4)
@@ -15381,25 +15127,25 @@ packages:
slate-plain-serializer: 0.7.13(immutable@3.8.2)(slate@0.91.4)
slate-react: 0.91.11(react-dom@18.2.0)(react@18.2.0)(slate@0.91.4)
slate-soft-break: 0.9.0(slate-react@0.91.11)(slate@0.91.4)
- unified: 9.2.2
+ unified: 7.1.0
unist-builder: 1.0.4
unist-util-visit-parents: 2.1.2
dev: false
- /decap-cms-widget-number@3.1.1(decap-cms-ui-default@3.1.1)(prop-types@15.8.1)(react@18.2.0):
- resolution: {integrity: sha512-rS6bZ+tRrbjSnmWZBXh0MCOJp6ByA5lRDTmGBdKYuTxxfcTSX1Leu6pyUrIL87t+Weuf7crImCqiC2wk/Bs5wQ==}
+ /decap-cms-widget-number@3.0.1(decap-cms-ui-default@3.1.0)(prop-types@15.8.1)(react@18.2.0):
+ resolution: {integrity: sha512-2VsVNPIP/rnu2KkJrkvZOUhIGwqXLDA791CLTowAcyzQuheKlYdiujM2IWdQGCACDQWMgcAnPDiZkjdRvLbyZQ==}
peerDependencies:
decap-cms-ui-default: ^3.0.0
prop-types: ^15.7.2
- react: ^18.2.0
+ react: ^16.8.4 || ^17.0.0
dependencies:
- decap-cms-ui-default: 3.1.1(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(lodash@4.17.21)(prop-types@15.8.1)(react-dom@18.2.0)(react@18.2.0)
+ decap-cms-ui-default: 3.1.0(@emotion/react@11.11.3)(@emotion/styled@11.11.0)(lodash@4.17.21)(prop-types@15.8.1)(react-dom@18.2.0)(react@18.2.0)
prop-types: 15.8.1
react: 18.2.0
dev: false
- /decap-cms-widget-object@3.1.2(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(decap-cms-ui-default@3.1.1)(immutable@3.8.2)(lodash@4.17.21)(prop-types@15.8.1)(react-immutable-proptypes@2.2.0)(react@18.2.0):
- resolution: {integrity: sha512-GoZIulFhyIuRFZAEqz8tyA+vEecX6dzMA5lIyC8YICXA0nHCGP70djZnfj64Bt3p6+2yJ9ZtT65uV31OliNvWg==}
+ /decap-cms-widget-object@3.0.2(@emotion/react@11.11.3)(@emotion/styled@11.11.0)(decap-cms-ui-default@3.1.0)(immutable@3.8.2)(lodash@4.17.21)(prop-types@15.8.1)(react-immutable-proptypes@2.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-kNf/SBjinmSSEaK5Ckfy/SM6DOJCyxlhqIixmfcAK1ZvC+hPoBcVXfE7f0nMWTP8yZStbxRAawcu26B2tHhElg==}
peerDependencies:
'@emotion/react': ^11.11.1
'@emotion/styled': ^11.11.0
@@ -15407,12 +15153,12 @@ packages:
immutable: ^3.7.6
lodash: ^4.17.11
prop-types: ^15.7.2
- react: ^18.2.0
+ react: ^16.8.4 || ^17.0.0
react-immutable-proptypes: ^2.1.0
dependencies:
- '@emotion/react': 11.11.4(@types/react@18.2.46)(react@18.2.0)
- '@emotion/styled': 11.11.5(@emotion/react@11.11.4)(@types/react@18.2.46)(react@18.2.0)
- decap-cms-ui-default: 3.1.1(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(lodash@4.17.21)(prop-types@15.8.1)(react-dom@18.2.0)(react@18.2.0)
+ '@emotion/react': 11.11.3(@types/react@18.2.46)(react@18.2.0)
+ '@emotion/styled': 11.11.0(@emotion/react@11.11.3)(@types/react@18.2.46)(react@18.2.0)
+ decap-cms-ui-default: 3.1.0(@emotion/react@11.11.3)(@emotion/styled@11.11.0)(lodash@4.17.21)(prop-types@15.8.1)(react-dom@18.2.0)(react@18.2.0)
immutable: 3.8.2
lodash: 4.17.21
prop-types: 15.8.1
@@ -15420,8 +15166,8 @@ packages:
react-immutable-proptypes: 2.2.0(immutable@3.8.2)
dev: false
- /decap-cms-widget-relation@3.2.1(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.2.46)(decap-cms-lib-widgets@3.0.2)(decap-cms-ui-default@3.1.1)(immutable@3.8.2)(lodash@4.17.21)(prop-types@15.8.1)(react-dom@18.2.0)(react@18.2.0)(uuid@8.3.2):
- resolution: {integrity: sha512-6xMbhrpY1MXxAu+AOkOSP5TnT9ceuGAidOSCNDvdhmEn8qcfUOJSmQxwIHISuPFRrfyByuycdIXFXLxcYg5Kwg==}
+ /decap-cms-widget-relation@3.0.3(@emotion/react@11.11.3)(@emotion/styled@11.11.0)(@types/react@18.2.46)(decap-cms-lib-widgets@3.0.0)(decap-cms-ui-default@3.1.0)(immutable@3.8.2)(lodash@4.17.21)(prop-types@15.8.1)(react-dom@18.2.0)(react@18.2.0)(uuid@8.3.2):
+ resolution: {integrity: sha512-UMc6JkfR+EqfwkCNnRrnRp++BcYYaCB+OBRfDdBNmhV0fUOjL0VRW4xJllH/CQVJG8qx2FVtYPKr8TE4Wujv/Q==}
peerDependencies:
'@emotion/react': ^11.11.1
'@emotion/styled': ^11.11.0
@@ -15430,16 +15176,16 @@ packages:
immutable: ^3.7.6
lodash: ^4.17.11
prop-types: ^15.7.2
- react: ^18.2.0
+ react: ^16.8.4 || ^17.0.0
uuid: ^8.3.2
dependencies:
'@dnd-kit/core': 6.1.0(react-dom@18.2.0)(react@18.2.0)
'@dnd-kit/modifiers': 6.0.1(@dnd-kit/core@6.1.0)(react@18.2.0)
'@dnd-kit/sortable': 7.0.2(@dnd-kit/core@6.1.0)(react@18.2.0)
- '@emotion/react': 11.11.4(@types/react@18.2.46)(react@18.2.0)
- '@emotion/styled': 11.11.5(@emotion/react@11.11.4)(@types/react@18.2.46)(react@18.2.0)
- decap-cms-lib-widgets: 3.0.2(immutable@3.8.2)(lodash@4.17.21)
- decap-cms-ui-default: 3.1.1(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(lodash@4.17.21)(prop-types@15.8.1)(react-dom@18.2.0)(react@18.2.0)
+ '@emotion/react': 11.11.3(@types/react@18.2.46)(react@18.2.0)
+ '@emotion/styled': 11.11.0(@emotion/react@11.11.3)(@types/react@18.2.46)(react@18.2.0)
+ decap-cms-lib-widgets: 3.0.0(immutable@3.8.2)(lodash@4.17.21)(moment@2.30.1)
+ decap-cms-ui-default: 3.1.0(@emotion/react@11.11.3)(@emotion/styled@11.11.0)(lodash@4.17.21)(prop-types@15.8.1)(react-dom@18.2.0)(react@18.2.0)
immutable: 3.8.2
lodash: 4.17.21
prop-types: 15.8.1
@@ -15452,18 +15198,18 @@ packages:
- react-dom
dev: false
- /decap-cms-widget-select@3.1.1(@types/react@18.2.46)(decap-cms-lib-widgets@3.0.2)(decap-cms-ui-default@3.1.1)(immutable@3.8.2)(prop-types@15.8.1)(react-dom@18.2.0)(react-immutable-proptypes@2.2.0)(react@18.2.0):
- resolution: {integrity: sha512-CMQO/pDUfXp5uZoxggBq+3Ucrsif9WwHA8jjIB9SpgEEqF6a9zukGTqLneaW1jy1rCBTehGdAabeBmw89wjFlA==}
+ /decap-cms-widget-select@3.0.1(@types/react@18.2.46)(decap-cms-lib-widgets@3.0.0)(decap-cms-ui-default@3.1.0)(immutable@3.8.2)(prop-types@15.8.1)(react-dom@18.2.0)(react-immutable-proptypes@2.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-nzt20Yb6fQFyzPeEbCW3ObR8h6PDIuAggMAK6rK+ZIb+joFeYzqzuNc4YxV3snv+TkqKVIDHUDRm8493jhNj5g==}
peerDependencies:
decap-cms-lib-widgets: ^3.0.0
decap-cms-ui-default: ^3.0.0
immutable: ^3.7.6
prop-types: ^15.7.2
- react: ^18.2.0
+ react: ^16.8.4 || ^17.0.0
react-immutable-proptypes: ^2.1.0
dependencies:
- decap-cms-lib-widgets: 3.0.2(immutable@3.8.2)(lodash@4.17.21)
- decap-cms-ui-default: 3.1.1(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(lodash@4.17.21)(prop-types@15.8.1)(react-dom@18.2.0)(react@18.2.0)
+ decap-cms-lib-widgets: 3.0.0(immutable@3.8.2)(lodash@4.17.21)(moment@2.30.1)
+ decap-cms-ui-default: 3.1.0(@emotion/react@11.11.3)(@emotion/styled@11.11.0)(lodash@4.17.21)(prop-types@15.8.1)(react-dom@18.2.0)(react@18.2.0)
immutable: 3.8.2
prop-types: 15.8.1
react: 18.2.0
@@ -15474,26 +15220,26 @@ packages:
- react-dom
dev: false
- /decap-cms-widget-string@3.1.1(decap-cms-ui-default@3.1.1)(prop-types@15.8.1)(react@18.2.0):
- resolution: {integrity: sha512-/sEpZ73WZ1xuDzdbKXJ250N1I0zSJblIvDgoannj8BNKIAV7aNOQUQtb4Gs1uQK7ZzSQQIWzPqTtYng7dEGV6w==}
+ /decap-cms-widget-string@3.0.1(decap-cms-ui-default@3.1.0)(prop-types@15.8.1)(react@18.2.0):
+ resolution: {integrity: sha512-XfUcjs5A8DiHpcesYDG9yferfW9hAfkYUZGp6Vg8KZ7jzCZFqS+rgQKZtHqBmEZiFRAjdtzQQr3tkud98fQjiA==}
peerDependencies:
decap-cms-ui-default: ^3.0.0
prop-types: ^15.7.2
- react: ^18.2.0
+ react: ^16.8.4 || ^17.0.0
dependencies:
- decap-cms-ui-default: 3.1.1(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(lodash@4.17.21)(prop-types@15.8.1)(react-dom@18.2.0)(react@18.2.0)
+ decap-cms-ui-default: 3.1.0(@emotion/react@11.11.3)(@emotion/styled@11.11.0)(lodash@4.17.21)(prop-types@15.8.1)(react-dom@18.2.0)(react@18.2.0)
prop-types: 15.8.1
react: 18.2.0
dev: false
- /decap-cms-widget-text@3.1.1(@types/react@18.2.46)(decap-cms-ui-default@3.1.1)(prop-types@15.8.1)(react@18.2.0):
- resolution: {integrity: sha512-qyDZ+pD2aocsKrnuKRo/YzQAajcx/9hzZKxXwXPa1to7TPsfOuXN3jhSopMi7zqVNvzRP5DboMgwnE5oRYZ3sg==}
+ /decap-cms-widget-text@3.0.1(@types/react@18.2.46)(decap-cms-ui-default@3.1.0)(prop-types@15.8.1)(react@18.2.0):
+ resolution: {integrity: sha512-e07FITEJ+5mL6d/1mHbo4sgpNGWyDbzb3RWeqk6d/ryruRvu+WZMt/wvc3vs4XSLnCvyxlcV9PPNLFa7RqIFEQ==}
peerDependencies:
decap-cms-ui-default: ^3.0.0
prop-types: ^15.7.2
- react: ^18.2.0
+ react: ^16.8.4 || ^17.0.0
dependencies:
- decap-cms-ui-default: 3.1.1(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(lodash@4.17.21)(prop-types@15.8.1)(react-dom@18.2.0)(react@18.2.0)
+ decap-cms-ui-default: 3.1.0(@emotion/react@11.11.3)(@emotion/styled@11.11.0)(lodash@4.17.21)(prop-types@15.8.1)(react-dom@18.2.0)(react@18.2.0)
prop-types: 15.8.1
react: 18.2.0
react-textarea-autosize: 8.5.3(@types/react@18.2.46)(react@18.2.0)
@@ -15534,6 +15280,7 @@ packages:
/deep-eql@4.1.3:
resolution: {integrity: sha512-WaEtAOpRA1MQ0eohqZjpGD8zdI0Ovsm8mmFhaDN8dvDZzyoUMcYDnf5Y6iu7HTXxf8JDS23qWa4a+hKCDyOPzw==}
engines: {node: '>=6'}
+ requiresBuild: true
dependencies:
type-detect: 4.0.8
@@ -15541,32 +15288,34 @@ packages:
resolution: {integrity: sha512-ZIwpnevOurS8bpT4192sqAowWM76JDKSHYzMLty3BZGSswgq6pBaH3DhCSW5xVAZICZyKdOBPjwww5wfgT/6PA==}
engines: {node: '>= 0.4'}
dependencies:
- array-buffer-byte-length: 1.0.1
- call-bind: 1.0.7
+ array-buffer-byte-length: 1.0.0
+ call-bind: 1.0.5
es-get-iterator: 1.1.3
- get-intrinsic: 1.2.4
+ get-intrinsic: 1.2.2
is-arguments: 1.1.1
- is-array-buffer: 3.0.4
+ is-array-buffer: 3.0.2
is-date-object: 1.0.5
is-regex: 1.1.4
- is-shared-array-buffer: 1.0.3
+ is-shared-array-buffer: 1.0.2
isarray: 2.0.5
- object-is: 1.1.6
+ object-is: 1.1.5
object-keys: 1.1.1
object.assign: 4.1.5
- regexp.prototype.flags: 1.5.2
- side-channel: 1.0.6
+ regexp.prototype.flags: 1.5.1
+ side-channel: 1.0.4
which-boxed-primitive: 1.0.2
- which-collection: 1.0.2
- which-typed-array: 1.1.15
+ which-collection: 1.0.1
+ which-typed-array: 1.1.13
dev: true
/deep-extend@0.6.0:
resolution: {integrity: sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==}
engines: {node: '>=4.0.0'}
+ requiresBuild: true
/deep-is@0.1.4:
resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==}
+ requiresBuild: true
/deepmerge@4.3.1:
resolution: {integrity: sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==}
@@ -15596,13 +15345,14 @@ packages:
resolution: {integrity: sha512-4tvttepXG1VaYGrRibk5EwJd1t4udunSOVMdLSAL6mId1ix438oPwPZMALY41FCijukO1L0twNcGsdzS7dHgDg==}
engines: {node: '>=10'}
- /define-data-property@1.1.4:
- resolution: {integrity: sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==}
+ /define-data-property@1.1.1:
+ resolution: {integrity: sha512-E7uGkTzkk1d0ByLeSc6ZsFS79Axg+m1P/VsgYsxHgiuc3tFSj+MjMIwe90FC4lOAZzNBdY7kkO2P2wKdsQ1vgQ==}
engines: {node: '>= 0.4'}
+ requiresBuild: true
dependencies:
- es-define-property: 1.0.0
- es-errors: 1.3.0
+ get-intrinsic: 1.2.2
gopd: 1.0.1
+ has-property-descriptors: 1.0.1
/define-lazy-prop@2.0.0:
resolution: {integrity: sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==}
@@ -15612,8 +15362,8 @@ packages:
resolution: {integrity: sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==}
engines: {node: '>= 0.4'}
dependencies:
- define-data-property: 1.1.4
- has-property-descriptors: 1.0.2
+ define-data-property: 1.1.1
+ has-property-descriptors: 1.0.1
object-keys: 1.1.1
/define-property@0.2.5:
@@ -15672,6 +15422,11 @@ packages:
resolution: {integrity: sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ==}
dev: false
+ /denque@2.1.0:
+ resolution: {integrity: sha512-HVQE3AAb/pxF8fQAoiqpvg9i3evqug3hoiwakOyZAwJm+6vZehbkYXZ0l4JxS+I3QxM97v5aaRNhj8v5oBhekw==}
+ engines: {node: '>=0.10'}
+ dev: false
+
/depd@1.1.2:
resolution: {integrity: sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ==}
engines: {node: '>= 0.6'}
@@ -15717,9 +15472,10 @@ packages:
engines: {node: '>=0.10'}
hasBin: true
- /detect-libc@2.0.3:
- resolution: {integrity: sha512-bwy0MGW55bG41VqxxypOsdSdGqLwXPI/focwgTYCFMbdUiBAxLg9CFzG08sz2aqzknwiX7Hkl0bQENjg8iLByw==}
+ /detect-libc@2.0.2:
+ resolution: {integrity: sha512-UX6sGumvvqSaXgdKGUsgZWqcUyIXZ/vZTrlRT/iobiKhGL0zL4d3osHj3uqllWJK+i+sixDS/3COVEOFbupFyw==}
engines: {node: '>=8'}
+ requiresBuild: true
/detect-newline@3.1.0:
resolution: {integrity: sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==}
@@ -15728,7 +15484,6 @@ packages:
/detect-node-es@1.1.0:
resolution: {integrity: sha512-ypdmJU/TbBby2Dxibuv7ZLW3Bs1QEmM7nHjEANfohJLvE0XVujisn1qPJcZxg+qDucsr+bP6fLD1rPS3AhJ7EQ==}
- dev: true
/detect-package-manager@2.0.1:
resolution: {integrity: sha512-j/lJHyoLlWi6G1LDdLgvUtz60Zo5GEj+sVYtTVXnYLDPuzgC3llMxonXym9zIwhhUII8vjdw0LXxavpLqTbl1A==}
@@ -15787,8 +15542,8 @@ packages:
engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
dependencies:
is-url: 1.2.4
- postcss: 8.4.38
- postcss-values-parser: 6.0.2(postcss@8.4.38)
+ postcss: 8.4.32
+ postcss-values-parser: 6.0.2(postcss@8.4.32)
dev: false
/detective-sass@5.0.3:
@@ -15812,26 +15567,26 @@ packages:
engines: {node: '>=14'}
dev: false
- /detective-typescript@11.2.0:
- resolution: {integrity: sha512-ARFxjzizOhPqs1fYC/2NMC3N4jrQ6HvVflnXBTRqNEqJuXwyKLRr9CrJwkRcV/SnZt1sNXgsF6FPm0x57Tq0rw==}
+ /detective-typescript@11.1.0:
+ resolution: {integrity: sha512-Mq8egjnW2NSCkzEb/Az15/JnBI/Ryyl6Po0Y+0mABTFvOS6DAyUGRZqz1nyhu4QJmWWe0zaGs/ITIBeWkvCkGw==}
engines: {node: ^14.14.0 || >=16.0.0}
dependencies:
- '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.4.4)
+ '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.4.2)
ast-module-types: 5.0.0
node-source-walk: 6.0.2
- typescript: 5.4.4
+ typescript: 5.4.2
transitivePeerDependencies:
- supports-color
dev: false
- /detective-typescript@11.2.0(supports-color@9.4.0):
- resolution: {integrity: sha512-ARFxjzizOhPqs1fYC/2NMC3N4jrQ6HvVflnXBTRqNEqJuXwyKLRr9CrJwkRcV/SnZt1sNXgsF6FPm0x57Tq0rw==}
+ /detective-typescript@11.1.0(supports-color@9.4.0):
+ resolution: {integrity: sha512-Mq8egjnW2NSCkzEb/Az15/JnBI/Ryyl6Po0Y+0mABTFvOS6DAyUGRZqz1nyhu4QJmWWe0zaGs/ITIBeWkvCkGw==}
engines: {node: ^14.14.0 || >=16.0.0}
dependencies:
- '@typescript-eslint/typescript-estree': 5.62.0(supports-color@9.4.0)(typescript@5.4.4)
+ '@typescript-eslint/typescript-estree': 5.62.0(supports-color@9.4.0)(typescript@5.4.2)
ast-module-types: 5.0.0
node-source-walk: 6.0.2
- typescript: 5.4.4
+ typescript: 5.4.2
transitivePeerDependencies:
- supports-color
dev: false
@@ -15843,7 +15598,7 @@ packages:
'@types/debug': 0.0.30
'@types/get-port': 3.2.0
'@types/glob': 5.0.38
- '@types/lodash': 4.17.0
+ '@types/lodash': 4.14.202
'@types/mkdirp': 0.5.2
'@types/node': 8.10.66
'@types/rimraf': 2.0.5
@@ -15881,8 +15636,8 @@ packages:
engines: {node: '>=0.3.1'}
dev: false
- /diff@5.2.0:
- resolution: {integrity: sha512-uIFDxqpRZGZ6ThOk84hEfqWoHx2devRFvpTZcTHur85vImfaxUbTW9Ryh4CpCuDnToOP1CEtXKIgytHBPVff5A==}
+ /diff@5.1.0:
+ resolution: {integrity: sha512-D+mk+qE8VC/PAUrlAU34N+VfXev0ghe5ywmpqrawphmVZc1bEfn56uo9qpyGp1p4xpzOHkSW4ztBd6L7Xx4ACw==}
engines: {node: '>=0.3.1'}
dev: false
@@ -15922,12 +15677,14 @@ packages:
/doctrine@2.1.0:
resolution: {integrity: sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==}
engines: {node: '>=0.10.0'}
+ requiresBuild: true
dependencies:
esutils: 2.0.3
/doctrine@3.0.0:
resolution: {integrity: sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==}
engines: {node: '>=6.0.0'}
+ requiresBuild: true
dependencies:
esutils: 2.0.3
@@ -15947,13 +15704,13 @@ packages:
/dom-helpers@3.4.0:
resolution: {integrity: sha512-LnuPJ+dwqKDIyotW1VzmOZ5TONUN7CwkCR5hrgawTUbkBGYdeoNLZo6nNfGkCrjtE1nXXaj7iMMpDa8/d9WoIA==}
dependencies:
- '@babel/runtime': 7.24.4
+ '@babel/runtime': 7.23.7
dev: false
/dom-helpers@5.2.1:
resolution: {integrity: sha512-nRCa7CK3VTrM2NmGkIy4cbK7IZlgBE/PYMn55rrXefr5xXDP0LdtfPnblFDoVdcAfslJ7or6iqAUnx0CCGIWQA==}
dependencies:
- '@babel/runtime': 7.24.4
+ '@babel/runtime': 7.23.7
csstype: 3.1.3
/dom-serializer@0.2.2:
@@ -16006,8 +15763,8 @@ packages:
dependencies:
domelementtype: 2.3.0
- /dompurify@2.5.0:
- resolution: {integrity: sha512-5RXhAXSCrKTqt9pSbobT9PVRX+oPpENplTZqCiK1l0ya+ZOzwo9kqsGLbYRsAhzIiLCwKEy99XKSSrqnRTLVcw==}
+ /dompurify@2.4.7:
+ resolution: {integrity: sha512-kxxKlPEDa6Nc5WJi+qRgPbOAbgTpSULL+vI3NUXsZMlkJxTqYI9wg5ZTay2sFrdZRWHPWNi+EdAhcJf81WtoMQ==}
dev: false
/domutils@1.7.0:
@@ -16075,8 +15832,8 @@ packages:
engines: {node: '>=12'}
dev: false
- /dotenv@16.4.5:
- resolution: {integrity: sha512-ZmdL2rui+eB2YwhsWzjInR8LldtZHGDoQ1ugH85ppHKwpUHL7j7rN0Ti9NCnGiQbhaZ11FpR+7ao1dNsmduNUg==}
+ /dotenv@16.3.1:
+ resolution: {integrity: sha512-IPzF4w4/Rd94bA9imS68tZBaYyBWSCE47V1RGuMrB94iyTOIEwRmVL2x/4An+6mETpLrKJ5hQkB8W4kFAadeIQ==}
engines: {node: '>=12'}
/dotenv@7.0.0:
@@ -16096,7 +15853,7 @@ packages:
peerDependencies:
react: '>=16.12.0'
dependencies:
- '@babel/runtime': 7.24.4
+ '@babel/runtime': 7.23.7
compute-scroll-into-view: 1.0.20
prop-types: 15.8.1
react: 18.2.0
@@ -16117,7 +15874,7 @@ packages:
end-of-stream: 1.4.4
inherits: 2.0.4
readable-stream: 2.3.8
- stream-shift: 1.0.3
+ stream-shift: 1.0.1
dev: true
/eastasianwidth@0.2.0:
@@ -16140,8 +15897,8 @@ packages:
jake: 10.8.7
dev: true
- /electron-to-chromium@1.4.731:
- resolution: {integrity: sha512-+TqVfZjpRz2V/5SPpmJxq9qK620SC5SqCnxQIOi7i/U08ZDcTpKbT7Xjj9FU5CbXTMUb4fywbIr8C7cGv4hcjw==}
+ /electron-to-chromium@1.4.620:
+ resolution: {integrity: sha512-a2fcSHOHrqBJsPNXtf6ZCEZpXrFCcbK1FBxfX3txoqWzNgtEDG1f3M59M98iwxhRW4iMKESnSjbJ310/rkrp0g==}
/emittery@0.13.1:
resolution: {integrity: sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ==}
@@ -16175,11 +15932,13 @@ packages:
/encoding@0.1.13:
resolution: {integrity: sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A==}
+ requiresBuild: true
dependencies:
iconv-lite: 0.6.3
/end-of-stream@1.4.4:
resolution: {integrity: sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==}
+ requiresBuild: true
dependencies:
once: 1.4.0
@@ -16188,7 +15947,7 @@ packages:
dependencies:
'@socket.io/component-emitter': 3.1.0
debug: 4.3.4
- engine.io-parser: 5.2.2
+ engine.io-parser: 5.2.1
ws: 8.11.0
xmlhttprequest-ssl: 2.0.0
transitivePeerDependencies:
@@ -16196,8 +15955,8 @@ packages:
- supports-color
- utf-8-validate
- /engine.io-parser@5.2.2:
- resolution: {integrity: sha512-RcyUFKA93/CXH20l4SoVvzZfrSDMOTUS3bWVpTt2FuFP+XYrL8i8oonHP7WInRyVHXh0n/ORtoeiE1os+8qkSw==}
+ /engine.io-parser@5.2.1:
+ resolution: {integrity: sha512-9JktcM3u18nU9N2Lz3bWeBgxVgOKpw7yhRaoxQA3FUDZzzw+9WlA6p4G4u0RixNkg14fH7EfEc/RhpurtiROTQ==}
engines: {node: '>=10.0.0'}
/engine.io@6.5.4:
@@ -16206,21 +15965,21 @@ packages:
dependencies:
'@types/cookie': 0.4.1
'@types/cors': 2.8.17
- '@types/node': 18.0.0
+ '@types/node': 18.19.17
accepts: 1.3.8
base64id: 2.0.0
cookie: 0.4.2
cors: 2.8.5
debug: 4.3.4
- engine.io-parser: 5.2.2
+ engine.io-parser: 5.2.1
ws: 8.11.0
transitivePeerDependencies:
- bufferutil
- supports-color
- utf-8-validate
- /enhanced-resolve@5.16.0:
- resolution: {integrity: sha512-O+QWCviPNSSLAD9Ucn8Awv+poAkqn3T1XY5/N7kR7rQO9yfSGWkYZDwpJ+iKF7B8rxaQKWngSqACpgzeapSyoA==}
+ /enhanced-resolve@5.15.0:
+ resolution: {integrity: sha512-LXYT42KJ7lpIKECr2mAXIaMldcNCh/7E0KBKOu4KSfkHmP+mZmSs+8V5gBAqisWBy0OO4W5Oyys0GO1Y8KtdKg==}
engines: {node: '>=10.13.0'}
dependencies:
graceful-fs: 4.2.11
@@ -16256,8 +16015,8 @@ packages:
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
dev: false
- /envinfo@7.12.0:
- resolution: {integrity: sha512-Iw9rQJBGpJRd3rwXm9ft/JiGoAZmLxxJZELYDQoPRZ4USVhkKtIcNBPw6U+/K2mBpaqM25JSV6Yl4Az9vO2wJg==}
+ /envinfo@7.11.0:
+ resolution: {integrity: sha512-G9/6xF1FPbIw0TtalAMaVPpiq2aDEuKLXM314jPVAO9r2fo2a4BLqMNkmRS7O/xPPZ+COAhGIz3ETvHEV3eUcg==}
engines: {node: '>=4'}
hasBin: true
@@ -16290,146 +16049,123 @@ packages:
dependencies:
stackframe: 1.3.4
- /es-abstract@1.23.3:
- resolution: {integrity: sha512-e+HfNH61Bj1X9/jLc5v1owaLYuHdeHHSQlkhCBiTK8rBvKaULl/beGMxwrMXjpYrv4pz22BlY570vVePA2ho4A==}
+ /es-abstract@1.22.3:
+ resolution: {integrity: sha512-eiiY8HQeYfYH2Con2berK+To6GrK2RxbPawDkGq4UiCQQfZHb6wX9qQqkbpPqaxQFcl8d9QzZqo0tGE0VcrdwA==}
engines: {node: '>= 0.4'}
+ requiresBuild: true
dependencies:
- array-buffer-byte-length: 1.0.1
- arraybuffer.prototype.slice: 1.0.3
- available-typed-arrays: 1.0.7
- call-bind: 1.0.7
- data-view-buffer: 1.0.1
- data-view-byte-length: 1.0.1
- data-view-byte-offset: 1.0.0
- es-define-property: 1.0.0
- es-errors: 1.3.0
- es-object-atoms: 1.0.0
- es-set-tostringtag: 2.0.3
+ array-buffer-byte-length: 1.0.0
+ arraybuffer.prototype.slice: 1.0.2
+ available-typed-arrays: 1.0.5
+ call-bind: 1.0.5
+ es-set-tostringtag: 2.0.2
es-to-primitive: 1.2.1
function.prototype.name: 1.1.6
- get-intrinsic: 1.2.4
- get-symbol-description: 1.0.2
+ get-intrinsic: 1.2.2
+ get-symbol-description: 1.0.0
globalthis: 1.0.3
gopd: 1.0.1
- has-property-descriptors: 1.0.2
- has-proto: 1.0.3
+ has-property-descriptors: 1.0.1
+ has-proto: 1.0.1
has-symbols: 1.0.3
- hasown: 2.0.2
- internal-slot: 1.0.7
- is-array-buffer: 3.0.4
+ hasown: 2.0.0
+ internal-slot: 1.0.6
+ is-array-buffer: 3.0.2
is-callable: 1.2.7
- is-data-view: 1.0.1
- is-negative-zero: 2.0.3
+ is-negative-zero: 2.0.2
is-regex: 1.1.4
- is-shared-array-buffer: 1.0.3
+ is-shared-array-buffer: 1.0.2
is-string: 1.0.7
- is-typed-array: 1.1.13
+ is-typed-array: 1.1.12
is-weakref: 1.0.2
object-inspect: 1.13.1
object-keys: 1.1.1
object.assign: 4.1.5
- regexp.prototype.flags: 1.5.2
- safe-array-concat: 1.1.2
- safe-regex-test: 1.0.3
- string.prototype.trim: 1.2.9
- string.prototype.trimend: 1.0.8
- string.prototype.trimstart: 1.0.8
- typed-array-buffer: 1.0.2
- typed-array-byte-length: 1.0.1
- typed-array-byte-offset: 1.0.2
- typed-array-length: 1.0.6
+ regexp.prototype.flags: 1.5.1
+ safe-array-concat: 1.0.1
+ safe-regex-test: 1.0.0
+ string.prototype.trim: 1.2.8
+ string.prototype.trimend: 1.0.7
+ string.prototype.trimstart: 1.0.7
+ typed-array-buffer: 1.0.0
+ typed-array-byte-length: 1.0.0
+ typed-array-byte-offset: 1.0.0
+ typed-array-length: 1.0.4
unbox-primitive: 1.0.2
- which-typed-array: 1.1.15
+ which-typed-array: 1.1.13
/es-array-method-boxes-properly@1.0.0:
resolution: {integrity: sha512-wd6JXUmyHmt8T5a2xreUwKcGPq6f1f+WwIJkijUqiGcJz1qqnZgP6XIK+QyIWU5lT7imeNxUll48bziG+TSYcA==}
dev: false
- /es-define-property@1.0.0:
- resolution: {integrity: sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==}
- engines: {node: '>= 0.4'}
- dependencies:
- get-intrinsic: 1.2.4
-
- /es-errors@1.3.0:
- resolution: {integrity: sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==}
- engines: {node: '>= 0.4'}
-
/es-get-iterator@1.1.3:
resolution: {integrity: sha512-sPZmqHBe6JIiTfN5q2pEi//TwxmAFHwj/XEuYjTuse78i8KxaqMTTzxPoFKuzRpDpTJ+0NAbpfenkmH2rePtuw==}
dependencies:
- call-bind: 1.0.7
- get-intrinsic: 1.2.4
+ call-bind: 1.0.5
+ get-intrinsic: 1.2.2
has-symbols: 1.0.3
is-arguments: 1.1.1
- is-map: 2.0.3
- is-set: 2.0.3
+ is-map: 2.0.2
+ is-set: 2.0.2
is-string: 1.0.7
isarray: 2.0.5
stop-iteration-iterator: 1.0.0
dev: true
- /es-iterator-helpers@1.0.18:
- resolution: {integrity: sha512-scxAJaewsahbqTYrGKJihhViaM6DDZDDoucfvzNbK0pOren1g/daDQ3IAhzn+1G14rBG7w+i5N+qul60++zlKA==}
- engines: {node: '>= 0.4'}
+ /es-iterator-helpers@1.0.15:
+ resolution: {integrity: sha512-GhoY8uYqd6iwUl2kgjTm4CZAf6oo5mHK7BPqx3rKgx893YSsy0LGHV6gfqqQvZt/8xM8xeOnfXBCfqclMKkJ5g==}
dependencies:
- call-bind: 1.0.7
+ asynciterator.prototype: 1.0.0
+ call-bind: 1.0.5
define-properties: 1.2.1
- es-abstract: 1.23.3
- es-errors: 1.3.0
- es-set-tostringtag: 2.0.3
+ es-abstract: 1.22.3
+ es-set-tostringtag: 2.0.2
function-bind: 1.1.2
- get-intrinsic: 1.2.4
+ get-intrinsic: 1.2.2
globalthis: 1.0.3
- has-property-descriptors: 1.0.2
- has-proto: 1.0.3
+ has-property-descriptors: 1.0.1
+ has-proto: 1.0.1
has-symbols: 1.0.3
- internal-slot: 1.0.7
+ internal-slot: 1.0.6
iterator.prototype: 1.1.2
- safe-array-concat: 1.1.2
+ safe-array-concat: 1.0.1
/es-module-lexer@0.9.3:
resolution: {integrity: sha512-1HQ2M2sPtxwnvOvT1ZClHyQDiggdNjURWpY2we6aMKCQiUVxTmVs2UYPLIrD84sS+kMdUwfBSylbJPwNnBrnHQ==}
dev: true
- /es-module-lexer@1.5.0:
- resolution: {integrity: sha512-pqrTKmwEIgafsYZAGw9kszYzmagcE/n4dbgwGWLEXg7J4QFJVQRBld8j3Q3GNez79jzxZshq0bcT962QHOghjw==}
+ /es-module-lexer@1.4.1:
+ resolution: {integrity: sha512-cXLGjP0c4T3flZJKQSuziYoq7MlT+rnvfZjfp7h+I7K9BNX54kP9nyWvdbwjQ4u1iWbOL4u96fgeZLToQlZC7w==}
- /es-object-atoms@1.0.0:
- resolution: {integrity: sha512-MZ4iQ6JwHOBQjahnjwaC1ZtIBH+2ohjamzAO3oaHcXYup7qxjF2fixyH+Q71voWHeOkI2q/TnJao/KfXYIZWbw==}
+ /es-set-tostringtag@2.0.2:
+ resolution: {integrity: sha512-BuDyupZt65P9D2D2vA/zqcI3G5xRsklm5N3xCwuiy+/vKy8i0ifdsQP1sLgO4tZDSCaQUSnmC48khknGMV3D2Q==}
engines: {node: '>= 0.4'}
dependencies:
- es-errors: 1.3.0
-
- /es-set-tostringtag@2.0.3:
- resolution: {integrity: sha512-3T8uNMC3OQTHkFUsFq8r/BwAXLHvU/9O9mE0fBc/MY5iq/8H7ncvO947LmYA6ldWw9Uh8Yhf25zu6n7nML5QWQ==}
- engines: {node: '>= 0.4'}
- dependencies:
- get-intrinsic: 1.2.4
- has-tostringtag: 1.0.2
- hasown: 2.0.2
+ get-intrinsic: 1.2.2
+ has-tostringtag: 1.0.0
+ hasown: 2.0.0
/es-shim-unscopables@1.0.2:
resolution: {integrity: sha512-J3yBRXCzDu4ULnQwxyToo/OjdMx6akgVC7K6few0a7F/0wLtmKKN7I73AH5T2836UuXRqN7Qg+IIUw/+YJksRw==}
dependencies:
- hasown: 2.0.2
+ hasown: 2.0.0
/es-to-primitive@1.2.1:
resolution: {integrity: sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==}
engines: {node: '>= 0.4'}
+ requiresBuild: true
dependencies:
is-callable: 1.2.7
is-date-object: 1.0.5
is-symbol: 1.0.4
- /es5-ext@0.10.64:
- resolution: {integrity: sha512-p2snDhiLaXe6dahss1LddxqEm+SkuDvV8dnIQG0MWjyHpcMNfXKPE+/Cc0y+PhxJX3A4xGNeFCj5oc0BUh6deg==}
+ /es5-ext@0.10.62:
+ resolution: {integrity: sha512-BHLqn0klhEpnOKSrzn/Xsz2UIW8j+cGmo9JLzr8BiUapV8hPL9+FliFqjwr9ngW7jWdnxv6eO+/LqyhJVqgrjA==}
engines: {node: '>=0.10'}
requiresBuild: true
dependencies:
es6-iterator: 2.0.3
- es6-symbol: 3.1.4
- esniff: 2.0.1
+ es6-symbol: 3.1.3
next-tick: 1.1.0
/es6-error@4.1.1:
@@ -16439,9 +16175,9 @@ packages:
/es6-iterator@2.0.3:
resolution: {integrity: sha512-zw4SRzoUkd+cl+ZoE15A9o1oQd920Bb0iOJMQkQhl3jNc03YqVjAhG7scf9C5KWRU/R13Orf588uCC6525o02g==}
dependencies:
- d: 1.0.2
- es5-ext: 0.10.64
- es6-symbol: 3.1.4
+ d: 1.0.1
+ es5-ext: 0.10.62
+ es6-symbol: 3.1.3
/es6-promise@4.2.8:
resolution: {integrity: sha512-HJDGx5daxeIvxdBxvG2cb9g4tEvwIk3i8+nhX0yGrYmZUzbkdg8QbDevheDB8gd0//uPj4c1EQua8Q+MViT0/w==}
@@ -16450,20 +16186,19 @@ packages:
resolution: {integrity: sha512-HBL8I3mIki5C1Cc9QjKUenHtnG0A5/xA8Q/AllRcfiwl2CZFXGK7ddBiCoRwAix4i2KxcQfjtIVcrVbB3vbmwg==}
dev: false
- /es6-symbol@3.1.4:
- resolution: {integrity: sha512-U9bFFjX8tFiATgtkJ1zg25+KviIXpgRvRHS8sau3GfhVzThRQrOeksPeT0BWW2MNZs1OEWJ1DPXOQMn0KKRkvg==}
- engines: {node: '>=0.12'}
+ /es6-symbol@3.1.3:
+ resolution: {integrity: sha512-NJ6Yn3FuDinBaBRWl/q5X/s4koRHBrgKAu+yGI6JCBeiu3qrcbJhwT2GeR/EXVfylRk8dpQVJoLEFhK+Mu31NA==}
dependencies:
- d: 1.0.2
+ d: 1.0.1
ext: 1.7.0
/es6-weak-map@2.0.3:
resolution: {integrity: sha512-p5um32HOTO1kP+w7PRnB+5lQ43Z6muuMuIMffvDN8ZB4GcnjLBV6zGStpbASIMk4DCAvEaamhe2zhyCb/QXXsA==}
dependencies:
- d: 1.0.2
- es5-ext: 0.10.64
+ d: 1.0.1
+ es5-ext: 0.10.62
es6-iterator: 2.0.3
- es6-symbol: 3.1.4
+ es6-symbol: 3.1.3
/esbuild-plugin-alias@0.2.1:
resolution: {integrity: sha512-jyfL/pwPqaFXyKnj8lP8iLk6Z0m099uXR45aSN8Av1XD4vhvQutxxPzgA2bTcAwQpa1zCXDcWOlhFgyP3GKqhQ==}
@@ -16539,37 +16274,6 @@ packages:
'@esbuild/win32-arm64': 0.19.11
'@esbuild/win32-ia32': 0.19.11
'@esbuild/win32-x64': 0.19.11
- dev: false
-
- /esbuild@0.19.12:
- resolution: {integrity: sha512-aARqgq8roFBj054KvQr5f1sFu0D65G+miZRCuJyJ0G13Zwx7vRar5Zhn2tkQNzIXcBrNVsv/8stehpj+GAjgbg==}
- engines: {node: '>=12'}
- hasBin: true
- requiresBuild: true
- optionalDependencies:
- '@esbuild/aix-ppc64': 0.19.12
- '@esbuild/android-arm': 0.19.12
- '@esbuild/android-arm64': 0.19.12
- '@esbuild/android-x64': 0.19.12
- '@esbuild/darwin-arm64': 0.19.12
- '@esbuild/darwin-x64': 0.19.12
- '@esbuild/freebsd-arm64': 0.19.12
- '@esbuild/freebsd-x64': 0.19.12
- '@esbuild/linux-arm': 0.19.12
- '@esbuild/linux-arm64': 0.19.12
- '@esbuild/linux-ia32': 0.19.12
- '@esbuild/linux-loong64': 0.19.12
- '@esbuild/linux-mips64el': 0.19.12
- '@esbuild/linux-ppc64': 0.19.12
- '@esbuild/linux-riscv64': 0.19.12
- '@esbuild/linux-s390x': 0.19.12
- '@esbuild/linux-x64': 0.19.12
- '@esbuild/netbsd-x64': 0.19.12
- '@esbuild/openbsd-x64': 0.19.12
- '@esbuild/sunos-x64': 0.19.12
- '@esbuild/win32-arm64': 0.19.12
- '@esbuild/win32-ia32': 0.19.12
- '@esbuild/win32-x64': 0.19.12
/esbuild@0.20.0:
resolution: {integrity: sha512-6iwE3Y2RVYCME1jLpBqq7LQWK3MW6vjV2bZy6gt/WrqkY+WE74Spyc0ThAOYpMtITvnjX09CrC6ym7A/m9mebA==}
@@ -16602,38 +16306,8 @@ packages:
'@esbuild/win32-x64': 0.20.0
dev: false
- /esbuild@0.20.2:
- resolution: {integrity: sha512-WdOOppmUNU+IbZ0PaDiTst80zjnrOkyJNHoKupIcVyU8Lvla3Ugx94VzkQ32Ijqd7UhHJy75gNWDMUekcrSJ6g==}
- engines: {node: '>=12'}
- hasBin: true
- requiresBuild: true
- optionalDependencies:
- '@esbuild/aix-ppc64': 0.20.2
- '@esbuild/android-arm': 0.20.2
- '@esbuild/android-arm64': 0.20.2
- '@esbuild/android-x64': 0.20.2
- '@esbuild/darwin-arm64': 0.20.2
- '@esbuild/darwin-x64': 0.20.2
- '@esbuild/freebsd-arm64': 0.20.2
- '@esbuild/freebsd-x64': 0.20.2
- '@esbuild/linux-arm': 0.20.2
- '@esbuild/linux-arm64': 0.20.2
- '@esbuild/linux-ia32': 0.20.2
- '@esbuild/linux-loong64': 0.20.2
- '@esbuild/linux-mips64el': 0.20.2
- '@esbuild/linux-ppc64': 0.20.2
- '@esbuild/linux-riscv64': 0.20.2
- '@esbuild/linux-s390x': 0.20.2
- '@esbuild/linux-x64': 0.20.2
- '@esbuild/netbsd-x64': 0.20.2
- '@esbuild/openbsd-x64': 0.20.2
- '@esbuild/sunos-x64': 0.20.2
- '@esbuild/win32-arm64': 0.20.2
- '@esbuild/win32-ia32': 0.20.2
- '@esbuild/win32-x64': 0.20.2
-
- /escalade@3.1.2:
- resolution: {integrity: sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA==}
+ /escalade@3.1.1:
+ resolution: {integrity: sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==}
engines: {node: '>=6'}
/escape-goat@4.0.0:
@@ -16655,6 +16329,7 @@ packages:
/escape-string-regexp@4.0.0:
resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==}
engines: {node: '>=10'}
+ requiresBuild: true
/escape-string-regexp@5.0.0:
resolution: {integrity: sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==}
@@ -16682,16 +16357,16 @@ packages:
dev: false
optional: true
- /eslint-config-prettier@9.1.0(eslint@7.0.0):
+ /eslint-config-prettier@9.1.0(eslint@7.32.0):
resolution: {integrity: sha512-NSWl5BFQWEPi1j4TjVNItzYV7dZXZ+wP6I6ZhrBGpChQhZRUaElihE9uRRkcbRnNb76UMKDF3r+WTmNcGPKsqw==}
hasBin: true
peerDependencies:
eslint: '>=7.0.0'
dependencies:
- eslint: 7.0.0
+ eslint: 7.32.0
dev: true
- /eslint-config-react-app@6.0.0(@typescript-eslint/eslint-plugin@5.62.0)(@typescript-eslint/parser@5.62.0)(babel-eslint@10.1.0)(eslint-plugin-flowtype@5.10.0)(eslint-plugin-import@2.29.1)(eslint-plugin-jsx-a11y@6.8.0)(eslint-plugin-react-hooks@4.6.0)(eslint-plugin-react@7.34.1)(eslint@7.32.0)(typescript@4.9.5):
+ /eslint-config-react-app@6.0.0(@typescript-eslint/eslint-plugin@5.62.0)(@typescript-eslint/parser@5.62.0)(babel-eslint@10.1.0)(eslint-plugin-flowtype@5.10.0)(eslint-plugin-import@2.29.1)(eslint-plugin-jsx-a11y@6.8.0)(eslint-plugin-react-hooks@4.6.0)(eslint-plugin-react@7.33.2)(eslint@7.32.0)(typescript@4.9.5):
resolution: {integrity: sha512-bpoAAC+YRfzq0dsTk+6v9aHm/uqnDwayNAXleMypGl6CpxI9oXXscVHo4fk3eJPIn+rsbtNetB4r/ZIidFIE8A==}
engines: {node: ^10.12.0 || >=12.0.0}
peerDependencies:
@@ -16723,11 +16398,12 @@ packages:
eslint-plugin-flowtype: 5.10.0(eslint@7.32.0)
eslint-plugin-import: 2.29.1(@typescript-eslint/parser@5.62.0)(eslint@7.32.0)
eslint-plugin-jsx-a11y: 6.8.0(eslint@7.32.0)
- eslint-plugin-react: 7.34.1(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)
typescript: 4.9.5
+ dev: false
- /eslint-config-react-app@6.0.0(@typescript-eslint/eslint-plugin@5.62.0)(@typescript-eslint/parser@5.62.0)(babel-eslint@10.1.0)(eslint-plugin-flowtype@5.10.0)(eslint-plugin-import@2.29.1)(eslint-plugin-jsx-a11y@6.8.0)(eslint-plugin-react-hooks@4.6.0)(eslint-plugin-react@7.34.1)(eslint@7.32.0)(typescript@5.3.3):
+ /eslint-config-react-app@6.0.0(@typescript-eslint/eslint-plugin@5.62.0)(@typescript-eslint/parser@5.62.0)(babel-eslint@10.1.0)(eslint-plugin-flowtype@5.10.0)(eslint-plugin-import@2.29.1)(eslint-plugin-jsx-a11y@6.8.0)(eslint-plugin-react-hooks@4.6.0)(eslint-plugin-react@7.33.2)(eslint@7.32.0)(typescript@5.3.3):
resolution: {integrity: sha512-bpoAAC+YRfzq0dsTk+6v9aHm/uqnDwayNAXleMypGl6CpxI9oXXscVHo4fk3eJPIn+rsbtNetB4r/ZIidFIE8A==}
engines: {node: ^10.12.0 || >=12.0.0}
peerDependencies:
@@ -16757,11 +16433,48 @@ 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.29.1(@typescript-eslint/parser@6.17.0)(eslint@7.32.0)
+ eslint-plugin-import: 2.29.1(@typescript-eslint/parser@5.62.0)(eslint@7.32.0)
eslint-plugin-jsx-a11y: 6.8.0(eslint@7.32.0)
- eslint-plugin-react: 7.34.1(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)
typescript: 5.3.3
+ dev: true
+
+ /eslint-config-react-app@6.0.0(@typescript-eslint/eslint-plugin@5.62.0)(@typescript-eslint/parser@5.62.0)(babel-eslint@10.1.0)(eslint-plugin-flowtype@5.10.0)(eslint-plugin-import@2.29.1)(eslint-plugin-jsx-a11y@6.8.0)(eslint-plugin-react-hooks@4.6.0)(eslint-plugin-react@7.33.2)(eslint@7.32.0)(typescript@5.4.2):
+ resolution: {integrity: sha512-bpoAAC+YRfzq0dsTk+6v9aHm/uqnDwayNAXleMypGl6CpxI9oXXscVHo4fk3eJPIn+rsbtNetB4r/ZIidFIE8A==}
+ engines: {node: ^10.12.0 || >=12.0.0}
+ peerDependencies:
+ '@typescript-eslint/eslint-plugin': ^4.0.0
+ '@typescript-eslint/parser': ^4.0.0
+ babel-eslint: ^10.0.0
+ eslint: ^7.5.0
+ eslint-plugin-flowtype: ^5.2.0
+ eslint-plugin-import: ^2.22.0
+ eslint-plugin-jest: ^24.0.0
+ eslint-plugin-jsx-a11y: ^6.3.1
+ eslint-plugin-react: ^7.20.3
+ eslint-plugin-react-hooks: ^4.0.8
+ eslint-plugin-testing-library: ^3.9.0
+ typescript: '*'
+ peerDependenciesMeta:
+ eslint-plugin-jest:
+ optional: true
+ eslint-plugin-testing-library:
+ optional: true
+ typescript:
+ optional: true
+ dependencies:
+ '@typescript-eslint/eslint-plugin': 5.62.0(@typescript-eslint/parser@5.62.0)(eslint@7.32.0)(typescript@5.4.2)
+ '@typescript-eslint/parser': 5.62.0(eslint@7.32.0)(typescript@5.4.2)
+ babel-eslint: 10.1.0(eslint@7.32.0)
+ confusing-browser-globals: 1.0.11
+ eslint: 7.32.0
+ eslint-plugin-flowtype: 5.10.0(eslint@7.32.0)
+ eslint-plugin-import: 2.29.1(@typescript-eslint/parser@5.62.0)(eslint@7.32.0)
+ eslint-plugin-jsx-a11y: 6.8.0(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)
+ typescript: 5.4.2
/eslint-import-resolver-node@0.3.9:
resolution: {integrity: sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==}
@@ -16772,8 +16485,8 @@ packages:
transitivePeerDependencies:
- supports-color
- /eslint-module-utils@2.8.1(@typescript-eslint/parser@6.17.0)(eslint-import-resolver-node@0.3.9)(eslint@7.0.0):
- resolution: {integrity: sha512-rXDXR3h7cs7dy9RNpUlQf80nX31XWJEyGq1tRMo+6GsO5VmTe4UTwtmonAD4ZkAsrfMVDA2wlGJ3790Ys+D49Q==}
+ /eslint-module-utils@2.8.0(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-node@0.3.9)(eslint@7.32.0):
+ resolution: {integrity: sha512-aWajIYfsqCKRDgUfjEXNN/JlrzauMuSEy5sbd7WXbtW3EH6A6MpwEh42c7qD+MqQo9QMJ6fWLAeIJynx0g6OAw==}
engines: {node: '>=4'}
peerDependencies:
'@typescript-eslint/parser': '*'
@@ -16793,16 +16506,15 @@ packages:
eslint-import-resolver-webpack:
optional: true
dependencies:
- '@typescript-eslint/parser': 6.17.0(eslint@7.0.0)(typescript@5.3.3)
+ '@typescript-eslint/parser': 5.62.0(eslint@7.32.0)(typescript@5.4.2)
debug: 3.2.7
- eslint: 7.0.0
+ eslint: 7.32.0
eslint-import-resolver-node: 0.3.9
transitivePeerDependencies:
- supports-color
- dev: true
- /eslint-module-utils@2.8.1(@typescript-eslint/parser@6.17.0)(eslint-import-resolver-node@0.3.9)(eslint@7.32.0):
- resolution: {integrity: sha512-rXDXR3h7cs7dy9RNpUlQf80nX31XWJEyGq1tRMo+6GsO5VmTe4UTwtmonAD4ZkAsrfMVDA2wlGJ3790Ys+D49Q==}
+ /eslint-module-utils@2.8.0(@typescript-eslint/parser@6.17.0)(eslint-import-resolver-node@0.3.9)(eslint@7.32.0):
+ resolution: {integrity: sha512-aWajIYfsqCKRDgUfjEXNN/JlrzauMuSEy5sbd7WXbtW3EH6A6MpwEh42c7qD+MqQo9QMJ6fWLAeIJynx0g6OAw==}
engines: {node: '>=4'}
peerDependencies:
'@typescript-eslint/parser': '*'
@@ -16828,6 +16540,7 @@ packages:
eslint-import-resolver-node: 0.3.9
transitivePeerDependencies:
- supports-color
+ dev: true
/eslint-plugin-flowtype@5.10.0(eslint@7.32.0):
resolution: {integrity: sha512-vcz32f+7TP+kvTUyMXZmCnNujBQZDNmcqPImw8b9PZ+16w1Qdm6ryRuYZYVaG9xRqqmAPr2Cs9FAX5gN+x/bjw==}
@@ -16846,56 +16559,22 @@ packages:
dependencies:
'@formatjs/icu-messageformat-parser': 2.7.3
'@formatjs/ts-transformer': 3.13.9
- '@types/eslint': 8.56.7
- '@types/picomatch': 2.3.3
- '@typescript-eslint/utils': 6.21.0(eslint@7.32.0)(typescript@5.3.3)
- emoji-regex: 10.3.0
- eslint: 7.32.0
- magic-string: 0.30.9
- picomatch: 2.3.1
- tslib: 2.6.2
- typescript: 5.3.3
- unicode-emoji-utils: 1.2.0
- transitivePeerDependencies:
- - supports-color
- - ts-jest
- dev: true
-
- /eslint-plugin-import@2.29.1(@typescript-eslint/parser@5.62.0)(eslint@7.32.0):
- resolution: {integrity: sha512-BbPC0cuExzhiMo4Ff1BTVwHpjjv28C5R+btTOGaCRC7UEz801up0JadwkeSk5Ued6TG34uaczuVuH6qyy5YUxw==}
- 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': 5.62.0(eslint@7.32.0)(typescript@5.3.3)
- array-includes: 3.1.8
- array.prototype.findlastindex: 1.2.5
- array.prototype.flat: 1.3.2
- array.prototype.flatmap: 1.3.2
- debug: 3.2.7
- doctrine: 2.1.0
- eslint: 7.32.0
- eslint-import-resolver-node: 0.3.9
- eslint-module-utils: 2.8.1(@typescript-eslint/parser@6.17.0)(eslint-import-resolver-node@0.3.9)(eslint@7.32.0)
- hasown: 2.0.2
- is-core-module: 2.13.1
- is-glob: 4.0.3
- minimatch: 3.1.2
- object.fromentries: 2.0.8
- object.groupby: 1.0.3
- object.values: 1.2.0
- semver: 6.3.1
- tsconfig-paths: 3.15.0
+ '@types/eslint': 8.56.1
+ '@types/picomatch': 2.3.3
+ '@typescript-eslint/utils': 6.17.0(eslint@7.32.0)(typescript@5.4.2)
+ emoji-regex: 10.3.0
+ eslint: 7.32.0
+ magic-string: 0.30.5
+ picomatch: 2.3.1
+ tslib: 2.6.2
+ typescript: 5.4.2
+ unicode-emoji-utils: 1.2.0
transitivePeerDependencies:
- - eslint-import-resolver-typescript
- - eslint-import-resolver-webpack
- supports-color
+ - ts-jest
+ dev: true
- /eslint-plugin-import@2.29.1(@typescript-eslint/parser@6.17.0)(eslint@7.0.0):
+ /eslint-plugin-import@2.29.1(@typescript-eslint/parser@5.62.0)(eslint@7.32.0):
resolution: {integrity: sha512-BbPC0cuExzhiMo4Ff1BTVwHpjjv28C5R+btTOGaCRC7UEz801up0JadwkeSk5Ued6TG34uaczuVuH6qyy5YUxw==}
engines: {node: '>=4'}
peerDependencies:
@@ -16905,30 +16584,29 @@ packages:
'@typescript-eslint/parser':
optional: true
dependencies:
- '@typescript-eslint/parser': 6.17.0(eslint@7.0.0)(typescript@5.3.3)
- array-includes: 3.1.8
- array.prototype.findlastindex: 1.2.5
+ '@typescript-eslint/parser': 5.62.0(eslint@7.32.0)(typescript@5.4.2)
+ array-includes: 3.1.7
+ array.prototype.findlastindex: 1.2.3
array.prototype.flat: 1.3.2
array.prototype.flatmap: 1.3.2
debug: 3.2.7
doctrine: 2.1.0
- eslint: 7.0.0
+ eslint: 7.32.0
eslint-import-resolver-node: 0.3.9
- eslint-module-utils: 2.8.1(@typescript-eslint/parser@6.17.0)(eslint-import-resolver-node@0.3.9)(eslint@7.0.0)
- hasown: 2.0.2
+ eslint-module-utils: 2.8.0(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-node@0.3.9)(eslint@7.32.0)
+ hasown: 2.0.0
is-core-module: 2.13.1
is-glob: 4.0.3
minimatch: 3.1.2
- object.fromentries: 2.0.8
- object.groupby: 1.0.3
- object.values: 1.2.0
+ object.fromentries: 2.0.7
+ object.groupby: 1.0.1
+ object.values: 1.1.7
semver: 6.3.1
tsconfig-paths: 3.15.0
transitivePeerDependencies:
- eslint-import-resolver-typescript
- eslint-import-resolver-webpack
- supports-color
- dev: true
/eslint-plugin-import@2.29.1(@typescript-eslint/parser@6.17.0)(eslint@7.32.0):
resolution: {integrity: sha512-BbPC0cuExzhiMo4Ff1BTVwHpjjv28C5R+btTOGaCRC7UEz801up0JadwkeSk5Ued6TG34uaczuVuH6qyy5YUxw==}
@@ -16941,28 +16619,29 @@ packages:
optional: true
dependencies:
'@typescript-eslint/parser': 6.17.0(eslint@7.32.0)(typescript@5.3.3)
- array-includes: 3.1.8
- array.prototype.findlastindex: 1.2.5
+ array-includes: 3.1.7
+ array.prototype.findlastindex: 1.2.3
array.prototype.flat: 1.3.2
array.prototype.flatmap: 1.3.2
debug: 3.2.7
doctrine: 2.1.0
eslint: 7.32.0
eslint-import-resolver-node: 0.3.9
- eslint-module-utils: 2.8.1(@typescript-eslint/parser@6.17.0)(eslint-import-resolver-node@0.3.9)(eslint@7.32.0)
- hasown: 2.0.2
+ eslint-module-utils: 2.8.0(@typescript-eslint/parser@6.17.0)(eslint-import-resolver-node@0.3.9)(eslint@7.32.0)
+ hasown: 2.0.0
is-core-module: 2.13.1
is-glob: 4.0.3
minimatch: 3.1.2
- object.fromentries: 2.0.8
- object.groupby: 1.0.3
- object.values: 1.2.0
+ object.fromentries: 2.0.7
+ object.groupby: 1.0.1
+ object.values: 1.1.7
semver: 6.3.1
tsconfig-paths: 3.15.0
transitivePeerDependencies:
- eslint-import-resolver-typescript
- eslint-import-resolver-webpack
- supports-color
+ dev: true
/eslint-plugin-jsx-a11y@6.8.0(eslint@7.32.0):
resolution: {integrity: sha512-Hdh937BS3KdwwbBaKd5+PLCOmYY6U4f2h9Z2ktwtNKvIdIEu137rjYbcb9ApSbVJfWxANNuiKTD/9tOKjK9qOA==}
@@ -16970,36 +16649,28 @@ packages:
peerDependencies:
eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8
dependencies:
- '@babel/runtime': 7.24.4
+ '@babel/runtime': 7.23.7
aria-query: 5.3.0
- array-includes: 3.1.8
+ array-includes: 3.1.7
array.prototype.flatmap: 1.3.2
ast-types-flow: 0.0.8
axe-core: 4.7.0
axobject-query: 3.2.1
damerau-levenshtein: 1.0.8
emoji-regex: 9.2.2
- es-iterator-helpers: 1.0.18
+ es-iterator-helpers: 1.0.15
eslint: 7.32.0
- hasown: 2.0.2
+ hasown: 2.0.0
jsx-ast-utils: 3.3.5
language-tags: 1.0.9
minimatch: 3.1.2
- object.entries: 1.1.8
- object.fromentries: 2.0.8
+ object.entries: 1.1.7
+ object.fromentries: 2.0.7
/eslint-plugin-no-only-tests@3.1.0:
resolution: {integrity: sha512-Lf4YW/bL6Un1R6A76pRZyE1dl1vr31G/ev8UzIc/geCgFWyrKil8hVjYqWVKGB/UIGmb6Slzs9T0wNezdSVegw==}
engines: {node: '>=5.0.0'}
-
- /eslint-plugin-promise@6.1.1(eslint@7.0.0):
- resolution: {integrity: sha512-tjqWDwVZQo7UIPMeDReOpUgHCmCiH+ePnVT+5zVapL0uuHnegBUs2smM13CzOs2Xb5+MHMRFTs9v24yjba4Oig==}
- engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
- peerDependencies:
- eslint: ^7.0.0 || ^8.0.0
- dependencies:
- eslint: 7.0.0
- dev: true
+ requiresBuild: true
/eslint-plugin-promise@6.1.1(eslint@7.32.0):
resolution: {integrity: sha512-tjqWDwVZQo7UIPMeDReOpUgHCmCiH+ePnVT+5zVapL0uuHnegBUs2smM13CzOs2Xb5+MHMRFTs9v24yjba4Oig==}
@@ -17008,17 +16679,6 @@ packages:
eslint: ^7.0.0 || ^8.0.0
dependencies:
eslint: 7.32.0
- dev: false
- optional: true
-
- /eslint-plugin-react-hooks@4.6.0(eslint@7.0.0):
- resolution: {integrity: sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g==}
- engines: {node: '>=10'}
- peerDependencies:
- eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0
- dependencies:
- eslint: 7.0.0
- dev: true
/eslint-plugin-react-hooks@4.6.0(eslint@7.32.0):
resolution: {integrity: sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g==}
@@ -17028,64 +16688,29 @@ packages:
dependencies:
eslint: 7.32.0
- /eslint-plugin-react@7.33.2(eslint@7.0.0):
+ /eslint-plugin-react@7.33.2(eslint@7.32.0):
resolution: {integrity: sha512-73QQMKALArI8/7xGLNI/3LylrEYrlKZSb5C9+q3OtOewTnMQi5cT+aE9E41sLCmli3I9PGGmD1yiZydyo4FEPw==}
engines: {node: '>=4'}
peerDependencies:
eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8
dependencies:
- array-includes: 3.1.8
- array.prototype.flatmap: 1.3.2
- array.prototype.tosorted: 1.1.3
- doctrine: 2.1.0
- es-iterator-helpers: 1.0.18
- eslint: 7.0.0
- estraverse: 5.3.0
- jsx-ast-utils: 3.3.5
- minimatch: 3.1.2
- object.entries: 1.1.8
- object.fromentries: 2.0.8
- object.hasown: 1.1.4
- object.values: 1.2.0
- prop-types: 15.8.1
- resolve: 2.0.0-next.5
- semver: 6.3.1
- string.prototype.matchall: 4.0.11
- dev: true
-
- /eslint-plugin-react@7.34.1(eslint@7.32.0):
- resolution: {integrity: sha512-N97CxlouPT1AHt8Jn0mhhN2RrADlUAsk1/atcT2KyA/l9Q/E6ll7OIGwNumFmWfZ9skV3XXccYS19h80rHtgkw==}
- engines: {node: '>=4'}
- peerDependencies:
- eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8
- dependencies:
- array-includes: 3.1.8
- array.prototype.findlast: 1.2.5
+ array-includes: 3.1.7
array.prototype.flatmap: 1.3.2
- array.prototype.toreversed: 1.1.2
- array.prototype.tosorted: 1.1.3
+ array.prototype.tosorted: 1.1.2
doctrine: 2.1.0
- es-iterator-helpers: 1.0.18
+ es-iterator-helpers: 1.0.15
eslint: 7.32.0
estraverse: 5.3.0
jsx-ast-utils: 3.3.5
minimatch: 3.1.2
- object.entries: 1.1.8
- object.fromentries: 2.0.8
- object.hasown: 1.1.4
- object.values: 1.2.0
+ object.entries: 1.1.7
+ object.fromentries: 2.0.7
+ object.hasown: 1.1.3
+ object.values: 1.1.7
prop-types: 15.8.1
resolve: 2.0.0-next.5
semver: 6.3.1
- string.prototype.matchall: 4.0.11
-
- /eslint-plugin-simple-import-sort@10.0.0(eslint@7.0.0):
- resolution: {integrity: sha512-AeTvO9UCMSNzIHRkg8S6c3RPy5YEwKWSQPx3DYghLedo2ZQxowPFLGDN1AZ2evfg6r6mjBSZSLxLFsWSu3acsw==}
- peerDependencies:
- eslint: '>=5.0.0'
- dependencies:
- eslint: 7.0.0
- dev: true
+ string.prototype.matchall: 4.0.10
/eslint-plugin-simple-import-sort@10.0.0(eslint@7.32.0):
resolution: {integrity: sha512-AeTvO9UCMSNzIHRkg8S6c3RPy5YEwKWSQPx3DYghLedo2ZQxowPFLGDN1AZ2evfg6r6mjBSZSLxLFsWSu3acsw==}
@@ -17093,8 +16718,6 @@ packages:
eslint: '>=5.0.0'
dependencies:
eslint: 7.32.0
- dev: false
- optional: true
/eslint-plugin-storybook@0.6.15(eslint@7.32.0)(typescript@5.3.3):
resolution: {integrity: sha512-lAGqVAJGob47Griu29KXYowI4G7KwMoJDOkEip8ujikuDLxU+oWJ1l0WL6F2oDO4QiyUFXvtDkEkISMOPzo+7w==}
@@ -17115,30 +16738,18 @@ packages:
/eslint-plugin-tailwindcss@3.13.1(tailwindcss@3.4.0):
resolution: {integrity: sha512-2Nlgr9doO6vFAG9w4iGU0sspWXuzypfng10HTF+dFS2NterhweWtgdRvf/f7aaoOUUxVZM8wMIXzazrZ7CxyeA==}
engines: {node: '>=12.13.0'}
+ requiresBuild: true
peerDependencies:
tailwindcss: ^3.3.2
dependencies:
fast-glob: 3.3.2
postcss: 8.4.32
tailwindcss: 3.4.0
- dev: true
-
- /eslint-plugin-tailwindcss@3.15.1(tailwindcss@3.4.3):
- resolution: {integrity: sha512-4RXRMIaMG07C2TBEW1k0VM4+dDazz1kxcZhkK4zirvmHGZTA4jnlSO2kq5mamuSPi+Wo17dh2SlC8IyFBuCd7Q==}
- engines: {node: '>=12.13.0'}
- requiresBuild: true
- peerDependencies:
- tailwindcss: ^3.4.0
- dependencies:
- fast-glob: 3.3.2
- postcss: 8.4.38
- tailwindcss: 3.4.3
- dev: false
- optional: true
/eslint-scope@5.1.1:
resolution: {integrity: sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==}
engines: {node: '>=8.0.0'}
+ requiresBuild: true
dependencies:
esrecurse: 4.3.0
estraverse: 4.3.0
@@ -17146,22 +16757,26 @@ packages:
/eslint-utils@2.1.0:
resolution: {integrity: sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==}
engines: {node: '>=6'}
+ requiresBuild: true
dependencies:
eslint-visitor-keys: 1.3.0
/eslint-visitor-keys@1.3.0:
resolution: {integrity: sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==}
engines: {node: '>=4'}
+ requiresBuild: true
/eslint-visitor-keys@2.1.0:
resolution: {integrity: sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==}
engines: {node: '>=10'}
+ requiresBuild: true
/eslint-visitor-keys@3.4.3:
resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
+ requiresBuild: true
- /eslint-webpack-plugin@2.7.0(eslint@7.32.0)(webpack@5.91.0):
+ /eslint-webpack-plugin@2.7.0(eslint@7.32.0)(webpack@5.89.0):
resolution: {integrity: sha512-bNaVVUvU4srexGhVcayn/F4pJAz19CWBkKoMx7aSQ4wtTbZQCnG5O9LHCE42mM+JSKOUp7n6vd5CIwzj7lOVGA==}
engines: {node: '>= 10.13.0'}
peerDependencies:
@@ -17175,57 +16790,13 @@ packages:
micromatch: 4.0.5
normalize-path: 3.0.0
schema-utils: 3.3.0
- webpack: 5.91.0(esbuild@0.19.12)
-
- /eslint@7.0.0:
- resolution: {integrity: sha512-qY1cwdOxMONHJfGqw52UOpZDeqXy8xmD0u8CT6jIstil72jkhURC704W8CFyTPDPllz4z4lu0Ql1+07PG/XdIg==}
- engines: {node: ^10.12.0 || >=12.0.0}
- hasBin: true
- dependencies:
- '@babel/code-frame': 7.24.2
- ajv: 6.12.6
- chalk: 4.1.2
- cross-spawn: 7.0.3
- debug: 4.3.4
- doctrine: 3.0.0
- eslint-scope: 5.1.1
- eslint-utils: 2.1.0
- eslint-visitor-keys: 1.3.0
- espree: 7.3.1
- esquery: 1.5.0
- esutils: 2.0.3
- file-entry-cache: 5.0.1
- functional-red-black-tree: 1.0.1
- glob-parent: 5.1.2
- globals: 12.4.0
- ignore: 4.0.6
- import-fresh: 3.3.0
- imurmurhash: 0.1.4
- inquirer: 7.3.3
- is-glob: 4.0.3
- js-yaml: 3.14.1
- json-stable-stringify-without-jsonify: 1.0.1
- levn: 0.4.1
- lodash: 4.17.21
- minimatch: 3.1.2
- natural-compare: 1.4.0
- optionator: 0.9.3
- progress: 2.0.3
- regexpp: 3.2.0
- semver: 7.6.0
- strip-ansi: 6.0.1
- strip-json-comments: 3.1.1
- table: 5.4.6
- text-table: 0.2.0
- v8-compile-cache: 2.4.0
- transitivePeerDependencies:
- - supports-color
- dev: true
+ webpack: 5.89.0
/eslint@7.32.0:
resolution: {integrity: sha512-VHZ8gX+EDfz+97jGcgyGCyRia/dPOd6Xh9yPv8Bl1+SoaIwD+a/vlrOmGRUyOYu7MwUhc7CxqeaDZU13S4+EpA==}
engines: {node: ^10.12.0 || >=12.0.0}
hasBin: true
+ requiresBuild: true
dependencies:
'@babel/code-frame': 7.12.11
'@eslint/eslintrc': 0.4.3
@@ -17261,27 +16832,19 @@ packages:
optionator: 0.9.3
progress: 2.0.3
regexpp: 3.2.0
- semver: 7.6.0
+ semver: 7.5.4
strip-ansi: 6.0.1
strip-json-comments: 3.1.1
- table: 6.8.2
+ table: 6.8.1
text-table: 0.2.0
v8-compile-cache: 2.4.0
transitivePeerDependencies:
- supports-color
- /esniff@2.0.1:
- resolution: {integrity: sha512-kTUIGKQ/mDPFoJ0oVfcmyJn4iBDRptjNVIzwIFR7tqWXdVI9xfA2RMwY/gbSpJG3lkdWNEjLap/NqVHZiJsdfg==}
- engines: {node: '>=0.10'}
- dependencies:
- d: 1.0.2
- es5-ext: 0.10.64
- event-emitter: 0.3.5
- type: 2.7.2
-
/espree@7.3.1:
resolution: {integrity: sha512-v3JCNCE64umkFpmkFGqzVKsOT0tN1Zr+ueqLZfpV1Ob8e+CEgPWa+OxCoGH3tnhimMKIaBm4m/vaRpJ/krRz2g==}
engines: {node: ^10.12.0 || >=12.0.0}
+ requiresBuild: true
dependencies:
acorn: 7.4.1
acorn-jsx: 5.3.2(acorn@7.4.1)
@@ -17300,26 +16863,31 @@ packages:
resolution: {integrity: sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==}
engines: {node: '>=4'}
hasBin: true
+ requiresBuild: true
/esquery@1.5.0:
resolution: {integrity: sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==}
engines: {node: '>=0.10'}
+ requiresBuild: true
dependencies:
estraverse: 5.3.0
/esrecurse@4.3.0:
resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==}
engines: {node: '>=4.0'}
+ requiresBuild: true
dependencies:
estraverse: 5.3.0
/estraverse@4.3.0:
resolution: {integrity: sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==}
engines: {node: '>=4.0'}
+ requiresBuild: true
/estraverse@5.3.0:
resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==}
engines: {node: '>=4.0'}
+ requiresBuild: true
/estree-walker@2.0.2:
resolution: {integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==}
@@ -17333,6 +16901,7 @@ packages:
/esutils@2.0.3:
resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==}
engines: {node: '>=0.10.0'}
+ requiresBuild: true
/etag@1.8.1:
resolution: {integrity: sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==}
@@ -17341,8 +16910,8 @@ packages:
/event-emitter@0.3.5:
resolution: {integrity: sha512-D9rRn9y7kLPnJ+hMq7S/nhvoKwwvVJahBi2BPmx3bvbsEdK3W9ii8cBSGjP+72/LnM4n6fo3+dkCX5FeTQruXA==}
dependencies:
- d: 1.0.2
- es5-ext: 0.10.64
+ d: 1.0.1
+ es5-ext: 0.10.62
/event-source-polyfill@1.0.31:
resolution: {integrity: sha512-4IJSItgS/41IxN5UVAVuAyczwZF7ZIEsM1XAoUzIHA6A+xzusEZUutdXz2Nr+MQPLxfTiCvqE79/C8HT8fKFvA==}
@@ -17409,7 +16978,7 @@ packages:
human-signals: 3.0.1
is-stream: 3.0.0
merge-stream: 2.0.0
- npm-run-path: 5.3.0
+ npm-run-path: 5.2.0
onetime: 6.0.0
signal-exit: 3.0.7
strip-final-newline: 3.0.0
@@ -17424,7 +16993,7 @@ packages:
human-signals: 5.0.0
is-stream: 3.0.0
merge-stream: 2.0.0
- npm-run-path: 5.3.0
+ npm-run-path: 5.2.0
onetime: 6.0.0
signal-exit: 4.1.0
strip-final-newline: 3.0.0
@@ -17459,11 +17028,6 @@ packages:
- supports-color
dev: false
- /expand-template@2.0.3:
- resolution: {integrity: sha512-XYfuKMvj4O35f/pOXLObndIRvyQ+/+6AhODh+OKWj9S9498pHHn/IMszH+gt0fBCRWMNfk1ZSp5x3AifmnI2vg==}
- engines: {node: '>=6'}
- dev: false
-
/expand-tilde@1.2.2:
resolution: {integrity: sha512-rtmc+cjLZqnu9dSYosX9EWmSJhTwpACgJQTfj4hgg2JjOD/6SIQalZrt4a3aQeh++oNxkazcaxrhPUj6+g5G/Q==}
engines: {node: '>=0.10.0'}
@@ -17575,10 +17139,9 @@ packages:
vary: 1.1.2
transitivePeerDependencies:
- supports-color
- dev: false
- /express@4.19.1:
- resolution: {integrity: sha512-K4w1/Bp7y8iSiVObmCrtq8Cs79XjJc/RU2YYkZQ7wpUu5ZyZ7MtPHkqoMz4pf+mgXfNvo2qft8D9OnrH2ABk9w==}
+ /express@4.18.3:
+ resolution: {integrity: sha512-6VyCijWQ+9O7WuVMTRBTl+cjNNIzD5cY5mQ1WM8r/LEkI2u8EYpOotESNwzNlyCn3g+dmjKYI6BmNneSr/FSRw==}
engines: {node: '>= 0.10.0'}
dependencies:
accepts: 1.3.8
@@ -17586,7 +17149,7 @@ packages:
body-parser: 1.20.2
content-disposition: 0.5.4
content-type: 1.0.5
- cookie: 0.6.0
+ cookie: 0.5.0
cookie-signature: 1.0.6
debug: 2.6.9
depd: 2.0.0
@@ -17614,10 +17177,10 @@ packages:
vary: 1.1.2
transitivePeerDependencies:
- supports-color
- dev: false
+ dev: true
- /express@4.19.2:
- resolution: {integrity: sha512-5T6nhjsT+EOMzuck8JjBHARTHfMht0POzlA60WV2pMD3gyXw2LZnZ+ueGdNxG+0calOJcWKbpFcuzLZ91YWq9Q==}
+ /express@4.19.1:
+ resolution: {integrity: sha512-K4w1/Bp7y8iSiVObmCrtq8Cs79XjJc/RU2YYkZQ7wpUu5ZyZ7MtPHkqoMz4pf+mgXfNvo2qft8D9OnrH2ABk9w==}
engines: {node: '>= 0.10.0'}
dependencies:
accepts: 1.3.8
@@ -17653,6 +17216,7 @@ packages:
vary: 1.1.2
transitivePeerDependencies:
- supports-color
+ dev: false
/ext-list@2.2.2:
resolution: {integrity: sha512-u+SQgsubraE6zItfVA0tBuCBhfU9ogSRnsvygI7wht9TS510oLkBRXBsqopeUG/GBOIQyKZO9wjTqIu/sf5zFA==}
@@ -17753,9 +17317,11 @@ packages:
/fast-deep-equal@3.1.3:
resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==}
+ requiresBuild: true
/fast-diff@1.3.0:
resolution: {integrity: sha512-VxPP4NqbUjj6MaAOafWeUn2cXWLcCtljklUtZf0Ind4XQ+QPtmA0b18zZy0jIQx+ExRVCR/ZQpBmik5lXshNsw==}
+ requiresBuild: true
dev: false
/fast-equals@3.0.3:
@@ -17764,6 +17330,7 @@ packages:
/fast-fifo@1.3.2:
resolution: {integrity: sha512-/d9sfos4yxzpwkDkuN7k2SqFKtYNmCTzgfEpz82x34IM9/zc8KGxQoXg1liNC/izpRM/MBdt44Nmx41ZWqk+FQ==}
+ requiresBuild: true
dev: false
/fast-glob@3.3.2:
@@ -17778,21 +17345,23 @@ packages:
/fast-json-stable-stringify@2.1.0:
resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==}
+ requiresBuild: true
- /fast-json-stringify@5.14.1:
- resolution: {integrity: sha512-J1Grbf0oSXV3lKsBf3itz1AvRk43qVrx3Ac10sNvi3LZaz1by4oDdYKFrJycPhS8+Gb7y8rgV/Jqw1UZVjyNvw==}
+ /fast-json-stringify@5.9.2:
+ resolution: {integrity: sha512-SwHnT5PL2BawF0ccL+8b800QovvopUPgV/qzhBY+vw5ZniDH9boewbzBXYox+SetfD2dlxAgeZKSnELzrA+2hg==}
dependencies:
- '@fastify/merge-json-schemas': 0.1.1
+ '@fastify/deepmerge': 1.3.0
ajv: 8.12.0
- ajv-formats: 3.0.1(ajv@8.12.0)
+ ajv-formats: 2.1.1(ajv@8.12.0)
fast-deep-equal: 3.1.3
fast-uri: 2.3.0
json-schema-ref-resolver: 1.0.1
- rfdc: 1.3.1
+ rfdc: 1.3.0
dev: false
/fast-levenshtein@2.0.6:
resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==}
+ requiresBuild: true
/fast-printf@1.6.9:
resolution: {integrity: sha512-FChq8hbz65WMj4rstcQsFB0O7Cy++nmbNfLYnD9cYv2cRn8EG6k/MGn9kO/tjO66t09DLDugj3yL+V2o6Qftrg==}
@@ -17806,8 +17375,8 @@ packages:
dependencies:
fast-decode-uri-component: 1.0.1
- /fast-redact@3.5.0:
- resolution: {integrity: sha512-dwsoQlS7h9hMeYUq1W++23NDcBLV4KqONnITDV9DjfS3q1SgDGVrBdvvTLUotWtPSD7asWDV9/CmsZPy8Hf70A==}
+ /fast-redact@3.3.0:
+ resolution: {integrity: sha512-6T5V1QK1u4oF+ATxs1lWUmlEk6P2T9HqJG3e2DnHOdVgZy2rFJBoEnrIedcTXlkAHU/zKC+7KETJ+KGGKwxgMQ==}
engines: {node: '>=6'}
dev: false
@@ -17844,24 +17413,24 @@ packages:
'@fastify/error': 3.4.1
'@fastify/fast-json-stringify-compiler': 4.3.0
abstract-logging: 2.0.1
- avvio: 8.3.0
+ avvio: 8.2.1
fast-content-type-parse: 1.1.0
- fast-json-stringify: 5.14.1
+ fast-json-stringify: 5.9.2
find-my-way: 7.7.0
- light-my-request: 5.12.0
- pino: 8.20.0
+ light-my-request: 5.11.0
+ pino: 8.17.2
process-warning: 2.3.2
proxy-addr: 2.0.7
- rfdc: 1.3.1
+ rfdc: 1.3.0
secure-json-parse: 2.7.0
- semver: 7.6.0
+ semver: 7.5.4
tiny-lru: 11.2.5
transitivePeerDependencies:
- supports-color
dev: false
- /fastq@1.17.1:
- resolution: {integrity: sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==}
+ /fastq@1.16.0:
+ resolution: {integrity: sha512-ifCoaXsDrsdkWTtiNJX5uzHDsrck5TzfKKDcuFFTIrrc/BS076qgEIfoIy1VeZqViznfKiysPYTh/QeHtnIsYA==}
dependencies:
reusify: 1.0.4
@@ -17908,7 +17477,7 @@ packages:
engines: {node: ^12.20 || >= 14.13}
dependencies:
node-domexception: 1.0.0
- web-streams-polyfill: 3.3.3
+ web-streams-polyfill: 3.2.1
dev: false
/fetch-node-website@7.3.0:
@@ -17925,8 +17494,9 @@ packages:
/fetch-retry@5.0.6:
resolution: {integrity: sha512-3yurQZ2hD9VISAhJJP9bpYFNQrHHBXE2JxxjY5aLEcDi46RmAzJE2OC9FAde0yis5ElW0jTTzs0zfg/Cca4XqQ==}
- /fflate@0.8.2:
- resolution: {integrity: sha512-cPJU47OaAoCbg0pBvzsgpTPhmhqI5eJjh/JIu8tPj5q+T7iLvW/JAYUqmE7KOB4R1ZyEhzBaIQpQpardBF5z8A==}
+ /fflate@0.8.1:
+ resolution: {integrity: sha512-/exOvEuc+/iaUm105QIiOt4LpBdMTWsXxqR0HDF35vx3fmaKzw7354gTilCh5rkzEt8WYyG//ku3h3nRmd7CHQ==}
+ requiresBuild: true
dev: true
/figures@2.0.0:
@@ -17958,20 +17528,14 @@ packages:
is-unicode-supported: 1.3.0
dev: false
- /file-entry-cache@5.0.1:
- resolution: {integrity: sha512-bCg29ictuBaKUwwArK4ouCaqDgLZcysCFLmM/Yn/FDoqndh/9vNuQfXRDvTuXKLxfD/JtZQGKFT8MGcJBK644g==}
- engines: {node: '>=4'}
- dependencies:
- flat-cache: 2.0.1
- dev: true
-
/file-entry-cache@6.0.1:
resolution: {integrity: sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==}
engines: {node: ^10.12.0 || >=12.0.0}
+ requiresBuild: true
dependencies:
flat-cache: 3.2.0
- /file-loader@6.2.0(webpack@5.91.0):
+ /file-loader@6.2.0(webpack@5.89.0):
resolution: {integrity: sha512-qo3glqyTa61Ytg4u73GultjHGjdRyig3tG6lPtyX/jOEJvHif9uB0/OCI2Kif6ctF3caQTW2G5gym21oAsI4pw==}
engines: {node: '>= 10.13.0'}
peerDependencies:
@@ -17979,7 +17543,7 @@ packages:
dependencies:
loader-utils: 2.0.4
schema-utils: 3.3.0
- webpack: 5.91.0(esbuild@0.19.12)
+ webpack: 5.89.0
/file-system-cache@2.3.0:
resolution: {integrity: sha512-l4DMNdsIPsVnKrgEXbJwDJsA5mB8rGwHYERMgqQx/xAUtChPJMre1bXBzDEqqVbWv9AIbFezXMxeEkZDSrXUOQ==}
@@ -18015,6 +17579,7 @@ packages:
/file-uri-to-path@1.0.0:
resolution: {integrity: sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==}
+ requiresBuild: true
dev: false
/filelist@1.0.4:
@@ -18191,20 +17756,11 @@ packages:
dependencies:
semver-regex: 4.0.5
- /flat-cache@2.0.1:
- resolution: {integrity: sha512-LoQe6yDuUMDzQAEH8sgmh4Md6oZnc/7PjtwjNFSzveXqSHt6ka9fPBuso7IGf9Rz4uqnSnWiFH2B/zj24a5ReA==}
- engines: {node: '>=4'}
- dependencies:
- flatted: 2.0.2
- rimraf: 2.6.3
- write: 1.0.3
- dev: true
-
/flat-cache@3.2.0:
resolution: {integrity: sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==}
engines: {node: ^10.12.0 || >=12.0.0}
dependencies:
- flatted: 3.3.1
+ flatted: 3.2.9
keyv: 4.5.4
rimraf: 3.0.2
@@ -18212,15 +17768,11 @@ packages:
resolution: {integrity: sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==}
hasBin: true
- /flatted@2.0.2:
- resolution: {integrity: sha512-r5wGx7YeOwNWNlCA0wQ86zKyDLMQr+/RB8xy74M4hTphfmjlijTSSXGuH8rnvKZnfT9i+75zmd8jcKdMR4O6jA==}
- dev: true
-
- /flatted@3.3.1:
- resolution: {integrity: sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw==}
+ /flatted@3.2.9:
+ resolution: {integrity: sha512-36yxDn5H7OFZQla0/jFJmbIKTdZAQHngCedGxiMmpNfEZM0sdEeT+WczLQrjK6D7o2aiyLYDnkw0R3JK0Qv1RQ==}
- /flow-parser@0.233.0:
- resolution: {integrity: sha512-E/mv51GYJfLuRX6fZnw4M52gBxYa8pkHUOgNEZOcQK2RTXS8YXeU5rlalkTcY99UpwbeNVCSUFKaavpOksi/pQ==}
+ /flow-parser@0.225.1:
+ resolution: {integrity: sha512-50fjR6zbLQcpq5IFNkheUSY/AFPxVeeLiBM5B3NQBSKId2G0cUuExOlDDOguxc49dl9lnh8hI1xcYlPJWNp4KQ==}
engines: {node: '>=0.4.0'}
dev: true
@@ -18243,8 +17795,8 @@ packages:
from2: 2.3.0
dev: false
- /follow-redirects@1.15.6:
- resolution: {integrity: sha512-wWN62YITEaOpSK584EZXJafH1AGpO8RVgElfkuXbTOrPX4fIfOyEpW/CsiNd8JdYrAoOvafRTOEnvsO++qCqFA==}
+ /follow-redirects@1.15.4:
+ resolution: {integrity: sha512-Cr4D/5wlrb0z9dgERpUL3LrmPKVDsETIJhaCMeDfuFYcqa5bldGV6wBsAN6X/vxlXQtFBMrXdXxdL8CbDTGniw==}
engines: {node: '>=4.0'}
peerDependencies:
debug: '*'
@@ -18252,8 +17804,8 @@ packages:
debug:
optional: true
- /follow-redirects@1.15.6(debug@4.3.4):
- resolution: {integrity: sha512-wWN62YITEaOpSK584EZXJafH1AGpO8RVgElfkuXbTOrPX4fIfOyEpW/CsiNd8JdYrAoOvafRTOEnvsO++qCqFA==}
+ /follow-redirects@1.15.4(debug@4.3.4):
+ resolution: {integrity: sha512-Cr4D/5wlrb0z9dgERpUL3LrmPKVDsETIJhaCMeDfuFYcqa5bldGV6wBsAN6X/vxlXQtFBMrXdXxdL8CbDTGniw==}
engines: {node: '>=4.0'}
peerDependencies:
debug: '*'
@@ -18265,6 +17817,7 @@ packages:
/for-each@0.3.3:
resolution: {integrity: sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==}
+ requiresBuild: true
dependencies:
is-callable: 1.2.7
@@ -18288,7 +17841,7 @@ packages:
cross-spawn: 7.0.3
signal-exit: 4.1.0
- /fork-ts-checker-webpack-plugin@6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.91.0):
+ /fork-ts-checker-webpack-plugin@6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.89.0):
resolution: {integrity: sha512-SbH/l9ikmMWycd5puHJKTkZJKddF4iRLyW3DeZ08HTI7NGyLS38MXd/KGgeWumQO7YNQbW2u/NtPT2YowbPaGQ==}
engines: {node: '>=10', yarn: '>=1.0.0'}
peerDependencies:
@@ -18302,10 +17855,10 @@ packages:
vue-template-compiler:
optional: true
dependencies:
- '@babel/code-frame': 7.24.2
+ '@babel/code-frame': 7.23.5
'@types/json-schema': 7.0.15
chalk: 4.1.2
- chokidar: 3.6.0
+ chokidar: 3.5.3
cosmiconfig: 6.0.0
deepmerge: 4.3.1
eslint: 7.32.0
@@ -18314,12 +17867,13 @@ packages:
memfs: 3.5.3
minimatch: 3.1.2
schema-utils: 2.7.0
- semver: 7.6.0
+ semver: 7.5.4
tapable: 1.1.3
typescript: 4.9.5
- webpack: 5.91.0
+ webpack: 5.89.0
+ dev: false
- /fork-ts-checker-webpack-plugin@6.5.3(eslint@7.32.0)(typescript@5.3.3)(webpack@5.91.0):
+ /fork-ts-checker-webpack-plugin@6.5.3(eslint@7.32.0)(typescript@5.3.3)(webpack@5.89.0):
resolution: {integrity: sha512-SbH/l9ikmMWycd5puHJKTkZJKddF4iRLyW3DeZ08HTI7NGyLS38MXd/KGgeWumQO7YNQbW2u/NtPT2YowbPaGQ==}
engines: {node: '>=10', yarn: '>=1.0.0'}
peerDependencies:
@@ -18333,10 +17887,10 @@ packages:
vue-template-compiler:
optional: true
dependencies:
- '@babel/code-frame': 7.24.2
+ '@babel/code-frame': 7.23.5
'@types/json-schema': 7.0.15
chalk: 4.1.2
- chokidar: 3.6.0
+ chokidar: 3.5.3
cosmiconfig: 6.0.0
deepmerge: 4.3.1
eslint: 7.32.0
@@ -18345,10 +17899,42 @@ packages:
memfs: 3.5.3
minimatch: 3.1.2
schema-utils: 2.7.0
- semver: 7.6.0
+ semver: 7.5.4
tapable: 1.1.3
typescript: 5.3.3
- webpack: 5.91.0(esbuild@0.19.12)
+ webpack: 5.89.0(esbuild@0.19.11)
+ dev: true
+
+ /fork-ts-checker-webpack-plugin@6.5.3(eslint@7.32.0)(typescript@5.4.2)(webpack@5.89.0):
+ resolution: {integrity: sha512-SbH/l9ikmMWycd5puHJKTkZJKddF4iRLyW3DeZ08HTI7NGyLS38MXd/KGgeWumQO7YNQbW2u/NtPT2YowbPaGQ==}
+ engines: {node: '>=10', yarn: '>=1.0.0'}
+ peerDependencies:
+ eslint: '>= 6'
+ typescript: '>= 2.7'
+ vue-template-compiler: '*'
+ webpack: '>= 4'
+ peerDependenciesMeta:
+ eslint:
+ optional: true
+ vue-template-compiler:
+ optional: true
+ dependencies:
+ '@babel/code-frame': 7.23.5
+ '@types/json-schema': 7.0.15
+ chalk: 4.1.2
+ chokidar: 3.5.3
+ cosmiconfig: 6.0.0
+ deepmerge: 4.3.1
+ eslint: 7.32.0
+ fs-extra: 9.1.0
+ glob: 7.2.3
+ memfs: 3.5.3
+ minimatch: 3.1.2
+ schema-utils: 2.7.0
+ semver: 7.5.4
+ tapable: 1.1.3
+ typescript: 5.4.2
+ webpack: 5.89.0
/form-data-encoder@2.1.4:
resolution: {integrity: sha512-yDYSgNMraqvnxiEXO4hi88+YZxaHC6QKzb5N84iRCTDeRO7ZALpir/lVmf/uXUhnwUr2O4HU8s/n6x+yNjQkHw==}
@@ -18427,6 +18013,8 @@ packages:
/fs-constants@1.0.0:
resolution: {integrity: sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==}
+ requiresBuild: true
+ dev: true
/fs-exists-cached@1.0.0:
resolution: {integrity: sha512-kSxoARUDn4F2RPXX48UXnaFKwVU7Ivd/6qpzZL29MCDmr9sTvybv4gFCp+qaI4fM9m0z9fgz/yJvi56GAz+BZg==}
@@ -18504,42 +18092,46 @@ packages:
/function-bind@1.1.2:
resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==}
+ requiresBuild: true
/function.prototype.name@1.1.6:
resolution: {integrity: sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==}
engines: {node: '>= 0.4'}
+ requiresBuild: true
dependencies:
- call-bind: 1.0.7
+ call-bind: 1.0.5
define-properties: 1.2.1
- es-abstract: 1.23.3
+ es-abstract: 1.22.3
functions-have-names: 1.2.3
/functional-red-black-tree@1.0.1:
resolution: {integrity: sha512-dsKNQNdj6xA3T+QlADDA7mOSlX0qiMINjn0cgr+eGHGsbSHzTabcIogz2+p/iqP1Xs6EP/sS2SbqH+brGTbq0g==}
+ requiresBuild: true
/functions-have-names@1.2.3:
resolution: {integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==}
+ requiresBuild: true
/fuzzy@0.1.3:
resolution: {integrity: sha512-/gZffu4ykarLrCiP3Ygsa86UAo1E5vEVlvTrpkKywXSbP9Xhln3oSp9QSV57gEq3JFFpGJ4GZ+5zdEp3FcUh4w==}
engines: {node: '>= 0.6.0'}
dev: false
- /gatsby-cli@5.13.2:
- resolution: {integrity: sha512-Wxsfgfp5jDciXOR00aKQk9SQANXoYaftNZz6LGGkRZcwMFjhPal1LdCioyy3sOXrRvB0uUsACrGLS1ghXxd2QA==}
+ /gatsby-cli@5.13.1:
+ resolution: {integrity: sha512-8BEdbNC8A6Q/s/WBRbRYiTE+B5OR+dB9Ka+qkYHIPBHmW0VuQnhWElYiPX7Nd3ffW3KNmL8BDU3Ns9Hhm66cyA==}
engines: {node: '>=18.0.0'}
hasBin: true
requiresBuild: true
dependencies:
- '@babel/code-frame': 7.24.2
- '@babel/core': 7.24.4
- '@babel/generator': 7.24.4
- '@babel/helper-plugin-utils': 7.24.0
- '@babel/preset-typescript': 7.24.1(@babel/core@7.24.4)
- '@babel/runtime': 7.24.4
- '@babel/template': 7.24.0
- '@babel/types': 7.24.0
- '@jridgewell/trace-mapping': 0.3.25
+ '@babel/code-frame': 7.23.5
+ '@babel/core': 7.23.7
+ '@babel/generator': 7.23.6
+ '@babel/helper-plugin-utils': 7.22.5
+ '@babel/preset-typescript': 7.23.3(@babel/core@7.23.7)
+ '@babel/runtime': 7.23.7
+ '@babel/template': 7.22.15
+ '@babel/types': 7.23.6
+ '@jridgewell/trace-mapping': 0.3.20
'@types/common-tags': 1.8.4
better-opn: 2.1.1
boxen: 5.1.2
@@ -18547,16 +18139,16 @@ packages:
clipboardy: 4.0.0
common-tags: 1.8.2
convert-hrtime: 3.0.0
- create-gatsby: 3.13.1
- envinfo: 7.12.0
+ create-gatsby: 3.13.0
+ envinfo: 7.11.0
execa: 5.1.1
fs-exists-cached: 1.0.0
fs-extra: 11.2.0
gatsby-core-utils: 4.13.1
- gatsby-telemetry: 4.13.1
+ gatsby-telemetry: 4.13.0
hosted-git-info: 3.0.8
is-valid-path: 0.1.1
- joi: 17.12.3
+ joi: 17.11.0
lodash: 4.17.21
node-fetch: 2.7.0
opentracing: 0.14.7
@@ -18565,7 +18157,7 @@ packages:
prompts: 2.4.2
redux: 4.2.1
resolve-cwd: 3.0.0
- semver: 7.6.0
+ semver: 7.5.4
signal-exit: 3.0.7
stack-trace: 0.0.10
strip-ansi: 6.0.1
@@ -18576,14 +18168,35 @@ packages:
- encoding
- supports-color
+ /gatsby-core-utils@4.13.0:
+ resolution: {integrity: sha512-+oJJsADfcEnzpQpof+L5qtP4iSeMaEPn1QSjXENlg/go9Pi/4eqb+Nn3y3q8bC/zy4hMWFWrPdMJmdW581uNvA==}
+ engines: {node: '>=18.0.0'}
+ dependencies:
+ '@babel/runtime': 7.23.7
+ ci-info: 2.0.0
+ configstore: 5.0.1
+ fastq: 1.16.0
+ file-type: 16.5.4
+ fs-extra: 11.2.0
+ got: 11.8.6
+ hash-wasm: 4.11.0
+ import-from: 4.0.0
+ lmdb: 2.5.3
+ lock: 1.1.0
+ node-object-hash: 2.3.10
+ proper-lockfile: 4.1.2
+ resolve-from: 5.0.0
+ tmp: 0.2.1
+ xdg-basedir: 4.0.0
+
/gatsby-core-utils@4.13.1:
resolution: {integrity: sha512-w7G6SsQr8T2q+AJ1MxvRNGocCt+wjc22MiRLj2Zi3Ijpjszbr818JxwI4+aPt8WOSHlKT5SYCHICnEvcYPm9gg==}
engines: {node: '>=18.0.0'}
dependencies:
- '@babel/runtime': 7.24.4
+ '@babel/runtime': 7.23.7
ci-info: 2.0.0
configstore: 5.0.1
- fastq: 1.17.1
+ fastq: 1.16.0
file-type: 16.5.4
fs-extra: 11.2.0
got: 11.8.6
@@ -18594,11 +18207,11 @@ packages:
node-object-hash: 2.3.10
proper-lockfile: 4.1.2
resolve-from: 5.0.0
- tmp: 0.2.3
+ tmp: 0.2.1
xdg-basedir: 4.0.0
- /gatsby-graphiql-explorer@3.13.1:
- resolution: {integrity: sha512-WR6jv18OhKLwK/hGZ6ZGUd82GFtM6gHz+sOpgsJJx/+uqRjZwqcrH2LSrWRSWUCk7FoZY1rJuBSD1QkOODV01A==}
+ /gatsby-graphiql-explorer@3.13.0:
+ resolution: {integrity: sha512-KK1+ka+rC8mBSaR2iBR/rVZa/KLYtGoK+lkjDw+rGGWB3zzwPQJtmNz9QYeOaelUy5PHQaMvyTxbBK5DWiyUhw==}
engines: {node: '>=14.15.0'}
/gatsby-graphql-source-toolkit@2.0.4(gatsby@5.13.1):
@@ -18606,24 +18219,9 @@ packages:
peerDependencies:
gatsby: ^3.0.0 || ^4.0.0 || ^5.0.0
dependencies:
- '@types/node-fetch': 2.6.11
- fs-extra: 9.1.0
- gatsby: 5.13.1(babel-eslint@10.1.0)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5)
- lodash: 4.17.21
- node-fetch: 2.7.0
- p-queue: 6.6.2
- transitivePeerDependencies:
- - encoding
- dev: false
-
- /gatsby-graphql-source-toolkit@2.0.4(gatsby@5.13.3):
- resolution: {integrity: sha512-yaXPYLQ1OdShFNk+N3yVQl86ZKT9wUfZ+vORV32f3U+yhse6Mqfje3DhsKHQ2xHazJ3dsdjIdvZOZ1ofDaErPA==}
- peerDependencies:
- gatsby: ^3.0.0 || ^4.0.0 || ^5.0.0
- dependencies:
- '@types/node-fetch': 2.6.11
+ '@types/node-fetch': 2.6.10
fs-extra: 9.1.0
- gatsby: 5.13.3(babel-eslint@10.1.0)(esbuild@0.19.12)(react-dom@18.2.0)(react@18.2.0)(typescript@5.3.3)
+ gatsby: 5.13.1(babel-eslint@10.1.0)(react-dom@18.2.0)(react@18.2.0)(typescript@5.4.2)
lodash: 4.17.21
node-fetch: 2.7.0
p-queue: 6.6.2
@@ -18634,11 +18232,11 @@ packages:
/gatsby-legacy-polyfills@3.13.0:
resolution: {integrity: sha512-nFZzq0+iv1+fGbDq1Pry2tFGOuj7VFXXTicxtWWaz0+vdE72Gp7HBGIjxlrcUPW709JUc4J2L7DTUG74sNWEFw==}
dependencies:
- '@babel/runtime': 7.24.4
+ '@babel/runtime': 7.23.7
core-js-compat: 3.31.0
- /gatsby-link@5.13.1(@gatsbyjs/reach-router@2.0.1)(react-dom@18.2.0)(react@18.2.0):
- resolution: {integrity: sha512-naQxvgX/rd4Pj5ICL2DcqT30TAENk6wHttcLioxIqW9/UhwAXGkM9QsOJOyUmwbrp37UIKU3K92Ks/cMbRxwXA==}
+ /gatsby-link@5.13.0(@gatsbyjs/reach-router@2.0.1)(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-3qgJXL9DGOjW6lp2WRtJUyJ2y+kPA7tp3fKGZVJJ2RFz2vVWajuOtH20pp9LMyJZESxX7ACDnwRd15nRGjifQw==}
engines: {node: '>=18.0.0'}
peerDependencies:
'@gatsbyjs/reach-router': ^2.0.0
@@ -18647,51 +18245,31 @@ packages:
dependencies:
'@gatsbyjs/reach-router': 2.0.1(react-dom@18.2.0)(react@18.2.0)
'@types/reach__router': 1.3.15
- gatsby-page-utils: 3.13.1
- prop-types: 15.8.1
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
-
- /gatsby-page-utils@3.13.1:
- resolution: {integrity: sha512-+/V+ZKPn1Lv3KfeTBV/XUVljwTFQq5kg3T0esu9ygXEz3EVXjG5VjL/IX57awiDm9sLsEALqRuuYLoHpfNHg0A==}
- engines: {node: '>=18.0.0'}
- dependencies:
- '@babel/runtime': 7.24.4
- bluebird: 3.7.2
- chokidar: 3.6.0
- fs-exists-cached: 1.0.0
- gatsby-core-utils: 4.13.1
- glob: 7.2.3
- lodash: 4.17.21
- micromatch: 4.0.5
-
- /gatsby-parcel-config@1.13.0(@parcel/core@2.8.3):
- resolution: {integrity: sha512-TIneu+p+2Zo7SClgcTtisW+Qw7SBJCzmlSsDCe94i5AT3jCn/Ai8P/J2fFUeRhms9fRHfuHfGiehYMzcmoGEZQ==}
- engines: {parcel: 2.x}
- peerDependencies:
- '@parcel/core': ^2.0.0
- dependencies:
- '@gatsbyjs/parcel-namer-relative-to-cwd': 2.13.1(@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)
+ gatsby-page-utils: 3.13.0
+ prop-types: 15.8.1
+ react: 18.2.0
+ react-dom: 18.2.0(react@18.2.0)
+
+ /gatsby-page-utils@3.13.0:
+ resolution: {integrity: sha512-DZZlktfTne3b4OIJ84K+Or618ZK8wWBbqVXyClhzg8OXSF/8qbPD/eJug39ieEOlVe8mZ5k3QzCA2VZ3uK9zDg==}
+ engines: {node: '>=18.0.0'}
+ dependencies:
+ '@babel/runtime': 7.23.7
+ bluebird: 3.7.2
+ chokidar: 3.5.3
+ fs-exists-cached: 1.0.0
+ gatsby-core-utils: 4.13.1
+ glob: 7.2.3
+ lodash: 4.17.21
+ micromatch: 4.0.5
- /gatsby-parcel-config@1.13.1(@parcel/core@2.8.3):
- resolution: {integrity: sha512-zEiDKnq1UQvDDireYQN2TmDsxDf9n2SHYXASHyUTipwsMlNMEi0nLav1vHRQAfzbjw4tabk9Z5kcknkJ6nLqOA==}
+ /gatsby-parcel-config@1.13.0(@parcel/core@2.8.3):
+ resolution: {integrity: sha512-TIneu+p+2Zo7SClgcTtisW+Qw7SBJCzmlSsDCe94i5AT3jCn/Ai8P/J2fFUeRhms9fRHfuHfGiehYMzcmoGEZQ==}
engines: {parcel: 2.x}
peerDependencies:
'@parcel/core': ^2.0.0
dependencies:
- '@gatsbyjs/parcel-namer-relative-to-cwd': 2.13.1(@parcel/core@2.8.3)
+ '@gatsbyjs/parcel-namer-relative-to-cwd': 2.13.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
@@ -18704,7 +18282,6 @@ packages:
'@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-layout@4.13.0(gatsby@5.13.1):
resolution: {integrity: sha512-HaKfbyQbmf2ZbZcfUEpILm41I6b5DRiufLJ0lZ00xtasMhCVpfhwKpSMXUTKM7Ldzy3DK+vOGL3AjhcE8BliDQ==}
@@ -18712,7 +18289,7 @@ packages:
peerDependencies:
gatsby: ^5.0.0-next
dependencies:
- '@babel/runtime': 7.24.4
+ '@babel/runtime': 7.23.7
gatsby: 5.13.1(babel-eslint@10.1.0)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5)
dev: false
@@ -18722,81 +18299,56 @@ packages:
peerDependencies:
gatsby: ^5.0.0-next
dependencies:
- '@babel/runtime': 7.24.4
+ '@babel/runtime': 7.23.7
gatsby: 5.13.1(babel-eslint@10.1.0)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5)
- gatsby-core-utils: 4.13.1
- gatsby-plugin-utils: 4.13.1(gatsby@5.13.1)(graphql@16.8.1)
- semver: 7.6.0
+ gatsby-core-utils: 4.13.0
+ gatsby-plugin-utils: 4.13.0(gatsby@5.13.1)(graphql@16.8.1)
+ semver: 7.5.4
sharp: 0.33.1
transitivePeerDependencies:
- graphql
dev: false
- /gatsby-plugin-netlify@5.1.1(gatsby@5.13.1)(webpack@5.91.0):
+ /gatsby-plugin-netlify@5.1.1(gatsby@5.13.1)(webpack@5.89.0):
resolution: {integrity: sha512-CembvYjbP7NJvVIdffqWaBKXMHIxYBKBEoXFGvCKX+8phRNkfmjnvoljoOakv0ypHBpgjgtpa7Nvc3PI+IjB1A==}
engines: {node: '>=14.0.0'}
peerDependencies:
gatsby: ^4.0.0 || ^5.0.0
dependencies:
- '@babel/runtime': 7.24.4
+ '@babel/runtime': 7.23.7
fs-extra: 11.2.0
gatsby: 5.13.1(babel-eslint@10.1.0)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5)
- gatsby-core-utils: 4.13.1
+ gatsby-core-utils: 4.13.0
kebab-hash: 0.1.2
lodash.mergewith: 4.6.2
- webpack-assets-manifest: 5.2.1(webpack@5.91.0)
+ webpack-assets-manifest: 5.1.0(webpack@5.89.0)
transitivePeerDependencies:
- webpack
dev: false
- /gatsby-plugin-page-creator@5.13.1(gatsby@5.13.1)(graphql@16.8.1):
- resolution: {integrity: sha512-WBTQc0cFqaojS1Oh7MjBRSnLCOWWWl3L5t5LEsXwV+4L9OL6D5fLTz7K5xC34OVgfAIryuEKE/M2ZIEk3onVnw==}
+ /gatsby-plugin-page-creator@5.13.0(gatsby@5.13.1)(graphql@16.8.1):
+ resolution: {integrity: sha512-U3QknigfEBuQneb9Ukf17o4ZrAlLmysSehCiJEMj1b+Plze/hXV73Z0HA7z2TC83E7TvpVLay8YWbxppwlhddQ==}
engines: {node: '>=18.0.0'}
peerDependencies:
gatsby: ^5.0.0-next
dependencies:
- '@babel/runtime': 7.24.4
- '@babel/traverse': 7.24.1
+ '@babel/runtime': 7.23.7
+ '@babel/traverse': 7.23.7
'@sindresorhus/slugify': 1.1.2
- chokidar: 3.6.0
+ chokidar: 3.5.3
fs-exists-cached: 1.0.0
fs-extra: 11.2.0
- gatsby: 5.13.1(babel-eslint@10.1.0)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5)
+ gatsby: 5.13.1(babel-eslint@10.1.0)(react-dom@18.2.0)(react@18.2.0)(typescript@5.4.2)
gatsby-core-utils: 4.13.1
- gatsby-page-utils: 3.13.1
+ gatsby-page-utils: 3.13.0
gatsby-plugin-utils: 4.13.1(gatsby@5.13.1)(graphql@16.8.1)
- gatsby-telemetry: 4.13.1
- globby: 11.1.0
- lodash: 4.17.21
- transitivePeerDependencies:
- - encoding
- - graphql
- - supports-color
-
- /gatsby-plugin-page-creator@5.13.1(gatsby@5.13.3)(graphql@16.8.1):
- resolution: {integrity: sha512-WBTQc0cFqaojS1Oh7MjBRSnLCOWWWl3L5t5LEsXwV+4L9OL6D5fLTz7K5xC34OVgfAIryuEKE/M2ZIEk3onVnw==}
- engines: {node: '>=18.0.0'}
- peerDependencies:
- gatsby: ^5.0.0-next
- dependencies:
- '@babel/runtime': 7.24.4
- '@babel/traverse': 7.24.1
- '@sindresorhus/slugify': 1.1.2
- chokidar: 3.6.0
- fs-exists-cached: 1.0.0
- fs-extra: 11.2.0
- gatsby: 5.13.3(babel-eslint@10.1.0)(esbuild@0.19.12)(react-dom@18.2.0)(react@18.2.0)(typescript@5.3.3)
- gatsby-core-utils: 4.13.1
- gatsby-page-utils: 3.13.1
- gatsby-plugin-utils: 4.13.1(gatsby@5.13.3)(graphql@16.8.1)
- gatsby-telemetry: 4.13.1
+ gatsby-telemetry: 4.13.0
globby: 11.1.0
lodash: 4.17.21
transitivePeerDependencies:
- encoding
- graphql
- supports-color
- dev: false
/gatsby-plugin-pnpm@1.2.10(gatsby@5.13.1):
resolution: {integrity: sha512-29xjIakNEUY42OBb3wI9Thmawr5EcUUOB3dB8nE51yr/TfKQFCREk+HAOATQHTNedG3VZhgU4wVjl2V3wgOXJA==}
@@ -18813,7 +18365,7 @@ packages:
peerDependencies:
gatsby: ^5.0.0
dependencies:
- '@babel/runtime': 7.24.4
+ '@babel/runtime': 7.23.7
gatsby: 5.13.1(babel-eslint@10.1.0)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5)
generate-robotstxt: 8.0.3
dev: false
@@ -18824,42 +18376,18 @@ packages:
peerDependencies:
gatsby: ^5.0.0-next
dependencies:
- '@babel/runtime': 7.24.4
+ '@babel/runtime': 7.23.7
async: 3.2.5
bluebird: 3.7.2
debug: 4.3.4
filenamify: 4.3.0
fs-extra: 11.2.0
- gatsby: 5.13.1(babel-eslint@10.1.0)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5)
+ gatsby: 5.13.1(babel-eslint@10.1.0)(react-dom@18.2.0)(react@18.2.0)(typescript@5.4.2)
gatsby-core-utils: 4.13.1
gatsby-plugin-utils: 4.13.1(gatsby@5.13.1)(graphql@16.8.1)
lodash: 4.17.21
probe-image-size: 7.2.3
- semver: 7.6.0
- sharp: 0.33.1
- transitivePeerDependencies:
- - graphql
- - supports-color
- dev: false
-
- /gatsby-plugin-sharp@5.13.1(gatsby@5.13.3)(graphql@16.8.1):
- resolution: {integrity: sha512-PA1LxLjZ7nKjgGykfbIxNQqrfqqfNsMN6+7wZNy5HK4Vhqjw1zDyImJEBEn6v08L2T3tlLMgR0or/OE7yo7F9A==}
- engines: {node: '>=18.0.0'}
- peerDependencies:
- gatsby: ^5.0.0-next
- dependencies:
- '@babel/runtime': 7.24.4
- async: 3.2.5
- bluebird: 3.7.2
- debug: 4.3.4
- filenamify: 4.3.0
- fs-extra: 11.2.0
- gatsby: 5.13.3(babel-eslint@10.1.0)(esbuild@0.19.12)(react-dom@18.2.0)(react@18.2.0)(typescript@5.3.3)
- gatsby-core-utils: 4.13.1
- gatsby-plugin-utils: 4.13.1(gatsby@5.13.3)(graphql@16.8.1)
- lodash: 4.17.21
- probe-image-size: 7.2.3
- semver: 7.6.0
+ semver: 7.5.4
sharp: 0.33.1
transitivePeerDependencies:
- graphql
@@ -18874,7 +18402,7 @@ packages:
react: ^18.0.0 || ^0.0.0
react-dom: ^18.0.0 || ^0.0.0
dependencies:
- '@babel/runtime': 7.24.4
+ '@babel/runtime': 7.23.7
common-tags: 1.8.2
gatsby: 5.13.1(babel-eslint@10.1.0)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5)
minimatch: 3.1.2
@@ -18883,93 +18411,74 @@ packages:
sitemap: 7.1.1
dev: false
- /gatsby-plugin-typescript@5.13.1(gatsby@5.13.1):
- resolution: {integrity: sha512-FsTihoFKWTjzyIaUTndqktL39qMTAb0KyHj9kP+LxTY2FySqHIvFoYc1ycS5q52J76AoWUiGStJuuQLMNq66FQ==}
- engines: {node: '>=18.0.0'}
- peerDependencies:
- gatsby: ^5.0.0-next
- dependencies:
- '@babel/core': 7.24.4
- '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.24.4)
- '@babel/plugin-proposal-numeric-separator': 7.18.6(@babel/core@7.24.4)
- '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.24.4)
- '@babel/preset-typescript': 7.24.1(@babel/core@7.24.4)
- '@babel/runtime': 7.24.4
- babel-plugin-remove-graphql-queries: 5.13.1(@babel/core@7.24.4)(gatsby@5.13.1)
- gatsby: 5.13.1(babel-eslint@10.1.0)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5)
- transitivePeerDependencies:
- - supports-color
-
- /gatsby-plugin-typescript@5.13.1(gatsby@5.13.3):
- resolution: {integrity: sha512-FsTihoFKWTjzyIaUTndqktL39qMTAb0KyHj9kP+LxTY2FySqHIvFoYc1ycS5q52J76AoWUiGStJuuQLMNq66FQ==}
+ /gatsby-plugin-typescript@5.13.0(gatsby@5.13.1):
+ resolution: {integrity: sha512-3wy8q+1tEGyv6SVTxoZBfYjK6hICeT8lRzyY7LtCgtiw3lXKezZEZLFAN5ikadp8Sn9N2aEnbwGWhIn8g6oxGA==}
engines: {node: '>=18.0.0'}
peerDependencies:
gatsby: ^5.0.0-next
dependencies:
- '@babel/core': 7.24.4
- '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.24.4)
- '@babel/plugin-proposal-numeric-separator': 7.18.6(@babel/core@7.24.4)
- '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.24.4)
- '@babel/preset-typescript': 7.24.1(@babel/core@7.24.4)
- '@babel/runtime': 7.24.4
- babel-plugin-remove-graphql-queries: 5.13.1(@babel/core@7.24.4)(gatsby@5.13.3)
- gatsby: 5.13.3(babel-eslint@10.1.0)(esbuild@0.19.12)(react-dom@18.2.0)(react@18.2.0)(typescript@5.3.3)
+ '@babel/core': 7.23.7
+ '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.23.7)
+ '@babel/plugin-proposal-numeric-separator': 7.18.6(@babel/core@7.23.7)
+ '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.23.7)
+ '@babel/preset-typescript': 7.23.3(@babel/core@7.23.7)
+ '@babel/runtime': 7.23.7
+ babel-plugin-remove-graphql-queries: 5.13.0(@babel/core@7.23.7)(gatsby@5.13.1)
+ gatsby: 5.13.1(babel-eslint@10.1.0)(react-dom@18.2.0)(react@18.2.0)(typescript@5.4.2)
transitivePeerDependencies:
- supports-color
- dev: false
/gatsby-plugin-uninline-styles@0.2.0:
resolution: {integrity: sha512-qzG3gcmRk6Vgt6Yf7x6d6hlie+IpbmmXRC2z3A+PPweu/TNh3qpRd8DCQgWBL2rFSatiuxdhqUn4GWaOx7OTgA==}
dev: false
- /gatsby-plugin-utils@4.13.1(gatsby@5.13.1)(graphql@16.8.1):
- resolution: {integrity: sha512-dQ8cZyUENWHqZOOSBBYWCJ8yG3zSYnHYk0mKQbgZblUS30Sp7ZFM4r0/+lsvUkEYaBOnzFBQjSSQtTa0xu9QWA==}
+ /gatsby-plugin-utils@4.13.0(gatsby@5.13.1)(graphql@16.8.1):
+ resolution: {integrity: sha512-3qwhM6mUYjorRiD0D0cgmCHcKwroG2d4PlfErnapHJpM/ISGfdBBOfRhPyk2N0u3dbGeb3KQq5gImCCS73bvxg==}
engines: {node: '>=18.0.0'}
peerDependencies:
gatsby: ^5.0.0-next
graphql: ^16.0.0
dependencies:
- '@babel/runtime': 7.24.4
- fastq: 1.17.1
+ '@babel/runtime': 7.23.7
+ fastq: 1.16.0
fs-extra: 11.2.0
- gatsby: 5.13.1(babel-eslint@10.1.0)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5)
+ gatsby: 5.13.1(babel-eslint@10.1.0)(react-dom@18.2.0)(react@18.2.0)(typescript@5.4.2)
gatsby-core-utils: 4.13.1
gatsby-sharp: 1.13.0
graphql: 16.8.1
graphql-compose: 9.0.10(graphql@16.8.1)
import-from: 4.0.0
- joi: 17.12.3
+ joi: 17.11.0
mime: 3.0.0
- /gatsby-plugin-utils@4.13.1(gatsby@5.13.3)(graphql@16.8.1):
+ /gatsby-plugin-utils@4.13.1(gatsby@5.13.1)(graphql@16.8.1):
resolution: {integrity: sha512-dQ8cZyUENWHqZOOSBBYWCJ8yG3zSYnHYk0mKQbgZblUS30Sp7ZFM4r0/+lsvUkEYaBOnzFBQjSSQtTa0xu9QWA==}
engines: {node: '>=18.0.0'}
peerDependencies:
gatsby: ^5.0.0-next
graphql: ^16.0.0
dependencies:
- '@babel/runtime': 7.24.4
- fastq: 1.17.1
+ '@babel/runtime': 7.23.7
+ fastq: 1.16.0
fs-extra: 11.2.0
- gatsby: 5.13.3(babel-eslint@10.1.0)(esbuild@0.19.12)(react-dom@18.2.0)(react@18.2.0)(typescript@5.3.3)
+ gatsby: 5.13.1(babel-eslint@10.1.0)(react-dom@18.2.0)(react@18.2.0)(typescript@5.4.2)
gatsby-core-utils: 4.13.1
gatsby-sharp: 1.13.0
graphql: 16.8.1
graphql-compose: 9.0.10(graphql@16.8.1)
import-from: 4.0.0
- joi: 17.12.3
+ joi: 17.11.0
mime: 3.0.0
- dev: false
- /gatsby-react-router-scroll@6.13.1(@gatsbyjs/reach-router@2.0.1)(react-dom@18.2.0)(react@18.2.0):
- resolution: {integrity: sha512-srBpg/ZHW4miwH/4OWOcspHqr8ZmKLE4DBNvckt0KO4giJerWiGoLj6qePwLFRWZPfV7txJr2kuUzACxarpL5g==}
+ /gatsby-react-router-scroll@6.13.0(@gatsbyjs/reach-router@2.0.1)(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-Sgw4jHL4bMGXVR+ygb/IRr509DAMxKuwZ/ewoBWsdd0l7fTrYiExqAtszcGIq4PT0/3XeljImRtH7BZGIpDsxQ==}
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.24.4
+ '@babel/runtime': 7.23.7
'@gatsbyjs/reach-router': 2.0.1(react-dom@18.2.0)(react@18.2.0)
prop-types: 15.8.1
react: 18.2.0
@@ -18999,25 +18508,25 @@ packages:
peerDependencies:
gatsby: ^5.0.0-next
dependencies:
- '@babel/runtime': 7.24.4
- chokidar: 3.6.0
+ '@babel/runtime': 7.23.7
+ chokidar: 3.5.3
file-type: 16.5.4
fs-extra: 11.2.0
gatsby: 5.13.1(babel-eslint@10.1.0)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5)
- gatsby-core-utils: 4.13.1
+ gatsby-core-utils: 4.13.0
mime: 3.0.0
pretty-bytes: 5.6.0
valid-url: 1.0.9
xstate: 4.38.3
dev: false
- /gatsby-telemetry@4.13.1:
- resolution: {integrity: sha512-NstKs3N8LK9rwEli6SXO+ClNmewFbVzqS2yo6XZzQSXbymH6+Kkk+eqQivKhrD8PbQLLrdXkk1p47n91zc85XQ==}
+ /gatsby-telemetry@4.13.0:
+ resolution: {integrity: sha512-tUtXF782y4AlQd8hMMOcwoqB4vT+umjApXi4RefWy6vc45Zi/oB3x6IYYgoTuTeZigL0OZWbXyiNLur9vFebVw==}
engines: {node: '>=18.0.0'}
requiresBuild: true
dependencies:
- '@babel/code-frame': 7.24.2
- '@babel/runtime': 7.24.4
+ '@babel/code-frame': 7.23.5
+ '@babel/runtime': 7.23.7
'@turist/fetch': 7.2.0(node-fetch@2.7.0)
'@turist/time': 0.0.2
boxen: 5.1.2
@@ -19031,12 +18540,12 @@ packages:
transitivePeerDependencies:
- encoding
- /gatsby-worker@2.13.1:
- resolution: {integrity: sha512-CEm+5M2+3PzPcqTaJ0xjNuorQ3d1PfnKG1yqRRPfw8LFdPiycGhZAug/jqx0iTyVWXFHakEmddlykGFEbq54/Q==}
+ /gatsby-worker@2.13.0:
+ resolution: {integrity: sha512-WEA/pEnmWVO+BIzSiIOANLzqUkNz4SDuj2JkC2jUJkyqtLaNaf1GoC0vvvU4Bw3o4uXj6AJOBvKlyoZHpdURVw==}
engines: {node: '>=18.0.0'}
dependencies:
- '@babel/core': 7.24.4
- '@babel/runtime': 7.24.4
+ '@babel/core': 7.23.7
+ '@babel/runtime': 7.23.7
fs-extra: 11.2.0
signal-exit: 3.0.7
transitivePeerDependencies:
@@ -19051,14 +18560,14 @@ packages:
react: ^18.0.0 || ^0.0.0
react-dom: ^18.0.0 || ^0.0.0
dependencies:
- '@babel/code-frame': 7.24.2
- '@babel/core': 7.24.4
- '@babel/eslint-parser': 7.24.1(@babel/core@7.24.4)(eslint@7.32.0)
- '@babel/helper-plugin-utils': 7.24.0
- '@babel/parser': 7.24.4
- '@babel/runtime': 7.24.4
- '@babel/traverse': 7.24.1
- '@babel/types': 7.24.0
+ '@babel/code-frame': 7.23.5
+ '@babel/core': 7.23.7
+ '@babel/eslint-parser': 7.23.3(@babel/core@7.23.7)(eslint@7.32.0)
+ '@babel/helper-plugin-utils': 7.22.5
+ '@babel/parser': 7.23.6
+ '@babel/runtime': 7.23.7
+ '@babel/traverse': 7.23.7
+ '@babel/types': 7.23.6
'@builder.io/partytown': 0.7.6
'@gatsbyjs/reach-router': 2.0.1(react-dom@18.2.0)(react@18.2.0)
'@gatsbyjs/webpack-hot-middleware': 2.25.3
@@ -19067,44 +18576,44 @@ packages:
'@graphql-codegen/plugin-helpers': 2.7.2(graphql@16.8.1)
'@graphql-codegen/typescript': 2.8.8(graphql@16.8.1)
'@graphql-codegen/typescript-operations': 2.5.13(graphql@16.8.1)
- '@graphql-tools/code-file-loader': 7.3.23(@babel/core@7.24.4)(graphql@16.8.1)
+ '@graphql-tools/code-file-loader': 7.3.23(@babel/core@7.23.7)(graphql@16.8.1)
'@graphql-tools/load': 7.8.14(graphql@16.8.1)
- '@jridgewell/trace-mapping': 0.3.25
+ '@jridgewell/trace-mapping': 0.3.20
'@nodelib/fs.walk': 1.2.8
'@parcel/cache': 2.8.3(@parcel/core@2.8.3)
'@parcel/core': 2.8.3
- '@pmmmwh/react-refresh-webpack-plugin': 0.5.11(react-refresh@0.14.0)(webpack@5.91.0)
+ '@pmmmwh/react-refresh-webpack-plugin': 0.5.11(react-refresh@0.14.0)(webpack@5.89.0)
'@types/http-proxy': 1.17.14
'@typescript-eslint/eslint-plugin': 5.62.0(@typescript-eslint/parser@5.62.0)(eslint@7.32.0)(typescript@5.3.3)
'@typescript-eslint/parser': 5.62.0(eslint@7.32.0)(typescript@5.3.3)
'@vercel/webpack-asset-relocator-loader': 1.7.3
acorn-loose: 8.4.0
- acorn-walk: 8.3.2
+ acorn-walk: 8.3.1
address: 1.2.2
anser: 2.1.1
- autoprefixer: 10.4.19(postcss@8.4.38)
+ autoprefixer: 10.4.16(postcss@8.4.32)
axios: 0.21.4(debug@4.3.4)
babel-jsx-utils: 1.1.0
- babel-loader: 8.3.0(@babel/core@7.24.4)(webpack@5.91.0)
+ babel-loader: 8.3.0(@babel/core@7.23.7)(webpack@5.89.0)
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.13.1(@babel/core@7.24.4)(gatsby@5.13.1)
- babel-preset-gatsby: 3.13.1(@babel/core@7.24.4)(core-js@3.36.1)
+ babel-plugin-remove-graphql-queries: 5.13.0(@babel/core@7.23.7)(gatsby@5.13.1)
+ babel-preset-gatsby: 3.13.0(@babel/core@7.23.7)(core-js@3.35.0)
better-opn: 2.1.1
bluebird: 3.7.2
body-parser: 1.20.1
- browserslist: 4.23.0
+ browserslist: 4.22.2
cache-manager: 2.11.1
chalk: 4.1.2
- chokidar: 3.6.0
+ chokidar: 3.5.3
common-tags: 1.8.2
compression: 1.7.4
cookie: 0.5.0
- core-js: 3.36.1
+ core-js: 3.35.0
cors: 2.8.5
- css-loader: 5.2.7(webpack@5.91.0)
- css-minimizer-webpack-plugin: 2.0.0(webpack@5.91.0)
+ css-loader: 5.2.7(webpack@5.89.0)
+ css-minimizer-webpack-plugin: 2.0.0(webpack@5.89.0)
css.escape: 1.5.1
date-fns: 2.30.0
debug: 4.3.4
@@ -19112,40 +18621,40 @@ packages:
detect-port: 1.5.1
devcert: 1.2.2
dotenv: 8.6.0
- enhanced-resolve: 5.16.0
+ enhanced-resolve: 5.15.0
error-stack-parser: 2.1.4
eslint: 7.32.0
- eslint-config-react-app: 6.0.0(@typescript-eslint/eslint-plugin@5.62.0)(@typescript-eslint/parser@5.62.0)(babel-eslint@10.1.0)(eslint-plugin-flowtype@5.10.0)(eslint-plugin-import@2.29.1)(eslint-plugin-jsx-a11y@6.8.0)(eslint-plugin-react-hooks@4.6.0)(eslint-plugin-react@7.34.1)(eslint@7.32.0)(typescript@5.3.3)
+ eslint-config-react-app: 6.0.0(@typescript-eslint/eslint-plugin@5.62.0)(@typescript-eslint/parser@5.62.0)(babel-eslint@10.1.0)(eslint-plugin-flowtype@5.10.0)(eslint-plugin-import@2.29.1)(eslint-plugin-jsx-a11y@6.8.0)(eslint-plugin-react-hooks@4.6.0)(eslint-plugin-react@7.33.2)(eslint@7.32.0)(typescript@5.3.3)
eslint-plugin-flowtype: 5.10.0(eslint@7.32.0)
eslint-plugin-import: 2.29.1(@typescript-eslint/parser@5.62.0)(eslint@7.32.0)
eslint-plugin-jsx-a11y: 6.8.0(eslint@7.32.0)
- eslint-plugin-react: 7.34.1(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-webpack-plugin: 2.7.0(eslint@7.32.0)(webpack@5.91.0)
+ eslint-webpack-plugin: 2.7.0(eslint@7.32.0)(webpack@5.89.0)
event-source-polyfill: 1.0.31
execa: 5.1.1
- express: 4.19.2
+ express: 4.18.2
express-http-proxy: 1.6.3
fastest-levenshtein: 1.0.16
- fastq: 1.17.1
- file-loader: 6.2.0(webpack@5.91.0)
+ fastq: 1.16.0
+ file-loader: 6.2.0(webpack@5.89.0)
find-cache-dir: 3.3.2
fs-exists-cached: 1.0.0
fs-extra: 11.2.0
- gatsby-cli: 5.13.2
- gatsby-core-utils: 4.13.1
- gatsby-graphiql-explorer: 3.13.1
+ gatsby-cli: 5.13.1
+ gatsby-core-utils: 4.13.0
+ gatsby-graphiql-explorer: 3.13.0
gatsby-legacy-polyfills: 3.13.0
- gatsby-link: 5.13.1(@gatsbyjs/reach-router@2.0.1)(react-dom@18.2.0)(react@18.2.0)
- gatsby-page-utils: 3.13.1
+ gatsby-link: 5.13.0(@gatsbyjs/reach-router@2.0.1)(react-dom@18.2.0)(react@18.2.0)
+ gatsby-page-utils: 3.13.0
gatsby-parcel-config: 1.13.0(@parcel/core@2.8.3)
- gatsby-plugin-page-creator: 5.13.1(gatsby@5.13.1)(graphql@16.8.1)
- gatsby-plugin-typescript: 5.13.1(gatsby@5.13.1)
- gatsby-plugin-utils: 4.13.1(gatsby@5.13.1)(graphql@16.8.1)
- gatsby-react-router-scroll: 6.13.1(@gatsbyjs/reach-router@2.0.1)(react-dom@18.2.0)(react@18.2.0)
+ gatsby-plugin-page-creator: 5.13.0(gatsby@5.13.1)(graphql@16.8.1)
+ gatsby-plugin-typescript: 5.13.0(gatsby@5.13.1)
+ gatsby-plugin-utils: 4.13.0(gatsby@5.13.1)(graphql@16.8.1)
+ gatsby-react-router-scroll: 6.13.0(@gatsbyjs/reach-router@2.0.1)(react-dom@18.2.0)(react@18.2.0)
gatsby-script: 2.13.0(@gatsbyjs/reach-router@2.0.1)(react-dom@18.2.0)(react@18.2.0)
- gatsby-telemetry: 4.13.1
- gatsby-worker: 2.13.1
+ gatsby-telemetry: 4.13.0
+ gatsby-worker: 2.13.0
glob: 7.2.3
globby: 11.1.0
got: 11.8.6
@@ -19157,7 +18666,7 @@ packages:
invariant: 2.2.4
is-relative: 1.0.0
is-relative-url: 3.0.0
- joi: 17.12.3
+ joi: 17.11.0
json-loader: 0.5.7
latest-version: 7.0.0
linkfs: 2.1.0
@@ -19167,36 +18676,36 @@ packages:
memoizee: 0.4.15
micromatch: 4.0.5
mime: 3.0.0
- mini-css-extract-plugin: 1.6.2(webpack@5.91.0)
+ mini-css-extract-plugin: 1.6.2(webpack@5.89.0)
mitt: 1.2.0
moment: 2.30.1
multer: 1.4.5-lts.1
node-fetch: 2.7.0
node-html-parser: 5.4.2
normalize-path: 3.0.0
- null-loader: 4.0.1(webpack@5.91.0)
+ null-loader: 4.0.1(webpack@5.89.0)
opentracing: 0.14.7
p-defer: 3.0.0
parseurl: 1.3.3
path-to-regexp: 0.1.7
physical-cpu-count: 2.0.0
platform: 1.3.6
- postcss: 8.4.38
- postcss-flexbugs-fixes: 5.0.2(postcss@8.4.38)
- postcss-loader: 5.3.0(postcss@8.4.38)(webpack@5.91.0)
+ postcss: 8.4.32
+ postcss-flexbugs-fixes: 5.0.2(postcss@8.4.32)
+ postcss-loader: 5.3.0(postcss@8.4.32)(webpack@5.89.0)
prompts: 2.4.2
prop-types: 15.8.1
query-string: 6.14.1
- raw-loader: 4.0.2(webpack@5.91.0)
+ raw-loader: 4.0.2(webpack@5.89.0)
react: 18.2.0
- react-dev-utils: 12.0.1(eslint@7.32.0)(typescript@5.3.3)(webpack@5.91.0)
+ react-dev-utils: 12.0.1(eslint@7.32.0)(typescript@5.3.3)(webpack@5.89.0)
react-dom: 18.2.0(react@18.2.0)
react-refresh: 0.14.0
- react-server-dom-webpack: 0.0.0-experimental-c8b778b7f-20220825(react@18.2.0)(webpack@5.91.0)
+ react-server-dom-webpack: 0.0.0-experimental-c8b778b7f-20220825(react@18.2.0)(webpack@5.89.0)
redux: 4.2.1
redux-thunk: 2.4.2(redux@4.2.1)
resolve-from: 5.0.0
- semver: 7.6.0
+ semver: 7.5.4
shallow-compare: 1.2.2
signal-exit: 3.0.7
slugify: 1.6.6
@@ -19205,21 +18714,21 @@ packages:
stack-trace: 0.0.10
string-similarity: 1.2.2
strip-ansi: 6.0.1
- style-loader: 2.0.0(webpack@5.91.0)
+ style-loader: 2.0.0(webpack@5.89.0)
style-to-object: 0.4.4
- terser-webpack-plugin: 5.3.10(@swc/core@1.3.102)(webpack@5.91.0)
- tmp: 0.2.3
+ terser-webpack-plugin: 5.3.10(@swc/core@1.3.102)(webpack@5.89.0)
+ tmp: 0.2.1
true-case-path: 2.2.1
type-of: 2.0.1
- url-loader: 4.1.1(file-loader@6.2.0)(webpack@5.91.0)
+ url-loader: 4.1.1(file-loader@6.2.0)(webpack@5.89.0)
uuid: 8.3.2
- webpack: 5.91.0(@swc/core@1.3.102)
- webpack-dev-middleware: 4.3.0(webpack@5.91.0)
+ webpack: 5.89.0(@swc/core@1.3.102)
+ webpack-dev-middleware: 4.3.0(webpack@5.89.0)
webpack-merge: 5.10.0
webpack-stats-plugin: 1.1.3
webpack-virtual-modules: 0.5.0
xstate: 4.38.3
- yaml-loader: 0.8.1
+ yaml-loader: 0.8.0
optionalDependencies:
gatsby-sharp: 1.13.0
transitivePeerDependencies:
@@ -19257,14 +18766,14 @@ packages:
react: ^18.0.0 || ^0.0.0
react-dom: ^18.0.0 || ^0.0.0
dependencies:
- '@babel/code-frame': 7.24.2
- '@babel/core': 7.24.4
- '@babel/eslint-parser': 7.24.1(@babel/core@7.24.4)(eslint@7.32.0)
- '@babel/helper-plugin-utils': 7.24.0
- '@babel/parser': 7.24.4
- '@babel/runtime': 7.24.4
- '@babel/traverse': 7.24.1
- '@babel/types': 7.24.0
+ '@babel/code-frame': 7.23.5
+ '@babel/core': 7.23.7
+ '@babel/eslint-parser': 7.23.3(@babel/core@7.23.7)(eslint@7.32.0)
+ '@babel/helper-plugin-utils': 7.22.5
+ '@babel/parser': 7.23.6
+ '@babel/runtime': 7.23.7
+ '@babel/traverse': 7.23.7
+ '@babel/types': 7.23.6
'@builder.io/partytown': 0.7.6
'@gatsbyjs/reach-router': 2.0.1(react-dom@18.2.0)(react@18.2.0)
'@gatsbyjs/webpack-hot-middleware': 2.25.3
@@ -19273,44 +18782,44 @@ packages:
'@graphql-codegen/plugin-helpers': 2.7.2(graphql@16.8.1)
'@graphql-codegen/typescript': 2.8.8(graphql@16.8.1)
'@graphql-codegen/typescript-operations': 2.5.13(graphql@16.8.1)
- '@graphql-tools/code-file-loader': 7.3.23(@babel/core@7.24.4)(graphql@16.8.1)
+ '@graphql-tools/code-file-loader': 7.3.23(@babel/core@7.23.7)(graphql@16.8.1)
'@graphql-tools/load': 7.8.14(graphql@16.8.1)
- '@jridgewell/trace-mapping': 0.3.25
+ '@jridgewell/trace-mapping': 0.3.20
'@nodelib/fs.walk': 1.2.8
'@parcel/cache': 2.8.3(@parcel/core@2.8.3)
'@parcel/core': 2.8.3
- '@pmmmwh/react-refresh-webpack-plugin': 0.5.11(react-refresh@0.14.0)(webpack@5.91.0)
+ '@pmmmwh/react-refresh-webpack-plugin': 0.5.11(react-refresh@0.14.0)(webpack@5.89.0)
'@types/http-proxy': 1.17.14
'@typescript-eslint/eslint-plugin': 5.62.0(@typescript-eslint/parser@5.62.0)(eslint@7.32.0)(typescript@4.9.5)
'@typescript-eslint/parser': 5.62.0(eslint@7.32.0)(typescript@4.9.5)
'@vercel/webpack-asset-relocator-loader': 1.7.3
acorn-loose: 8.4.0
- acorn-walk: 8.3.2
+ acorn-walk: 8.3.1
address: 1.2.2
anser: 2.1.1
- autoprefixer: 10.4.19(postcss@8.4.38)
+ autoprefixer: 10.4.16(postcss@8.4.32)
axios: 0.21.4(debug@4.3.4)
babel-jsx-utils: 1.1.0
- babel-loader: 8.3.0(@babel/core@7.24.4)(webpack@5.91.0)
+ babel-loader: 8.3.0(@babel/core@7.23.7)(webpack@5.89.0)
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.13.1(@babel/core@7.24.4)(gatsby@5.13.1)
- babel-preset-gatsby: 3.13.1(@babel/core@7.24.4)(core-js@3.36.1)
+ babel-plugin-remove-graphql-queries: 5.13.0(@babel/core@7.23.7)(gatsby@5.13.1)
+ babel-preset-gatsby: 3.13.0(@babel/core@7.23.7)(core-js@3.35.0)
better-opn: 2.1.1
bluebird: 3.7.2
body-parser: 1.20.1
- browserslist: 4.23.0
+ browserslist: 4.22.2
cache-manager: 2.11.1
chalk: 4.1.2
- chokidar: 3.6.0
+ chokidar: 3.5.3
common-tags: 1.8.2
compression: 1.7.4
cookie: 0.5.0
- core-js: 3.36.1
+ core-js: 3.35.0
cors: 2.8.5
- css-loader: 5.2.7(webpack@5.91.0)
- css-minimizer-webpack-plugin: 2.0.0(webpack@5.91.0)
+ css-loader: 5.2.7(webpack@5.89.0)
+ css-minimizer-webpack-plugin: 2.0.0(webpack@5.89.0)
css.escape: 1.5.1
date-fns: 2.30.0
debug: 4.3.4
@@ -19318,40 +18827,40 @@ packages:
detect-port: 1.5.1
devcert: 1.2.2
dotenv: 8.6.0
- enhanced-resolve: 5.16.0
+ enhanced-resolve: 5.15.0
error-stack-parser: 2.1.4
eslint: 7.32.0
- eslint-config-react-app: 6.0.0(@typescript-eslint/eslint-plugin@5.62.0)(@typescript-eslint/parser@5.62.0)(babel-eslint@10.1.0)(eslint-plugin-flowtype@5.10.0)(eslint-plugin-import@2.29.1)(eslint-plugin-jsx-a11y@6.8.0)(eslint-plugin-react-hooks@4.6.0)(eslint-plugin-react@7.34.1)(eslint@7.32.0)(typescript@4.9.5)
+ eslint-config-react-app: 6.0.0(@typescript-eslint/eslint-plugin@5.62.0)(@typescript-eslint/parser@5.62.0)(babel-eslint@10.1.0)(eslint-plugin-flowtype@5.10.0)(eslint-plugin-import@2.29.1)(eslint-plugin-jsx-a11y@6.8.0)(eslint-plugin-react-hooks@4.6.0)(eslint-plugin-react@7.33.2)(eslint@7.32.0)(typescript@4.9.5)
eslint-plugin-flowtype: 5.10.0(eslint@7.32.0)
eslint-plugin-import: 2.29.1(@typescript-eslint/parser@5.62.0)(eslint@7.32.0)
eslint-plugin-jsx-a11y: 6.8.0(eslint@7.32.0)
- eslint-plugin-react: 7.34.1(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-webpack-plugin: 2.7.0(eslint@7.32.0)(webpack@5.91.0)
+ eslint-webpack-plugin: 2.7.0(eslint@7.32.0)(webpack@5.89.0)
event-source-polyfill: 1.0.31
execa: 5.1.1
- express: 4.19.2
+ express: 4.18.2
express-http-proxy: 1.6.3
fastest-levenshtein: 1.0.16
- fastq: 1.17.1
- file-loader: 6.2.0(webpack@5.91.0)
+ fastq: 1.16.0
+ file-loader: 6.2.0(webpack@5.89.0)
find-cache-dir: 3.3.2
fs-exists-cached: 1.0.0
fs-extra: 11.2.0
- gatsby-cli: 5.13.2
- gatsby-core-utils: 4.13.1
- gatsby-graphiql-explorer: 3.13.1
+ gatsby-cli: 5.13.1
+ gatsby-core-utils: 4.13.0
+ gatsby-graphiql-explorer: 3.13.0
gatsby-legacy-polyfills: 3.13.0
- gatsby-link: 5.13.1(@gatsbyjs/reach-router@2.0.1)(react-dom@18.2.0)(react@18.2.0)
- gatsby-page-utils: 3.13.1
+ gatsby-link: 5.13.0(@gatsbyjs/reach-router@2.0.1)(react-dom@18.2.0)(react@18.2.0)
+ gatsby-page-utils: 3.13.0
gatsby-parcel-config: 1.13.0(@parcel/core@2.8.3)
- gatsby-plugin-page-creator: 5.13.1(gatsby@5.13.1)(graphql@16.8.1)
- gatsby-plugin-typescript: 5.13.1(gatsby@5.13.1)
- gatsby-plugin-utils: 4.13.1(gatsby@5.13.1)(graphql@16.8.1)
- gatsby-react-router-scroll: 6.13.1(@gatsbyjs/reach-router@2.0.1)(react-dom@18.2.0)(react@18.2.0)
+ gatsby-plugin-page-creator: 5.13.0(gatsby@5.13.1)(graphql@16.8.1)
+ gatsby-plugin-typescript: 5.13.0(gatsby@5.13.1)
+ gatsby-plugin-utils: 4.13.0(gatsby@5.13.1)(graphql@16.8.1)
+ gatsby-react-router-scroll: 6.13.0(@gatsbyjs/reach-router@2.0.1)(react-dom@18.2.0)(react@18.2.0)
gatsby-script: 2.13.0(@gatsbyjs/reach-router@2.0.1)(react-dom@18.2.0)(react@18.2.0)
- gatsby-telemetry: 4.13.1
- gatsby-worker: 2.13.1
+ gatsby-telemetry: 4.13.0
+ gatsby-worker: 2.13.0
glob: 7.2.3
globby: 11.1.0
got: 11.8.6
@@ -19363,7 +18872,7 @@ packages:
invariant: 2.2.4
is-relative: 1.0.0
is-relative-url: 3.0.0
- joi: 17.12.3
+ joi: 17.11.0
json-loader: 0.5.7
latest-version: 7.0.0
linkfs: 2.1.0
@@ -19373,36 +18882,36 @@ packages:
memoizee: 0.4.15
micromatch: 4.0.5
mime: 3.0.0
- mini-css-extract-plugin: 1.6.2(webpack@5.91.0)
+ mini-css-extract-plugin: 1.6.2(webpack@5.89.0)
mitt: 1.2.0
moment: 2.30.1
multer: 1.4.5-lts.1
node-fetch: 2.7.0
node-html-parser: 5.4.2
normalize-path: 3.0.0
- null-loader: 4.0.1(webpack@5.91.0)
+ null-loader: 4.0.1(webpack@5.89.0)
opentracing: 0.14.7
p-defer: 3.0.0
parseurl: 1.3.3
path-to-regexp: 0.1.7
physical-cpu-count: 2.0.0
platform: 1.3.6
- postcss: 8.4.38
- postcss-flexbugs-fixes: 5.0.2(postcss@8.4.38)
- postcss-loader: 5.3.0(postcss@8.4.38)(webpack@5.91.0)
+ postcss: 8.4.32
+ postcss-flexbugs-fixes: 5.0.2(postcss@8.4.32)
+ postcss-loader: 5.3.0(postcss@8.4.32)(webpack@5.89.0)
prompts: 2.4.2
prop-types: 15.8.1
query-string: 6.14.1
- raw-loader: 4.0.2(webpack@5.91.0)
+ raw-loader: 4.0.2(webpack@5.89.0)
react: 18.2.0
- react-dev-utils: 12.0.1(eslint@7.32.0)(typescript@4.9.5)(webpack@5.91.0)
+ react-dev-utils: 12.0.1(eslint@7.32.0)(typescript@4.9.5)(webpack@5.89.0)
react-dom: 18.2.0(react@18.2.0)
react-refresh: 0.14.0
- react-server-dom-webpack: 0.0.0-experimental-c8b778b7f-20220825(react@18.2.0)(webpack@5.91.0)
+ react-server-dom-webpack: 0.0.0-experimental-c8b778b7f-20220825(react@18.2.0)(webpack@5.89.0)
redux: 4.2.1
redux-thunk: 2.4.2(redux@4.2.1)
resolve-from: 5.0.0
- semver: 7.6.0
+ semver: 7.5.4
shallow-compare: 1.2.2
signal-exit: 3.0.7
slugify: 1.6.6
@@ -19411,21 +18920,21 @@ packages:
stack-trace: 0.0.10
string-similarity: 1.2.2
strip-ansi: 6.0.1
- style-loader: 2.0.0(webpack@5.91.0)
+ style-loader: 2.0.0(webpack@5.89.0)
style-to-object: 0.4.4
- terser-webpack-plugin: 5.3.10(webpack@5.91.0)
- tmp: 0.2.3
+ terser-webpack-plugin: 5.3.10(webpack@5.89.0)
+ tmp: 0.2.1
true-case-path: 2.2.1
type-of: 2.0.1
- url-loader: 4.1.1(file-loader@6.2.0)(webpack@5.91.0)
+ url-loader: 4.1.1(file-loader@6.2.0)(webpack@5.89.0)
uuid: 8.3.2
- webpack: 5.91.0
- webpack-dev-middleware: 4.3.0(webpack@5.91.0)
+ webpack: 5.89.0
+ webpack-dev-middleware: 4.3.0(webpack@5.89.0)
webpack-merge: 5.10.0
webpack-stats-plugin: 1.1.3
webpack-virtual-modules: 0.5.0
xstate: 4.38.3
- yaml-loader: 0.8.1
+ yaml-loader: 0.8.0
optionalDependencies:
gatsby-sharp: 1.13.0
transitivePeerDependencies:
@@ -19452,9 +18961,10 @@ packages:
- webpack-dev-server
- webpack-hot-middleware
- webpack-plugin-serve
+ dev: false
- /gatsby@5.13.3(babel-eslint@10.1.0)(esbuild@0.19.12)(react-dom@18.2.0)(react@18.2.0)(typescript@5.3.3):
- resolution: {integrity: sha512-SSnGpjswK20BQORcvTbtK8eI+W4QUG+u8rdVswB4suva6BfvTakW2wiktj7E2MdO4NjRvlgJjF5dUUncU5nldA==}
+ /gatsby@5.13.1(babel-eslint@10.1.0)(react-dom@18.2.0)(react@18.2.0)(typescript@5.4.2):
+ resolution: {integrity: sha512-y8VB381ZnHX3Xxc1n78AAAd+t0EsIyyIRtfqlSQ10CXwZHpZzBR3DTRoHmqIG3/NmdiqWhbHb/nRlmKZUzixtQ==}
engines: {node: '>=18.0.0'}
hasBin: true
requiresBuild: true
@@ -19462,14 +18972,14 @@ packages:
react: ^18.0.0 || ^0.0.0
react-dom: ^18.0.0 || ^0.0.0
dependencies:
- '@babel/code-frame': 7.24.2
- '@babel/core': 7.24.4
- '@babel/eslint-parser': 7.24.1(@babel/core@7.24.4)(eslint@7.32.0)
- '@babel/helper-plugin-utils': 7.24.0
- '@babel/parser': 7.24.4
- '@babel/runtime': 7.24.4
- '@babel/traverse': 7.24.1
- '@babel/types': 7.24.0
+ '@babel/code-frame': 7.23.5
+ '@babel/core': 7.23.7
+ '@babel/eslint-parser': 7.23.3(@babel/core@7.23.7)(eslint@7.32.0)
+ '@babel/helper-plugin-utils': 7.22.5
+ '@babel/parser': 7.23.6
+ '@babel/runtime': 7.23.7
+ '@babel/traverse': 7.23.7
+ '@babel/types': 7.23.6
'@builder.io/partytown': 0.7.6
'@gatsbyjs/reach-router': 2.0.1(react-dom@18.2.0)(react@18.2.0)
'@gatsbyjs/webpack-hot-middleware': 2.25.3
@@ -19478,44 +18988,44 @@ packages:
'@graphql-codegen/plugin-helpers': 2.7.2(graphql@16.8.1)
'@graphql-codegen/typescript': 2.8.8(graphql@16.8.1)
'@graphql-codegen/typescript-operations': 2.5.13(graphql@16.8.1)
- '@graphql-tools/code-file-loader': 7.3.23(@babel/core@7.24.4)(graphql@16.8.1)
+ '@graphql-tools/code-file-loader': 7.3.23(@babel/core@7.23.7)(graphql@16.8.1)
'@graphql-tools/load': 7.8.14(graphql@16.8.1)
- '@jridgewell/trace-mapping': 0.3.25
+ '@jridgewell/trace-mapping': 0.3.20
'@nodelib/fs.walk': 1.2.8
'@parcel/cache': 2.8.3(@parcel/core@2.8.3)
'@parcel/core': 2.8.3
- '@pmmmwh/react-refresh-webpack-plugin': 0.5.11(react-refresh@0.14.0)(webpack@5.91.0)
- '@sigmacomputing/babel-plugin-lodash': 3.3.5
+ '@pmmmwh/react-refresh-webpack-plugin': 0.5.11(react-refresh@0.14.0)(webpack@5.89.0)
'@types/http-proxy': 1.17.14
- '@typescript-eslint/eslint-plugin': 5.62.0(@typescript-eslint/parser@5.62.0)(eslint@7.32.0)(typescript@5.3.3)
- '@typescript-eslint/parser': 5.62.0(eslint@7.32.0)(typescript@5.3.3)
+ '@typescript-eslint/eslint-plugin': 5.62.0(@typescript-eslint/parser@5.62.0)(eslint@7.32.0)(typescript@5.4.2)
+ '@typescript-eslint/parser': 5.62.0(eslint@7.32.0)(typescript@5.4.2)
'@vercel/webpack-asset-relocator-loader': 1.7.3
acorn-loose: 8.4.0
- acorn-walk: 8.3.2
+ acorn-walk: 8.3.1
address: 1.2.2
anser: 2.1.1
- autoprefixer: 10.4.19(postcss@8.4.38)
+ autoprefixer: 10.4.16(postcss@8.4.32)
axios: 0.21.4(debug@4.3.4)
babel-jsx-utils: 1.1.0
- babel-loader: 8.3.0(@babel/core@7.24.4)(webpack@5.91.0)
+ babel-loader: 8.3.0(@babel/core@7.23.7)(webpack@5.89.0)
babel-plugin-add-module-exports: 1.0.4
babel-plugin-dynamic-import-node: 2.3.3
- babel-plugin-remove-graphql-queries: 5.13.1(@babel/core@7.24.4)(gatsby@5.13.3)
- babel-preset-gatsby: 3.13.1(@babel/core@7.24.4)(core-js@3.36.1)
+ babel-plugin-lodash: 3.3.4
+ babel-plugin-remove-graphql-queries: 5.13.0(@babel/core@7.23.7)(gatsby@5.13.1)
+ babel-preset-gatsby: 3.13.0(@babel/core@7.23.7)(core-js@3.35.0)
better-opn: 2.1.1
bluebird: 3.7.2
body-parser: 1.20.1
- browserslist: 4.23.0
+ browserslist: 4.22.2
cache-manager: 2.11.1
chalk: 4.1.2
- chokidar: 3.6.0
+ chokidar: 3.5.3
common-tags: 1.8.2
compression: 1.7.4
cookie: 0.5.0
- core-js: 3.36.1
+ core-js: 3.35.0
cors: 2.8.5
- css-loader: 5.2.7(webpack@5.91.0)
- css-minimizer-webpack-plugin: 2.0.0(webpack@5.91.0)
+ css-loader: 5.2.7(webpack@5.89.0)
+ css-minimizer-webpack-plugin: 2.0.0(webpack@5.89.0)
css.escape: 1.5.1
date-fns: 2.30.0
debug: 4.3.4
@@ -19523,40 +19033,40 @@ packages:
detect-port: 1.5.1
devcert: 1.2.2
dotenv: 8.6.0
- enhanced-resolve: 5.16.0
+ enhanced-resolve: 5.15.0
error-stack-parser: 2.1.4
eslint: 7.32.0
- eslint-config-react-app: 6.0.0(@typescript-eslint/eslint-plugin@5.62.0)(@typescript-eslint/parser@5.62.0)(babel-eslint@10.1.0)(eslint-plugin-flowtype@5.10.0)(eslint-plugin-import@2.29.1)(eslint-plugin-jsx-a11y@6.8.0)(eslint-plugin-react-hooks@4.6.0)(eslint-plugin-react@7.34.1)(eslint@7.32.0)(typescript@5.3.3)
+ eslint-config-react-app: 6.0.0(@typescript-eslint/eslint-plugin@5.62.0)(@typescript-eslint/parser@5.62.0)(babel-eslint@10.1.0)(eslint-plugin-flowtype@5.10.0)(eslint-plugin-import@2.29.1)(eslint-plugin-jsx-a11y@6.8.0)(eslint-plugin-react-hooks@4.6.0)(eslint-plugin-react@7.33.2)(eslint@7.32.0)(typescript@5.4.2)
eslint-plugin-flowtype: 5.10.0(eslint@7.32.0)
- eslint-plugin-import: 2.29.1(@typescript-eslint/parser@6.17.0)(eslint@7.32.0)
+ eslint-plugin-import: 2.29.1(@typescript-eslint/parser@5.62.0)(eslint@7.32.0)
eslint-plugin-jsx-a11y: 6.8.0(eslint@7.32.0)
- eslint-plugin-react: 7.34.1(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-webpack-plugin: 2.7.0(eslint@7.32.0)(webpack@5.91.0)
+ eslint-webpack-plugin: 2.7.0(eslint@7.32.0)(webpack@5.89.0)
event-source-polyfill: 1.0.31
execa: 5.1.1
- express: 4.19.2
+ express: 4.18.2
express-http-proxy: 1.6.3
fastest-levenshtein: 1.0.16
- fastq: 1.17.1
- file-loader: 6.2.0(webpack@5.91.0)
+ fastq: 1.16.0
+ file-loader: 6.2.0(webpack@5.89.0)
find-cache-dir: 3.3.2
fs-exists-cached: 1.0.0
fs-extra: 11.2.0
- gatsby-cli: 5.13.2
- gatsby-core-utils: 4.13.1
- gatsby-graphiql-explorer: 3.13.1
+ gatsby-cli: 5.13.1
+ gatsby-core-utils: 4.13.0
+ gatsby-graphiql-explorer: 3.13.0
gatsby-legacy-polyfills: 3.13.0
- gatsby-link: 5.13.1(@gatsbyjs/reach-router@2.0.1)(react-dom@18.2.0)(react@18.2.0)
- gatsby-page-utils: 3.13.1
- gatsby-parcel-config: 1.13.1(@parcel/core@2.8.3)
- gatsby-plugin-page-creator: 5.13.1(gatsby@5.13.3)(graphql@16.8.1)
- gatsby-plugin-typescript: 5.13.1(gatsby@5.13.3)
- gatsby-plugin-utils: 4.13.1(gatsby@5.13.3)(graphql@16.8.1)
- gatsby-react-router-scroll: 6.13.1(@gatsbyjs/reach-router@2.0.1)(react-dom@18.2.0)(react@18.2.0)
+ gatsby-link: 5.13.0(@gatsbyjs/reach-router@2.0.1)(react-dom@18.2.0)(react@18.2.0)
+ gatsby-page-utils: 3.13.0
+ gatsby-parcel-config: 1.13.0(@parcel/core@2.8.3)
+ gatsby-plugin-page-creator: 5.13.0(gatsby@5.13.1)(graphql@16.8.1)
+ gatsby-plugin-typescript: 5.13.0(gatsby@5.13.1)
+ gatsby-plugin-utils: 4.13.0(gatsby@5.13.1)(graphql@16.8.1)
+ gatsby-react-router-scroll: 6.13.0(@gatsbyjs/reach-router@2.0.1)(react-dom@18.2.0)(react@18.2.0)
gatsby-script: 2.13.0(@gatsbyjs/reach-router@2.0.1)(react-dom@18.2.0)(react@18.2.0)
- gatsby-telemetry: 4.13.1
- gatsby-worker: 2.13.1
+ gatsby-telemetry: 4.13.0
+ gatsby-worker: 2.13.0
glob: 7.2.3
globby: 11.1.0
got: 11.8.6
@@ -19568,7 +19078,7 @@ packages:
invariant: 2.2.4
is-relative: 1.0.0
is-relative-url: 3.0.0
- joi: 17.12.3
+ joi: 17.11.0
json-loader: 0.5.7
latest-version: 7.0.0
linkfs: 2.1.0
@@ -19578,36 +19088,36 @@ packages:
memoizee: 0.4.15
micromatch: 4.0.5
mime: 3.0.0
- mini-css-extract-plugin: 1.6.2(webpack@5.91.0)
+ mini-css-extract-plugin: 1.6.2(webpack@5.89.0)
mitt: 1.2.0
moment: 2.30.1
multer: 1.4.5-lts.1
node-fetch: 2.7.0
node-html-parser: 5.4.2
normalize-path: 3.0.0
- null-loader: 4.0.1(webpack@5.91.0)
+ null-loader: 4.0.1(webpack@5.89.0)
opentracing: 0.14.7
p-defer: 3.0.0
parseurl: 1.3.3
path-to-regexp: 0.1.7
physical-cpu-count: 2.0.0
platform: 1.3.6
- postcss: 8.4.38
- postcss-flexbugs-fixes: 5.0.2(postcss@8.4.38)
- postcss-loader: 5.3.0(postcss@8.4.38)(webpack@5.91.0)
+ postcss: 8.4.32
+ postcss-flexbugs-fixes: 5.0.2(postcss@8.4.32)
+ postcss-loader: 5.3.0(postcss@8.4.32)(webpack@5.89.0)
prompts: 2.4.2
prop-types: 15.8.1
query-string: 6.14.1
- raw-loader: 4.0.2(webpack@5.91.0)
+ raw-loader: 4.0.2(webpack@5.89.0)
react: 18.2.0
- react-dev-utils: 12.0.1(eslint@7.32.0)(typescript@5.3.3)(webpack@5.91.0)
+ react-dev-utils: 12.0.1(eslint@7.32.0)(typescript@5.4.2)(webpack@5.89.0)
react-dom: 18.2.0(react@18.2.0)
react-refresh: 0.14.0
- react-server-dom-webpack: 0.0.0-experimental-c8b778b7f-20220825(react@18.2.0)(webpack@5.91.0)
+ react-server-dom-webpack: 0.0.0-experimental-c8b778b7f-20220825(react@18.2.0)(webpack@5.89.0)
redux: 4.2.1
redux-thunk: 2.4.2(redux@4.2.1)
resolve-from: 5.0.0
- semver: 7.6.0
+ semver: 7.5.4
shallow-compare: 1.2.2
signal-exit: 3.0.7
slugify: 1.6.6
@@ -19616,21 +19126,21 @@ packages:
stack-trace: 0.0.10
string-similarity: 1.2.2
strip-ansi: 6.0.1
- style-loader: 2.0.0(webpack@5.91.0)
+ style-loader: 2.0.0(webpack@5.89.0)
style-to-object: 0.4.4
- terser-webpack-plugin: 5.3.10(esbuild@0.19.12)(webpack@5.91.0)
- tmp: 0.2.3
+ terser-webpack-plugin: 5.3.10(webpack@5.89.0)
+ tmp: 0.2.1
true-case-path: 2.2.1
type-of: 2.0.1
- url-loader: 4.1.1(file-loader@6.2.0)(webpack@5.91.0)
+ url-loader: 4.1.1(file-loader@6.2.0)(webpack@5.89.0)
uuid: 8.3.2
- webpack: 5.91.0(esbuild@0.19.12)
- webpack-dev-middleware: 4.3.0(webpack@5.91.0)
+ webpack: 5.89.0
+ webpack-dev-middleware: 4.3.0(webpack@5.89.0)
webpack-merge: 5.10.0
webpack-stats-plugin: 1.1.3
webpack-virtual-modules: 0.5.0
xstate: 4.38.3
- yaml-loader: 0.8.1
+ yaml-loader: 0.8.0
optionalDependencies:
gatsby-sharp: 1.13.0
transitivePeerDependencies:
@@ -19657,7 +19167,6 @@ packages:
- webpack-dev-server
- webpack-hot-middleware
- webpack-plugin-serve
- dev: false
/gauge@3.0.2:
resolution: {integrity: sha512-+5J6MS/5XksCuXq++uFRsnUd7Ovu1XenbeuIuNRJxYWjgQbPuFhT14lAvsWfqfAmnwluf1OwMjz39HjfLPci0Q==}
@@ -19711,13 +19220,13 @@ packages:
resolution: {integrity: sha512-aG8h9bJccGusioPsEWsEqx8qdXpZN71A20WCvRKGxcnHSOWLKmC5ZmsAmodfxb9TRQvs+89KikGuPzxchhA+Uw==}
engines: {browsers: defaults, node: '>=10.19'}
dependencies:
- '@petamoriken/float16': 3.8.6
+ '@petamoriken/float16': 3.8.4
lerc: 3.0.0
lru-cache: 6.0.0
pako: 2.1.0
parse-headers: 2.0.5
- web-worker: 1.3.0
- xml-utils: 1.8.0
+ web-worker: 1.2.0
+ xml-utils: 1.7.0
dev: false
/get-amd-module-type@5.0.1:
@@ -19735,20 +19244,18 @@ packages:
/get-func-name@2.0.2:
resolution: {integrity: sha512-8vXOvuE167CtIc3OyItco7N/dpRtBbYOsPsXCz7X/PMnlGjYjSGuZJgM1Y7mmew7BKf9BqvLX2tnOVy1BBUsxQ==}
- /get-intrinsic@1.2.4:
- resolution: {integrity: sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==}
- engines: {node: '>= 0.4'}
+ /get-intrinsic@1.2.2:
+ resolution: {integrity: sha512-0gSo4ml/0j98Y3lngkFEot/zhiCeWsbYIlZ+uZOVgzLyLaUw7wxUL+nCTP0XJvJg1AXulJRI3UJi8GsbDuxdGA==}
+ requiresBuild: true
dependencies:
- es-errors: 1.3.0
function-bind: 1.1.2
- has-proto: 1.0.3
+ has-proto: 1.0.1
has-symbols: 1.0.3
- hasown: 2.0.2
+ hasown: 2.0.0
/get-nonce@1.0.1:
resolution: {integrity: sha512-FJhYRoDaiatfEkUK8HKlicmu/3SGFD51q3itKDGoSTysQJBnfOcxU5GxnhE1E6soB76MbT0MBtnKJuXyAx+96Q==}
engines: {node: '>=6'}
- dev: true
/get-npm-tarball-url@2.1.0:
resolution: {integrity: sha512-ro+DiMu5DXgRBabqXupW38h7WPZ9+Ad8UjwhvsmmN8w1sU7ab0nzAXvVZ4kqYg57OrqomRtJvepX5/xvFKNtjA==}
@@ -19805,13 +19312,13 @@ packages:
resolution: {integrity: sha512-VaUJspBffn/LMCJVoMvSAdmscJyS1auj5Zulnn5UoYcY531UWmdwhRWkcGKnGU93m5HSXP9LP2usOryrBtQowA==}
engines: {node: '>=16'}
- /get-symbol-description@1.0.2:
- resolution: {integrity: sha512-g0QYk1dZBxGwk+Ngc+ltRH2IBp2f7zBkBMBJZCDerh6EhlhSR6+9irMCuT/09zD6qkarHUSn529sK/yL4S27mg==}
+ /get-symbol-description@1.0.0:
+ resolution: {integrity: sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==}
engines: {node: '>= 0.4'}
+ requiresBuild: true
dependencies:
- call-bind: 1.0.7
- es-errors: 1.3.0
- get-intrinsic: 1.2.4
+ call-bind: 1.0.5
+ get-intrinsic: 1.2.2
/get-value@2.0.6:
resolution: {integrity: sha512-Ln0UQDlxH1BapMu3GPtf7CuYNwRZf2gwCuPqbyG6pB8WfmFpzqcy4xtAaAMUhnNqjMKTiCPZG2oMT3YSx8U2NA==}
@@ -19831,21 +19338,21 @@ packages:
dependencies:
'@xhmikosr/downloader': 13.0.1
node-fetch: 3.3.2
- semver: 7.6.0
+ semver: 7.5.4
dev: false
- /giget@1.2.3:
- resolution: {integrity: sha512-8EHPljDvs7qKykr6uw8b+lqLiUc/vUg+KVTI0uND4s63TdsZM2Xus3mflvF0DDG9SiM4RlCkFGL+7aAjRmV7KA==}
+ /giget@1.2.1:
+ resolution: {integrity: sha512-4VG22mopWtIeHwogGSy1FViXVo0YT+m6BrqZfz0JJFwbSsePsCdOzdLIIli5BtMp7Xe8f/o2OmBpQX2NBOC24g==}
hasBin: true
dependencies:
citty: 0.1.6
consola: 3.2.3
defu: 6.1.4
- node-fetch-native: 1.6.4
- nypm: 0.3.8
+ node-fetch-native: 1.6.1
+ nypm: 0.3.4
ohash: 1.1.3
pathe: 1.1.2
- tar: 6.2.1
+ tar: 6.2.0
dev: true
/git-raw-commits@2.0.11:
@@ -19877,10 +19384,6 @@ packages:
ini: 1.3.8
dev: false
- /github-from-package@0.0.0:
- resolution: {integrity: sha512-SyHy3T1v2NUXn29OsWdxmK6RwHD+vkj3v8en8AOBZ1wBQ/hCAQ5bAQTD02kW4W9tUp/3Qh6J8r9EvntiyCmOOw==}
- dev: false
-
/github-slugger@1.5.0:
resolution: {integrity: sha512-wIh+gKBI9Nshz2o46B0B3f5k/W+WI9ZAv6y5Dn5WJ5SK1t0TnDimB4WE5rmTD05ZAIn8HALCZVmCsvj0w0v0lw==}
dev: true
@@ -19914,16 +19417,16 @@ packages:
/glob-to-regexp@0.4.1:
resolution: {integrity: sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==}
- /glob@10.3.12:
- resolution: {integrity: sha512-TCNv8vJ+xz4QiqTpfOJA7HvYv+tNIRHKfUWw/q+v2jdgN4ebz+KY9tGx5J4rHP0o84mNP+ApH66HRX8us3Khqg==}
+ /glob@10.3.10:
+ resolution: {integrity: sha512-fa46+tv1Ak0UPK1TOy/pZrIybNNt4HCv7SDzwyfiOZkvZLEbjsZkJBPtDHVshZjbecAoAGSC20MjLDG/qr679g==}
engines: {node: '>=16 || 14 >=14.17'}
hasBin: true
dependencies:
foreground-child: 3.1.1
jackspeak: 2.3.6
- minimatch: 9.0.4
+ minimatch: 9.0.3
minipass: 7.0.4
- path-scurry: 1.10.2
+ path-scurry: 1.10.1
/glob@7.2.3:
resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==}
@@ -20011,13 +19514,6 @@ packages:
resolution: {integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==}
engines: {node: '>=4'}
- /globals@12.4.0:
- resolution: {integrity: sha512-BWICuzzDvDoH54NHKCseDanAhE3CeDorgDL5MT6LMXXj2WCnd9UC2szdk4AWLfjdgNBCXLUanXYcpBBKOSWGwg==}
- engines: {node: '>=8'}
- dependencies:
- type-fest: 0.8.1
- dev: true
-
/globals@13.24.0:
resolution: {integrity: sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==}
engines: {node: '>=8'}
@@ -20027,6 +19523,7 @@ packages:
/globalthis@1.0.3:
resolution: {integrity: sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==}
engines: {node: '>= 0.4'}
+ requiresBuild: true
dependencies:
define-properties: 1.2.1
@@ -20037,7 +19534,7 @@ packages:
array-union: 2.1.0
dir-glob: 3.0.1
fast-glob: 3.3.2
- ignore: 5.3.1
+ ignore: 5.3.0
merge2: 1.4.1
slash: 3.0.0
@@ -20047,18 +19544,18 @@ packages:
dependencies:
dir-glob: 3.0.1
fast-glob: 3.3.2
- ignore: 5.3.1
+ ignore: 5.3.0
merge2: 1.4.1
slash: 4.0.0
dev: false
- /globby@14.0.1:
- resolution: {integrity: sha512-jOMLD2Z7MAhyG8aJpNOpmziMOP4rPLcc95oQPKXBazW82z+CEgPFBQvEpRUa1KeIMUJo4Wsm+q6uzO/Q/4BksQ==}
+ /globby@14.0.0:
+ resolution: {integrity: sha512-/1WM/LNHRAOH9lZta77uGbq0dAEQM+XjNesWwhlERDVenqothRbnzTrL3/LrIoEPPjeUHC3vrS6TwoyxeHs7MQ==}
engines: {node: '>=18'}
dependencies:
- '@sindresorhus/merge-streams': 2.3.0
+ '@sindresorhus/merge-streams': 1.0.0
fast-glob: 3.3.2
- ignore: 5.3.1
+ ignore: 5.3.0
path-type: 5.0.0
slash: 5.1.0
unicorn-magic: 0.1.0
@@ -20080,8 +19577,9 @@ packages:
/gopd@1.0.1:
resolution: {integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==}
+ requiresBuild: true
dependencies:
- get-intrinsic: 1.2.4
+ get-intrinsic: 1.2.2
/got@11.8.6:
resolution: {integrity: sha512-6tfZ91bOr7bOXnK7PRDCGBLa1H4U080YHNaAQ2KsMGlLEzRbk44nsZF2E1IeRc3vtJHPVbKCYgdFbaGO2ljd8g==}
@@ -20155,7 +19653,7 @@ packages:
graphql: 16.8.1
graphql-type-json: 0.3.2(graphql@16.8.1)
- /graphql-config@5.0.3(@types/node@18.0.0)(graphql@16.8.1)(typescript@5.3.3):
+ /graphql-config@5.0.3(@types/node@18.19.17)(graphql@16.8.1)(typescript@4.9.5):
resolution: {integrity: sha512-BNGZaoxIBkv9yy6Y7omvsaBUHOzfFcII3UN++tpH8MGOKFPFkCPZuwx09ggANMt8FgyWP1Od8SWPmrUEZca4NQ==}
engines: {node: '>= 16.0.0'}
peerDependencies:
@@ -20165,13 +19663,13 @@ packages:
cosmiconfig-toml-loader:
optional: true
dependencies:
- '@graphql-tools/graphql-file-loader': 8.0.1(graphql@16.8.1)
- '@graphql-tools/json-file-loader': 8.0.1(graphql@16.8.1)
- '@graphql-tools/load': 8.0.2(graphql@16.8.1)
- '@graphql-tools/merge': 9.0.3(graphql@16.8.1)
- '@graphql-tools/url-loader': 8.0.2(@types/node@18.0.0)(graphql@16.8.1)
- '@graphql-tools/utils': 10.1.2(graphql@16.8.1)
- cosmiconfig: 8.3.6(typescript@5.3.3)
+ '@graphql-tools/graphql-file-loader': 8.0.0(graphql@16.8.1)
+ '@graphql-tools/json-file-loader': 8.0.0(graphql@16.8.1)
+ '@graphql-tools/load': 8.0.1(graphql@16.8.1)
+ '@graphql-tools/merge': 9.0.1(graphql@16.8.1)
+ '@graphql-tools/url-loader': 8.0.1(@types/node@18.19.17)(graphql@16.8.1)
+ '@graphql-tools/utils': 10.0.12(graphql@16.8.1)
+ cosmiconfig: 8.3.6(typescript@4.9.5)
graphql: 16.8.1
jiti: 1.21.0
minimatch: 4.2.3
@@ -20183,8 +19681,9 @@ packages:
- encoding
- typescript
- utf-8-validate
+ dev: false
- /graphql-config@5.0.3(@types/node@18.19.31)(graphql@16.8.1)(typescript@4.9.5):
+ /graphql-config@5.0.3(@types/node@18.19.17)(graphql@16.8.1)(typescript@5.4.2):
resolution: {integrity: sha512-BNGZaoxIBkv9yy6Y7omvsaBUHOzfFcII3UN++tpH8MGOKFPFkCPZuwx09ggANMt8FgyWP1Od8SWPmrUEZca4NQ==}
engines: {node: '>= 16.0.0'}
peerDependencies:
@@ -20194,13 +19693,13 @@ packages:
cosmiconfig-toml-loader:
optional: true
dependencies:
- '@graphql-tools/graphql-file-loader': 8.0.1(graphql@16.8.1)
- '@graphql-tools/json-file-loader': 8.0.1(graphql@16.8.1)
- '@graphql-tools/load': 8.0.2(graphql@16.8.1)
- '@graphql-tools/merge': 9.0.3(graphql@16.8.1)
- '@graphql-tools/url-loader': 8.0.2(@types/node@18.19.31)(graphql@16.8.1)
- '@graphql-tools/utils': 10.1.2(graphql@16.8.1)
- cosmiconfig: 8.3.6(typescript@4.9.5)
+ '@graphql-tools/graphql-file-loader': 8.0.0(graphql@16.8.1)
+ '@graphql-tools/json-file-loader': 8.0.0(graphql@16.8.1)
+ '@graphql-tools/load': 8.0.1(graphql@16.8.1)
+ '@graphql-tools/merge': 9.0.1(graphql@16.8.1)
+ '@graphql-tools/url-loader': 8.0.1(@types/node@18.19.17)(graphql@16.8.1)
+ '@graphql-tools/utils': 10.0.12(graphql@16.8.1)
+ cosmiconfig: 8.3.6(typescript@5.4.2)
graphql: 16.8.1
jiti: 1.21.0
minimatch: 4.2.3
@@ -20214,7 +19713,7 @@ packages:
- utf-8-validate
dev: false
- /graphql-config@5.0.3(@types/node@18.19.31)(graphql@16.8.1)(typescript@5.4.4):
+ /graphql-config@5.0.3(@types/node@18.19.4)(graphql@16.8.1)(typescript@5.3.3):
resolution: {integrity: sha512-BNGZaoxIBkv9yy6Y7omvsaBUHOzfFcII3UN++tpH8MGOKFPFkCPZuwx09ggANMt8FgyWP1Od8SWPmrUEZca4NQ==}
engines: {node: '>= 16.0.0'}
peerDependencies:
@@ -20224,13 +19723,13 @@ packages:
cosmiconfig-toml-loader:
optional: true
dependencies:
- '@graphql-tools/graphql-file-loader': 8.0.1(graphql@16.8.1)
- '@graphql-tools/json-file-loader': 8.0.1(graphql@16.8.1)
- '@graphql-tools/load': 8.0.2(graphql@16.8.1)
- '@graphql-tools/merge': 9.0.3(graphql@16.8.1)
- '@graphql-tools/url-loader': 8.0.2(@types/node@18.19.31)(graphql@16.8.1)
- '@graphql-tools/utils': 10.1.2(graphql@16.8.1)
- cosmiconfig: 8.3.6(typescript@5.4.4)
+ '@graphql-tools/graphql-file-loader': 8.0.0(graphql@16.8.1)
+ '@graphql-tools/json-file-loader': 8.0.0(graphql@16.8.1)
+ '@graphql-tools/load': 8.0.1(graphql@16.8.1)
+ '@graphql-tools/merge': 9.0.1(graphql@16.8.1)
+ '@graphql-tools/url-loader': 8.0.1(@types/node@18.19.4)(graphql@16.8.1)
+ '@graphql-tools/utils': 10.0.12(graphql@16.8.1)
+ cosmiconfig: 8.3.6(typescript@5.3.3)
graphql: 16.8.1
jiti: 1.21.0
minimatch: 4.2.3
@@ -20242,7 +19741,6 @@ packages:
- encoding
- typescript
- utf-8-validate
- dev: false
/graphql-http@1.22.0(graphql@16.8.1):
resolution: {integrity: sha512-9RBUlGJWBFqz9LwfpmAbjJL/8j/HCNkZwPBU5+Bfmwez+1Ay43DocMNQYpIWsWqH0Ftv6PTNAh2aRnnMCBJgLw==}
@@ -20280,8 +19778,8 @@ packages:
dependencies:
graphql: 16.8.1
- /graphql-ws@5.16.0(graphql@16.8.1):
- resolution: {integrity: sha512-Ju2RCU2dQMgSKtArPbEtsK5gNLnsQyTNIo/T7cZNp96niC1x0KdJNZV0TIoilceBPQwfb5itrGl8pkFeOUMl4A==}
+ /graphql-ws@5.14.3(graphql@16.8.1):
+ resolution: {integrity: sha512-F/i2xNIVbaEF2xWggID0X/UZQa2V8kqKDPO8hwmu53bVOcTL7uNkxnexeEgSCVxYBQUTUNEI8+e4LO1FOhKPKQ==}
engines: {node: '>=10'}
peerDependencies:
graphql: '>=0.11 <=16'
@@ -20323,14 +19821,14 @@ packages:
/h3@1.11.1:
resolution: {integrity: sha512-AbaH6IDnZN6nmbnJOH72y3c5Wwh9P97soSVdGSBbcDACRdkC0FEWf25pzx4f/NuOCK6quHmW18yF2Wx+G4Zi1A==}
dependencies:
- cookie-es: 1.1.0
+ cookie-es: 1.0.0
crossws: 0.2.4
defu: 6.1.4
destr: 2.0.3
- iron-webcrypto: 1.1.0
+ iron-webcrypto: 1.0.0
ohash: 1.1.3
- radix3: 1.1.2
- ufo: 1.5.3
+ radix3: 1.1.0
+ ufo: 1.4.0
uncrypto: 0.1.3
unenv: 1.9.0
transitivePeerDependencies:
@@ -20366,10 +19864,12 @@ packages:
/has-bigints@1.0.2:
resolution: {integrity: sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==}
+ requiresBuild: true
/has-flag@3.0.0:
resolution: {integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==}
engines: {node: '>=4'}
+ requiresBuild: true
/has-flag@4.0.0:
resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==}
@@ -20380,22 +19880,25 @@ packages:
engines: {node: '>=8'}
dev: false
- /has-property-descriptors@1.0.2:
- resolution: {integrity: sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==}
+ /has-property-descriptors@1.0.1:
+ resolution: {integrity: sha512-VsX8eaIewvas0xnvinAe9bw4WfIeODpGYikiWYLH+dma0Jw6KHYqWiWfhQlgOVK8D6PvjubK5Uc4P0iIhIcNVg==}
dependencies:
- es-define-property: 1.0.0
+ get-intrinsic: 1.2.2
- /has-proto@1.0.3:
- resolution: {integrity: sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q==}
+ /has-proto@1.0.1:
+ resolution: {integrity: sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==}
engines: {node: '>= 0.4'}
+ requiresBuild: true
/has-symbols@1.0.3:
resolution: {integrity: sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==}
engines: {node: '>= 0.4'}
+ requiresBuild: true
- /has-tostringtag@1.0.2:
- resolution: {integrity: sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==}
+ /has-tostringtag@1.0.0:
+ resolution: {integrity: sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==}
engines: {node: '>= 0.4'}
+ requiresBuild: true
dependencies:
has-symbols: 1.0.3
@@ -20461,9 +19964,10 @@ packages:
is-stream: 2.0.1
type-fest: 0.8.1
- /hasown@2.0.2:
- resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==}
+ /hasown@2.0.0:
+ resolution: {integrity: sha512-vUptKVTpIJhcczKBbgnS+RtcuYMB8+oNzPK2/Hp3hanz8JmpATdmmgLgSaadVREkDm+e2giHwY3ZRkyjSIDDFA==}
engines: {node: '>= 0.4'}
+ requiresBuild: true
dependencies:
function-bind: 1.1.2
@@ -20472,7 +19976,7 @@ packages:
dependencies:
'@types/unist': 2.0.10
comma-separated-tokens: 2.0.3
- property-information: 6.5.0
+ property-information: 6.4.0
space-separated-tokens: 2.0.2
style-to-object: 0.4.4
web-namespaces: 2.0.1
@@ -20497,10 +20001,10 @@ packages:
/hast-util-from-parse5@7.1.2:
resolution: {integrity: sha512-Nz7FfPBuljzsN3tCQ4kCBKqdNhQE2l0Tn+X1ubgKBPRoiDIu1mL08Cfw4k7q71+Duyaw7DXDN+VTAp4Vh3oCOw==}
dependencies:
- '@types/hast': 2.3.10
+ '@types/hast': 2.3.9
'@types/unist': 2.0.10
hastscript: 7.2.0
- property-information: 6.5.0
+ property-information: 6.4.0
vfile: 5.3.7
vfile-location: 4.1.0
web-namespaces: 2.0.1
@@ -20517,7 +20021,7 @@ packages:
/hast-util-heading-rank@2.1.1:
resolution: {integrity: sha512-iAuRp+ESgJoRFJbSyaqsfvJDY6zzmFoEnL1gtz1+U8gKtGGj1p0CVlysuUAUjq95qlZESHINLThwJzNGmgGZxA==}
dependencies:
- '@types/hast': 2.3.10
+ '@types/hast': 2.3.9
dev: false
/hast-util-is-element@1.1.0:
@@ -20538,13 +20042,13 @@ packages:
/hast-util-parse-selector@3.1.1:
resolution: {integrity: sha512-jdlwBjEexy1oGz0aJ2f4GKMaVKkA9jwjr4MjAAI22E5fM/TXVZHuS5OpONtdeIkRKqAaryQ2E9xNQxijoThSZA==}
dependencies:
- '@types/hast': 2.3.10
+ '@types/hast': 2.3.9
dev: false
/hast-util-raw@7.2.3:
resolution: {integrity: sha512-RujVQfVsOrxzPOPSzZFiwofMArbQke6DJjnFfceiEbFh7S05CbPt0cYN+A5YeD3pso0JQk6O1aHBnx9+Pm2uqg==}
dependencies:
- '@types/hast': 2.3.10
+ '@types/hast': 2.3.9
'@types/parse5': 6.0.3
hast-util-from-parse5: 7.1.2
hast-util-to-parse5: 7.1.0
@@ -20560,7 +20064,7 @@ packages:
/hast-util-sanitize@4.1.0:
resolution: {integrity: sha512-Hd9tU0ltknMGRDv+d6Ro/4XKzBqQnP/EZrpiTbpFYfXv/uOhWeKc+2uajcbEvAEH98VZd7eII2PiXm13RihnLw==}
dependencies:
- '@types/hast': 2.3.10
+ '@types/hast': 2.3.9
dev: false
/hast-util-select@5.0.5:
@@ -20577,7 +20081,7 @@ packages:
hast-util-whitespace: 2.0.1
not: 0.1.0
nth-check: 2.1.1
- property-information: 6.5.0
+ property-information: 6.4.0
space-separated-tokens: 2.0.2
unist-util-visit: 4.1.2
zwitch: 2.0.4
@@ -20601,16 +20105,16 @@ packages:
/hast-util-to-html@8.0.4:
resolution: {integrity: sha512-4tpQTUOr9BMjtYyNlt0P50mH7xj0Ks2xpo8M943Vykljf99HW6EzulIoJP1N3eKOSScEHzyzi9dm7/cn0RfGwA==}
dependencies:
- '@types/hast': 2.3.10
+ '@types/hast': 2.3.9
'@types/unist': 2.0.10
ccount: 2.0.1
comma-separated-tokens: 2.0.3
hast-util-raw: 7.2.3
hast-util-whitespace: 2.0.1
html-void-elements: 2.0.1
- property-information: 6.5.0
+ property-information: 6.4.0
space-separated-tokens: 2.0.2
- stringify-entities: 4.0.4
+ stringify-entities: 4.0.3
zwitch: 2.0.4
dev: false
@@ -20634,9 +20138,9 @@ packages:
/hast-util-to-parse5@7.1.0:
resolution: {integrity: sha512-YNRgAJkH2Jky5ySkIqFXTQiaqcAtJyVE+D5lkN6CdtOqrnkLfGYYrEcKuHOJZlp+MwjSwuD3fZuawI+sic/RBw==}
dependencies:
- '@types/hast': 2.3.10
+ '@types/hast': 2.3.9
comma-separated-tokens: 2.0.3
- property-information: 6.5.0
+ property-information: 6.4.0
space-separated-tokens: 2.0.2
web-namespaces: 2.0.1
zwitch: 2.0.4
@@ -20676,10 +20180,10 @@ packages:
/hastscript@7.2.0:
resolution: {integrity: sha512-TtYPq24IldU8iKoJQqvZOuhi5CyCQRAbvDOX0x1eW6rsHSxa/1i2CCiptNTotGHJ3VoHRGmqiv6/D3q113ikkw==}
dependencies:
- '@types/hast': 2.3.10
+ '@types/hast': 2.3.9
comma-separated-tokens: 2.0.3
hast-util-parse-selector: 3.1.1
- property-information: 6.5.0
+ property-information: 6.4.0
space-separated-tokens: 2.0.2
dev: false
@@ -20696,10 +20200,10 @@ packages:
/history@4.10.1:
resolution: {integrity: sha512-36nwAD620w12kuzPAsyINPWJqlNbij+hpK1k9XRloDtym8mxzGYl2c17LnV6IAGB2Dmg4tEa7G7DlawS0+qjew==}
dependencies:
- '@babel/runtime': 7.24.4
+ '@babel/runtime': 7.23.7
loose-envify: 1.4.0
resolve-pathname: 3.0.0
- tiny-invariant: 1.3.3
+ tiny-invariant: 1.3.1
tiny-warning: 1.0.3
value-equal: 1.0.1
dev: false
@@ -20735,7 +20239,7 @@ packages:
resolution: {integrity: sha512-+K84LB1DYwMHoHSgaOY/Jfhw3ucPmSET5v98Ke/HdNSw4a0UktWzyW1mjhjpuxxTqOOsfWT/7iVshHmVZ4IpOA==}
engines: {node: ^16.14.0 || >=18.0.0}
dependencies:
- lru-cache: 10.2.0
+ lru-cache: 10.1.0
dev: false
/hot-shots@10.0.0:
@@ -20749,8 +20253,8 @@ packages:
resolution: {integrity: sha512-ycJQMRaRPBcfnoT1gS5I1XCvbbw9KO94Y0vkwksuOjcJMqNZtb03MF2tCItLI2mQbkZWSSeFinoRDPmjzv4tKg==}
dev: true
- /html-entities@2.5.2:
- resolution: {integrity: sha512-K//PSRMQk4FZ78Kyau+mZurHn3FH0Vwr+H36eE0rPbeYkRRi9YxceYPhuN60UwWorxyKHhqoAJl2OFKa4BVtaA==}
+ /html-entities@2.4.0:
+ resolution: {integrity: sha512-igBTJcNNNhvZFRtm8uA6xMY6xYleeDwn3PeBCkDz7tHttv4F2hsDI2aPgNERWzvRcNYHNT3ymRaQzllmXj4YsQ==}
/html-escaper@2.0.2:
resolution: {integrity: sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==}
@@ -20834,11 +20338,11 @@ packages:
dev: false
optional: true
- /http-proxy-agent@7.0.2:
- resolution: {integrity: sha512-T1gkAiYYDWYx3V5Bmyu7HcfcvL7mUrTWiM6yOfa3PIphViJ/gFPbvidQ+veqSOHci/PxBcDabeUNCzpOODJZig==}
+ /http-proxy-agent@7.0.0:
+ resolution: {integrity: sha512-+ZT+iBxVUQ1asugqnD6oWoRiS25AkjNfG085dKJGtGxkdwLQrMKU5wJr2bOOFAXzKcTuqq+7fZlTMgG3SRfIYQ==}
engines: {node: '>= 14'}
dependencies:
- agent-base: 7.1.1
+ agent-base: 7.1.0
debug: 4.3.4
transitivePeerDependencies:
- supports-color
@@ -20885,7 +20389,7 @@ packages:
engines: {node: '>=8.0.0'}
dependencies:
eventemitter3: 4.0.7
- follow-redirects: 1.15.6
+ follow-redirects: 1.15.4
requires-port: 1.0.0
transitivePeerDependencies:
- debug
@@ -20896,7 +20400,7 @@ packages:
engines: {node: '>=8.0.0'}
dependencies:
eventemitter3: 4.0.7
- follow-redirects: 1.15.6(debug@4.3.4)
+ follow-redirects: 1.15.4(debug@4.3.4)
requires-port: 1.0.0
transitivePeerDependencies:
- debug
@@ -20913,7 +20417,7 @@ packages:
dependencies:
delay: 5.0.0
p-wait-for: 3.2.0
- roarr: 7.21.1
+ roarr: 7.21.0
type-fest: 2.19.0
dev: false
@@ -20961,11 +20465,11 @@ packages:
- supports-color
dev: false
- /https-proxy-agent@7.0.4:
- resolution: {integrity: sha512-wlwpilI7YdjSkWaQ/7omYBMTliDcmCN8OLihO6I9B86g06lMyAoqgoDpV0XqoaPOKj+0DIdAvnsWfyAAhmimcg==}
+ /https-proxy-agent@7.0.2:
+ resolution: {integrity: sha512-NmLNjm6ucYwtcUmL7JQC1ZQ57LmHP4lT15FQ8D61nak1rO6DH+fz5qNK2Ap5UN4ZapYICE3/0KodcLYSPsPbaA==}
engines: {node: '>= 14'}
dependencies:
- agent-base: 7.1.1
+ agent-base: 7.1.0
debug: 4.3.4
transitivePeerDependencies:
- supports-color
@@ -20996,6 +20500,7 @@ packages:
resolution: {integrity: sha512-+dQSyqPh4x1hlO1swXBiNb2HzTDN1I2IGLQx1GrBuiqFJfoMrnZWwVmatvSiO+Iz8fBUnf+lekwNo4c2LlXItg==}
engines: {node: '>=14'}
hasBin: true
+ requiresBuild: true
dev: true
/iconv-lite@0.4.24:
@@ -21010,13 +20515,13 @@ packages:
dependencies:
safer-buffer: 2.1.2
- /icss-utils@5.1.0(postcss@8.4.38):
+ /icss-utils@5.1.0(postcss@8.4.32):
resolution: {integrity: sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==}
engines: {node: ^10 || ^12 || >= 14}
peerDependencies:
postcss: ^8.1.0
dependencies:
- postcss: 8.4.38
+ postcss: 8.4.32
/ieee754@1.2.1:
resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==}
@@ -21044,9 +20549,10 @@ packages:
/ignore@4.0.6:
resolution: {integrity: sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==}
engines: {node: '>= 4'}
+ requiresBuild: true
- /ignore@5.3.1:
- resolution: {integrity: sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw==}
+ /ignore@5.3.0:
+ resolution: {integrity: sha512-g7dmpshy+gD7mh88OC9NwSGTKoc3kyLAZQRU1mt53Aw/vnvfXnbC+F/7F7QoYVKbV+KNvJx8wArewKy1vXMtlg==}
engines: {node: '>= 4'}
/image-meta@0.2.0:
@@ -21109,6 +20615,7 @@ packages:
/imurmurhash@0.1.4:
resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==}
engines: {node: '>=0.8.19'}
+ requiresBuild: true
/indent-string@4.0.0:
resolution: {integrity: sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==}
@@ -21233,13 +20740,13 @@ packages:
kind-of: 6.0.3
dev: false
- /internal-slot@1.0.7:
- resolution: {integrity: sha512-NGnrKwXzSms2qUUih/ILZ5JBqNTSa1+ZmP6flaIp6KmSElgE9qdndzS3cqjrDovwFdmwsGsLdeFgB6suw+1e9g==}
+ /internal-slot@1.0.6:
+ resolution: {integrity: sha512-Xj6dv+PsbtwyPpEflsejS+oIZxmMlV44zAhG479uYu89MsjcYOhCFnNyKrkJrihbsiasQyY0afoCl/9BLR65bg==}
engines: {node: '>= 0.4'}
dependencies:
- es-errors: 1.3.0
- hasown: 2.0.2
- side-channel: 1.0.6
+ get-intrinsic: 1.2.2
+ hasown: 2.0.0
+ side-channel: 1.0.4
/intl-messageformat@10.5.11:
resolution: {integrity: sha512-eYq5fkFBVxc7GIFDzpFQkDOZgNayNTQn4Oufe8jw6YY6OHVw70/4pA3FyCsQ0Gb2DnvEJEMmN2tOaXUGByM+kg==}
@@ -21255,24 +20762,31 @@ packages:
dependencies:
loose-envify: 1.4.0
- /ip-address@9.0.5:
- resolution: {integrity: sha512-zHtQzGojZXTwZTHQqra+ETKd4Sn3vgi7uBmlPoXVWZqYvuKmtI0l/VZTjqGmJY9x88GGOaZ9+G9ES8hC4T4X8g==}
- engines: {node: '>= 12'}
- requiresBuild: true
+ /ioredis@5.3.2:
+ resolution: {integrity: sha512-1DKMMzlIHM02eBBVOFQ1+AolGjs6+xEcM4PDL7NqOS6szq7H9jSaEkIUH6/a5Hl241LzW6JLSiAbNvTQjUupUA==}
+ engines: {node: '>=12.22.0'}
dependencies:
- jsbn: 1.1.0
- sprintf-js: 1.1.3
+ '@ioredis/commands': 1.2.0
+ cluster-key-slot: 1.1.2
+ debug: 4.3.4
+ denque: 2.1.0
+ lodash.defaults: 4.2.0
+ lodash.isarguments: 3.1.0
+ redis-errors: 1.2.0
+ redis-parser: 3.0.0
+ standard-as-callback: 2.1.0
+ transitivePeerDependencies:
+ - supports-color
dev: false
- optional: true
/ip-regex@4.3.0:
resolution: {integrity: sha512-B9ZWJxHHOHUhUjCPrMpLD4xEq35bUTClHM1S6CBU5ixQnkZmwipwgc96vAd7AAGM9TGHvJR+Uss+/Ak6UphK+Q==}
engines: {node: '>=8'}
dev: false
- /ip@2.0.1:
- resolution: {integrity: sha512-lJUL9imLTNi1ZfXT+DU6rBBdbiKGBuay9B6xGSPVjUeQwaH1RIGqef8RZkUtHioLmSNpPR5M4HVKJGm1j8FWVQ==}
- dev: true
+ /ip@2.0.0:
+ resolution: {integrity: sha512-WKa+XuLG1A1R0UWhl2+1XQSi+fZWMsYKffMZTTYsiZaUD8k2yDAj5atimTUD2TZkyCkNEeYE5NhFZmupOGtjYQ==}
+ requiresBuild: true
/ipaddr.js@1.9.1:
resolution: {integrity: sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==}
@@ -21291,13 +20805,13 @@ packages:
h3: 1.11.1
image-meta: 0.2.0
listhen: 1.7.2
- ofetch: 1.3.4
+ ofetch: 1.3.3
pathe: 1.1.2
sharp: 0.33.1
svgo: 3.2.0
- ufo: 1.5.3
- unstorage: 1.10.2(@netlify/blobs@7.0.1)
- xss: 1.0.15
+ ufo: 1.4.0
+ unstorage: 1.10.1(@netlify/blobs@7.0.1)
+ xss: 1.0.14
transitivePeerDependencies:
- '@azure/app-configuration'
- '@azure/cosmos'
@@ -21311,12 +20825,12 @@ packages:
- '@upstash/redis'
- '@vercel/kv'
- idb-keyval
- - ioredis
+ - supports-color
- uWebSockets.js
dev: false
- /iron-webcrypto@1.1.0:
- resolution: {integrity: sha512-5vgYsCakNlaQub1orZK5QmNYhwYtcllTkZBp5sfIaCqY93Cf6l+v2rtE+E4TMbcfjxDMCdrO8wmp7+ZvhDECLA==}
+ /iron-webcrypto@1.0.0:
+ resolution: {integrity: sha512-anOK1Mktt8U1Xi7fCM3RELTuYbnFikQY5VtrDj7kPgpejV7d43tWKhzgioO0zpkazLEL/j/iayRqnJhrGfqUsg==}
dev: false
/is-absolute-url@3.0.3:
@@ -21334,7 +20848,7 @@ packages:
resolution: {integrity: sha512-YBUanLI8Yoihw923YeFUS5fs0fF2f5TSFTNiYAAzhhDscDa3lEqYuz1pDOEP5KvX94I9ey3vsqjJcLVFVU+3QA==}
engines: {node: '>= 0.10'}
dependencies:
- hasown: 2.0.2
+ hasown: 2.0.0
dev: false
/is-alphabetical@1.0.4:
@@ -21357,31 +20871,34 @@ packages:
resolution: {integrity: sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==}
engines: {node: '>= 0.4'}
dependencies:
- call-bind: 1.0.7
- has-tostringtag: 1.0.2
+ call-bind: 1.0.5
+ has-tostringtag: 1.0.0
dev: true
- /is-array-buffer@3.0.4:
- resolution: {integrity: sha512-wcjaerHw0ydZwfhiKbXJWLDY8A7yV7KhjQOpb83hGgGfId/aQa4TOvwyzn2PuswW2gPCYEL/nEAiSVpdOj1lXw==}
- engines: {node: '>= 0.4'}
+ /is-array-buffer@3.0.2:
+ resolution: {integrity: sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w==}
+ requiresBuild: true
dependencies:
- call-bind: 1.0.7
- get-intrinsic: 1.2.4
+ call-bind: 1.0.5
+ get-intrinsic: 1.2.2
+ is-typed-array: 1.1.12
/is-arrayish@0.2.1:
resolution: {integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==}
/is-arrayish@0.3.2:
resolution: {integrity: sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==}
+ requiresBuild: true
/is-async-function@2.0.0:
resolution: {integrity: sha512-Y1JXKrfykRJGdlDwdKlLpLyMIiWqWvuSd17TvZk68PLAOGOoF4Xyav1z0Xhoi+gCYjZVeC5SI+hYFOfvXmGRCA==}
engines: {node: '>= 0.4'}
dependencies:
- has-tostringtag: 1.0.2
+ has-tostringtag: 1.0.0
/is-bigint@1.0.4:
resolution: {integrity: sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==}
+ requiresBuild: true
dependencies:
has-bigints: 1.0.2
@@ -21389,14 +20906,15 @@ packages:
resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==}
engines: {node: '>=8'}
dependencies:
- binary-extensions: 2.3.0
+ binary-extensions: 2.2.0
/is-boolean-object@1.1.2:
resolution: {integrity: sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==}
engines: {node: '>= 0.4'}
+ requiresBuild: true
dependencies:
- call-bind: 1.0.7
- has-tostringtag: 1.0.2
+ call-bind: 1.0.5
+ has-tostringtag: 1.0.0
/is-buffer@1.1.6:
resolution: {integrity: sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==}
@@ -21417,6 +20935,7 @@ packages:
/is-callable@1.2.7:
resolution: {integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==}
engines: {node: '>= 0.4'}
+ requiresBuild: true
/is-ci@2.0.0:
resolution: {integrity: sha512-YfJT7rkpQB0updsdHLGWrvhBJfcfzNNawYDNIyQXJz0IViGf75O8EBPKSdvw2rF+LGCsX4FZ8tcr3b19LcZq4w==}
@@ -21434,26 +20953,21 @@ packages:
/is-core-module@2.13.1:
resolution: {integrity: sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==}
dependencies:
- hasown: 2.0.2
+ hasown: 2.0.0
/is-data-descriptor@1.0.1:
resolution: {integrity: sha512-bc4NlCDiCr28U4aEsQ3Qs2491gVq4V8G7MQyws968ImqjKuYtTJXrl7Vq7jsN7Ly/C3xj5KWFrY7sHNeDkAzXw==}
engines: {node: '>= 0.4'}
dependencies:
- hasown: 2.0.2
+ hasown: 2.0.0
dev: false
- /is-data-view@1.0.1:
- resolution: {integrity: sha512-AHkaJrsUVW6wq6JS8y3JnM/GJF/9cf+k20+iDzlSaJrinEo5+7vRiteOSwBhHRiAyQATN1AmY4hwzxJKPmYf+w==}
- engines: {node: '>= 0.4'}
- dependencies:
- is-typed-array: 1.1.13
-
/is-date-object@1.0.5:
resolution: {integrity: sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==}
engines: {node: '>= 0.4'}
+ requiresBuild: true
dependencies:
- has-tostringtag: 1.0.2
+ has-tostringtag: 1.0.0
/is-decimal@1.0.4:
resolution: {integrity: sha512-RGdriMmQQvZ2aqaQq3awNA6dCGtKpiDFcOzrTWrDAT2MiWrKQVPmxLGHl7Y2nNu6led0kEyoX0enY0qXYsv9zw==}
@@ -21512,7 +21026,7 @@ packages:
/is-finalizationregistry@1.0.2:
resolution: {integrity: sha512-0by5vtUJs8iFQb5TYUHHPudOR+qXYIMKtiUzvLIZITZUjknFmziyBJuLhVRc+Ds0dREFlskDNJKYIdIzu/9pfw==}
dependencies:
- call-bind: 1.0.7
+ call-bind: 1.0.5
/is-fullwidth-code-point@2.0.0:
resolution: {integrity: sha512-VHskAKYM8RfSFXwee5t5cbN5PZeq1Wrh6qd5bkyiXIf6UQcN6w/A0eXM9r6t8d+GYOh+o6ZhiEnb88LN/Y8m2w==}
@@ -21536,7 +21050,7 @@ packages:
resolution: {integrity: sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==}
engines: {node: '>= 0.4'}
dependencies:
- has-tostringtag: 1.0.2
+ has-tostringtag: 1.0.0
/is-glob@2.0.1:
resolution: {integrity: sha512-a1dBeB19NXsf/E0+FHqkagizel/LQw2DjSQpvQrj3zT+jYPpaUCryPnrQajXKFLCMuf4I6FhRpaGtw4lPrG6Eg==}
@@ -21609,21 +21123,21 @@ packages:
dependencies:
tslib: 2.6.2
- /is-map@2.0.3:
- resolution: {integrity: sha512-1Qed0/Hr2m+YqxnM09CjA2d/i6YZNfF6R2oRAOj36eUdS6qIV/huPJNSEpKbupewFs+ZsJlxsjjPbc0/afW6Lw==}
- engines: {node: '>= 0.4'}
+ /is-map@2.0.2:
+ resolution: {integrity: sha512-cOZFQQozTha1f4MxLFzlgKYPTyj26picdZTx82hbc/Xf4K/tZOOXSCkMvU4pKioRXGDLJRn0GM7Upe7kR721yg==}
/is-nan@1.3.2:
resolution: {integrity: sha512-E+zBKpQ2t6MEo1VsonYmluk9NxGrbzpeeLC2xIViuO2EjU2xsXsBPwTr3Ykv9l08UYEVEdWeRZNouaZqF6RN0w==}
engines: {node: '>= 0.4'}
dependencies:
- call-bind: 1.0.7
+ call-bind: 1.0.5
define-properties: 1.2.1
dev: true
- /is-negative-zero@2.0.3:
- resolution: {integrity: sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw==}
+ /is-negative-zero@2.0.2:
+ resolution: {integrity: sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==}
engines: {node: '>= 0.4'}
+ requiresBuild: true
/is-npm@6.0.0:
resolution: {integrity: sha512-JEjxbSmtPSt1c8XTkVrlujcXdKV1/tvuQ7GwKcAlyiVLeYFQ2VHat8xfrDJsIkhCdF/tZ7CiIR3sy141c6+gPQ==}
@@ -21633,8 +21147,9 @@ packages:
/is-number-object@1.0.7:
resolution: {integrity: sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==}
engines: {node: '>= 0.4'}
+ requiresBuild: true
dependencies:
- has-tostringtag: 1.0.2
+ has-tostringtag: 1.0.0
/is-number@3.0.0:
resolution: {integrity: sha512-4cboCqIpliH+mAvFNegjZQ4kgKc3ZUhQVr3HvWbSh5q3WH2v82ct+T2Y1hdU5Gdtorx/cLifQjqCbL7bpznLTg==}
@@ -21709,9 +21224,10 @@ packages:
/is-regex@1.1.4:
resolution: {integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==}
engines: {node: '>= 0.4'}
+ requiresBuild: true
dependencies:
- call-bind: 1.0.7
- has-tostringtag: 1.0.2
+ call-bind: 1.0.5
+ has-tostringtag: 1.0.0
/is-relative-url@3.0.0:
resolution: {integrity: sha512-U1iSYRlY2GIMGuZx7gezlB5dp1Kheaym7zKzO1PV06mOihiWTXejLwm4poEJysPyXF+HtK/BEd0DVlcCh30pEA==}
@@ -21729,15 +21245,14 @@ packages:
resolution: {integrity: sha512-AGOriNp96vNBd3HtU+RzFEc75FfR5ymiYv8E553I71SCeXBiMsVDUtdio1OEFvrPyLIQ9tVR5RxXIFe5PUFjMg==}
engines: {node: '>=6'}
- /is-set@2.0.3:
- resolution: {integrity: sha512-iPAjerrse27/ygGLxw+EBR9agv9Y6uLeYVJMu+QNCoouJ1/1ri0mGrcWpfCqFZuzzx3WjtwxG098X+n4OuRkPg==}
- engines: {node: '>= 0.4'}
+ /is-set@2.0.2:
+ resolution: {integrity: sha512-+2cnTEZeY5z/iXGbLhPrOAaK/Mau5k5eXq9j14CpRTftq0pAJu2MwVRSZhyZWBzx3o6X795Lz6Bpb6R0GKf37g==}
- /is-shared-array-buffer@1.0.3:
- resolution: {integrity: sha512-nA2hv5XIhLR3uVzDDfCIknerhx8XUKnstuOERPNNIinXG7v9u+ohXF67vxm4TPTEPU6lm61ZkwP3c9PCB97rhg==}
- engines: {node: '>= 0.4'}
+ /is-shared-array-buffer@1.0.2:
+ resolution: {integrity: sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==}
+ requiresBuild: true
dependencies:
- call-bind: 1.0.7
+ call-bind: 1.0.5
/is-ssh@1.4.0:
resolution: {integrity: sha512-x7+VxdxOdlV3CYpjvRLBv5Lo9OJerlYanjwFrPR9fuGPjCiNiCzFgAWpiLAohSbsnH4ZAys3SBh+hq5rJosxUQ==}
@@ -21759,12 +21274,14 @@ packages:
/is-string@1.0.7:
resolution: {integrity: sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==}
engines: {node: '>= 0.4'}
+ requiresBuild: true
dependencies:
- has-tostringtag: 1.0.2
+ has-tostringtag: 1.0.0
/is-symbol@1.0.4:
resolution: {integrity: sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==}
engines: {node: '>= 0.4'}
+ requiresBuild: true
dependencies:
has-symbols: 1.0.3
@@ -21775,11 +21292,12 @@ packages:
text-extensions: 2.4.0
dev: true
- /is-typed-array@1.1.13:
- resolution: {integrity: sha512-uZ25/bUAlUY5fR4OKT4rZQEBrzQWYV9ZJYGGsUmEJ6thodVJ1HX64ePQ6Z0qPWP+m+Uq6e9UugrE38jeYsDSMw==}
+ /is-typed-array@1.1.12:
+ resolution: {integrity: sha512-Z14TF2JNG8Lss5/HMqt0//T9JeHXttXy5pH/DBU4vi98ozO2btxzq9MwYDZYnKwU8nRsz/+GVFVRDq3DkVuSPg==}
engines: {node: '>= 0.4'}
+ requiresBuild: true
dependencies:
- which-typed-array: 1.1.15
+ which-typed-array: 1.1.13
/is-typedarray@1.0.0:
resolution: {integrity: sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==}
@@ -21825,21 +21343,20 @@ packages:
dependencies:
is-invalid-path: 0.1.0
- /is-weakmap@2.0.2:
- resolution: {integrity: sha512-K5pXYOm9wqY1RgjpL3YTkF39tni1XajUIkawTLUo9EZEVUFga5gSQJF8nNS7ZwJQ02y+1YCNYcMh+HIf1ZqE+w==}
- engines: {node: '>= 0.4'}
+ /is-weakmap@2.0.1:
+ resolution: {integrity: sha512-NSBR4kH5oVj1Uwvv970ruUkCV7O1mzgVFO4/rev2cLRda9Tm9HrL70ZPut4rOHgY0FNrUu9BCbXA2sdQ+x0chA==}
/is-weakref@1.0.2:
resolution: {integrity: sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==}
+ requiresBuild: true
dependencies:
- call-bind: 1.0.7
+ call-bind: 1.0.5
- /is-weakset@2.0.3:
- resolution: {integrity: sha512-LvIm3/KWzS9oRFHugab7d+M/GcBXuXX5xZkzPmN+NxihdQlZUQ4dWuSV1xR/sq6upL1TJEDrfBgRepHFdBtSNQ==}
- engines: {node: '>= 0.4'}
+ /is-weakset@2.0.2:
+ resolution: {integrity: sha512-t2yVvttHkQktwnNNmBQ98AhENLdPUTDTE21uPqAQ0ARwQfGeQKRVS0NNurH7bTf7RrvcVn1OOge45CnBeHCSmg==}
dependencies:
- call-bind: 1.0.7
- get-intrinsic: 1.2.4
+ call-bind: 1.0.5
+ get-intrinsic: 1.2.2
/is-whitespace-character@1.0.4:
resolution: {integrity: sha512-SDweEzfIZM0SJV0EUga669UTKlmL0Pq8Lno0QDQsPnvECB3IM2aP0gdx5TrU0A01MAPfViaZiI2V1QMZLaKK5w==}
@@ -21890,6 +21407,7 @@ packages:
/isarray@2.0.5:
resolution: {integrity: sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==}
+ requiresBuild: true
/iserror@0.0.2:
resolution: {integrity: sha512-oKGGrFVaWwETimP3SiWwjDeY27ovZoyZPHtxblC4hCq9fXxed/jasx+ATWFFjCVSRZng8VTMsN1nDnGo6zMBSw==}
@@ -21945,7 +21463,7 @@ packages:
resolution: {integrity: sha512-BXgQl9kf4WTCPCCpmFGoJkz/+uhvm7h7PFKUYxh7qarQd3ER33vHG//qaE8eN25l07YqZPpHXU9I09l/RD5aGQ==}
engines: {node: '>=8'}
dependencies:
- '@babel/core': 7.24.4
+ '@babel/core': 7.23.7
'@istanbuljs/schema': 0.1.3
istanbul-lib-coverage: 3.2.2
semver: 6.3.1
@@ -21957,8 +21475,8 @@ packages:
resolution: {integrity: sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==}
engines: {node: '>=8'}
dependencies:
- '@babel/core': 7.24.4
- '@babel/parser': 7.24.4
+ '@babel/core': 7.23.7
+ '@babel/parser': 7.23.6
'@istanbuljs/schema': 0.1.3
istanbul-lib-coverage: 3.2.2
semver: 6.3.1
@@ -21966,15 +21484,15 @@ packages:
- supports-color
dev: true
- /istanbul-lib-instrument@6.0.2:
- resolution: {integrity: sha512-1WUsZ9R1lA0HtBSohTkm39WTPlNKSJ5iFk7UwqXkBLoHQT+hfqPsfsTDVuZdKGaBwn7din9bS7SsnoAr943hvw==}
+ /istanbul-lib-instrument@6.0.1:
+ resolution: {integrity: sha512-EAMEJBsYuyyztxMxW3g7ugGPkrZsV57v0Hmv3mm1uQsmB+QnZuepg731CRaIgeUVSdmsTngOkSnauNF8p7FIhA==}
engines: {node: '>=10'}
dependencies:
- '@babel/core': 7.24.4
- '@babel/parser': 7.24.4
+ '@babel/core': 7.23.7
+ '@babel/parser': 7.23.6
'@istanbuljs/schema': 0.1.3
istanbul-lib-coverage: 3.2.2
- semver: 7.6.0
+ semver: 7.5.4
transitivePeerDependencies:
- supports-color
dev: true
@@ -22011,8 +21529,8 @@ packages:
- supports-color
dev: true
- /istanbul-reports@3.1.7:
- resolution: {integrity: sha512-BewmUXImeuRk2YY0PVbxgKAysvhRPUQE0h5QRM++nVWyubKGV0l8qQ5op8+B2DOmwSe63Jivj0BjkPQVf8fP5g==}
+ /istanbul-reports@3.1.6:
+ resolution: {integrity: sha512-TLgnMkKg3iTDsQ9PbPTdpfAK2DzjF9mqUG7RMgcQl8oFjad8ob4laGxv5XV5U9MAfx8D6tSJiUyuAwzLicaxlg==}
engines: {node: '>=8'}
dependencies:
html-escaper: 2.0.2
@@ -22023,10 +21541,10 @@ packages:
resolution: {integrity: sha512-DR33HMMr8EzwuRL8Y9D3u2BMj8+RqSE850jfGu59kS7tbmPLzGkZmVSfyCFSDxuZiEY6Rzt3T2NA/qU+NwVj1w==}
dependencies:
define-properties: 1.2.1
- get-intrinsic: 1.2.4
+ get-intrinsic: 1.2.2
has-symbols: 1.0.3
- reflect.getprototypeof: 1.0.6
- set-function-name: 2.0.2
+ reflect.getprototypeof: 1.0.4
+ set-function-name: 2.0.1
/jackspeak@2.3.6:
resolution: {integrity: sha512-N3yCS/NegsOBokc8GAdM8UcmfsKiSS8cipheD/nivzr700H+nsMOxJjQnvwOcRYVuFkdH0wGUvW2WbXGmrZGbQ==}
@@ -22067,7 +21585,7 @@ packages:
'@jest/expect': 29.7.0
'@jest/test-result': 29.7.0
'@jest/types': 29.6.3
- '@types/node': 18.19.31
+ '@types/node': 18.19.17
chalk: 4.1.2
co: 4.6.0
dedent: 1.5.1
@@ -22080,7 +21598,7 @@ packages:
jest-util: 29.7.0
p-limit: 3.1.0
pretty-format: 29.7.0
- pure-rand: 6.1.0
+ pure-rand: 6.0.4
slash: 3.0.0
stack-utils: 2.0.6
transitivePeerDependencies:
@@ -22088,7 +21606,7 @@ packages:
- supports-color
dev: true
- /jest-cli@29.7.0(@types/node@18.19.31):
+ /jest-cli@29.7.0(@types/node@18.19.17):
resolution: {integrity: sha512-OVVobw2IubN/GSYsxETi+gOe7Ka59EFMR/twOU3Jb2GnKKeMGJB5SGUUrEz3SFVmJASUdZUzy83sLNNQ2gZslg==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
hasBin: true
@@ -22102,10 +21620,10 @@ packages:
'@jest/test-result': 29.7.0
'@jest/types': 29.6.3
chalk: 4.1.2
- create-jest: 29.7.0(@types/node@18.19.31)
+ create-jest: 29.7.0(@types/node@18.19.17)
exit: 0.1.2
import-local: 3.1.0
- jest-config: 29.7.0(@types/node@18.19.31)
+ jest-config: 29.7.0(@types/node@18.19.17)
jest-util: 29.7.0
jest-validate: 29.7.0
yargs: 17.7.2
@@ -22116,7 +21634,7 @@ packages:
- ts-node
dev: true
- /jest-config@29.7.0(@types/node@18.19.31):
+ /jest-config@29.7.0(@types/node@18.19.17):
resolution: {integrity: sha512-uXbpfeQ7R6TZBqI3/TxCU4q4ttk3u0PJeC+E0zbfSoSjq6bJ7buBPxzQPL0ifrkY4DNu4JUdk0ImlBUYi840eQ==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
peerDependencies:
@@ -22128,11 +21646,11 @@ packages:
ts-node:
optional: true
dependencies:
- '@babel/core': 7.24.4
+ '@babel/core': 7.23.7
'@jest/test-sequencer': 29.7.0
'@jest/types': 29.6.3
- '@types/node': 18.19.31
- babel-jest: 29.7.0(@babel/core@7.24.4)
+ '@types/node': 18.19.17
+ babel-jest: 29.7.0(@babel/core@7.23.7)
chalk: 4.1.2
ci-info: 3.9.0
deepmerge: 4.3.1
@@ -22191,7 +21709,7 @@ packages:
'@jest/environment': 29.7.0
'@jest/fake-timers': 29.7.0
'@jest/types': 29.6.3
- '@types/node': 18.19.31
+ '@types/node': 18.19.17
jest-mock: 29.7.0
jest-util: 29.7.0
dev: true
@@ -22212,7 +21730,7 @@ packages:
dependencies:
'@jest/types': 29.6.3
'@types/graceful-fs': 4.1.9
- '@types/node': 18.19.31
+ '@types/node': 18.19.17
anymatch: 3.1.3
fb-watchman: 2.0.2
graceful-fs: 4.2.11
@@ -22257,7 +21775,7 @@ packages:
resolution: {integrity: sha512-GBEV4GRADeP+qtB2+6u61stea8mGcOT4mCtrYISZwfu9/ISHFJ/5zOMXYbpBE9RsS5+Gb63DW4FgmnKJ79Kf6w==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
- '@babel/code-frame': 7.24.2
+ '@babel/code-frame': 7.23.5
'@jest/types': 29.6.3
'@types/stack-utils': 2.0.3
chalk: 4.1.2
@@ -22273,7 +21791,7 @@ packages:
engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
dependencies:
'@jest/types': 27.5.1
- '@types/node': 18.19.31
+ '@types/node': 18.19.17
dev: true
/jest-mock@29.7.0:
@@ -22281,7 +21799,7 @@ packages:
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
'@jest/types': 29.6.3
- '@types/node': 18.19.31
+ '@types/node': 18.19.17
jest-util: 29.7.0
dev: true
@@ -22294,13 +21812,13 @@ packages:
jest-runner: ^29.3.1
dependencies:
expect-playwright: 0.8.0
- jest: 29.7.0(@types/node@18.19.31)
+ jest: 29.7.0(@types/node@18.19.17)
jest-circus: 29.7.0
jest-environment-node: 29.7.0
jest-process-manager: 0.4.0
jest-runner: 29.7.0
nyc: 15.1.0
- playwright-core: 1.43.0
+ playwright-core: 1.40.1
rimraf: 3.0.2
uuid: 8.3.2
transitivePeerDependencies:
@@ -22377,7 +21895,7 @@ packages:
'@jest/test-result': 29.7.0
'@jest/transform': 29.7.0
'@jest/types': 29.6.3
- '@types/node': 18.19.31
+ '@types/node': 18.19.17
chalk: 4.1.2
emittery: 0.13.1
graceful-fs: 4.2.11
@@ -22408,7 +21926,7 @@ packages:
'@jest/test-result': 29.7.0
'@jest/transform': 29.7.0
'@jest/types': 29.6.3
- '@types/node': 18.19.31
+ '@types/node': 18.19.17
chalk: 4.1.2
cjs-module-lexer: 1.2.3
collect-v8-coverage: 1.0.2
@@ -22437,15 +21955,15 @@ packages:
resolution: {integrity: sha512-Rm0BMWtxBcioHr1/OX5YCP8Uov4riHvKPknOGs804Zg9JGZgmIBkbtlxJC/7Z4msKYVbIJtfU+tKb8xlYNfdkw==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
- '@babel/core': 7.24.4
- '@babel/generator': 7.24.4
- '@babel/plugin-syntax-jsx': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-syntax-typescript': 7.24.1(@babel/core@7.24.4)
- '@babel/types': 7.24.0
+ '@babel/core': 7.23.7
+ '@babel/generator': 7.23.6
+ '@babel/plugin-syntax-jsx': 7.23.3(@babel/core@7.23.7)
+ '@babel/plugin-syntax-typescript': 7.23.3(@babel/core@7.23.7)
+ '@babel/types': 7.23.6
'@jest/expect-utils': 29.7.0
'@jest/transform': 29.7.0
'@jest/types': 29.6.3
- babel-preset-current-node-syntax: 1.0.1(@babel/core@7.24.4)
+ babel-preset-current-node-syntax: 1.0.1(@babel/core@7.23.7)
chalk: 4.1.2
expect: 29.7.0
graceful-fs: 4.2.11
@@ -22456,7 +21974,7 @@ packages:
jest-util: 29.7.0
natural-compare: 1.4.0
pretty-format: 29.7.0
- semver: 7.6.0
+ semver: 7.5.4
transitivePeerDependencies:
- supports-color
dev: true
@@ -22466,7 +21984,7 @@ packages:
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
'@jest/types': 29.6.3
- '@types/node': 18.19.31
+ '@types/node': 18.19.17
chalk: 4.1.2
ci-info: 3.9.0
graceful-fs: 4.2.11
@@ -22503,9 +22021,9 @@ packages:
peerDependencies:
jest: ^27.0.0 || ^28.0.0 || ^29.0.0
dependencies:
- ansi-escapes: 6.2.1
+ ansi-escapes: 6.2.0
chalk: 5.3.0
- jest: 29.7.0(@types/node@18.19.31)
+ jest: 29.7.0(@types/node@18.19.17)
jest-regex-util: 29.6.3
jest-watcher: 29.7.0
slash: 5.1.0
@@ -22519,7 +22037,7 @@ packages:
dependencies:
'@jest/test-result': 29.7.0
'@jest/types': 29.6.3
- '@types/node': 18.19.31
+ '@types/node': 18.19.17
ansi-escapes: 4.3.2
chalk: 4.1.2
emittery: 0.13.1
@@ -22531,7 +22049,7 @@ packages:
resolution: {integrity: sha512-KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ==}
engines: {node: '>= 10.13.0'}
dependencies:
- '@types/node': 18.0.0
+ '@types/node': 18.19.17
merge-stream: 2.0.0
supports-color: 7.2.0
@@ -22539,7 +22057,7 @@ packages:
resolution: {integrity: sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==}
engines: {node: '>= 10.13.0'}
dependencies:
- '@types/node': 18.0.0
+ '@types/node': 18.19.17
merge-stream: 2.0.0
supports-color: 8.1.1
@@ -22547,13 +22065,13 @@ packages:
resolution: {integrity: sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
- '@types/node': 18.19.31
+ '@types/node': 18.19.17
jest-util: 29.7.0
merge-stream: 2.0.0
supports-color: 8.1.1
dev: true
- /jest@29.7.0(@types/node@18.19.31):
+ /jest@29.7.0(@types/node@18.19.17):
resolution: {integrity: sha512-NIy3oAFp9shda19hy4HK0HRTWKtPJmGdnvywu01nOqNC2vZg+Z+fvJDxpMQA88eb2I9EcafcdjYgsDthnYTvGw==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
hasBin: true
@@ -22566,7 +22084,7 @@ packages:
'@jest/core': 29.7.0
'@jest/types': 29.6.3
import-local: 3.1.0
- jest-cli: 29.7.0(@types/node@18.19.31)
+ jest-cli: 29.7.0(@types/node@18.19.17)
transitivePeerDependencies:
- '@types/node'
- babel-plugin-macros
@@ -22578,17 +22096,17 @@ packages:
resolution: {integrity: sha512-gFqAIbuKyyso/3G2qhiO2OM6shY6EPP/R0+mkDbyspxKazh8BXDC5FiFsUjlczgdNz/vfra0da2y+aHrusLG/Q==}
hasBin: true
- /joi@17.12.3:
- resolution: {integrity: sha512-2RRziagf555owrm9IRVtdKynOBeITiDpuZqIpgwqXShPncPKNiRQoiGsl/T8SQdq+8ugRzH2LqY67irr2y/d+g==}
+ /joi@17.11.0:
+ resolution: {integrity: sha512-NgB+lZLNoqISVy1rZocE9PZI36bL/77ie924Ri43yEvi9GUUMPeyVIr8KdFTMUlby1p0PBYMk9spIxEUQYqrJQ==}
dependencies:
'@hapi/hoek': 9.3.0
'@hapi/topo': 5.1.0
- '@sideway/address': 4.1.5
+ '@sideway/address': 4.1.4
'@sideway/formula': 3.0.1
'@sideway/pinpoint': 2.0.0
- /jose@5.2.4:
- resolution: {integrity: sha512-6ScbIk2WWCeXkmzF6bRPmEuaqy1m8SbsRFMa/FLrSCkGIhj8OLVG/IH+XHVmNMx/KUo8cVWEE6oKR4dJ+S0Rkg==}
+ /jose@5.2.2:
+ resolution: {integrity: sha512-/WByRr4jDcsKlvMd1dRJnPfS1GVO3WuKyaurJ/vvXcOaUQO8rnNObCQMlv/5uCceVQIq5Q4WLF44ohsdiTohdg==}
dev: true
/joycon@3.1.1:
@@ -22596,8 +22114,8 @@ packages:
engines: {node: '>=10'}
dev: true
- /js-base64@3.7.7:
- resolution: {integrity: sha512-7rCnleh0z2CkXhH67J8K1Ytz0b2Y+yxTPL+/KOJoa20hfnVQ/3/T6W/KflYI4bRHRagNeXeU2bkNGI3v1oS/lw==}
+ /js-base64@3.7.5:
+ resolution: {integrity: sha512-3MEt5DTINKqfScXKfJFrRbxkrnk2AxPWGBL/ycjz4dK8iqiSJ06UxD8jh8xuh6p10TX4t2+7FsBYVxxQbMg+qA==}
/js-sha256@0.9.0:
resolution: {integrity: sha512-sga3MHh9sgQN2+pJ9VYZ+1LPwXOxuBJBA5nrR5/ofPfuiJBE2hnjsaN8se8JznOmGLN2p49Pe5U/ttafcs/apA==}
@@ -22605,6 +22123,7 @@ packages:
/js-string-escape@1.0.1:
resolution: {integrity: sha512-Smw4xcfIQ5LVjAOuJCvN/zIodzA/BBSsluuoSykP+lUvScIi4U6RJLfwHet5cxFnCswUjISV8oAXaqaJDY3chg==}
engines: {node: '>= 0.8'}
+ requiresBuild: true
dev: false
/js-tokens@4.0.0:
@@ -22613,6 +22132,7 @@ packages:
/js-yaml@3.14.1:
resolution: {integrity: sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==}
hasBin: true
+ requiresBuild: true
dependencies:
argparse: 1.0.10
esprima: 4.0.1
@@ -22623,14 +22143,8 @@ packages:
dependencies:
argparse: 2.0.1
- /jsbn@1.1.0:
- resolution: {integrity: sha512-4bYVV3aAMtDTTu4+xsDYa6sy9GyJ69/amsu9sYF2zqjiEoZA5xJi3BrfX3uY+/IekIu7MwdObdbDWpoZdBv3/A==}
- requiresBuild: true
- dev: false
- optional: true
-
- /jscodeshift@0.15.2(@babel/preset-env@7.24.4):
- resolution: {integrity: sha512-FquR7Okgmc4Sd0aEDwqho3rEiKR3BdvuG9jfdHjLJ6JQoWSMpavug3AoIfnfWhxFlf+5pzQh8qjqz0DWFrNQzA==}
+ /jscodeshift@0.15.1(@babel/preset-env@7.23.7):
+ resolution: {integrity: sha512-hIJfxUy8Rt4HkJn/zZPU9ChKfKZM1342waJ1QC2e2YsPcWhM+3BJ4dcfQCzArTrk1jJeNLB341H+qOcEHRxJZg==}
hasBin: true
peerDependencies:
'@babel/preset-env': ^7.1.6
@@ -22638,25 +22152,25 @@ packages:
'@babel/preset-env':
optional: true
dependencies:
- '@babel/core': 7.24.4
- '@babel/parser': 7.24.4
- '@babel/plugin-transform-class-properties': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-transform-modules-commonjs': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-transform-nullish-coalescing-operator': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-transform-optional-chaining': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-transform-private-methods': 7.24.1(@babel/core@7.24.4)
- '@babel/preset-env': 7.24.4(@babel/core@7.24.4)
- '@babel/preset-flow': 7.24.1(@babel/core@7.24.4)
- '@babel/preset-typescript': 7.24.1(@babel/core@7.24.4)
- '@babel/register': 7.23.7(@babel/core@7.24.4)
- babel-core: 7.0.0-bridge.0(@babel/core@7.24.4)
+ '@babel/core': 7.23.7
+ '@babel/parser': 7.23.6
+ '@babel/plugin-transform-class-properties': 7.23.3(@babel/core@7.23.7)
+ '@babel/plugin-transform-modules-commonjs': 7.23.3(@babel/core@7.23.7)
+ '@babel/plugin-transform-nullish-coalescing-operator': 7.23.4(@babel/core@7.23.7)
+ '@babel/plugin-transform-optional-chaining': 7.23.4(@babel/core@7.23.7)
+ '@babel/plugin-transform-private-methods': 7.23.3(@babel/core@7.23.7)
+ '@babel/preset-env': 7.23.7(@babel/core@7.23.7)
+ '@babel/preset-flow': 7.23.3(@babel/core@7.23.7)
+ '@babel/preset-typescript': 7.23.3(@babel/core@7.23.7)
+ '@babel/register': 7.23.7(@babel/core@7.23.7)
+ babel-core: 7.0.0-bridge.0(@babel/core@7.23.7)
chalk: 4.1.2
- flow-parser: 0.233.0
+ flow-parser: 0.225.1
graceful-fs: 4.2.11
micromatch: 4.0.5
neo-async: 2.6.2
node-dir: 0.1.17
- recast: 0.23.6
+ recast: 0.23.4
temp: 0.8.4
write-file-atomic: 2.4.3
transitivePeerDependencies:
@@ -22689,18 +22203,21 @@ packages:
/json-schema-traverse@0.4.1:
resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==}
+ requiresBuild: true
/json-schema-traverse@1.0.0:
resolution: {integrity: sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==}
+ requiresBuild: true
/json-stable-stringify-without-jsonify@1.0.1:
resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==}
+ requiresBuild: true
- /json-stable-stringify@1.1.1:
- resolution: {integrity: sha512-SU/971Kt5qVQfJpyDveVhQ/vya+5hvrjClFOcr8c0Fq5aODJjMwutrOfCU+eCnVD5gpx1Q3fEqkyom77zH1iIg==}
+ /json-stable-stringify@1.1.0:
+ resolution: {integrity: sha512-zfA+5SuwYN2VWqN1/5HZaDzQKLJHaBVMZIIM+wuYjdptkaQsqzDdqjqf+lZZJUuJq1aanHiY8LhH8LmH+qBYJA==}
engines: {node: '>= 0.4'}
dependencies:
- call-bind: 1.0.7
+ call-bind: 1.0.5
isarray: 2.0.5
jsonify: 0.0.1
object-keys: 1.1.1
@@ -22721,6 +22238,7 @@ packages:
/json5@1.0.2:
resolution: {integrity: sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==}
hasBin: true
+ requiresBuild: true
dependencies:
minimist: 1.2.8
@@ -22729,8 +22247,9 @@ packages:
engines: {node: '>=6'}
hasBin: true
- /jsonc-parser@3.2.1:
- resolution: {integrity: sha512-AilxAyFOAcK5wA1+LeaySVBrHsGQvUFCDWXKpZjzaL0PqW+xfBOttn8GNtWKFWqneyMZj41MWF9Kl6iPWLwgOA==}
+ /jsonc-parser@3.2.0:
+ resolution: {integrity: sha512-gfFQZrcTc8CnKXp6Y4/CBT3fTc0OVuDofpre4aEeEpSBPV5X5v4+Vmx+8snU7RLPrNHPKSgLxGo9YuQzz20o+w==}
+ requiresBuild: true
/jsonfile@6.1.0:
resolution: {integrity: sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==}
@@ -22766,17 +22285,17 @@ packages:
lodash.isstring: 4.0.1
lodash.once: 4.1.1
ms: 2.1.3
- semver: 7.6.0
+ semver: 7.5.4
dev: false
/jsx-ast-utils@3.3.5:
resolution: {integrity: sha512-ZZow9HBI5O6EPgSJLUb8n2NKgmVWTwCvHGwFuJlMjvLFqlGG6pjirPhtdsseaLZjSibD8eegzmYpUZwoIlj2cQ==}
engines: {node: '>=4.0'}
dependencies:
- array-includes: 3.1.8
+ array-includes: 3.1.7
array.prototype.flat: 1.3.2
object.assign: 4.1.5
- object.values: 1.2.0
+ object.values: 1.1.7
/junk@4.0.1:
resolution: {integrity: sha512-Qush0uP+G8ZScpGMZvHUiRfI0YBWuB3gVBYlI0v0vvOJt5FLicco+IkP0a50LqTTQhmts/m6tP5SWE+USyIvcQ==}
@@ -22860,8 +22379,8 @@ packages:
hasBin: true
dependencies:
commander: 10.0.1
- dotenv: 16.4.5
- winston: 3.13.0
+ dotenv: 16.3.1
+ winston: 3.11.0
dev: false
/language-subtag-registry@0.3.22:
@@ -22889,7 +22408,7 @@ packages:
engines: {node: '>=14.0.0'}
dependencies:
app-root-dir: 1.0.2
- dotenv: 16.4.5
+ dotenv: 16.3.1
dotenv-expand: 10.0.0
dev: true
@@ -22911,6 +22430,7 @@ packages:
/levn@0.4.1:
resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==}
engines: {node: '>= 0.8.0'}
+ requiresBuild: true
dependencies:
prelude-ls: 1.2.1
type-check: 0.4.0
@@ -22920,11 +22440,11 @@ packages:
dependencies:
immediate: 3.0.6
- /light-my-request@5.12.0:
- resolution: {integrity: sha512-P526OX6E7aeCIfw/9UyJNsAISfcFETghysaWHQAlQYayynShT08MOj4c6fBCvTWBrHXSvqBAKDp3amUPSCQI4w==}
+ /light-my-request@5.11.0:
+ resolution: {integrity: sha512-qkFCeloXCOMpmEdZ/MV91P8AT4fjwFXWaAFz3lUeStM8RcoM1ks4J/F8r1b3r6y/H4u3ACEJ1T+Gv5bopj7oDA==}
dependencies:
- cookie: 0.6.0
- process-warning: 3.0.0
+ cookie: 0.5.0
+ process-warning: 2.3.2
set-cookie-parser: 2.6.0
dev: false
@@ -22932,8 +22452,8 @@ packages:
resolution: {integrity: sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==}
engines: {node: '>=10'}
- /lilconfig@3.1.1:
- resolution: {integrity: sha512-O18pf7nyvHTckunPWCV1XUNXU1piu01y2b7ATJ0ppkUkk8ocqVWBrYjJBCwHDjD/ZWcfyrA0P4gKhzWGi5EINQ==}
+ /lilconfig@3.0.0:
+ resolution: {integrity: sha512-K2U4W2Ff5ibV7j7ydLr+zLAkIg5JJ4lPn1Ltsdt+Tz/IjQ8buJ55pZAxoP34lqIiwtF9iAvtLv3JGv7CAyAg+g==}
engines: {node: '>=14'}
/line-height@0.3.1:
@@ -22968,7 +22488,7 @@ packages:
node-forge: 1.3.1
pathe: 1.1.2
std-env: 3.7.0
- ufo: 1.5.3
+ ufo: 1.4.0
untun: 0.1.3
uqr: 0.1.2
transitivePeerDependencies:
@@ -22988,7 +22508,7 @@ packages:
colorette: 2.0.20
log-update: 4.0.0
p-map: 4.0.0
- rfdc: 1.3.1
+ rfdc: 1.3.0
rxjs: 7.8.1
through: 2.3.8
wrap-ansi: 7.0.0
@@ -23002,7 +22522,7 @@ packages:
colorette: 2.0.20
eventemitter3: 5.0.1
log-update: 5.0.1
- rfdc: 1.3.1
+ rfdc: 1.3.0
wrap-ansi: 8.1.0
dev: false
@@ -23136,6 +22656,10 @@ packages:
/lodash.deburr@4.1.0:
resolution: {integrity: sha512-m/M1U1f3ddMCs6Hq2tAsYThTBDaAKFDX3dwDo97GEYzamXi9SqUpjWi/Rrj/gf3X2n8ktwgZrlP1z6E3v/IExQ==}
+ /lodash.defaults@4.2.0:
+ resolution: {integrity: sha512-qjxPLHd3r5DnsdGacqOMU6pb/avJzdh9tFX2ymgoZE27BmjXrNy/y4LoaiTeAb+O3gL8AfpJGtqfX/ae2leYYQ==}
+ dev: false
+
/lodash.every@4.6.0:
resolution: {integrity: sha512-isF82d+65/sNvQ3aaQAW7LLHnnTxSN/2fm4rhYyuufLzA4VtHz6y6S5vFwe6PQVr2xdqUOyxBbTNKDpnmeu50w==}
@@ -23157,6 +22681,10 @@ packages:
resolution: {integrity: sha512-W3Bx6mdkRTGtlJISOvVD/lbqjTlPPUDTMnlXZFnVwi9NKJ6tiAk6LVdlhZMm17VZisqhKcgzpO5Wz91PCt5b0w==}
dev: false
+ /lodash.isarguments@3.1.0:
+ resolution: {integrity: sha512-chi4NHZlZqZD18a0imDHnZPrDeBbTtVN7GXMwuGdRH9qotxAjYs3aVLKc7zNOG9eddR5Ksd8rvFEBc9SsggPpg==}
+ dev: false
+
/lodash.isboolean@3.0.3:
resolution: {integrity: sha512-Bz5mupy2SVbPHURB98VAcw+aHh4vRV5IPNhILUCsOzRmsTmSQ17jIuqopAentWoehktxGd9e/hbIXq980/1QJg==}
dev: false
@@ -23198,6 +22726,7 @@ packages:
/lodash.merge@4.6.2:
resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==}
+ requiresBuild: true
/lodash.mergewith@4.6.2:
resolution: {integrity: sha512-GK3g5RPZWTRSeLSpgP8Xhra+pnjBC56q9FZYe1d5RN3TJ35dbkGy3YqBSMbyCrlbi+CM9Z3Jk5yTL7RCsqboyQ==}
@@ -23224,6 +22753,7 @@ packages:
/lodash.truncate@4.4.2:
resolution: {integrity: sha512-jttmRe7bRse52OsWIMDLaXxWqRAmtIUccAQ3garviCqJjafXOfNMO0yMfNpdD6zbGaTU0P5Nz7e7gAT6cKmJRw==}
+ requiresBuild: true
/lodash.uniq@4.5.0:
resolution: {integrity: sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==}
@@ -23245,7 +22775,7 @@ packages:
jest-validate: 27.5.1
map-obj: 5.0.2
moize: 6.1.6
- semver: 7.6.0
+ semver: 7.5.4
dev: false
/log-symbols@4.1.0:
@@ -23260,7 +22790,7 @@ packages:
resolution: {integrity: sha512-l0x2DvrW294C9uDCoQe1VSU4gf529FkSZ6leBl4TiqZH/e+0R7hSfHQBNut2mNygDgHwvYHfFLn6Oxb3VWj2rA==}
engines: {node: '>=12'}
dependencies:
- chalk: 5.2.0
+ chalk: 5.3.0
is-unicode-supported: 1.3.0
dev: false
@@ -23333,8 +22863,8 @@ packages:
resolution: {integrity: sha512-ozCC6gdQ+glXOQsveKD0YsDy8DSQFjDTz4zyzEHNV5+JP5D62LmfDZ6o1cycFx9ouG940M5dE8C8CTewdj2YWQ==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
- /lru-cache@10.2.0:
- resolution: {integrity: sha512-2bIM8x+VAf6JT4bKAljS1qUWgMsqZRPGJS6FSahIMPVvctcNhyVp7AJu7quxOW9jwkryBReKZY5tY5JYv2n/7Q==}
+ /lru-cache@10.1.0:
+ resolution: {integrity: sha512-/1clY/ui8CzjKFyjdvwPWJUYKiFVXG2I2cY0ssG7h4+hwk+XOIX7ZSG9Q7TW8TW3Kp3BUSqgFWBLgL4PJ+Blag==}
engines: {node: 14 || >=16.14}
/lru-cache@4.0.0:
@@ -23363,7 +22893,7 @@ packages:
/lru-queue@0.1.0:
resolution: {integrity: sha512-BpdYkt9EvGl8OfWHDQPISVpcl5xZthb+XPsbELj5AQXxIC8IriDZIQYjBJPEm5rS420sjZ0TLEzRcq5KdBhYrQ==}
dependencies:
- es5-ext: 0.10.64
+ es5-ext: 0.10.62
/luxon@3.4.4:
resolution: {integrity: sha512-zobTr7akeGHnv7eBOXcRgMeCP6+uyYsczwmeRCauvpvaAltgNyTbLH/+VaEAPUeWBT+1GuNmz4wC/6jtQzbbVA==}
@@ -23387,8 +22917,8 @@ packages:
'@jridgewell/sourcemap-codec': 1.4.15
dev: true
- /magic-string@0.30.9:
- resolution: {integrity: sha512-S1+hd+dIrC8EZqKyT9DstTH/0Z+f76kmmvZnkfQVmOpDEF9iVgdYif3Q/pIWHmCoo59bQVGW0kVL3e2nl+9+Sw==}
+ /magic-string@0.30.5:
+ resolution: {integrity: sha512-7xlpfBaQaP/T6Vh8MO/EqXSW5En6INHEvEXQiuff7Gku0PWjU3uf6w/j9o7O+SpB5fOAkrI5HeoNgwjEO0pFsA==}
engines: {node: '>=12'}
dependencies:
'@jridgewell/sourcemap-codec': 1.4.15
@@ -23411,7 +22941,7 @@ packages:
resolution: {integrity: sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==}
engines: {node: '>=10'}
dependencies:
- semver: 7.6.0
+ semver: 7.5.4
/make-error@1.3.6:
resolution: {integrity: sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==}
@@ -23487,8 +23017,8 @@ packages:
object-visit: 1.0.1
dev: false
- /mapbox-to-css-font@2.4.4:
- resolution: {integrity: sha512-X1dtuTuH2D1MRMuductMZCLV/fy9EoIgqW/lmu8vQSAhEatx/tdFebkYT3TVhdTwqFDHbLEgQBD3IKA4KI7aoQ==}
+ /mapbox-to-css-font@2.4.2:
+ resolution: {integrity: sha512-f+NBjJJY4T3dHtlEz1wCG7YFlkODEjFIYlxDdLIDMNpkSksqTt+l/d4rjuwItxuzkuMFvPyrjzV2lxRM4ePcIA==}
dev: false
/markdown-escapes@1.0.4:
@@ -23505,8 +23035,8 @@ packages:
repeat-string: 1.6.1
dev: false
- /markdown-to-jsx@7.4.6(react@18.2.0):
- resolution: {integrity: sha512-3cyNxI/PwotvYkjg6KmFaN1uyN/7NqETteD2DobBB8ro/FR9jsHIh4Fi7ywAz0s9QHRKCmGlOUggs5GxSWACKA==}
+ /markdown-to-jsx@7.4.0(react@18.2.0):
+ resolution: {integrity: sha512-zilc+MIkVVXPyTb4iIUTIz9yyqfcWjszGXnwF9K/aiBWcHXFcmdEMTkG01/oQhwSCH7SY1BnG6+ev5BzWmbPrg==}
engines: {node: '>= 10'}
peerDependencies:
react: '>= 0.14.0'
@@ -23534,6 +23064,7 @@ packages:
/md5-hex@3.0.1:
resolution: {integrity: sha512-BUiRtTtV39LIJwinWBjqVsU9xhdnz7/i889V859IBFpuqGAj6LuOvHv5XLbgZ2R7ptJoJaEcxkv88/h25T7Ciw==}
engines: {node: '>=8'}
+ requiresBuild: true
dependencies:
blueimp-md5: 2.19.0
dev: false
@@ -23680,7 +23211,7 @@ packages:
/mdast-util-to-hast@12.3.0:
resolution: {integrity: sha512-pits93r8PhnIoU4Vy9bjW39M2jJ6/tdHyja9rrot9uujkN7UTU9SDnE6WNJz/IGyQk3XHX6yNNtrBH6cQzm8Hw==}
dependencies:
- '@types/hast': 2.3.10
+ '@types/hast': 2.3.9
'@types/mdast': 3.0.15
mdast-util-definitions: 5.1.2
micromark-util-sanitize-uri: 1.2.0
@@ -23795,8 +23326,8 @@ packages:
/memoizee@0.4.15:
resolution: {integrity: sha512-UBWmJpLZd5STPm7PMUlOw/TSy972M+z8gcyQ5veOnSDRREz/0bmpyTfKt3/51DhEBqCZQn1udM/5flcSPYhkdQ==}
dependencies:
- d: 1.0.2
- es5-ext: 0.10.64
+ d: 1.0.1
+ es5-ext: 0.10.62
es6-weak-map: 2.0.3
event-emitter: 0.3.5
is-promise: 2.2.2
@@ -23882,7 +23413,7 @@ packages:
resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==}
engines: {node: '>= 8'}
- /meros@1.3.0(@types/node@18.0.0):
+ /meros@1.3.0(@types/node@18.19.17):
resolution: {integrity: sha512-2BNGOimxEz5hmjUG2FwoxCt5HN7BXdaWyFqEwxPTrJzVdABtrL4TiHTcsWSFAxPQ/tOnEaQEJh3qWq71QRMY+w==}
engines: {node: '>=13'}
peerDependencies:
@@ -23891,9 +23422,10 @@ packages:
'@types/node':
optional: true
dependencies:
- '@types/node': 18.0.0
+ '@types/node': 18.19.17
+ dev: false
- /meros@1.3.0(@types/node@18.19.31):
+ /meros@1.3.0(@types/node@18.19.4):
resolution: {integrity: sha512-2BNGOimxEz5hmjUG2FwoxCt5HN7BXdaWyFqEwxPTrJzVdABtrL4TiHTcsWSFAxPQ/tOnEaQEJh3qWq71QRMY+w==}
engines: {node: '>=13'}
peerDependencies:
@@ -23902,8 +23434,7 @@ packages:
'@types/node':
optional: true
dependencies:
- '@types/node': 18.19.31
- dev: false
+ '@types/node': 18.19.4
/methods@1.1.2:
resolution: {integrity: sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==}
@@ -24216,12 +23747,6 @@ packages:
engines: {node: '>=10.0.0'}
hasBin: true
- /mime@4.0.1:
- resolution: {integrity: sha512-5lZ5tyrIfliMXzFtkYyekWbtRXObT9OWa8IwQ5uxTBDHucNNwniRqo0yInflj+iYi5CBa6qxadGzGarDfuEOxA==}
- engines: {node: '>=16'}
- hasBin: true
- dev: true
-
/mimic-fn@1.2.0:
resolution: {integrity: sha512-jf84uxzwiuiIVKiOLpfYk7N46TSy8ubTonmneY9vrpHNAnp0QBt2BxWV9dO3/j+BoVAb+a5G6YDPW3M5HOdMWQ==}
engines: {node: '>=4'}
@@ -24246,6 +23771,7 @@ packages:
/mimic-response@3.1.0:
resolution: {integrity: sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==}
engines: {node: '>=10'}
+ requiresBuild: true
/mimic-response@4.0.0:
resolution: {integrity: sha512-e5ISH9xMYU0DzrT+jl8q2ze9D6eWBto+I8CNpe+VI+K2J/F/k3PdkdTdz4wvGVH4NTpo+NRYTVIuMQEMMcsLqg==}
@@ -24261,7 +23787,7 @@ packages:
resolution: {integrity: sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==}
engines: {node: '>=4'}
- /mini-css-extract-plugin@1.6.2(webpack@5.91.0):
+ /mini-css-extract-plugin@1.6.2(webpack@5.89.0):
resolution: {integrity: sha512-WhDvO3SjGm40oV5y26GjMJYjd2UMqrLAGKy5YS2/3QKJy2F7jgynuHTir/tgUUOiNQu5saXHdc8reo7YuhhT4Q==}
engines: {node: '>= 10.13.0'}
peerDependencies:
@@ -24269,7 +23795,7 @@ packages:
dependencies:
loader-utils: 2.0.4
schema-utils: 3.3.0
- webpack: 5.91.0(esbuild@0.19.12)
+ webpack: 5.89.0
webpack-sources: 1.4.3
/mini-svg-data-uri@1.4.4:
@@ -24300,12 +23826,6 @@ packages:
dependencies:
brace-expansion: 2.0.1
- /minimatch@9.0.4:
- resolution: {integrity: sha512-KqWh+VchfxcMNRAJjj2tnsSJdNbHsVgnkBhTNrW7AjVo6OvLtxw8zfT9oLw1JSohlFzJ8jCoTgaoXvJ+kHt6fw==}
- engines: {node: '>=16 || 14 >=14.17'}
- dependencies:
- brace-expansion: 2.0.1
-
/minimist-options@4.1.0:
resolution: {integrity: sha512-Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A==}
engines: {node: '>= 6'}
@@ -24316,6 +23836,7 @@ packages:
/minimist@1.2.8:
resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==}
+ requiresBuild: true
/minipass-collect@1.0.2:
resolution: {integrity: sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA==}
@@ -24400,6 +23921,8 @@ packages:
/mkdirp-classic@0.5.3:
resolution: {integrity: sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==}
+ requiresBuild: true
+ dev: true
/mkdirp@0.5.6:
resolution: {integrity: sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==}
@@ -24418,7 +23941,7 @@ packages:
acorn: 8.11.3
pathe: 1.1.2
pkg-types: 1.0.3
- ufo: 1.5.3
+ ufo: 1.4.0
/module-definition@5.0.1:
resolution: {integrity: sha512-kvw3B4G19IXk+BOXnYq/D/VeO9qfHaapMeuS7w7sNUqmGaA6hywdFHMi+VWeR9wUScXM7XjoryTffCZ5B0/8IA==}
@@ -24436,8 +23959,8 @@ packages:
micro-memoize: 4.1.2
dev: false
- /moment-timezone@0.5.45:
- resolution: {integrity: sha512-HIWmqA86KcmCAhnMAN0wuDOARV/525R2+lOLotuGFzn4HO+FH+/645z2wx0Dt3iDv6/p61SIvKnDstISainhLQ==}
+ /moment-timezone@0.5.44:
+ resolution: {integrity: sha512-nv3YpzI/8lkQn0U6RkLd+f0W/zy/JnoR5/EyPz/dNkPTBjA2jNLCVxaiQ8QpeLymhSZvX0wCL5s27NQWdOPwAw==}
dependencies:
moment: 2.30.1
dev: false
@@ -24477,6 +24000,7 @@ packages:
/mrmime@2.0.0:
resolution: {integrity: sha512-eu38+hdgojoyq63s+yTpN4XMBdt5l8HhMhc4VKLO9KM5caLIBvUm4thi7fFaxyTmCKeNnXZ5pAlBwCUnhA09uw==}
engines: {node: '>=10'}
+ requiresBuild: true
dev: true
/ms@2.0.0:
@@ -24484,9 +24008,11 @@ packages:
/ms@2.1.2:
resolution: {integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==}
+ requiresBuild: true
/ms@2.1.3:
resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==}
+ requiresBuild: true
/msgpackr-extract@3.0.2:
resolution: {integrity: sha512-SdzXp4kD/Qf8agZ9+iTu6eql0m3kWm1A2y1hkpTeVNENutaB0BwHlSvAIaMxwntmRUAUjon2V4L8Z/njd0Ct8A==}
@@ -24543,8 +24069,8 @@ packages:
object-assign: 4.1.1
thenify-all: 1.6.0
- /nan@2.19.0:
- resolution: {integrity: sha512-nO1xXxfh/RWNxfd/XPfbIfFk5vgLsAxUR9y5O0cHMJu/AW9U95JLXqthYHjEp+8gQ5p96K9jUp8nbVOxCdRbtw==}
+ /nan@2.18.0:
+ resolution: {integrity: sha512-W7tfG7vMOGtD30sHoZSSc/JVYiyDPEyQVso/Zz+/uQd0B0L46gtC+pHha5FFMRpil6fm/AoEcRWyOVi4+E/f8w==}
requiresBuild: true
dev: false
optional: true
@@ -24553,6 +24079,7 @@ packages:
resolution: {integrity: sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==}
engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
hasBin: true
+ requiresBuild: true
/nanoid@5.0.4:
resolution: {integrity: sha512-vAjmBf13gsmhXSgBrtIclinISzFFy22WwCYoyilZlsrRXNIHSwgFQ1bEdjRwMT3aoadeIF6HMuDRlOxzfXV8ig==}
@@ -24579,19 +24106,17 @@ packages:
- supports-color
dev: false
- /napi-build-utils@1.0.2:
- resolution: {integrity: sha512-ONmRUqK7zj7DWX0D9ADe03wbwOBZxNAfF20PlGfCWQcD3+/MakShIHrMqx9YwPTfxDdF1zLeL+RGZiR9kGMLdg==}
- dev: false
-
/napi-wasm@1.1.0:
resolution: {integrity: sha512-lHwIAJbmLSjF9VDRm9GoVOy9AGp3aIvkjv+Kvz9h16QR3uSVYH78PNQUnT2U4X53mhlnV2M7wrhibQ3GHicDmg==}
dev: false
/natural-compare-lite@1.4.0:
resolution: {integrity: sha512-Tj+HTDSJJKaZnfiuw+iaF9skdPpTo2GtEly5JHnWV/hfv2Qj/9RKsGISQtLh2ox3l5EAGw487hnBee0sIJ6v2g==}
+ requiresBuild: true
/natural-compare@1.4.0:
resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==}
+ requiresBuild: true
/needle@2.9.1:
resolution: {integrity: sha512-6R9fqJ5Zcmf+uYaFgdIHmLwNldn5HbK8L5ybn7Uz+ylX/rnOsSp1AHcvQSrCaFN+qNM1wpymHqD7mVasEOlHGQ==}
@@ -24616,7 +24141,7 @@ packages:
resolution: {integrity: sha512-9iN1ka/9zmX1ZvLV9ewJYEk9h7RyRRtqdK0woXcqohu8EWIerfPUjYJPg0ULy0UqP7cslmdGc8xKDJcojlKiaw==}
dev: false
- /netlify-cli@17.21.1(@types/node@18.19.31):
+ /netlify-cli@17.21.1(@types/node@18.19.17):
resolution: {integrity: sha512-B8QveV55h2dFCTnk5LInVW1MiXPINTQ61IkEtih15CVYpvVSQy+he8M6hdpucq83VqaF/phaJkb3Si2ligOxxw==}
engines: {node: '>=18.14.0'}
hasBin: true
@@ -24625,7 +24150,7 @@ packages:
'@bugsnag/js': 7.20.2
'@fastify/static': 6.10.2
'@netlify/blobs': 7.0.1
- '@netlify/build': 29.36.6(@opentelemetry/api@1.8.0)(@types/node@18.19.31)
+ '@netlify/build': 29.36.6(@opentelemetry/api@1.8.0)(@types/node@18.19.17)
'@netlify/build-info': 7.13.2
'@netlify/config': 20.12.1
'@netlify/edge-bundler': 11.3.0
@@ -24752,7 +24277,6 @@ packages:
- bufferutil
- encoding
- idb-keyval
- - ioredis
- picomatch
- supports-color
- uWebSockets.js
@@ -24768,11 +24292,11 @@ packages:
async-mutex: 0.3.2
cors: 2.8.5
dotenv: 10.0.0
- express: 4.19.2
+ express: 4.18.2
morgan: 1.10.0
- simple-git: 3.24.0
+ simple-git: 3.22.0
what-the-diff: 0.6.0
- winston: 3.13.0
+ winston: 3.11.0
transitivePeerDependencies:
- supports-color
dev: true
@@ -24808,13 +24332,13 @@ packages:
resolution: {integrity: sha512-7vSq6so7lPjr3HEpjbtLyde0F3IXOzD0ocJs3s2wnJR+nX+8pWOAVGe+KN6S98odsClJBJxCkWG2rLjTBzW9pw==}
engines: {node: ^14.16.0 || >=16.0.0}
dependencies:
- '@netlify/open-api': 2.30.0
+ '@netlify/open-api': 2.28.0
lodash-es: 4.17.21
micro-api-client: 3.3.0
node-fetch: 3.3.2
omit.js: 2.0.2
p-wait-for: 4.1.0
- qs: 6.12.0
+ qs: 6.11.2
dev: false
/next-tick@1.1.0:
@@ -24826,19 +24350,11 @@ packages:
lower-case: 2.0.2
tslib: 2.6.2
- /node-abi@3.57.0:
- resolution: {integrity: sha512-Dp+A9JWxRaKuHP35H77I4kCKesDy5HUDEmScia2FyncMTOXASMyg251F5PhFoDA5uqBrDDffiLpbqnrZmNXW+g==}
- engines: {node: '>=10'}
- dependencies:
- semver: 7.6.0
- dev: false
-
/node-addon-api@4.3.0:
resolution: {integrity: sha512-73sE9+3UaLYYFmDsFZnqCInzPyh3MqIwZO9cw58yIqAZhONrrabrYyYe3TuIqtIiOuTXVhsGau8hcrhhwSsDIQ==}
- /node-addon-api@7.1.0:
- resolution: {integrity: sha512-mNcltoe1R8o7STTegSOHdnJNN7s5EUvhoS7ShnTHDyOSd+8H+UdWODq6qSv67PjC8Zc5JRT8+oLAMCr0SIXw7g==}
- engines: {node: ^16 || ^18 || >= 20}
+ /node-addon-api@7.0.0:
+ resolution: {integrity: sha512-vgbBJTS4m5/KkE16t5Ly0WW9hz46swAstv0hYYwMtbG7AznRhNyfLRe8HZAiWIpcHzoO7HxhLuBQj9rJ/Ho0ZA==}
/node-dir@0.1.17:
resolution: {integrity: sha512-tmPX422rYgofd4epzrNoOXiE8XFZYOcCq1vD7MAXCDO+O+zndlA2ztdKKMa+EeuBG5tHETpr4ml4RGgpqDCCAg==}
@@ -24852,8 +24368,8 @@ packages:
engines: {node: '>=10.5.0'}
dev: false
- /node-fetch-native@1.6.4:
- resolution: {integrity: sha512-IhOigYzAKHd244OC0JIMIUrjzctirCmPkaIfhDeGcEETWof5zKYUW7e7MYvChGWh/4CJeXEgsRyGzuF334rOOQ==}
+ /node-fetch-native@1.6.1:
+ resolution: {integrity: sha512-bW9T/uJDPAJB2YNYEpWzE54U5O3MQidXsOyTfnbKYtTtFexRvGzb1waphBN4ZwP6EcIvYYEOwW0b72BpAqydTw==}
/node-fetch@2.6.12:
resolution: {integrity: sha512-C/fGU2E8ToujUivIO0H+tpQ6HWo4eEmchoPIoXtxCrVghxdKq+QOHqEZW7tuP3KlV3bC8FRMO5nMCC7Zm1VP6g==}
@@ -24902,9 +24418,10 @@ packages:
requiresBuild: true
optional: true
- /node-gyp-build@4.8.0:
- resolution: {integrity: sha512-u6fs2AEUljNho3EYTJNBfImO5QTo/J/1Etd+NVdCj7qWKUSN/bSLkZwhDv7I+w/MSC6qJ4cknepkAYykDdK8og==}
+ /node-gyp-build@4.7.1:
+ resolution: {integrity: sha512-wTSrZ+8lsRRa3I3H8Xr65dLWSgCvY2l4AOnaeKdPA9TB/WYMPaTcrzf3rXvFoVvjKNVnu0CcWSx54qq9GKRUYg==}
hasBin: true
+ requiresBuild: true
dev: false
/node-gyp@8.4.1:
@@ -24920,8 +24437,8 @@ packages:
nopt: 5.0.0
npmlog: 6.0.2
rimraf: 3.0.2
- semver: 7.6.0
- tar: 6.2.1
+ semver: 7.5.4
+ tar: 6.2.0
which: 2.0.2
transitivePeerDependencies:
- bluebird
@@ -24945,10 +24462,10 @@ packages:
/node-polyglot@2.5.0:
resolution: {integrity: sha512-zXVwHNhFsG3mls+LKHxoHF70GQOL3FTDT3jH7ldkb95kG76RdU7F/NbvxV7D2hNIL9VpWXW6y78Fz+3KZkatRg==}
dependencies:
- array.prototype.foreach: 1.0.7
+ array.prototype.foreach: 1.0.5
has: 1.0.4
- object.entries: 1.1.8
- string.prototype.trim: 1.2.9
+ object.entries: 1.1.7
+ string.prototype.trim: 1.2.8
warning: 4.0.3
dev: false
@@ -24966,7 +24483,7 @@ packages:
resolution: {integrity: sha512-jn9vOIK/nfqoFCcpK89/VCVaLg1IHE6UVfDOzvqmANaJ/rWCTEdH8RZ1V278nv2jr36BJdyQXIAavBLXpzdlag==}
engines: {node: '>=14'}
dependencies:
- '@babel/parser': 7.24.4
+ '@babel/parser': 7.23.6
dev: false
/node-stream-zip@1.15.0:
@@ -24983,11 +24500,12 @@ packages:
is-plain-obj: 4.1.0
normalize-node-version: 12.4.0
path-exists: 5.0.0
- semver: 7.6.0
+ semver: 7.5.4
dev: false
/noop-tag@2.0.0:
resolution: {integrity: sha512-ZZo06UN1mz2GjdElyKiSj5z+1MOhWPSZrV//nK4EfQ/uZrv2dde264P/mJ6d7Jr1M7PFhnN8rbw1rH5b0Qm6cA==}
+ requiresBuild: true
dev: true
/noop2@2.0.0:
@@ -25008,7 +24526,7 @@ packages:
dependencies:
all-node-versions: 11.3.0
filter-obj: 5.1.0
- semver: 7.6.0
+ semver: 7.5.4
dev: false
/normalize-package-data@2.5.0:
@@ -25025,7 +24543,7 @@ packages:
dependencies:
hosted-git-info: 4.1.0
is-core-module: 2.13.1
- semver: 7.6.0
+ semver: 7.5.4
validate-npm-package-license: 3.0.4
/normalize-package-data@6.0.0:
@@ -25034,7 +24552,7 @@ packages:
dependencies:
hosted-git-info: 7.0.1
is-core-module: 2.13.1
- semver: 7.6.0
+ semver: 7.5.4
validate-npm-package-license: 3.0.4
dev: false
@@ -25061,8 +24579,8 @@ packages:
engines: {node: '>=12.20'}
dev: true
- /normalize-url@8.0.1:
- resolution: {integrity: sha512-IO9QvjUMWxPQQhs60oOu10CRkWCiZzSUkzbXGGV9pviYl1fXYcvkzQ5jV9z8Y6un8ARoVRl4EtC6v6jNqbaJ/w==}
+ /normalize-url@8.0.0:
+ resolution: {integrity: sha512-uVFpKhj5MheNBJRTiMZ9pE/7hD1QTeEvugSJW/OmLzAp78PB5O6adfMNTvmfKhXBkvCzC+rqifWcVYpGFwTjnw==}
engines: {node: '>=14.16'}
/not@0.1.0:
@@ -25081,8 +24599,8 @@ packages:
dependencies:
path-key: 3.1.1
- /npm-run-path@5.3.0:
- resolution: {integrity: sha512-ppwTtiJZq0O/ai0z7yfudtBpWIoxM8yE6nHi1X47eFR2EWORqfbu6CnPlNsjeN683eT0qG6H/Pyf9fCcvjnnnQ==}
+ /npm-run-path@5.2.0:
+ resolution: {integrity: sha512-W4/tgAXFqFA0iL7fk0+uQ3g7wkL8xJmx3XdK0VGb4cHW//eZTtKGvFBBoRKVTpY7n6ze4NL9ly7rgXcHufqXKg==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
dependencies:
path-key: 4.0.0
@@ -25113,7 +24631,7 @@ packages:
dependencies:
boolbase: 1.0.0
- /null-loader@4.0.1(webpack@5.91.0):
+ /null-loader@4.0.1(webpack@5.89.0):
resolution: {integrity: sha512-pxqVbi4U6N26lq+LmgIbB5XATP0VdZKOG25DhHi8btMmJJefGArFyDg1yc4U3hWCJbMqSrw0qyrz1UQX+qYXqg==}
engines: {node: '>= 10.13.0'}
peerDependencies:
@@ -25121,7 +24639,7 @@ packages:
dependencies:
loader-utils: 2.0.4
schema-utils: 3.3.0
- webpack: 5.91.0(esbuild@0.19.12)
+ webpack: 5.89.0
/nullthrows@1.1.1:
resolution: {integrity: sha512-2vPPEi+Z7WqML2jZYddDIfy5Dqb0r2fze2zTxNNknZaFpVHU3mFB3R+DWeJWGVx0ecvttSGlJTI+WG+8Z4cDWw==}
@@ -25147,7 +24665,7 @@ packages:
istanbul-lib-processinfo: 2.0.3
istanbul-lib-report: 3.0.1
istanbul-lib-source-maps: 4.0.1
- istanbul-reports: 3.1.7
+ istanbul-reports: 3.1.6
make-dir: 3.1.0
node-preload: 0.2.1
p-map: 3.0.0
@@ -25162,16 +24680,15 @@ packages:
- supports-color
dev: true
- /nypm@0.3.8:
- resolution: {integrity: sha512-IGWlC6So2xv6V4cIDmoV0SwwWx7zLG086gyqkyumteH2fIgCAM4nDVFB2iDRszDvmdSVW9xb1N+2KjQ6C7d4og==}
+ /nypm@0.3.4:
+ resolution: {integrity: sha512-1JLkp/zHBrkS3pZ692IqOaIKSYHmQXgqfELk6YTOfVBnwealAmPA1q2kKK7PHJAHSMBozerThEFZXP3G6o7Ukg==}
engines: {node: ^14.16.0 || >=16.10.0}
hasBin: true
dependencies:
citty: 0.1.6
- consola: 3.2.3
execa: 8.0.1
pathe: 1.1.2
- ufo: 1.5.3
+ ufo: 1.4.0
dev: true
/object-assign@4.1.1:
@@ -25193,18 +24710,20 @@ packages:
/object-inspect@1.13.1:
resolution: {integrity: sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ==}
+ requiresBuild: true
- /object-is@1.1.6:
- resolution: {integrity: sha512-F8cZ+KfGlSGi09lJT7/Nd6KJZ9ygtvYC0/UYYLI9nmQKLMnydpB9yvbv9K1uSkEu7FU9vYPmVwLg328tX+ot3Q==}
+ /object-is@1.1.5:
+ resolution: {integrity: sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw==}
engines: {node: '>= 0.4'}
dependencies:
- call-bind: 1.0.7
+ call-bind: 1.0.5
define-properties: 1.2.1
dev: true
/object-keys@1.1.1:
resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==}
engines: {node: '>= 0.4'}
+ requiresBuild: true
/object-visit@1.0.1:
resolution: {integrity: sha512-GBaMwwAVK9qbQN3Scdo0OyvgPW7l3lnaVMj84uTOZlswkX0KpF6fyDBJhtTthf7pymztoN36/KEr1DyhF96zEA==}
@@ -25217,43 +24736,40 @@ packages:
resolution: {integrity: sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==}
engines: {node: '>= 0.4'}
dependencies:
- call-bind: 1.0.7
+ call-bind: 1.0.5
define-properties: 1.2.1
has-symbols: 1.0.3
object-keys: 1.1.1
- /object.entries@1.1.8:
- resolution: {integrity: sha512-cmopxi8VwRIAw/fkijJohSfpef5PdN0pMQJN6VC/ZKvn0LIknWD8KtgY6KlQdEc4tIjcQ3HxSMmnvtzIscdaYQ==}
+ /object.entries@1.1.7:
+ resolution: {integrity: sha512-jCBs/0plmPsOnrKAfFQXRG2NFjlhZgjjcBLSmTnEhU8U6vVTsVe8ANeQJCHTl3gSsI4J+0emOoCgoKlmQPMgmA==}
engines: {node: '>= 0.4'}
dependencies:
- call-bind: 1.0.7
+ call-bind: 1.0.5
define-properties: 1.2.1
- es-object-atoms: 1.0.0
+ es-abstract: 1.22.3
- /object.fromentries@2.0.8:
- resolution: {integrity: sha512-k6E21FzySsSK5a21KRADBd/NGneRegFO5pLHfdQLpRDETUNJueLXs3WCzyQ3tFRDYgbq3KHGXfTbi2bs8WQ6rQ==}
+ /object.fromentries@2.0.7:
+ resolution: {integrity: sha512-UPbPHML6sL8PI/mOqPwsH4G6iyXcCGzLin8KvEPenOZN5lpCNBZZQ+V62vdjB1mQHrmqGQt5/OJzemUA+KJmEA==}
engines: {node: '>= 0.4'}
dependencies:
- call-bind: 1.0.7
+ call-bind: 1.0.5
define-properties: 1.2.1
- es-abstract: 1.23.3
- es-object-atoms: 1.0.0
+ es-abstract: 1.22.3
- /object.groupby@1.0.3:
- resolution: {integrity: sha512-+Lhy3TQTuzXI5hevh8sBGqbmurHbbIjAi0Z4S63nthVLmLxfbj4T54a4CfZrXIrt9iP4mVAPYMo/v99taj3wjQ==}
- engines: {node: '>= 0.4'}
+ /object.groupby@1.0.1:
+ resolution: {integrity: sha512-HqaQtqLnp/8Bn4GL16cj+CUYbnpe1bh0TtEaWvybszDG4tgxCJuRpV8VGuvNaI1fAnI4lUJzDG55MXcOH4JZcQ==}
dependencies:
- call-bind: 1.0.7
+ call-bind: 1.0.5
define-properties: 1.2.1
- es-abstract: 1.23.3
+ es-abstract: 1.22.3
+ get-intrinsic: 1.2.2
- /object.hasown@1.1.4:
- resolution: {integrity: sha512-FZ9LZt9/RHzGySlBARE3VF+gE26TxR38SdmqOqliuTnl9wrKulaQs+4dee1V+Io8VfxqzAfHu6YuRgUy8OHoTg==}
- engines: {node: '>= 0.4'}
+ /object.hasown@1.1.3:
+ resolution: {integrity: sha512-fFI4VcYpRHvSLXxP7yiZOMAd331cPfd2p7PFDVbgUsYOfCT3tICVqXWngbjr4m49OvsBwUBQ6O2uQoJvy3RexA==}
dependencies:
define-properties: 1.2.1
- es-abstract: 1.23.3
- es-object-atoms: 1.0.0
+ es-abstract: 1.22.3
/object.pick@1.3.0:
resolution: {integrity: sha512-tqa/UMy/CCoYmj+H5qc07qvSL9dqcs/WZENZ1JbtWBlATP+iVOe778gE6MSijnyCnORzDuX6hU+LA4SZ09YjFQ==}
@@ -25262,20 +24778,20 @@ packages:
isobject: 3.0.1
dev: false
- /object.values@1.2.0:
- resolution: {integrity: sha512-yBYjY9QX2hnRmZHAjG/f13MzmBzxzYgQhFrke06TTyKY5zSTEqkOeukBzIdVA3j3ulu8Qa3MbVFShV7T2RmGtQ==}
+ /object.values@1.1.7:
+ resolution: {integrity: sha512-aU6xnDFYT3x17e/f0IiiwlGPTy2jzMySGfUB4fq6z7CV8l85CWHDk5ErhyhpfDHhrOMwGFhSQkhMGHaIotA6Ng==}
engines: {node: '>= 0.4'}
dependencies:
- call-bind: 1.0.7
+ call-bind: 1.0.5
define-properties: 1.2.1
- es-object-atoms: 1.0.0
+ es-abstract: 1.22.3
- /ofetch@1.3.4:
- resolution: {integrity: sha512-KLIET85ik3vhEfS+3fDlc/BAZiAp+43QEC/yCo5zkNoY2YaKvNkOaFr/6wCFgFH1kuYQM5pMNi0Tg8koiIemtw==}
+ /ofetch@1.3.3:
+ resolution: {integrity: sha512-s1ZCMmQWXy4b5K/TW9i/DtiN8Ku+xCiHcjQ6/J/nDdssirrQNOoB165Zu8EqLMA2lln1JUth9a0aW9Ap2ctrUg==}
dependencies:
destr: 2.0.3
- node-fetch-native: 1.6.4
- ufo: 1.5.3
+ node-fetch-native: 1.6.1
+ ufo: 1.4.0
dev: false
/ohash@1.1.3:
@@ -25285,7 +24801,7 @@ packages:
resolution: {integrity: sha512-3kBBuZC627vDL8vnUdfVbCbfkhkcZj2kXPHQcuLhC4JJEA+XkEVEtEde8x8+AZctRbHwBkSiubTPaRukgLxIRw==}
dependencies:
'@mapbox/mapbox-gl-style-spec': 13.28.0
- mapbox-to-css-font: 2.4.4
+ mapbox-to-css-font: 2.4.2
dev: false
/ol@6.15.1:
@@ -25379,6 +24895,7 @@ packages:
/optionator@0.9.3:
resolution: {integrity: sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==}
engines: {node: '>= 0.8.0'}
+ requiresBuild: true
dependencies:
'@aashutoshrathi/word-wrap': 1.2.6
deep-is: 0.1.4
@@ -25410,7 +24927,7 @@ packages:
resolution: {integrity: sha512-ERAyNnZOfqM+Ao3RAvIXkYh5joP220yf59gVe2X/cI6SiCxIdi4c9HZKZD8R6q/RDXEje1THBju6iExiSsgJaQ==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
dependencies:
- chalk: 5.2.0
+ chalk: 5.3.0
cli-cursor: 4.0.0
cli-spinners: 2.9.2
is-interactive: 2.0.0
@@ -25510,6 +25027,7 @@ packages:
/p-limit@4.0.0:
resolution: {integrity: sha512-5b0R4txpzjPWVw/cXXUResoD4hb6U/x9BH08L7nw+GN1sezDzPdxeRvpc9c433fZhBan/wusjbCsqwqm4EIBIQ==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
+ requiresBuild: true
dependencies:
yocto-queue: 1.0.0
@@ -25560,6 +25078,7 @@ packages:
/p-map@4.0.0:
resolution: {integrity: sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==}
engines: {node: '>=10'}
+ requiresBuild: true
dependencies:
aggregate-error: 3.1.0
@@ -25662,7 +25181,7 @@ packages:
got: 12.6.1
registry-auth-token: 5.0.2
registry-url: 6.0.1
- semver: 7.6.0
+ semver: 7.5.4
/pako@0.2.9:
resolution: {integrity: sha512-NUcwaKxUxWrZLpDG+z/xZaCgQITkA/Dv4V/T6bw7VON6l1Xz/VnrBqrYjZQ12TamKHzITTfOEIYUj48y2KXImA==}
@@ -25741,7 +25260,7 @@ packages:
resolution: {integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==}
engines: {node: '>=8'}
dependencies:
- '@babel/code-frame': 7.24.2
+ '@babel/code-frame': 7.23.5
error-ex: 1.3.2
json-parse-even-better-errors: 2.3.1
lines-and-columns: 1.2.4
@@ -25750,7 +25269,7 @@ packages:
resolution: {integrity: sha512-rum1bPifK5SSar35Z6EKZuYPJx85pkNaFrxBK3mwdfSJ1/WKbYrjoW/zTPSjRRamfmVX1ACBIdFAO0VRErW/EA==}
engines: {node: '>=18'}
dependencies:
- '@babel/code-frame': 7.24.2
+ '@babel/code-frame': 7.23.5
index-to-position: 0.1.2
type-fest: 4.15.0
dev: false
@@ -25858,6 +25377,7 @@ packages:
/path-parse@1.0.7:
resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==}
+ requiresBuild: true
/path-root-regex@0.1.2:
resolution: {integrity: sha512-4GlJ6rZDhQZFE0DPVKh0e9jmZ5egZfxTkp7bcRDuPlJXbAwhxcl2dINPUAsjLdejqaLsCeg8axcLjIbvBjN4pQ==}
@@ -25869,11 +25389,11 @@ packages:
dependencies:
path-root-regex: 0.1.2
- /path-scurry@1.10.2:
- resolution: {integrity: sha512-7xTavNy5RQXnsjANvVvMkEjvloOinkAjv/Z6Ildz9v2RinZ4SBKTWFOVRbaF8p0vpHnyjV/UwNDdKuUv6M5qcA==}
+ /path-scurry@1.10.1:
+ resolution: {integrity: sha512-MkhCqzzBEpPvxxQ71Md0b1Kk51W01lrYvlMzSUaIzNsODdd7mqhiimSZlr+VegAz5Z6Vzt9Xg2ttE//XBhH3EQ==}
engines: {node: '>=16 || 14 >=14.17'}
dependencies:
- lru-cache: 10.2.0
+ lru-cache: 10.1.0
minipass: 7.0.4
/path-to-regexp@0.1.7:
@@ -25897,11 +25417,17 @@ packages:
resolution: {integrity: sha512-5HviZNaZcfqP95rwpv+1HDgUamezbqdSYTyzjTvwtJSnIH+3vnbmWsItli8OFEndS984VT55M3jduxZbX351gg==}
engines: {node: '>=12'}
+ /pathe@1.1.1:
+ resolution: {integrity: sha512-d+RQGp0MAYTIaDBIMmOfMwz3E+LOZnxx1HZd5R18mmCZY0QBlK0LDZfPc8FW8Ed2DlvsuE6PRjroDY+wg4+j/Q==}
+ requiresBuild: true
+ dev: true
+
/pathe@1.1.2:
resolution: {integrity: sha512-whLdWMYL2TwI08hn8/ZqAbrVemu0LNaNNJZX73O6qaIdCTfXutsLhMkjdENX0qhsQ9uIimo4/aQOmXkoon2nDQ==}
/pathval@1.1.1:
resolution: {integrity: sha512-Dp6zGqpTdETdR63lehJYPeIOqpiNBNtc7BpWSLrOje7UaIsE5aY92r/AunQA7rsXvet3lrJ3JnZX29UPTKXyKQ==}
+ requiresBuild: true
/pause-stream@0.0.11:
resolution: {integrity: sha512-e3FBlXLmN/D1S+zHzanP4E/4Z60oFAa3O051qt1pxa7DEJWKAyil6upYVXCWadEnuoqa4Pkc9oUx9zsxYeRv8A==}
@@ -25935,8 +25461,8 @@ packages:
/pend@1.2.0:
resolution: {integrity: sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg==}
- /pg-connection-string@2.6.4:
- resolution: {integrity: sha512-v+Z7W/0EO707aNMaAEfiGnGL9sxxumwLl2fJvCQtMn9Fxsg+lPpPkdcyBSv/KFgpGdYkMfn+EI1Or2EHjpgLCA==}
+ /pg-connection-string@2.6.2:
+ resolution: {integrity: sha512-ch6OwaeaPYcova4kKZ15sbJ2hKb/VP48ZD2gE7i1J+L4MspCtBMAx8nMgz7bksc7IojCIIWuEhHibSMFH8m8oA==}
dev: false
/physical-cpu-count@2.0.0:
@@ -25969,12 +25495,12 @@ packages:
resolution: {integrity: sha512-cHjPPsE+vhj/tnhCy/wiMh3M3z3h/j15zHQX+S9GkTBgqJuTuJzYJ4gUyACLhDaJ7kk9ba9iRDmbH2tJU03OiA==}
dev: false
- /pino@8.20.0:
- resolution: {integrity: sha512-uhIfMj5TVp+WynVASaVEJFTncTUe4dHBq6CWplu/vBgvGHhvBvQfxz+vcOrnnBQdORH3izaGEurLfNlq3YxdFQ==}
+ /pino@8.17.2:
+ resolution: {integrity: sha512-LA6qKgeDMLr2ux2y/YiUt47EfgQ+S9LznBWOJdN3q1dx2sv0ziDLUBeVpyVv17TEcGCBuWf0zNtg3M5m1NhhWQ==}
hasBin: true
dependencies:
atomic-sleep: 1.0.0
- fast-redact: 3.5.0
+ fast-redact: 3.3.0
on-exit-leak-free: 2.1.2
pino-abstract-transport: 1.1.0
pino-std-serializers: 6.2.2
@@ -25982,7 +25508,7 @@ packages:
quick-format-unescaped: 4.0.4
real-require: 0.2.0
safe-stable-stringify: 2.4.3
- sonic-boom: 3.8.1
+ sonic-boom: 3.7.0
thread-stream: 2.4.1
dev: false
@@ -26019,8 +25545,9 @@ packages:
/pkg-types@1.0.3:
resolution: {integrity: sha512-nN7pYi0AQqJnoLPC9eHFQ8AcyaixBUOwvqc5TDnIKCMEE6I0y8P7OKA7fPexsXGCGxQDl/cmrLAp26LhcwxZ4A==}
+ requiresBuild: true
dependencies:
- jsonc-parser: 3.2.1
+ jsonc-parser: 3.2.0
mlly: 1.6.1
pathe: 1.1.2
@@ -26039,12 +25566,6 @@ packages:
hasBin: true
dev: true
- /playwright-core@1.43.0:
- resolution: {integrity: sha512-iWFjyBUH97+pUFiyTqSLd8cDMMOS0r2ZYz2qEsPjH8/bX++sbIJT35MSwKnp1r/OQBAqC5XO99xFbJ9XClhf4w==}
- engines: {node: '>=16'}
- hasBin: true
- dev: true
-
/playwright@1.40.1:
resolution: {integrity: sha512-2eHI7IioIpQ0bS1Ovg/HszsN/XKNwEG1kbzSDDmADpclKc7CyqkHw7Mg2JCz/bbCxg25QUPcjksoMW7JcIFQmw==}
engines: {node: '>=16'}
@@ -26055,21 +25576,11 @@ packages:
fsevents: 2.3.2
dev: true
- /playwright@1.43.0:
- resolution: {integrity: sha512-SiOKHbVjTSf6wHuGCbqrEyzlm6qvXcv7mENP+OZon1I07brfZLGdfWV0l/efAzVx7TF3Z45ov1gPEkku9q25YQ==}
- engines: {node: '>=16'}
- hasBin: true
- dependencies:
- playwright-core: 1.43.0
- optionalDependencies:
- fsevents: 2.3.2
- dev: true
-
- /polished@4.3.1:
- resolution: {integrity: sha512-OBatVyC/N7SCW/FaDHrSd+vn0o5cS855TOmYi4OkdWUMSJCET/xip//ch8xGUvtr3i44X9LVyWwQlRMTN3pwSA==}
+ /polished@4.2.2:
+ resolution: {integrity: sha512-Sz2Lkdxz6F2Pgnpi9U5Ng/WdWAUZxmHrNPoVlm3aAemxoy2Qy7LGjQg4uf8qKelDAUW94F4np3iH2YPf2qefcQ==}
engines: {node: '>=10'}
dependencies:
- '@babel/runtime': 7.24.4
+ '@babel/runtime': 7.23.7
dev: true
/posix-character-classes@0.1.1:
@@ -26077,17 +25588,13 @@ packages:
engines: {node: '>=0.10.0'}
dev: false
- /possible-typed-array-names@1.0.0:
- resolution: {integrity: sha512-d7Uw+eZoloe0EHDIYoe+bQ5WXnGMOpmiZFTuMWCwpjzzkL2nTjcKiAk4hh8TjnGye2TwWOk3UXucZ+3rbmBa8Q==}
- engines: {node: '>= 0.4'}
-
- /postcss-calc@8.2.4(postcss@8.4.38):
+ /postcss-calc@8.2.4(postcss@8.4.32):
resolution: {integrity: sha512-SmWMSJmB8MRnnULldx0lQIyhSNvuDl9HfrZkaqqE/WHAhToYsAvDq+yAsA/kIyINDszOp3Rh0GFoNuH5Ypsm3Q==}
peerDependencies:
postcss: ^8.2.2
dependencies:
- postcss: 8.4.38
- postcss-selector-parser: 6.0.16
+ postcss: 8.4.32
+ postcss-selector-parser: 6.0.15
postcss-value-parser: 4.2.0
/postcss-calc@9.0.1(postcss@8.4.32):
@@ -26097,7 +25604,7 @@ packages:
postcss: ^8.2.2
dependencies:
postcss: 8.4.32
- postcss-selector-parser: 6.0.16
+ postcss-selector-parser: 6.0.15
postcss-value-parser: 4.2.0
dev: true
@@ -26108,15 +25615,15 @@ packages:
peerDependencies:
postcss: ^8.0.0
dependencies:
- chokidar: 3.6.0
+ chokidar: 3.5.3
dependency-graph: 0.11.0
fs-extra: 11.2.0
get-stdin: 9.0.0
- globby: 14.0.1
+ globby: 14.0.0
picocolors: 1.0.0
postcss: 8.4.32
- postcss-load-config: 5.0.3(postcss@8.4.32)
- postcss-reporter: 7.1.0(postcss@8.4.32)
+ postcss-load-config: 5.0.2(postcss@8.4.32)
+ postcss-reporter: 7.0.5(postcss@8.4.32)
pretty-hrtime: 1.0.3
read-cache: 1.0.0
slash: 5.1.0
@@ -26125,62 +25632,62 @@ packages:
- jiti
dev: true
- /postcss-colormin@5.3.1(postcss@8.4.38):
+ /postcss-colormin@5.3.1(postcss@8.4.32):
resolution: {integrity: sha512-UsWQG0AqTFQmpBegeLLc1+c3jIqBNB0zlDGRWR+dQ3pRKJL1oeMzyqmH3o2PIfn9MBdNrVPWhDbT769LxCTLJQ==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- browserslist: 4.23.0
+ browserslist: 4.22.2
caniuse-api: 3.0.0
colord: 2.9.3
- postcss: 8.4.38
+ postcss: 8.4.32
postcss-value-parser: 4.2.0
- /postcss-colormin@6.1.0(postcss@8.4.32):
- resolution: {integrity: sha512-x9yX7DOxeMAR+BgGVnNSAxmAj98NX/YxEMNFP+SDCEeNLb2r3i6Hh1ksMsnW8Ub5SLCpbescQqn9YEbE9554Sw==}
+ /postcss-colormin@6.0.2(postcss@8.4.32):
+ resolution: {integrity: sha512-TXKOxs9LWcdYo5cgmcSHPkyrLAh86hX1ijmyy6J8SbOhyv6ua053M3ZAM/0j44UsnQNIWdl8gb5L7xX2htKeLw==}
engines: {node: ^14 || ^16 || >=18.0}
peerDependencies:
postcss: ^8.4.31
dependencies:
- browserslist: 4.23.0
+ browserslist: 4.22.2
caniuse-api: 3.0.0
colord: 2.9.3
postcss: 8.4.32
postcss-value-parser: 4.2.0
dev: true
- /postcss-convert-values@5.1.3(postcss@8.4.38):
+ /postcss-convert-values@5.1.3(postcss@8.4.32):
resolution: {integrity: sha512-82pC1xkJZtcJEfiLw6UXnXVXScgtBrjlO5CBmuDQc+dlb88ZYheFsjTn40+zBVi3DkfF7iezO0nJUPLcJK3pvA==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- browserslist: 4.23.0
- postcss: 8.4.38
+ browserslist: 4.22.2
+ postcss: 8.4.32
postcss-value-parser: 4.2.0
- /postcss-convert-values@6.1.0(postcss@8.4.32):
- resolution: {integrity: sha512-zx8IwP/ts9WvUM6NkVSkiU902QZL1bwPhaVaLynPtCsOTqp+ZKbNi+s6XJg3rfqpKGA/oc7Oxk5t8pOQJcwl/w==}
+ /postcss-convert-values@6.0.2(postcss@8.4.32):
+ resolution: {integrity: sha512-aeBmaTnGQ+NUSVQT8aY0sKyAD/BaLJenEKZ03YK0JnDE1w1Rr8XShoxdal2V2H26xTJKr3v5haByOhJuyT4UYw==}
engines: {node: ^14 || ^16 || >=18.0}
peerDependencies:
postcss: ^8.4.31
dependencies:
- browserslist: 4.23.0
+ browserslist: 4.22.2
postcss: 8.4.32
postcss-value-parser: 4.2.0
dev: true
- /postcss-discard-comments@5.1.2(postcss@8.4.38):
+ /postcss-discard-comments@5.1.2(postcss@8.4.32):
resolution: {integrity: sha512-+L8208OVbHVF2UQf1iDmRcbdjJkuBF6IS29yBDSiWUIzpYaAhtNl6JYnYm12FnkeCwQqF5LeklOu6rAqgfBZqQ==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.38
+ postcss: 8.4.32
- /postcss-discard-comments@6.0.2(postcss@8.4.32):
- resolution: {integrity: sha512-65w/uIqhSBBfQmYnG92FO1mWZjJ4GL5b8atm5Yw2UgrwD7HiNiSSNwJor1eCFGzUgYnN/iIknhNRVqjrrpuglw==}
+ /postcss-discard-comments@6.0.1(postcss@8.4.32):
+ resolution: {integrity: sha512-f1KYNPtqYLUeZGCHQPKzzFtsHaRuECe6jLakf/RjSRqvF5XHLZnM2+fXLhb8Qh/HBFHs3M4cSLb1k3B899RYIg==}
engines: {node: ^14 || ^16 || >=18.0}
peerDependencies:
postcss: ^8.4.31
@@ -26188,16 +25695,16 @@ packages:
postcss: 8.4.32
dev: true
- /postcss-discard-duplicates@5.1.0(postcss@8.4.38):
+ /postcss-discard-duplicates@5.1.0(postcss@8.4.32):
resolution: {integrity: sha512-zmX3IoSI2aoenxHV6C7plngHWWhUOV3sP1T8y2ifzxzbtnuhk1EdPwm0S1bIUNaJ2eNbWeGLEwzw8huPD67aQw==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.38
+ postcss: 8.4.32
- /postcss-discard-duplicates@6.0.3(postcss@8.4.32):
- resolution: {integrity: sha512-+JA0DCvc5XvFAxwx6f/e68gQu/7Z9ud584VLmcgto28eB8FqSFZwtrLwB5Kcp70eIoWP/HXqz4wpo8rD8gpsTw==}
+ /postcss-discard-duplicates@6.0.1(postcss@8.4.32):
+ resolution: {integrity: sha512-1hvUs76HLYR8zkScbwyJ8oJEugfPV+WchpnA+26fpJ7Smzs51CzGBHC32RS03psuX/2l0l0UKh2StzNxOrKCYg==}
engines: {node: ^14 || ^16 || >=18.0}
peerDependencies:
postcss: ^8.4.31
@@ -26205,16 +25712,16 @@ packages:
postcss: 8.4.32
dev: true
- /postcss-discard-empty@5.1.1(postcss@8.4.38):
+ /postcss-discard-empty@5.1.1(postcss@8.4.32):
resolution: {integrity: sha512-zPz4WljiSuLWsI0ir4Mcnr4qQQ5e1Ukc3i7UfE2XcrwKK2LIPIqE5jxMRxO6GbI3cv//ztXDsXwEWT3BHOGh3A==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.38
+ postcss: 8.4.32
- /postcss-discard-empty@6.0.3(postcss@8.4.32):
- resolution: {integrity: sha512-znyno9cHKQsK6PtxL5D19Fj9uwSzC2mB74cpT66fhgOadEUPyXFkbgwm5tvc3bt3NAy8ltE5MrghxovZRVnOjQ==}
+ /postcss-discard-empty@6.0.1(postcss@8.4.32):
+ resolution: {integrity: sha512-yitcmKwmVWtNsrrRqGJ7/C0YRy53i0mjexBDQ9zYxDwTWVBgbU4+C9jIZLmQlTDT9zhml+u0OMFJh8+31krmOg==}
engines: {node: ^14 || ^16 || >=18.0}
peerDependencies:
postcss: ^8.4.31
@@ -26222,16 +25729,16 @@ packages:
postcss: 8.4.32
dev: true
- /postcss-discard-overridden@5.1.0(postcss@8.4.38):
+ /postcss-discard-overridden@5.1.0(postcss@8.4.32):
resolution: {integrity: sha512-21nOL7RqWR1kasIVdKs8HNqQJhFxLsyRfAnUDm4Fe4t4mCWL9OJiHvlHPjcd8zc5Myu89b/7wZDnOSjFgeWRtw==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.38
+ postcss: 8.4.32
- /postcss-discard-overridden@6.0.2(postcss@8.4.32):
- resolution: {integrity: sha512-j87xzI4LUggC5zND7KdjsI25APtyMuynXZSujByMaav2roV6OZX+8AaCUcZSWqckZpjAjRyFDdpqybgjFO0HJQ==}
+ /postcss-discard-overridden@6.0.1(postcss@8.4.32):
+ resolution: {integrity: sha512-qs0ehZMMZpSESbRkw1+inkf51kak6OOzNRaoLd/U7Fatp0aN2HQ1rxGOrJvYcRAN9VpX8kUF13R2ofn8OlvFVA==}
engines: {node: ^14 || ^16 || >=18.0}
peerDependencies:
postcss: ^8.4.31
@@ -26239,12 +25746,12 @@ packages:
postcss: 8.4.32
dev: true
- /postcss-flexbugs-fixes@5.0.2(postcss@8.4.38):
+ /postcss-flexbugs-fixes@5.0.2(postcss@8.4.32):
resolution: {integrity: sha512-18f9voByak7bTktR2QgDveglpn9DTbBWPUzSOe9g0N4WR/2eSt6Vrcbf0hmspvMI6YWGywz6B9f7jzpFNJJgnQ==}
peerDependencies:
postcss: ^8.1.4
dependencies:
- postcss: 8.4.38
+ postcss: 8.4.32
/postcss-import-ext-glob@2.1.1(postcss@8.4.32):
resolution: {integrity: sha512-qd4ELOx2G0hyjgtmLnf/fSVJXXPhkcxcxhLT1y1mAnk53JYbMLoGg+AFtnJowOSvnv4CvjPAzpLpAcfWeofP5g==}
@@ -26267,20 +25774,6 @@ packages:
postcss-value-parser: 4.2.0
read-cache: 1.0.0
resolve: 1.22.8
- dev: true
-
- /postcss-import@15.1.0(postcss@8.4.38):
- resolution: {integrity: sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==}
- engines: {node: '>=14.0.0'}
- peerDependencies:
- postcss: ^8.0.0
- dependencies:
- postcss: 8.4.38
- postcss-value-parser: 4.2.0
- read-cache: 1.0.0
- resolve: 1.22.8
- dev: false
- optional: true
/postcss-import@16.0.0(postcss@8.4.32):
resolution: {integrity: sha512-e77lhVvrD1I2y7dYmBv0k9ULTdArgEYZt97T4w6sFIU5uxIHvDFQlKgUUyY7v7Barj0Yf/zm5A4OquZN7jKm5Q==}
@@ -26302,20 +25795,8 @@ packages:
dependencies:
camelcase-css: 2.0.1
postcss: 8.4.32
- dev: true
-
- /postcss-js@4.0.1(postcss@8.4.38):
- resolution: {integrity: sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==}
- engines: {node: ^12 || ^14 || >= 16}
- peerDependencies:
- postcss: ^8.4.21
- dependencies:
- camelcase-css: 2.0.1
- postcss: 8.4.38
- dev: false
- optional: true
- /postcss-load-config@4.0.2(postcss@8.4.32):
+ /postcss-load-config@4.0.2:
resolution: {integrity: sha512-bSVhyJGL00wMVoPUzAVAnbEoWyqRxkjv64tUl427SKnPrENtq6hJwUojroMz2VB+Q1edmi4IfrAPpami5VVgMQ==}
engines: {node: '>= 14'}
peerDependencies:
@@ -26327,12 +25808,11 @@ packages:
ts-node:
optional: true
dependencies:
- lilconfig: 3.1.1
- postcss: 8.4.32
+ lilconfig: 3.0.0
yaml: 2.3.4
dev: true
- /postcss-load-config@4.0.2(postcss@8.4.38):
+ /postcss-load-config@4.0.2(postcss@8.4.32):
resolution: {integrity: sha512-bSVhyJGL00wMVoPUzAVAnbEoWyqRxkjv64tUl427SKnPrENtq6hJwUojroMz2VB+Q1edmi4IfrAPpami5VVgMQ==}
engines: {node: '>= 14'}
peerDependencies:
@@ -26344,12 +25824,12 @@ packages:
ts-node:
optional: true
dependencies:
- lilconfig: 3.1.1
- postcss: 8.4.38
+ lilconfig: 3.0.0
+ postcss: 8.4.32
yaml: 2.3.4
- /postcss-load-config@5.0.3(postcss@8.4.32):
- resolution: {integrity: sha512-90pBBI5apUVruIEdCxZic93Wm+i9fTrp7TXbgdUCH+/L+2WnfpITSpq5dFU/IPvbv7aNiMlQISpUkAm3fEcvgQ==}
+ /postcss-load-config@5.0.2(postcss@8.4.32):
+ resolution: {integrity: sha512-Q8QR3FYbqOKa0bnC1UQ2bFq9/ulHX5Bi34muzitMr8aDtUelO5xKeJEYC/5smE0jNE9zdB/NBnOwXKexELbRlw==}
engines: {node: '>= 18'}
peerDependencies:
jiti: '>=1.21.0'
@@ -26360,12 +25840,12 @@ packages:
postcss:
optional: true
dependencies:
- lilconfig: 3.1.1
+ lilconfig: 3.0.0
postcss: 8.4.32
- yaml: 2.4.1
+ yaml: 2.3.4
dev: true
- /postcss-loader@5.3.0(postcss@8.4.38)(webpack@5.91.0):
+ /postcss-loader@5.3.0(postcss@8.4.32)(webpack@5.89.0):
resolution: {integrity: sha512-/+Z1RAmssdiSLgIZwnJHwBMnlABPgF7giYzTN2NOfr9D21IJZ4mQC1R2miwp80zno9M4zMD/umGI8cR+2EL5zw==}
engines: {node: '>= 10.13.0'}
peerDependencies:
@@ -26374,67 +25854,67 @@ packages:
dependencies:
cosmiconfig: 7.1.0
klona: 2.0.6
- postcss: 8.4.38
- semver: 7.6.0
- webpack: 5.91.0(esbuild@0.19.12)
+ postcss: 8.4.32
+ semver: 7.5.4
+ webpack: 5.89.0
- /postcss-merge-longhand@5.1.7(postcss@8.4.38):
+ /postcss-merge-longhand@5.1.7(postcss@8.4.32):
resolution: {integrity: sha512-YCI9gZB+PLNskrK0BB3/2OzPnGhPkBEwmwhfYk1ilBHYVAZB7/tkTHFBAnCrvBBOmeYyMYw3DMjT55SyxMBzjQ==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.38
+ postcss: 8.4.32
postcss-value-parser: 4.2.0
- stylehacks: 5.1.1(postcss@8.4.38)
+ stylehacks: 5.1.1(postcss@8.4.32)
- /postcss-merge-longhand@6.0.5(postcss@8.4.32):
- resolution: {integrity: sha512-5LOiordeTfi64QhICp07nzzuTDjNSO8g5Ksdibt44d+uvIIAE1oZdRn8y/W5ZtYgRH/lnLDlvi9F8btZcVzu3w==}
+ /postcss-merge-longhand@6.0.2(postcss@8.4.32):
+ resolution: {integrity: sha512-+yfVB7gEM8SrCo9w2lCApKIEzrTKl5yS1F4yGhV3kSim6JzbfLGJyhR1B6X+6vOT0U33Mgx7iv4X9MVWuaSAfw==}
engines: {node: ^14 || ^16 || >=18.0}
peerDependencies:
postcss: ^8.4.31
dependencies:
postcss: 8.4.32
postcss-value-parser: 4.2.0
- stylehacks: 6.1.1(postcss@8.4.32)
+ stylehacks: 6.0.2(postcss@8.4.32)
dev: true
- /postcss-merge-rules@5.1.4(postcss@8.4.38):
+ /postcss-merge-rules@5.1.4(postcss@8.4.32):
resolution: {integrity: sha512-0R2IuYpgU93y9lhVbO/OylTtKMVcHb67zjWIfCiKR9rWL3GUk1677LAqD/BcHizukdZEjT8Ru3oHRoAYoJy44g==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- browserslist: 4.23.0
+ browserslist: 4.22.2
caniuse-api: 3.0.0
- cssnano-utils: 3.1.0(postcss@8.4.38)
- postcss: 8.4.38
- postcss-selector-parser: 6.0.16
+ cssnano-utils: 3.1.0(postcss@8.4.32)
+ postcss: 8.4.32
+ postcss-selector-parser: 6.0.15
- /postcss-merge-rules@6.1.1(postcss@8.4.32):
- resolution: {integrity: sha512-KOdWF0gju31AQPZiD+2Ar9Qjowz1LTChSjFFbS+e2sFgc4uHOp3ZvVX4sNeTlk0w2O31ecFGgrFzhO0RSWbWwQ==}
+ /postcss-merge-rules@6.0.3(postcss@8.4.32):
+ resolution: {integrity: sha512-yfkDqSHGohy8sGYIJwBmIGDv4K4/WrJPX355XrxQb/CSsT4Kc/RxDi6akqn5s9bap85AWgv21ArcUWwWdGNSHA==}
engines: {node: ^14 || ^16 || >=18.0}
peerDependencies:
postcss: ^8.4.31
dependencies:
- browserslist: 4.23.0
+ browserslist: 4.22.2
caniuse-api: 3.0.0
- cssnano-utils: 4.0.2(postcss@8.4.32)
+ cssnano-utils: 4.0.1(postcss@8.4.32)
postcss: 8.4.32
- postcss-selector-parser: 6.0.16
+ postcss-selector-parser: 6.0.15
dev: true
- /postcss-minify-font-values@5.1.0(postcss@8.4.38):
+ /postcss-minify-font-values@5.1.0(postcss@8.4.32):
resolution: {integrity: sha512-el3mYTgx13ZAPPirSVsHqFzl+BBBDrXvbySvPGFnQcTI4iNslrPaFq4muTkLZmKlGk4gyFAYUBMH30+HurREyA==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.38
+ postcss: 8.4.32
postcss-value-parser: 4.2.0
- /postcss-minify-font-values@6.1.0(postcss@8.4.32):
- resolution: {integrity: sha512-gklfI/n+9rTh8nYaSJXlCo3nOKqMNkxuGpTn/Qm0gstL3ywTr9/WRKznE+oy6fvfolH6dF+QM4nCo8yPLdvGJg==}
+ /postcss-minify-font-values@6.0.1(postcss@8.4.32):
+ resolution: {integrity: sha512-tIwmF1zUPoN6xOtA/2FgVk1ZKrLcCvE0dpZLtzyyte0j9zUeB8RTbCqrHZGjJlxOvNWKMYtunLrrl7HPOiR46w==}
engines: {node: ^14 || ^16 || >=18.0}
peerDependencies:
postcss: ^8.4.31
@@ -26443,107 +25923,107 @@ packages:
postcss-value-parser: 4.2.0
dev: true
- /postcss-minify-gradients@5.1.1(postcss@8.4.38):
+ /postcss-minify-gradients@5.1.1(postcss@8.4.32):
resolution: {integrity: sha512-VGvXMTpCEo4qHTNSa9A0a3D+dxGFZCYwR6Jokk+/3oB6flu2/PnPXAh2x7x52EkY5xlIHLm+Le8tJxe/7TNhzw==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
colord: 2.9.3
- cssnano-utils: 3.1.0(postcss@8.4.38)
- postcss: 8.4.38
+ cssnano-utils: 3.1.0(postcss@8.4.32)
+ postcss: 8.4.32
postcss-value-parser: 4.2.0
- /postcss-minify-gradients@6.0.3(postcss@8.4.32):
- resolution: {integrity: sha512-4KXAHrYlzF0Rr7uc4VrfwDJ2ajrtNEpNEuLxFgwkhFZ56/7gaE4Nr49nLsQDZyUe+ds+kEhf+YAUolJiYXF8+Q==}
+ /postcss-minify-gradients@6.0.1(postcss@8.4.32):
+ resolution: {integrity: sha512-M1RJWVjd6IOLPl1hYiOd5HQHgpp6cvJVLrieQYS9y07Yo8itAr6jaekzJphaJFR0tcg4kRewCk3kna9uHBxn/w==}
engines: {node: ^14 || ^16 || >=18.0}
peerDependencies:
postcss: ^8.4.31
dependencies:
colord: 2.9.3
- cssnano-utils: 4.0.2(postcss@8.4.32)
+ cssnano-utils: 4.0.1(postcss@8.4.32)
postcss: 8.4.32
postcss-value-parser: 4.2.0
dev: true
- /postcss-minify-params@5.1.4(postcss@8.4.38):
+ /postcss-minify-params@5.1.4(postcss@8.4.32):
resolution: {integrity: sha512-+mePA3MgdmVmv6g+30rn57USjOGSAyuxUmkfiWpzalZ8aiBkdPYjXWtHuwJGm1v5Ojy0Z0LaSYhHaLJQB0P8Jw==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- browserslist: 4.23.0
- cssnano-utils: 3.1.0(postcss@8.4.38)
- postcss: 8.4.38
+ browserslist: 4.22.2
+ cssnano-utils: 3.1.0(postcss@8.4.32)
+ postcss: 8.4.32
postcss-value-parser: 4.2.0
- /postcss-minify-params@6.1.0(postcss@8.4.32):
- resolution: {integrity: sha512-bmSKnDtyyE8ujHQK0RQJDIKhQ20Jq1LYiez54WiaOoBtcSuflfK3Nm596LvbtlFcpipMjgClQGyGr7GAs+H1uA==}
+ /postcss-minify-params@6.0.2(postcss@8.4.32):
+ resolution: {integrity: sha512-zwQtbrPEBDj+ApELZ6QylLf2/c5zmASoOuA4DzolyVGdV38iR2I5QRMsZcHkcdkZzxpN8RS4cN7LPskOkTwTZw==}
engines: {node: ^14 || ^16 || >=18.0}
peerDependencies:
postcss: ^8.4.31
dependencies:
- browserslist: 4.23.0
- cssnano-utils: 4.0.2(postcss@8.4.32)
+ browserslist: 4.22.2
+ cssnano-utils: 4.0.1(postcss@8.4.32)
postcss: 8.4.32
postcss-value-parser: 4.2.0
dev: true
- /postcss-minify-selectors@5.2.1(postcss@8.4.38):
+ /postcss-minify-selectors@5.2.1(postcss@8.4.32):
resolution: {integrity: sha512-nPJu7OjZJTsVUmPdm2TcaiohIwxP+v8ha9NehQ2ye9szv4orirRU3SDdtUmKH+10nzn0bAyOXZ0UEr7OpvLehg==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.38
- postcss-selector-parser: 6.0.16
+ postcss: 8.4.32
+ postcss-selector-parser: 6.0.15
- /postcss-minify-selectors@6.0.4(postcss@8.4.32):
- resolution: {integrity: sha512-L8dZSwNLgK7pjTto9PzWRoMbnLq5vsZSTu8+j1P/2GB8qdtGQfn+K1uSvFgYvgh83cbyxT5m43ZZhUMTJDSClQ==}
+ /postcss-minify-selectors@6.0.2(postcss@8.4.32):
+ resolution: {integrity: sha512-0b+m+w7OAvZejPQdN2GjsXLv5o0jqYHX3aoV0e7RBKPCsB7TYG5KKWBFhGnB/iP3213Ts8c5H4wLPLMm7z28Sg==}
engines: {node: ^14 || ^16 || >=18.0}
peerDependencies:
postcss: ^8.4.31
dependencies:
postcss: 8.4.32
- postcss-selector-parser: 6.0.16
+ postcss-selector-parser: 6.0.15
dev: true
- /postcss-modules-extract-imports@3.1.0(postcss@8.4.38):
- resolution: {integrity: sha512-k3kNe0aNFQDAZGbin48pL2VNidTF0w4/eASDsxlyspobzU3wZQLOGj7L9gfRe0Jo9/4uud09DsjFNH7winGv8Q==}
+ /postcss-modules-extract-imports@3.0.0(postcss@8.4.32):
+ resolution: {integrity: sha512-bdHleFnP3kZ4NYDhuGlVK+CMrQ/pqUm8bx/oGL93K6gVwiclvX5x0n76fYMKuIGKzlABOy13zsvqjb0f92TEXw==}
engines: {node: ^10 || ^12 || >= 14}
peerDependencies:
postcss: ^8.1.0
dependencies:
- postcss: 8.4.38
+ postcss: 8.4.32
- /postcss-modules-local-by-default@4.0.5(postcss@8.4.38):
- resolution: {integrity: sha512-6MieY7sIfTK0hYfafw1OMEG+2bg8Q1ocHCpoWLqOKj3JXlKu4G7btkmM/B7lFubYkYWmRSPLZi5chid63ZaZYw==}
+ /postcss-modules-local-by-default@4.0.3(postcss@8.4.32):
+ resolution: {integrity: sha512-2/u2zraspoACtrbFRnTijMiQtb4GW4BvatjaG/bCjYQo8kLTdevCUlwuBHx2sCnSyrI3x3qj4ZK1j5LQBgzmwA==}
engines: {node: ^10 || ^12 || >= 14}
peerDependencies:
postcss: ^8.1.0
dependencies:
- icss-utils: 5.1.0(postcss@8.4.38)
- postcss: 8.4.38
- postcss-selector-parser: 6.0.16
+ icss-utils: 5.1.0(postcss@8.4.32)
+ postcss: 8.4.32
+ postcss-selector-parser: 6.0.15
postcss-value-parser: 4.2.0
- /postcss-modules-scope@3.2.0(postcss@8.4.38):
- resolution: {integrity: sha512-oq+g1ssrsZOsx9M96c5w8laRmvEu9C3adDSjI8oTcbfkrTE8hx/zfyobUoWIxaKPO8bt6S62kxpw5GqypEw1QQ==}
+ /postcss-modules-scope@3.1.0(postcss@8.4.32):
+ resolution: {integrity: sha512-SaIbK8XW+MZbd0xHPf7kdfA/3eOt7vxJ72IRecn3EzuZVLr1r0orzf0MX/pN8m+NMDoo6X/SQd8oeKqGZd8PXg==}
engines: {node: ^10 || ^12 || >= 14}
peerDependencies:
postcss: ^8.1.0
dependencies:
- postcss: 8.4.38
- postcss-selector-parser: 6.0.16
+ postcss: 8.4.32
+ postcss-selector-parser: 6.0.15
- /postcss-modules-values@4.0.0(postcss@8.4.38):
+ /postcss-modules-values@4.0.0(postcss@8.4.32):
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.38)
- postcss: 8.4.38
+ icss-utils: 5.1.0(postcss@8.4.32)
+ postcss: 8.4.32
/postcss-nested@6.0.1(postcss@8.4.32):
resolution: {integrity: sha512-mEp4xPMi5bSWiMbsgoPfcP74lsWLHkQbZc3sY+jWYd65CUwXrUaTp0fmNpa01ZcETKlIgUdFN/MpS2xZtqL9dQ==}
@@ -26552,30 +26032,18 @@ packages:
postcss: ^8.2.14
dependencies:
postcss: 8.4.32
- postcss-selector-parser: 6.0.16
- dev: true
-
- /postcss-nested@6.0.1(postcss@8.4.38):
- resolution: {integrity: sha512-mEp4xPMi5bSWiMbsgoPfcP74lsWLHkQbZc3sY+jWYd65CUwXrUaTp0fmNpa01ZcETKlIgUdFN/MpS2xZtqL9dQ==}
- engines: {node: '>=12.0'}
- peerDependencies:
- postcss: ^8.2.14
- dependencies:
- postcss: 8.4.38
- postcss-selector-parser: 6.0.16
- dev: false
- optional: true
+ postcss-selector-parser: 6.0.15
- /postcss-normalize-charset@5.1.0(postcss@8.4.38):
+ /postcss-normalize-charset@5.1.0(postcss@8.4.32):
resolution: {integrity: sha512-mSgUJ+pd/ldRGVx26p2wz9dNZ7ji6Pn8VWBajMXFf8jk7vUoSrZ2lt/wZR7DtlZYKesmZI680qjr2CeFF2fbUg==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.38
+ postcss: 8.4.32
- /postcss-normalize-charset@6.0.2(postcss@8.4.32):
- resolution: {integrity: sha512-a8N9czmdnrjPHa3DeFlwqst5eaL5W8jYu3EBbTTkI5FHkfMhFZh1EGbku6jhHhIzTA6tquI2P42NtZ59M/H/kQ==}
+ /postcss-normalize-charset@6.0.1(postcss@8.4.32):
+ resolution: {integrity: sha512-aW5LbMNRZ+oDV57PF9K+WI1Z8MPnF+A8qbajg/T8PP126YrGX1f9IQx21GI2OlGz7XFJi/fNi0GTbY948XJtXg==}
engines: {node: ^14 || ^16 || >=18.0}
peerDependencies:
postcss: ^8.4.31
@@ -26583,17 +26051,17 @@ packages:
postcss: 8.4.32
dev: true
- /postcss-normalize-display-values@5.1.0(postcss@8.4.38):
+ /postcss-normalize-display-values@5.1.0(postcss@8.4.32):
resolution: {integrity: sha512-WP4KIM4o2dazQXWmFaqMmcvsKmhdINFblgSeRgn8BJ6vxaMyaJkwAzpPpuvSIoG/rmX3M+IrRZEz2H0glrQNEA==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.38
+ postcss: 8.4.32
postcss-value-parser: 4.2.0
- /postcss-normalize-display-values@6.0.2(postcss@8.4.32):
- resolution: {integrity: sha512-8H04Mxsb82ON/aAkPeq8kcBbAtI5Q2a64X/mnRRfPXBq7XeogoQvReqxEfc0B4WPq1KimjezNC8flUtC3Qz6jg==}
+ /postcss-normalize-display-values@6.0.1(postcss@8.4.32):
+ resolution: {integrity: sha512-mc3vxp2bEuCb4LgCcmG1y6lKJu1Co8T+rKHrcbShJwUmKJiEl761qb/QQCfFwlrvSeET3jksolCR/RZuMURudw==}
engines: {node: ^14 || ^16 || >=18.0}
peerDependencies:
postcss: ^8.4.31
@@ -26602,17 +26070,17 @@ packages:
postcss-value-parser: 4.2.0
dev: true
- /postcss-normalize-positions@5.1.1(postcss@8.4.38):
+ /postcss-normalize-positions@5.1.1(postcss@8.4.32):
resolution: {integrity: sha512-6UpCb0G4eofTCQLFVuI3EVNZzBNPiIKcA1AKVka+31fTVySphr3VUgAIULBhxZkKgwLImhzMR2Bw1ORK+37INg==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.38
+ postcss: 8.4.32
postcss-value-parser: 4.2.0
- /postcss-normalize-positions@6.0.2(postcss@8.4.32):
- resolution: {integrity: sha512-/JFzI441OAB9O7VnLA+RtSNZvQ0NCFZDOtp6QPFo1iIyawyXg0YI3CYM9HBy1WvwCRHnPep/BvI1+dGPKoXx/Q==}
+ /postcss-normalize-positions@6.0.1(postcss@8.4.32):
+ resolution: {integrity: sha512-HRsq8u/0unKNvm0cvwxcOUEcakFXqZ41fv3FOdPn916XFUrympjr+03oaLkuZENz3HE9RrQE9yU0Xv43ThWjQg==}
engines: {node: ^14 || ^16 || >=18.0}
peerDependencies:
postcss: ^8.4.31
@@ -26621,17 +26089,17 @@ packages:
postcss-value-parser: 4.2.0
dev: true
- /postcss-normalize-repeat-style@5.1.1(postcss@8.4.38):
+ /postcss-normalize-repeat-style@5.1.1(postcss@8.4.32):
resolution: {integrity: sha512-mFpLspGWkQtBcWIRFLmewo8aC3ImN2i/J3v8YCFUwDnPu3Xz4rLohDO26lGjwNsQxB3YF0KKRwspGzE2JEuS0g==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.38
+ postcss: 8.4.32
postcss-value-parser: 4.2.0
- /postcss-normalize-repeat-style@6.0.2(postcss@8.4.32):
- resolution: {integrity: sha512-YdCgsfHkJ2jEXwR4RR3Tm/iOxSfdRt7jplS6XRh9Js9PyCR/aka/FCb6TuHT2U8gQubbm/mPmF6L7FY9d79VwQ==}
+ /postcss-normalize-repeat-style@6.0.1(postcss@8.4.32):
+ resolution: {integrity: sha512-Gbb2nmCy6tTiA7Sh2MBs3fj9W8swonk6lw+dFFeQT68B0Pzwp1kvisJQkdV6rbbMSd9brMlS8I8ts52tAGWmGQ==}
engines: {node: ^14 || ^16 || >=18.0}
peerDependencies:
postcss: ^8.4.31
@@ -26640,17 +26108,17 @@ packages:
postcss-value-parser: 4.2.0
dev: true
- /postcss-normalize-string@5.1.0(postcss@8.4.38):
+ /postcss-normalize-string@5.1.0(postcss@8.4.32):
resolution: {integrity: sha512-oYiIJOf4T9T1N4i+abeIc7Vgm/xPCGih4bZz5Nm0/ARVJ7K6xrDlLwvwqOydvyL3RHNf8qZk6vo3aatiw/go3w==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.38
+ postcss: 8.4.32
postcss-value-parser: 4.2.0
- /postcss-normalize-string@6.0.2(postcss@8.4.32):
- resolution: {integrity: sha512-vQZIivlxlfqqMp4L9PZsFE4YUkWniziKjQWUtsxUiVsSSPelQydwS8Wwcuw0+83ZjPWNTl02oxlIvXsmmG+CiQ==}
+ /postcss-normalize-string@6.0.1(postcss@8.4.32):
+ resolution: {integrity: sha512-5Fhx/+xzALJD9EI26Aq23hXwmv97Zfy2VFrt5PLT8lAhnBIZvmaT5pQk+NuJ/GWj/QWaKSKbnoKDGLbV6qnhXg==}
engines: {node: ^14 || ^16 || >=18.0}
peerDependencies:
postcss: ^8.4.31
@@ -26659,17 +26127,17 @@ packages:
postcss-value-parser: 4.2.0
dev: true
- /postcss-normalize-timing-functions@5.1.0(postcss@8.4.38):
+ /postcss-normalize-timing-functions@5.1.0(postcss@8.4.32):
resolution: {integrity: sha512-DOEkzJ4SAXv5xkHl0Wa9cZLF3WCBhF3o1SKVxKQAa+0pYKlueTpCgvkFAHfk+Y64ezX9+nITGrDZeVGgITJXjg==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.38
+ postcss: 8.4.32
postcss-value-parser: 4.2.0
- /postcss-normalize-timing-functions@6.0.2(postcss@8.4.32):
- resolution: {integrity: sha512-a+YrtMox4TBtId/AEwbA03VcJgtyW4dGBizPl7e88cTFULYsprgHWTbfyjSLyHeBcK/Q9JhXkt2ZXiwaVHoMzA==}
+ /postcss-normalize-timing-functions@6.0.1(postcss@8.4.32):
+ resolution: {integrity: sha512-4zcczzHqmCU7L5dqTB9rzeqPWRMc0K2HoR+Bfl+FSMbqGBUcP5LRfgcH4BdRtLuzVQK1/FHdFoGT3F7rkEnY+g==}
engines: {node: ^14 || ^16 || >=18.0}
peerDependencies:
postcss: ^8.4.31
@@ -26678,39 +26146,39 @@ packages:
postcss-value-parser: 4.2.0
dev: true
- /postcss-normalize-unicode@5.1.1(postcss@8.4.38):
+ /postcss-normalize-unicode@5.1.1(postcss@8.4.32):
resolution: {integrity: sha512-qnCL5jzkNUmKVhZoENp1mJiGNPcsJCs1aaRmURmeJGES23Z/ajaln+EPTD+rBeNkSryI+2WTdW+lwcVdOikrpA==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- browserslist: 4.23.0
- postcss: 8.4.38
+ browserslist: 4.22.2
+ postcss: 8.4.32
postcss-value-parser: 4.2.0
- /postcss-normalize-unicode@6.1.0(postcss@8.4.32):
- resolution: {integrity: sha512-QVC5TQHsVj33otj8/JD869Ndr5Xcc/+fwRh4HAsFsAeygQQXm+0PySrKbr/8tkDKzW+EVT3QkqZMfFrGiossDg==}
+ /postcss-normalize-unicode@6.0.2(postcss@8.4.32):
+ resolution: {integrity: sha512-Ff2VdAYCTGyMUwpevTZPZ4w0+mPjbZzLLyoLh/RMpqUqeQKZ+xMm31hkxBavDcGKcxm6ACzGk0nBfZ8LZkStKA==}
engines: {node: ^14 || ^16 || >=18.0}
peerDependencies:
postcss: ^8.4.31
dependencies:
- browserslist: 4.23.0
+ browserslist: 4.22.2
postcss: 8.4.32
postcss-value-parser: 4.2.0
dev: true
- /postcss-normalize-url@5.1.0(postcss@8.4.38):
+ /postcss-normalize-url@5.1.0(postcss@8.4.32):
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.38
+ postcss: 8.4.32
postcss-value-parser: 4.2.0
- /postcss-normalize-url@6.0.2(postcss@8.4.32):
- resolution: {integrity: sha512-kVNcWhCeKAzZ8B4pv/DnrU1wNh458zBNp8dh4y5hhxih5RZQ12QWMuQrDgPRw3LRl8mN9vOVfHl7uhvHYMoXsQ==}
+ /postcss-normalize-url@6.0.1(postcss@8.4.32):
+ resolution: {integrity: sha512-jEXL15tXSvbjm0yzUV7FBiEXwhIa9H88JOXDGQzmcWoB4mSjZIsmtto066s2iW9FYuIrIF4k04HA2BKAOpbsaQ==}
engines: {node: ^14 || ^16 || >=18.0}
peerDependencies:
postcss: ^8.4.31
@@ -26719,17 +26187,17 @@ packages:
postcss-value-parser: 4.2.0
dev: true
- /postcss-normalize-whitespace@5.1.1(postcss@8.4.38):
+ /postcss-normalize-whitespace@5.1.1(postcss@8.4.32):
resolution: {integrity: sha512-83ZJ4t3NUDETIHTa3uEg6asWjSBYL5EdkVB0sDncx9ERzOKBVJIUeDO9RyA9Zwtig8El1d79HBp0JEi8wvGQnA==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.38
+ postcss: 8.4.32
postcss-value-parser: 4.2.0
- /postcss-normalize-whitespace@6.0.2(postcss@8.4.32):
- resolution: {integrity: sha512-sXZ2Nj1icbJOKmdjXVT9pnyHQKiSAyuNQHSgRCUgThn2388Y9cGVDR+E9J9iAYbSbLHI+UUwLVl1Wzco/zgv0Q==}
+ /postcss-normalize-whitespace@6.0.1(postcss@8.4.32):
+ resolution: {integrity: sha512-76i3NpWf6bB8UHlVuLRxG4zW2YykF9CTEcq/9LGAiz2qBuX5cBStadkk0jSkg9a9TCIXbMQz7yzrygKoCW9JuA==}
engines: {node: ^14 || ^16 || >=18.0}
peerDependencies:
postcss: ^8.4.31
@@ -26738,23 +26206,23 @@ packages:
postcss-value-parser: 4.2.0
dev: true
- /postcss-ordered-values@5.1.3(postcss@8.4.38):
+ /postcss-ordered-values@5.1.3(postcss@8.4.32):
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.38)
- postcss: 8.4.38
+ cssnano-utils: 3.1.0(postcss@8.4.32)
+ postcss: 8.4.32
postcss-value-parser: 4.2.0
- /postcss-ordered-values@6.0.2(postcss@8.4.32):
- resolution: {integrity: sha512-VRZSOB+JU32RsEAQrO94QPkClGPKJEL/Z9PCBImXMhIeK5KAYo6slP/hBYlLgrCjFxyqvn5VC81tycFEDBLG1Q==}
+ /postcss-ordered-values@6.0.1(postcss@8.4.32):
+ resolution: {integrity: sha512-XXbb1O/MW9HdEhnBxitZpPFbIvDgbo9NK4c/5bOfiKpnIGZDoL2xd7/e6jW5DYLsWxBbs+1nZEnVgnjnlFViaA==}
engines: {node: ^14 || ^16 || >=18.0}
peerDependencies:
postcss: ^8.4.31
dependencies:
- cssnano-utils: 4.0.2(postcss@8.4.32)
+ cssnano-utils: 4.0.1(postcss@8.4.32)
postcss: 8.4.32
postcss-value-parser: 4.2.0
dev: true
@@ -26767,38 +26235,38 @@ packages:
postcss: 8.4.32
dev: true
- /postcss-reduce-initial@5.1.2(postcss@8.4.38):
+ /postcss-reduce-initial@5.1.2(postcss@8.4.32):
resolution: {integrity: sha512-dE/y2XRaqAi6OvjzD22pjTUQ8eOfc6m/natGHgKFBK9DxFmIm69YmaRVQrGgFlEfc1HePIurY0TmDeROK05rIg==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- browserslist: 4.23.0
+ browserslist: 4.22.2
caniuse-api: 3.0.0
- postcss: 8.4.38
+ postcss: 8.4.32
- /postcss-reduce-initial@6.1.0(postcss@8.4.32):
- resolution: {integrity: sha512-RarLgBK/CrL1qZags04oKbVbrrVK2wcxhvta3GCxrZO4zveibqbRPmm2VI8sSgCXwoUHEliRSbOfpR0b/VIoiw==}
+ /postcss-reduce-initial@6.0.2(postcss@8.4.32):
+ resolution: {integrity: sha512-YGKalhNlCLcjcLvjU5nF8FyeCTkCO5UtvJEt0hrPZVCTtRLSOH4z00T1UntQPj4dUmIYZgMj8qK77JbSX95hSw==}
engines: {node: ^14 || ^16 || >=18.0}
peerDependencies:
postcss: ^8.4.31
dependencies:
- browserslist: 4.23.0
+ browserslist: 4.22.2
caniuse-api: 3.0.0
postcss: 8.4.32
dev: true
- /postcss-reduce-transforms@5.1.0(postcss@8.4.38):
+ /postcss-reduce-transforms@5.1.0(postcss@8.4.32):
resolution: {integrity: sha512-2fbdbmgir5AvpW9RLtdONx1QoYG2/EtqpNQbFASDlixBbAYuTcJ0dECwlqNqH7VbaUnEnh8SrxOe2sRIn24XyQ==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.38
+ postcss: 8.4.32
postcss-value-parser: 4.2.0
- /postcss-reduce-transforms@6.0.2(postcss@8.4.32):
- resolution: {integrity: sha512-sB+Ya++3Xj1WaT9+5LOOdirAxP7dJZms3GRcYheSPi1PiTMigsxHAdkrbItHxwYHr4kt1zL7mmcHstgMYT+aiA==}
+ /postcss-reduce-transforms@6.0.1(postcss@8.4.32):
+ resolution: {integrity: sha512-fUbV81OkUe75JM+VYO1gr/IoA2b/dRiH6HvMwhrIBSUrxq3jNZQZitSnugcTLDi1KkQh1eR/zi+iyxviUNBkcQ==}
engines: {node: ^14 || ^16 || >=18.0}
peerDependencies:
postcss: ^8.4.31
@@ -26807,8 +26275,8 @@ packages:
postcss-value-parser: 4.2.0
dev: true
- /postcss-reporter@7.1.0(postcss@8.4.32):
- resolution: {integrity: sha512-/eoEylGWyy6/DOiMP5lmFRdmDKThqgn7D6hP2dXKJI/0rJSO1ADFNngZfDzxL0YAxFvws+Rtpuji1YIHj4mySA==}
+ /postcss-reporter@7.0.5(postcss@8.4.32):
+ resolution: {integrity: sha512-glWg7VZBilooZGOFPhN9msJ3FQs19Hie7l5a/eE6WglzYqVeH3ong3ShFcp9kDWJT1g2Y/wd59cocf9XxBtkWA==}
engines: {node: '>=10'}
peerDependencies:
postcss: ^8.1.0
@@ -26826,25 +26294,25 @@ packages:
util-deprecate: 1.0.2
dev: true
- /postcss-selector-parser@6.0.16:
- resolution: {integrity: sha512-A0RVJrX+IUkVZbW3ClroRWurercFhieevHB38sr2+l9eUClMqome3LmEmnhlNy+5Mr2EYN6B2Kaw9wYdd+VHiw==}
+ /postcss-selector-parser@6.0.15:
+ resolution: {integrity: sha512-rEYkQOMUCEMhsKbK66tbEU9QVIxbhN18YiniAwA7XQYTVBqrBy+P2p5JcdqsHgKM2zWylp8d7J6eszocfds5Sw==}
engines: {node: '>=4'}
dependencies:
cssesc: 3.0.0
util-deprecate: 1.0.2
- /postcss-svgo@5.1.0(postcss@8.4.38):
+ /postcss-svgo@5.1.0(postcss@8.4.32):
resolution: {integrity: sha512-D75KsH1zm5ZrHyxPakAxJWtkyXew5qwS70v56exwvw542d9CRtTo78K0WeFxZB4G7JXKKMbEZtZayTGdIky/eA==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.38
+ postcss: 8.4.32
postcss-value-parser: 4.2.0
svgo: 2.8.0
- /postcss-svgo@6.0.3(postcss@8.4.32):
- resolution: {integrity: sha512-dlrahRmxP22bX6iKEjOM+c8/1p+81asjKT+V5lrgOH944ryx/OHpclnIbGsKVd3uWOXFLYJwCVf0eEkJGvO96g==}
+ /postcss-svgo@6.0.2(postcss@8.4.32):
+ resolution: {integrity: sha512-IH5R9SjkTkh0kfFOQDImyy1+mTCb+E830+9SV1O+AaDcoHTvfsvt6WwJeo7KwcHbFnevZVCsXhDmjFiGVuwqFQ==}
engines: {node: ^14 || ^16 || >= 18}
peerDependencies:
postcss: ^8.4.31
@@ -26854,29 +26322,29 @@ packages:
svgo: 3.2.0
dev: true
- /postcss-unique-selectors@5.1.1(postcss@8.4.38):
+ /postcss-unique-selectors@5.1.1(postcss@8.4.32):
resolution: {integrity: sha512-5JiODlELrz8L2HwxfPnhOWZYWDxVHWL83ufOv84NrcgipI7TaeRsatAhK4Tr2/ZiYldpK/wBvw5BD3qfaK96GA==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.38
- postcss-selector-parser: 6.0.16
+ postcss: 8.4.32
+ postcss-selector-parser: 6.0.15
- /postcss-unique-selectors@6.0.4(postcss@8.4.32):
- resolution: {integrity: sha512-K38OCaIrO8+PzpArzkLKB42dSARtC2tmG6PvD4b1o1Q2E9Os8jzfWFfSy/rixsHwohtsDdFtAWGjFVFUdwYaMg==}
+ /postcss-unique-selectors@6.0.2(postcss@8.4.32):
+ resolution: {integrity: sha512-8IZGQ94nechdG7Y9Sh9FlIY2b4uS8/k8kdKRX040XHsS3B6d1HrJAkXrBSsSu4SuARruSsUjW3nlSw8BHkaAYQ==}
engines: {node: ^14 || ^16 || >=18.0}
peerDependencies:
postcss: ^8.4.31
dependencies:
postcss: 8.4.32
- postcss-selector-parser: 6.0.16
+ postcss-selector-parser: 6.0.15
dev: true
/postcss-value-parser@4.2.0:
resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==}
- /postcss-values-parser@6.0.2(postcss@8.4.38):
+ /postcss-values-parser@6.0.2(postcss@8.4.32):
resolution: {integrity: sha512-YLJpK0N1brcNJrs9WatuJFtHaV9q5aAOj+S4DI5S7jgHlRfm0PIbDCAFRYMQD5SHq7Fy6xsDhyutgS0QOAs0qw==}
engines: {node: '>=10'}
peerDependencies:
@@ -26884,7 +26352,7 @@ packages:
dependencies:
color-name: 1.1.4
is-url-superb: 4.0.0
- postcss: 8.4.38
+ postcss: 8.4.32
quote-unquote: 1.0.0
dev: false
@@ -26894,35 +26362,7 @@ packages:
dependencies:
nanoid: 3.3.7
picocolors: 1.0.0
- source-map-js: 1.2.0
- dev: true
-
- /postcss@8.4.38:
- resolution: {integrity: sha512-Wglpdk03BSfXkHoQa3b/oulrotAkwrlLDRSOb9D0bN86FdRyE9lppSp33aHNPgBa0JKCoB+drFLZkQoRRYae5A==}
- engines: {node: ^10 || ^12 || >=14}
- dependencies:
- nanoid: 3.3.7
- picocolors: 1.0.0
- source-map-js: 1.2.0
-
- /prebuild-install@7.1.2:
- resolution: {integrity: sha512-UnNke3IQb6sgarcZIDU3gbMeTp/9SSU1DAIkil7PrqG1vZlBtY5msYccSKSHDqa3hNg436IXK+SNImReuA1wEQ==}
- engines: {node: '>=10'}
- hasBin: true
- dependencies:
- detect-libc: 2.0.3
- expand-template: 2.0.3
- github-from-package: 0.0.0
- minimist: 1.2.8
- mkdirp-classic: 0.5.3
- napi-build-utils: 1.0.2
- node-abi: 3.57.0
- pump: 3.0.0
- rc: 1.2.8
- simple-get: 4.0.1
- tar-fs: 2.1.1
- tunnel-agent: 0.6.0
- dev: false
+ source-map-js: 1.0.2
/precinct@11.0.5:
resolution: {integrity: sha512-oHSWLC8cL/0znFhvln26D14KfCQFFn4KOLSw6hmLhd+LQ2SKt9Ljm89but76Pc7flM9Ty1TnXyrA2u16MfRV3w==}
@@ -26938,7 +26378,7 @@ packages:
detective-sass: 5.0.3
detective-scss: 4.0.3
detective-stylus: 4.0.0
- detective-typescript: 11.2.0
+ detective-typescript: 11.1.0
module-definition: 5.0.1
node-source-walk: 6.0.2
transitivePeerDependencies:
@@ -26959,7 +26399,7 @@ packages:
detective-sass: 5.0.3
detective-scss: 4.0.3
detective-stylus: 4.0.0
- detective-typescript: 11.2.0(supports-color@9.4.0)
+ detective-typescript: 11.1.0(supports-color@9.4.0)
module-definition: 5.0.1
node-source-walk: 6.0.2
transitivePeerDependencies:
@@ -26974,26 +26414,19 @@ packages:
/prelude-ls@1.2.1:
resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==}
engines: {node: '>= 0.8.0'}
+ requiresBuild: true
/prettier@2.8.8:
resolution: {integrity: sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==}
engines: {node: '>=10.13.0'}
hasBin: true
+ requiresBuild: true
dev: true
/prettier@3.1.1:
resolution: {integrity: sha512-22UbSzg8luF4UuZtzgiUOfcGM8s4tjBv6dJRT7j275NXsy2jb4aJa4NNveul5x4eqlF1wuhuR2RElK71RvmVaw==}
engines: {node: '>=14'}
hasBin: true
- dev: true
-
- /prettier@3.2.5:
- resolution: {integrity: sha512-3/GWa9aOC0YeD7LUfvOG2NiDyhOWRvt1k+rcKhOuYnMY24iiCphgneUfJDyFXd6rZCAnuLBv6UeAULtrhT/F4A==}
- engines: {node: '>=14'}
- hasBin: true
- requiresBuild: true
- dev: false
- optional: true
/pretty-bytes@5.6.0:
resolution: {integrity: sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg==}
@@ -27009,6 +26442,7 @@ packages:
/pretty-format@27.5.1:
resolution: {integrity: sha512-Qb1gy5OrP5+zDf2Bvnzdl3jsTf1qXVMazbvCoKhtKqVs4/YK4ozX4gKQJJVyNe+cajNPn0KoC0MC3FUmaHWEmQ==}
engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
+ requiresBuild: true
dependencies:
ansi-regex: 5.0.1
ansi-styles: 5.2.0
@@ -27077,6 +26511,7 @@ packages:
/progress@2.0.3:
resolution: {integrity: sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==}
engines: {node: '>=0.4.0'}
+ requiresBuild: true
/promise-inflight@1.0.1:
resolution: {integrity: sha512-6zWPyEOFaQBJYcGMHBKTKJ3u6TBsnMFOIZSa6ce1e/ZrrsOlnHRHbabMjLiBYKp+n44X9eUI6VUPaukCXHuG4g==}
@@ -27113,6 +26548,7 @@ packages:
/prop-types@15.8.1:
resolution: {integrity: sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==}
+ requiresBuild: true
dependencies:
loose-envify: 1.4.0
object-assign: 4.1.1
@@ -27131,8 +26567,8 @@ packages:
xtend: 4.0.2
dev: false
- /property-information@6.5.0:
- resolution: {integrity: sha512-PgTgs/BlvHxOu8QuEN7wi5A0OmXaBcHpmCSTehcs6Uuu9IkDIEo13Hy7n898RHfrQ49vKCoGeWZSaAK01nwVig==}
+ /property-information@6.4.0:
+ resolution: {integrity: sha512-9t5qARVofg2xQqKtytzt+lZ4d1Qvj8t5B8fEwXK6qOfgRLgH/b13QlgEyDh033NOS31nXeFbYv7CLUDG1CeifQ==}
dev: false
/proto-list@1.2.4:
@@ -27232,8 +26668,8 @@ packages:
- utf-8-validate
dev: true
- /pure-rand@6.1.0:
- resolution: {integrity: sha512-bVWawvoZoBYpp6yIoQtQXHZjmz35RSVHnUOTefl8Vcjr8snTPY1wnpSPMWekcFwbxI6gtmT7rSYPFvz71ldiOA==}
+ /pure-rand@6.0.4:
+ resolution: {integrity: sha512-LA0Y9kxMYv47GIPJy6MI84fqTd2HmYZI83W/kM/SkKfDlajnZYfmXFTxkbY+xSBPkLJxltMa9hIkmdc29eguMA==}
dev: true
/pvtsutils@1.3.5:
@@ -27251,13 +26687,13 @@ packages:
resolution: {integrity: sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==}
engines: {node: '>=0.6'}
dependencies:
- side-channel: 1.0.6
+ side-channel: 1.0.4
- /qs@6.12.0:
- resolution: {integrity: sha512-trVZiI6RMOkO476zLGaBIzszOdFPnCCXHPG9kn0yuS1uz6xdVxPfZdB3vUig9pxPFDM9BRAgz/YUIVQ1/vuiUg==}
+ /qs@6.11.2:
+ resolution: {integrity: sha512-tDNIz22aBzCDxLtVH++VnTfzxlfeK5CbqohpSqpJgj1Wg/cQbStNAz3NuqCs5vV+pjBsK4x4pN9HlVh7rcYRiA==}
engines: {node: '>=0.6'}
dependencies:
- side-channel: 1.0.6
+ side-channel: 1.0.4
/query-string@6.14.1:
resolution: {integrity: sha512-XDxAeVmpfu1/6IjyT/gXHOl+S0vQ9owggJ30hhWKdHAsNPOcasn5o9BW0eejZqL2e4vMjhAxoW3jVHcD6mbcYw==}
@@ -27268,8 +26704,8 @@ packages:
split-on-first: 1.1.0
strict-uri-encode: 2.0.0
- /query-string@8.2.0:
- resolution: {integrity: sha512-tUZIw8J0CawM5wyGBiDOAp7ObdRQh4uBor/fUR9ZjmbZVvw95OD9If4w3MQxr99rg0DJZ/9CIORcpEqU5hQG7g==}
+ /query-string@8.1.0:
+ resolution: {integrity: sha512-BFQeWxJOZxZGix7y+SByG3F36dA0AbTy9o6pSmKFcFz7DAj0re9Frkty3saBn3nHo3D0oZJ/+rx3r8H8r8Jbpw==}
engines: {node: '>=14.16'}
dependencies:
decode-uri-component: 0.4.1
@@ -27291,6 +26727,7 @@ packages:
/queue-tick@1.0.1:
resolution: {integrity: sha512-kJt5qhMxoszgU/62PLP1CJytzd2NKetjSRnyuj31fDd3Rlcz3fzlFdFLD1SItunPwyqEOkca6GbV612BWfaBag==}
+ requiresBuild: true
dev: false
/queue@6.0.2:
@@ -27318,8 +26755,8 @@ packages:
resolution: {integrity: sha512-twwRO/ilhlG/FIgYeKGFqyHhoEhqgnKVkcmqMKi2r524gz3ZbDTcyFt38E9xjJI2vT+KbRNHVbnJ/e0I25Azwg==}
dev: false
- /radix3@1.1.2:
- resolution: {integrity: sha512-b484I/7b8rDEdSDKckSSBA8knMpcdsXudlE/LNL639wFoHKwLbEkQFZHWEYwDC0wa0FKUcCY+GAF73Z7wxNVFA==}
+ /radix3@1.1.0:
+ resolution: {integrity: sha512-pNsHDxbGORSvuSScqNJ+3Km6QAVqk8CfsCBIEoDgpqLrkD2f3QM4I7d1ozJJ172OmIcoUcerZaNWqtLkRXTV3A==}
dev: false
/ramda@0.29.0:
@@ -27363,7 +26800,7 @@ packages:
iconv-lite: 0.4.24
unpipe: 1.0.0
- /raw-loader@4.0.2(webpack@5.91.0):
+ /raw-loader@4.0.2(webpack@5.89.0):
resolution: {integrity: sha512-ZnScIV3ag9A4wPX/ZayxL/jZH+euYb6FcUinPcgiQW0+UBtEv0O6Q3lGd3cqJ+GHH+rksEv3Pj99oxJ3u3VIKA==}
engines: {node: '>= 10.13.0'}
peerDependencies:
@@ -27371,7 +26808,7 @@ packages:
dependencies:
loader-utils: 2.0.4
schema-utils: 3.3.0
- webpack: 5.91.0(esbuild@0.19.12)
+ webpack: 5.89.0
/rbush@3.0.1:
resolution: {integrity: sha512-XRaVO0YecOpEuIvbhbpTrZgoiI6xBlz6hnlr6EHhd+0x9ase6EmeN+hdwwUaJvLcsFFQ8iWVF1GAK1yB0BWi0w==}
@@ -27456,7 +26893,18 @@ packages:
react-dom: 18.2.0(react@18.2.0)
dev: true
- /react-dev-utils@12.0.1(eslint@7.32.0)(typescript@4.9.5)(webpack@5.91.0):
+ /react-datetime@3.2.0(moment@2.30.1)(react@18.2.0):
+ resolution: {integrity: sha512-w5XdeNIGzBht9CadaZIJhKUhEcDTgH0XokKxGPCxeeJRYL7B3HIKA8CM6Q0xej2JFJt0n5d+zi3maMwaY3262A==}
+ peerDependencies:
+ moment: ^2.16.0
+ react: ^16.5.0 || ^17.0.0 || ^18.0.0
+ dependencies:
+ moment: 2.30.1
+ prop-types: 15.8.1
+ react: 18.2.0
+ dev: false
+
+ /react-dev-utils@12.0.1(eslint@7.32.0)(typescript@4.9.5)(webpack@5.89.0):
resolution: {integrity: sha512-84Ivxmr17KjUupyqzFode6xKhjwuEJDROWKJy/BthkL7Wn6NJ8h4WE6k/exAv6ImS+0oZLRRW5j/aINMHyeGeQ==}
engines: {node: '>=14'}
peerDependencies:
@@ -27466,16 +26914,16 @@ packages:
typescript:
optional: true
dependencies:
- '@babel/code-frame': 7.24.2
+ '@babel/code-frame': 7.23.5
address: 1.2.2
- browserslist: 4.23.0
+ browserslist: 4.22.2
chalk: 4.1.2
cross-spawn: 7.0.3
detect-port-alt: 1.1.6
escape-string-regexp: 4.0.0
filesize: 8.0.7
find-up: 5.0.0
- fork-ts-checker-webpack-plugin: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.91.0)
+ fork-ts-checker-webpack-plugin: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.89.0)
global-modules: 2.0.0
globby: 11.1.0
gzip-size: 6.0.0
@@ -27491,13 +26939,14 @@ packages:
strip-ansi: 6.0.1
text-table: 0.2.0
typescript: 4.9.5
- webpack: 5.91.0
+ webpack: 5.89.0
transitivePeerDependencies:
- eslint
- supports-color
- vue-template-compiler
+ dev: false
- /react-dev-utils@12.0.1(eslint@7.32.0)(typescript@5.3.3)(webpack@5.91.0):
+ /react-dev-utils@12.0.1(eslint@7.32.0)(typescript@5.3.3)(webpack@5.89.0):
resolution: {integrity: sha512-84Ivxmr17KjUupyqzFode6xKhjwuEJDROWKJy/BthkL7Wn6NJ8h4WE6k/exAv6ImS+0oZLRRW5j/aINMHyeGeQ==}
engines: {node: '>=14'}
peerDependencies:
@@ -27507,16 +26956,16 @@ packages:
typescript:
optional: true
dependencies:
- '@babel/code-frame': 7.24.2
+ '@babel/code-frame': 7.23.5
address: 1.2.2
- browserslist: 4.23.0
+ browserslist: 4.22.2
chalk: 4.1.2
cross-spawn: 7.0.3
detect-port-alt: 1.1.6
escape-string-regexp: 4.0.0
filesize: 8.0.7
find-up: 5.0.0
- fork-ts-checker-webpack-plugin: 6.5.3(eslint@7.32.0)(typescript@5.3.3)(webpack@5.91.0)
+ fork-ts-checker-webpack-plugin: 6.5.3(eslint@7.32.0)(typescript@5.3.3)(webpack@5.89.0)
global-modules: 2.0.0
globby: 11.1.0
gzip-size: 6.0.0
@@ -27532,7 +26981,49 @@ packages:
strip-ansi: 6.0.1
text-table: 0.2.0
typescript: 5.3.3
- webpack: 5.91.0(esbuild@0.19.12)
+ webpack: 5.89.0(esbuild@0.19.11)
+ transitivePeerDependencies:
+ - eslint
+ - supports-color
+ - vue-template-compiler
+ dev: true
+
+ /react-dev-utils@12.0.1(eslint@7.32.0)(typescript@5.4.2)(webpack@5.89.0):
+ resolution: {integrity: sha512-84Ivxmr17KjUupyqzFode6xKhjwuEJDROWKJy/BthkL7Wn6NJ8h4WE6k/exAv6ImS+0oZLRRW5j/aINMHyeGeQ==}
+ engines: {node: '>=14'}
+ peerDependencies:
+ typescript: '>=2.7'
+ webpack: '>=4'
+ peerDependenciesMeta:
+ typescript:
+ optional: true
+ dependencies:
+ '@babel/code-frame': 7.23.5
+ address: 1.2.2
+ browserslist: 4.22.2
+ chalk: 4.1.2
+ cross-spawn: 7.0.3
+ detect-port-alt: 1.1.6
+ escape-string-regexp: 4.0.0
+ filesize: 8.0.7
+ find-up: 5.0.0
+ fork-ts-checker-webpack-plugin: 6.5.3(eslint@7.32.0)(typescript@5.4.2)(webpack@5.89.0)
+ global-modules: 2.0.0
+ globby: 11.1.0
+ gzip-size: 6.0.0
+ immer: 9.0.21
+ is-root: 2.1.0
+ loader-utils: 3.2.1
+ open: 8.4.2
+ pkg-up: 3.1.0
+ prompts: 2.4.2
+ react-error-overlay: 6.0.11
+ recursive-readdir: 2.2.3
+ shell-quote: 1.8.1
+ strip-ansi: 6.0.1
+ text-table: 0.2.0
+ typescript: 5.4.2
+ webpack: 5.89.0
transitivePeerDependencies:
- eslint
- supports-color
@@ -27544,7 +27035,7 @@ packages:
dnd-core: 14.0.1
dev: false
- /react-dnd@14.0.5(@types/node@18.0.0)(@types/react@18.2.46)(react@18.2.0):
+ /react-dnd@14.0.5(@types/node@18.19.4)(@types/react@18.2.46)(react@18.2.0):
resolution: {integrity: sha512-9i1jSgbyVw0ELlEVt/NkCUkxy1hmhJOkePoCH713u75vzHGyXhPDm28oLfc2NMSBjZRM1Y+wRjHXJT3sPrTy+A==}
peerDependencies:
'@types/hoist-non-react-statics': '>= 3.3.1'
@@ -27561,7 +27052,7 @@ packages:
dependencies:
'@react-dnd/invariant': 2.0.0
'@react-dnd/shallowequal': 2.0.0
- '@types/node': 18.0.0
+ '@types/node': 18.19.4
'@types/react': 18.2.46
dnd-core: 14.0.1
fast-deep-equal: 3.1.3
@@ -27577,13 +27068,13 @@ packages:
typescript: 5.3.3
dev: true
- /react-docgen@7.0.3:
- resolution: {integrity: sha512-i8aF1nyKInZnANZ4uZrH49qn1paRgBZ7wZiCNBMnenlPzEv0mRl+ShpTVEI6wZNl8sSc79xZkivtgLKQArcanQ==}
+ /react-docgen@7.0.1:
+ resolution: {integrity: sha512-rCz0HBIT0LWbIM+///LfRrJoTKftIzzwsYDf0ns5KwaEjejMHQRtphcns+IXFHDNY9pnz6G8l/JbbI6pD4EAIA==}
engines: {node: '>=16.14.0'}
dependencies:
- '@babel/core': 7.24.4
- '@babel/traverse': 7.24.1
- '@babel/types': 7.24.0
+ '@babel/core': 7.23.7
+ '@babel/traverse': 7.23.7
+ '@babel/types': 7.23.6
'@types/babel__core': 7.20.5
'@types/babel__traverse': 7.20.5
'@types/doctrine': 0.0.9
@@ -27709,7 +27200,7 @@ packages:
'@formatjs/intl-displaynames': 6.6.6
'@formatjs/intl-listformat': 7.5.5
'@types/hoist-non-react-statics': 3.3.5
- '@types/react': 18.2.46
+ '@types/react': 18.2.60
hoist-non-react-statics: 3.3.2
intl-messageformat: 10.5.11
react: 18.2.0
@@ -27719,9 +27210,11 @@ packages:
/react-is@16.13.1:
resolution: {integrity: sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==}
+ requiresBuild: true
/react-is@17.0.2:
resolution: {integrity: sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==}
+ requiresBuild: true
/react-is@18.1.0:
resolution: {integrity: sha512-Fl7FuabXsJnV5Q1qIOQwx/sagGF18kogb4gpfcG4gjLBWO0WDiiz1ko/ExayuxE7InyQkBLkxRFG5oxY6Uu3Kg==}
@@ -27740,7 +27233,7 @@ packages:
'@types/react': '>=16'
react: '>=16'
dependencies:
- '@types/hast': 2.3.10
+ '@types/hast': 2.3.9
'@types/react': 18.2.46
'@types/unist': 2.0.10
comma-separated-tokens: 1.0.8
@@ -27814,7 +27307,7 @@ packages:
react-native:
optional: true
dependencies:
- '@babel/runtime': 7.24.4
+ '@babel/runtime': 7.23.7
'@types/react-redux': 7.1.33
hoist-non-react-statics: 3.3.2
loose-envify: 1.4.0
@@ -27828,8 +27321,8 @@ packages:
resolution: {integrity: sha512-wViHqhAd8OHeLS/IRMJjTSDHF3U9eWi62F/MledQGPdJGDhodXJ9PBLNGr6WWL7qlH12Mt3TyTpbS+hGXMjCzQ==}
engines: {node: '>=0.10.0'}
- /react-remove-scroll-bar@2.3.6(@types/react@18.2.46)(react@18.2.0):
- resolution: {integrity: sha512-DtSYaao4mBmX+HDo5YWYdBWQwYIQQshUV/dVxFxK+KM26Wjwp1gZ6rv6OC3oujI6Bfu6Xyg3TwK533AQutsn/g==}
+ /react-remove-scroll-bar@2.3.4(@types/react@18.2.46)(react@18.2.0):
+ resolution: {integrity: sha512-63C4YQBUt0m6ALadE9XV56hV8BgJWDmmTPY758iIJjfQKt2nYwoUrPk0LXRXcB/yIj82T1/Ixfdpdk68LwIB0A==}
engines: {node: '>=10'}
peerDependencies:
'@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0
@@ -27842,7 +27335,6 @@ packages:
react: 18.2.0
react-style-singleton: 2.2.1(@types/react@18.2.46)(react@18.2.0)
tslib: 2.6.2
- dev: true
/react-remove-scroll@2.5.5(@types/react@18.2.46)(react@18.2.0):
resolution: {integrity: sha512-ImKhrzJJsyXJfBZ4bzu8Bwpka14c/fQt0k+cyFp/PBhTfyDnU5hjOtM4AG/0AMyy8oKzOTR0lDgJIM7pYXI0kw==}
@@ -27856,25 +27348,24 @@ packages:
dependencies:
'@types/react': 18.2.46
react: 18.2.0
- react-remove-scroll-bar: 2.3.6(@types/react@18.2.46)(react@18.2.0)
+ react-remove-scroll-bar: 2.3.4(@types/react@18.2.46)(react@18.2.0)
react-style-singleton: 2.2.1(@types/react@18.2.46)(react@18.2.0)
tslib: 2.6.2
- use-callback-ref: 1.3.2(@types/react@18.2.46)(react@18.2.0)
+ use-callback-ref: 1.3.1(@types/react@18.2.46)(react@18.2.0)
use-sidecar: 1.1.2(@types/react@18.2.46)(react@18.2.0)
- dev: true
/react-router-dom@5.3.4(react@18.2.0):
resolution: {integrity: sha512-m4EqFMHv/Ih4kpcBCONHbkT68KoAeHN4p3lAGoNryfHi0dMy0kCzEZakiKRsvg5wHZ/JLrLW8o8KomWiz/qbYQ==}
peerDependencies:
react: '>=15'
dependencies:
- '@babel/runtime': 7.24.4
+ '@babel/runtime': 7.23.7
history: 4.10.1
loose-envify: 1.4.0
prop-types: 15.8.1
react: 18.2.0
react-router: 5.3.4(react@18.2.0)
- tiny-invariant: 1.3.3
+ tiny-invariant: 1.3.1
tiny-warning: 1.0.3
dev: false
@@ -27883,7 +27374,7 @@ packages:
peerDependencies:
react: '>=15'
dependencies:
- '@babel/runtime': 7.24.4
+ '@babel/runtime': 7.23.7
history: 4.10.1
hoist-non-react-statics: 3.3.2
loose-envify: 1.4.0
@@ -27891,7 +27382,7 @@ packages:
prop-types: 15.8.1
react: 18.2.0
react-is: 16.13.1
- tiny-invariant: 1.3.3
+ tiny-invariant: 1.3.1
tiny-warning: 1.0.3
dev: false
@@ -27912,9 +27403,9 @@ packages:
react: ^16.8.0 || ^17.0.0
react-dom: ^16.8.0 || ^17.0.0
dependencies:
- '@babel/runtime': 7.24.4
+ '@babel/runtime': 7.23.7
'@emotion/cache': 11.11.0
- '@emotion/react': 11.11.4(@types/react@18.2.46)(react@18.2.0)
+ '@emotion/react': 11.11.3(@types/react@18.2.46)(react@18.2.0)
memoize-one: 5.2.1
prop-types: 15.8.1
react: 18.2.0
@@ -27925,7 +27416,7 @@ packages:
- '@types/react'
dev: false
- /react-server-dom-webpack@0.0.0-experimental-c8b778b7f-20220825(react@18.2.0)(webpack@5.91.0):
+ /react-server-dom-webpack@0.0.0-experimental-c8b778b7f-20220825(react@18.2.0)(webpack@5.89.0):
resolution: {integrity: sha512-JyCjbp6ZvkH/T0EuVPdceYlC8u5WqWDSJr2KxDvc81H2eJ+7zYUN++IcEycnR2F+HmER8QVgxfotnIx352zi+w==}
engines: {node: '>=0.10.0'}
peerDependencies:
@@ -27936,7 +27427,7 @@ packages:
loose-envify: 1.4.0
neo-async: 2.6.2
react: 18.2.0
- webpack: 5.91.0(esbuild@0.19.12)
+ webpack: 5.89.0
/react-split-pane@0.1.92(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-GfXP1xSzLMcLJI5BM36Vh7GgZBpy+U/X0no+VM3fxayv+p1Jly5HpMofZJraeaMl73b3hvlr+N9zJKvLB/uz9w==}
@@ -27972,7 +27463,6 @@ packages:
invariant: 2.2.4
react: 18.2.0
tslib: 2.6.2
- dev: true
/react-textarea-autosize@8.5.3(@types/react@18.2.46)(react@18.2.0):
resolution: {integrity: sha512-XT1024o2pqCuZSuBt9FwHlaDeNtVrtCXu0Rnz88t1jUGheCLa3PhjE1GH8Ctm2axEtvdCl5SUHYschyQ0L5QHQ==}
@@ -27980,7 +27470,7 @@ packages:
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0
dependencies:
- '@babel/runtime': 7.24.4
+ '@babel/runtime': 7.23.7
react: 18.2.0
use-composed-ref: 1.3.0(react@18.2.0)
use-latest: 1.2.1(@types/react@18.2.46)(react@18.2.0)
@@ -28029,18 +27519,18 @@ packages:
react: '>=16.6.0'
react-dom: '>=16.6.0'
dependencies:
- '@babel/runtime': 7.24.4
+ '@babel/runtime': 7.23.7
dom-helpers: 5.2.1
loose-envify: 1.4.0
prop-types: 15.8.1
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
- /react-virtualized-auto-sizer@1.0.24(react-dom@18.2.0)(react@18.2.0):
- resolution: {integrity: sha512-3kCn7N9NEb3FlvJrSHWGQ4iVl+ydQObq2fHMn12i5wbtm74zHOPhz/i64OL3c1S1vi9i2GXtZqNqUJTQ+BnNfg==}
+ /react-virtualized-auto-sizer@1.0.20(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-OdIyHwj4S4wyhbKHOKM1wLSj/UDXm839Z3Cvfg2a9j+He6yDa6i5p0qQvEiCnyQlGO/HyfSnigQwuxvYalaAXA==}
peerDependencies:
- react: ^15.3.0 || ^16.0.0-alpha || ^17.0.0 || ^18.0.0
- react-dom: ^15.3.0 || ^16.0.0-alpha || ^17.0.0 || ^18.0.0
+ react: ^15.3.0 || ^16.0.0-alpha || ^17.0.0 || ^18.0.0-rc
+ react-dom: ^15.3.0 || ^16.0.0-alpha || ^17.0.0 || ^18.0.0-rc
dependencies:
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
@@ -28051,7 +27541,7 @@ packages:
peerDependencies:
react: ^15.3.0 || ^16.0.0 || ^17.0.0 || ^18.0.0
dependencies:
- '@babel/runtime': 7.24.4
+ '@babel/runtime': 7.23.7
consolidated-events: 2.0.2
prop-types: 15.8.1
react: 18.2.0
@@ -28065,7 +27555,7 @@ packages:
react: ^15.0.0 || ^16.0.0 || ^17.0.0 || ^18.0.0
react-dom: ^15.0.0 || ^16.0.0 || ^17.0.0 || ^18.0.0
dependencies:
- '@babel/runtime': 7.24.4
+ '@babel/runtime': 7.23.7
memoize-one: 5.2.1
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
@@ -28225,14 +27715,14 @@ packages:
engines: {node: '>= 12.13.0'}
dev: false
- /recast@0.23.6:
- resolution: {integrity: sha512-9FHoNjX1yjuesMwuthAmPKabxYQdOgihFYmT5ebXfYGBcnqXZf3WOVz+5foEZ8Y83P4ZY6yQD5GMmtV+pgCCAQ==}
+ /recast@0.23.4:
+ resolution: {integrity: sha512-qtEDqIZGVcSZCHniWwZWbRy79Dc6Wp3kT/UmDA2RJKBPg7+7k51aQBZirHmUGn5uvHf2rg8DkjizrN26k61ATw==}
engines: {node: '>= 4'}
dependencies:
+ assert: 2.1.0
ast-types: 0.16.1
esprima: 4.0.1
source-map: 0.6.1
- tiny-invariant: 1.3.3
tslib: 2.6.2
dev: true
@@ -28249,6 +27739,18 @@ packages:
indent-string: 4.0.0
strip-indent: 3.0.0
+ /redis-errors@1.2.0:
+ resolution: {integrity: sha512-1qny3OExCf0UvUV/5wpYKf2YwPcOqXzkwKKSmKHiE6ZMQs5heeE/c8eXK+PNllPvmjgAbfnsbpkGZWy8cBpn9w==}
+ engines: {node: '>=4'}
+ dev: false
+
+ /redis-parser@3.0.0:
+ resolution: {integrity: sha512-DJnGAeenTdpMEH6uAJRK/uiyEIH9WVsUmoLwzudwGJUwZPp80PDBWPHXSAGNPwNvIXAbe7MSUB1zQFugFml66A==}
+ engines: {node: '>=4'}
+ dependencies:
+ redis-errors: 1.2.0
+ dev: false
+
/redux-devtools-extension@2.13.9(redux@4.2.1):
resolution: {integrity: sha512-cNJ8Q/EtjhQaZ71c8I9+BPySIBVEKssbPpskBfsXqb8HJ002A3KRVHfeRzwRo6mGPqsm7XuHTqNSNeS1Khig0A==}
deprecated: Package moved to @redux-devtools/extension.
@@ -28284,22 +27786,21 @@ packages:
/redux@4.2.1:
resolution: {integrity: sha512-LAUYz4lc+Do8/g7aeRa8JkyDErK6ekstQaqWQrNRW//MY1TvCEpMtpTWvlQ+FPbWCx+Xixu/6SHt5N0HR+SB4w==}
dependencies:
- '@babel/runtime': 7.24.4
+ '@babel/runtime': 7.23.7
/referrer-policy@1.2.0:
resolution: {integrity: sha512-LgQJIuS6nAy1Jd88DCQRemyE3mS+ispwlqMk3b0yjZ257fI1v9c+/p6SD5gP5FGyXUIgrNOAfmyioHwZtYv2VA==}
engines: {node: '>=4.0.0'}
dev: false
- /reflect.getprototypeof@1.0.6:
- resolution: {integrity: sha512-fmfw4XgoDke3kdI6h4xcUz1dG8uaiv5q9gcEwLS4Pnth2kxT+GZ7YehS1JTMGBQmtV7Y4GFGbs2re2NqhdozUg==}
+ /reflect.getprototypeof@1.0.4:
+ resolution: {integrity: sha512-ECkTw8TmJwW60lOTR+ZkODISW6RQ8+2CL3COqtiJKLd6MmB45hN51HprHFziKLGkAuTGQhBb91V8cy+KHlaCjw==}
engines: {node: '>= 0.4'}
dependencies:
- call-bind: 1.0.7
+ call-bind: 1.0.5
define-properties: 1.2.1
- es-abstract: 1.23.3
- es-errors: 1.3.0
- get-intrinsic: 1.2.4
+ es-abstract: 1.22.3
+ get-intrinsic: 1.2.2
globalthis: 1.0.3
which-builtin-type: 1.1.3
@@ -28321,7 +27822,7 @@ packages:
/regenerator-transform@0.15.2:
resolution: {integrity: sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg==}
dependencies:
- '@babel/runtime': 7.24.4
+ '@babel/runtime': 7.23.7
/regex-not@1.0.2:
resolution: {integrity: sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A==}
@@ -28331,18 +27832,19 @@ packages:
safe-regex: 1.1.0
dev: false
- /regexp.prototype.flags@1.5.2:
- resolution: {integrity: sha512-NcDiDkTLuPR+++OCKB0nWafEmhg/Da8aUPLPMQbK+bxKKCm1/S5he+AqYa4PlMCVBalb4/yxIRub6qkEx5yJbw==}
+ /regexp.prototype.flags@1.5.1:
+ resolution: {integrity: sha512-sy6TXMN+hnP/wMy+ISxg3krXx7BAtWVO4UouuCN/ziM9UEne0euamVNafDfvC83bRNr95y0V5iijeDQFUNpvrg==}
engines: {node: '>= 0.4'}
+ requiresBuild: true
dependencies:
- call-bind: 1.0.7
+ call-bind: 1.0.5
define-properties: 1.2.1
- es-errors: 1.3.0
- set-function-name: 2.0.2
+ set-function-name: 2.0.1
/regexpp@3.2.0:
resolution: {integrity: sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==}
engines: {node: '>=8'}
+ requiresBuild: true
/regexpu-core@5.3.2:
resolution: {integrity: sha512-RAM5FlZz+Lhmo7db9L298p2vHP5ZywrVXmVXpmAD9GuL5MPH6t9ROw1iA/wfHkQ76Qe7AaPF0nGuim96/IrQMQ==}
@@ -28407,20 +27909,20 @@ packages:
/rehype-parse@8.0.5:
resolution: {integrity: sha512-Ds3RglaY/+clEX2U2mHflt7NlMA72KspZ0JLUJgBBLpRddBcEw3H8uYZQliQriku22NZpYMfjDdSgHcjxue24A==}
dependencies:
- '@types/hast': 2.3.10
+ '@types/hast': 2.3.9
hast-util-from-parse5: 7.1.2
parse5: 6.0.1
unified: 10.1.2
dev: false
- /rehype-react@7.2.0(@types/react@18.2.46):
+ /rehype-react@7.2.0(@types/react@18.2.60):
resolution: {integrity: sha512-MHYyCHka+3TtzBMKtcuvVOBAbI1HrfoYA+XH9m7/rlrQQATCPwtJnPdkxKKcIGF8vc9mxqQja9r9f+FHItQeWg==}
peerDependencies:
'@types/react': '>=17'
dependencies:
'@mapbox/hast-util-table-cell-style': 0.2.1
- '@types/hast': 2.3.10
- '@types/react': 18.2.46
+ '@types/hast': 2.3.9
+ '@types/react': 18.2.60
hast-to-hyperscript: 10.0.3
hast-util-whitespace: 2.0.1
unified: 10.1.2
@@ -28429,7 +27931,7 @@ packages:
/rehype-remark@8.1.1:
resolution: {integrity: sha512-8HCmub9Fcy208A7RGbjmVlxTMYZXGaF7jsUE2tuvNKuaGFrk9yrYuKAXoTVC7QFwBPzTvEc5AOZKpUiWRkamlw==}
dependencies:
- '@types/hast': 2.3.10
+ '@types/hast': 2.3.9
'@types/mdast': 3.0.15
'@types/unist': 2.0.10
hast-util-to-mdast: 7.1.3
@@ -28438,7 +27940,7 @@ packages:
/rehype-sanitize@5.0.1:
resolution: {integrity: sha512-da/jIOjq8eYt/1r9GN6GwxIR3gde7OZ+WV8pheu1tL8K0D9KxM2AyMh+UEfke+FfdM3PvGHeYJU0Td5OWa7L5A==}
dependencies:
- '@types/hast': 2.3.10
+ '@types/hast': 2.3.9
hast-util-sanitize: 4.1.0
unified: 10.1.2
dev: false
@@ -28446,7 +27948,7 @@ packages:
/rehype-slug@5.1.0:
resolution: {integrity: sha512-Gf91dJoXneiorNEnn+Phx97CO7oRMrpi+6r155tTxzGuLtm+QrI4cTwCa9e1rtePdL4i9tSO58PeSS6HWfgsiw==}
dependencies:
- '@types/hast': 2.3.10
+ '@types/hast': 2.3.9
github-slugger: 2.0.0
hast-util-has-property: 2.0.1
hast-util-heading-rank: 2.1.1
@@ -28465,7 +27967,7 @@ packages:
/rehype-stringify@9.0.4:
resolution: {integrity: sha512-Uk5xu1YKdqobe5XpSskwPvo1XeHUUucWEQSl8hTrXt5selvca1e8K1EZ37E6YoZ4BT8BCqCdVfQW7OfHfthtVQ==}
dependencies:
- '@types/hast': 2.3.10
+ '@types/hast': 2.3.9
hast-util-to-html: 8.0.4
unified: 10.1.2
dev: false
@@ -28473,7 +27975,7 @@ packages:
/relay-runtime@12.0.0:
resolution: {integrity: sha512-QU6JKr1tMsry22DXNy9Whsq5rmvwr3LSZiiWV/9+DFpuTWvp+WFhobWMc8TC4OjKFfNhEZy7mOiqUAn5atQtug==}
dependencies:
- '@babel/runtime': 7.24.4
+ '@babel/runtime': 7.23.7
fbjs: 3.0.5
invariant: 2.2.4
transitivePeerDependencies:
@@ -28546,7 +28048,7 @@ packages:
/remark-rehype@10.1.0:
resolution: {integrity: sha512-EFmR5zppdBp0WQeDVZ/b66CWJipB2q2VLNFMabzDSGR66Z2fQii83G5gTBbgGEnEEA0QRussvrFHxk1HWGJskw==}
dependencies:
- '@types/hast': 2.3.10
+ '@types/hast': 2.3.9
'@types/mdast': 3.0.15
mdast-util-to-hast: 12.3.0
unified: 10.1.2
@@ -28564,7 +28066,7 @@ packages:
mdast-util-to-hast: 10.2.0
dev: false
- /remark-slate-transformer@0.7.5(unified@9.2.2):
+ /remark-slate-transformer@0.7.5(unified@7.1.0):
resolution: {integrity: sha512-jyLLjp0wNoQnzy6kwDjUkyjpInCb3NoeJ+sEoNkWVWYpLNSln0toXtsqkYWvM9SH36RpNIxJyNRM/i2nhoJJdw==}
peerDependencies:
unified: '>=10.1.0'
@@ -28572,7 +28074,7 @@ packages:
'@types/mdast': 3.0.15
mdast-util-math: 2.0.2
tslib: 2.6.2
- unified: 9.2.2
+ unified: 7.1.0
dev: false
/remark-slate@1.8.6:
@@ -28609,8 +28111,8 @@ packages:
xtend: 4.0.2
dev: false
- /remeda@1.58.0:
- resolution: {integrity: sha512-YZT2U7B6fpZfOYVsT4bJT9SKXhh+jdzMmtoMX2u4+xro/bIXXaloDslnpAOHC4UHGsYegNMbi6hlXrdIzH45kA==}
+ /remeda@1.33.0:
+ resolution: {integrity: sha512-GExMiOhTB0eg1Rc7hvBMBNxwlVRYIulGfIj5pkuuAfy9HB3ms4PmLvbhMMjQ2btoCit0iN7eQmHgwTaGZTVWwg==}
dev: false
/remedial@1.0.8:
@@ -28655,6 +28157,11 @@ packages:
engines: {node: '>=0.10'}
dev: false
+ /replace-ext@1.0.0:
+ resolution: {integrity: sha512-vuNYXC7gG7IeVNBC1xUllqCcZKRbJoSPOBhnTEcAIiKCsbuef6zO3F0Rve3isPMMoNoQRWjQwbAgAjHUHniyEA==}
+ engines: {node: '>= 0.10'}
+ dev: false
+
/requestidlecallback@0.3.0:
resolution: {integrity: sha512-TWHFkT7S9p7IxLC5A1hYmAYQx2Eb9w1skrXmQ+dS1URyvR8tenMLl4lHbqEOUnpEYxNKpkVMXUgknVpBZWXXfQ==}
dev: true
@@ -28666,6 +28173,7 @@ packages:
/require-from-string@2.0.2:
resolution: {integrity: sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==}
engines: {node: '>=0.10.0'}
+ requiresBuild: true
/require-main-filename@2.0.0:
resolution: {integrity: sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==}
@@ -28815,8 +28323,8 @@ packages:
resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==}
engines: {iojs: '>=1.0.0', node: '>=0.10.0'}
- /rfdc@1.3.1:
- resolution: {integrity: sha512-r5a3l5HzYlIC68TpmYKlxWjmOP6wiPJ1vWv2HeLhNsRZMrCkxeqxiHlQ21oXmQ4F3SiryXBHhAD7JZqvOJjFmg==}
+ /rfdc@1.3.0:
+ resolution: {integrity: sha512-V2hovdzFbOi77/WajaSMXk2OLm+xNIeQdMMuB7icj7bk6zi2F8GGAxigcnDFpJHbNyNcgyJDiP+8nOrY5cZGrA==}
/rimraf@2.6.3:
resolution: {integrity: sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA==}
@@ -28834,11 +28342,12 @@ packages:
/rimraf@3.0.2:
resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==}
hasBin: true
+ requiresBuild: true
dependencies:
glob: 7.2.3
- /roarr@7.21.1:
- resolution: {integrity: sha512-3niqt5bXFY1InKU8HKWqqYTYjtrBaxBMnXELXCXUYgtNYGUtZM5rB46HIC430AyacL95iEniGf7RgqsesykLmQ==}
+ /roarr@7.21.0:
+ resolution: {integrity: sha512-d1rPLcHmQID3GsA3p9d5vKSZYlvrTWhjbmeg9DT5DcPoLpH85VzPmkLkGKhQv376+dfkApaHwNbpYEwDB77Ibg==}
engines: {node: '>=18.0'}
dependencies:
fast-printf: 1.6.9
@@ -28854,28 +28363,24 @@ packages:
fsevents: 2.3.3
dev: true
- /rollup@4.14.1:
- resolution: {integrity: sha512-4LnHSdd3QK2pa1J6dFbfm1HN0D7vSK/ZuZTsdyUAlA6Rr1yTouUTL13HaDOGJVgby461AhrNGBS7sCGXXtT+SA==}
+ /rollup@4.9.2:
+ resolution: {integrity: sha512-66RB8OtFKUTozmVEh3qyNfH+b+z2RXBVloqO2KCC/pjFaGaHtxP9fVfOQKPSGXg2mElmjmxjW/fZ7iKrEpMH5Q==}
engines: {node: '>=18.0.0', npm: '>=8.0.0'}
hasBin: true
- dependencies:
- '@types/estree': 1.0.5
optionalDependencies:
- '@rollup/rollup-android-arm-eabi': 4.14.1
- '@rollup/rollup-android-arm64': 4.14.1
- '@rollup/rollup-darwin-arm64': 4.14.1
- '@rollup/rollup-darwin-x64': 4.14.1
- '@rollup/rollup-linux-arm-gnueabihf': 4.14.1
- '@rollup/rollup-linux-arm64-gnu': 4.14.1
- '@rollup/rollup-linux-arm64-musl': 4.14.1
- '@rollup/rollup-linux-powerpc64le-gnu': 4.14.1
- '@rollup/rollup-linux-riscv64-gnu': 4.14.1
- '@rollup/rollup-linux-s390x-gnu': 4.14.1
- '@rollup/rollup-linux-x64-gnu': 4.14.1
- '@rollup/rollup-linux-x64-musl': 4.14.1
- '@rollup/rollup-win32-arm64-msvc': 4.14.1
- '@rollup/rollup-win32-ia32-msvc': 4.14.1
- '@rollup/rollup-win32-x64-msvc': 4.14.1
+ '@rollup/rollup-android-arm-eabi': 4.9.2
+ '@rollup/rollup-android-arm64': 4.9.2
+ '@rollup/rollup-darwin-arm64': 4.9.2
+ '@rollup/rollup-darwin-x64': 4.9.2
+ '@rollup/rollup-linux-arm-gnueabihf': 4.9.2
+ '@rollup/rollup-linux-arm64-gnu': 4.9.2
+ '@rollup/rollup-linux-arm64-musl': 4.9.2
+ '@rollup/rollup-linux-riscv64-gnu': 4.9.2
+ '@rollup/rollup-linux-x64-gnu': 4.9.2
+ '@rollup/rollup-linux-x64-musl': 4.9.2
+ '@rollup/rollup-win32-arm64-msvc': 4.9.2
+ '@rollup/rollup-win32-ia32-msvc': 4.9.2
+ '@rollup/rollup-win32-x64-msvc': 4.9.2
fsevents: 2.3.3
/run-async@2.4.1:
@@ -28913,12 +28418,13 @@ packages:
mri: 1.2.0
dev: false
- /safe-array-concat@1.1.2:
- resolution: {integrity: sha512-vj6RsCsWBCf19jIeHEfkRMw8DPiBb+DMXklQ/1SGDHOMlHdPUkZXFQ2YdplS23zESTijAcurb1aSgJA3AgMu1Q==}
+ /safe-array-concat@1.0.1:
+ resolution: {integrity: sha512-6XbUAseYE2KtOuGueyeobCySj9L4+66Tn6KQMOPQJrAJEowYKW/YR/MGJZl7FdydUdaFu4LYyDZjxf4/Nmo23Q==}
engines: {node: '>=0.4'}
+ requiresBuild: true
dependencies:
- call-bind: 1.0.7
- get-intrinsic: 1.2.4
+ call-bind: 1.0.5
+ get-intrinsic: 1.2.2
has-symbols: 1.0.3
isarray: 2.0.5
@@ -28932,12 +28438,12 @@ packages:
resolution: {integrity: sha512-gH8eh2nZudPQO6TytOvbxnuhYBOvDBBLW52tz5q6X58lJcd/tkmqFR+5Z9adS8aJtURSXWThWy/xJtJwixErvg==}
dev: false
- /safe-regex-test@1.0.3:
- resolution: {integrity: sha512-CdASjNJPvRa7roO6Ra/gLYBTzYzzPyyBXxIMdGW3USQLyjWEls2RgW5UBTXaQVp+OrpeCK3bLem8smtmheoRuw==}
- engines: {node: '>= 0.4'}
+ /safe-regex-test@1.0.0:
+ resolution: {integrity: sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==}
+ requiresBuild: true
dependencies:
- call-bind: 1.0.7
- es-errors: 1.3.0
+ call-bind: 1.0.5
+ get-intrinsic: 1.2.2
is-regex: 1.1.4
/safe-regex2@2.0.0:
@@ -29049,7 +28555,7 @@ packages:
resolution: {integrity: sha512-0Ju4+6A8iOnpL/Thra7dZsSlOHYAHIeMxfhWQRI1/VLcT3WDBZKKtQt/QkBOsiIN9ZpuvHE6cGZ0x4glCMmfiA==}
engines: {node: '>=12'}
dependencies:
- semver: 7.6.0
+ semver: 7.5.4
dev: false
/semver-regex@4.0.5:
@@ -29060,7 +28566,7 @@ packages:
resolution: {integrity: sha512-LJWA9kSvMolR51oDE6PN3kALBNaUdkxzAGcexw8gjMA8xr5zUqK0JiR3CgARSqanYF3Z1YHvsErb1KDgh+v7Rg==}
engines: {node: '>=12'}
dependencies:
- semver: 7.6.0
+ semver: 7.5.4
/semver@5.7.2:
resolution: {integrity: sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==}
@@ -29076,14 +28582,6 @@ packages:
hasBin: true
dependencies:
lru-cache: 6.0.0
- dev: false
-
- /semver@7.6.0:
- resolution: {integrity: sha512-EnwXhrlwXMk9gKu5/flx5sv/an57AkRplG3hTK68W7FRDN+k+OWBj65M7719OkA82XLBxrcX0KSHj+X5COhOVg==}
- engines: {node: '>=10'}
- hasBin: true
- dependencies:
- lru-cache: 6.0.0
/send@0.18.0:
resolution: {integrity: sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==}
@@ -29117,8 +28615,8 @@ packages:
engines: {node: '>= 10.0.0'}
dev: false
- /sequelize@6.37.2(sqlite3@5.1.7):
- resolution: {integrity: sha512-bnb7swGANONXCTrVyebpOOZssLwQrVkYX2tcC6qOIvH+P+OhsoMBi7c3GXI5bC+Z4b4tOl+kQy6yeqLCZ1YQAQ==}
+ /sequelize@6.35.2(sqlite3@5.1.6):
+ resolution: {integrity: sha512-EdzLaw2kK4/aOnWQ7ed/qh3B6/g+1DvmeXr66RwbcqSm/+QRS9X0LDI5INBibsy4eNJHWIRPo3+QK0zL+IPBHg==}
engines: {node: '>=10.0.0'}
peerDependencies:
ibm_db: '*'
@@ -29151,18 +28649,18 @@ packages:
optional: true
dependencies:
'@types/debug': 4.1.12
- '@types/validator': 13.11.9
+ '@types/validator': 13.11.7
debug: 4.3.4
dottie: 2.0.6
inflection: 1.13.4
lodash: 4.17.21
moment: 2.30.1
- moment-timezone: 0.5.45
- pg-connection-string: 2.6.4
+ moment-timezone: 0.5.44
+ pg-connection-string: 2.6.2
retry-as-promised: 7.0.4
- semver: 7.6.0
+ semver: 7.5.4
sequelize-pool: 7.1.0
- sqlite3: 5.1.7
+ sqlite3: 5.1.6
toposort-class: 1.0.1
uuid: 8.3.2
validator: 13.11.0
@@ -29176,8 +28674,8 @@ packages:
dependencies:
randombytes: 2.1.0
- /serialize-javascript@6.0.2:
- resolution: {integrity: sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g==}
+ /serialize-javascript@6.0.1:
+ resolution: {integrity: sha512-owoXEFjWRllis8/M1Q+Cw5k8ZH40e3zhp/ovX+Xr/vi1qj6QesbyXXViFbpNvWvPNAD62SutwEXavefrLJWj7w==}
dependencies:
randombytes: 2.1.0
@@ -29232,25 +28730,24 @@ packages:
resolution: {integrity: sha512-RVnVQxTXuerk653XfuliOxBP81Sf0+qfQE73LIYKcyMYHG94AuH0kgrQpRDuTZnSmjpysHmzxJXKNfa6PjFhyQ==}
dev: false
- /set-function-length@1.2.2:
- resolution: {integrity: sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==}
+ /set-function-length@1.1.1:
+ resolution: {integrity: sha512-VoaqjbBJKiWtg4yRcKBQ7g7wnGnLV3M8oLvVWwOk2PdYY6PEFegR1vezXR0tw6fZGF9csVakIRjrJiy2veSBFQ==}
engines: {node: '>= 0.4'}
+ requiresBuild: true
dependencies:
- define-data-property: 1.1.4
- es-errors: 1.3.0
- function-bind: 1.1.2
- get-intrinsic: 1.2.4
+ define-data-property: 1.1.1
+ get-intrinsic: 1.2.2
gopd: 1.0.1
- has-property-descriptors: 1.0.2
+ has-property-descriptors: 1.0.1
- /set-function-name@2.0.2:
- resolution: {integrity: sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==}
+ /set-function-name@2.0.1:
+ resolution: {integrity: sha512-tMNCiqYVkXIZgc2Hnoy2IvC/f8ezc5koaRFkCjrpWzGpCd3qbZXPzVy9MAZzK1ch/X0jvSkojys3oqJN0qCmdA==}
engines: {node: '>= 0.4'}
+ requiresBuild: true
dependencies:
- define-data-property: 1.1.4
- es-errors: 1.3.0
+ define-data-property: 1.1.1
functions-have-names: 1.2.3
- has-property-descriptors: 1.0.2
+ has-property-descriptors: 1.0.1
/set-value@2.0.1:
resolution: {integrity: sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw==}
@@ -29287,8 +28784,8 @@ packages:
requiresBuild: true
dependencies:
color: 4.2.3
- detect-libc: 2.0.3
- semver: 7.6.0
+ detect-libc: 2.0.2
+ semver: 7.5.4
optionalDependencies:
'@img/sharp-darwin-arm64': 0.33.1
'@img/sharp-darwin-x64': 0.33.1
@@ -29319,6 +28816,7 @@ packages:
/shebang-command@2.0.0:
resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==}
engines: {node: '>=8'}
+ requiresBuild: true
dependencies:
shebang-regex: 3.0.0
@@ -29329,6 +28827,7 @@ packages:
/shebang-regex@3.0.0:
resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==}
engines: {node: '>=8'}
+ requiresBuild: true
/shell-quote@1.8.1:
resolution: {integrity: sha512-6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA==}
@@ -29340,17 +28839,17 @@ packages:
yargs: 14.2.3
dev: true
- /side-channel@1.0.6:
- resolution: {integrity: sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA==}
- engines: {node: '>= 0.4'}
+ /side-channel@1.0.4:
+ resolution: {integrity: sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==}
+ requiresBuild: true
dependencies:
- call-bind: 1.0.7
- es-errors: 1.3.0
- get-intrinsic: 1.2.4
+ call-bind: 1.0.5
+ get-intrinsic: 1.2.2
object-inspect: 1.13.1
/siginfo@2.0.0:
resolution: {integrity: sha512-ybx0WO1/8bSBLEWXZvEd7gMW3Sn3JFlW3TvX1nREbDLRNQNaeNN8WK0meBwPdAaOI7TtRRRJn/Es1zhrrCHu7g==}
+ requiresBuild: true
/signal-exit@3.0.7:
resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==}
@@ -29362,20 +28861,8 @@ packages:
/signedsource@1.0.0:
resolution: {integrity: sha512-6+eerH9fEnNmi/hyM1DXcRK3pWdoMQtlkQ+ns0ntzunjKqp5i3sKCc80ym8Fib3iaYhdJUOPdhlJWj1tvge2Ww==}
- /simple-concat@1.0.1:
- resolution: {integrity: sha512-cSFtAPtRhljv69IK0hTVZQ+OfE9nePi/rtJmw5UjHeVyVroEqJXP1sFztKUy1qU+xvz3u/sfYJLa947b7nAN2Q==}
- dev: false
-
- /simple-get@4.0.1:
- resolution: {integrity: sha512-brv7p5WgH0jmQJr1ZDDfKDOSeWWg+OVypG99A/5vYGPqJ6pxiaHLy8nxtFjBA7oMa01ebA9gfh1uMCFqOuXxvA==}
- dependencies:
- decompress-response: 6.0.0
- once: 1.4.0
- simple-concat: 1.0.1
- dev: false
-
- /simple-git@3.24.0:
- resolution: {integrity: sha512-QqAKee9Twv+3k8IFOFfPB2hnk6as6Y6ACUpwCtQvRYBAes23Wv3SZlHVobAzqcE8gfsisCvPw3HGW3HYM+VYYw==}
+ /simple-git@3.22.0:
+ resolution: {integrity: sha512-6JujwSs0ac82jkGjMHiCnTifvf1crOiY/+tfs/Pqih6iow7VrpNKRRNdWm6RtaXpvvv/JGNYhlUtLhGFqHF+Yw==}
dependencies:
'@kwsites/file-exists': 1.1.1
'@kwsites/promise-deferred': 1.1.1
@@ -29394,13 +28881,14 @@ packages:
'@hapi/hoek': 10.0.1
'@hapi/wreck': 18.0.1
debug: 4.3.4
- joi: 17.12.3
+ joi: 17.11.0
transitivePeerDependencies:
- supports-color
dev: false
/simple-swizzle@0.2.2:
resolution: {integrity: sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg==}
+ requiresBuild: true
dependencies:
is-arrayish: 0.3.2
@@ -29408,14 +28896,15 @@ packages:
resolution: {integrity: sha512-a2B9Y0KlNXl9u/vsW6sTIu9vGEpfKu2wRV6l1H3XEas/0gUIzGzBoP/IouTcUQbm9JWZLH3COxyn03TYlFax6w==}
engines: {node: '>=10'}
dependencies:
- semver: 7.6.0
+ semver: 7.5.4
dev: true
/sirv@2.0.4:
resolution: {integrity: sha512-94Bdh3cC2PKrbgSOUqTiGPWVZeSiXfKOVZNJniWoqrWrRkB1CJzBU3NEbiTsPcYy1lDsANA/THzS+9WBiy5nfQ==}
engines: {node: '>= 10'}
+ requiresBuild: true
dependencies:
- '@polka/url': 1.0.0-next.25
+ '@polka/url': 1.0.0-next.24
mrmime: 2.0.0
totalist: 3.0.1
dev: true
@@ -29485,7 +28974,7 @@ packages:
dependencies:
'@juggle/resize-observer': 3.4.0
'@types/is-hotkey': 0.1.10
- '@types/lodash': 4.17.0
+ '@types/lodash': 4.14.202
direction: 1.0.4
is-hotkey: 0.1.8
is-plain-object: 5.0.0
@@ -29515,15 +29004,6 @@ packages:
tiny-warning: 1.0.3
dev: false
- /slice-ansi@2.1.0:
- resolution: {integrity: sha512-Qu+VC3EwYLldKa1fCxuuvULvSJOKEgk9pi8dZeCVK7TqBfUNTH4sFkk4joj8afVSfAYgJoSOetjx9QWOJ5mYoQ==}
- engines: {node: '>=6'}
- dependencies:
- ansi-styles: 3.2.1
- astral-regex: 1.0.0
- is-fullwidth-code-point: 2.0.0
- dev: true
-
/slice-ansi@3.0.0:
resolution: {integrity: sha512-pSyv7bSTC7ig9Dcgbw9AuRNUb5k5V6oDudjZoMBSr13qpLBG7tB+zgCkARjq7xIUgdz5P1Qe8u+rSGdouOOIyQ==}
engines: {node: '>=8'}
@@ -29598,14 +29078,12 @@ packages:
- supports-color
dev: false
- /socket.io-adapter@2.5.4:
- resolution: {integrity: sha512-wDNHGXGewWAjQPt3pyeYBtpWSq9cLE5UW1ZUPL/2eGK9jtse/FpXib7epSTsz0Q0m+6sg6Y4KtcFTlah1bdOVg==}
+ /socket.io-adapter@2.5.2:
+ resolution: {integrity: sha512-87C3LO/NOMc+eMcpcxUBebGjkpMDkNBS9tf7KJqcDsmL936EChtVva71Dw2q4tQcuVC+hAUy4an2NO/sYXmwRA==}
dependencies:
- debug: 4.3.4
ws: 8.11.0
transitivePeerDependencies:
- bufferutil
- - supports-color
- utf-8-validate
/socket.io-client@4.7.1:
@@ -29639,7 +29117,7 @@ packages:
cors: 2.8.5
debug: 4.3.4
engine.io: 6.5.4
- socket.io-adapter: 2.5.4
+ socket.io-adapter: 2.5.2
socket.io-parser: 4.2.4
transitivePeerDependencies:
- bufferutil
@@ -29653,24 +29131,24 @@ packages:
dependencies:
agent-base: 6.0.2
debug: 4.3.4
- socks: 2.8.3
+ socks: 2.7.1
transitivePeerDependencies:
- supports-color
dev: false
optional: true
- /socks@2.8.3:
- resolution: {integrity: sha512-l5x7VUUWbjVFbafGLxPWkYsHIhEvmF85tbIeFZWc8ZPtoMyybuEhL7Jye/ooC4/d48FgOjSJXgsF/AJPYCW8Zw==}
- engines: {node: '>= 10.0.0', npm: '>= 3.0.0'}
+ /socks@2.7.1:
+ resolution: {integrity: sha512-7maUZy1N7uo6+WVEX6psASxtNlKaNVMlGQKkG/63nEDdLOWNbiUMoLK7X4uYoLhQstau72mLgfEWcXcwsaHbYQ==}
+ engines: {node: '>= 10.13.0', npm: '>= 3.0.0'}
requiresBuild: true
dependencies:
- ip-address: 9.0.5
+ ip: 2.0.0
smart-buffer: 4.2.0
dev: false
optional: true
- /sonic-boom@3.8.1:
- resolution: {integrity: sha512-y4Z8LCDBuum+PBP3lSV7RHrXscqksve/bi0as7mhwVnBW+/wUqKT/2Kb7um8yqcFy0duYbbPxzt89Zy2nOCaxg==}
+ /sonic-boom@3.7.0:
+ resolution: {integrity: sha512-IudtNvSqA/ObjN97tfgNmOKyDOs4dNcg4cUUsHDebqsgb8wGBBwb31LIgShNO8fye0dFI52X1+tFoKKI6Rq1Gg==}
dependencies:
atomic-sleep: 1.0.0
dev: false
@@ -29708,9 +29186,10 @@ packages:
/source-list-map@2.0.1:
resolution: {integrity: sha512-qnQ7gVMxGNxsiL4lEuJwe/To8UnK7fAnmbGEEH8RpLouuKbeEm0lhbQVFIrNSuB+G7tVrAlVsZgETT5nljf+Iw==}
- /source-map-js@1.2.0:
- resolution: {integrity: sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg==}
+ /source-map-js@1.0.2:
+ resolution: {integrity: sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==}
engines: {node: '>=0.10.0'}
+ requiresBuild: true
/source-map-resolve@0.5.3:
resolution: {integrity: sha512-Htz+RnsXWk5+P2slx5Jh3Q66vhQj1Cllm0zvnaY98+NFx+Dv2CF/f5O/t8x+KaNdrdIAsruNzoh/KpialbqAnw==}
@@ -29798,19 +29277,19 @@ packages:
resolution: {integrity: sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==}
dependencies:
spdx-expression-parse: 3.0.1
- spdx-license-ids: 3.0.17
+ spdx-license-ids: 3.0.16
- /spdx-exceptions@2.5.0:
- resolution: {integrity: sha512-PiU42r+xO4UbUS1buo3LPJkjlO7430Xn5SVAhdpzzsPHsjbYVflnnFdATgabnLude+Cqu25p6N+g2lw/PFsa4w==}
+ /spdx-exceptions@2.3.0:
+ resolution: {integrity: sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==}
/spdx-expression-parse@3.0.1:
resolution: {integrity: sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==}
dependencies:
- spdx-exceptions: 2.5.0
- spdx-license-ids: 3.0.17
+ spdx-exceptions: 2.3.0
+ spdx-license-ids: 3.0.16
- /spdx-license-ids@3.0.17:
- resolution: {integrity: sha512-sh8PWc/ftMqAAdFiBu6Fy6JUOYjqDJBJvIhpfDMyHrr0Rbp5liZqd4TjtQ/RgfLjKFZb+LMx5hpml5qOWy0qvg==}
+ /spdx-license-ids@3.0.16:
+ resolution: {integrity: sha512-eWN+LnM3GR6gPu35WxNgbGl8rmY1AEmoMDvL/QD6zYmPWgywxWqJWNdLGT+ke8dKNWrcYgYjPpG5gbTfghP8rw==}
/split-on-first@1.1.0:
resolution: {integrity: sha512-43ZssAJaMusuKWL8sKUBQXHWOpq8d6CfN/u1p4gUzfJkM05C8rxTmYrkIPTXapZpORA6LkkzcUulJ8FqA7Uudw==}
@@ -29856,30 +29335,32 @@ packages:
/sprintf-js@1.0.3:
resolution: {integrity: sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==}
+ requiresBuild: true
/sprintf-js@1.1.3:
resolution: {integrity: sha512-Oo+0REFV59/rz3gfJNKQiBlwfHaSESl1pcGyABQsnnIfWOFt6JNj5gCog2U6MLZ//IGYD+nA8nI+mTShREReaA==}
+ dev: true
- /sqlite3@5.1.7:
- resolution: {integrity: sha512-GGIyOiFaG+TUra3JIfkI/zGP8yZYLPQ0pl1bH+ODjiX57sPhrLU5sQJn1y9bDKZUFYkX1crlrPfSYt0BKKdkog==}
+ /sqlite3@5.1.6:
+ resolution: {integrity: sha512-olYkWoKFVNSSSQNvxVUfjiVbz3YtBwTJj+mfV5zpHmqW3sELx2Cf4QCdirMelhM5Zh+KDVaKgQHqCxrqiWHybw==}
requiresBuild: true
peerDependenciesMeta:
node-gyp:
optional: true
dependencies:
- bindings: 1.5.0
- node-addon-api: 7.1.0
- prebuild-install: 7.1.2
- tar: 6.2.1
+ '@mapbox/node-pre-gyp': 1.0.11
+ node-addon-api: 4.3.0
+ tar: 6.2.0
optionalDependencies:
node-gyp: 8.4.1
transitivePeerDependencies:
- bluebird
+ - encoding
- supports-color
dev: false
- /srcset@5.0.1:
- resolution: {integrity: sha512-/P1UYbGfJVlxZag7aABNRrulEXAwCSDo7fklafOQrantuPTDmYgijJMks2zusPCVzgW9+4P69mq7w6pYuZpgxw==}
+ /srcset@5.0.0:
+ resolution: {integrity: sha512-SqEZaAEhe0A6ETEa9O1IhSPC7MdvehZtCnTR0AftXk3QhY2UNgb+NApFOUPZILXk/YTDfFxMTNJOBpzrJsEdIA==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
dev: true
@@ -29914,10 +29395,15 @@ packages:
/stackback@0.0.2:
resolution: {integrity: sha512-1XMJE5fQo1jGH6Y/7ebnwPOBEkIEnT4QF32d5R1+VXdXveM0IBMJt8zfaxX1P3QhVwrYe+576+jkANtSS2mBbw==}
+ requiresBuild: true
/stackframe@1.3.4:
resolution: {integrity: sha512-oeVtt7eWQS+Na6F//S4kJ2K2VbRlS9D43mAlMyVpVWovy9o+jfgH8O9agzANzaiLjclA0oYzUXEM4PurhSUChw==}
+ /standard-as-callback@2.1.0:
+ resolution: {integrity: sha512-qoRRSyROncaz1z0mvYqIE4lCd9p2R90i6GxW3uZv5ucSu8tU7B5HXUP1gG8pVZsYNVaXjk8ClXHPttLyxAL48A==}
+ dev: false
+
/start-server-and-test@2.0.3:
resolution: {integrity: sha512-QsVObjfjFZKJE6CS6bSKNwWZCKBG6975/jKRPPGFfFh+yOQglSeGXiNWjzgQNXdphcBI9nXbyso9tPfX4YAUhg==}
engines: {node: '>=16'}
@@ -29970,11 +29456,11 @@ packages:
resolution: {integrity: sha512-iCGQj+0l0HOdZ2AEeBADlsRC+vsnDsZsbdSiH1yNSjcfKM7fdpCMfqAL/dwF5BLiw/XhRft/Wax6zQbhq2BcjQ==}
engines: {node: '>= 0.4'}
dependencies:
- internal-slot: 1.0.7
+ internal-slot: 1.0.6
dev: true
- /store2@2.14.3:
- resolution: {integrity: sha512-4QcZ+yx7nzEFiV4BMLnr/pRa5HYzNITX2ri0Zh6sT9EyQHbBHacC6YigllUPU9X3D0f/22QCgfokpKs52YRrUg==}
+ /store2@2.14.2:
+ resolution: {integrity: sha512-siT1RiqlfQnGqgT/YzXVUNsom9S0H1OX+dpdGN1xkyYATo4I6sep5NmsRD/40s3IIOvlCq6akxkqG82urIZW1w==}
dev: true
/storybook@7.6.7:
@@ -30002,21 +29488,19 @@ packages:
- supports-color
dev: false
- /stream-shift@1.0.3:
- resolution: {integrity: sha512-76ORR0DO1o1hlKwTbi/DM3EXWGf3ZJYO8cXX5RJwnul2DEg2oyoZyjLNoQM8WsvZiFKCRfC1O0J7iCvie3RZmQ==}
+ /stream-shift@1.0.1:
+ resolution: {integrity: sha512-AiisoFqQ0vbGcZgQPY1cdP2I76glaVA/RauYR4G4thNFgkTqr90yXTo4LYX60Jl+sIlPNHHdGSwo01AvbKUSVQ==}
dev: true
/streamsearch@1.1.0:
resolution: {integrity: sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==}
engines: {node: '>=10.0.0'}
- /streamx@2.16.1:
- resolution: {integrity: sha512-m9QYj6WygWyWa3H1YY69amr4nVgy61xfjys7xO7kviL5rfIEc2naf+ewFiOA+aEJD7y0JO3h2GoiUv4TDwEGzQ==}
+ /streamx@2.15.6:
+ resolution: {integrity: sha512-q+vQL4AAz+FdfT137VF69Cc/APqUbxy+MDOImRrMvchJpigHj9GksgDU2LYbO9rx7RX6osWgxJB2WxhYv4SZAw==}
dependencies:
fast-fifo: 1.3.2
queue-tick: 1.0.1
- optionalDependencies:
- bare-events: 2.2.2
dev: false
/strict-uri-encode@2.0.0:
@@ -30088,46 +29572,43 @@ packages:
emoji-regex: 9.2.2
strip-ansi: 7.1.0
- /string.prototype.matchall@4.0.11:
- resolution: {integrity: sha512-NUdh0aDavY2og7IbBPenWqR9exH+E26Sv8e0/eTe1tltDGZL+GtBkDAnnyBtmekfK6/Dq3MkcGtzXFEd1LQrtg==}
- engines: {node: '>= 0.4'}
+ /string.prototype.matchall@4.0.10:
+ resolution: {integrity: sha512-rGXbGmOEosIQi6Qva94HUjgPs9vKW+dkG7Y8Q5O2OYkWL6wFaTRZO8zM4mhP94uX55wgyrXzfS2aGtGzUL7EJQ==}
dependencies:
- call-bind: 1.0.7
+ call-bind: 1.0.5
define-properties: 1.2.1
- es-abstract: 1.23.3
- es-errors: 1.3.0
- es-object-atoms: 1.0.0
- get-intrinsic: 1.2.4
- gopd: 1.0.1
+ es-abstract: 1.22.3
+ get-intrinsic: 1.2.2
has-symbols: 1.0.3
- internal-slot: 1.0.7
- regexp.prototype.flags: 1.5.2
- set-function-name: 2.0.2
- side-channel: 1.0.6
+ internal-slot: 1.0.6
+ regexp.prototype.flags: 1.5.1
+ set-function-name: 2.0.1
+ side-channel: 1.0.4
- /string.prototype.trim@1.2.9:
- resolution: {integrity: sha512-klHuCNxiMZ8MlsOihJhJEBJAiMVqU3Z2nEXWfWnIqjN0gEFS9J9+IxKozWWtQGcgoa1WUZzLjKPTr4ZHNFTFxw==}
+ /string.prototype.trim@1.2.8:
+ resolution: {integrity: sha512-lfjY4HcixfQXOfaqCvcBuOIapyaroTXhbkfJN3gcB1OtyupngWK4sEET9Knd0cXd28kTUqu/kHoV4HKSJdnjiQ==}
engines: {node: '>= 0.4'}
+ requiresBuild: true
dependencies:
- call-bind: 1.0.7
+ call-bind: 1.0.5
define-properties: 1.2.1
- es-abstract: 1.23.3
- es-object-atoms: 1.0.0
+ es-abstract: 1.22.3
- /string.prototype.trimend@1.0.8:
- resolution: {integrity: sha512-p73uL5VCHCO2BZZ6krwwQE3kCzM7NKmis8S//xEC6fQonchbum4eP6kR4DLEjQFO3Wnj3Fuo8NM0kOSjVdHjZQ==}
+ /string.prototype.trimend@1.0.7:
+ resolution: {integrity: sha512-Ni79DqeB72ZFq1uH/L6zJ+DKZTkOtPIHovb3YZHQViE+HDouuU4mBrLOLDn5Dde3RF8qw5qVETEjhu9locMLvA==}
+ requiresBuild: true
dependencies:
- call-bind: 1.0.7
+ call-bind: 1.0.5
define-properties: 1.2.1
- es-object-atoms: 1.0.0
+ es-abstract: 1.22.3
- /string.prototype.trimstart@1.0.8:
- resolution: {integrity: sha512-UXSH262CSZY1tfu3G3Secr6uGLCFVPMhIqHjlgCUtCCcgihYc/xKs9djMTMUOb2j1mVSeU8EU6NWc/iQKU6Gfg==}
- engines: {node: '>= 0.4'}
+ /string.prototype.trimstart@1.0.7:
+ resolution: {integrity: sha512-NGhtDFu3jCEm7B4Fy0DpLewdJQOZcQ0rGbwQ/+stjnrp2i+rlKeCvos9hOIeCmqwratM47OBxY7uFZzjxHXmrg==}
+ requiresBuild: true
dependencies:
- call-bind: 1.0.7
+ call-bind: 1.0.5
define-properties: 1.2.1
- es-object-atoms: 1.0.0
+ es-abstract: 1.22.3
/string_decoder@1.1.1:
resolution: {integrity: sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==}
@@ -30156,8 +29637,8 @@ packages:
xtend: 4.0.2
dev: false
- /stringify-entities@4.0.4:
- resolution: {integrity: sha512-IwfBptatlO+QCJUo19AqvrPNqlVMpW9YEL2LIVY+Rpv2qsjCGxaDLNRgeGsQWJhfItebuJhsGSLjaBbNSQ+ieg==}
+ /stringify-entities@4.0.3:
+ resolution: {integrity: sha512-BP9nNHMhhfcMbiuQKCqMjhDP5yBCAxsPu4pHFFzJ6Alo9dZgY4VLDPutXqIjpRiMoKdp7Av85Gr73Q5uH9k7+g==}
dependencies:
character-entities-html4: 2.1.0
character-entities-legacy: 3.0.0
@@ -30206,6 +29687,7 @@ packages:
/strip-bom@3.0.0:
resolution: {integrity: sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==}
engines: {node: '>=4'}
+ requiresBuild: true
/strip-bom@4.0.0:
resolution: {integrity: sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==}
@@ -30247,10 +29729,12 @@ 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==}
engines: {node: '>=8'}
+ requiresBuild: true
/strip-literal@1.3.0:
resolution: {integrity: sha512-PugKzOsyXpArk0yWmUwqOZecSO0GH0bPoctLcqNDH9J04pVW3lflYE0ujElBGTloevcxF5MofAOZ7C5l2b+wLg==}
@@ -30282,7 +29766,7 @@ packages:
'@tokenizer/token': 0.3.0
peek-readable: 5.0.0
- /style-loader@2.0.0(webpack@5.91.0):
+ /style-loader@2.0.0(webpack@5.89.0):
resolution: {integrity: sha512-Z0gYUJmzZ6ZdRUqpg1r8GsaFKypE+3xAzuFeMuoHgjc9KZv3wMyCRjQIWEbhoFSq7+7yoHXySDJyyWQaPajeiQ==}
engines: {node: '>= 10.13.0'}
peerDependencies:
@@ -30290,7 +29774,7 @@ packages:
dependencies:
loader-utils: 2.0.4
schema-utils: 3.3.0
- webpack: 5.91.0(esbuild@0.19.12)
+ webpack: 5.89.0
/style-to-object@0.3.0:
resolution: {integrity: sha512-CzFnRRXhzWIdItT3OmF8SQfWyahHhjq3HwcMNCNLn+N7klOOqPjMeG/4JSu77D7ypZdGvSzvkrbyeTMizz2VrA==}
@@ -30303,25 +29787,25 @@ packages:
dependencies:
inline-style-parser: 0.1.1
- /stylehacks@5.1.1(postcss@8.4.38):
+ /stylehacks@5.1.1(postcss@8.4.32):
resolution: {integrity: sha512-sBpcd5Hx7G6seo7b1LkpttvTz7ikD0LlH5RmdcBNb6fFR0Fl7LQwHDFr300q4cwUqi+IYrFGmsIHieMBfnN/Bw==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- browserslist: 4.23.0
- postcss: 8.4.38
- postcss-selector-parser: 6.0.16
+ browserslist: 4.22.2
+ postcss: 8.4.32
+ postcss-selector-parser: 6.0.15
- /stylehacks@6.1.1(postcss@8.4.32):
- resolution: {integrity: sha512-gSTTEQ670cJNoaeIp9KX6lZmm8LJ3jPB5yJmX8Zq/wQxOsAFXV3qjWzHas3YYk1qesuVIyYWWUpZ0vSE/dTSGg==}
+ /stylehacks@6.0.2(postcss@8.4.32):
+ resolution: {integrity: sha512-00zvJGnCu64EpMjX8b5iCZ3us2Ptyw8+toEkb92VdmkEaRaSGBNKAoK6aWZckhXxmQP8zWiTaFaiMGIU8Ve8sg==}
engines: {node: ^14 || ^16 || >=18.0}
peerDependencies:
postcss: ^8.4.31
dependencies:
- browserslist: 4.23.0
+ browserslist: 4.22.2
postcss: 8.4.32
- postcss-selector-parser: 6.0.16
+ postcss-selector-parser: 6.0.15
dev: true
/stylis@4.2.0:
@@ -30332,9 +29816,9 @@ packages:
engines: {node: '>=16 || 14 >=14.17'}
hasBin: true
dependencies:
- '@jridgewell/gen-mapping': 0.3.5
+ '@jridgewell/gen-mapping': 0.3.3
commander: 4.1.1
- glob: 10.3.12
+ glob: 10.3.10
lines-and-columns: 1.2.4
mz: 2.7.0
pirates: 4.0.6
@@ -30377,6 +29861,7 @@ packages:
/supports-preserve-symlinks-flag@1.0.0:
resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==}
engines: {node: '>= 0.4'}
+ requiresBuild: true
/svgo@2.8.0:
resolution: {integrity: sha512-+N/Q9kV1+F+UeWYoSiULYo4xYSDQlTgb+ayMobAXPwMnLvop7oxKMo9OzIrX5x3eS4L4f2UHhc9axXwY8DpChg==}
@@ -30431,19 +29916,10 @@ packages:
resolution: {integrity: sha512-ulAk51I9UVUyJgxlv9M6lFot2WP3e7t8Kz9+IS6D4rVba1tR9kON+Ey69f+1R4Q8cd45Lod6a4IcJIxnzGc/zA==}
engines: {node: '>=18'}
- /table@5.4.6:
- resolution: {integrity: sha512-wmEc8m4fjnob4gt5riFRtTu/6+4rSe12TpAELNSqHMfF3IqnA+CH37USM6/YR3qRZv7e56kAEAtd6nKZaxe0Ug==}
- engines: {node: '>=6.0.0'}
- dependencies:
- ajv: 6.12.6
- lodash: 4.17.21
- slice-ansi: 2.1.0
- string-width: 3.1.0
- dev: true
-
- /table@6.8.2:
- resolution: {integrity: sha512-w2sfv80nrAh2VCbqR5AK27wswXhqcck2AhfnNW76beQXskGZ1V12GwS//yYVa3d3fcvAip2OUnbDAjW2k3v9fA==}
+ /table@6.8.1:
+ resolution: {integrity: sha512-Y4X9zqrCftUhMeH2EptSSERdVKt/nEdijTOacGD/97EKjhQ/Qs8RTlEGABSJNNN8lac9kheH+af7yAkEWlgneA==}
engines: {node: '>=10.0.0'}
+ requiresBuild: true
dependencies:
ajv: 8.12.0
lodash.truncate: 4.4.2
@@ -30464,6 +29940,20 @@ packages:
- supports-color
dev: false
+ /tailwind-merge@2.2.1:
+ resolution: {integrity: sha512-o+2GTLkthfa5YUt4JxPfzMIpQzZ3adD1vLVkvKE1Twl9UAhGsEbIZhHHZVRttyW177S8PDJI3bTQNaebyofK3Q==}
+ dependencies:
+ '@babel/runtime': 7.23.7
+ dev: false
+
+ /tailwindcss-animate@1.0.7(tailwindcss@3.4.0):
+ resolution: {integrity: sha512-bl6mpH3T7I3UFxuvDEXLxy/VuFxBk5bbzplh7tXI68mwMokNYd1t9qPBHlnyTwfa4JGC4zP516I1hYYtQ/vspA==}
+ peerDependencies:
+ tailwindcss: '>=3.0.0 || insiders'
+ dependencies:
+ tailwindcss: 3.4.0
+ dev: false
+
/tailwindcss@3.4.0:
resolution: {integrity: sha512-VigzymniH77knD1dryXbyxR+ePHihHociZbXnLZHUyzf2MMs2ZVqlUrZ3FvpXP8pno9JzmILt1sZPD19M3IxtA==}
engines: {node: '>=14.0.0'}
@@ -30471,7 +29961,7 @@ packages:
dependencies:
'@alloc/quick-lru': 5.2.0
arg: 5.0.2
- chokidar: 3.6.0
+ chokidar: 3.5.3
didyoumean: 1.2.2
dlv: 1.1.3
fast-glob: 3.3.2
@@ -30488,44 +29978,11 @@ packages:
postcss-js: 4.0.1(postcss@8.4.32)
postcss-load-config: 4.0.2(postcss@8.4.32)
postcss-nested: 6.0.1(postcss@8.4.32)
- postcss-selector-parser: 6.0.16
- resolve: 1.22.8
- sucrase: 3.35.0
- transitivePeerDependencies:
- - ts-node
- dev: true
-
- /tailwindcss@3.4.3:
- resolution: {integrity: sha512-U7sxQk/n397Bmx4JHbJx/iSOOv5G+II3f1kpLpY2QeUv5DcPdcTsYLlusZfq1NthHS1c1cZoyFmmkex1rzke0A==}
- engines: {node: '>=14.0.0'}
- hasBin: true
- dependencies:
- '@alloc/quick-lru': 5.2.0
- arg: 5.0.2
- chokidar: 3.6.0
- didyoumean: 1.2.2
- dlv: 1.1.3
- fast-glob: 3.3.2
- glob-parent: 6.0.2
- is-glob: 4.0.3
- jiti: 1.21.0
- lilconfig: 2.1.0
- micromatch: 4.0.5
- normalize-path: 3.0.0
- object-hash: 3.0.0
- picocolors: 1.0.0
- postcss: 8.4.38
- postcss-import: 15.1.0(postcss@8.4.38)
- postcss-js: 4.0.1(postcss@8.4.38)
- postcss-load-config: 4.0.2(postcss@8.4.38)
- postcss-nested: 6.0.1(postcss@8.4.38)
- postcss-selector-parser: 6.0.16
+ postcss-selector-parser: 6.0.15
resolve: 1.22.8
sucrase: 3.35.0
transitivePeerDependencies:
- ts-node
- dev: false
- optional: true
/tannin@1.2.0:
resolution: {integrity: sha512-U7GgX/RcSeUETbV7gYgoz8PD7Ni4y95pgIP/Z6ayI3CfhSujwKEBlGFTCRN+Aqnuyf4AN2yHL+L8x+TCGjb9uA==}
@@ -30543,32 +30000,37 @@ packages:
/tar-fs@2.1.1:
resolution: {integrity: sha512-V0r2Y9scmbDRLCNex/+hYzvp/zyYjvFbHPNgVTKfQvVrb6guiE/fxP+XblDNR011utopbkex2nM4dHNV6GDsng==}
+ requiresBuild: true
dependencies:
chownr: 1.1.4
mkdirp-classic: 0.5.3
pump: 3.0.0
tar-stream: 2.2.0
+ dev: true
/tar-stream@2.2.0:
resolution: {integrity: sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==}
engines: {node: '>=6'}
+ requiresBuild: true
dependencies:
bl: 4.1.0
end-of-stream: 1.4.4
fs-constants: 1.0.0
inherits: 2.0.4
readable-stream: 3.6.2
+ dev: true
- /tar-stream@3.1.7:
- resolution: {integrity: sha512-qJj60CXt7IU1Ffyc3NJMjh6EkuCFej46zUqJ4J7pqYlThyd9bO0XBTmcOIhSzZJVWfsLks0+nle/j538YAW9RQ==}
+ /tar-stream@3.1.6:
+ resolution: {integrity: sha512-B/UyjYwPpMBv+PaFSWAmtYjwdrlEaZQEhMIBFNC5oEG8lpiW8XjcSdmEaClj28ArfKScKHs2nshz3k2le6crsg==}
+ requiresBuild: true
dependencies:
- b4a: 1.6.6
+ b4a: 1.6.4
fast-fifo: 1.3.2
- streamx: 2.16.1
+ streamx: 2.15.6
dev: false
- /tar@6.2.1:
- resolution: {integrity: sha512-DZ4yORTwrbTj/7MZYq2w+/ZFdI6OZ/f9SFHR+71gIVUZhOQPHzVCLpvRnPgyaMpfWxxk/4ONva3GQSyNIKRv6A==}
+ /tar@6.2.0:
+ resolution: {integrity: sha512-/Wo7DcT0u5HUV486xg675HtjNd3BXZ6xDbzsCUZPt5iw8bTQ63bP0Raut3mvro9u+CUyq7YQd8Cx55fsZXxqLQ==}
engines: {node: '>=10'}
dependencies:
chownr: 2.0.0
@@ -30634,7 +30096,7 @@ packages:
ps-tree: 1.2.0
dev: false
- /terser-webpack-plugin@5.3.10(@swc/core@1.3.102)(webpack@5.91.0):
+ /terser-webpack-plugin@5.3.10(@swc/core@1.3.102)(webpack@5.89.0):
resolution: {integrity: sha512-BKFPWlPDndPs+NGGCr1U59t0XScL5317Y0UReNrHaw9/FwhPENlq6bfgs+4yPfyP51vqC1bQ4rp1EfXW5ZSH9w==}
engines: {node: '>= 10.13.0'}
peerDependencies:
@@ -30650,16 +30112,16 @@ packages:
uglify-js:
optional: true
dependencies:
- '@jridgewell/trace-mapping': 0.3.25
+ '@jridgewell/trace-mapping': 0.3.20
'@swc/core': 1.3.102
jest-worker: 27.5.1
schema-utils: 3.3.0
- serialize-javascript: 6.0.2
- terser: 5.30.3
- webpack: 5.91.0(@swc/core@1.3.102)
+ serialize-javascript: 6.0.1
+ terser: 5.26.0
+ webpack: 5.89.0(@swc/core@1.3.102)
dev: true
- /terser-webpack-plugin@5.3.10(esbuild@0.19.12)(webpack@5.91.0):
+ /terser-webpack-plugin@5.3.10(esbuild@0.19.11)(webpack@5.89.0):
resolution: {integrity: sha512-BKFPWlPDndPs+NGGCr1U59t0XScL5317Y0UReNrHaw9/FwhPENlq6bfgs+4yPfyP51vqC1bQ4rp1EfXW5ZSH9w==}
engines: {node: '>= 10.13.0'}
peerDependencies:
@@ -30675,15 +30137,16 @@ packages:
uglify-js:
optional: true
dependencies:
- '@jridgewell/trace-mapping': 0.3.25
- esbuild: 0.19.12
+ '@jridgewell/trace-mapping': 0.3.20
+ esbuild: 0.19.11
jest-worker: 27.5.1
schema-utils: 3.3.0
- serialize-javascript: 6.0.2
- terser: 5.30.3
- webpack: 5.91.0(esbuild@0.19.12)
+ serialize-javascript: 6.0.1
+ terser: 5.26.0
+ webpack: 5.89.0(esbuild@0.19.11)
+ dev: true
- /terser-webpack-plugin@5.3.10(webpack@5.91.0):
+ /terser-webpack-plugin@5.3.10(webpack@5.89.0):
resolution: {integrity: sha512-BKFPWlPDndPs+NGGCr1U59t0XScL5317Y0UReNrHaw9/FwhPENlq6bfgs+4yPfyP51vqC1bQ4rp1EfXW5ZSH9w==}
engines: {node: '>= 10.13.0'}
peerDependencies:
@@ -30699,19 +30162,19 @@ packages:
uglify-js:
optional: true
dependencies:
- '@jridgewell/trace-mapping': 0.3.25
+ '@jridgewell/trace-mapping': 0.3.20
jest-worker: 27.5.1
schema-utils: 3.3.0
- serialize-javascript: 6.0.2
- terser: 5.30.3
- webpack: 5.91.0
+ serialize-javascript: 6.0.1
+ terser: 5.26.0
+ webpack: 5.89.0
- /terser@5.30.3:
- resolution: {integrity: sha512-STdUgOUx8rLbMGO9IOwHLpCqolkDITFFQSMYYwKE1N2lY6MVSaeoi10z/EhWxRc6ybqoVmKSkhKYH/XUpl7vSA==}
+ /terser@5.26.0:
+ resolution: {integrity: sha512-dytTGoE2oHgbNV9nTzgBEPaqAWvcJNl66VZ0BkJqlvp71IjO8CxdBx/ykCNb47cLnCmCvRZ6ZR0tLkqvZCdVBQ==}
engines: {node: '>=10'}
hasBin: true
dependencies:
- '@jridgewell/source-map': 0.3.6
+ '@jridgewell/source-map': 0.3.5
acorn: 8.11.3
commander: 2.20.3
source-map-support: 0.5.21
@@ -30735,6 +30198,7 @@ packages:
/text-table@0.2.0:
resolution: {integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==}
+ requiresBuild: true
/thenby@1.3.4:
resolution: {integrity: sha512-89Gi5raiWA3QZ4b2ePcEwswC3me9JIg+ToSgtE0JWeCynLnLxNr/f9G+xfo9K+Oj4AFdom8YNJjibIARTJmapQ==}
@@ -30789,6 +30253,7 @@ packages:
/time-zone@1.0.0:
resolution: {integrity: sha512-TIsDdtKo6+XrPtiTm1ssmMngN1sAhyKnTO2kunQWqNPWIVvCm15Wmw4SWInwTVgJ5u/Tr04+8Ei9TNcw4x4ONA==}
engines: {node: '>=4'}
+ requiresBuild: true
dev: false
/timeout-signal@2.0.0:
@@ -30799,7 +30264,7 @@ packages:
/timers-ext@0.1.7:
resolution: {integrity: sha512-b85NUNzTSdodShTIbky6ZF02e8STtVVfD+fu4aXXShEELpozH+bCpJLYMPZbsABN2wDH7fJpqIoXxJpzbf0NqQ==}
dependencies:
- es5-ext: 0.10.64
+ es5-ext: 0.10.62
next-tick: 1.1.0
/tiny-emitter@2.1.0:
@@ -30810,8 +30275,8 @@ packages:
resolution: {integrity: sha512-FOyLWWVjG+aC0UqG76V53yAWdXfH8bO6FNmyZOuUrzDzK8DI3/JRY25UD7+g49JWM1LXwymsKERB+DzI0dTEQA==}
dev: false
- /tiny-invariant@1.3.3:
- resolution: {integrity: sha512-+FbBPE1o9QAYvviau/qC5SE3caw21q3xkvWKBtja5vgqOWIHHJ3ioaq1VPfn/Szqctz2bU/oYeKd9/z5BL+PVg==}
+ /tiny-invariant@1.3.1:
+ resolution: {integrity: sha512-AD5ih2NlSssTCwsMznbvwMZpJ1cbhkGd2uueNxzv2jDlEeZdU04JQfRnggJQ8DrcVBGjAsCKwFBbDlVNtEMlzw==}
/tiny-lru@11.2.5:
resolution: {integrity: sha512-JpqM0K33lG6iQGKiigcwuURAKZlq6rHXfrgeL4/I8/REoyJTGU+tEMszvT/oTRVHG2OiylhGDjqPp1jWMlr3bw==}
@@ -30822,8 +30287,8 @@ packages:
resolution: {integrity: sha512-lBN9zLN/oAf68o3zNXYrdCt1kP8WsiGW8Oo2ka41b2IM5JL/S1CTyX1rW0mb/zSuJun0ZUrDxx4sqvYS2FWzPA==}
dev: false
- /tinybench@2.6.0:
- resolution: {integrity: sha512-N8hW3PG/3aOoZAN5V/NSAEDz0ZixDSSt5b/a05iqtpgfLWMSVuCo7w0k2vVvEjdrIoeGqZzweX2WlyioNIHchA==}
+ /tinybench@2.5.1:
+ resolution: {integrity: sha512-65NKvSuAVDP/n4CqH+a9w2kTlLReS9vhsAP06MWx+/89nMinJyB2icyl58RIcqCmIggpojIGeuJGhjU1aGMBSg==}
/tinycolor2@1.6.0:
resolution: {integrity: sha512-XPaBkWQJdsf3pLKJV9p4qN/S+fm2Oj8AIPo1BTUhg5oxkvm9+SVEGFdhyOz7tTdUTfvxMiAs4sp6/eZO2Ew+pw==}
@@ -30835,13 +30300,13 @@ packages:
requiresBuild: true
optional: true
- /tinypool@0.8.3:
- resolution: {integrity: sha512-Ud7uepAklqRH1bvwy22ynrliC7Dljz7Tm8M/0RBUW+YRa4YHhZ6e4PpgE+fu1zr/WqB1kbeuVrdfeuyIBpy4tw==}
+ /tinypool@0.8.1:
+ resolution: {integrity: sha512-zBTCK0cCgRROxvs9c0CGK838sPkeokNGdQVUUwHAbynHFlmyJYj825f/oRs528HaIJ97lo0pLIlDUzwN+IorWg==}
engines: {node: '>=14.0.0'}
dev: true
- /tinyspy@2.2.1:
- resolution: {integrity: sha512-KYad6Vy5VDWV4GH3fjpseMQ/XU2BhIYP7Vzd0LG44qRWm/Yt2WCOTicFdvmgo6gWaqooMQCawTtILVQJupKu7A==}
+ /tinyspy@2.2.0:
+ resolution: {integrity: sha512-d2eda04AN/cPOR89F7Xv5bK/jrQEhmcLFe6HFldoeO9AJtps+fqEnh486vnT/8y4bw38pSyxDcTCAq+Ks2aJTg==}
engines: {node: '>=14.0.0'}
/title-case@3.0.3:
@@ -30852,7 +30317,7 @@ packages:
/tmp-promise@3.0.3:
resolution: {integrity: sha512-RwM7MoPojPxsOBYnyd2hy0bxtIlVrihNs9pj5SUvY8Zz1sQcQG2tG1hSr8PDxfgEB8RNKDhqbIlroIarSNDNsQ==}
dependencies:
- tmp: 0.2.3
+ tmp: 0.2.1
dev: false
/tmp@0.0.33:
@@ -30861,9 +30326,11 @@ packages:
dependencies:
os-tmpdir: 1.0.2
- /tmp@0.2.3:
- resolution: {integrity: sha512-nZD7m9iCPC5g0pYmcaxogYKggSfLsdxl8of3Q/oIbqCqLLIO9IAF0GWjX1z9NZRHPiXv8Wex4yDCaZsgEw0Y8w==}
- engines: {node: '>=14.14'}
+ /tmp@0.2.1:
+ resolution: {integrity: sha512-76SUhtfqR2Ijn+xllcI5P1oyannHNHByD80W1q447gU3mp9G9PSpGdWmjUOHRDPiHYacIk66W7ubDTuPF3BEtQ==}
+ engines: {node: '>=8.17.0'}
+ dependencies:
+ rimraf: 3.0.2
/tmpl@1.0.5:
resolution: {integrity: sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==}
@@ -30950,6 +30417,7 @@ packages:
/totalist@3.0.1:
resolution: {integrity: sha512-sf4i37nQ2LBx4m3wB74y+ubopq6W/dIzXg0FDGjsYnZHVa1Da8FH853wlL2gtUhg+xJXjfk3kUZS3BRoQeoQBQ==}
engines: {node: '>=6'}
+ requiresBuild: true
dev: true
/tr46@0.0.3:
@@ -31007,8 +30475,8 @@ packages:
resolution: {integrity: sha512-rvuRbTarPXmMb79SmzEp8aqXNKcK+y0XaB298IXueQ8I2PsrATcPBCSPyK/dDNa2iWOhKlfNnOjdAOTBU/nkFA==}
dev: false
- /trough@2.2.0:
- resolution: {integrity: sha512-tmMpK00BjZiUyVyvrBK7knerNgmgvcV/KLVyuma/SC+TQN167GrMRciANTz09+k3zW8L8t60jWO1GpfkZdjTaw==}
+ /trough@2.1.0:
+ resolution: {integrity: sha512-AqTiAOLcj85xS7vQ8QkAV41hPDIJ71XJB4RCUrzo/1GM2CQwhkJGaf9Hgr7BOugMRpgGUrqRg/DrBDl4H40+8g==}
dev: false
/true-case-path@2.2.1:
@@ -31019,13 +30487,23 @@ packages:
dependencies:
utf8-byte-length: 1.0.4
- /ts-api-utils@1.3.0(typescript@5.3.3):
- resolution: {integrity: sha512-UQMIo7pb8WRomKR1/+MFVLTroIvDVtMX3K6OUir8ynLyzB8Jeriont2bTAtmNPa1ekAgN7YPDyf6V+ygrdU+eQ==}
- engines: {node: '>=16'}
+ /ts-api-utils@1.0.3(typescript@5.3.3):
+ resolution: {integrity: sha512-wNMeqtMz5NtwpT/UZGY5alT+VoKdSsOOP/kqHFcUW1P/VRhH2wJ48+DN2WwUliNbQ976ETwDL0Ifd2VVvgonvg==}
+ engines: {node: '>=16.13.0'}
peerDependencies:
typescript: '>=4.2.0'
dependencies:
typescript: 5.3.3
+ dev: true
+
+ /ts-api-utils@1.0.3(typescript@5.4.2):
+ resolution: {integrity: sha512-wNMeqtMz5NtwpT/UZGY5alT+VoKdSsOOP/kqHFcUW1P/VRhH2wJ48+DN2WwUliNbQ976ETwDL0Ifd2VVvgonvg==}
+ engines: {node: '>=16.13.0'}
+ peerDependencies:
+ typescript: '>=4.2.0'
+ dependencies:
+ typescript: 5.4.2
+ dev: true
/ts-dedent@2.2.0:
resolution: {integrity: sha512-q5W7tVM71e2xjHZTlgfTDoPF/SmqKG5hddq9SzR49CH2hayqRKJtQ4mtRlSxKaJlR/+9rEM+mnBHf7I2/BQcpQ==}
@@ -31056,7 +30534,7 @@ packages:
resolution: {integrity: sha512-PGcnJoTBnVGy6yYNFxWVNkdcAuAMstvutN9MgDJIV6L0oG8fB+ZNNy1T+wJzah8RPGor1mZuPQkVfXNDpy9eHA==}
dev: true
- /ts-node@10.9.2(@types/node@18.19.31)(typescript@5.4.4):
+ /ts-node@10.9.2(@types/node@18.19.17)(typescript@5.4.2):
resolution: {integrity: sha512-f0FFpIdcHgn8zcPSbf1dRevwt047YMnaiJM3u2w2RewrB+fob/zePZcrOyQoLMMO7aBIddLcQIEK5dYjkLnGrQ==}
hasBin: true
peerDependencies:
@@ -31071,18 +30549,18 @@ packages:
optional: true
dependencies:
'@cspotcode/source-map-support': 0.8.1
- '@tsconfig/node10': 1.0.11
+ '@tsconfig/node10': 1.0.9
'@tsconfig/node12': 1.0.11
'@tsconfig/node14': 1.0.3
'@tsconfig/node16': 1.0.4
- '@types/node': 18.19.31
+ '@types/node': 18.19.17
acorn: 8.11.3
acorn-walk: 8.3.2
arg: 4.1.3
create-require: 1.1.1
diff: 4.0.2
make-error: 1.3.6
- typescript: 5.4.4
+ typescript: 5.4.2
v8-compile-cache-lib: 3.0.1
yn: 3.1.1
dev: false
@@ -31097,6 +30575,7 @@ packages:
/tslib@1.14.1:
resolution: {integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==}
+ requiresBuild: true
/tslib@2.4.1:
resolution: {integrity: sha512-tGyy4dAjRIEwI7BzsB0lynWgOpfqjUdq91XXAlIWD2OwKBH7oCl/GZG/HT4BOHrTlPMOASlMQ7veyTqpmRcrNA==}
@@ -31107,8 +30586,9 @@ packages:
/tslib@2.6.2:
resolution: {integrity: sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==}
+ requiresBuild: true
- /tsup@8.0.1(postcss@8.4.38)(typescript@5.3.3):
+ /tsup@8.0.1(typescript@5.3.3):
resolution: {integrity: sha512-hvW7gUSG96j53ZTSlT4j/KL0q1Q2l6TqGBFc6/mu/L46IoNWqLLUzLRLP1R8Q7xrJTmkDxxDoojV5uCVs1sVOg==}
engines: {node: '>=18'}
hasBin: true
@@ -31127,18 +30607,17 @@ packages:
typescript:
optional: true
dependencies:
- bundle-require: 4.0.2(esbuild@0.19.12)
+ bundle-require: 4.0.2(esbuild@0.19.11)
cac: 6.7.14
- chokidar: 3.6.0
+ chokidar: 3.5.3
debug: 4.3.4
- esbuild: 0.19.12
+ esbuild: 0.19.11
execa: 5.1.1
globby: 11.1.0
joycon: 3.1.1
- postcss: 8.4.38
- postcss-load-config: 4.0.2(postcss@8.4.38)
+ postcss-load-config: 4.0.2
resolve-from: 5.0.0
- rollup: 4.14.1
+ rollup: 4.9.2
source-map: 0.8.0-beta.0
sucrase: 3.35.0
tree-kill: 1.2.2
@@ -31151,36 +30630,33 @@ packages:
/tsutils@3.21.0(typescript@4.9.5):
resolution: {integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==}
engines: {node: '>= 6'}
+ requiresBuild: true
peerDependencies:
typescript: '>=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta'
dependencies:
tslib: 1.14.1
typescript: 4.9.5
+ dev: false
/tsutils@3.21.0(typescript@5.3.3):
resolution: {integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==}
engines: {node: '>= 6'}
+ requiresBuild: true
peerDependencies:
typescript: '>=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta'
dependencies:
tslib: 1.14.1
typescript: 5.3.3
- /tsutils@3.21.0(typescript@5.4.4):
+ /tsutils@3.21.0(typescript@5.4.2):
resolution: {integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==}
engines: {node: '>= 6'}
+ requiresBuild: true
peerDependencies:
typescript: '>=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta'
dependencies:
tslib: 1.14.1
- typescript: 5.4.4
- dev: false
-
- /tunnel-agent@0.6.0:
- resolution: {integrity: sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==}
- dependencies:
- safe-buffer: 5.2.1
- dev: false
+ typescript: 5.4.2
/turbo-combine-reducers@1.0.2:
resolution: {integrity: sha512-gHbdMZlA6Ym6Ur5pSH/UWrNQMIM9IqTH6SoL1DbHpqEdQ8i+cFunSmSlFykPt0eGQwZ4d/XTHOl74H0/kFBVWw==}
@@ -31249,12 +30725,14 @@ packages:
/type-check@0.4.0:
resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==}
engines: {node: '>= 0.8.0'}
+ requiresBuild: true
dependencies:
prelude-ls: 1.2.1
/type-detect@4.0.8:
resolution: {integrity: sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==}
engines: {node: '>=4'}
+ requiresBuild: true
/type-fest@0.13.1:
resolution: {integrity: sha512-34R7HTnG0XIJcBSn5XhDd7nNFPRcXYRZrBB2O2jdKqYODldSzBAqzsWoZYYvduky73toYS/ESqxPvkDf/F0XMg==}
@@ -31274,6 +30752,7 @@ packages:
/type-fest@0.20.2:
resolution: {integrity: sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==}
engines: {node: '>=10'}
+ requiresBuild: true
/type-fest@0.21.3:
resolution: {integrity: sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==}
@@ -31296,6 +30775,11 @@ packages:
resolution: {integrity: sha512-RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA==}
engines: {node: '>=12.20'}
+ /type-fest@3.13.1:
+ resolution: {integrity: sha512-tLq3bSNx+xSpwvAJnzrK0Ep5CLNWjvFTOp71URMaAEWBfRb9nnJiBoUe0tF8bI4ZFO3omgBR6NvnbzVUT3Ly4g==}
+ engines: {node: '>=14.16'}
+ dev: true
+
/type-fest@4.15.0:
resolution: {integrity: sha512-tB9lu0pQpX5KJq54g+oHOLumOx+pMep4RaM6liXh2PKmVRFF+/vAtUP0ZaJ0kOySfVNjF6doBWPHhBhISKdlIA==}
engines: {node: '>=16'}
@@ -31311,48 +30795,49 @@ packages:
/type-of@2.0.1:
resolution: {integrity: sha512-39wxbwHdQ2sTiBB8wAzKfQ9GN+om8w+sjNWzr+vZJR5AMD5J+J7Yc8AtXnU9r/r2c8XiDZ/smxutDmZehX/qpQ==}
+ /type@1.2.0:
+ resolution: {integrity: sha512-+5nt5AAniqsCnu2cEQQdpzCAh33kVx8n0VoFidKpB1dVVLAN/F+bgVOqOJqOnEnrhp222clB5p3vUlD+1QAnfg==}
+
/type@2.7.2:
resolution: {integrity: sha512-dzlvlNlt6AXU7EBSfpAscydQ7gXB+pPGsPnfJnZpiNJBDj7IaJzQlBZYGdEi4R9HmPdBv2XmWJ6YUtoTa7lmCw==}
- /typed-array-buffer@1.0.2:
- resolution: {integrity: sha512-gEymJYKZtKXzzBzM4jqa9w6Q1Jjm7x2d+sh19AdsD4wqnMPDYyvwpsIc2Q/835kHuo3BEQ7CjelGhfTsoBb2MQ==}
+ /typed-array-buffer@1.0.0:
+ resolution: {integrity: sha512-Y8KTSIglk9OZEr8zywiIHG/kmQ7KWyjseXs1CbSo8vC42w7hg2HgYTxSWwP0+is7bWDc1H+Fo026CpHFwm8tkw==}
engines: {node: '>= 0.4'}
+ requiresBuild: true
dependencies:
- call-bind: 1.0.7
- es-errors: 1.3.0
- is-typed-array: 1.1.13
+ call-bind: 1.0.5
+ get-intrinsic: 1.2.2
+ is-typed-array: 1.1.12
- /typed-array-byte-length@1.0.1:
- resolution: {integrity: sha512-3iMJ9q0ao7WE9tWcaYKIptkNBuOIcZCCT0d4MRvuuH88fEoEH62IuQe0OtraD3ebQEoTRk8XCBoknUNc1Y67pw==}
+ /typed-array-byte-length@1.0.0:
+ resolution: {integrity: sha512-Or/+kvLxNpeQ9DtSydonMxCx+9ZXOswtwJn17SNLvhptaXYDJvkFFP5zbfU/uLmvnBJlI4yrnXRxpdWH/M5tNA==}
engines: {node: '>= 0.4'}
+ requiresBuild: true
dependencies:
- call-bind: 1.0.7
+ call-bind: 1.0.5
for-each: 0.3.3
- gopd: 1.0.1
- has-proto: 1.0.3
- is-typed-array: 1.1.13
+ has-proto: 1.0.1
+ is-typed-array: 1.1.12
- /typed-array-byte-offset@1.0.2:
- resolution: {integrity: sha512-Ous0vodHa56FviZucS2E63zkgtgrACj7omjwd/8lTEMEPFFyjfixMZ1ZXenpgCFBBt4EC1J2XsyVS2gkG0eTFA==}
+ /typed-array-byte-offset@1.0.0:
+ resolution: {integrity: sha512-RD97prjEt9EL8YgAgpOkf3O4IF9lhJFr9g0htQkm0rchFp/Vx7LW5Q8fSXXub7BXAODyUQohRMyOc3faCPd0hg==}
engines: {node: '>= 0.4'}
+ requiresBuild: true
dependencies:
- available-typed-arrays: 1.0.7
- call-bind: 1.0.7
+ available-typed-arrays: 1.0.5
+ call-bind: 1.0.5
for-each: 0.3.3
- gopd: 1.0.1
- has-proto: 1.0.3
- is-typed-array: 1.1.13
+ has-proto: 1.0.1
+ is-typed-array: 1.1.12
- /typed-array-length@1.0.6:
- resolution: {integrity: sha512-/OxDN6OtAk5KBpGb28T+HZc2M+ADtvRxXrKKbUwtsLgdoxgX13hyy7ek6bFRl5+aBs2yZzB0c4CnQfAtVypW/g==}
- engines: {node: '>= 0.4'}
+ /typed-array-length@1.0.4:
+ resolution: {integrity: sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==}
+ requiresBuild: true
dependencies:
- call-bind: 1.0.7
+ call-bind: 1.0.5
for-each: 0.3.3
- gopd: 1.0.1
- has-proto: 1.0.3
- is-typed-array: 1.1.13
- possible-typed-array-names: 1.0.0
+ is-typed-array: 1.1.12
/typedarray-to-buffer@3.1.5:
resolution: {integrity: sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==}
@@ -31366,22 +30851,25 @@ packages:
resolution: {integrity: sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g==}
engines: {node: '>=4.2.0'}
hasBin: true
+ dev: false
/typescript@5.3.3:
resolution: {integrity: sha512-pXWcraxM0uxAS+tN0AG/BF2TyqmHO014Z070UsJ+pFvYuRSq8KH8DmWpnbXe0pEPDHXZV3FcAbJkijJ5oNEnWw==}
engines: {node: '>=14.17'}
hasBin: true
+ requiresBuild: true
- /typescript@5.4.4:
- resolution: {integrity: sha512-dGE2Vv8cpVvw28v8HCPqyb08EzbBURxDpuhJvTrusShUfGnhHBafDsLdS1EhhxyL6BJQE+2cT3dDPAv+MQ6oLw==}
+ /typescript@5.4.2:
+ resolution: {integrity: sha512-+2/g0Fds1ERlP6JsakQQDXjZdZMM+rqpamFZJEKh4kwTIn3iDkgKtby0CeNd5ATNZ4Ry1ax15TMx0W2V+miizQ==}
engines: {node: '>=14.17'}
hasBin: true
+ requiresBuild: true
/ua-parser-js@1.0.37:
resolution: {integrity: sha512-bhTyI94tZofjo+Dn8SN6Zv8nBDvyXTymAdM3LDI/0IboIUwTu1rEhW7v2TfiVsoYWgkQ4kOVqnI8APUFbIQIFQ==}
- /ufo@1.5.3:
- resolution: {integrity: sha512-Y7HYmWaFwPUmkoQCUIAYpKqkOf+SbVj/2fJJZ4RJMCfZp0rTGwRbzQD+HghfnhKOjL9E01okqz+ncJskGYfBNw==}
+ /ufo@1.4.0:
+ resolution: {integrity: sha512-Hhy+BhRBleFjpJ2vchUNN40qgkh0366FWJGqVLYBHev0vpHTrXSA0ryT+74UiW6KWsldNurQMKGqCm1M2zBciQ==}
/uglify-js@3.17.4:
resolution: {integrity: sha512-T9q82TJI9e/C1TAxYvfb16xO120tMVFZrGA3f9/P4424DNu6ypK103y0GPFVa17yotwSyZW5iYXgjYHkGrJW/g==}
@@ -31405,8 +30893,9 @@ packages:
/unbox-primitive@1.0.2:
resolution: {integrity: sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==}
+ requiresBuild: true
dependencies:
- call-bind: 1.0.7
+ call-bind: 1.0.5
has-bigints: 1.0.2
has-symbols: 1.0.3
which-boxed-primitive: 1.0.2
@@ -31435,7 +30924,7 @@ packages:
consola: 3.2.3
defu: 6.1.4
mime: 3.0.0
- node-fetch-native: 1.6.4
+ node-fetch-native: 1.6.1
pathe: 1.1.2
dev: false
@@ -31483,10 +30972,23 @@ packages:
extend: 3.0.2
is-buffer: 2.0.5
is-plain-obj: 4.1.0
- trough: 2.2.0
+ trough: 2.1.0
vfile: 5.3.7
dev: false
+ /unified@7.1.0:
+ resolution: {integrity: sha512-lbk82UOIGuCEsZhPj8rNAkXSDXd6p0QLzIuSsCdxrqnqU56St4eyOB+AlXsVgVeRmetPTYydIuvFfpDIed8mqw==}
+ dependencies:
+ '@types/unist': 2.0.10
+ '@types/vfile': 3.0.2
+ bail: 1.0.5
+ extend: 3.0.2
+ is-plain-obj: 1.1.0
+ trough: 1.0.5
+ vfile: 3.0.1
+ x-is-string: 0.1.0
+ dev: false
+
/unified@9.2.2:
resolution: {integrity: sha512-Sg7j110mtefBD+qunSLO1lqOEKdrwBFBrR6Qd8f4uwkhWNlbkaqwHse6e7QvD3AP/MNoJdEDLaf8OxYyoWgorQ==}
dependencies:
@@ -31591,6 +31093,10 @@ packages:
unist-util-visit: 1.4.1
dev: false
+ /unist-util-stringify-position@1.1.2:
+ resolution: {integrity: sha512-pNCVrk64LZv1kElr0N1wPiHEUoXNVFERp+mlTg/s9R5Lwg87f9bM/3sQB99w+N9D/qnM9ar3+AKDBwo/gm/iQQ==}
+ dev: false
+
/unist-util-stringify-position@2.0.3:
resolution: {integrity: sha512-3faScn5I+hy9VleOq/qNbAd6pAx7iH5jYBMS9I1HgQVijz/4mv5Bvw5iw1sC/90CODiKo81G/ps8AJrISn687g==}
dependencies:
@@ -31603,6 +31109,12 @@ packages:
'@types/unist': 2.0.10
dev: false
+ /unist-util-stringify-position@4.0.0:
+ resolution: {integrity: sha512-0ASV06AAoKCDkS2+xw5RXJywruurpbC4JZSm7nr7MOt1ojAzvyyaO+UxZf18j8FCF6kmzCZKcAgN/yu2gm2XgQ==}
+ dependencies:
+ '@types/unist': 3.0.2
+ dev: false
+
/unist-util-visit-parents@2.1.2:
resolution: {integrity: sha512-DyN5vD4NE3aSeB+PXYNKxzGsfocxp6asDc2XXE3b0ekO2BaRUpBicbbUygfSvYfUz1IkmjFR1YF7dPklraMZ2g==}
dependencies:
@@ -31657,7 +31169,7 @@ packages:
requiresBuild: true
dependencies:
bindings: 1.5.0
- nan: 2.19.0
+ nan: 2.18.0
dev: false
optional: true
@@ -31671,12 +31183,11 @@ packages:
resolution: {integrity: sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==}
engines: {node: '>= 0.8'}
- /unplugin@1.10.1:
- resolution: {integrity: sha512-d6Mhq8RJeGA8UfKCu54Um4lFA0eSaRa3XxdAJg8tIdxbu1ubW0hBCZUL7yI2uGyYCRndvbK8FLHzqy2XKfeMsg==}
- engines: {node: '>=14.0.0'}
+ /unplugin@1.6.0:
+ resolution: {integrity: sha512-BfJEpWBu3aE/AyHx8VaNE/WgouoQxgH9baAiH82JjX8cqVyi3uJQstqwD5J+SZxIK326SZIhsSZlALXVBCknTQ==}
dependencies:
acorn: 8.11.3
- chokidar: 3.6.0
+ chokidar: 3.5.3
webpack-sources: 3.2.3
webpack-virtual-modules: 0.6.1
dev: true
@@ -31689,22 +31200,21 @@ packages:
isobject: 3.0.1
dev: false
- /unstorage@1.10.2(@netlify/blobs@7.0.1):
- resolution: {integrity: sha512-cULBcwDqrS8UhlIysUJs2Dk0Mmt8h7B0E6mtR+relW9nZvsf/u4SkAYyNliPiPW7XtFNb5u3IUMkxGxFTTRTgQ==}
+ /unstorage@1.10.1(@netlify/blobs@7.0.1):
+ resolution: {integrity: sha512-rWQvLRfZNBpF+x8D3/gda5nUCQL2PgXy2jNG4U7/Rc9BGEv9+CAJd0YyGCROUBKs9v49Hg8huw3aih5Bf5TAVw==}
peerDependencies:
- '@azure/app-configuration': ^1.5.0
+ '@azure/app-configuration': ^1.4.1
'@azure/cosmos': ^4.0.0
'@azure/data-tables': ^13.2.2
- '@azure/identity': ^4.0.1
- '@azure/keyvault-secrets': ^4.8.0
- '@azure/storage-blob': ^12.17.0
- '@capacitor/preferences': ^5.0.7
- '@netlify/blobs': ^6.5.0 || ^7.0.0
- '@planetscale/database': ^1.16.0
- '@upstash/redis': ^1.28.4
- '@vercel/kv': ^1.0.1
+ '@azure/identity': ^3.3.2
+ '@azure/keyvault-secrets': ^4.7.0
+ '@azure/storage-blob': ^12.16.0
+ '@capacitor/preferences': ^5.0.6
+ '@netlify/blobs': ^6.2.0
+ '@planetscale/database': ^1.11.0
+ '@upstash/redis': ^1.23.4
+ '@vercel/kv': ^0.2.3
idb-keyval: ^6.2.1
- ioredis: ^5.3.2
peerDependenciesMeta:
'@azure/app-configuration':
optional: true
@@ -31730,21 +31240,21 @@ packages:
optional: true
idb-keyval:
optional: true
- ioredis:
- optional: true
dependencies:
'@netlify/blobs': 7.0.1
anymatch: 3.1.3
- chokidar: 3.6.0
+ chokidar: 3.5.3
destr: 2.0.3
h3: 1.11.1
+ ioredis: 5.3.2
listhen: 1.7.2
- lru-cache: 10.2.0
+ lru-cache: 10.1.0
mri: 1.2.0
- node-fetch-native: 1.6.4
- ofetch: 1.3.4
- ufo: 1.5.3
+ node-fetch-native: 1.6.1
+ ofetch: 1.3.3
+ ufo: 1.4.0
transitivePeerDependencies:
+ - supports-color
- uWebSockets.js
dev: false
@@ -31767,14 +31277,14 @@ packages:
pathe: 1.1.2
dev: false
- /update-browserslist-db@1.0.13(browserslist@4.23.0):
+ /update-browserslist-db@1.0.13(browserslist@4.22.2):
resolution: {integrity: sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==}
hasBin: true
peerDependencies:
browserslist: '>= 4.21.0'
dependencies:
- browserslist: 4.23.0
- escalade: 3.1.2
+ browserslist: 4.22.2
+ escalade: 3.1.1
picocolors: 1.0.0
/update-check@1.5.4:
@@ -31789,7 +31299,7 @@ packages:
engines: {node: '>=14.16'}
dependencies:
boxen: 7.1.1
- chalk: 5.2.0
+ chalk: 5.3.0
configstore: 6.0.0
has-yarn: 3.0.0
import-lazy: 4.0.0
@@ -31799,7 +31309,7 @@ packages:
is-yarn-global: 0.4.1
latest-version: 7.0.0
pupa: 3.1.0
- semver: 7.6.0
+ semver: 7.5.4
semver-diff: 4.0.0
xdg-basedir: 5.1.0
dev: false
@@ -31820,6 +31330,7 @@ packages:
/uri-js@4.4.1:
resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==}
+ requiresBuild: true
dependencies:
punycode: 2.3.1
@@ -31832,7 +31343,7 @@ packages:
resolution: {integrity: sha512-jk1+QP6ZJqyOiuEI9AEWQfju/nB2Pw466kbA0LEZljHwKeMgd9WrAEgEGxjPDD2+TNbbb37rTyhEfrCXfuKXnA==}
dev: false
- /url-loader@4.1.1(file-loader@6.2.0)(webpack@5.91.0):
+ /url-loader@4.1.1(file-loader@6.2.0)(webpack@5.89.0):
resolution: {integrity: sha512-3BTV812+AVHHOJQO8O5MkWgZ5aosP7GnROJwvzLS9hWDj00lZ6Z0wNak423Lp9PBZN05N+Jk/N5Si8jRAlGyWA==}
engines: {node: '>= 10.13.0'}
peerDependencies:
@@ -31842,27 +31353,27 @@ packages:
file-loader:
optional: true
dependencies:
- file-loader: 6.2.0(webpack@5.91.0)
+ file-loader: 6.2.0(webpack@5.89.0)
loader-utils: 2.0.4
mime-types: 2.1.35
schema-utils: 3.3.0
- webpack: 5.91.0(esbuild@0.19.12)
+ webpack: 5.89.0
/url@0.11.3:
resolution: {integrity: sha512-6hxOLGfZASQK/cijlZnZJTq8OXAkt/3YGfQX45vvMYXpZoo8NdWZcY73K108Jf759lS1Bv/8wXnHDTSz17dSRw==}
dependencies:
punycode: 1.4.1
- qs: 6.12.0
+ qs: 6.11.2
dev: false
- /urlpattern-polyfill@10.0.0:
- resolution: {integrity: sha512-H/A06tKD7sS1O1X2SshBVeA5FLycRpjqiBeqGKmBwBDBy28EnRjORxTNe269KSSr5un5qyWi1iL61wLxpd+ZOg==}
-
/urlpattern-polyfill@8.0.2:
resolution: {integrity: sha512-Qp95D4TPJl1kC9SKigDcqgyM2VDVO4RiJc2d4qe5GrYm+zbIQCWWKAFaJNQ4BhdFeDGwBmAxqJBwWSJDb9T3BQ==}
- /use-callback-ref@1.3.2(@types/react@18.2.46)(react@18.2.0):
- resolution: {integrity: sha512-elOQwe6Q8gqZgDA8mrh44qRTQqpIHDcZ3hXTLjBe1i4ph8XpNJnO+aQf3NaG+lriLopI4HMx9VjQLfPQ6vhnoA==}
+ /urlpattern-polyfill@9.0.0:
+ resolution: {integrity: sha512-WHN8KDQblxd32odxeIgo83rdVDE2bvdkb86it7bMhYZwWKJz0+O0RK/eZiHYnM+zgt/U7hAHOlCQGfjjvSkw2g==}
+
+ /use-callback-ref@1.3.1(@types/react@18.2.46)(react@18.2.0):
+ resolution: {integrity: sha512-Lg4Vx1XZQauB42Hw3kK7JM6yjVjgFmFC5/Ab797s79aARomD2nEErc4mCgM8EZrARLmmbWpi5DGCadmK50DcAQ==}
engines: {node: '>=10'}
peerDependencies:
'@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0
@@ -31874,7 +31385,6 @@ packages:
'@types/react': 18.2.46
react: 18.2.0
tslib: 2.6.2
- dev: true
/use-composed-ref@1.3.0(react@18.2.0):
resolution: {integrity: sha512-GLMG0Jc/jiKov/3Ulid1wbv3r54K9HlMW29IWcDFPEqFkSO2nS0MuefWgMJpeHQ9YJeXDL3ZUF+P3jdXlZX/cQ==}
@@ -31944,7 +31454,6 @@ packages:
detect-node-es: 1.1.0
react: 18.2.0
tslib: 2.6.2
- dev: true
/use-sync-external-store@1.2.0(react@18.2.0):
resolution: {integrity: sha512-eEgnFxGQ1Ife9bzYs6VLi8/4X6CObHMw9Qr9tPY43iKwsPw8xE8+EFsf/2cFZ5S3esXgpWgtSCtLNS41F+sKPA==}
@@ -31971,15 +31480,15 @@ packages:
inherits: 2.0.4
is-arguments: 1.1.1
is-generator-function: 1.0.10
- is-typed-array: 1.1.13
- which-typed-array: 1.1.15
+ is-typed-array: 1.1.12
+ which-typed-array: 1.1.13
dev: true
/utila@0.4.0:
resolution: {integrity: sha512-Z0DbgELS9/L/75wZbro8xAnT50pBVFQZ+hUEueGDU5FN51YSCYM+jdxsfCiHjwNP/4LCDD0i/graKpeBnOXKRA==}
- /utility-types@3.11.0:
- resolution: {integrity: sha512-6Z7Ma2aVEWisaL6TvBCy7P8rm2LQoPv6dJ7ecIaIixHcwfbJ0x7mWdbcwlIM5IGQxPZSFYeqRCqlOOeKoJYMkw==}
+ /utility-types@3.10.0:
+ resolution: {integrity: sha512-O11mqxmi7wMKCo6HKFt5AhO4BwY3VV68YU07tgxfz8zJTIxr4BpsezN49Ffwy9j3ZpwwJp4fkRwjRzq3uWE6Rg==}
engines: {node: '>= 4'}
/utils-merge@1.0.1:
@@ -31998,7 +31507,6 @@ packages:
/uuid@9.0.1:
resolution: {integrity: sha512-b+1eJOlsR9K8HJpow9Ok3fiWOWSIcIzXodvv0rQjVoOVNpWMpxf1wZNpt4y9h10odCNrqnYp1OBzRktckBe3sA==}
hasBin: true
- dev: true
/uvu@0.5.6:
resolution: {integrity: sha512-+g8ENReyr8YsOc6fv/NVJs2vFdHBnBNdfE49rshrTzDWOlUx4Gq7KOS2GD8eqhy2j+Ejq29+SbKH8yjkAqXqoA==}
@@ -32006,7 +31514,7 @@ packages:
hasBin: true
dependencies:
dequal: 2.0.3
- diff: 5.2.0
+ diff: 5.1.0
kleur: 4.1.5
sade: 1.8.1
dev: false
@@ -32022,7 +31530,7 @@ packages:
resolution: {integrity: sha512-/EH/sDgxU2eGxajKdwLCDmQ4FWq+kpi3uCmBGpw1xJtnAxEjlD8j8PEiGWpCIMIs3ciNAgH0d3TTJiUkYzyZjA==}
engines: {node: '>=10.12.0'}
dependencies:
- '@jridgewell/trace-mapping': 0.3.25
+ '@jridgewell/trace-mapping': 0.3.20
'@types/istanbul-lib-coverage': 2.0.6
convert-source-map: 2.0.0
dev: true
@@ -32031,6 +31539,10 @@ packages:
resolution: {integrity: sha512-QQDsV8OnSf5Uc30CKSwG9lnhMPe6exHtTXLRYX8uMwKENy640pU+2BgBL0LRbDh/eYRahNCS7aewCx0wf3NYVA==}
dev: false
+ /validate-color@2.2.4:
+ resolution: {integrity: sha512-Znolz+b6CwW6eBXYld7MFM3O7funcdyRfjKC/X9hqYV/0VcC5LB/L45mff7m3dIn9wdGdNOAQ/fybNuD5P/HDw==}
+ dev: false
+
/validate-npm-package-license@3.0.4:
resolution: {integrity: sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==}
dependencies:
@@ -32041,7 +31553,7 @@ packages:
resolution: {integrity: sha512-mzR0L8ZDktZjpX4OB46KT+56MAhl4EIazWP/+G/HPGuvfdaqg4YsCdtOm6U9+LOFyYDoh4dpnpxZRB9MQQns5Q==}
engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0}
dependencies:
- builtins: 5.1.0
+ builtins: 5.0.1
dev: false
/validator@13.11.0:
@@ -32072,6 +31584,12 @@ packages:
vfile: 5.3.7
dev: false
+ /vfile-message@1.1.1:
+ resolution: {integrity: sha512-1WmsopSGhWt5laNir+633LszXvZ+Z/lxveBf6yhGsqnQIhlhzooZae7zV6YVM1Sdkw68dtAW3ow0pOdPANugvA==}
+ dependencies:
+ unist-util-stringify-position: 1.1.2
+ dev: false
+
/vfile-message@2.0.4:
resolution: {integrity: sha512-DjssxRGkMvifUOJre00juHoP9DPWuzjxKuMDrhNbk2TdaYYBNMStsNhEOt3idrtI12VQYM/1+iM0KOzXi4pxwQ==}
dependencies:
@@ -32086,6 +31604,22 @@ packages:
unist-util-stringify-position: 3.0.3
dev: false
+ /vfile-message@4.0.2:
+ resolution: {integrity: sha512-jRDZ1IMLttGj41KcZvlrYAaI3CfqpLpfpf+Mfig13viT6NKvRzWZ+lXz0Y5D60w6uJIBAOGq9mSHf0gktF0duw==}
+ dependencies:
+ '@types/unist': 3.0.2
+ unist-util-stringify-position: 4.0.0
+ dev: false
+
+ /vfile@3.0.1:
+ resolution: {integrity: sha512-y7Y3gH9BsUSdD4KzHsuMaCzRjglXN0W2EcMf0gpvu6+SbsGhMje7xDc8AEoeXy6mIwCKMI6BkjMsRjzQbhMEjQ==}
+ dependencies:
+ is-buffer: 2.0.5
+ replace-ext: 1.0.0
+ unist-util-stringify-position: 1.1.2
+ vfile-message: 1.1.1
+ dev: false
+
/vfile@4.2.1:
resolution: {integrity: sha512-O6AE4OskCG5S1emQ/4gl8zK586RqA3srz3nfK/Viy0UPToBc5Trp9BVFb1u0CjsKrAWwnpr4ifM/KBXPWwJbCA==}
dependencies:
@@ -32114,31 +31648,7 @@ packages:
- rollup
dev: true
- /vite-node@0.34.6(@types/node@18.0.0):
- resolution: {integrity: sha512-nlBMJ9x6n7/Amaz6F3zJ97EBwR2FkzhBRxF5e+jE6LA3yi6Wtc2lyTij1OnDMIr34v5g/tVQtsVAzhT0jc5ygA==}
- engines: {node: '>=v14.18.0'}
- hasBin: true
- requiresBuild: true
- dependencies:
- cac: 6.7.14
- debug: 4.3.4
- mlly: 1.6.1
- pathe: 1.1.2
- picocolors: 1.0.0
- vite: 5.2.8(@types/node@18.0.0)
- transitivePeerDependencies:
- - '@types/node'
- - less
- - lightningcss
- - sass
- - stylus
- - sugarss
- - supports-color
- - terser
- dev: false
- optional: true
-
- /vite-node@0.34.6(@types/node@18.19.31):
+ /vite-node@0.34.6(@types/node@18.19.17):
resolution: {integrity: sha512-nlBMJ9x6n7/Amaz6F3zJ97EBwR2FkzhBRxF5e+jE6LA3yi6Wtc2lyTij1OnDMIr34v5g/tVQtsVAzhT0jc5ygA==}
engines: {node: '>=v14.18.0'}
hasBin: true
@@ -32149,7 +31659,7 @@ packages:
mlly: 1.6.1
pathe: 1.1.2
picocolors: 1.0.0
- vite: 5.2.8(@types/node@18.19.31)
+ vite: 5.0.10(@types/node@18.19.17)
transitivePeerDependencies:
- '@types/node'
- less
@@ -32161,16 +31671,16 @@ packages:
- terser
optional: true
- /vite-node@1.1.1(@types/node@18.0.0):
+ /vite-node@1.1.1(@types/node@18.19.17):
resolution: {integrity: sha512-2bGE5w4jvym5v8llF6Gu1oBrmImoNSs4WmRVcavnG2me6+8UQntTqLiAMFyiAobp+ZXhj5ZFhI7SmLiFr/jrow==}
engines: {node: ^18.0.0 || >=20.0.0}
hasBin: true
dependencies:
cac: 6.7.14
debug: 4.3.4
- pathe: 1.1.2
+ pathe: 1.1.1
picocolors: 1.0.0
- vite: 5.2.8(@types/node@18.0.0)
+ vite: 5.0.10(@types/node@18.19.17)
transitivePeerDependencies:
- '@types/node'
- less
@@ -32182,16 +31692,16 @@ packages:
- terser
dev: true
- /vite-node@1.1.1(@types/node@18.19.31):
+ /vite-node@1.1.1(@types/node@18.19.4):
resolution: {integrity: sha512-2bGE5w4jvym5v8llF6Gu1oBrmImoNSs4WmRVcavnG2me6+8UQntTqLiAMFyiAobp+ZXhj5ZFhI7SmLiFr/jrow==}
engines: {node: ^18.0.0 || >=20.0.0}
hasBin: true
dependencies:
cac: 6.7.14
debug: 4.3.4
- pathe: 1.1.2
+ pathe: 1.1.1
picocolors: 1.0.0
- vite: 5.2.8(@types/node@18.19.31)
+ vite: 5.0.10(@types/node@18.19.4)
transitivePeerDependencies:
- '@types/node'
- less
@@ -32218,7 +31728,7 @@ packages:
resolution: {integrity: sha512-p4D8CFVhZS412SyQX125qxyzOgIFouwOcvjZWk6bQbNPR1wtaEzFT6jZxAjf1dejlGqa6fqHcuCvQea6EWUkUA==}
dev: true
- /vite@5.0.10(@types/node@18.0.0):
+ /vite@5.0.10(@types/node@18.19.17):
resolution: {integrity: sha512-2P8J7WWgmc355HUMlFrwofacvr98DAjoE52BfdbwQtyLH06XKwaL/FMnmKM2crF0iX4MpmMKoDlNCB1ok7zHCw==}
engines: {node: ^18.0.0 || >=20.0.0}
hasBin: true
@@ -32246,15 +31756,14 @@ packages:
terser:
optional: true
dependencies:
- '@types/node': 18.0.0
- esbuild: 0.19.12
- postcss: 8.4.38
- rollup: 4.14.1
+ '@types/node': 18.19.17
+ esbuild: 0.19.11
+ postcss: 8.4.32
+ rollup: 4.9.2
optionalDependencies:
fsevents: 2.3.3
- dev: true
- /vite@5.0.10(@types/node@18.19.31):
+ /vite@5.0.10(@types/node@18.19.4):
resolution: {integrity: sha512-2P8J7WWgmc355HUMlFrwofacvr98DAjoE52BfdbwQtyLH06XKwaL/FMnmKM2crF0iX4MpmMKoDlNCB1ok7zHCw==}
engines: {node: ^18.0.0 || >=20.0.0}
hasBin: true
@@ -32282,84 +31791,14 @@ packages:
terser:
optional: true
dependencies:
- '@types/node': 18.19.31
- esbuild: 0.19.12
+ '@types/node': 18.19.4
+ esbuild: 0.19.11
postcss: 8.4.32
- rollup: 4.14.1
+ rollup: 4.9.2
optionalDependencies:
fsevents: 2.3.3
dev: true
- /vite@5.2.8(@types/node@18.0.0):
- resolution: {integrity: sha512-OyZR+c1CE8yeHw5V5t59aXsUPPVTHMDjEZz8MgguLL/Q7NblxhZUlTu9xSPqlsUO/y+X7dlU05jdhvyycD55DA==}
- engines: {node: ^18.0.0 || >=20.0.0}
- hasBin: true
- peerDependencies:
- '@types/node': ^18.0.0 || >=20.0.0
- less: '*'
- lightningcss: ^1.21.0
- sass: '*'
- stylus: '*'
- sugarss: '*'
- terser: ^5.4.0
- peerDependenciesMeta:
- '@types/node':
- optional: true
- less:
- optional: true
- lightningcss:
- optional: true
- sass:
- optional: true
- stylus:
- optional: true
- sugarss:
- optional: true
- terser:
- optional: true
- dependencies:
- '@types/node': 18.0.0
- esbuild: 0.20.2
- postcss: 8.4.38
- rollup: 4.14.1
- optionalDependencies:
- fsevents: 2.3.3
-
- /vite@5.2.8(@types/node@18.19.31):
- resolution: {integrity: sha512-OyZR+c1CE8yeHw5V5t59aXsUPPVTHMDjEZz8MgguLL/Q7NblxhZUlTu9xSPqlsUO/y+X7dlU05jdhvyycD55DA==}
- engines: {node: ^18.0.0 || >=20.0.0}
- hasBin: true
- peerDependencies:
- '@types/node': ^18.0.0 || >=20.0.0
- less: '*'
- lightningcss: ^1.21.0
- sass: '*'
- stylus: '*'
- sugarss: '*'
- terser: ^5.4.0
- peerDependenciesMeta:
- '@types/node':
- optional: true
- less:
- optional: true
- lightningcss:
- optional: true
- sass:
- optional: true
- stylus:
- optional: true
- sugarss:
- optional: true
- terser:
- optional: true
- dependencies:
- '@types/node': 18.19.31
- esbuild: 0.20.2
- postcss: 8.4.38
- rollup: 4.14.1
- optionalDependencies:
- fsevents: 2.3.3
-
/vitest@0.34.6:
resolution: {integrity: sha512-+5CALsOvbNKnS+ZHMXtuUC7nL8/7F1F2DnHGjSsszX8zCjWSSviphCb/NuS9Nzf4Q03KyyDRBAXhF/8lffME4Q==}
engines: {node: '>=v14.18.0'}
@@ -32392,9 +31831,9 @@ packages:
webdriverio:
optional: true
dependencies:
- '@types/chai': 4.3.14
+ '@types/chai': 4.3.11
'@types/chai-subset': 1.3.5
- '@types/node': 18.0.0
+ '@types/node': 18.19.17
'@vitest/expect': 0.34.6
'@vitest/runner': 0.34.6
'@vitest/snapshot': 0.34.6
@@ -32403,18 +31842,18 @@ packages:
acorn: 8.11.3
acorn-walk: 8.3.2
cac: 6.7.14
- chai: 4.4.1
+ chai: 4.3.10
debug: 4.3.4
local-pkg: 0.4.3
- magic-string: 0.30.9
+ magic-string: 0.30.5
pathe: 1.1.2
picocolors: 1.0.0
std-env: 3.7.0
strip-literal: 1.3.0
- tinybench: 2.6.0
+ tinybench: 2.5.1
tinypool: 0.7.0
- vite: 5.2.8(@types/node@18.0.0)
- vite-node: 0.34.6(@types/node@18.0.0)
+ vite: 5.0.10(@types/node@18.19.17)
+ vite-node: 0.34.6(@types/node@18.19.17)
why-is-node-running: 2.2.2
transitivePeerDependencies:
- less
@@ -32459,9 +31898,9 @@ packages:
webdriverio:
optional: true
dependencies:
- '@types/chai': 4.3.14
+ '@types/chai': 4.3.11
'@types/chai-subset': 1.3.5
- '@types/node': 18.19.31
+ '@types/node': 18.19.17
'@vitest/expect': 0.34.6
'@vitest/runner': 0.34.6
'@vitest/snapshot': 0.34.6
@@ -32470,19 +31909,19 @@ packages:
acorn: 8.11.3
acorn-walk: 8.3.2
cac: 6.7.14
- chai: 4.4.1
+ chai: 4.3.10
debug: 4.3.4
happy-dom: 12.10.3
local-pkg: 0.4.3
- magic-string: 0.30.9
+ magic-string: 0.30.5
pathe: 1.1.2
picocolors: 1.0.0
std-env: 3.7.0
strip-literal: 1.3.0
- tinybench: 2.6.0
+ tinybench: 2.5.1
tinypool: 0.7.0
- vite: 5.2.8(@types/node@18.19.31)
- vite-node: 0.34.6(@types/node@18.19.31)
+ vite: 5.0.10(@types/node@18.19.17)
+ vite-node: 0.34.6(@types/node@18.19.17)
why-is-node-running: 2.2.2
transitivePeerDependencies:
- less
@@ -32494,7 +31933,7 @@ packages:
- terser
optional: true
- /vitest@1.1.1(@types/node@18.0.0)(@vitest/ui@1.1.1):
+ /vitest@1.1.1(@types/node@18.19.17):
resolution: {integrity: sha512-Ry2qs4UOu/KjpXVfOCfQkTnwSXYGrqTbBZxw6reIYEFjSy1QUARRg5pxiI5BEXy+kBVntxUYNMlq4Co+2vD3fQ==}
engines: {node: ^18.0.0 || >=20.0.0}
hasBin: true
@@ -32519,28 +31958,27 @@ packages:
jsdom:
optional: true
dependencies:
- '@types/node': 18.0.0
+ '@types/node': 18.19.17
'@vitest/expect': 1.1.1
'@vitest/runner': 1.1.1
'@vitest/snapshot': 1.1.1
'@vitest/spy': 1.1.1
- '@vitest/ui': 1.1.1(vitest@1.1.1)
'@vitest/utils': 1.1.1
- acorn-walk: 8.3.2
+ acorn-walk: 8.3.1
cac: 6.7.14
- chai: 4.4.1
+ chai: 4.3.10
debug: 4.3.4
execa: 8.0.1
local-pkg: 0.5.0
- magic-string: 0.30.9
- pathe: 1.1.2
+ magic-string: 0.30.5
+ pathe: 1.1.1
picocolors: 1.0.0
std-env: 3.7.0
strip-literal: 1.3.0
- tinybench: 2.6.0
- tinypool: 0.8.3
- vite: 5.2.8(@types/node@18.0.0)
- vite-node: 1.1.1(@types/node@18.0.0)
+ tinybench: 2.5.1
+ tinypool: 0.8.1
+ vite: 5.0.10(@types/node@18.19.17)
+ vite-node: 1.1.1(@types/node@18.19.17)
why-is-node-running: 2.2.2
transitivePeerDependencies:
- less
@@ -32552,7 +31990,7 @@ packages:
- terser
dev: true
- /vitest@1.1.1(@types/node@18.19.31):
+ /vitest@1.1.1(@types/node@18.19.17)(happy-dom@12.10.3):
resolution: {integrity: sha512-Ry2qs4UOu/KjpXVfOCfQkTnwSXYGrqTbBZxw6reIYEFjSy1QUARRg5pxiI5BEXy+kBVntxUYNMlq4Co+2vD3fQ==}
engines: {node: ^18.0.0 || >=20.0.0}
hasBin: true
@@ -32577,27 +32015,28 @@ packages:
jsdom:
optional: true
dependencies:
- '@types/node': 18.19.31
+ '@types/node': 18.19.17
'@vitest/expect': 1.1.1
'@vitest/runner': 1.1.1
'@vitest/snapshot': 1.1.1
'@vitest/spy': 1.1.1
'@vitest/utils': 1.1.1
- acorn-walk: 8.3.2
+ acorn-walk: 8.3.1
cac: 6.7.14
- chai: 4.4.1
+ chai: 4.3.10
debug: 4.3.4
execa: 8.0.1
+ happy-dom: 12.10.3
local-pkg: 0.5.0
- magic-string: 0.30.9
- pathe: 1.1.2
+ magic-string: 0.30.5
+ pathe: 1.1.1
picocolors: 1.0.0
std-env: 3.7.0
strip-literal: 1.3.0
- tinybench: 2.6.0
- tinypool: 0.8.3
- vite: 5.2.8(@types/node@18.19.31)
- vite-node: 1.1.1(@types/node@18.19.31)
+ tinybench: 2.5.1
+ tinypool: 0.8.1
+ vite: 5.0.10(@types/node@18.19.17)
+ vite-node: 1.1.1(@types/node@18.19.17)
why-is-node-running: 2.2.2
transitivePeerDependencies:
- less
@@ -32609,7 +32048,7 @@ packages:
- terser
dev: true
- /vitest@1.1.1(@types/node@18.19.31)(happy-dom@12.10.3):
+ /vitest@1.1.1(@types/node@18.19.4)(@vitest/ui@1.1.1):
resolution: {integrity: sha512-Ry2qs4UOu/KjpXVfOCfQkTnwSXYGrqTbBZxw6reIYEFjSy1QUARRg5pxiI5BEXy+kBVntxUYNMlq4Co+2vD3fQ==}
engines: {node: ^18.0.0 || >=20.0.0}
hasBin: true
@@ -32634,28 +32073,28 @@ packages:
jsdom:
optional: true
dependencies:
- '@types/node': 18.19.31
+ '@types/node': 18.19.4
'@vitest/expect': 1.1.1
'@vitest/runner': 1.1.1
'@vitest/snapshot': 1.1.1
'@vitest/spy': 1.1.1
+ '@vitest/ui': 1.1.1(vitest@1.1.1)
'@vitest/utils': 1.1.1
- acorn-walk: 8.3.2
+ acorn-walk: 8.3.1
cac: 6.7.14
- chai: 4.4.1
+ chai: 4.3.10
debug: 4.3.4
execa: 8.0.1
- happy-dom: 12.10.3
local-pkg: 0.5.0
- magic-string: 0.30.9
- pathe: 1.1.2
+ magic-string: 0.30.5
+ pathe: 1.1.1
picocolors: 1.0.0
std-env: 3.7.0
strip-literal: 1.3.0
- tinybench: 2.6.0
- tinypool: 0.8.3
- vite: 5.2.8(@types/node@18.19.31)
- vite-node: 1.1.1(@types/node@18.19.31)
+ tinybench: 2.5.1
+ tinypool: 0.8.1
+ vite: 5.0.10(@types/node@18.19.4)
+ vite-node: 1.1.1(@types/node@18.19.4)
why-is-node-running: 2.2.2
transitivePeerDependencies:
- less
@@ -32672,8 +32111,8 @@ packages:
engines: {node: '>=12.0.0'}
hasBin: true
dependencies:
- axios: 1.6.8
- joi: 17.12.3
+ axios: 1.6.4
+ joi: 17.11.0
lodash: 4.17.21
minimist: 1.2.8
rxjs: 7.8.1
@@ -32686,8 +32125,8 @@ packages:
engines: {node: '>=12.0.0'}
hasBin: true
dependencies:
- axios: 1.6.8(debug@4.3.4)
- joi: 17.12.3
+ axios: 1.6.4(debug@4.3.4)
+ joi: 17.11.0
lodash: 4.17.21
minimist: 1.2.8
rxjs: 7.8.1
@@ -32737,8 +32176,8 @@ packages:
loose-envify: 1.4.0
dev: false
- /watchpack@2.4.1:
- resolution: {integrity: sha512-8wrBCMtVhqcXP2Sup1ctSkga6uc2Bx0IIvKyT7yTFier5AXHooSI+QyQQAtTb7+E0IUCCKyTFmXqdqgum2XWGg==}
+ /watchpack@2.4.0:
+ resolution: {integrity: sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==}
engines: {node: '>=10.13.0'}
dependencies:
glob-to-regexp: 0.4.1
@@ -32760,16 +32199,16 @@ packages:
resolution: {integrity: sha512-bKr1DkiNa2krS7qxNtdrtHAmzuYGFQLiQ13TsorsdT6ULTkPLKuu5+GsFpDlg6JFjUTwX2DyhMPG2be8uPrqsQ==}
dev: false
- /web-streams-polyfill@3.3.3:
- resolution: {integrity: sha512-d2JWLCivmZYTSIoge9MsgFCZrt571BikcWGYkjC1khllbTeDlGqZ2D8vD8E/lJa8WGWbb7Plm8/XJYV7IJHZZw==}
+ /web-streams-polyfill@3.2.1:
+ resolution: {integrity: sha512-e0MO3wdXWKrLbL0DgGnUV7WHVuw9OUvL4hjgnPkIeEvESk74gAITi5G606JtZPp39cd8HA9VQzCIvA49LpPN5Q==}
engines: {node: '>= 8'}
- /web-worker@1.3.0:
- resolution: {integrity: sha512-BSR9wyRsy/KOValMgd5kMyr3JzpdeoR9KVId8u5GVlTTAtNChlsE4yTxeY7zMdNSyOmoKBv8NH2qeRY9Tg+IaA==}
+ /web-worker@1.2.0:
+ resolution: {integrity: sha512-PgF341avzqyx60neE9DD+XS26MMNMoUQRz9NOZwW32nPQrF6p77f1htcnjBSEV8BGMKZ16choqUG4hyI0Hx7mA==}
dev: false
- /webcrypto-core@1.7.9:
- resolution: {integrity: sha512-FE+a4PPkOmBbgNDIyRmcHhgXn+2ClRl3JzJdDu/P4+B8y81LqKe6RAsI9b3lAOHe1T1BMkSjsRHTYRikImZnVA==}
+ /webcrypto-core@1.7.7:
+ resolution: {integrity: sha512-7FjigXNsBfopEj+5DV2nhNpfic2vumtjjgPmeDKk45z+MJwXKKfhPB7118Pfzrmh4jqOMST6Ch37iPAHoImg5g==}
dependencies:
'@peculiar/asn1-schema': 2.3.8
'@peculiar/json-schema': 1.1.12
@@ -32789,8 +32228,8 @@ packages:
resolution: {integrity: sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==}
engines: {node: '>=12'}
- /webpack-assets-manifest@5.2.1(webpack@5.91.0):
- resolution: {integrity: sha512-MsEcXVio1GY6R+b4dVfTHIDMB0RB90KajQG8neRbH92vE2S1ClGw9mNa9NPlratYBvZOhExmN0qqMNFTaCTuIg==}
+ /webpack-assets-manifest@5.1.0(webpack@5.89.0):
+ resolution: {integrity: sha512-kPuTMEjBrqZQVJ5M6yXNBCEdFbQQn7p+loNXt8NOeDFaAbsNFWqqwR0YL1mfG5LbwhK5FLXWXpuK3GuIIZ46rg==}
engines: {node: '>=10.13.0'}
peerDependencies:
webpack: ^5.2.0
@@ -32802,10 +32241,10 @@ packages:
lodash.has: 4.5.2
schema-utils: 3.3.0
tapable: 2.2.1
- webpack: 5.91.0
+ webpack: 5.89.0
dev: false
- /webpack-dev-middleware@4.3.0(webpack@5.91.0):
+ /webpack-dev-middleware@4.3.0(webpack@5.89.0):
resolution: {integrity: sha512-PjwyVY95/bhBh6VUqt6z4THplYcsvQ8YNNBTBM873xLVmw8FLeALn0qurHbs9EmcfhzQis/eoqypSnZeuUz26w==}
engines: {node: '>= v10.23.3'}
peerDependencies:
@@ -32817,7 +32256,7 @@ packages:
mime-types: 2.1.35
range-parser: 1.2.1
schema-utils: 3.3.0
- webpack: 5.91.0(esbuild@0.19.12)
+ webpack: 5.89.0
/webpack-merge@5.10.0:
resolution: {integrity: sha512-+4zXKdx7UnO+1jaN4l2lHVD+mFvnlZQP/6ljaJVb4SZiwIKeUnrT5l0gkT8z+n4hKpC+jpOv6O9R+gLtag7pSA==}
@@ -32847,8 +32286,8 @@ packages:
resolution: {integrity: sha512-poXpCylU7ExuvZK8z+On3kX+S8o/2dQ/SVYueKA0D4WEMXROXgY8Ez50/bQEUmvoSMMrWcrJqCHuhAbsiwg7Dg==}
dev: true
- /webpack@5.91.0:
- resolution: {integrity: sha512-rzVwlLeBWHJbmgTC/8TvAcu5vpJNII+MelQpylD4jNERPwpBJOE2lEcko1zJX3QJeLjTTAnQxn/OJ8bjDzVQaw==}
+ /webpack@5.89.0:
+ resolution: {integrity: sha512-qyfIC10pOr70V+jkmud8tMfajraGCZMBWJtrmuBymQKCrLTRejBI8STDp1MCyZu/QTdZSeacCQYpYNQVOzX5kw==}
engines: {node: '>=10.13.0'}
hasBin: true
peerDependencies:
@@ -32859,15 +32298,15 @@ packages:
dependencies:
'@types/eslint-scope': 3.7.7
'@types/estree': 1.0.5
- '@webassemblyjs/ast': 1.12.1
- '@webassemblyjs/wasm-edit': 1.12.1
- '@webassemblyjs/wasm-parser': 1.12.1
+ '@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
+ browserslist: 4.22.2
chrome-trace-event: 1.0.3
- enhanced-resolve: 5.16.0
- es-module-lexer: 1.5.0
+ enhanced-resolve: 5.15.0
+ es-module-lexer: 1.4.1
eslint-scope: 5.1.1
events: 3.3.0
glob-to-regexp: 0.4.1
@@ -32878,16 +32317,16 @@ packages:
neo-async: 2.6.2
schema-utils: 3.3.0
tapable: 2.2.1
- terser-webpack-plugin: 5.3.10(webpack@5.91.0)
- watchpack: 2.4.1
+ terser-webpack-plugin: 5.3.10(webpack@5.89.0)
+ watchpack: 2.4.0
webpack-sources: 3.2.3
transitivePeerDependencies:
- '@swc/core'
- esbuild
- uglify-js
- /webpack@5.91.0(@swc/core@1.3.102):
- resolution: {integrity: sha512-rzVwlLeBWHJbmgTC/8TvAcu5vpJNII+MelQpylD4jNERPwpBJOE2lEcko1zJX3QJeLjTTAnQxn/OJ8bjDzVQaw==}
+ /webpack@5.89.0(@swc/core@1.3.102):
+ resolution: {integrity: sha512-qyfIC10pOr70V+jkmud8tMfajraGCZMBWJtrmuBymQKCrLTRejBI8STDp1MCyZu/QTdZSeacCQYpYNQVOzX5kw==}
engines: {node: '>=10.13.0'}
hasBin: true
peerDependencies:
@@ -32898,15 +32337,15 @@ packages:
dependencies:
'@types/eslint-scope': 3.7.7
'@types/estree': 1.0.5
- '@webassemblyjs/ast': 1.12.1
- '@webassemblyjs/wasm-edit': 1.12.1
- '@webassemblyjs/wasm-parser': 1.12.1
+ '@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
+ browserslist: 4.22.2
chrome-trace-event: 1.0.3
- enhanced-resolve: 5.16.0
- es-module-lexer: 1.5.0
+ enhanced-resolve: 5.15.0
+ es-module-lexer: 1.4.1
eslint-scope: 5.1.1
events: 3.3.0
glob-to-regexp: 0.4.1
@@ -32917,8 +32356,8 @@ packages:
neo-async: 2.6.2
schema-utils: 3.3.0
tapable: 2.2.1
- terser-webpack-plugin: 5.3.10(@swc/core@1.3.102)(webpack@5.91.0)
- watchpack: 2.4.1
+ terser-webpack-plugin: 5.3.10(@swc/core@1.3.102)(webpack@5.89.0)
+ watchpack: 2.4.0
webpack-sources: 3.2.3
transitivePeerDependencies:
- '@swc/core'
@@ -32926,8 +32365,8 @@ packages:
- uglify-js
dev: true
- /webpack@5.91.0(esbuild@0.19.12):
- resolution: {integrity: sha512-rzVwlLeBWHJbmgTC/8TvAcu5vpJNII+MelQpylD4jNERPwpBJOE2lEcko1zJX3QJeLjTTAnQxn/OJ8bjDzVQaw==}
+ /webpack@5.89.0(esbuild@0.19.11):
+ resolution: {integrity: sha512-qyfIC10pOr70V+jkmud8tMfajraGCZMBWJtrmuBymQKCrLTRejBI8STDp1MCyZu/QTdZSeacCQYpYNQVOzX5kw==}
engines: {node: '>=10.13.0'}
hasBin: true
peerDependencies:
@@ -32938,15 +32377,15 @@ packages:
dependencies:
'@types/eslint-scope': 3.7.7
'@types/estree': 1.0.5
- '@webassemblyjs/ast': 1.12.1
- '@webassemblyjs/wasm-edit': 1.12.1
- '@webassemblyjs/wasm-parser': 1.12.1
+ '@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
+ browserslist: 4.22.2
chrome-trace-event: 1.0.3
- enhanced-resolve: 5.16.0
- es-module-lexer: 1.5.0
+ enhanced-resolve: 5.15.0
+ es-module-lexer: 1.4.1
eslint-scope: 5.1.1
events: 3.3.0
glob-to-regexp: 0.4.1
@@ -32957,13 +32396,14 @@ packages:
neo-async: 2.6.2
schema-utils: 3.3.0
tapable: 2.2.1
- terser-webpack-plugin: 5.3.10(esbuild@0.19.12)(webpack@5.91.0)
- watchpack: 2.4.1
+ terser-webpack-plugin: 5.3.10(esbuild@0.19.11)(webpack@5.89.0)
+ watchpack: 2.4.0
webpack-sources: 3.2.3
transitivePeerDependencies:
- '@swc/core'
- esbuild
- uglify-js
+ dev: true
/website-scraper@5.3.1:
resolution: {integrity: sha512-gogqPXD2gVsxoyd2yRiympw3rA5GuEpD1CaDEJ/J8zzanx7hkbTtneoO1SGs436PpLbWVcUge+6APGLhzsuZPA==}
@@ -32977,7 +32417,7 @@ packages:
normalize-url: 7.2.0
p-queue: 7.4.1
sanitize-filename: 1.6.3
- srcset: 5.0.1
+ srcset: 5.0.0
transitivePeerDependencies:
- supports-color
dev: true
@@ -32985,6 +32425,7 @@ packages:
/well-known-symbols@2.0.0:
resolution: {integrity: sha512-ZMjC3ho+KXo0BfJb7JgtQ5IBuvnShdlACNkKkdsqBmYw3bPAaJfPeYUo6tLUaT5tG/Gkh7xkpBhKRQ9e7pyg9Q==}
engines: {node: '>=6'}
+ requiresBuild: true
dev: false
/what-input@5.2.12:
@@ -33024,6 +32465,7 @@ packages:
/which-boxed-primitive@1.0.2:
resolution: {integrity: sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==}
+ requiresBuild: true
dependencies:
is-bigint: 1.0.4
is-boolean-object: 1.1.2
@@ -33036,7 +32478,7 @@ packages:
engines: {node: '>= 0.4'}
dependencies:
function.prototype.name: 1.1.6
- has-tostringtag: 1.0.2
+ has-tostringtag: 1.0.0
is-async-function: 2.0.0
is-date-object: 1.0.5
is-finalizationregistry: 1.0.2
@@ -33045,30 +32487,30 @@ packages:
is-weakref: 1.0.2
isarray: 2.0.5
which-boxed-primitive: 1.0.2
- which-collection: 1.0.2
- which-typed-array: 1.1.15
+ which-collection: 1.0.1
+ which-typed-array: 1.1.13
- /which-collection@1.0.2:
- resolution: {integrity: sha512-K4jVyjnBdgvc86Y6BkaLZEN933SwYOuBFkdmBu9ZfkcAbdVbpITnDmjvZ/aQjRXQrv5EPkTnD1s39GiiqbngCw==}
- engines: {node: '>= 0.4'}
+ /which-collection@1.0.1:
+ resolution: {integrity: sha512-W8xeTUwaln8i3K/cY1nGXzdnVZlidBcagyNFtBdD5kxnb4TvGKR7FfSIS3mYpwWS1QUCutfKz8IY8RjftB0+1A==}
dependencies:
- is-map: 2.0.3
- is-set: 2.0.3
- is-weakmap: 2.0.2
- is-weakset: 2.0.3
+ is-map: 2.0.2
+ is-set: 2.0.2
+ is-weakmap: 2.0.1
+ is-weakset: 2.0.2
/which-module@2.0.1:
resolution: {integrity: sha512-iBdZ57RDvnOR9AGBhML2vFZf7h8vmBjhoaZqODJBFWHVtKkDmKuHai3cx5PgVMrX5YDNp27AofYbAwctSS+vhQ==}
- /which-typed-array@1.1.15:
- resolution: {integrity: sha512-oV0jmFtUky6CXfkqehVvBP/LSWJ2sy4vWMioiENyJLePrBO/yKyV9OyJySfAKosh+RYkIl5zJCNZ8/4JncrpdA==}
+ /which-typed-array@1.1.13:
+ resolution: {integrity: sha512-P5Nra0qjSncduVPEAr7xhoF5guty49ArDTwzJ/yNuPIbZppyRxFQsRCWrocxIY+CnMVG+qfbU2FmDKyvSGClow==}
engines: {node: '>= 0.4'}
+ requiresBuild: true
dependencies:
- available-typed-arrays: 1.0.7
- call-bind: 1.0.7
+ available-typed-arrays: 1.0.5
+ call-bind: 1.0.5
for-each: 0.3.3
gopd: 1.0.1
- has-tostringtag: 1.0.2
+ has-tostringtag: 1.0.0
/which@1.3.1:
resolution: {integrity: sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==}
@@ -33080,6 +32522,7 @@ packages:
resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==}
engines: {node: '>= 8'}
hasBin: true
+ requiresBuild: true
dependencies:
isexe: 2.0.0
@@ -33087,6 +32530,7 @@ packages:
resolution: {integrity: sha512-6tSwToZxTOcotxHeA+qGCq1mVzKR3CwcJGmVcY+QE8SHy6TnpFnh8PAvPNHYr7EcuVeG0QSMxtYCuO1ta/G/oA==}
engines: {node: '>=8'}
hasBin: true
+ requiresBuild: true
dependencies:
siginfo: 2.0.0
stackback: 0.0.2
@@ -33119,16 +32563,16 @@ packages:
execa: 5.1.1
dev: false
- /winston-transport@4.7.0:
- resolution: {integrity: sha512-ajBj65K5I7denzer2IYW6+2bNIVqLGDHqDw3Ow8Ohh+vdW+rv4MZ6eiDvHoKhfJFZ2auyN8byXieDDJ96ViONg==}
+ /winston-transport@4.6.0:
+ resolution: {integrity: sha512-wbBA9PbPAHxKiygo7ub7BYRiKxms0tpfU2ljtWzb3SjRjv5yl6Ozuy/TkXf00HTAt+Uylo3gSkNwzc4ME0wiIg==}
engines: {node: '>= 12.0.0'}
dependencies:
logform: 2.6.0
readable-stream: 3.6.2
triple-beam: 1.4.1
- /winston@3.13.0:
- resolution: {integrity: sha512-rwidmA1w3SE4j0E5MuIufFhyJPBDG7Nu71RkZor1p2+qHvJSZ9GYDA81AyleQcZbh/+V6HjeBdfnTZJm9rSeQQ==}
+ /winston@3.11.0:
+ resolution: {integrity: sha512-L3yR6/MzZAOl0DsysUXHVjOwv8mKZ71TrA/41EIduGpOOV5LQVodqN+QdQ6BS6PJ/RdIshZhq84P/fStEZkk7g==}
engines: {node: '>= 12.0.0'}
dependencies:
'@colors/colors': 1.6.0
@@ -33141,12 +32585,12 @@ packages:
safe-stable-stringify: 2.4.3
stack-trace: 0.0.10
triple-beam: 1.4.1
- winston-transport: 4.7.0
+ winston-transport: 4.6.0
/wkx@0.5.0:
resolution: {integrity: sha512-Xng/d4Ichh8uN4l0FToV/258EjMGU9MGcA0HV2d9B/ZpZB3lqQm7nkOdZdm5GhKtLLhAE7PiVQwN4eN+2YJJUg==}
dependencies:
- '@types/node': 18.19.31
+ '@types/node': 18.19.17
dev: false
/wordwrap@1.0.0:
@@ -33220,13 +32664,6 @@ packages:
signal-exit: 4.1.0
dev: false
- /write@1.0.3:
- resolution: {integrity: sha512-/lg70HAjtkUgWPVZhZcm+T4hkL8Zbtp1nFNOn3lRrxnlv50SRBv7cR7RqR+GMsd3hUXy9hWBo4CHTbFTcOYwig==}
- engines: {node: '>=4'}
- dependencies:
- mkdirp: 0.5.6
- dev: true
-
/ws@6.2.2:
resolution: {integrity: sha512-zmhltoSR8u1cnDsD43TX59mzoMZsLKqUweyYBAIvTngR3shc0W6aOZylZmq/7hqyVxPdi+5Ud2QInblgyE72fw==}
peerDependencies:
@@ -33291,6 +32728,10 @@ packages:
utf-8-validate:
optional: true
+ /x-is-string@0.1.0:
+ resolution: {integrity: sha512-GojqklwG8gpzOVEVki5KudKNoq7MbbjYZCbyWzEz7tyPA7eleiE0+ePwOWQQRb5fm86rD3S8Tc0tSFf3AOv50w==}
+ dev: false
+
/xdg-basedir@4.0.0:
resolution: {integrity: sha512-PSNhEJDejZYV7h50BohL09Er9VaIefr2LMAf3OEmpCkjOi34eYyQYAXUTjEQtZJTKcF0E2UKTh+osDLsgNim9Q==}
engines: {node: '>=8'}
@@ -33300,8 +32741,8 @@ packages:
engines: {node: '>=12'}
dev: false
- /xml-utils@1.8.0:
- resolution: {integrity: sha512-1TY5yLw8DApowZAUsWCniNr8HH6Ebt6O7UQvmIwziGKwUNsQx6e+4NkfOvCfnqmYIcPjCeoI6dh1JenPJ9a1hQ==}
+ /xml-utils@1.7.0:
+ resolution: {integrity: sha512-bWB489+RQQclC7A9OW8e5BzbT8Tu//jtAOvkYwewFr+Q9T9KDGvfzC1lp0pYPEQPEoPQLDkmxkepSC/2gIAZGw==}
dev: false
/xml@1.0.1:
@@ -33312,8 +32753,8 @@ packages:
resolution: {integrity: sha512-QKxVRxiRACQcVuQEYFsI1hhkrMlrXHPegbbd1yn9UHOmRxY+si12nQYzri3vbzt8VdTTRviqcKxcyllFas5z2A==}
engines: {node: '>=0.4.0'}
- /xss@1.0.15:
- resolution: {integrity: sha512-FVdlVVC67WOIPvfOwhoMETV72f6GbW7aOabBC3WxN/oUdoEMDyLz4OgRv5/gck2ZeNqEQu+Tb0kloovXOfpYVg==}
+ /xss@1.0.14:
+ resolution: {integrity: sha512-og7TEJhXvn1a7kzZGQ7ETjdQVS2UfZyTlsEdDOqvQF7GoxNfY+0YLCzBy1kPdsDDx4QuNAonQPddpsn6Xl/7sw==}
engines: {node: '>= 0.10.0'}
hasBin: true
dependencies:
@@ -33351,13 +32792,13 @@ packages:
resolution: {integrity: sha512-2PTINUwsRqSd+s8XxKaJWQlUuEMHJQyEuh2edBbW8KNJz0SJPwUSD2zRWqezFEdN7IzAgeuYHFUCF7o8zRdZ0A==}
dev: true
- /yaml-loader@0.8.1:
- resolution: {integrity: sha512-BCEndnUoi3BaZmePkwGGe93txRxLgMhBa/gE725v1/GHnura8QvNs7c4+4C1yyhhKoj3Dg63M7IqhA++15j6ww==}
- engines: {node: '>= 14'}
+ /yaml-loader@0.8.0:
+ resolution: {integrity: sha512-LjeKnTzVBKWiQBeE2L9ssl6WprqaUIxCSNs5tle8PaDydgu3wVFXTbMfsvF2MSErpy9TDVa092n4q6adYwJaWg==}
+ engines: {node: '>= 12.13'}
dependencies:
javascript-stringify: 2.1.0
loader-utils: 2.0.4
- yaml: 2.4.1
+ yaml: 2.3.4
/yaml@1.10.2:
resolution: {integrity: sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==}
@@ -33367,11 +32808,6 @@ packages:
resolution: {integrity: sha512-8aAvwVUSHpfEqTQ4w/KMlf3HcRdt50E5ODIQJBw1fQ5RL34xabzxtUlzTXVqc4rkZsPbvrXKWnABCD7kWSmocA==}
engines: {node: '>= 14'}
- /yaml@2.4.1:
- resolution: {integrity: sha512-pIXzoImaqmfOrL7teGUBt/T7ZDnyeGBWyXQBvOVhLkWLN37GXv8NMLK406UY6dS51JfcQHsmcW5cJ441bHg6Lg==}
- engines: {node: '>= 14'}
- hasBin: true
-
/yargs-parser@15.0.3:
resolution: {integrity: sha512-/MVEVjTXy/cGAjdtQf8dW3V9b97bPN7rNn8ETj6BmAQL7ibC7O1Q9SPJbGjgh3SlwoBNXMzj/ZGIj8mBgl12YA==}
dependencies:
@@ -33432,7 +32868,7 @@ packages:
engines: {node: '>=12'}
dependencies:
cliui: 8.0.1
- escalade: 3.1.2
+ escalade: 3.1.1
get-caller-file: 2.0.5
require-directory: 2.1.1
string-width: 4.2.3
@@ -33457,6 +32893,7 @@ packages:
/yocto-queue@1.0.0:
resolution: {integrity: sha512-9bnSc/HEW2uRy67wc+T8UwauLuPJVn28jb+GtJY16iiKWyvmYJRXVT4UamsAEGQfPohgr2q4Tq0sQbQlxTfi1g==}
engines: {node: '>=12.20'}
+ requiresBuild: true
/yoga-layout-prebuilt@1.10.0:
resolution: {integrity: sha512-YnOmtSbv4MTf7RGJMK0FvZ+KD8OEe/J5BNnR0GHhD8J/XcG/Qvxgszm0Un6FTHWW4uHlTgP0IztiXQnGyIR45g==}
@@ -33483,12 +32920,12 @@ packages:
/zen-observable@0.8.15:
resolution: {integrity: sha512-PQ2PC7R9rslx84ndNBZB/Dkv8V8fZEpk83RLgXtYd0fwUgEjseMn1Dgajh2x6S8QbZAFa9p2qVCEuYZNgve0dQ==}
- /zip-stream@5.0.2:
- resolution: {integrity: sha512-LfOdrUvPB8ZoXtvOBz6DlNClfvi//b5d56mSWyJi7XbH/HfhOHfUhOqxhT/rUiR7yiktlunqRo+jY6y/cWC/5g==}
+ /zip-stream@5.0.1:
+ resolution: {integrity: sha512-UfZ0oa0C8LI58wJ+moL46BDIMgCQbnsb+2PoiJYtonhBsMh2bq1eRBVkvjfVsqbEHd9/EgKPUuL9saSSsec8OA==}
engines: {node: '>= 12.0.0'}
dependencies:
archiver-utils: 4.0.1
- compress-commons: 5.0.3
+ compress-commons: 5.0.1
readable-stream: 3.6.2
dev: false