`
diff --git a/examples/README.md b/examples/README.md
index 15e4d121fc7b4..be9c18f0996fa 100644
--- a/examples/README.md
+++ b/examples/README.md
@@ -20,6 +20,7 @@
| `solid` | [GitHub](https://github.com/vitest-dev/vitest/tree/main/examples/solid) | [Play Online](https://stackblitz.com/fork/github/vitest-dev/vitest/tree/main/examples/solid?initialPath=__vitest__/) |
| `svelte` | [GitHub](https://github.com/vitest-dev/vitest/tree/main/examples/svelte) | [Play Online](https://stackblitz.com/fork/github/vitest-dev/vitest/tree/main/examples/svelte?initialPath=__vitest__/) |
| `sveltekit` | [GitHub](https://github.com/vitest-dev/vitest/tree/main/examples/sveltekit) | [Play Online](https://stackblitz.com/fork/github/vitest-dev/vitest/tree/main/examples/sveltekit?initialPath=__vitest__/) |
+| `marko` | [GitHub](https://github.com/vitest-dev/vitest/tree/main/examples/marko) | [Play Online](https://stackblitz.com/fork/github/vitest-dev/vitest/tree/main/examples/marko?initialPath=__vitest__/) |
| `vitesse` | [GitHub](https://github.com/vitest-dev/vitest/tree/main/examples/vitesse) | [Play Online](https://stackblitz.com/fork/github/vitest-dev/vitest/tree/main/examples/vitesse?initialPath=__vitest__/) |
| `vue-jsx` | [GitHub](https://github.com/vitest-dev/vitest/tree/main/examples/vue-jsx) | [Play Online](https://stackblitz.com/fork/github/vitest-dev/vitest/tree/main/examples/vue-jsx?initialPath=__vitest__/) |
| `vue` | [GitHub](https://github.com/vitest-dev/vitest/tree/main/examples/vue) | [Play Online](https://stackblitz.com/fork/github/vitest-dev/vitest/tree/main/examples/vue?initialPath=__vitest__/) |
diff --git a/examples/marko/components/Hello.marko b/examples/marko/components/Hello.marko
new file mode 100644
index 0000000000000..e8b55065cc047
--- /dev/null
+++ b/examples/marko/components/Hello.marko
@@ -0,0 +1,17 @@
+export interface Input {
+ count: number;
+}
+
+class {
+ declare state: { times: number };
+ onCreate() {
+ this.state = { times: 2 };
+ }
+}
+
+$ const { count } = input;
+$ const { times } = state;
+$ const result = count * times;
+
+${count} x ${times} = ${result}
+
diff --git a/examples/marko/package.json b/examples/marko/package.json
new file mode 100644
index 0000000000000..8e68c2d075d61
--- /dev/null
+++ b/examples/marko/package.json
@@ -0,0 +1,23 @@
+{
+ "name": "@vitest/example-marko",
+ "type": "module",
+ "private": true,
+ "scripts": {
+ "test": "vitest",
+ "test:ui": "vitest --ui",
+ "coverage": "vitest run --coverage"
+ },
+ "devDependencies": {
+ "@marko/compiler": "latest",
+ "@marko/testing-library": "latest",
+ "@marko/vite": "latest",
+ "@vitest/ui": "latest",
+ "jsdom": "latest",
+ "marko": "latest",
+ "vite": "latest",
+ "vitest": "latest"
+ },
+ "stackblitz": {
+ "startCommand": "npm run test:ui"
+ }
+}
diff --git a/examples/marko/test/__snapshots__/basic.test.ts.snap b/examples/marko/test/__snapshots__/basic.test.ts.snap
new file mode 100644
index 0000000000000..e2bd889a800e2
--- /dev/null
+++ b/examples/marko/test/__snapshots__/basic.test.ts.snap
@@ -0,0 +1,3 @@
+// Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html
+
+exports[`mount component 1`] = `"4 x 2 = 8
"`;
diff --git a/examples/marko/test/__snapshots__/hello.test.ts.snap b/examples/marko/test/__snapshots__/hello.test.ts.snap
new file mode 100644
index 0000000000000..226d5925e012f
--- /dev/null
+++ b/examples/marko/test/__snapshots__/hello.test.ts.snap
@@ -0,0 +1,3 @@
+// Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html
+
+exports[`Hello.marko > mounts 1`] = `"4 x 2 = 8
"`;
diff --git a/examples/marko/test/basic.test.ts b/examples/marko/test/basic.test.ts
new file mode 100644
index 0000000000000..bd6a5e6babb9f
--- /dev/null
+++ b/examples/marko/test/basic.test.ts
@@ -0,0 +1,31 @@
+import Hello from '../components/Hello.marko'
+
+let host: HTMLElement
+
+afterEach(() => {
+ host.remove()
+})
+
+test('mount component', async () => {
+ host = document.createElement('div')
+ host.setAttribute('id', 'host')
+ document.body.appendChild(host)
+ const instance = Hello
+ .renderSync({ count: 4 })
+ .appendTo(host)
+ .getComponent()
+ expect(instance).toBeTruthy()
+ expect(host.innerHTML).toContain('4 x 2 = 8')
+ expect(host.innerHTML).toMatchSnapshot()
+ const btn = host.getElementsByTagName('button')[0]
+ btn.click() // or btn.dispatchEvent(new window.Event('click', { bubbles: true }))
+ await tick()
+ expect(host.innerHTML).toContain('4 x 3 = 12')
+ btn.click()
+ await tick()
+ expect(host.innerHTML).toContain('4 x 4 = 16')
+})
+
+async function tick() {
+ await new Promise(resolve => setTimeout(resolve))
+}
diff --git a/examples/marko/test/hello.test.ts b/examples/marko/test/hello.test.ts
new file mode 100644
index 0000000000000..a8f4143e78b26
--- /dev/null
+++ b/examples/marko/test/hello.test.ts
@@ -0,0 +1,21 @@
+import { fireEvent, render, screen } from '@marko/testing-library'
+import Hello from '../components/Hello.marko'
+
+describe('Hello.marko', () => {
+ it('mounts', async () => {
+ const { container } = await render(Hello, { count: 4 })
+ expect(container).toBeTruthy()
+ expect(container.innerHTML).toContain('4 x 2 = 8')
+ expect(container.innerHTML).toMatchSnapshot()
+ })
+
+ it('updates on button click', async () => {
+ await render(Hello, { count: 4 })
+ const btn = screen.getByRole('button')
+ const div = screen.getByText('4 x 2 = 8')
+ await fireEvent.click(btn)
+ expect(div.innerHTML).toBe('4 x 3 = 12')
+ await fireEvent.click(btn)
+ expect(div.innerHTML).toBe('4 x 4 = 16')
+ })
+})
diff --git a/examples/marko/vitest.config.ts b/examples/marko/vitest.config.ts
new file mode 100644
index 0000000000000..630f860d158a1
--- /dev/null
+++ b/examples/marko/vitest.config.ts
@@ -0,0 +1,12 @@
+import { defineConfig } from 'vite'
+import marko from '@marko/vite'
+
+export default defineConfig({
+ plugins: [
+ marko(),
+ ],
+ test: {
+ globals: true,
+ environment: 'jsdom',
+ },
+})
diff --git a/packages/vitest/src/defaults.ts b/packages/vitest/src/defaults.ts
index 2e45b8932efae..deeed8132480a 100644
--- a/packages/vitest/src/defaults.ts
+++ b/packages/vitest/src/defaults.ts
@@ -39,7 +39,7 @@ export const coverageConfigDefaults: ResolvedCoverageOptions = {
exclude: defaultCoverageExcludes,
reportOnFailure: false,
reporter: [['text', {}], ['html', {}], ['clover', {}], ['json', {}]],
- extension: ['.js', '.cjs', '.mjs', '.ts', '.mts', '.cts', '.tsx', '.jsx', '.vue', '.svelte'],
+ extension: ['.js', '.cjs', '.mjs', '.ts', '.mts', '.cts', '.tsx', '.jsx', '.vue', '.svelte', '.marko'],
allowExternal: false,
}
diff --git a/packages/vitest/src/types/coverage.ts b/packages/vitest/src/types/coverage.ts
index 50b9daebb5495..075920210ea09 100644
--- a/packages/vitest/src/types/coverage.ts
+++ b/packages/vitest/src/types/coverage.ts
@@ -106,7 +106,7 @@ export interface BaseCoverageOptions {
/**
* Extensions for files to be included in coverage
*
- * @default ['.js', '.cjs', '.mjs', '.ts', '.tsx', '.jsx', '.vue', '.svelte']
+ * @default ['.js', '.cjs', '.mjs', '.ts', '.tsx', '.jsx', '.vue', '.svelte', '.marko']
*/
extension?: string | string[]
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index c71b6c95aa99e..c5124a1b9450d 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -282,6 +282,33 @@ importers:
specifier: workspace:*
version: link:../../packages/vitest
+ examples/marko:
+ devDependencies:
+ '@marko/compiler':
+ specifier: latest
+ version: 5.33.2
+ '@marko/testing-library':
+ specifier: latest
+ version: 6.1.4(marko@5.31.11)
+ '@marko/vite':
+ specifier: latest
+ version: 3.1.1(@marko/compiler@5.33.2)(vite@4.4.10)
+ '@vitest/ui':
+ specifier: latest
+ version: link:../../packages/ui
+ jsdom:
+ specifier: latest
+ version: 22.1.0
+ marko:
+ specifier: latest
+ version: 5.31.11
+ vite:
+ specifier: ^4.4.10
+ version: 4.4.10(@types/node@18.16.19)(less@4.1.3)
+ vitest:
+ specifier: workspace:*
+ version: link:../../packages/vitest
+
examples/mocks:
dependencies:
'@vueuse/integrations':
@@ -2396,13 +2423,13 @@ packages:
engines: {node: '>=6.9.0'}
dependencies:
'@babel/code-frame': 7.22.13
- '@babel/generator': 7.22.15
- '@babel/helper-module-transforms': 7.22.15(@babel/core@7.12.9)
- '@babel/helpers': 7.22.15
- '@babel/parser': 7.22.16
+ '@babel/generator': 7.23.0
+ '@babel/helper-module-transforms': 7.23.0(@babel/core@7.12.9)
+ '@babel/helpers': 7.23.1
+ '@babel/parser': 7.23.0
'@babel/template': 7.22.15
- '@babel/traverse': 7.22.15
- '@babel/types': 7.22.15
+ '@babel/traverse': 7.23.0
+ '@babel/types': 7.23.0
convert-source-map: 1.9.0
debug: 4.3.4(supports-color@8.1.1)
gensync: 1.0.0-beta.2
@@ -2461,29 +2488,6 @@ packages:
- supports-color
dev: true
- /@babel/core@7.22.15:
- resolution: {integrity: sha512-PtZqMmgRrvj8ruoEOIwVA3yoF91O+Hgw9o7DAUTNBA6Mo2jpu31clx9a7Nz/9JznqetTR6zwfC4L3LAjKQXUwA==}
- engines: {node: '>=6.9.0'}
- dependencies:
- '@ampproject/remapping': 2.2.1
- '@babel/code-frame': 7.22.13
- '@babel/generator': 7.22.15
- '@babel/helper-compilation-targets': 7.22.15
- '@babel/helper-module-transforms': 7.22.15(@babel/core@7.22.15)
- '@babel/helpers': 7.22.15
- '@babel/parser': 7.22.16
- '@babel/template': 7.22.15
- '@babel/traverse': 7.22.15
- '@babel/types': 7.22.15
- convert-source-map: 1.9.0
- debug: 4.3.4(supports-color@8.1.1)
- gensync: 1.0.0-beta.2
- json5: 2.2.3
- semver: 6.3.1
- transitivePeerDependencies:
- - supports-color
- dev: true
-
/@babel/core@7.22.5:
resolution: {integrity: sha512-SBuTAjg91A3eKOvD+bPEz3LlhHZRNu1nFOVts9lzDJTXshHTjII0BAtDS3Y2DAkdZdDKWVZGVwkDfc4Clxn1dg==}
engines: {node: '>=6.9.0'}
@@ -2560,16 +2564,6 @@ packages:
jsesc: 2.5.2
dev: true
- /@babel/generator@7.22.15:
- resolution: {integrity: sha512-Zu9oWARBqeVOW0dZOjXc3JObrzuqothQ3y/n1kUtrjCoCPLkXUwMvOo/F/TCfoHMbWIFlWwpZtkZVb9ga4U2pA==}
- engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/types': 7.23.0
- '@jridgewell/gen-mapping': 0.3.2
- '@jridgewell/trace-mapping': 0.3.18
- jsesc: 2.5.2
- dev: true
-
/@babel/generator@7.22.9:
resolution: {integrity: sha512-KtLMbmicyuK2Ak/FTCJVbDnkN1SlT8/kceFTiuDiiRUUSMnHMidxSCdG4ndkTOHHpoomWe/4xkvHkEOncwjYIw==}
engines: {node: '>=6.9.0'}
@@ -2607,7 +2601,7 @@ packages:
engines: {node: '>=6.9.0'}
dependencies:
'@babel/helper-explode-assignable-expression': 7.18.6
- '@babel/types': 7.22.5
+ '@babel/types': 7.23.0
dev: true
/@babel/helper-compilation-targets@7.18.9(@babel/core@7.18.13):
@@ -2702,25 +2696,6 @@ packages:
semver: 6.3.1
dev: true
- /@babel/helper-create-class-features-plugin@7.21.0(@babel/core@7.18.13):
- resolution: {integrity: sha512-Q8wNiMIdwsv5la5SPxNYzzkPnjgC0Sy0i7jLkVOCdllu/xcVNkr3TeZzbHBJrj+XXRqzX5uCyCoV9eu6xUG7KQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0
- dependencies:
- '@babel/core': 7.18.13
- '@babel/helper-annotate-as-pure': 7.18.6
- '@babel/helper-environment-visitor': 7.22.5
- '@babel/helper-function-name': 7.22.5
- '@babel/helper-member-expression-to-functions': 7.21.0
- '@babel/helper-optimise-call-expression': 7.18.6
- '@babel/helper-replace-supers': 7.20.7
- '@babel/helper-skip-transparent-expression-wrappers': 7.20.0
- '@babel/helper-split-export-declaration': 7.22.6
- transitivePeerDependencies:
- - supports-color
- dev: true
-
/@babel/helper-create-class-features-plugin@7.21.0(@babel/core@7.20.5):
resolution: {integrity: sha512-Q8wNiMIdwsv5la5SPxNYzzkPnjgC0Sy0i7jLkVOCdllu/xcVNkr3TeZzbHBJrj+XXRqzX5uCyCoV9eu6xUG7KQ==}
engines: {node: '>=6.9.0'}
@@ -2728,7 +2703,7 @@ packages:
'@babel/core': ^7.0.0
dependencies:
'@babel/core': 7.20.5
- '@babel/helper-annotate-as-pure': 7.18.6
+ '@babel/helper-annotate-as-pure': 7.22.5
'@babel/helper-environment-visitor': 7.22.5
'@babel/helper-function-name': 7.22.5
'@babel/helper-member-expression-to-functions': 7.21.0
@@ -2747,7 +2722,7 @@ packages:
'@babel/core': ^7.0.0
dependencies:
'@babel/core': 7.22.9
- '@babel/helper-annotate-as-pure': 7.18.6
+ '@babel/helper-annotate-as-pure': 7.22.5
'@babel/helper-environment-visitor': 7.22.5
'@babel/helper-function-name': 7.22.5
'@babel/helper-member-expression-to-functions': 7.21.0
@@ -2759,23 +2734,22 @@ packages:
- supports-color
dev: true
- /@babel/helper-create-class-features-plugin@7.21.0(@babel/core@7.23.0):
- resolution: {integrity: sha512-Q8wNiMIdwsv5la5SPxNYzzkPnjgC0Sy0i7jLkVOCdllu/xcVNkr3TeZzbHBJrj+XXRqzX5uCyCoV9eu6xUG7KQ==}
+ /@babel/helper-create-class-features-plugin@7.22.15(@babel/core@7.18.13):
+ resolution: {integrity: sha512-jKkwA59IXcvSaiK2UN45kKwSC9o+KuoXsBDvHvU/7BecYIp8GQ2UwrVvFgJASUT+hBnwJx6MhvMCuMzwZZ7jlg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.23.0
- '@babel/helper-annotate-as-pure': 7.18.6
- '@babel/helper-environment-visitor': 7.22.5
- '@babel/helper-function-name': 7.22.5
- '@babel/helper-member-expression-to-functions': 7.21.0
- '@babel/helper-optimise-call-expression': 7.18.6
- '@babel/helper-replace-supers': 7.20.7
- '@babel/helper-skip-transparent-expression-wrappers': 7.20.0
+ '@babel/core': 7.18.13
+ '@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.22.15
+ '@babel/helper-optimise-call-expression': 7.22.5
+ '@babel/helper-replace-supers': 7.22.9(@babel/core@7.18.13)
+ '@babel/helper-skip-transparent-expression-wrappers': 7.22.5
'@babel/helper-split-export-declaration': 7.22.6
- transitivePeerDependencies:
- - supports-color
+ semver: 6.3.1
dev: true
/@babel/helper-create-class-features-plugin@7.22.15(@babel/core@7.23.0):
@@ -2803,18 +2777,7 @@ packages:
'@babel/core': ^7.0.0
dependencies:
'@babel/core': 7.18.13
- '@babel/helper-annotate-as-pure': 7.18.6
- regexpu-core: 5.1.0
- dev: true
-
- /@babel/helper-create-regexp-features-plugin@7.18.6(@babel/core@7.22.9):
- resolution: {integrity: sha512-7LcpH1wnQLGrI+4v+nPp+zUvIkF9x0ddv1Hkdue10tg3gmRnLy97DXh4STiOf1qeIInyD69Qv5kKSZzKD8B/7A==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0
- dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-annotate-as-pure': 7.18.6
+ '@babel/helper-annotate-as-pure': 7.22.5
regexpu-core: 5.1.0
dev: true
@@ -2825,20 +2788,20 @@ packages:
'@babel/core': ^7.0.0
dependencies:
'@babel/core': 7.23.0
- '@babel/helper-annotate-as-pure': 7.18.6
+ '@babel/helper-annotate-as-pure': 7.22.5
regexpu-core: 5.1.0
dev: true
- /@babel/helper-define-polyfill-provider@0.1.5(@babel/core@7.22.9):
+ /@babel/helper-define-polyfill-provider@0.1.5(@babel/core@7.23.0):
resolution: {integrity: sha512-nXuzCSwlJ/WKr8qxzW816gwyT6VZgiJG17zR40fou70yfAcqjoNyTLl/DQ+FExw5Hx5KNqshmN8Ldl/r2N7cTg==}
peerDependencies:
'@babel/core': ^7.4.0-0
dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-compilation-targets': 7.22.9(@babel/core@7.22.9)
+ '@babel/core': 7.23.0
+ '@babel/helper-compilation-targets': 7.22.15
'@babel/helper-module-imports': 7.22.5
'@babel/helper-plugin-utils': 7.22.5
- '@babel/traverse': 7.22.8
+ '@babel/traverse': 7.23.0
debug: 4.3.4(supports-color@8.1.1)
lodash.debounce: 4.0.8
resolve: 1.22.3
@@ -2853,23 +2816,7 @@ packages:
'@babel/core': ^7.4.0-0
dependencies:
'@babel/core': 7.18.13
- '@babel/helper-compilation-targets': 7.22.9(@babel/core@7.18.13)
- '@babel/helper-plugin-utils': 7.22.5
- debug: 4.3.4(supports-color@8.1.1)
- lodash.debounce: 4.0.8
- resolve: 1.22.3
- semver: 6.3.1
- transitivePeerDependencies:
- - supports-color
- dev: true
-
- /@babel/helper-define-polyfill-provider@0.3.2(@babel/core@7.22.9):
- resolution: {integrity: sha512-r9QJJ+uDWrd+94BSPcP6/de67ygLtvVy6cK4luE6MOuDsZIdoaPBnfSpbO/+LTifjPckbKXRuI9BB/Z2/y3iTg==}
- peerDependencies:
- '@babel/core': ^7.4.0-0
- dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-compilation-targets': 7.22.9(@babel/core@7.22.9)
+ '@babel/helper-compilation-targets': 7.22.15
'@babel/helper-plugin-utils': 7.22.5
debug: 4.3.4(supports-color@8.1.1)
lodash.debounce: 4.0.8
@@ -2885,7 +2832,7 @@ packages:
'@babel/core': ^7.4.0-0
dependencies:
'@babel/core': 7.23.0
- '@babel/helper-compilation-targets': 7.22.9(@babel/core@7.23.0)
+ '@babel/helper-compilation-targets': 7.22.15
'@babel/helper-plugin-utils': 7.22.5
debug: 4.3.4(supports-color@8.1.1)
lodash.debounce: 4.0.8
@@ -2907,7 +2854,7 @@ packages:
resolution: {integrity: sha512-eyAYAsQmB80jNfg4baAtLeWAQHfHFiR483rzFK+BhETlGZaQC9bsfrugfXDCbRHLQbIA7U5NxhhOxN7p/dWIcg==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.22.5
+ '@babel/types': 7.23.0
dev: true
/@babel/helper-function-name@7.22.5:
@@ -2934,7 +2881,7 @@ packages:
resolution: {integrity: sha512-Muu8cdZwNN6mRRNG6lAYErJ5X3bRevgYR2O8wN0yn7jJSnGDu6eG59RfT29JHxGUovyfrh6Pj0XzmR7drNVL3Q==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.22.5
+ '@babel/types': 7.23.0
dev: true
/@babel/helper-member-expression-to-functions@7.22.15:
@@ -2979,41 +2926,13 @@ packages:
- supports-color
dev: true
- /@babel/helper-module-transforms@7.22.15(@babel/core@7.12.9):
- resolution: {integrity: sha512-l1UiX4UyHSFsYt17iQ3Se5pQQZZHa22zyIXURmvkmLCD4t/aU+dvNWHatKac/D9Vm9UES7nvIqHs4jZqKviUmQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0
- dependencies:
- '@babel/core': 7.12.9
- '@babel/helper-environment-visitor': 7.22.20
- '@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
- dev: true
-
- /@babel/helper-module-transforms@7.22.15(@babel/core@7.22.15):
- resolution: {integrity: sha512-l1UiX4UyHSFsYt17iQ3Se5pQQZZHa22zyIXURmvkmLCD4t/aU+dvNWHatKac/D9Vm9UES7nvIqHs4jZqKviUmQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0
- dependencies:
- '@babel/core': 7.22.15
- '@babel/helper-environment-visitor': 7.22.20
- '@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
- dev: true
-
- /@babel/helper-module-transforms@7.22.9(@babel/core@7.18.13):
+ /@babel/helper-module-transforms@7.22.9(@babel/core@7.20.5):
resolution: {integrity: sha512-t+WA2Xn5K+rTeGtC8jCsdAH52bjggG5TKRuRrAGNM/mjIbO4GxvlLMFOEz9wXY5I2XQ60PMFsAG2WIcG82dQMQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.18.13
+ '@babel/core': 7.20.5
'@babel/helper-environment-visitor': 7.22.5
'@babel/helper-module-imports': 7.22.15
'@babel/helper-simple-access': 7.22.5
@@ -3021,55 +2940,55 @@ packages:
'@babel/helper-validator-identifier': 7.22.20
dev: true
- /@babel/helper-module-transforms@7.22.9(@babel/core@7.20.5):
+ /@babel/helper-module-transforms@7.22.9(@babel/core@7.22.5):
resolution: {integrity: sha512-t+WA2Xn5K+rTeGtC8jCsdAH52bjggG5TKRuRrAGNM/mjIbO4GxvlLMFOEz9wXY5I2XQ60PMFsAG2WIcG82dQMQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.20.5
+ '@babel/core': 7.22.5
'@babel/helper-environment-visitor': 7.22.5
- '@babel/helper-module-imports': 7.22.15
+ '@babel/helper-module-imports': 7.22.5
'@babel/helper-simple-access': 7.22.5
'@babel/helper-split-export-declaration': 7.22.6
'@babel/helper-validator-identifier': 7.22.20
- dev: true
- /@babel/helper-module-transforms@7.22.9(@babel/core@7.22.5):
+ /@babel/helper-module-transforms@7.22.9(@babel/core@7.22.9):
resolution: {integrity: sha512-t+WA2Xn5K+rTeGtC8jCsdAH52bjggG5TKRuRrAGNM/mjIbO4GxvlLMFOEz9wXY5I2XQ60PMFsAG2WIcG82dQMQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.22.5
+ '@babel/core': 7.22.9
'@babel/helper-environment-visitor': 7.22.5
- '@babel/helper-module-imports': 7.22.5
+ '@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
+ dev: true
- /@babel/helper-module-transforms@7.22.9(@babel/core@7.22.9):
- resolution: {integrity: sha512-t+WA2Xn5K+rTeGtC8jCsdAH52bjggG5TKRuRrAGNM/mjIbO4GxvlLMFOEz9wXY5I2XQ60PMFsAG2WIcG82dQMQ==}
+ /@babel/helper-module-transforms@7.23.0(@babel/core@7.12.9):
+ resolution: {integrity: sha512-WhDWw1tdrlT0gMgUJSlX0IQvoO1eN279zrAUbVB+KpV2c3Tylz8+GnKOLllCS6Z/iZQEyVYxhZVUdPTqs2YYPw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-environment-visitor': 7.22.5
+ '@babel/core': 7.12.9
+ '@babel/helper-environment-visitor': 7.22.20
'@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
dev: true
- /@babel/helper-module-transforms@7.22.9(@babel/core@7.23.0):
- resolution: {integrity: sha512-t+WA2Xn5K+rTeGtC8jCsdAH52bjggG5TKRuRrAGNM/mjIbO4GxvlLMFOEz9wXY5I2XQ60PMFsAG2WIcG82dQMQ==}
+ /@babel/helper-module-transforms@7.23.0(@babel/core@7.18.13):
+ resolution: {integrity: sha512-WhDWw1tdrlT0gMgUJSlX0IQvoO1eN279zrAUbVB+KpV2c3Tylz8+GnKOLllCS6Z/iZQEyVYxhZVUdPTqs2YYPw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.23.0
- '@babel/helper-environment-visitor': 7.22.5
+ '@babel/core': 7.18.13
+ '@babel/helper-environment-visitor': 7.22.20
'@babel/helper-module-imports': 7.22.15
'@babel/helper-simple-access': 7.22.5
'@babel/helper-split-export-declaration': 7.22.6
@@ -3093,7 +3012,7 @@ packages:
resolution: {integrity: sha512-HP59oD9/fEHQkdcbgFCnbmgH5vIQTJbxh2yf+CdM89/glUNnuzr87Q8GIjGEnOktTROemO0Pe0iPAYbqZuOUiA==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.22.5
+ '@babel/types': 7.23.0
dev: true
/@babel/helper-optimise-call-expression@7.22.5:
@@ -3118,25 +3037,10 @@ packages:
'@babel/core': ^7.0.0
dependencies:
'@babel/core': 7.18.13
- '@babel/helper-annotate-as-pure': 7.18.6
- '@babel/helper-environment-visitor': 7.22.5
- '@babel/helper-wrap-function': 7.18.11
- '@babel/types': 7.22.5
- transitivePeerDependencies:
- - supports-color
- dev: true
-
- /@babel/helper-remap-async-to-generator@7.18.9(@babel/core@7.22.9):
- resolution: {integrity: sha512-dI7q50YKd8BAv3VEfgg7PS7yD3Rtbi2J1XMXaalXO0W0164hYLnh8zpjRS0mte9MfVp/tltvr/cfdXPvJr1opA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0
- dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-annotate-as-pure': 7.18.6
+ '@babel/helper-annotate-as-pure': 7.22.5
'@babel/helper-environment-visitor': 7.22.5
'@babel/helper-wrap-function': 7.18.11
- '@babel/types': 7.22.5
+ '@babel/types': 7.23.0
transitivePeerDependencies:
- supports-color
dev: true
@@ -3148,10 +3052,10 @@ packages:
'@babel/core': ^7.0.0
dependencies:
'@babel/core': 7.23.0
- '@babel/helper-annotate-as-pure': 7.18.6
+ '@babel/helper-annotate-as-pure': 7.22.5
'@babel/helper-environment-visitor': 7.22.5
'@babel/helper-wrap-function': 7.18.11
- '@babel/types': 7.22.5
+ '@babel/types': 7.23.0
transitivePeerDependencies:
- supports-color
dev: true
@@ -3163,13 +3067,25 @@ packages:
'@babel/helper-environment-visitor': 7.22.5
'@babel/helper-member-expression-to-functions': 7.21.0
'@babel/helper-optimise-call-expression': 7.18.6
- '@babel/template': 7.22.5
- '@babel/traverse': 7.22.8
- '@babel/types': 7.22.5
+ '@babel/template': 7.22.15
+ '@babel/traverse': 7.23.0
+ '@babel/types': 7.23.0
transitivePeerDependencies:
- supports-color
dev: true
+ /@babel/helper-replace-supers@7.22.9(@babel/core@7.18.13):
+ resolution: {integrity: sha512-LJIKvvpgPOPUThdYqcX6IXRuIcTkcAub0IaDRGCZH0p5GPUp7PhRU9QVgFcDDd51BaPkk77ZjqFwh6DZTAEmGg==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+ dependencies:
+ '@babel/core': 7.18.13
+ '@babel/helper-environment-visitor': 7.22.20
+ '@babel/helper-member-expression-to-functions': 7.22.15
+ '@babel/helper-optimise-call-expression': 7.22.5
+ dev: true
+
/@babel/helper-replace-supers@7.22.9(@babel/core@7.23.0):
resolution: {integrity: sha512-LJIKvvpgPOPUThdYqcX6IXRuIcTkcAub0IaDRGCZH0p5GPUp7PhRU9QVgFcDDd51BaPkk77ZjqFwh6DZTAEmGg==}
engines: {node: '>=6.9.0'}
@@ -3192,7 +3108,7 @@ packages:
resolution: {integrity: sha512-5y1JYeNKfvnT8sZcK9DVRtpTbGiomYIHviSP3OQWmDPU3DeH4a1ZlT/N2lyQ5P8egjcRaT/Y9aNqUxK0WsnIIg==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.22.5
+ '@babel/types': 7.23.0
dev: true
/@babel/helper-skip-transparent-expression-wrappers@7.22.5:
@@ -3234,9 +3150,9 @@ packages:
engines: {node: '>=6.9.0'}
dependencies:
'@babel/helper-function-name': 7.22.5
- '@babel/template': 7.22.5
- '@babel/traverse': 7.22.8
- '@babel/types': 7.22.5
+ '@babel/template': 7.22.15
+ '@babel/traverse': 7.23.0
+ '@babel/types': 7.23.0
transitivePeerDependencies:
- supports-color
dev: true
@@ -3252,17 +3168,6 @@ packages:
- supports-color
dev: true
- /@babel/helpers@7.22.15:
- resolution: {integrity: sha512-7pAjK0aSdxOwR+CcYAqgWOGy5dcfvzsTIfFTb2odQqW47MDfv14UaJDY6eng8ylM2EaeKXdxaSWESbkmaQHTmw==}
- engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/template': 7.22.15
- '@babel/traverse': 7.23.0
- '@babel/types': 7.23.0
- transitivePeerDependencies:
- - supports-color
- dev: true
-
/@babel/helpers@7.22.6:
resolution: {integrity: sha512-YjDs6y/fVOYFV8hAf1rxd1QvR9wJe1pDBZ2AREKq/SDayfPzgk0PBnVuTCE5X1acEpMMNOVUqoe+OwiZGJ+OaA==}
engines: {node: '>=6.9.0'}
@@ -3309,14 +3214,6 @@ packages:
'@babel/types': 7.22.5
dev: true
- /@babel/parser@7.22.16:
- resolution: {integrity: sha512-+gPfKv8UWeKKeJTUxe59+OobVcrYHETCsORl61EmSkmgymguYk/X5bp7GuUIXaFsc6y++v8ZxPsLSSuujqDphA==}
- engines: {node: '>=6.0.0'}
- hasBin: true
- dependencies:
- '@babel/types': 7.23.0
- dev: true
-
/@babel/parser@7.22.5:
resolution: {integrity: sha512-DFZMC9LJUG9PLOclRC32G63UXwzqS2koQC8dkx+PLdmt1xSePYpbT/NbsrJy8Q/muXz7o/h/d4A7Fuyixm559Q==}
engines: {node: '>=6.0.0'}
@@ -3349,23 +3246,13 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.18.6(@babel/core@7.22.9):
+ /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.18.6(@babel/core@7.23.0):
resolution: {integrity: sha512-Dgxsyg54Fx1d4Nge8UnvTrED63vrwOdPmyvPzlNN/boaliRP54pm3pGzZD1SJUwrBA+Cs/xdG8kXX6Mn/RfISQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-plugin-utils': 7.22.5
- dev: true
-
- /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.18.6(@babel/core@7.23.0):
- resolution: {integrity: sha512-Dgxsyg54Fx1d4Nge8UnvTrED63vrwOdPmyvPzlNN/boaliRP54pm3pGzZD1SJUwrBA+Cs/xdG8kXX6Mn/RfISQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0
- dependencies:
- '@babel/core': 7.23.0
+ '@babel/core': 7.23.0
'@babel/helper-plugin-utils': 7.22.5
dev: true
@@ -3381,18 +3268,6 @@ packages:
'@babel/plugin-proposal-optional-chaining': 7.18.9(@babel/core@7.18.13)
dev: true
- /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.18.9(@babel/core@7.22.9):
- resolution: {integrity: sha512-AHrP9jadvH7qlOj6PINbgSuphjQUAK7AOT7DPjBo9EHoLhQTnnK5u45e1Hd4DbSQEO9nqPWtQ89r+XEOWFScKg==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.13.0
- dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-plugin-utils': 7.22.5
- '@babel/helper-skip-transparent-expression-wrappers': 7.20.0
- '@babel/plugin-proposal-optional-chaining': 7.18.9(@babel/core@7.22.9)
- dev: true
-
/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.18.9(@babel/core@7.23.0):
resolution: {integrity: sha512-AHrP9jadvH7qlOj6PINbgSuphjQUAK7AOT7DPjBo9EHoLhQTnnK5u45e1Hd4DbSQEO9nqPWtQ89r+XEOWFScKg==}
engines: {node: '>=6.9.0'}
@@ -3420,21 +3295,6 @@ packages:
- supports-color
dev: true
- /@babel/plugin-proposal-async-generator-functions@7.18.10(@babel/core@7.22.9):
- resolution: {integrity: sha512-1mFuY2TOsR1hxbjCo4QL+qlIjV07p4H4EUYw2J/WCqsvFV6V9X9z9YhXbWndc/4fw+hYGlDT7egYxliMp5O6Ew==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-environment-visitor': 7.22.5
- '@babel/helper-plugin-utils': 7.22.5
- '@babel/helper-remap-async-to-generator': 7.18.9(@babel/core@7.22.9)
- '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.22.9)
- transitivePeerDependencies:
- - supports-color
- dev: true
-
/@babel/plugin-proposal-async-generator-functions@7.18.10(@babel/core@7.23.0):
resolution: {integrity: sha512-1mFuY2TOsR1hxbjCo4QL+qlIjV07p4H4EUYw2J/WCqsvFV6V9X9z9YhXbWndc/4fw+hYGlDT7egYxliMp5O6Ew==}
engines: {node: '>=6.9.0'}
@@ -3457,23 +3317,8 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.18.13
- '@babel/helper-create-class-features-plugin': 7.21.0(@babel/core@7.18.13)
+ '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.18.13)
'@babel/helper-plugin-utils': 7.22.5
- transitivePeerDependencies:
- - supports-color
- dev: true
-
- /@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.22.9):
- resolution: {integrity: sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-create-class-features-plugin': 7.21.0(@babel/core@7.22.9)
- '@babel/helper-plugin-utils': 7.22.5
- transitivePeerDependencies:
- - supports-color
dev: true
/@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.23.0):
@@ -3483,10 +3328,8 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.23.0
- '@babel/helper-create-class-features-plugin': 7.21.0(@babel/core@7.23.0)
+ '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.23.0)
'@babel/helper-plugin-utils': 7.22.5
- transitivePeerDependencies:
- - supports-color
dev: true
/@babel/plugin-proposal-class-static-block@7.18.6(@babel/core@7.18.13):
@@ -3496,25 +3339,9 @@ packages:
'@babel/core': ^7.12.0
dependencies:
'@babel/core': 7.18.13
- '@babel/helper-create-class-features-plugin': 7.21.0(@babel/core@7.18.13)
+ '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.18.13)
'@babel/helper-plugin-utils': 7.22.5
'@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.18.13)
- transitivePeerDependencies:
- - supports-color
- dev: true
-
- /@babel/plugin-proposal-class-static-block@7.18.6(@babel/core@7.22.9):
- resolution: {integrity: sha512-+I3oIiNxrCpup3Gi8n5IGMwj0gOCAjcJUSQEcotNnCCPMEnixawOQ+KeJPlgfjzx+FKQ1QSyZOWe7wmoJp7vhw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.12.0
- dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-create-class-features-plugin': 7.21.0(@babel/core@7.22.9)
- '@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.22.9)
- transitivePeerDependencies:
- - supports-color
dev: true
/@babel/plugin-proposal-class-static-block@7.18.6(@babel/core@7.23.0):
@@ -3524,25 +3351,23 @@ packages:
'@babel/core': ^7.12.0
dependencies:
'@babel/core': 7.23.0
- '@babel/helper-create-class-features-plugin': 7.21.0(@babel/core@7.23.0)
+ '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.23.0)
'@babel/helper-plugin-utils': 7.22.5
'@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.23.0)
- transitivePeerDependencies:
- - supports-color
dev: true
- /@babel/plugin-proposal-decorators@7.18.10(@babel/core@7.22.9):
+ /@babel/plugin-proposal-decorators@7.18.10(@babel/core@7.23.0):
resolution: {integrity: sha512-wdGTwWF5QtpTY/gbBtQLAiCnoxfD4qMbN87NYZle1dOZ9Os8Y6zXcKrIaOU8W+TIvFUWVGG9tUgNww3CjXRVVw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-create-class-features-plugin': 7.21.0(@babel/core@7.22.9)
+ '@babel/core': 7.23.0
+ '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.23.0)
'@babel/helper-plugin-utils': 7.22.5
'@babel/helper-replace-supers': 7.20.7
'@babel/helper-split-export-declaration': 7.22.6
- '@babel/plugin-syntax-decorators': 7.18.6(@babel/core@7.22.9)
+ '@babel/plugin-syntax-decorators': 7.18.6(@babel/core@7.23.0)
transitivePeerDependencies:
- supports-color
dev: true
@@ -3558,17 +3383,6 @@ packages:
'@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.18.13)
dev: true
- /@babel/plugin-proposal-dynamic-import@7.18.6(@babel/core@7.22.9):
- resolution: {integrity: sha512-1auuwmK+Rz13SJj36R+jqFPMJWyKEDd7lLSdOj4oJK0UTgGueSAtkrCvz9ewmgyU/P941Rv2fQwZJN8s6QruXw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.22.9)
- dev: true
-
/@babel/plugin-proposal-dynamic-import@7.18.6(@babel/core@7.23.0):
resolution: {integrity: sha512-1auuwmK+Rz13SJj36R+jqFPMJWyKEDd7lLSdOj4oJK0UTgGueSAtkrCvz9ewmgyU/P941Rv2fQwZJN8s6QruXw==}
engines: {node: '>=6.9.0'}
@@ -3580,15 +3394,15 @@ packages:
'@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.23.0)
dev: true
- /@babel/plugin-proposal-export-default-from@7.18.10(@babel/core@7.22.9):
+ /@babel/plugin-proposal-export-default-from@7.18.10(@babel/core@7.23.0):
resolution: {integrity: sha512-5H2N3R2aQFxkV4PIBUR/i7PUSwgTZjouJKzI8eKswfIjT0PhvzkPn0t0wIS5zn6maQuvtT0t1oHtMUz61LOuow==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.9
+ '@babel/core': 7.23.0
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-export-default-from': 7.18.6(@babel/core@7.22.9)
+ '@babel/plugin-syntax-export-default-from': 7.18.6(@babel/core@7.23.0)
dev: true
/@babel/plugin-proposal-export-namespace-from@7.18.9(@babel/core@7.18.13):
@@ -3602,17 +3416,6 @@ packages:
'@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.18.13)
dev: true
- /@babel/plugin-proposal-export-namespace-from@7.18.9(@babel/core@7.22.9):
- resolution: {integrity: sha512-k1NtHyOMvlDDFeb9G5PhUXuGj8m/wiwojgQVEhJ/fsVsMCpLyOP4h0uGEjYJKrRI+EVPlb5Jk+Gt9P97lOGwtA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.22.9)
- dev: true
-
/@babel/plugin-proposal-export-namespace-from@7.18.9(@babel/core@7.23.0):
resolution: {integrity: sha512-k1NtHyOMvlDDFeb9G5PhUXuGj8m/wiwojgQVEhJ/fsVsMCpLyOP4h0uGEjYJKrRI+EVPlb5Jk+Gt9P97lOGwtA==}
engines: {node: '>=6.9.0'}
@@ -3635,17 +3438,6 @@ packages:
'@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.18.13)
dev: true
- /@babel/plugin-proposal-json-strings@7.18.6(@babel/core@7.22.9):
- resolution: {integrity: sha512-lr1peyn9kOdbYc0xr0OdHTZ5FMqS6Di+H0Fz2I/JwMzGmzJETNeOFq2pBySw6X/KFL5EWDjlJuMsUGRFb8fQgQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.22.9)
- dev: true
-
/@babel/plugin-proposal-json-strings@7.18.6(@babel/core@7.23.0):
resolution: {integrity: sha512-lr1peyn9kOdbYc0xr0OdHTZ5FMqS6Di+H0Fz2I/JwMzGmzJETNeOFq2pBySw6X/KFL5EWDjlJuMsUGRFb8fQgQ==}
engines: {node: '>=6.9.0'}
@@ -3668,17 +3460,6 @@ packages:
'@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.18.13)
dev: true
- /@babel/plugin-proposal-logical-assignment-operators@7.18.9(@babel/core@7.22.9):
- resolution: {integrity: sha512-128YbMpjCrP35IOExw2Fq+x55LMP42DzhOhX2aNNIdI9avSWl2PI0yuBWarr3RYpZBSPtabfadkH2yeRiMD61Q==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.22.9)
- dev: true
-
/@babel/plugin-proposal-logical-assignment-operators@7.18.9(@babel/core@7.23.0):
resolution: {integrity: sha512-128YbMpjCrP35IOExw2Fq+x55LMP42DzhOhX2aNNIdI9avSWl2PI0yuBWarr3RYpZBSPtabfadkH2yeRiMD61Q==}
engines: {node: '>=6.9.0'}
@@ -3701,17 +3482,6 @@ packages:
'@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.18.13)
dev: true
- /@babel/plugin-proposal-nullish-coalescing-operator@7.18.6(@babel/core@7.22.9):
- resolution: {integrity: sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.22.9)
- dev: true
-
/@babel/plugin-proposal-nullish-coalescing-operator@7.18.6(@babel/core@7.23.0):
resolution: {integrity: sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==}
engines: {node: '>=6.9.0'}
@@ -3734,17 +3504,6 @@ packages:
'@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.18.13)
dev: true
- /@babel/plugin-proposal-numeric-separator@7.18.6(@babel/core@7.22.9):
- resolution: {integrity: sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.22.9)
- dev: true
-
/@babel/plugin-proposal-numeric-separator@7.18.6(@babel/core@7.23.0):
resolution: {integrity: sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==}
engines: {node: '>=6.9.0'}
@@ -3775,26 +3534,12 @@ packages:
dependencies:
'@babel/compat-data': 7.22.9
'@babel/core': 7.18.13
- '@babel/helper-compilation-targets': 7.22.9(@babel/core@7.18.13)
+ '@babel/helper-compilation-targets': 7.22.15
'@babel/helper-plugin-utils': 7.22.5
'@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.18.13)
'@babel/plugin-transform-parameters': 7.18.8(@babel/core@7.18.13)
dev: true
- /@babel/plugin-proposal-object-rest-spread@7.18.9(@babel/core@7.22.9):
- resolution: {integrity: sha512-kDDHQ5rflIeY5xl69CEqGEZ0KY369ehsCIEbTGb4siHG5BE9sga/T0r0OUwyZNLMmZE79E1kbsqAjwFCW4ds6Q==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/compat-data': 7.22.9
- '@babel/core': 7.22.9
- '@babel/helper-compilation-targets': 7.22.9(@babel/core@7.22.9)
- '@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.22.9)
- '@babel/plugin-transform-parameters': 7.18.8(@babel/core@7.22.9)
- dev: true
-
/@babel/plugin-proposal-object-rest-spread@7.18.9(@babel/core@7.23.0):
resolution: {integrity: sha512-kDDHQ5rflIeY5xl69CEqGEZ0KY369ehsCIEbTGb4siHG5BE9sga/T0r0OUwyZNLMmZE79E1kbsqAjwFCW4ds6Q==}
engines: {node: '>=6.9.0'}
@@ -3803,7 +3548,7 @@ packages:
dependencies:
'@babel/compat-data': 7.22.9
'@babel/core': 7.23.0
- '@babel/helper-compilation-targets': 7.22.9(@babel/core@7.23.0)
+ '@babel/helper-compilation-targets': 7.22.15
'@babel/helper-plugin-utils': 7.22.5
'@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.23.0)
'@babel/plugin-transform-parameters': 7.18.8(@babel/core@7.23.0)
@@ -3820,17 +3565,6 @@ packages:
'@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.18.13)
dev: true
- /@babel/plugin-proposal-optional-catch-binding@7.18.6(@babel/core@7.22.9):
- resolution: {integrity: sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.22.9)
- dev: true
-
/@babel/plugin-proposal-optional-catch-binding@7.18.6(@babel/core@7.23.0):
resolution: {integrity: sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw==}
engines: {node: '>=6.9.0'}
@@ -3854,18 +3588,6 @@ packages:
'@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.18.13)
dev: true
- /@babel/plugin-proposal-optional-chaining@7.18.9(@babel/core@7.22.9):
- resolution: {integrity: sha512-v5nwt4IqBXihxGsW2QmCWMDS3B3bzGIk/EQVZz2ei7f3NJl8NzAJVvUmpDW5q1CRNY+Beb/k58UAH1Km1N411w==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-plugin-utils': 7.22.5
- '@babel/helper-skip-transparent-expression-wrappers': 7.20.0
- '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.22.9)
- dev: true
-
/@babel/plugin-proposal-optional-chaining@7.18.9(@babel/core@7.23.0):
resolution: {integrity: sha512-v5nwt4IqBXihxGsW2QmCWMDS3B3bzGIk/EQVZz2ei7f3NJl8NzAJVvUmpDW5q1CRNY+Beb/k58UAH1Km1N411w==}
engines: {node: '>=6.9.0'}
@@ -3885,23 +3607,8 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.18.13
- '@babel/helper-create-class-features-plugin': 7.21.0(@babel/core@7.18.13)
- '@babel/helper-plugin-utils': 7.22.5
- transitivePeerDependencies:
- - supports-color
- dev: true
-
- /@babel/plugin-proposal-private-methods@7.18.6(@babel/core@7.22.9):
- resolution: {integrity: sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-create-class-features-plugin': 7.21.0(@babel/core@7.22.9)
+ '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.18.13)
'@babel/helper-plugin-utils': 7.22.5
- transitivePeerDependencies:
- - supports-color
dev: true
/@babel/plugin-proposal-private-methods@7.18.6(@babel/core@7.23.0):
@@ -3911,10 +3618,8 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.23.0
- '@babel/helper-create-class-features-plugin': 7.21.0(@babel/core@7.23.0)
+ '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.23.0)
'@babel/helper-plugin-utils': 7.22.5
- transitivePeerDependencies:
- - supports-color
dev: true
/@babel/plugin-proposal-private-property-in-object@7.18.6(@babel/core@7.18.13):
@@ -3924,27 +3629,10 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.18.13
- '@babel/helper-annotate-as-pure': 7.18.6
- '@babel/helper-create-class-features-plugin': 7.21.0(@babel/core@7.18.13)
+ '@babel/helper-annotate-as-pure': 7.22.5
+ '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.18.13)
'@babel/helper-plugin-utils': 7.22.5
'@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.18.13)
- transitivePeerDependencies:
- - supports-color
- dev: true
-
- /@babel/plugin-proposal-private-property-in-object@7.18.6(@babel/core@7.22.9):
- resolution: {integrity: sha512-9Rysx7FOctvT5ouj5JODjAFAkgGoudQuLPamZb0v1TGLpapdNaftzifU8NTWQm0IRjqoYypdrSmyWgkocDQ8Dw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-annotate-as-pure': 7.18.6
- '@babel/helper-create-class-features-plugin': 7.21.0(@babel/core@7.22.9)
- '@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.22.9)
- transitivePeerDependencies:
- - supports-color
dev: true
/@babel/plugin-proposal-private-property-in-object@7.18.6(@babel/core@7.23.0):
@@ -3954,12 +3642,10 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.23.0
- '@babel/helper-annotate-as-pure': 7.18.6
- '@babel/helper-create-class-features-plugin': 7.21.0(@babel/core@7.23.0)
+ '@babel/helper-annotate-as-pure': 7.22.5
+ '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.23.0)
'@babel/helper-plugin-utils': 7.22.5
'@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.23.0)
- transitivePeerDependencies:
- - supports-color
dev: true
/@babel/plugin-proposal-unicode-property-regex@7.18.6(@babel/core@7.18.13):
@@ -3973,17 +3659,6 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-proposal-unicode-property-regex@7.18.6(@babel/core@7.22.9):
- resolution: {integrity: sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w==}
- engines: {node: '>=4'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-create-regexp-features-plugin': 7.18.6(@babel/core@7.22.9)
- '@babel/helper-plugin-utils': 7.22.5
- dev: true
-
/@babel/plugin-proposal-unicode-property-regex@7.18.6(@babel/core@7.23.0):
resolution: {integrity: sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w==}
engines: {node: '>=4'}
@@ -4004,15 +3679,6 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.22.9):
- resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-plugin-utils': 7.22.5
- dev: true
-
/@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.23.0):
resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==}
peerDependencies:
@@ -4040,15 +3706,6 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.22.9):
- resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-plugin-utils': 7.22.5
- dev: true
-
/@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.23.0):
resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==}
peerDependencies:
@@ -4068,16 +3725,6 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.22.9):
- resolution: {integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-plugin-utils': 7.22.5
- dev: true
-
/@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.23.0):
resolution: {integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==}
engines: {node: '>=6.9.0'}
@@ -4088,13 +3735,13 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-syntax-decorators@7.18.6(@babel/core@7.22.9):
+ /@babel/plugin-syntax-decorators@7.18.6(@babel/core@7.23.0):
resolution: {integrity: sha512-fqyLgjcxf/1yhyZ6A+yo1u9gJ7eleFQod2lkaUsF9DQ7sbbY3Ligym3L0+I2c0WmqNKDpoD9UTb1AKP3qRMOAQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.9
+ '@babel/core': 7.23.0
'@babel/helper-plugin-utils': 7.22.5
dev: true
@@ -4107,15 +3754,6 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.22.9):
- resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-plugin-utils': 7.22.5
- dev: true
-
/@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.23.0):
resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==}
peerDependencies:
@@ -4125,13 +3763,13 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-syntax-export-default-from@7.18.6(@babel/core@7.22.9):
+ /@babel/plugin-syntax-export-default-from@7.18.6(@babel/core@7.23.0):
resolution: {integrity: sha512-Kr//z3ujSVNx6E9z9ih5xXXMqK07VVTuqPmqGe6Mss/zW5XPeLZeSDZoP9ab/hT4wPKqAgjl2PnhPrcpk8Seew==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.9
+ '@babel/core': 7.23.0
'@babel/helper-plugin-utils': 7.22.5
dev: true
@@ -4144,15 +3782,6 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.22.9):
- resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-plugin-utils': 7.22.5
- dev: true
-
/@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.23.0):
resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==}
peerDependencies:
@@ -4182,16 +3811,6 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-syntax-import-assertions@7.18.6(@babel/core@7.22.9):
- resolution: {integrity: sha512-/DU3RXad9+bZwrgWJQKbr39gYbJpLJHezqEzRzi/BHRlJ9zsQb4CK2CA/5apllXNomwA1qHwzvHl+AdEmC5krQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-plugin-utils': 7.22.5
- dev: true
-
/@babel/plugin-syntax-import-assertions@7.18.6(@babel/core@7.23.0):
resolution: {integrity: sha512-/DU3RXad9+bZwrgWJQKbr39gYbJpLJHezqEzRzi/BHRlJ9zsQb4CK2CA/5apllXNomwA1qHwzvHl+AdEmC5krQ==}
engines: {node: '>=6.9.0'}
@@ -4220,15 +3839,6 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.22.9):
- resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-plugin-utils': 7.22.5
- dev: true
-
/@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.23.0):
resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==}
peerDependencies:
@@ -4305,15 +3915,6 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.22.9):
- resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-plugin-utils': 7.22.5
- dev: true
-
/@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.23.0):
resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==}
peerDependencies:
@@ -4332,15 +3933,6 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.22.9):
- resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-plugin-utils': 7.22.5
- dev: true
-
/@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.23.0):
resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==}
peerDependencies:
@@ -4359,15 +3951,6 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.22.9):
- resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-plugin-utils': 7.22.5
- dev: true
-
/@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.23.0):
resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==}
peerDependencies:
@@ -4395,15 +3978,6 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.22.9):
- resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-plugin-utils': 7.22.5
- dev: true
-
/@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.23.0):
resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==}
peerDependencies:
@@ -4422,15 +3996,6 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.22.9):
- resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-plugin-utils': 7.22.5
- dev: true
-
/@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.23.0):
resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==}
peerDependencies:
@@ -4449,15 +4014,6 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.22.9):
- resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-plugin-utils': 7.22.5
- dev: true
-
/@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.23.0):
resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==}
peerDependencies:
@@ -4477,16 +4033,6 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.22.9):
- resolution: {integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-plugin-utils': 7.22.5
- dev: true
-
/@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.23.0):
resolution: {integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==}
engines: {node: '>=6.9.0'}
@@ -4507,16 +4053,6 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.22.9):
- resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-plugin-utils': 7.22.5
- dev: true
-
/@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.23.0):
resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==}
engines: {node: '>=6.9.0'}
@@ -4567,16 +4103,6 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-arrow-functions@7.18.6(@babel/core@7.22.9):
- resolution: {integrity: sha512-9S9X9RUefzrsHZmKMbDXxweEH+YlE8JJEuat9FdvW9Qh1cw7W64jELCtWNkPBPX5En45uy28KGvA/AySqUh8CQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-plugin-utils': 7.22.5
- dev: true
-
/@babel/plugin-transform-arrow-functions@7.18.6(@babel/core@7.23.0):
resolution: {integrity: sha512-9S9X9RUefzrsHZmKMbDXxweEH+YlE8JJEuat9FdvW9Qh1cw7W64jELCtWNkPBPX5En45uy28KGvA/AySqUh8CQ==}
engines: {node: '>=6.9.0'}
@@ -4601,20 +4127,6 @@ packages:
- supports-color
dev: true
- /@babel/plugin-transform-async-to-generator@7.18.6(@babel/core@7.22.9):
- resolution: {integrity: sha512-ARE5wZLKnTgPW7/1ftQmSi1CmkqqHo2DNmtztFhvgtOWSDfq0Cq9/9L+KnZNYSNrydBekhW3rwShduf59RoXag==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-module-imports': 7.22.5
- '@babel/helper-plugin-utils': 7.22.5
- '@babel/helper-remap-async-to-generator': 7.18.9(@babel/core@7.22.9)
- transitivePeerDependencies:
- - supports-color
- dev: true
-
/@babel/plugin-transform-async-to-generator@7.18.6(@babel/core@7.23.0):
resolution: {integrity: sha512-ARE5wZLKnTgPW7/1ftQmSi1CmkqqHo2DNmtztFhvgtOWSDfq0Cq9/9L+KnZNYSNrydBekhW3rwShduf59RoXag==}
engines: {node: '>=6.9.0'}
@@ -4639,16 +4151,6 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-block-scoped-functions@7.18.6(@babel/core@7.22.9):
- resolution: {integrity: sha512-ExUcOqpPWnliRcPqves5HJcJOvHvIIWfuS4sroBUenPuMdmW+SMHDakmtS7qOo13sVppmUijqeTv7qqGsvURpQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-plugin-utils': 7.22.5
- dev: true
-
/@babel/plugin-transform-block-scoped-functions@7.18.6(@babel/core@7.23.0):
resolution: {integrity: sha512-ExUcOqpPWnliRcPqves5HJcJOvHvIIWfuS4sroBUenPuMdmW+SMHDakmtS7qOo13sVppmUijqeTv7qqGsvURpQ==}
engines: {node: '>=6.9.0'}
@@ -4669,16 +4171,6 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-block-scoping@7.18.9(@babel/core@7.22.9):
- resolution: {integrity: sha512-5sDIJRV1KtQVEbt/EIBwGy4T01uYIo4KRB3VUqzkhrAIOGx7AoctL9+Ux88btY0zXdDyPJ9mW+bg+v+XEkGmtw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-plugin-utils': 7.22.5
- dev: true
-
/@babel/plugin-transform-block-scoping@7.18.9(@babel/core@7.23.0):
resolution: {integrity: sha512-5sDIJRV1KtQVEbt/EIBwGy4T01uYIo4KRB3VUqzkhrAIOGx7AoctL9+Ux88btY0zXdDyPJ9mW+bg+v+XEkGmtw==}
engines: {node: '>=6.9.0'}
@@ -4696,26 +4188,7 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.18.13
- '@babel/helper-annotate-as-pure': 7.18.6
- '@babel/helper-environment-visitor': 7.22.5
- '@babel/helper-function-name': 7.22.5
- '@babel/helper-optimise-call-expression': 7.18.6
- '@babel/helper-plugin-utils': 7.22.5
- '@babel/helper-replace-supers': 7.20.7
- '@babel/helper-split-export-declaration': 7.22.6
- globals: 11.12.0
- transitivePeerDependencies:
- - supports-color
- dev: true
-
- /@babel/plugin-transform-classes@7.18.9(@babel/core@7.22.9):
- resolution: {integrity: sha512-EkRQxsxoytpTlKJmSPYrsOMjCILacAjtSVkd4gChEe2kXjFCun3yohhW5I7plXJhCemM0gKsaGMcO8tinvCA5g==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-annotate-as-pure': 7.18.6
+ '@babel/helper-annotate-as-pure': 7.22.5
'@babel/helper-environment-visitor': 7.22.5
'@babel/helper-function-name': 7.22.5
'@babel/helper-optimise-call-expression': 7.18.6
@@ -4734,7 +4207,7 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.23.0
- '@babel/helper-annotate-as-pure': 7.18.6
+ '@babel/helper-annotate-as-pure': 7.22.5
'@babel/helper-environment-visitor': 7.22.5
'@babel/helper-function-name': 7.22.5
'@babel/helper-optimise-call-expression': 7.18.6
@@ -4756,16 +4229,6 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-computed-properties@7.18.9(@babel/core@7.22.9):
- resolution: {integrity: sha512-+i0ZU1bCDymKakLxn5srGHrsAPRELC2WIbzwjLhHW9SIE1cPYkLCL0NlnXMZaM1vhfgA2+M7hySk42VBvrkBRw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-plugin-utils': 7.22.5
- dev: true
-
/@babel/plugin-transform-computed-properties@7.18.9(@babel/core@7.23.0):
resolution: {integrity: sha512-+i0ZU1bCDymKakLxn5srGHrsAPRELC2WIbzwjLhHW9SIE1cPYkLCL0NlnXMZaM1vhfgA2+M7hySk42VBvrkBRw==}
engines: {node: '>=6.9.0'}
@@ -4786,16 +4249,6 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-destructuring@7.18.13(@babel/core@7.22.9):
- resolution: {integrity: sha512-TodpQ29XekIsex2A+YJPj5ax2plkGa8YYY6mFjCohk/IG9IY42Rtuj1FuDeemfg2ipxIFLzPeA83SIBnlhSIow==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-plugin-utils': 7.22.5
- dev: true
-
/@babel/plugin-transform-destructuring@7.18.13(@babel/core@7.23.0):
resolution: {integrity: sha512-TodpQ29XekIsex2A+YJPj5ax2plkGa8YYY6mFjCohk/IG9IY42Rtuj1FuDeemfg2ipxIFLzPeA83SIBnlhSIow==}
engines: {node: '>=6.9.0'}
@@ -4817,17 +4270,6 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-dotall-regex@7.18.6(@babel/core@7.22.9):
- resolution: {integrity: sha512-6S3jpun1eEbAxq7TdjLotAsl4WpQI9DxfkycRcKrjhQYzU87qpXdknpBg/e+TdcMehqGnLFi7tnFUBR02Vq6wg==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-create-regexp-features-plugin': 7.18.6(@babel/core@7.22.9)
- '@babel/helper-plugin-utils': 7.22.5
- dev: true
-
/@babel/plugin-transform-dotall-regex@7.18.6(@babel/core@7.23.0):
resolution: {integrity: sha512-6S3jpun1eEbAxq7TdjLotAsl4WpQI9DxfkycRcKrjhQYzU87qpXdknpBg/e+TdcMehqGnLFi7tnFUBR02Vq6wg==}
engines: {node: '>=6.9.0'}
@@ -4849,16 +4291,6 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-duplicate-keys@7.18.9(@babel/core@7.22.9):
- resolution: {integrity: sha512-d2bmXCtZXYc59/0SanQKbiWINadaJXqtvIQIzd4+hNwkWBgyCd5F/2t1kXoUdvPMrxzPvhK6EMQRROxsue+mfw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-plugin-utils': 7.22.5
- dev: true
-
/@babel/plugin-transform-duplicate-keys@7.18.9(@babel/core@7.23.0):
resolution: {integrity: sha512-d2bmXCtZXYc59/0SanQKbiWINadaJXqtvIQIzd4+hNwkWBgyCd5F/2t1kXoUdvPMrxzPvhK6EMQRROxsue+mfw==}
engines: {node: '>=6.9.0'}
@@ -4880,17 +4312,6 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-exponentiation-operator@7.18.6(@babel/core@7.22.9):
- resolution: {integrity: sha512-wzEtc0+2c88FVR34aQmiz56dxEkxr2g8DQb/KfaFa1JYXOFVsbhvAonFN6PwVWj++fKmku8NP80plJ5Et4wqHw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-builder-binary-assignment-operator-visitor': 7.18.9
- '@babel/helper-plugin-utils': 7.22.5
- dev: true
-
/@babel/plugin-transform-exponentiation-operator@7.18.6(@babel/core@7.23.0):
resolution: {integrity: sha512-wzEtc0+2c88FVR34aQmiz56dxEkxr2g8DQb/KfaFa1JYXOFVsbhvAonFN6PwVWj++fKmku8NP80plJ5Et4wqHw==}
engines: {node: '>=6.9.0'}
@@ -4923,16 +4344,6 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-for-of@7.18.8(@babel/core@7.22.9):
- resolution: {integrity: sha512-yEfTRnjuskWYo0k1mHUqrVWaZwrdq8AYbfrpqULOJOaucGSp4mNMVps+YtA8byoevxS/urwU75vyhQIxcCgiBQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-plugin-utils': 7.22.5
- dev: true
-
/@babel/plugin-transform-for-of@7.18.8(@babel/core@7.23.0):
resolution: {integrity: sha512-yEfTRnjuskWYo0k1mHUqrVWaZwrdq8AYbfrpqULOJOaucGSp4mNMVps+YtA8byoevxS/urwU75vyhQIxcCgiBQ==}
engines: {node: '>=6.9.0'}
@@ -4950,19 +4361,7 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.18.13
- '@babel/helper-compilation-targets': 7.22.9(@babel/core@7.18.13)
- '@babel/helper-function-name': 7.22.5
- '@babel/helper-plugin-utils': 7.22.5
- dev: true
-
- /@babel/plugin-transform-function-name@7.18.9(@babel/core@7.22.9):
- resolution: {integrity: sha512-WvIBoRPaJQ5yVHzcnJFor7oS5Ls0PYixlTYE63lCj2RtdQEl15M68FXQlxnG6wdraJIXRdR7KI+hQ7q/9QjrCQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-compilation-targets': 7.22.9(@babel/core@7.22.9)
+ '@babel/helper-compilation-targets': 7.22.15
'@babel/helper-function-name': 7.22.5
'@babel/helper-plugin-utils': 7.22.5
dev: true
@@ -4974,7 +4373,7 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.23.0
- '@babel/helper-compilation-targets': 7.22.9(@babel/core@7.23.0)
+ '@babel/helper-compilation-targets': 7.22.15
'@babel/helper-function-name': 7.22.5
'@babel/helper-plugin-utils': 7.22.5
dev: true
@@ -4989,43 +4388,23 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-literals@7.18.9(@babel/core@7.22.9):
- resolution: {integrity: sha512-IFQDSRoTPnrAIrI5zoZv73IFeZu2dhu6irxQjY9rNjTT53VmKg9fenjvoiOWOkJ6mm4jKVPtdMzBY98Fp4Z4cg==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-plugin-utils': 7.22.5
- dev: true
-
/@babel/plugin-transform-literals@7.18.9(@babel/core@7.23.0):
- resolution: {integrity: sha512-IFQDSRoTPnrAIrI5zoZv73IFeZu2dhu6irxQjY9rNjTT53VmKg9fenjvoiOWOkJ6mm4jKVPtdMzBY98Fp4Z4cg==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.23.0
- '@babel/helper-plugin-utils': 7.22.5
- dev: true
-
- /@babel/plugin-transform-member-expression-literals@7.18.6(@babel/core@7.18.13):
- resolution: {integrity: sha512-qSF1ihLGO3q+/g48k85tUjD033C29TNTVB2paCwZPVmOsjn9pClvYYrM2VeJpBY2bcNkuny0YUyTNRyRxJ54KA==}
+ resolution: {integrity: sha512-IFQDSRoTPnrAIrI5zoZv73IFeZu2dhu6irxQjY9rNjTT53VmKg9fenjvoiOWOkJ6mm4jKVPtdMzBY98Fp4Z4cg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.13
+ '@babel/core': 7.23.0
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-member-expression-literals@7.18.6(@babel/core@7.22.9):
+ /@babel/plugin-transform-member-expression-literals@7.18.6(@babel/core@7.18.13):
resolution: {integrity: sha512-qSF1ihLGO3q+/g48k85tUjD033C29TNTVB2paCwZPVmOsjn9pClvYYrM2VeJpBY2bcNkuny0YUyTNRyRxJ54KA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.9
+ '@babel/core': 7.18.13
'@babel/helper-plugin-utils': 7.22.5
dev: true
@@ -5046,19 +4425,7 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.18.13
- '@babel/helper-module-transforms': 7.22.9(@babel/core@7.18.13)
- '@babel/helper-plugin-utils': 7.22.5
- babel-plugin-dynamic-import-node: 2.3.3
- dev: true
-
- /@babel/plugin-transform-modules-amd@7.18.6(@babel/core@7.22.9):
- resolution: {integrity: sha512-Pra5aXsmTsOnjM3IajS8rTaLCy++nGM4v3YR4esk5PCsyg9z8NA5oQLwxzMUtDBd8F+UmVza3VxoAaWCbzH1rg==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-module-transforms': 7.22.9(@babel/core@7.22.9)
+ '@babel/helper-module-transforms': 7.23.0(@babel/core@7.18.13)
'@babel/helper-plugin-utils': 7.22.5
babel-plugin-dynamic-import-node: 2.3.3
dev: true
@@ -5070,7 +4437,7 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.23.0
- '@babel/helper-module-transforms': 7.22.9(@babel/core@7.23.0)
+ '@babel/helper-module-transforms': 7.23.0(@babel/core@7.23.0)
'@babel/helper-plugin-utils': 7.22.5
babel-plugin-dynamic-import-node: 2.3.3
dev: true
@@ -5082,20 +4449,7 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.18.13
- '@babel/helper-module-transforms': 7.22.9(@babel/core@7.18.13)
- '@babel/helper-plugin-utils': 7.22.5
- '@babel/helper-simple-access': 7.22.5
- babel-plugin-dynamic-import-node: 2.3.3
- dev: true
-
- /@babel/plugin-transform-modules-commonjs@7.18.6(@babel/core@7.22.9):
- resolution: {integrity: sha512-Qfv2ZOWikpvmedXQJDSbxNqy7Xr/j2Y8/KfijM0iJyKkBTmWuvCA1yeH1yDM7NJhBW/2aXxeucLj6i80/LAJ/Q==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-module-transforms': 7.22.9(@babel/core@7.22.9)
+ '@babel/helper-module-transforms': 7.23.0(@babel/core@7.18.13)
'@babel/helper-plugin-utils': 7.22.5
'@babel/helper-simple-access': 7.22.5
babel-plugin-dynamic-import-node: 2.3.3
@@ -5108,7 +4462,7 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.23.0
- '@babel/helper-module-transforms': 7.22.9(@babel/core@7.23.0)
+ '@babel/helper-module-transforms': 7.23.0(@babel/core@7.23.0)
'@babel/helper-plugin-utils': 7.22.5
'@babel/helper-simple-access': 7.22.5
babel-plugin-dynamic-import-node: 2.3.3
@@ -5122,21 +4476,7 @@ packages:
dependencies:
'@babel/core': 7.18.13
'@babel/helper-hoist-variables': 7.22.5
- '@babel/helper-module-transforms': 7.22.9(@babel/core@7.18.13)
- '@babel/helper-plugin-utils': 7.22.5
- '@babel/helper-validator-identifier': 7.22.20
- babel-plugin-dynamic-import-node: 2.3.3
- dev: true
-
- /@babel/plugin-transform-modules-systemjs@7.18.9(@babel/core@7.22.9):
- resolution: {integrity: sha512-zY/VSIbbqtoRoJKo2cDTewL364jSlZGvn0LKOf9ntbfxOvjfmyrdtEEOAdswOswhZEb8UH3jDkCKHd1sPgsS0A==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-hoist-variables': 7.22.5
- '@babel/helper-module-transforms': 7.22.9(@babel/core@7.22.9)
+ '@babel/helper-module-transforms': 7.23.0(@babel/core@7.18.13)
'@babel/helper-plugin-utils': 7.22.5
'@babel/helper-validator-identifier': 7.22.20
babel-plugin-dynamic-import-node: 2.3.3
@@ -5150,7 +4490,7 @@ packages:
dependencies:
'@babel/core': 7.23.0
'@babel/helper-hoist-variables': 7.22.5
- '@babel/helper-module-transforms': 7.22.9(@babel/core@7.23.0)
+ '@babel/helper-module-transforms': 7.23.0(@babel/core@7.23.0)
'@babel/helper-plugin-utils': 7.22.5
'@babel/helper-validator-identifier': 7.22.20
babel-plugin-dynamic-import-node: 2.3.3
@@ -5163,18 +4503,7 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.18.13
- '@babel/helper-module-transforms': 7.22.9(@babel/core@7.18.13)
- '@babel/helper-plugin-utils': 7.22.5
- dev: true
-
- /@babel/plugin-transform-modules-umd@7.18.6(@babel/core@7.22.9):
- resolution: {integrity: sha512-dcegErExVeXcRqNtkRU/z8WlBLnvD4MRnHgNs3MytRO1Mn1sHRyhbcpYbVMGclAqOjdW+9cfkdZno9dFdfKLfQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-module-transforms': 7.22.9(@babel/core@7.22.9)
+ '@babel/helper-module-transforms': 7.23.0(@babel/core@7.18.13)
'@babel/helper-plugin-utils': 7.22.5
dev: true
@@ -5185,7 +4514,7 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.23.0
- '@babel/helper-module-transforms': 7.22.9(@babel/core@7.23.0)
+ '@babel/helper-module-transforms': 7.23.0(@babel/core@7.23.0)
'@babel/helper-plugin-utils': 7.22.5
dev: true
@@ -5200,17 +4529,6 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-named-capturing-groups-regex@7.18.6(@babel/core@7.22.9):
- resolution: {integrity: sha512-UmEOGF8XgaIqD74bC8g7iV3RYj8lMf0Bw7NJzvnS9qQhM4mg+1WHKotUIdjxgD2RGrgFLZZPCFPFj3P/kVDYhg==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0
- dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-create-regexp-features-plugin': 7.18.6(@babel/core@7.22.9)
- '@babel/helper-plugin-utils': 7.22.5
- dev: true
-
/@babel/plugin-transform-named-capturing-groups-regex@7.18.6(@babel/core@7.23.0):
resolution: {integrity: sha512-UmEOGF8XgaIqD74bC8g7iV3RYj8lMf0Bw7NJzvnS9qQhM4mg+1WHKotUIdjxgD2RGrgFLZZPCFPFj3P/kVDYhg==}
engines: {node: '>=6.9.0'}
@@ -5232,16 +4550,6 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-new-target@7.18.6(@babel/core@7.22.9):
- resolution: {integrity: sha512-DjwFA/9Iu3Z+vrAn+8pBUGcjhxKguSMlsFqeCKbhb9BAV756v0krzVK04CRDi/4aqmk8BsHb4a/gFcaA5joXRw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-plugin-utils': 7.22.5
- dev: true
-
/@babel/plugin-transform-new-target@7.18.6(@babel/core@7.23.0):
resolution: {integrity: sha512-DjwFA/9Iu3Z+vrAn+8pBUGcjhxKguSMlsFqeCKbhb9BAV756v0krzVK04CRDi/4aqmk8BsHb4a/gFcaA5joXRw==}
engines: {node: '>=6.9.0'}
@@ -5265,19 +4573,6 @@ packages:
- supports-color
dev: true
- /@babel/plugin-transform-object-super@7.18.6(@babel/core@7.22.9):
- resolution: {integrity: sha512-uvGz6zk+pZoS1aTZrOvrbj6Pp/kK2mp45t2B+bTDre2UgsZZ8EZLSJtUg7m/no0zOJUWgFONpB7Zv9W2tSaFlA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-plugin-utils': 7.22.5
- '@babel/helper-replace-supers': 7.20.7
- transitivePeerDependencies:
- - supports-color
- dev: true
-
/@babel/plugin-transform-object-super@7.18.6(@babel/core@7.23.0):
resolution: {integrity: sha512-uvGz6zk+pZoS1aTZrOvrbj6Pp/kK2mp45t2B+bTDre2UgsZZ8EZLSJtUg7m/no0zOJUWgFONpB7Zv9W2tSaFlA==}
engines: {node: '>=6.9.0'}
@@ -5311,16 +4606,6 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-parameters@7.18.8(@babel/core@7.22.9):
- resolution: {integrity: sha512-ivfbE3X2Ss+Fj8nnXvKJS6sjRG4gzwPMsP+taZC+ZzEGjAYlvENixmt1sZ5Ca6tWls+BlKSGKPJ6OOXvXCbkFg==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-plugin-utils': 7.22.5
- dev: true
-
/@babel/plugin-transform-parameters@7.18.8(@babel/core@7.23.0):
resolution: {integrity: sha512-ivfbE3X2Ss+Fj8nnXvKJS6sjRG4gzwPMsP+taZC+ZzEGjAYlvENixmt1sZ5Ca6tWls+BlKSGKPJ6OOXvXCbkFg==}
engines: {node: '>=6.9.0'}
@@ -5341,16 +4626,6 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-property-literals@7.18.6(@babel/core@7.22.9):
- resolution: {integrity: sha512-cYcs6qlgafTud3PAzrrRNbQtfpQ8+y/+M5tKmksS9+M1ckbH6kzY8MrexEM9mcA6JDsukE19iIRvAyYl463sMg==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-plugin-utils': 7.22.5
- dev: true
-
/@babel/plugin-transform-property-literals@7.18.6(@babel/core@7.23.0):
resolution: {integrity: sha512-cYcs6qlgafTud3PAzrrRNbQtfpQ8+y/+M5tKmksS9+M1ckbH6kzY8MrexEM9mcA6JDsukE19iIRvAyYl463sMg==}
engines: {node: '>=6.9.0'}
@@ -5371,16 +4646,6 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-react-display-name@7.18.6(@babel/core@7.22.9):
- resolution: {integrity: sha512-TV4sQ+T013n61uMoygyMRm+xf04Bd5oqFpv2jAEQwSZ8NwQA7zeRPg1LMVg2PWi3zWBz+CLKD+v5bcpZ/BS0aA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-plugin-utils': 7.22.5
- dev: true
-
/@babel/plugin-transform-react-display-name@7.18.6(@babel/core@7.23.0):
resolution: {integrity: sha512-TV4sQ+T013n61uMoygyMRm+xf04Bd5oqFpv2jAEQwSZ8NwQA7zeRPg1LMVg2PWi3zWBz+CLKD+v5bcpZ/BS0aA==}
engines: {node: '>=6.9.0'}
@@ -5401,16 +4666,6 @@ packages:
'@babel/plugin-transform-react-jsx': 7.19.0(@babel/core@7.18.13)
dev: true
- /@babel/plugin-transform-react-jsx-development@7.18.6(@babel/core@7.22.9):
- resolution: {integrity: sha512-SA6HEjwYFKF7WDjWcMcMGUimmw/nhNRDWxr+KaLSCrkD/LMDBvWRmHAYgE1HDeF8KUuI8OAu+RT6EOtKxSW2qA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.22.9
- '@babel/plugin-transform-react-jsx': 7.19.0(@babel/core@7.22.9)
- dev: true
-
/@babel/plugin-transform-react-jsx-development@7.18.6(@babel/core@7.23.0):
resolution: {integrity: sha512-SA6HEjwYFKF7WDjWcMcMGUimmw/nhNRDWxr+KaLSCrkD/LMDBvWRmHAYgE1HDeF8KUuI8OAu+RT6EOtKxSW2qA==}
engines: {node: '>=6.9.0'}
@@ -5475,20 +4730,6 @@ packages:
'@babel/types': 7.22.5
dev: true
- /@babel/plugin-transform-react-jsx@7.19.0(@babel/core@7.22.9):
- resolution: {integrity: sha512-UVEvX3tXie3Szm3emi1+G63jyw1w5IcMY0FSKM+CRnKRI5Mr1YbCNgsSTwoTwKphQEG9P+QqmuRFneJPZuHNhg==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-annotate-as-pure': 7.18.6
- '@babel/helper-module-imports': 7.22.5
- '@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-jsx': 7.18.6(@babel/core@7.22.9)
- '@babel/types': 7.22.5
- dev: true
-
/@babel/plugin-transform-react-jsx@7.19.0(@babel/core@7.23.0):
resolution: {integrity: sha512-UVEvX3tXie3Szm3emi1+G63jyw1w5IcMY0FSKM+CRnKRI5Mr1YbCNgsSTwoTwKphQEG9P+QqmuRFneJPZuHNhg==}
engines: {node: '>=6.9.0'}
@@ -5514,17 +4755,6 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-react-pure-annotations@7.18.6(@babel/core@7.22.9):
- resolution: {integrity: sha512-I8VfEPg9r2TRDdvnHgPepTKvuRomzA8+u+nhY7qSI1fR2hRNebasZEETLyM5mAUr0Ku56OkXJ0I7NHJnO6cJiQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-annotate-as-pure': 7.18.6
- '@babel/helper-plugin-utils': 7.22.5
- dev: true
-
/@babel/plugin-transform-react-pure-annotations@7.18.6(@babel/core@7.23.0):
resolution: {integrity: sha512-I8VfEPg9r2TRDdvnHgPepTKvuRomzA8+u+nhY7qSI1fR2hRNebasZEETLyM5mAUr0Ku56OkXJ0I7NHJnO6cJiQ==}
engines: {node: '>=6.9.0'}
@@ -5547,17 +4777,6 @@ packages:
regenerator-transform: 0.15.0
dev: true
- /@babel/plugin-transform-regenerator@7.18.6(@babel/core@7.22.9):
- resolution: {integrity: sha512-poqRI2+qiSdeldcz4wTSTXBRryoq3Gc70ye7m7UD5Ww0nE29IXqMl6r7Nd15WBgRd74vloEMlShtH6CKxVzfmQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-plugin-utils': 7.22.5
- regenerator-transform: 0.15.0
- dev: true
-
/@babel/plugin-transform-regenerator@7.18.6(@babel/core@7.23.0):
resolution: {integrity: sha512-poqRI2+qiSdeldcz4wTSTXBRryoq3Gc70ye7m7UD5Ww0nE29IXqMl6r7Nd15WBgRd74vloEMlShtH6CKxVzfmQ==}
engines: {node: '>=6.9.0'}
@@ -5579,16 +4798,6 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-reserved-words@7.18.6(@babel/core@7.22.9):
- resolution: {integrity: sha512-oX/4MyMoypzHjFrT1CdivfKZ+XvIPMFXwwxHp/r0Ddy2Vuomt4HDFGmft1TAY2yiTKiNSsh3kjBAzcM8kSdsjA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-plugin-utils': 7.22.5
- dev: true
-
/@babel/plugin-transform-reserved-words@7.18.6(@babel/core@7.23.0):
resolution: {integrity: sha512-oX/4MyMoypzHjFrT1CdivfKZ+XvIPMFXwwxHp/r0Ddy2Vuomt4HDFGmft1TAY2yiTKiNSsh3kjBAzcM8kSdsjA==}
engines: {node: '>=6.9.0'}
@@ -5609,16 +4818,6 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-shorthand-properties@7.18.6(@babel/core@7.22.9):
- resolution: {integrity: sha512-eCLXXJqv8okzg86ywZJbRn19YJHU4XUa55oz2wbHhaQVn/MM+XhukiT7SYqp/7o00dg52Rj51Ny+Ecw4oyoygw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-plugin-utils': 7.22.5
- dev: true
-
/@babel/plugin-transform-shorthand-properties@7.18.6(@babel/core@7.23.0):
resolution: {integrity: sha512-eCLXXJqv8okzg86ywZJbRn19YJHU4XUa55oz2wbHhaQVn/MM+XhukiT7SYqp/7o00dg52Rj51Ny+Ecw4oyoygw==}
engines: {node: '>=6.9.0'}
@@ -5640,17 +4839,6 @@ packages:
'@babel/helper-skip-transparent-expression-wrappers': 7.20.0
dev: true
- /@babel/plugin-transform-spread@7.18.9(@babel/core@7.22.9):
- resolution: {integrity: sha512-39Q814wyoOPtIB/qGopNIL9xDChOE1pNU0ZY5dO0owhiVt/5kFm4li+/bBtwc7QotG0u5EPzqhZdjMtmqBqyQA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-plugin-utils': 7.22.5
- '@babel/helper-skip-transparent-expression-wrappers': 7.20.0
- dev: true
-
/@babel/plugin-transform-spread@7.18.9(@babel/core@7.23.0):
resolution: {integrity: sha512-39Q814wyoOPtIB/qGopNIL9xDChOE1pNU0ZY5dO0owhiVt/5kFm4li+/bBtwc7QotG0u5EPzqhZdjMtmqBqyQA==}
engines: {node: '>=6.9.0'}
@@ -5672,16 +4860,6 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-sticky-regex@7.18.6(@babel/core@7.22.9):
- resolution: {integrity: sha512-kfiDrDQ+PBsQDO85yj1icueWMfGfJFKN1KCkndygtu/C9+XUfydLC8Iv5UYJqRwy4zk8EcplRxEOeLyjq1gm6Q==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-plugin-utils': 7.22.5
- dev: true
-
/@babel/plugin-transform-sticky-regex@7.18.6(@babel/core@7.23.0):
resolution: {integrity: sha512-kfiDrDQ+PBsQDO85yj1icueWMfGfJFKN1KCkndygtu/C9+XUfydLC8Iv5UYJqRwy4zk8EcplRxEOeLyjq1gm6Q==}
engines: {node: '>=6.9.0'}
@@ -5702,16 +4880,6 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-template-literals@7.18.9(@babel/core@7.22.9):
- resolution: {integrity: sha512-S8cOWfT82gTezpYOiVaGHrCbhlHgKhQt8XH5ES46P2XWmX92yisoZywf5km75wv5sYcXDUCLMmMxOLCtthDgMA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-plugin-utils': 7.22.5
- dev: true
-
/@babel/plugin-transform-template-literals@7.18.9(@babel/core@7.23.0):
resolution: {integrity: sha512-S8cOWfT82gTezpYOiVaGHrCbhlHgKhQt8XH5ES46P2XWmX92yisoZywf5km75wv5sYcXDUCLMmMxOLCtthDgMA==}
engines: {node: '>=6.9.0'}
@@ -5732,16 +4900,6 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-typeof-symbol@7.18.9(@babel/core@7.22.9):
- resolution: {integrity: sha512-SRfwTtF11G2aemAZWivL7PD+C9z52v9EvMqH9BuYbabyPuKUvSWks3oCg6041pT925L4zVFqaVBeECwsmlguEw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-plugin-utils': 7.22.5
- dev: true
-
/@babel/plugin-transform-typeof-symbol@7.18.9(@babel/core@7.23.0):
resolution: {integrity: sha512-SRfwTtF11G2aemAZWivL7PD+C9z52v9EvMqH9BuYbabyPuKUvSWks3oCg6041pT925L4zVFqaVBeECwsmlguEw==}
engines: {node: '>=6.9.0'}
@@ -5805,16 +4963,6 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-unicode-escapes@7.18.10(@babel/core@7.22.9):
- resolution: {integrity: sha512-kKAdAI+YzPgGY/ftStBFXTI1LZFju38rYThnfMykS+IXy8BVx+res7s2fxf1l8I35DV2T97ezo6+SGrXz6B3iQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-plugin-utils': 7.22.5
- dev: true
-
/@babel/plugin-transform-unicode-escapes@7.18.10(@babel/core@7.23.0):
resolution: {integrity: sha512-kKAdAI+YzPgGY/ftStBFXTI1LZFju38rYThnfMykS+IXy8BVx+res7s2fxf1l8I35DV2T97ezo6+SGrXz6B3iQ==}
engines: {node: '>=6.9.0'}
@@ -5836,17 +4984,6 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-unicode-regex@7.18.6(@babel/core@7.22.9):
- resolution: {integrity: sha512-gE7A6Lt7YLnNOL3Pb9BNeZvi+d8l7tcRrG4+pwJjK9hD2xX4mEvjlQW60G9EEmfXVYRPv9VRQcyegIVHCql/AA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-create-regexp-features-plugin': 7.18.6(@babel/core@7.22.9)
- '@babel/helper-plugin-utils': 7.22.5
- dev: true
-
/@babel/plugin-transform-unicode-regex@7.18.6(@babel/core@7.23.0):
resolution: {integrity: sha512-gE7A6Lt7YLnNOL3Pb9BNeZvi+d8l7tcRrG4+pwJjK9hD2xX4mEvjlQW60G9EEmfXVYRPv9VRQcyegIVHCql/AA==}
engines: {node: '>=6.9.0'}
@@ -5944,92 +5081,6 @@ packages:
- supports-color
dev: true
- /@babel/preset-env@7.18.10(@babel/core@7.22.9):
- resolution: {integrity: sha512-wVxs1yjFdW3Z/XkNfXKoblxoHgbtUF7/l3PvvP4m02Qz9TZ6uZGxRVYjSQeR87oQmHco9zWitW5J82DJ7sCjvA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/compat-data': 7.22.9
- '@babel/core': 7.22.9
- '@babel/helper-compilation-targets': 7.22.9(@babel/core@7.22.9)
- '@babel/helper-plugin-utils': 7.22.5
- '@babel/helper-validator-option': 7.22.5
- '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.18.6(@babel/core@7.22.9)
- '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.18.9(@babel/core@7.22.9)
- '@babel/plugin-proposal-async-generator-functions': 7.18.10(@babel/core@7.22.9)
- '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.22.9)
- '@babel/plugin-proposal-class-static-block': 7.18.6(@babel/core@7.22.9)
- '@babel/plugin-proposal-dynamic-import': 7.18.6(@babel/core@7.22.9)
- '@babel/plugin-proposal-export-namespace-from': 7.18.9(@babel/core@7.22.9)
- '@babel/plugin-proposal-json-strings': 7.18.6(@babel/core@7.22.9)
- '@babel/plugin-proposal-logical-assignment-operators': 7.18.9(@babel/core@7.22.9)
- '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.22.9)
- '@babel/plugin-proposal-numeric-separator': 7.18.6(@babel/core@7.22.9)
- '@babel/plugin-proposal-object-rest-spread': 7.18.9(@babel/core@7.22.9)
- '@babel/plugin-proposal-optional-catch-binding': 7.18.6(@babel/core@7.22.9)
- '@babel/plugin-proposal-optional-chaining': 7.18.9(@babel/core@7.22.9)
- '@babel/plugin-proposal-private-methods': 7.18.6(@babel/core@7.22.9)
- '@babel/plugin-proposal-private-property-in-object': 7.18.6(@babel/core@7.22.9)
- '@babel/plugin-proposal-unicode-property-regex': 7.18.6(@babel/core@7.22.9)
- '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.22.9)
- '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.22.9)
- '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.22.9)
- '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.22.9)
- '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.22.9)
- '@babel/plugin-syntax-import-assertions': 7.18.6(@babel/core@7.22.9)
- '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.22.9)
- '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.22.9)
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.22.9)
- '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.22.9)
- '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.22.9)
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.22.9)
- '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.22.9)
- '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.22.9)
- '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.22.9)
- '@babel/plugin-transform-arrow-functions': 7.18.6(@babel/core@7.22.9)
- '@babel/plugin-transform-async-to-generator': 7.18.6(@babel/core@7.22.9)
- '@babel/plugin-transform-block-scoped-functions': 7.18.6(@babel/core@7.22.9)
- '@babel/plugin-transform-block-scoping': 7.18.9(@babel/core@7.22.9)
- '@babel/plugin-transform-classes': 7.18.9(@babel/core@7.22.9)
- '@babel/plugin-transform-computed-properties': 7.18.9(@babel/core@7.22.9)
- '@babel/plugin-transform-destructuring': 7.18.13(@babel/core@7.22.9)
- '@babel/plugin-transform-dotall-regex': 7.18.6(@babel/core@7.22.9)
- '@babel/plugin-transform-duplicate-keys': 7.18.9(@babel/core@7.22.9)
- '@babel/plugin-transform-exponentiation-operator': 7.18.6(@babel/core@7.22.9)
- '@babel/plugin-transform-for-of': 7.18.8(@babel/core@7.22.9)
- '@babel/plugin-transform-function-name': 7.18.9(@babel/core@7.22.9)
- '@babel/plugin-transform-literals': 7.18.9(@babel/core@7.22.9)
- '@babel/plugin-transform-member-expression-literals': 7.18.6(@babel/core@7.22.9)
- '@babel/plugin-transform-modules-amd': 7.18.6(@babel/core@7.22.9)
- '@babel/plugin-transform-modules-commonjs': 7.18.6(@babel/core@7.22.9)
- '@babel/plugin-transform-modules-systemjs': 7.18.9(@babel/core@7.22.9)
- '@babel/plugin-transform-modules-umd': 7.18.6(@babel/core@7.22.9)
- '@babel/plugin-transform-named-capturing-groups-regex': 7.18.6(@babel/core@7.22.9)
- '@babel/plugin-transform-new-target': 7.18.6(@babel/core@7.22.9)
- '@babel/plugin-transform-object-super': 7.18.6(@babel/core@7.22.9)
- '@babel/plugin-transform-parameters': 7.18.8(@babel/core@7.22.9)
- '@babel/plugin-transform-property-literals': 7.18.6(@babel/core@7.22.9)
- '@babel/plugin-transform-regenerator': 7.18.6(@babel/core@7.22.9)
- '@babel/plugin-transform-reserved-words': 7.18.6(@babel/core@7.22.9)
- '@babel/plugin-transform-shorthand-properties': 7.18.6(@babel/core@7.22.9)
- '@babel/plugin-transform-spread': 7.18.9(@babel/core@7.22.9)
- '@babel/plugin-transform-sticky-regex': 7.18.6(@babel/core@7.22.9)
- '@babel/plugin-transform-template-literals': 7.18.9(@babel/core@7.22.9)
- '@babel/plugin-transform-typeof-symbol': 7.18.9(@babel/core@7.22.9)
- '@babel/plugin-transform-unicode-escapes': 7.18.10(@babel/core@7.22.9)
- '@babel/plugin-transform-unicode-regex': 7.18.6(@babel/core@7.22.9)
- '@babel/preset-modules': 0.1.5(@babel/core@7.22.9)
- '@babel/types': 7.22.5
- babel-plugin-polyfill-corejs2: 0.3.2(@babel/core@7.22.9)
- babel-plugin-polyfill-corejs3: 0.5.3(@babel/core@7.22.9)
- babel-plugin-polyfill-regenerator: 0.4.0(@babel/core@7.22.9)
- core-js-compat: 3.25.0
- semver: 6.3.1
- transitivePeerDependencies:
- - supports-color
- dev: true
-
/@babel/preset-env@7.18.10(@babel/core@7.23.0):
resolution: {integrity: sha512-wVxs1yjFdW3Z/XkNfXKoblxoHgbtUF7/l3PvvP4m02Qz9TZ6uZGxRVYjSQeR87oQmHco9zWitW5J82DJ7sCjvA==}
engines: {node: '>=6.9.0'}
@@ -6135,22 +5186,9 @@ packages:
dependencies:
'@babel/core': 7.18.13
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-proposal-unicode-property-regex': 7.18.6(@babel/core@7.18.13)
- '@babel/plugin-transform-dotall-regex': 7.18.6(@babel/core@7.18.13)
- '@babel/types': 7.22.5
- esutils: 2.0.3
- dev: true
-
- /@babel/preset-modules@0.1.5(@babel/core@7.22.9):
- resolution: {integrity: sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-proposal-unicode-property-regex': 7.18.6(@babel/core@7.22.9)
- '@babel/plugin-transform-dotall-regex': 7.18.6(@babel/core@7.22.9)
- '@babel/types': 7.22.5
+ '@babel/plugin-proposal-unicode-property-regex': 7.18.6(@babel/core@7.18.13)
+ '@babel/plugin-transform-dotall-regex': 7.18.6(@babel/core@7.18.13)
+ '@babel/types': 7.23.0
esutils: 2.0.3
dev: true
@@ -6163,7 +5201,7 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
'@babel/plugin-proposal-unicode-property-regex': 7.18.6(@babel/core@7.23.0)
'@babel/plugin-transform-dotall-regex': 7.18.6(@babel/core@7.23.0)
- '@babel/types': 7.22.5
+ '@babel/types': 7.23.0
esutils: 2.0.3
dev: true
@@ -6182,21 +5220,6 @@ packages:
'@babel/plugin-transform-react-pure-annotations': 7.18.6(@babel/core@7.18.13)
dev: true
- /@babel/preset-react@7.18.6(@babel/core@7.22.9):
- resolution: {integrity: sha512-zXr6atUmyYdiWRVLOZahakYmOBHtWc2WGCkP8PYTgZi0iJXDY2CN180TdrIW4OGOAdLc7TifzDIvtx6izaRIzg==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-plugin-utils': 7.22.5
- '@babel/helper-validator-option': 7.22.5
- '@babel/plugin-transform-react-display-name': 7.18.6(@babel/core@7.22.9)
- '@babel/plugin-transform-react-jsx': 7.19.0(@babel/core@7.22.9)
- '@babel/plugin-transform-react-jsx-development': 7.18.6(@babel/core@7.22.9)
- '@babel/plugin-transform-react-pure-annotations': 7.18.6(@babel/core@7.22.9)
- dev: true
-
/@babel/preset-react@7.18.6(@babel/core@7.23.0):
resolution: {integrity: sha512-zXr6atUmyYdiWRVLOZahakYmOBHtWc2WGCkP8PYTgZi0iJXDY2CN180TdrIW4OGOAdLc7TifzDIvtx6izaRIzg==}
engines: {node: '>=6.9.0'}
@@ -6226,27 +5249,25 @@ packages:
- supports-color
dev: true
- /@babel/preset-typescript@7.18.6(@babel/core@7.22.9):
+ /@babel/preset-typescript@7.18.6(@babel/core@7.23.0):
resolution: {integrity: sha512-s9ik86kXBAnD760aybBucdpnLsAt0jK1xqJn2juOn9lkOvSHV60os5hxoVJsPzMQxvnUJFAlkont2DvvaYEBtQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.9
+ '@babel/core': 7.23.0
'@babel/helper-plugin-utils': 7.22.5
'@babel/helper-validator-option': 7.22.5
- '@babel/plugin-transform-typescript': 7.21.3(@babel/core@7.22.9)
- transitivePeerDependencies:
- - supports-color
+ '@babel/plugin-transform-typescript': 7.22.15(@babel/core@7.23.0)
dev: true
- /@babel/register@7.18.9(@babel/core@7.22.9):
+ /@babel/register@7.18.9(@babel/core@7.23.0):
resolution: {integrity: sha512-ZlbnXDcNYHMR25ITwwNKT88JiaukkdVj/nG7r3wnuXkOTHc60Uy05PwMCPre0hSkY68E6zK3xz+vUJSP2jWmcw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.9
+ '@babel/core': 7.23.0
clone-deep: 4.0.1
find-cache-dir: 2.1.0
make-dir: 2.1.0
@@ -6303,24 +5324,6 @@ packages:
- supports-color
dev: true
- /@babel/traverse@7.22.15:
- resolution: {integrity: sha512-DdHPwvJY0sEeN4xJU5uRLmZjgMMDIvMPniLuYzUVXj/GGzysPl0/fwt44JBkyUIzGJPV8QgHMcQdQ34XFuKTYQ==}
- engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/code-frame': 7.22.13
- '@babel/generator': 7.23.0
- '@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.23.0
- '@babel/types': 7.23.0
- debug: 4.3.4(supports-color@8.1.1)
- globals: 11.12.0
- transitivePeerDependencies:
- - supports-color
- dev: true
-
/@babel/traverse@7.22.8:
resolution: {integrity: sha512-y6LPR+wpM2I3qJrsheCTwhIinzkETbplIgPBbwvqPKc+uljeA5gP+3nP8irdYt1mjQaDnlIcG+dw8OjAco4GXw==}
engines: {node: '>=6.9.0'}
@@ -6364,15 +5367,6 @@ packages:
to-fast-properties: 2.0.0
dev: true
- /@babel/types@7.22.15:
- resolution: {integrity: sha512-X+NLXr0N8XXmN5ZsaQdm9U2SSC3UbIYq/doL++sueHOTisgZHoKaQtZxGuV2cUPQHMfjKEfg/g6oy7Hm6SKFtA==}
- engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/helper-string-parser': 7.22.5
- '@babel/helper-validator-identifier': 7.22.20
- to-fast-properties: 2.0.0
- dev: true
-
/@babel/types@7.22.5:
resolution: {integrity: sha512-zo3MIHGOkPOfoRXitsgHLjEXmlDaD/5KU1Uzuc9GNiZPhSqVxVRtxuPaSBZDsYZ9qV88AjtMtWW7ww98loJ9KA==}
engines: {node: '>=6.9.0'}
@@ -7478,7 +6472,7 @@ packages:
resolution: {integrity: sha512-E9JjhUgNzvuQ+vVAL21vlyfy12gP0GhazGgJC4h6qUt1jSdUXGWJ1wfu/X7Sd8etSgxV4ovT1pb9v5D6QW4XgA==}
engines: {node: '>= 10.14.2'}
dependencies:
- '@babel/core': 7.22.15
+ '@babel/core': 7.23.0
'@jest/types': 26.6.2
babel-plugin-istanbul: 6.1.1
chalk: 4.1.2
@@ -7632,6 +6626,89 @@ packages:
resolution: {integrity: sha512-qDv4851VFSaBWzpS02cXHclo40jsbAjRXnebNXpm0uVg32kCneZPo9RYVQtrTNICtZ+1wAYHu1ZtxWSWMbKrBw==}
dev: false
+ /@marko/babel-utils@6.3.1:
+ resolution: {integrity: sha512-cxYUqmnS6pG3frmZsyC358qxtzOmalzT6IcF70+OaUeQ5DDq6b4CTi6MvMcCuXFj6ZoLLUkhOCe3HDX78f92Ig==}
+ dependencies:
+ '@babel/runtime': 7.18.9
+ jsesc: 3.0.2
+ relative-import-path: 1.0.0
+ dev: true
+
+ /@marko/compiler@5.33.2:
+ resolution: {integrity: sha512-UeAjJXNwPIv1xnj6P6WSJTW/vm15xaFRMzAIUTfozsDdUoxVpp2leWArgEO1srZPD6Xdljr1J3is4QOL5aDCHg==}
+ dependencies:
+ '@babel/code-frame': 7.22.13
+ '@babel/core': 7.23.0
+ '@babel/generator': 7.23.0
+ '@babel/parser': 7.23.0
+ '@babel/plugin-syntax-typescript': 7.22.5(@babel/core@7.23.0)
+ '@babel/plugin-transform-modules-commonjs': 7.18.6(@babel/core@7.23.0)
+ '@babel/plugin-transform-typescript': 7.22.15(@babel/core@7.23.0)
+ '@babel/runtime': 7.18.9
+ '@babel/traverse': 7.23.0
+ '@babel/types': 7.23.0
+ '@marko/babel-utils': 6.3.1
+ complain: 1.6.0
+ he: 1.2.0
+ htmljs-parser: 5.5.0
+ jsesc: 3.0.2
+ kleur: 4.1.5
+ lasso-package-root: 1.0.1
+ raptor-regexp: 1.0.1
+ raptor-util: 3.2.0
+ resolve-from: 5.0.0
+ self-closing-tags: 1.0.1
+ source-map-support: 0.5.21
+ strip-ansi: 6.0.1
+ strip-json-comments: 3.1.1
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ /@marko/testing-library@6.1.4(marko@5.31.11):
+ resolution: {integrity: sha512-d4ulSs6kMlFvWNV0/Xq/Z79D5EpawR4e0nTqWIyXlGdrFSKDD/kaLrBBJLG3EN+NwHA8tMc0mgMTmK9+37MtIw==}
+ peerDependencies:
+ marko: ^3 || ^4 || ^5
+ dependencies:
+ '@testing-library/dom': 9.3.1
+ jsdom: 22.1.0
+ marko: 5.31.11
+ transitivePeerDependencies:
+ - bufferutil
+ - canvas
+ - supports-color
+ - utf-8-validate
+ dev: true
+
+ /@marko/translator-default@5.31.3(@marko/compiler@5.33.2)(marko@5.31.11):
+ resolution: {integrity: sha512-2N7OQ2AMNFqBqcScg/q3L4Rsh3VToy/SL78yqtbNoom5N5rdoQWyMxOkWR1zFD8/YN9kqbX5AGg2bm5iGLL7Qw==}
+ peerDependencies:
+ '@marko/compiler': ^5.16.1
+ marko: ^5.17.2
+ dependencies:
+ '@babel/runtime': 7.18.9
+ '@marko/babel-utils': 6.3.1
+ '@marko/compiler': 5.33.2
+ escape-string-regexp: 4.0.0
+ magic-string: 0.27.0
+ marko: 5.31.11
+ self-closing-tags: 1.0.1
+ dev: true
+
+ /@marko/vite@3.1.1(@marko/compiler@5.33.2)(vite@4.4.10):
+ resolution: {integrity: sha512-pcfKyFp3lEsqFnu32kQkUNCwAddxDZLZedBPwGBE4IVAM7FGtB6/trutjbLyYzuFyojA8MJL4mvkx81yf8Grkg==}
+ peerDependencies:
+ '@marko/compiler': ^5
+ vite: ^4.4.10
+ dependencies:
+ '@marko/compiler': 5.33.2
+ anymatch: 3.1.3
+ domelementtype: 2.3.0
+ domhandler: 5.0.3
+ htmlparser2: 9.0.0
+ vite: 4.4.10(@types/node@18.16.19)(less@4.1.3)
+ dev: true
+
/@mdx-js/mdx@1.6.22:
resolution: {integrity: sha512-AMxuLxPz2j5/6TpF/XSdKpQP1NlG0z11dFOlq+2IP/lSgl11GY8ji6S/rgsViN/L0BDvHvUMruRb7ub+24LUYA==}
dependencies:
@@ -9140,35 +8217,35 @@ packages:
typescript:
optional: true
dependencies:
- '@babel/core': 7.22.9
- '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.22.9)
- '@babel/plugin-proposal-decorators': 7.18.10(@babel/core@7.22.9)
- '@babel/plugin-proposal-export-default-from': 7.18.10(@babel/core@7.22.9)
- '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.22.9)
- '@babel/plugin-proposal-object-rest-spread': 7.18.9(@babel/core@7.22.9)
- '@babel/plugin-proposal-optional-chaining': 7.18.9(@babel/core@7.22.9)
- '@babel/plugin-proposal-private-methods': 7.18.6(@babel/core@7.22.9)
- '@babel/plugin-proposal-private-property-in-object': 7.18.6(@babel/core@7.22.9)
- '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.22.9)
- '@babel/plugin-transform-arrow-functions': 7.18.6(@babel/core@7.22.9)
- '@babel/plugin-transform-block-scoping': 7.18.9(@babel/core@7.22.9)
- '@babel/plugin-transform-classes': 7.18.9(@babel/core@7.22.9)
- '@babel/plugin-transform-destructuring': 7.18.13(@babel/core@7.22.9)
- '@babel/plugin-transform-for-of': 7.18.8(@babel/core@7.22.9)
- '@babel/plugin-transform-parameters': 7.18.8(@babel/core@7.22.9)
- '@babel/plugin-transform-shorthand-properties': 7.18.6(@babel/core@7.22.9)
- '@babel/plugin-transform-spread': 7.18.9(@babel/core@7.22.9)
- '@babel/preset-env': 7.18.10(@babel/core@7.22.9)
- '@babel/preset-react': 7.18.6(@babel/core@7.22.9)
- '@babel/preset-typescript': 7.18.6(@babel/core@7.22.9)
- '@babel/register': 7.18.9(@babel/core@7.22.9)
+ '@babel/core': 7.23.0
+ '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.23.0)
+ '@babel/plugin-proposal-decorators': 7.18.10(@babel/core@7.23.0)
+ '@babel/plugin-proposal-export-default-from': 7.18.10(@babel/core@7.23.0)
+ '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.23.0)
+ '@babel/plugin-proposal-object-rest-spread': 7.18.9(@babel/core@7.23.0)
+ '@babel/plugin-proposal-optional-chaining': 7.18.9(@babel/core@7.23.0)
+ '@babel/plugin-proposal-private-methods': 7.18.6(@babel/core@7.23.0)
+ '@babel/plugin-proposal-private-property-in-object': 7.18.6(@babel/core@7.23.0)
+ '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.23.0)
+ '@babel/plugin-transform-arrow-functions': 7.18.6(@babel/core@7.23.0)
+ '@babel/plugin-transform-block-scoping': 7.18.9(@babel/core@7.23.0)
+ '@babel/plugin-transform-classes': 7.18.9(@babel/core@7.23.0)
+ '@babel/plugin-transform-destructuring': 7.18.13(@babel/core@7.23.0)
+ '@babel/plugin-transform-for-of': 7.18.8(@babel/core@7.23.0)
+ '@babel/plugin-transform-parameters': 7.18.8(@babel/core@7.23.0)
+ '@babel/plugin-transform-shorthand-properties': 7.18.6(@babel/core@7.23.0)
+ '@babel/plugin-transform-spread': 7.18.9(@babel/core@7.23.0)
+ '@babel/preset-env': 7.18.10(@babel/core@7.23.0)
+ '@babel/preset-react': 7.18.6(@babel/core@7.23.0)
+ '@babel/preset-typescript': 7.18.6(@babel/core@7.23.0)
+ '@babel/register': 7.18.9(@babel/core@7.23.0)
'@storybook/node-logger': 6.5.10
'@storybook/semver': 7.3.2
'@types/node': 16.11.56
'@types/pretty-hrtime': 1.0.1
- babel-loader: 8.2.5(@babel/core@7.22.9)(webpack@4.46.0)
+ babel-loader: 8.2.5(@babel/core@7.23.0)(webpack@4.46.0)
babel-plugin-macros: 3.1.0
- babel-plugin-polyfill-corejs3: 0.1.7(@babel/core@7.22.9)
+ babel-plugin-polyfill-corejs3: 0.1.7(@babel/core@7.23.0)
chalk: 4.1.2
core-js: 3.25.0
express: 4.18.1
@@ -9448,10 +8525,10 @@ packages:
/@storybook/mdx1-csf@0.0.1(@babel/core@7.18.13):
resolution: {integrity: sha512-4biZIWWzoWlCarMZmTpqcJNgo/RBesYZwGFbQeXiGYsswuvfWARZnW9RE9aUEMZ4XPn7B1N3EKkWcdcWe/K2tg==}
dependencies:
- '@babel/generator': 7.22.9
- '@babel/parser': 7.22.7
+ '@babel/generator': 7.23.0
+ '@babel/parser': 7.23.0
'@babel/preset-env': 7.18.10(@babel/core@7.18.13)
- '@babel/types': 7.22.5
+ '@babel/types': 7.23.0
'@mdx-js/mdx': 1.6.22
'@types/lodash': 4.14.195
js-string-escape: 1.0.1
@@ -9467,10 +8544,10 @@ packages:
/@storybook/mdx1-csf@0.0.1(@babel/core@7.23.0):
resolution: {integrity: sha512-4biZIWWzoWlCarMZmTpqcJNgo/RBesYZwGFbQeXiGYsswuvfWARZnW9RE9aUEMZ4XPn7B1N3EKkWcdcWe/K2tg==}
dependencies:
- '@babel/generator': 7.22.9
- '@babel/parser': 7.22.7
+ '@babel/generator': 7.23.0
+ '@babel/parser': 7.23.0
'@babel/preset-env': 7.18.10(@babel/core@7.23.0)
- '@babel/types': 7.22.5
+ '@babel/types': 7.23.0
'@mdx-js/mdx': 1.6.22
'@types/lodash': 4.14.195
js-string-escape: 1.0.1
@@ -12402,6 +11479,18 @@ packages:
picomatch: 2.3.1
dev: true
+ /anymatch@3.1.3:
+ resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==}
+ engines: {node: '>= 8'}
+ dependencies:
+ normalize-path: 3.0.0
+ picomatch: 2.3.1
+ dev: true
+
+ /app-module-path@2.2.0:
+ resolution: {integrity: sha512-gkco+qxENJV+8vFcDiiFhuoSvRXb2a/QPqpSoWhVz829VNJfOTnELbBmPmNKFxf3xdNnw4DWCkzkDaavcX/1YQ==}
+ dev: true
+
/app-root-dir@1.0.2:
resolution: {integrity: sha512-jlpIfsOoNoafl92Sz//64uQHGSyMrD2vYG5d8o2a4qGvyNCvXur7bzIsWtAC/6flI2RYAp3kv8rsfBtaLm7w0g==}
dev: true
@@ -12492,6 +11581,10 @@ packages:
resolution: {integrity: sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==}
dev: true
+ /argly@1.2.0:
+ resolution: {integrity: sha512-+F3InkcH2XOGK7Jf/ZQis4cwZ4wbfmpBKo5J+SAA9bglT1gVd0e9hroHWarU076pJrAfs8JKuRPwDqwPBOKHnw==}
+ dev: true
+
/argparse@1.0.10:
resolution: {integrity: sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==}
dependencies:
@@ -12679,7 +11772,6 @@ packages:
/assertion-error@1.1.0:
resolution: {integrity: sha512-jgsaNduz+ndvGyFt3uSuWqvy4lCnIJiovtouQN5JZHOKCS2QuhEdbcQHFhVksz2N2U9hXJo8odG7ETyWlEeuDw==}
- dev: false
/assign-symbols@1.0.0:
resolution: {integrity: sha512-Q+JC7Whu8HhmTdBph/Tq59IoRtoy6KAm5zzPv00WdujX82lbAL8K7WVjne7vdCsAmbF4AYaDOPyO3k0kl8qIrw==}
@@ -12822,21 +11914,6 @@ packages:
webpack: 5.74.0(esbuild@0.18.11)
dev: true
- /babel-loader@8.2.5(@babel/core@7.22.9)(webpack@4.46.0):
- resolution: {integrity: sha512-OSiFfH89LrEMiWd4pLNqGz4CwJDtbs2ZVc+iGu2HrkRfPxId9F2anQj38IxWpmRfsUY0aBZYi1EFcd3mhtRMLQ==}
- engines: {node: '>= 8.9'}
- peerDependencies:
- '@babel/core': ^7.0.0
- webpack: '>=2'
- dependencies:
- '@babel/core': 7.22.9
- find-cache-dir: 3.3.2
- loader-utils: 2.0.2
- make-dir: 3.1.0
- schema-utils: 2.7.1
- webpack: 4.46.0
- dev: true
-
/babel-loader@8.2.5(@babel/core@7.23.0)(webpack@4.46.0):
resolution: {integrity: sha512-OSiFfH89LrEMiWd4pLNqGz4CwJDtbs2ZVc+iGu2HrkRfPxId9F2anQj38IxWpmRfsUY0aBZYi1EFcd3mhtRMLQ==}
engines: {node: '>= 8.9'}
@@ -12934,19 +12011,6 @@ packages:
- supports-color
dev: true
- /babel-plugin-polyfill-corejs2@0.3.2(@babel/core@7.22.9):
- resolution: {integrity: sha512-LPnodUl3lS0/4wN3Rb+m+UK8s7lj2jcLRrjho4gLw+OJs+I4bvGXshINesY5xx/apM+biTnQ9reDI8yj+0M5+Q==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/compat-data': 7.22.9
- '@babel/core': 7.22.9
- '@babel/helper-define-polyfill-provider': 0.3.2(@babel/core@7.22.9)
- semver: 6.3.1
- transitivePeerDependencies:
- - supports-color
- dev: true
-
/babel-plugin-polyfill-corejs2@0.3.2(@babel/core@7.23.0):
resolution: {integrity: sha512-LPnodUl3lS0/4wN3Rb+m+UK8s7lj2jcLRrjho4gLw+OJs+I4bvGXshINesY5xx/apM+biTnQ9reDI8yj+0M5+Q==}
peerDependencies:
@@ -12960,13 +12024,13 @@ packages:
- supports-color
dev: true
- /babel-plugin-polyfill-corejs3@0.1.7(@babel/core@7.22.9):
+ /babel-plugin-polyfill-corejs3@0.1.7(@babel/core@7.23.0):
resolution: {integrity: sha512-u+gbS9bbPhZWEeyy1oR/YaaSpod/KDT07arZHb80aTpl8H5ZBq+uN1nN9/xtX7jQyfLdPfoqI4Rue/MQSWJquw==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-define-polyfill-provider': 0.1.5(@babel/core@7.22.9)
+ '@babel/core': 7.23.0
+ '@babel/helper-define-polyfill-provider': 0.1.5(@babel/core@7.23.0)
core-js-compat: 3.25.0
transitivePeerDependencies:
- supports-color
@@ -12984,18 +12048,6 @@ packages:
- supports-color
dev: true
- /babel-plugin-polyfill-corejs3@0.5.3(@babel/core@7.22.9):
- resolution: {integrity: sha512-zKsXDh0XjnrUEW0mxIHLfjBfnXSMr5Q/goMe/fxpQnLm07mcOZiIZHBNWCMx60HmdvjxfXcalac0tfFg0wqxyw==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-define-polyfill-provider': 0.3.2(@babel/core@7.22.9)
- core-js-compat: 3.25.0
- transitivePeerDependencies:
- - supports-color
- dev: true
-
/babel-plugin-polyfill-corejs3@0.5.3(@babel/core@7.23.0):
resolution: {integrity: sha512-zKsXDh0XjnrUEW0mxIHLfjBfnXSMr5Q/goMe/fxpQnLm07mcOZiIZHBNWCMx60HmdvjxfXcalac0tfFg0wqxyw==}
peerDependencies:
@@ -13019,17 +12071,6 @@ packages:
- supports-color
dev: true
- /babel-plugin-polyfill-regenerator@0.4.0(@babel/core@7.22.9):
- resolution: {integrity: sha512-RW1cnryiADFeHmfLS+WW/G431p1PsW5qdRdz0SDRi7TKcUgc7Oh/uXkT7MZ/+tGsT1BkczEAmD5XjUyJ5SWDTw==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-define-polyfill-provider': 0.3.2(@babel/core@7.22.9)
- transitivePeerDependencies:
- - supports-color
- dev: true
-
/babel-plugin-polyfill-regenerator@0.4.0(@babel/core@7.23.0):
resolution: {integrity: sha512-RW1cnryiADFeHmfLS+WW/G431p1PsW5qdRdz0SDRi7TKcUgc7Oh/uXkT7MZ/+tGsT1BkczEAmD5XjUyJ5SWDTw==}
peerDependencies:
@@ -13314,6 +12355,10 @@ packages:
resolution: {integrity: sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow==}
dev: true
+ /browser-refresh-client@1.1.4:
+ resolution: {integrity: sha1-jl/4R1/h1UHSroH3oa6gWuIaYhc=}
+ dev: true
+
/browserify-aes@1.2.0:
resolution: {integrity: sha512-+7CHXqGuspUn/Sl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc/uzk5zSOI3H52CYnjCfb5hA==}
dependencies:
@@ -13690,6 +12735,15 @@ packages:
engines: {node: '>=4'}
dev: true
+ /chai@3.5.0:
+ resolution: {integrity: sha512-eRYY0vPS2a9zt5w5Z0aCeWbrXTEyvk7u/Xf71EzNObrjSCPgMm1Nku/D/u2tiqHBX5j40wWhj54YJLtgn8g55A==}
+ engines: {node: '>= 0.4.0'}
+ dependencies:
+ assertion-error: 1.1.0
+ deep-eql: 0.1.3
+ type-detect: 1.0.0
+ dev: true
+
/chai@4.3.10:
resolution: {integrity: sha512-0UXG04VuVbruMUYbJ6JctvH0YnC/4q3/AkT18q4NaITo91CUm0liMS9VqzT9vZhVQ/1eqPanMWjBM+Juhfb/9g==}
engines: {node: '>=4'}
@@ -14182,6 +13236,12 @@ packages:
resolution: {integrity: sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==}
dev: true
+ /complain@1.6.0:
+ resolution: {integrity: sha512-9oBfSEfxveaNmo2eSp/vEPkaBVxUhiJTZVgGYayzBchSAXQM6CK1PAQeV5ICShnSgfT+biYzrN7egKwwX+HkCw==}
+ dependencies:
+ error-stack-parser: 2.1.4
+ dev: true
+
/component-emitter@1.3.0:
resolution: {integrity: sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg==}
dev: true
@@ -15005,6 +14065,12 @@ packages:
resolution: {integrity: sha512-Q6fKUPqnAHAyhiUgFU7BUzLiv0kd8saH9al7tnu5Q/okj6dnupxyTgFIBjVzJATdfIAm9NAsvXNzjaKa+bxVyA==}
dev: true
+ /deep-eql@0.1.3:
+ resolution: {integrity: sha512-6sEotTRGBFiNcqVoeHwnfopbSpi5NbH1VWJmYCVkmxMmaVTT0bUTrNaGyBwhgP4MZL012W/mkzIn3Da+iDYweg==}
+ dependencies:
+ type-detect: 0.1.1
+ dev: true
+
/deep-eql@4.1.3:
resolution: {integrity: sha512-WaEtAOpRA1MQ0eohqZjpGD8zdI0Ovsm8mmFhaDN8dvDZzyoUMcYDnf5Y6iu7HTXxf8JDS23qWa4a+hKCDyOPzw==}
engines: {node: '>=6'}
@@ -15429,6 +14495,14 @@ packages:
domhandler: 5.0.3
dev: true
+ /domutils@3.1.0:
+ resolution: {integrity: sha512-H78uMmQtI2AhgDJjWeQmHwJJ2bLPD3GMmO7Zja/ZZh84wkm+4ut+IUnUdRa8uCGX88DiVx1j6FRe1XfxEgjEZA==}
+ dependencies:
+ dom-serializer: 2.0.0
+ domelementtype: 2.3.0
+ domhandler: 5.0.3
+ dev: true
+
/dot-case@3.0.4:
resolution: {integrity: sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==}
dependencies:
@@ -16588,6 +15662,12 @@ packages:
resolution: {integrity: sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==}
dev: false
+ /events-light@1.0.5:
+ resolution: {integrity: sha512-jF51LJzg5W+tkJgfZbjlbFCLcyVFEtOjU+xMCBylrXG13X5XHvfp6lNGfyBLF9u1mRTpUsMVYqSDukvpZff1mQ==}
+ dependencies:
+ chai: 3.5.0
+ dev: true
+
/events@3.3.0:
resolution: {integrity: sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==}
engines: {node: '>=0.8.x'}
@@ -18227,6 +17307,10 @@ packages:
webpack: 4.46.0
dev: true
+ /htmljs-parser@5.5.0:
+ resolution: {integrity: sha512-KcJ84GmLFo+EWQ1hYjgLTSro8kEMFuTTdchOUeco5N95peHMtoY5XsX7YeU4oj+tPrvl9OXHlUkJAnY5zshhaQ==}
+ dev: true
+
/htmlparser2-svelte@4.1.0:
resolution: {integrity: sha512-+4f4RBFz7Rj2Hp0ZbFbXC+Kzbd6S9PgjiuFtdT76VMNgKogrEZy0pG2UrPycPbrZzVEIM5lAT3lAdkSTCHLPjg==}
dependencies:
@@ -18254,6 +17338,15 @@ packages:
entities: 4.5.0
dev: true
+ /htmlparser2@9.0.0:
+ resolution: {integrity: sha512-uxbSI98wmFT/G4P2zXx4OVx04qWUmyFPrD2/CNepa2Zo3GPNaCaaxElDgwUrwYWkK1nr9fft0Ya8dws8coDLLQ==}
+ dependencies:
+ domelementtype: 2.3.0
+ domhandler: 5.0.3
+ domutils: 3.1.0
+ entities: 4.5.0
+ dev: true
+
/http-cache-semantics@4.1.1:
resolution: {integrity: sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ==}
dev: true
@@ -19149,8 +18242,8 @@ packages:
resolution: {integrity: sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==}
engines: {node: '>=8'}
dependencies:
- '@babel/core': 7.22.15
- '@babel/parser': 7.22.16
+ '@babel/core': 7.23.0
+ '@babel/parser': 7.23.0
'@istanbuljs/schema': 0.1.3
istanbul-lib-coverage: 3.2.0
semver: 6.3.1
@@ -20252,6 +19345,18 @@ packages:
engines: {node: '>=14.16'}
dev: true
+ /lasso-caching-fs@1.0.2:
+ resolution: {integrity: sha512-mudop0s8U3tLm3Fn9lhiZsiELpLeJToEo6RlDLdph7vWRxL9Sz0o+9WUw1IwlpCYXv/P0CLsMYWFgPwIKWEYvg==}
+ dependencies:
+ raptor-async: 1.1.3
+ dev: true
+
+ /lasso-package-root@1.0.1:
+ resolution: {integrity: sha512-j6LnauNCldqSDvOxoKpD6sTzudPGMiwcZQbySoF9KvJ0lD9Dp2t6QZF8kC0jbUDHuQPiAo5RuQ/mC3AGXscUYA==}
+ dependencies:
+ lasso-caching-fs: 1.0.2
+ dev: true
+
/lazy-ass@1.6.0:
resolution: {integrity: sha512-cc8oEVoctTvsFZ/Oje/kGnHbpWHYBe8IAJe4C0QNc3t8uM/0Y8+erSz/7Y1ALuXTEZTMvxXwO6YbX1ey3ujiZw==}
engines: {node: '> 0.8'}
@@ -20368,6 +19473,10 @@ packages:
- supports-color
dev: true
+ /listener-tracker@2.0.0:
+ resolution: {integrity: sha512-U6NLzBRyrAsJs9AAjuBYifXtNYnAIDPIp81rNpxNoypXBR7qi/LhsuUWX5399zuTg1sBEQyOnWDYFrBQ28vk/w==}
+ dev: true
+
/listenercount@1.0.1:
resolution: {integrity: sha512-3mk/Zag0+IJxeDrxSgaDPy4zZ3w05PRZeJNnlWhzFz5OkX49J4krc+A8X2d2M69vGMBEX0uyl8M+W+8gH+kBqQ==}
dev: true
@@ -20816,6 +19925,28 @@ packages:
resolution: {integrity: sha512-8z4efJYk43E0upd0NbVXwgSTQs6cT3T06etieCMEg7dRbzCbxUCK/GHlX8mhHRDcp+OLlHkPKsvqQTCvsRl2cg==}
dev: true
+ /marko@5.31.11:
+ resolution: {integrity: sha512-SaawIgeOxdqW7LLOuBUCokcU1stdddkda6HMtLmZpQB/RJlCqhV63IG77xxLtM79eeV6hpxXo5948I0sMNxXiw==}
+ hasBin: true
+ dependencies:
+ '@marko/compiler': 5.33.2
+ '@marko/translator-default': 5.31.3(@marko/compiler@5.33.2)(marko@5.31.11)
+ app-module-path: 2.2.0
+ argly: 1.2.0
+ browser-refresh-client: 1.1.4
+ complain: 1.6.0
+ csstype: 3.1.2
+ events-light: 1.0.5
+ listener-tracker: 2.0.0
+ minimatch: 3.1.2
+ raptor-util: 3.2.0
+ resolve-from: 5.0.0
+ self-closing-tags: 1.0.1
+ warp10: 2.1.0
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
/marky@1.2.5:
resolution: {integrity: sha512-q9JtQJKjpsVxCRVgQ+WapguSbKC3SQ5HEzFGPAJMStgh3QjCawp00UKv3MTTAArTmGmmPUvllHZoNbZ3gs0I+Q==}
dev: true
@@ -23233,6 +22364,18 @@ packages:
engines: {node: '>= 0.6'}
dev: true
+ /raptor-async@1.1.3:
+ resolution: {integrity: sha512-VZCxygWMjW9lKqnApK9D2QbfyzRn7ehiTqnXWwMCLBXANSy+xbnYfbX/5f8YX3bZXu+g+JESmqWPchIQrZj2ig==}
+ dev: true
+
+ /raptor-regexp@1.0.1:
+ resolution: {integrity: sha512-DqC7ViHJUs3jLIxJI1/HVvCu3yPJaP8CM7PGsHvjimg7yJ3lLOdCBxlPE0G2Q8OJgUA8Pe7nvhm6lcQ3hZepow==}
+ dev: true
+
+ /raptor-util@3.2.0:
+ resolution: {integrity: sha512-uEDMMkBCJvjTqYMBnJNxn+neiS6a0rhybQNA9RaexGor1uvKjwyHA5VcbZMZEuqXhKUWbL+WNS7PhuZVZNB7pw==}
+ dev: true
+
/raw-body@2.5.1:
resolution: {integrity: sha512-qqJBtEyVgS0ZmPGdCFPWJ3FreoqvG4MVQln/kCgF7Olq95IbOp0/BWyMwbdtn4VTvkM8Y7khCQ2Xgk/tcrCXig==}
engines: {node: '>= 0.8'}
@@ -23841,6 +22984,10 @@ packages:
engines: {node: '>= 0.10'}
dev: true
+ /relative-import-path@1.0.0:
+ resolution: {integrity: sha512-ZvbtoduKQmD4PZeJPfH6Ql21qUWhaMxiHkIsH+FUnZqKDwNIXBtGg5zRZyHWomiGYk8n5+KMBPK7Mi4D0XWfNg==}
+ dev: true
+
/remark-external-links@8.0.0:
resolution: {integrity: sha512-5vPSX0kHoSsqtdftSHhIYofVINC8qmp0nctkeU9YoJwV3YfiBRiI6cbFRJ0oI/1F9xS+bopXG0m2KS8VFscuKA==}
dependencies:
@@ -24412,6 +23559,11 @@ packages:
resolution: {integrity: sha512-mEugaLK+YfkijB4fx0e6kImuJdCIt2LxCRcbEYPqRGCs4F2ogyfZU5IAZRdjCP8JPq2AtdNoC/Dux63d9Kiryg==}
dev: true
+ /self-closing-tags@1.0.1:
+ resolution: {integrity: sha512-7t6hNbYMxM+VHXTgJmxwgZgLGktuXtVVD5AivWzNTdJBM4DBjnDKDzkf2SrNjihaArpeJYNjxkELBu1evI4lQA==}
+ engines: {node: '>=0.12.0'}
+ dev: true
+
/semver@5.7.1:
resolution: {integrity: sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==}
hasBin: true
@@ -26200,6 +25352,14 @@ packages:
prelude-ls: 1.2.1
dev: true
+ /type-detect@0.1.1:
+ resolution: {integrity: sha512-5rqszGVwYgBoDkIm2oUtvkfZMQ0vk29iDMU0W2qCa3rG0vPDNczCMT4hV/bLBgLg8k8ri6+u3Zbt+S/14eMzlA==}
+ dev: true
+
+ /type-detect@1.0.0:
+ resolution: {integrity: sha512-f9Uv6ezcpvCQjJU0Zqbg+65qdcszv3qUQsZfjdRbWiZ7AMenrX1u0lNk9EoWWX6e1F+NULyg27mtdeZ5WhpljA==}
+ dev: true
+
/type-detect@4.0.8:
resolution: {integrity: sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==}
engines: {node: '>=4'}
@@ -27405,6 +26565,10 @@ packages:
makeerror: 1.0.12
dev: true
+ /warp10@2.1.0:
+ resolution: {integrity: sha512-krhkqzJdUxAZv2Cx0Gz6dN1r7TTrG9RDewkDHBbJQIqbNTCdB5ZUHVh7VkA4DgrKW4ZXPPUQKCwmI/3btDse9A==}
+ dev: true
+
/watchpack-chokidar2@2.0.1:
resolution: {integrity: sha512-nCFfBIPKr5Sh61s4LPpy1Wtfi0HE8isJ3d2Yb5/Ppw2P2B/3eVSEBjKfN0fmHJSK14+31KwMKmcrzs2GM4P0Ww==}
requiresBuild: true