From f1971bded20f650fdf4ed9ee574b982a885d2160 Mon Sep 17 00:00:00 2001 From: Charlie Brown Date: Tue, 13 Feb 2024 15:15:48 -0600 Subject: [PATCH] Upgrade babel and use env presets for browsers --- .babelrc.js | 35 +- .babelrc.native.js | 2 +- package.json | 47 +- pnpm-lock.yaml | 2421 +++++++++++++++++++------------------------- 4 files changed, 1104 insertions(+), 1401 deletions(-) diff --git a/.babelrc.js b/.babelrc.js index 79024e6e2..b98d9f66b 100644 --- a/.babelrc.js +++ b/.babelrc.js @@ -1,21 +1,24 @@ module.exports = { - presets: ["@babel/preset-react", "@babel/preset-typescript"], - plugins: [ - "lodash", - ["@babel/proposal-class-properties", { loose: true }], - "@babel/transform-arrow-functions", - "@babel/transform-block-scoping", - "@babel/transform-classes", - "@babel/transform-computed-properties", - "@babel/transform-destructuring", - "@babel/transform-parameters", - "@babel/transform-shorthand-properties", - "@babel/transform-spread", - "@babel/transform-template-literals", - "@babel/proposal-object-rest-spread", - "@babel/proposal-optional-chaining", - "@babel/plugin-proposal-export-namespace-from", + presets: [ + [ + "@babel/preset-env", + { + loose: true, + exclude: [ + // only enabled in commonjs targets + // see the section on `env` below + "@babel/plugin-transform-modules-commonjs", + + // do not use this plugin with webpack + // ref: https://babeljs.io/docs/babel-plugin-proposal-dynamic-import + "@babel/plugin-proposal-dynamic-import", + ], + }, + ], + "@babel/preset-react", + "@babel/preset-typescript", ], + plugins: ["lodash"], ignore: ["**/*.d.ts"], env: { commonjs: { diff --git a/.babelrc.native.js b/.babelrc.native.js index 8d7d3f032..2b4e404eb 100644 --- a/.babelrc.native.js +++ b/.babelrc.native.js @@ -1,7 +1,7 @@ module.exports = { presets: ["module:metro-react-native-babel-preset"], plugins: [ - "@babel/plugin-proposal-export-namespace-from", + "@babel/plugin-transform-export-namespace-from", "@babel/plugin-transform-flow-strip-types", ], }; diff --git a/package.json b/package.json index 25d737f2c..1dfdcf200 100644 --- a/package.json +++ b/package.json @@ -25,28 +25,17 @@ }, "homepage": "https://commerce.nearform.com/open-source/victory", "devDependencies": { - "@babel/cli": "7.18.9", - "@babel/core": "7.18.9", - "@babel/eslint-parser": "^7.18.9", - "@babel/plugin-proposal-class-properties": "7.18.6", - "@babel/plugin-proposal-export-namespace-from": "^7.18.9", - "@babel/plugin-proposal-object-rest-spread": "7.18.9", - "@babel/plugin-proposal-optional-chaining": "^7.18.9", - "@babel/plugin-transform-arrow-functions": "7.18.6", - "@babel/plugin-transform-block-scoping": "7.18.9", - "@babel/plugin-transform-classes": "7.18.9", - "@babel/plugin-transform-computed-properties": "7.18.9", - "@babel/plugin-transform-destructuring": "7.18.9", - "@babel/plugin-transform-modules-commonjs": "7.18.6", - "@babel/plugin-transform-parameters": "7.18.8", - "@babel/plugin-transform-shorthand-properties": "7.18.6", - "@babel/plugin-transform-spread": "7.18.9", - "@babel/plugin-transform-template-literals": "7.18.9", - "@babel/preset-react": "7.18.6", - "@babel/preset-typescript": "^7.17.12", + "@babel/cli": "7.23.9", + "@babel/core": "7.23.9", + "@babel/eslint-parser": "7.23.9", + "@babel/plugin-transform-export-namespace-from": "7.23.4", + "@babel/plugin-transform-modules-commonjs": "7.23.3", + "@babel/preset-env": "7.23.9", + "@babel/preset-react": "7.23.3", + "@babel/preset-typescript": "7.23.3", "@changesets/cli": "^2.24.1", - "@storybook/addon-storysource": "^7.6.10", "@storybook/addon-essentials": "^7.6.10", + "@storybook/addon-storysource": "^7.6.10", "@storybook/react": "^7.6.7", "@storybook/react-webpack5": "^7.6.7", "@svitejs/changesets-changelog-github-compact": "^0.1.1", @@ -64,11 +53,11 @@ "@types/testing-library__jest-dom": "^5.14.5", "@typescript-eslint/eslint-plugin": "^5.32.0", "@typescript-eslint/parser": "^5.32.0", - "babel-jest": "^29.7.0", - "babel-loader": "^8.2.5", - "babel-plugin-lodash": "^3.1.2", - "babel-plugin-module-resolver": "^4.1.0", - "babel-preset-react-native": "^4.0.1", + "babel-jest": "29.7.0", + "babel-loader": "9.1.3", + "babel-plugin-lodash": "3.3.4", + "babel-plugin-module-resolver": "5.0.0", + "babel-preset-react-native": "4.0.1", "chromatic": "^6.7.1", "concurrently": "^7.3.0", "cpx2": "^4.2.0", @@ -93,7 +82,7 @@ "lodash": "^4.17.19", "lodash-webpack-plugin": "^0.11.6", "mdast-util-to-string": "^1.0.6", - "metro-react-native-babel-preset": "0.71.3", + "metro-react-native-babel-preset": "0.77.0", "nps": "^5.9.0", "octokit": "^3.1.1", "prettier": "^2.6.2", @@ -125,6 +114,12 @@ "@types/eslint": "8.4.3" } }, + "browserslist": [ + "> 0.5%", + "last 2 versions", + "Firefox ESR", + "not dead" + ], "scripts": { "version": "pnpm changeset version && pnpm install --no-frozen-lockfile", "publish": "nps git:tag && pnpm changeset publish --no-git-tag", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 829392d88..3b4d9760b 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -7,25 +7,14 @@ importers: .: specifiers: - '@babel/cli': 7.18.9 - '@babel/core': 7.18.9 - '@babel/eslint-parser': ^7.18.9 - '@babel/plugin-proposal-class-properties': 7.18.6 - '@babel/plugin-proposal-export-namespace-from': ^7.18.9 - '@babel/plugin-proposal-object-rest-spread': 7.18.9 - '@babel/plugin-proposal-optional-chaining': ^7.18.9 - '@babel/plugin-transform-arrow-functions': 7.18.6 - '@babel/plugin-transform-block-scoping': 7.18.9 - '@babel/plugin-transform-classes': 7.18.9 - '@babel/plugin-transform-computed-properties': 7.18.9 - '@babel/plugin-transform-destructuring': 7.18.9 - '@babel/plugin-transform-modules-commonjs': 7.18.6 - '@babel/plugin-transform-parameters': 7.18.8 - '@babel/plugin-transform-shorthand-properties': 7.18.6 - '@babel/plugin-transform-spread': 7.18.9 - '@babel/plugin-transform-template-literals': 7.18.9 - '@babel/preset-react': 7.18.6 - '@babel/preset-typescript': ^7.17.12 + '@babel/cli': 7.23.9 + '@babel/core': 7.23.9 + '@babel/eslint-parser': 7.23.9 + '@babel/plugin-transform-export-namespace-from': 7.23.4 + '@babel/plugin-transform-modules-commonjs': 7.23.3 + '@babel/preset-env': 7.23.9 + '@babel/preset-react': 7.23.3 + '@babel/preset-typescript': 7.23.3 '@changesets/cli': ^2.24.1 '@storybook/addon-essentials': ^7.6.10 '@storybook/addon-storysource': ^7.6.10 @@ -46,11 +35,11 @@ importers: '@types/testing-library__jest-dom': ^5.14.5 '@typescript-eslint/eslint-plugin': ^5.32.0 '@typescript-eslint/parser': ^5.32.0 - babel-jest: ^29.7.0 - babel-loader: ^8.2.5 - babel-plugin-lodash: ^3.1.2 - babel-plugin-module-resolver: ^4.1.0 - babel-preset-react-native: ^4.0.1 + babel-jest: 29.7.0 + babel-loader: 9.1.3 + babel-plugin-lodash: 3.3.4 + babel-plugin-module-resolver: 5.0.0 + babel-preset-react-native: 4.0.1 chromatic: ^6.7.1 concurrently: ^7.3.0 cpx2: ^4.2.0 @@ -75,7 +64,7 @@ importers: lodash: ^4.17.19 lodash-webpack-plugin: ^0.11.6 mdast-util-to-string: ^1.0.6 - metro-react-native-babel-preset: 0.71.3 + metro-react-native-babel-preset: 0.77.0 nps: ^5.9.0 octokit: ^3.1.1 prettier: ^2.6.2 @@ -102,30 +91,19 @@ importers: webpack-dev-server: ^4.9.0 wireit: ^0.7.1 devDependencies: - '@babel/cli': 7.18.9_@babel+core@7.18.9 - '@babel/core': 7.18.9 - '@babel/eslint-parser': 7.18.9_qixkf6blpy7m2ag6xkq37oeusq - '@babel/plugin-proposal-class-properties': 7.18.6_@babel+core@7.18.9 - '@babel/plugin-proposal-export-namespace-from': 7.18.9_@babel+core@7.18.9 - '@babel/plugin-proposal-object-rest-spread': 7.18.9_@babel+core@7.18.9 - '@babel/plugin-proposal-optional-chaining': 7.18.9_@babel+core@7.18.9 - '@babel/plugin-transform-arrow-functions': 7.18.6_@babel+core@7.18.9 - '@babel/plugin-transform-block-scoping': 7.18.9_@babel+core@7.18.9 - '@babel/plugin-transform-classes': 7.18.9_@babel+core@7.18.9 - '@babel/plugin-transform-computed-properties': 7.18.9_@babel+core@7.18.9 - '@babel/plugin-transform-destructuring': 7.18.9_@babel+core@7.18.9 - '@babel/plugin-transform-modules-commonjs': 7.18.6_@babel+core@7.18.9 - '@babel/plugin-transform-parameters': 7.18.8_@babel+core@7.18.9 - '@babel/plugin-transform-shorthand-properties': 7.18.6_@babel+core@7.18.9 - '@babel/plugin-transform-spread': 7.18.9_@babel+core@7.18.9 - '@babel/plugin-transform-template-literals': 7.18.9_@babel+core@7.18.9 - '@babel/preset-react': 7.18.6_@babel+core@7.18.9 - '@babel/preset-typescript': 7.18.6_@babel+core@7.18.9 + '@babel/cli': 7.23.9_@babel+core@7.23.9 + '@babel/core': 7.23.9 + '@babel/eslint-parser': 7.23.9_hrzclrgiitwdok4gbgc3tyaara + '@babel/plugin-transform-export-namespace-from': 7.23.4_@babel+core@7.23.9 + '@babel/plugin-transform-modules-commonjs': 7.23.3_@babel+core@7.23.9 + '@babel/preset-env': 7.23.9_@babel+core@7.23.9 + '@babel/preset-react': 7.23.3_@babel+core@7.23.9 + '@babel/preset-typescript': 7.23.3_@babel+core@7.23.9 '@changesets/cli': 2.24.1 '@storybook/addon-essentials': 7.6.10_v7vsrdtui4d36prbwvdnlb7tpq '@storybook/addon-storysource': 7.6.10 '@storybook/react': 7.6.10_xrxvbtylmve4l2tr3vmmqgfp7q - '@storybook/react-webpack5': 7.6.10_656ojrr56y7odmdb43up5adzqi + '@storybook/react-webpack5': 7.6.10_l6ptdxgqtrttdxofrdxqmkmtsa '@svitejs/changesets-changelog-github-compact': 0.1.1 '@testing-library/jest-dom': 5.16.4 '@testing-library/react': 13.3.0_biqbaboplfbrettd7655fr4n2y @@ -141,10 +119,10 @@ importers: '@types/testing-library__jest-dom': 5.14.5 '@typescript-eslint/eslint-plugin': 5.32.0_iosr3hrei2tubxveewluhu5lhy '@typescript-eslint/parser': 5.32.0_qugx7qdu5zevzvxaiqyxfiwquq - babel-jest: 29.7.0_@babel+core@7.18.9 - babel-loader: 8.2.5_y3lv6tn6yokher4u7xj4j22px4 + babel-jest: 29.7.0_@babel+core@7.23.9 + babel-loader: 9.1.3_m3ubustvnarb332p336i4vegoa babel-plugin-lodash: 3.3.4 - babel-plugin-module-resolver: 4.1.0 + babel-plugin-module-resolver: 5.0.0 babel-preset-react-native: 4.0.1 chromatic: 6.7.1 concurrently: 7.3.0 @@ -170,7 +148,7 @@ importers: lodash: 4.17.21 lodash-webpack-plugin: 0.11.6_webpack@5.74.0 mdast-util-to-string: 1.1.0 - metro-react-native-babel-preset: 0.71.3_@babel+core@7.18.9 + metro-react-native-babel-preset: 0.77.0_@babel+core@7.23.9 nps: 5.10.0 octokit: 3.1.1 prettier: 2.7.1 @@ -185,7 +163,7 @@ importers: seedrandom: 3.0.5 storybook: 7.6.10 styled-components: 5.3.5_biqbaboplfbrettd7655fr4n2y - ts-jest: 29.1.2_5cytqtvimh5ynfyz6wjzc2t4gm + ts-jest: 29.1.2_pf2j7gyd26tnyyq6b4phcdcbzm ts-loader: 9.3.1_xnp4kzegbjokq62cajex2ovgkm ts-node: 10.9.1_f6w67sjx3imwytyzb2qhabnzqe typescript: 4.7.4 @@ -787,7 +765,7 @@ packages: engines: {node: '>=6.0.0'} dependencies: '@jridgewell/gen-mapping': 0.1.1 - '@jridgewell/trace-mapping': 0.3.14 + '@jridgewell/trace-mapping': 0.3.22 dev: true /@aw-web-design/x-default-browser/1.4.126: @@ -797,19 +775,19 @@ packages: default-browser-id: 3.0.0 dev: true - /@babel/cli/7.18.9_@babel+core@7.18.9: - resolution: {integrity: sha512-e7TOtHVrAXBJGNgoROVxqx0mathd01oJGXIDekRfxdrISnRqfM795APwkDtse9GdyPYivjg3iXiko3sF3W7f5Q==} + /@babel/cli/7.23.9_@babel+core@7.23.9: + resolution: {integrity: sha512-vB1UXmGDNEhcf1jNAHKT9IlYk1R+hehVTLFlCLHBi8gfuHQGP6uRjgXVYU0EVlI/qwAWpstqkBdf2aez3/z/5Q==} engines: {node: '>=6.9.0'} hasBin: true peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.9 - '@jridgewell/trace-mapping': 0.3.14 + '@babel/core': 7.23.9 + '@jridgewell/trace-mapping': 0.3.22 commander: 4.1.1 - convert-source-map: 1.8.0 + convert-source-map: 2.0.0 fs-readdir-recursive: 1.1.0 - glob: 7.1.2 + glob: 7.2.3 make-dir: 2.1.0 slash: 2.0.0 optionalDependencies: @@ -865,20 +843,20 @@ packages: - supports-color dev: true - /@babel/core/7.23.7: - resolution: {integrity: sha512-+UpDgowcmqe36d4NwqvKsyPMlOLNGMsfMmQ5WGCu+siCe3t3dfe9njrzGfdN4qq+bcNUt0+Vw6haRxBOycs4dw==} + /@babel/core/7.23.9: + resolution: {integrity: sha512-5q0175NOjddqpvvzU+kDiSOAk4PfdO6FvwCWoQ6RO7rTzEe8vlo+4HVfcnAREhD4npMs0e9uZypjTwzZPCf/cw==} engines: {node: '>=6.9.0'} dependencies: '@ampproject/remapping': 2.2.0 '@babel/code-frame': 7.23.5 '@babel/generator': 7.23.6 '@babel/helper-compilation-targets': 7.23.6 - '@babel/helper-module-transforms': 7.23.3_@babel+core@7.23.7 - '@babel/helpers': 7.23.8 - '@babel/parser': 7.23.6 - '@babel/template': 7.22.15 - '@babel/traverse': 7.23.7 - '@babel/types': 7.23.6 + '@babel/helper-module-transforms': 7.23.3_@babel+core@7.23.9 + '@babel/helpers': 7.24.0 + '@babel/parser': 7.24.0 + '@babel/template': 7.24.0 + '@babel/traverse': 7.24.0 + '@babel/types': 7.24.0 convert-source-map: 2.0.0 debug: 4.3.4 gensync: 1.0.0-beta.2 @@ -888,34 +866,25 @@ packages: - supports-color dev: true - /@babel/eslint-parser/7.18.9_qixkf6blpy7m2ag6xkq37oeusq: - resolution: {integrity: sha512-KzSGpMBggz4fKbRbWLNyPVTuQr6cmCcBhOyXTw/fieOVaw5oYAwcAj4a7UKcDYCPxQq+CG1NCDZH9e2JTXquiQ==} + /@babel/eslint-parser/7.23.9_hrzclrgiitwdok4gbgc3tyaara: + resolution: {integrity: sha512-xPndlO7qxiJbn0ATvfXQBjCS7qApc9xmKHArgI/FTEFxXas5dnjC/VqM37lfZun9dclRYcn+YQAr6uDFy0bB2g==} engines: {node: ^10.13.0 || ^12.13.0 || >=14.0.0} peerDependencies: - '@babel/core': '>=7.11.0' + '@babel/core': ^7.11.0 eslint: ^7.5.0 || ^8.0.0 dependencies: - '@babel/core': 7.18.9 + '@babel/core': 7.23.9 + '@nicolo-ribaudo/eslint-scope-5-internals': 5.1.1-v1 eslint: 8.21.0 - eslint-scope: 5.1.1 eslint-visitor-keys: 2.1.0 - semver: 6.3.0 - dev: true - - /@babel/generator/7.18.7: - resolution: {integrity: sha512-shck+7VLlY72a2w9c3zYWuE1pwOKEiQHV7GTUbSnhyl5eu3i04t30tBY82ZRWrDfo3gkakCFtevExnxbkf2a3A==} - engines: {node: '>=6.9.0'} - dependencies: - '@babel/types': 7.23.6 - '@jridgewell/gen-mapping': 0.3.2 - jsesc: 2.5.2 + semver: 6.3.1 dev: true /@babel/generator/7.18.9: resolution: {integrity: sha512-wt5Naw6lJrL1/SGkipMiFxJjtyczUWTP38deiP1PO60HsBjDeKk08CGC3S8iVuvf0FmTdgKwU1KIXzSKL1G0Ug==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.18.9 + '@babel/types': 7.23.6 '@jridgewell/gen-mapping': 0.3.2 jsesc: 2.5.2 dev: true @@ -924,7 +893,7 @@ packages: resolution: {integrity: sha512-qrSfCYxYQB5owCmGLbl8XRpX1ytXlpueOb0N0UmQwA073KZxejgQTzAmJezxvpwQD9uGtK2shHdi55QT+MbjIw==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.23.6 + '@babel/types': 7.24.0 '@jridgewell/gen-mapping': 0.3.2 '@jridgewell/trace-mapping': 0.3.22 jsesc: 2.5.2 @@ -944,14 +913,6 @@ packages: '@babel/types': 7.23.6 dev: true - /@babel/helper-builder-binary-assignment-operator-visitor/7.18.6: - resolution: {integrity: sha512-KT10c1oWEpmrIRYnthbzHgoOf6B+Xd6a5yhdbNtdhtG7aO1or5HViuf1TQR36xY/QprXA5nvxO6nAjhJ4y38jw==} - engines: {node: '>=6.9.0'} - dependencies: - '@babel/helper-explode-assignable-expression': 7.18.6 - '@babel/types': 7.23.6 - dev: true - /@babel/helper-builder-binary-assignment-operator-visitor/7.22.15: resolution: {integrity: sha512-QkBXwGgaoC2GtGZRoma6kv7Szfv06khvhFav67ZExau2RaXzy8MpHSMO2PNoP2XtmQphJQRHFfg77Bq731Yizw==} engines: {node: '>=6.9.0'} @@ -983,119 +944,73 @@ packages: semver: 6.3.1 dev: true - /@babel/helper-create-class-features-plugin/7.18.6_@babel+core@7.18.9: - resolution: {integrity: sha512-YfDzdnoxHGV8CzqHGyCbFvXg5QESPFkXlHtvdCkesLjjVMT2Adxe4FGUR5ChIb3DxSaXO12iIOCWoXdsUVwnqw==} + /@babel/helper-create-class-features-plugin/7.23.7_@babel+core@7.18.9: + resolution: {integrity: sha512-xCoqR/8+BoNnXOY7RVSgv6X+o7pmT5q1d+gGcRlXYkI+9B31glE4jeejhKVpA04O1AtzOt7OSQ6VYKP5FcRl9g==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: '@babel/core': 7.18.9 - '@babel/helper-annotate-as-pure': 7.18.6 + '@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.18.6 - '@babel/helper-optimise-call-expression': 7.18.6 - '@babel/helper-replace-supers': 7.18.6 + '@babel/helper-member-expression-to-functions': 7.23.0 + '@babel/helper-optimise-call-expression': 7.22.5 + '@babel/helper-replace-supers': 7.22.20_@babel+core@7.18.9 + '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 '@babel/helper-split-export-declaration': 7.22.6 - transitivePeerDependencies: - - supports-color - dev: true - - /@babel/helper-create-class-features-plugin/7.18.9_@babel+core@7.18.9: - resolution: {integrity: sha512-WvypNAYaVh23QcjpMR24CwZY2Nz6hqdOcFdPbNpV56hL5H6KiFheO7Xm1aPdlLQ7d5emYZX7VZwPp9x3z+2opw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - dependencies: - '@babel/core': 7.18.9 - '@babel/helper-annotate-as-pure': 7.18.6 - '@babel/helper-environment-visitor': 7.18.9 - '@babel/helper-function-name': 7.18.9 - '@babel/helper-member-expression-to-functions': 7.18.9 - '@babel/helper-optimise-call-expression': 7.18.6 - '@babel/helper-replace-supers': 7.18.9 - '@babel/helper-split-export-declaration': 7.18.6 - transitivePeerDependencies: - - supports-color + semver: 6.3.1 dev: true - /@babel/helper-create-class-features-plugin/7.23.7_@babel+core@7.23.7: + /@babel/helper-create-class-features-plugin/7.23.7_@babel+core@7.23.9: resolution: {integrity: sha512-xCoqR/8+BoNnXOY7RVSgv6X+o7pmT5q1d+gGcRlXYkI+9B31glE4jeejhKVpA04O1AtzOt7OSQ6VYKP5FcRl9g==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.23.7 + '@babel/core': 7.23.9 '@babel/helper-annotate-as-pure': 7.22.5 '@babel/helper-environment-visitor': 7.22.20 '@babel/helper-function-name': 7.23.0 '@babel/helper-member-expression-to-functions': 7.23.0 '@babel/helper-optimise-call-expression': 7.22.5 - '@babel/helper-replace-supers': 7.22.20_@babel+core@7.23.7 + '@babel/helper-replace-supers': 7.22.20_@babel+core@7.23.9 '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 '@babel/helper-split-export-declaration': 7.22.6 semver: 6.3.1 dev: true - /@babel/helper-create-regexp-features-plugin/7.18.6_@babel+core@7.18.9: - resolution: {integrity: sha512-7LcpH1wnQLGrI+4v+nPp+zUvIkF9x0ddv1Hkdue10tg3gmRnLy97DXh4STiOf1qeIInyD69Qv5kKSZzKD8B/7A==} + /@babel/helper-create-regexp-features-plugin/7.22.15_@babel+core@7.18.9: + resolution: {integrity: sha512-29FkPLFjn4TPEa3RE7GpW+qbE8tlsu3jntNYNfcGsc49LphF1PQIiD+vMZ1z1xVOKt+93khA9tc2JBs3kBjA7w==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: '@babel/core': 7.18.9 - '@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.23.7: - resolution: {integrity: sha512-7LcpH1wnQLGrI+4v+nPp+zUvIkF9x0ddv1Hkdue10tg3gmRnLy97DXh4STiOf1qeIInyD69Qv5kKSZzKD8B/7A==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - dependencies: - '@babel/core': 7.23.7 - '@babel/helper-annotate-as-pure': 7.18.6 - regexpu-core: 5.1.0 + '@babel/helper-annotate-as-pure': 7.22.5 + regexpu-core: 5.3.2 + semver: 6.3.1 dev: true - /@babel/helper-create-regexp-features-plugin/7.22.15_@babel+core@7.23.7: + /@babel/helper-create-regexp-features-plugin/7.22.15_@babel+core@7.23.9: resolution: {integrity: sha512-29FkPLFjn4TPEa3RE7GpW+qbE8tlsu3jntNYNfcGsc49LphF1PQIiD+vMZ1z1xVOKt+93khA9tc2JBs3kBjA7w==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.23.7 + '@babel/core': 7.23.9 '@babel/helper-annotate-as-pure': 7.22.5 regexpu-core: 5.3.2 semver: 6.3.1 dev: true - /@babel/helper-define-polyfill-provider/0.3.1_@babel+core@7.18.9: - resolution: {integrity: sha512-J9hGMpJQmtWmj46B3kBHmL38UhJGhYX7eqkcq+2gsstyYt341HmPeWspihX43yVRA0mS+8GGk2Gckc7bY/HCmA==} - peerDependencies: - '@babel/core': ^7.4.0-0 - dependencies: - '@babel/core': 7.18.9 - '@babel/helper-compilation-targets': 7.18.9_@babel+core@7.18.9 - '@babel/helper-module-imports': 7.18.6 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/traverse': 7.23.7 - debug: 4.3.4 - lodash.debounce: 4.0.8 - resolve: 1.22.8 - semver: 6.3.1 - transitivePeerDependencies: - - supports-color - dev: true - /@babel/helper-define-polyfill-provider/0.3.2_@babel+core@7.18.9: resolution: {integrity: sha512-r9QJJ+uDWrd+94BSPcP6/de67ygLtvVy6cK4luE6MOuDsZIdoaPBnfSpbO/+LTifjPckbKXRuI9BB/Z2/y3iTg==} peerDependencies: '@babel/core': ^7.4.0-0 dependencies: '@babel/core': 7.18.9 - '@babel/helper-compilation-targets': 7.18.9_@babel+core@7.18.9 + '@babel/helper-compilation-targets': 7.23.6 '@babel/helper-plugin-utils': 7.22.5 debug: 4.3.4 lodash.debounce: 4.0.8 @@ -1105,27 +1020,28 @@ packages: - supports-color dev: true - /@babel/helper-define-polyfill-provider/0.4.4_@babel+core@7.23.7: - resolution: {integrity: sha512-QcJMILQCu2jm5TFPGA3lCpJJTeEP+mqeXooG/NZbg/h5FTFi6V0+99ahlRsW8/kRLyb24LZVCCiclDedhLKcBA==} + /@babel/helper-define-polyfill-provider/0.3.2_@babel+core@7.23.9: + resolution: {integrity: sha512-r9QJJ+uDWrd+94BSPcP6/de67ygLtvVy6cK4luE6MOuDsZIdoaPBnfSpbO/+LTifjPckbKXRuI9BB/Z2/y3iTg==} peerDependencies: - '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 + '@babel/core': ^7.4.0-0 dependencies: - '@babel/core': 7.23.7 + '@babel/core': 7.23.9 '@babel/helper-compilation-targets': 7.23.6 '@babel/helper-plugin-utils': 7.22.5 debug: 4.3.4 lodash.debounce: 4.0.8 resolve: 1.22.8 + semver: 6.3.1 transitivePeerDependencies: - supports-color dev: true - /@babel/helper-define-polyfill-provider/0.5.0_@babel+core@7.23.7: + /@babel/helper-define-polyfill-provider/0.5.0_@babel+core@7.23.9: resolution: {integrity: sha512-NovQquuQLAQ5HuyjCz7WQP9MjRj7dx++yspwiyUiGl9ZyadHRSql1HZh5ogRd8W8w6YM6EQ/NTB8rgjLt5W65Q==} peerDependencies: '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 dependencies: - '@babel/core': 7.23.7 + '@babel/core': 7.23.9 '@babel/helper-compilation-targets': 7.23.6 '@babel/helper-plugin-utils': 7.22.5 debug: 4.3.4 @@ -1150,13 +1066,6 @@ packages: engines: {node: '>=6.9.0'} dev: true - /@babel/helper-explode-assignable-expression/7.18.6: - resolution: {integrity: sha512-eyAYAsQmB80jNfg4baAtLeWAQHfHFiR483rzFK+BhETlGZaQC9bsfrugfXDCbRHLQbIA7U5NxhhOxN7p/dWIcg==} - engines: {node: '>=6.9.0'} - dependencies: - '@babel/types': 7.23.6 - dev: true - /@babel/helper-function-name/7.18.6: resolution: {integrity: sha512-0mWMxV1aC97dhjCah5U5Ua7668r5ZmSC2DLfH2EZnf9c3/dHZKiFa5pRLMH5tjSl471tY6496ZWk/kjNONBxhw==} engines: {node: '>=6.9.0'} @@ -1169,7 +1078,7 @@ packages: resolution: {integrity: sha512-fJgWlZt7nxGksJS9a0XdSaI4XvpExnNIgRP+rVefWh5U7BL8pPuir6SJUmFKRfjWQ51OtWSzwOxhaH/EBWWc0A==} engines: {node: '>=6.9.0'} dependencies: - '@babel/template': 7.18.6 + '@babel/template': 7.22.15 '@babel/types': 7.23.6 dev: true @@ -1177,8 +1086,8 @@ packages: resolution: {integrity: sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw==} engines: {node: '>=6.9.0'} dependencies: - '@babel/template': 7.22.15 - '@babel/types': 7.23.6 + '@babel/template': 7.24.0 + '@babel/types': 7.24.0 dev: true /@babel/helper-hoist-variables/7.18.6: @@ -1192,21 +1101,7 @@ packages: resolution: {integrity: sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.23.6 - dev: true - - /@babel/helper-member-expression-to-functions/7.18.6: - resolution: {integrity: sha512-CeHxqwwipekotzPDUuJOfIMtcIHBuc7WAzLmTYWctVigqS5RktNMQ5bEwQSuGewzYnCtTWa3BARXeiLxDTv+Ng==} - engines: {node: '>=6.9.0'} - dependencies: - '@babel/types': 7.23.6 - dev: true - - /@babel/helper-member-expression-to-functions/7.18.9: - resolution: {integrity: sha512-RxifAh2ZoVU67PyKIO4AMi1wTenGfMR/O/ae0CCRqwgBAt5v7xjdtRw7UoSbsreKrQn5t7r89eruK/9JjYHuDg==} - engines: {node: '>=6.9.0'} - dependencies: - '@babel/types': 7.23.6 + '@babel/types': 7.24.0 dev: true /@babel/helper-member-expression-to-functions/7.23.0: @@ -1236,23 +1131,23 @@ packages: dependencies: '@babel/helper-environment-visitor': 7.18.9 '@babel/helper-module-imports': 7.18.6 - '@babel/helper-simple-access': 7.18.6 + '@babel/helper-simple-access': 7.22.5 '@babel/helper-split-export-declaration': 7.18.6 '@babel/helper-validator-identifier': 7.18.6 - '@babel/template': 7.18.6 - '@babel/traverse': 7.18.9 - '@babel/types': 7.18.9 + '@babel/template': 7.22.15 + '@babel/traverse': 7.23.7 + '@babel/types': 7.23.6 transitivePeerDependencies: - supports-color dev: true - /@babel/helper-module-transforms/7.23.3_@babel+core@7.23.7: + /@babel/helper-module-transforms/7.23.3_@babel+core@7.18.9: resolution: {integrity: sha512-7bBs4ED9OmswdfDzpz4MpWgSrV7FXlc3zIagvLFjS5H+Mk7Snr21vQ6QwrsoCGMfNC4e4LQPdoULEt4ykz0SRQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.23.7 + '@babel/core': 7.18.9 '@babel/helper-environment-visitor': 7.22.20 '@babel/helper-module-imports': 7.22.15 '@babel/helper-simple-access': 7.22.5 @@ -1260,11 +1155,18 @@ packages: '@babel/helper-validator-identifier': 7.22.20 dev: true - /@babel/helper-optimise-call-expression/7.18.6: - resolution: {integrity: sha512-HP59oD9/fEHQkdcbgFCnbmgH5vIQTJbxh2yf+CdM89/glUNnuzr87Q8GIjGEnOktTROemO0Pe0iPAYbqZuOUiA==} + /@babel/helper-module-transforms/7.23.3_@babel+core@7.23.9: + resolution: {integrity: sha512-7bBs4ED9OmswdfDzpz4MpWgSrV7FXlc3zIagvLFjS5H+Mk7Snr21vQ6QwrsoCGMfNC4e4LQPdoULEt4ykz0SRQ==} engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 dependencies: - '@babel/types': 7.23.6 + '@babel/core': 7.23.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-optimise-call-expression/7.22.5: @@ -1274,108 +1176,59 @@ packages: '@babel/types': 7.23.6 dev: true - /@babel/helper-plugin-utils/7.18.6: - resolution: {integrity: sha512-gvZnm1YAAxh13eJdkb9EWHBnF3eAub3XTLCZEehHT2kWxiKVRL64+ae5Y6Ivne0mVHmMYKT+xWgZO+gQhuLUBg==} - engines: {node: '>=6.9.0'} - dev: true - - /@babel/helper-plugin-utils/7.18.9: - resolution: {integrity: sha512-aBXPT3bmtLryXaoJLyYPXPlSD4p1ld9aYeR+sJNOZjJJGiOpb+fKfh3NkcCu7J54nUJwCERPBExCCpyCOHnu/w==} - engines: {node: '>=6.9.0'} - dev: true - /@babel/helper-plugin-utils/7.22.5: resolution: {integrity: sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg==} engines: {node: '>=6.9.0'} dev: true - /@babel/helper-remap-async-to-generator/7.18.6_@babel+core@7.18.9: - resolution: {integrity: sha512-z5wbmV55TveUPZlCLZvxWHtrjuJd+8inFhk7DG0WW87/oJuGDcjDiu7HIvGcpf5464L6xKCg3vNkmlVVz9hwyQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - dependencies: - '@babel/core': 7.18.9 - '@babel/helper-annotate-as-pure': 7.18.6 - '@babel/helper-environment-visitor': 7.22.20 - '@babel/helper-wrap-function': 7.18.6 - '@babel/types': 7.23.6 - transitivePeerDependencies: - - supports-color - dev: true - - /@babel/helper-remap-async-to-generator/7.18.9_@babel+core@7.18.9: - resolution: {integrity: sha512-dI7q50YKd8BAv3VEfgg7PS7yD3Rtbi2J1XMXaalXO0W0164hYLnh8zpjRS0mte9MfVp/tltvr/cfdXPvJr1opA==} + /@babel/helper-remap-async-to-generator/7.22.20_@babel+core@7.18.9: + resolution: {integrity: sha512-pBGyV4uBqOns+0UvhsTO8qgl8hO89PmiDYv+/COyp1aeMcmfrfruz+/nCMFiYyFF/Knn0yfrC85ZzNFjembFTw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: '@babel/core': 7.18.9 - '@babel/helper-annotate-as-pure': 7.18.6 + '@babel/helper-annotate-as-pure': 7.22.5 '@babel/helper-environment-visitor': 7.22.20 - '@babel/helper-wrap-function': 7.18.9 - '@babel/types': 7.23.6 - transitivePeerDependencies: - - supports-color + '@babel/helper-wrap-function': 7.22.20 dev: true - /@babel/helper-remap-async-to-generator/7.22.20_@babel+core@7.23.7: + /@babel/helper-remap-async-to-generator/7.22.20_@babel+core@7.23.9: resolution: {integrity: sha512-pBGyV4uBqOns+0UvhsTO8qgl8hO89PmiDYv+/COyp1aeMcmfrfruz+/nCMFiYyFF/Knn0yfrC85ZzNFjembFTw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.23.7 + '@babel/core': 7.23.9 '@babel/helper-annotate-as-pure': 7.22.5 '@babel/helper-environment-visitor': 7.22.20 '@babel/helper-wrap-function': 7.22.20 dev: true - /@babel/helper-replace-supers/7.18.6: - resolution: {integrity: sha512-fTf7zoXnUGl9gF25fXCWE26t7Tvtyn6H4hkLSYhATwJvw2uYxd3aoXplMSe0g9XbwK7bmxNes7+FGO0rB/xC0g==} + /@babel/helper-replace-supers/7.22.20_@babel+core@7.18.9: + resolution: {integrity: sha512-qsW0In3dbwQUbK8kejJ4R7IHVGwHJlV6lpG6UA7a9hSa2YEiAib+N1T2kr6PEeUT+Fl7najmSOS6SmAwCHK6Tw==} engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 dependencies: + '@babel/core': 7.18.9 '@babel/helper-environment-visitor': 7.22.20 - '@babel/helper-member-expression-to-functions': 7.18.6 - '@babel/helper-optimise-call-expression': 7.18.6 - '@babel/traverse': 7.23.7 - '@babel/types': 7.23.6 - transitivePeerDependencies: - - supports-color - dev: true - - /@babel/helper-replace-supers/7.18.9: - resolution: {integrity: sha512-dNsWibVI4lNT6HiuOIBr1oyxo40HvIVmbwPUm3XZ7wMh4k2WxrxTqZwSqw/eEmXDS9np0ey5M2bz9tBmO9c+YQ==} - engines: {node: '>=6.9.0'} - dependencies: - '@babel/helper-environment-visitor': 7.18.9 - '@babel/helper-member-expression-to-functions': 7.18.9 - '@babel/helper-optimise-call-expression': 7.18.6 - '@babel/traverse': 7.18.9 - '@babel/types': 7.23.6 - transitivePeerDependencies: - - supports-color + '@babel/helper-member-expression-to-functions': 7.23.0 + '@babel/helper-optimise-call-expression': 7.22.5 dev: true - /@babel/helper-replace-supers/7.22.20_@babel+core@7.23.7: + /@babel/helper-replace-supers/7.22.20_@babel+core@7.23.9: resolution: {integrity: sha512-qsW0In3dbwQUbK8kejJ4R7IHVGwHJlV6lpG6UA7a9hSa2YEiAib+N1T2kr6PEeUT+Fl7najmSOS6SmAwCHK6Tw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.23.7 + '@babel/core': 7.23.9 '@babel/helper-environment-visitor': 7.22.20 '@babel/helper-member-expression-to-functions': 7.23.0 '@babel/helper-optimise-call-expression': 7.22.5 dev: true - /@babel/helper-simple-access/7.18.6: - resolution: {integrity: sha512-iNpIgTgyAvDQpDj76POqg+YEt8fPxx3yaNBg3S30dxNKm2SWfYhD0TGrK/Eu9wHpUW63VQU894TsTg+GLbUa1g==} - engines: {node: '>=6.9.0'} - dependencies: - '@babel/types': 7.23.6 - dev: true - /@babel/helper-simple-access/7.22.5: resolution: {integrity: sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==} engines: {node: '>=6.9.0'} @@ -1383,20 +1236,6 @@ packages: '@babel/types': 7.23.6 dev: true - /@babel/helper-skip-transparent-expression-wrappers/7.18.6: - resolution: {integrity: sha512-4KoLhwGS9vGethZpAhYnMejWkX64wsnHPDwvOsKWU6Fg4+AlK2Jz3TyjQLMEPvz+1zemi/WBdkYxCD0bAfIkiw==} - engines: {node: '>=6.9.0'} - dependencies: - '@babel/types': 7.23.6 - dev: true - - /@babel/helper-skip-transparent-expression-wrappers/7.18.9: - resolution: {integrity: sha512-imytd2gHi3cJPsybLRbmFrF7u5BIEuI2cNheyKi3/iOBC63kNn3q8Crn2xVuESli0aM4KYsyEqKyS7lFL8YVtw==} - engines: {node: '>=6.9.0'} - dependencies: - '@babel/types': 7.23.6 - dev: true - /@babel/helper-skip-transparent-expression-wrappers/7.22.5: resolution: {integrity: sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q==} engines: {node: '>=6.9.0'} @@ -1415,7 +1254,7 @@ packages: resolution: {integrity: sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.23.6 + '@babel/types': 7.24.0 dev: true /@babel/helper-string-parser/7.23.4: @@ -1443,30 +1282,6 @@ packages: engines: {node: '>=6.9.0'} dev: true - /@babel/helper-wrap-function/7.18.6: - resolution: {integrity: sha512-I5/LZfozwMNbwr/b1vhhuYD+J/mU+gfGAj5td7l5Rv9WYmH6i3Om69WGKNmlIpsVW/mF6O5bvTKbvDQZVgjqOw==} - engines: {node: '>=6.9.0'} - dependencies: - '@babel/helper-function-name': 7.23.0 - '@babel/template': 7.22.15 - '@babel/traverse': 7.23.7 - '@babel/types': 7.23.6 - transitivePeerDependencies: - - supports-color - dev: true - - /@babel/helper-wrap-function/7.18.9: - resolution: {integrity: sha512-cG2ru3TRAL6a60tfQflpEfs4ldiPwF6YW3zfJiRgmoFVIaC1vGnBBgatfec+ZUziPHkHSaXAuEck3Cdkf3eRpQ==} - engines: {node: '>=6.9.0'} - dependencies: - '@babel/helper-function-name': 7.23.0 - '@babel/template': 7.22.15 - '@babel/traverse': 7.23.7 - '@babel/types': 7.23.6 - transitivePeerDependencies: - - supports-color - dev: true - /@babel/helper-wrap-function/7.22.20: resolution: {integrity: sha512-pms/UwkOpnQe/PDAEdV/d7dVCoBbB+R4FvYoHGZz+4VPcg7RtYy2KP7S2lbuWM6FCSgob5wshfGESbC/hzNXZw==} engines: {node: '>=6.9.0'} @@ -1480,20 +1295,20 @@ packages: resolution: {integrity: sha512-Jf5a+rbrLoR4eNdUmnFu8cN5eNJT6qdTdOg5IHIzq87WwyRw9PwguLFOWYgktN/60IP4fgDUawJvs7PjQIzELQ==} engines: {node: '>=6.9.0'} dependencies: - '@babel/template': 7.18.6 - '@babel/traverse': 7.18.9 - '@babel/types': 7.18.9 + '@babel/template': 7.22.15 + '@babel/traverse': 7.23.7 + '@babel/types': 7.23.6 transitivePeerDependencies: - supports-color dev: true - /@babel/helpers/7.23.8: - resolution: {integrity: sha512-KDqYz4PiOWvDFrdHLPhKtCThtIcKVy6avWD2oG4GEvyQ+XDZwHD4YQd+H2vNMnq2rkdxsDkU82T+Vk8U/WXHRQ==} + /@babel/helpers/7.24.0: + resolution: {integrity: sha512-ulDZdc0Aj5uLc5nETsa7EPx2L7rM0YJM8r7ck7U73AXi7qOV44IHHRAYZHY6iU1rr3C5N4NtTmMRUJP6kwCWeA==} engines: {node: '>=6.9.0'} dependencies: - '@babel/template': 7.22.15 - '@babel/traverse': 7.23.7 - '@babel/types': 7.23.6 + '@babel/template': 7.24.0 + '@babel/traverse': 7.24.0 + '@babel/types': 7.24.0 transitivePeerDependencies: - supports-color dev: true @@ -1516,89 +1331,99 @@ packages: js-tokens: 4.0.0 dev: true - /@babel/parser/7.18.6: - resolution: {integrity: sha512-uQVSa9jJUe/G/304lXspfWVpKpK4euFLgGiMQFOCpM/bgcAdeoHwi/OQz23O9GK2osz26ZiXRRV9aV+Yl1O8tw==} + /@babel/parser/7.18.9: + resolution: {integrity: sha512-9uJveS9eY9DJ0t64YbIBZICtJy8a5QrDEVdiLCG97fVLpDTpGX7t8mMSb6OWw6Lrnjqj4O8zwjELX3dhoMgiBg==} engines: {node: '>=6.0.0'} hasBin: true dependencies: '@babel/types': 7.23.6 dev: true - /@babel/parser/7.18.9: - resolution: {integrity: sha512-9uJveS9eY9DJ0t64YbIBZICtJy8a5QrDEVdiLCG97fVLpDTpGX7t8mMSb6OWw6Lrnjqj4O8zwjELX3dhoMgiBg==} + /@babel/parser/7.23.6: + resolution: {integrity: sha512-Z2uID7YJ7oNvAI20O9X0bblw7Qqs8Q2hFy0R9tAfnfLkp5MW0UH9eUvnDSnFwKZ0AvgS1ucqR4KzvVHgnke1VQ==} engines: {node: '>=6.0.0'} hasBin: true dependencies: - '@babel/types': 7.18.9 + '@babel/types': 7.23.6 dev: true - /@babel/parser/7.23.6: - resolution: {integrity: sha512-Z2uID7YJ7oNvAI20O9X0bblw7Qqs8Q2hFy0R9tAfnfLkp5MW0UH9eUvnDSnFwKZ0AvgS1ucqR4KzvVHgnke1VQ==} + /@babel/parser/7.24.0: + resolution: {integrity: sha512-QuP/FxEAzMSjXygs8v4N9dvdXzEHN4W1oF3PxuWAtPo08UdM17u89RDMgjLn/mlc56iM0HlLmVkO/wgR+rDgHg==} engines: {node: '>=6.0.0'} hasBin: true dependencies: - '@babel/types': 7.23.6 + '@babel/types': 7.24.0 dev: true - /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/7.23.3_@babel+core@7.23.7: + /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/7.23.3_@babel+core@7.23.9: resolution: {integrity: sha512-iRkKcCqb7iGnq9+3G6rZ+Ciz5VywC4XNRHe57lKM+jOeYAoR0lVqdeeDRfh0tQcTfw/+vBhHn926FmQhLtlFLQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.23.7 + '@babel/core': 7.23.9 '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/7.23.3_@babel+core@7.23.7: + /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/7.23.3_@babel+core@7.23.9: resolution: {integrity: sha512-WwlxbfMNdVEpQjZmK5mhm7oSwD3dS6eU+Iwsi4Knl9wAletWem7kaRsGOG+8UEbRyqxY4SS5zvtfXwX+jMxUwQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.13.0 dependencies: - '@babel/core': 7.23.7 + '@babel/core': 7.23.9 '@babel/helper-plugin-utils': 7.22.5 '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 - '@babel/plugin-transform-optional-chaining': 7.23.4_@babel+core@7.23.7 + '@babel/plugin-transform-optional-chaining': 7.23.4_@babel+core@7.23.9 dev: true - /@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly/7.23.7_@babel+core@7.23.7: + /@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly/7.23.7_@babel+core@7.23.9: resolution: {integrity: sha512-LlRT7HgaifEpQA1ZgLVOIJZZFVPWN5iReq/7/JixwBtwcoeVGDBD53ZV28rrsLYOZs1Y/EHhA8N/Z6aazHR8cw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.23.7 + '@babel/core': 7.23.9 '@babel/helper-environment-visitor': 7.22.20 '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-proposal-async-generator-functions/7.18.6_@babel+core@7.18.9: + /@babel/plugin-proposal-async-generator-functions/7.18.6_@babel+core@7.23.9: resolution: {integrity: sha512-WAz4R9bvozx4qwf74M+sfqPMKfSqwM0phxPTR6iJIi8robgzXwkEgmeJG1gEKhm6sDqT/U9aV3lfcqybIpev8w==} engines: {node: '>=6.9.0'} + deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-async-generator-functions instead. peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.9 - '@babel/helper-environment-visitor': 7.18.9 + '@babel/core': 7.23.9 + '@babel/helper-environment-visitor': 7.22.20 '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-remap-async-to-generator': 7.18.9_@babel+core@7.18.9 - '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.18.9 - transitivePeerDependencies: - - supports-color + '@babel/helper-remap-async-to-generator': 7.22.20_@babel+core@7.23.9 + '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.23.9 dev: true /@babel/plugin-proposal-class-properties/7.18.6_@babel+core@7.18.9: resolution: {integrity: sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==} engines: {node: '>=6.9.0'} + deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-class-properties instead. peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.18.9 - '@babel/helper-create-class-features-plugin': 7.18.9_@babel+core@7.18.9 - '@babel/helper-plugin-utils': 7.18.9 - transitivePeerDependencies: - - supports-color + '@babel/helper-create-class-features-plugin': 7.23.7_@babel+core@7.18.9 + '@babel/helper-plugin-utils': 7.22.5 + dev: true + + /@babel/plugin-proposal-class-properties/7.18.6_@babel+core@7.23.9: + resolution: {integrity: sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==} + engines: {node: '>=6.9.0'} + deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-class-properties instead. + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.23.9 + '@babel/helper-create-class-features-plugin': 7.23.7_@babel+core@7.23.9 + '@babel/helper-plugin-utils': 7.22.5 dev: true /@babel/plugin-proposal-export-default-from/7.18.6_@babel+core@7.18.9: @@ -1612,31 +1437,32 @@ packages: '@babel/plugin-syntax-export-default-from': 7.18.6_@babel+core@7.18.9 dev: true - /@babel/plugin-proposal-export-default-from/7.18.9_@babel+core@7.18.9: - resolution: {integrity: sha512-1qtsLNCDm5awHLIt+2qAFDi31XC94r4QepMQcOosC7FpY6O+Bgay5f2IyAQt2wvm1TARumpFprnQt5pTIJ9nUg==} + /@babel/plugin-proposal-export-default-from/7.18.6_@babel+core@7.23.9: + resolution: {integrity: sha512-oTvzWB16T9cB4j5kX8c8DuUHo/4QtR2P9vnUNKed9xqFP8Jos/IRniz1FiIryn6luDYoltDJSYF7RCpbm2doMg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.9 + '@babel/core': 7.23.9 '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-export-default-from': 7.18.6_@babel+core@7.18.9 + '@babel/plugin-syntax-export-default-from': 7.18.6_@babel+core@7.23.9 dev: true - /@babel/plugin-proposal-export-namespace-from/7.18.9_@babel+core@7.18.9: - resolution: {integrity: sha512-k1NtHyOMvlDDFeb9G5PhUXuGj8m/wiwojgQVEhJ/fsVsMCpLyOP4h0uGEjYJKrRI+EVPlb5Jk+Gt9P97lOGwtA==} + /@babel/plugin-proposal-export-default-from/7.18.9_@babel+core@7.23.9: + resolution: {integrity: sha512-1qtsLNCDm5awHLIt+2qAFDi31XC94r4QepMQcOosC7FpY6O+Bgay5f2IyAQt2wvm1TARumpFprnQt5pTIJ9nUg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.9 - '@babel/helper-plugin-utils': 7.18.9 - '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.18.9 + '@babel/core': 7.23.9 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/plugin-syntax-export-default-from': 7.18.6_@babel+core@7.23.9 dev: true /@babel/plugin-proposal-nullish-coalescing-operator/7.18.6_@babel+core@7.18.9: resolution: {integrity: sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==} engines: {node: '>=6.9.0'} + deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-nullish-coalescing-operator instead. peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -1645,18 +1471,56 @@ packages: '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.18.9 dev: true - /@babel/plugin-proposal-object-rest-spread/7.18.6_@babel+core@7.18.9: - resolution: {integrity: sha512-9yuM6wr4rIsKa1wlUAbZEazkCrgw2sMPEXCr4Rnwetu7cEW1NydkCWytLuYletbf8vFxdJxFhwEZqMpOx2eZyw==} + /@babel/plugin-proposal-nullish-coalescing-operator/7.18.6_@babel+core@7.23.9: + resolution: {integrity: sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==} engines: {node: '>=6.9.0'} + deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-nullish-coalescing-operator instead. peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/compat-data': 7.18.8 + '@babel/core': 7.23.9 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.23.9 + dev: true + + /@babel/plugin-proposal-numeric-separator/7.18.6_@babel+core@7.23.9: + resolution: {integrity: sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==} + engines: {node: '>=6.9.0'} + deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-numeric-separator instead. + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.23.9 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.23.9 + dev: true + + /@babel/plugin-proposal-object-rest-spread/7.18.6_@babel+core@7.18.9: + resolution: {integrity: sha512-9yuM6wr4rIsKa1wlUAbZEazkCrgw2sMPEXCr4Rnwetu7cEW1NydkCWytLuYletbf8vFxdJxFhwEZqMpOx2eZyw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/compat-data': 7.23.5 '@babel/core': 7.18.9 - '@babel/helper-compilation-targets': 7.18.9_@babel+core@7.18.9 + '@babel/helper-compilation-targets': 7.23.6 '@babel/helper-plugin-utils': 7.22.5 '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.18.9 - '@babel/plugin-transform-parameters': 7.18.8_@babel+core@7.18.9 + '@babel/plugin-transform-parameters': 7.23.3_@babel+core@7.18.9 + dev: true + + /@babel/plugin-proposal-object-rest-spread/7.18.6_@babel+core@7.23.9: + resolution: {integrity: sha512-9yuM6wr4rIsKa1wlUAbZEazkCrgw2sMPEXCr4Rnwetu7cEW1NydkCWytLuYletbf8vFxdJxFhwEZqMpOx2eZyw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/compat-data': 7.23.5 + '@babel/core': 7.23.9 + '@babel/helper-compilation-targets': 7.23.6 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.23.9 + '@babel/plugin-transform-parameters': 7.23.3_@babel+core@7.23.9 dev: true /@babel/plugin-proposal-object-rest-spread/7.18.9_@babel+core@7.18.9: @@ -1665,17 +1529,47 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/compat-data': 7.18.8 + '@babel/compat-data': 7.23.5 '@babel/core': 7.18.9 - '@babel/helper-compilation-targets': 7.18.9_@babel+core@7.18.9 - '@babel/helper-plugin-utils': 7.18.9 + '@babel/helper-compilation-targets': 7.23.6 + '@babel/helper-plugin-utils': 7.22.5 '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.18.9 - '@babel/plugin-transform-parameters': 7.18.8_@babel+core@7.18.9 + '@babel/plugin-transform-parameters': 7.23.3_@babel+core@7.18.9 + dev: true + + /@babel/plugin-proposal-object-rest-spread/7.18.9_@babel+core@7.23.9: + resolution: {integrity: sha512-kDDHQ5rflIeY5xl69CEqGEZ0KY369ehsCIEbTGb4siHG5BE9sga/T0r0OUwyZNLMmZE79E1kbsqAjwFCW4ds6Q==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/compat-data': 7.23.5 + '@babel/core': 7.23.9 + '@babel/helper-compilation-targets': 7.23.6 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.23.9 + '@babel/plugin-transform-parameters': 7.23.3_@babel+core@7.23.9 + dev: true + + /@babel/plugin-proposal-object-rest-spread/7.20.7_@babel+core@7.23.9: + resolution: {integrity: sha512-d2S98yCiLxDVmBmE8UjGcfPvNEUbA1U5q5WxaWFUGRzJSVAZqm5W6MbPct0jxnegUZ0niLeNX+IOzEs7wYg9Dg==} + engines: {node: '>=6.9.0'} + deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-object-rest-spread instead. + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/compat-data': 7.23.5 + '@babel/core': 7.23.9 + '@babel/helper-compilation-targets': 7.23.6 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.23.9 + '@babel/plugin-transform-parameters': 7.23.3_@babel+core@7.23.9 dev: true /@babel/plugin-proposal-optional-catch-binding/7.18.6_@babel+core@7.18.9: resolution: {integrity: sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw==} engines: {node: '>=6.9.0'} + deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-optional-catch-binding instead. peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -1684,16 +1578,28 @@ packages: '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.18.9 dev: true - /@babel/plugin-proposal-optional-chaining/7.18.6_@babel+core@7.18.9: + /@babel/plugin-proposal-optional-catch-binding/7.18.6_@babel+core@7.23.9: + resolution: {integrity: sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw==} + engines: {node: '>=6.9.0'} + deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-optional-catch-binding instead. + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.23.9 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.23.9 + dev: true + + /@babel/plugin-proposal-optional-chaining/7.18.6_@babel+core@7.23.9: resolution: {integrity: sha512-PatI6elL5eMzoypFAiYDpYQyMtXTn+iMhuxxQt5mAXD4fEmKorpSI3PHd+i3JXBJN3xyA6MvJv7at23HffFHwA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.9 + '@babel/core': 7.23.9 '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-skip-transparent-expression-wrappers': 7.18.6 - '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.18.9 + '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 + '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.23.9 dev: true /@babel/plugin-proposal-optional-chaining/7.18.9_@babel+core@7.18.9: @@ -1703,44 +1609,60 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.18.9 - '@babel/helper-plugin-utils': 7.18.9 - '@babel/helper-skip-transparent-expression-wrappers': 7.18.9 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.18.9 dev: true - /@babel/plugin-proposal-private-property-in-object/7.21.0-placeholder-for-preset-env.2_@babel+core@7.23.7: - resolution: {integrity: sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==} + /@babel/plugin-proposal-optional-chaining/7.18.9_@babel+core@7.23.9: + resolution: {integrity: sha512-v5nwt4IqBXihxGsW2QmCWMDS3B3bzGIk/EQVZz2ei7f3NJl8NzAJVvUmpDW5q1CRNY+Beb/k58UAH1Km1N411w==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.7 + '@babel/core': 7.23.9 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 + '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.23.9 dev: true - /@babel/plugin-syntax-async-generators/7.8.4_@babel+core@7.18.9: - resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==} + /@babel/plugin-proposal-optional-chaining/7.21.0_@babel+core@7.23.9: + resolution: {integrity: sha512-p4zeefM72gpmEe2fkUr/OnOXpWEf8nAgk7ZYVqqfFiyIG7oFfVZcCrU64hWn5xp4tQ9LkV4bTIa5rD0KANpKNA==} + engines: {node: '>=6.9.0'} + deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-optional-chaining instead. peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.9 + '@babel/core': 7.23.9 '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 + '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.23.9 dev: true - /@babel/plugin-syntax-async-generators/7.8.4_@babel+core@7.23.7: + /@babel/plugin-proposal-private-property-in-object/7.21.0-placeholder-for-preset-env.2_@babel+core@7.23.9: + resolution: {integrity: sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.23.9 + dev: true + + /@babel/plugin-syntax-async-generators/7.8.4_@babel+core@7.23.9: resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.7 + '@babel/core': 7.23.9 '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-syntax-bigint/7.8.3_@babel+core@7.18.9: + /@babel/plugin-syntax-bigint/7.8.3_@babel+core@7.23.9: resolution: {integrity: sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.9 + '@babel/core': 7.23.9 '@babel/helper-plugin-utils': 7.22.5 dev: true @@ -1753,22 +1675,22 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-syntax-class-properties/7.12.13_@babel+core@7.23.7: + /@babel/plugin-syntax-class-properties/7.12.13_@babel+core@7.23.9: resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.7 + '@babel/core': 7.23.9 '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-syntax-class-static-block/7.14.5_@babel+core@7.23.7: + /@babel/plugin-syntax-class-static-block/7.14.5_@babel+core@7.23.9: resolution: {integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.7 + '@babel/core': 7.23.9 '@babel/helper-plugin-utils': 7.22.5 dev: true @@ -1781,12 +1703,12 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-syntax-dynamic-import/7.8.3_@babel+core@7.23.7: + /@babel/plugin-syntax-dynamic-import/7.8.3_@babel+core@7.23.9: resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.7 + '@babel/core': 7.23.9 '@babel/helper-plugin-utils': 7.22.5 dev: true @@ -1800,21 +1722,22 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-syntax-export-namespace-from/7.8.3_@babel+core@7.18.9: - resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==} + /@babel/plugin-syntax-export-default-from/7.18.6_@babel+core@7.23.9: + resolution: {integrity: sha512-Kr//z3ujSVNx6E9z9ih5xXXMqK07VVTuqPmqGe6Mss/zW5XPeLZeSDZoP9ab/hT4wPKqAgjl2PnhPrcpk8Seew==} + engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.9 + '@babel/core': 7.23.9 '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-syntax-export-namespace-from/7.8.3_@babel+core@7.23.7: + /@babel/plugin-syntax-export-namespace-from/7.8.3_@babel+core@7.23.9: resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.7 + '@babel/core': 7.23.9 '@babel/helper-plugin-utils': 7.22.5 dev: true @@ -1828,89 +1751,61 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-syntax-flow/7.23.3_@babel+core@7.18.9: - resolution: {integrity: sha512-YZiAIpkJAwQXBJLIQbRFayR5c+gJ35Vcz3bg954k7cd73zqjvhacJuL9RbrzPz8qPmZdgqP6EUKwy0PCNhaaPA==} + /@babel/plugin-syntax-flow/7.18.6_@babel+core@7.23.9: + resolution: {integrity: sha512-LUbR+KNTBWCUAqRG9ex5Gnzu2IOkt8jRJbHHXFT9q+L9zm7M/QQbEqXyw1n1pohYvOyWC8CjeyjrSaIwiYjK7A==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.9 + '@babel/core': 7.23.9 '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-syntax-flow/7.23.3_@babel+core@7.23.7: + /@babel/plugin-syntax-flow/7.23.3_@babel+core@7.23.9: resolution: {integrity: sha512-YZiAIpkJAwQXBJLIQbRFayR5c+gJ35Vcz3bg954k7cd73zqjvhacJuL9RbrzPz8qPmZdgqP6EUKwy0PCNhaaPA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.7 + '@babel/core': 7.23.9 '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-syntax-import-assertions/7.23.3_@babel+core@7.23.7: + /@babel/plugin-syntax-import-assertions/7.23.3_@babel+core@7.23.9: resolution: {integrity: sha512-lPgDSU+SJLK3xmFDTV2ZRQAiM7UuUjGidwBywFavObCiZc1BeAAcMtHJKUya92hPHO+at63JJPLygilZard8jw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.7 + '@babel/core': 7.23.9 '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-syntax-import-attributes/7.23.3_@babel+core@7.23.7: + /@babel/plugin-syntax-import-attributes/7.23.3_@babel+core@7.23.9: resolution: {integrity: sha512-pawnE0P9g10xgoP7yKr6CK63K2FMsTE+FZidZO/1PwRdzmAPVs+HS1mAURUsgaoxammTJvULUdIkEK0gOcU2tA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.7 - '@babel/helper-plugin-utils': 7.22.5 - dev: true - - /@babel/plugin-syntax-import-meta/7.10.4_@babel+core@7.18.9: - resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.18.9 + '@babel/core': 7.23.9 '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-syntax-import-meta/7.10.4_@babel+core@7.23.7: + /@babel/plugin-syntax-import-meta/7.10.4_@babel+core@7.23.9: resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.7 + '@babel/core': 7.23.9 '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-syntax-json-strings/7.8.3_@babel+core@7.18.9: + /@babel/plugin-syntax-json-strings/7.8.3_@babel+core@7.23.9: resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.9 - '@babel/helper-plugin-utils': 7.22.5 - dev: true - - /@babel/plugin-syntax-json-strings/7.8.3_@babel+core@7.23.7: - resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.7 - '@babel/helper-plugin-utils': 7.22.5 - dev: true - - /@babel/plugin-syntax-jsx/7.18.6_@babel+core@7.18.9: - resolution: {integrity: sha512-6mmljtAedFGTWu2p/8WIORGwy+61PLgOMPOdazc7YoJ9ZCWUyFy3A6CpPkRKLKD1ToAesxX8KGEViAiLo9N+7Q==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.18.9 + '@babel/core': 7.23.9 '@babel/helper-plugin-utils': 7.22.5 dev: true @@ -1924,31 +1819,22 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-syntax-jsx/7.23.3_@babel+core@7.23.7: + /@babel/plugin-syntax-jsx/7.23.3_@babel+core@7.23.9: resolution: {integrity: sha512-EB2MELswq55OHUoRZLGg/zC7QWUKfNLpE57m/S2yr1uEneIgsTgrSzXP3NXEsMkVn76OlaVVnzN+ugObuYGwhg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.7 - '@babel/helper-plugin-utils': 7.22.5 - dev: true - - /@babel/plugin-syntax-logical-assignment-operators/7.10.4_@babel+core@7.18.9: - resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.18.9 + '@babel/core': 7.23.9 '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-syntax-logical-assignment-operators/7.10.4_@babel+core@7.23.7: + /@babel/plugin-syntax-logical-assignment-operators/7.10.4_@babel+core@7.23.9: resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.7 + '@babel/core': 7.23.9 '@babel/helper-plugin-utils': 7.22.5 dev: true @@ -1961,30 +1847,21 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-syntax-nullish-coalescing-operator/7.8.3_@babel+core@7.23.7: + /@babel/plugin-syntax-nullish-coalescing-operator/7.8.3_@babel+core@7.23.9: resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.7 + '@babel/core': 7.23.9 '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-syntax-numeric-separator/7.10.4_@babel+core@7.18.9: + /@babel/plugin-syntax-numeric-separator/7.10.4_@babel+core@7.23.9: resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.9 - '@babel/helper-plugin-utils': 7.22.5 - dev: true - - /@babel/plugin-syntax-numeric-separator/7.10.4_@babel+core@7.23.7: - resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.7 + '@babel/core': 7.23.9 '@babel/helper-plugin-utils': 7.22.5 dev: true @@ -1997,12 +1874,12 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.23.7: + /@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.23.9: resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.7 + '@babel/core': 7.23.9 '@babel/helper-plugin-utils': 7.22.5 dev: true @@ -2015,12 +1892,12 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-syntax-optional-catch-binding/7.8.3_@babel+core@7.23.7: + /@babel/plugin-syntax-optional-catch-binding/7.8.3_@babel+core@7.23.9: resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.7 + '@babel/core': 7.23.9 '@babel/helper-plugin-utils': 7.22.5 dev: true @@ -2033,52 +1910,32 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-syntax-optional-chaining/7.8.3_@babel+core@7.23.7: + /@babel/plugin-syntax-optional-chaining/7.8.3_@babel+core@7.23.9: resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.7 + '@babel/core': 7.23.9 '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-syntax-private-property-in-object/7.14.5_@babel+core@7.23.7: + /@babel/plugin-syntax-private-property-in-object/7.14.5_@babel+core@7.23.9: resolution: {integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.7 - '@babel/helper-plugin-utils': 7.22.5 - dev: true - - /@babel/plugin-syntax-top-level-await/7.14.5_@babel+core@7.18.9: - resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.18.9 + '@babel/core': 7.23.9 '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-syntax-top-level-await/7.14.5_@babel+core@7.23.7: + /@babel/plugin-syntax-top-level-await/7.14.5_@babel+core@7.23.9: resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.7 - '@babel/helper-plugin-utils': 7.22.5 - dev: true - - /@babel/plugin-syntax-typescript/7.18.6_@babel+core@7.18.9: - resolution: {integrity: sha512-mAWAuq4rvOepWCBid55JuRNvpTNf2UGVgoz4JV0fXEKolsVZDzsa4NqCef758WZJj/GDu0gVGItjKFiClTAmZA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.18.9 + '@babel/core': 7.23.9 '@babel/helper-plugin-utils': 7.22.5 dev: true @@ -2092,88 +1949,86 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-syntax-typescript/7.23.3_@babel+core@7.23.7: + /@babel/plugin-syntax-typescript/7.23.3_@babel+core@7.23.9: resolution: {integrity: sha512-9EiNjVJOMwCO+43TqoTrgQ8jMwcAd0sWyXi9RPfIsLTj4R2MADDDQXELhffaUx/uJv2AYcxBgPwH6j4TIA4ytQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.7 + '@babel/core': 7.23.9 '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-syntax-unicode-sets-regex/7.18.6_@babel+core@7.23.7: + /@babel/plugin-syntax-unicode-sets-regex/7.18.6_@babel+core@7.23.9: resolution: {integrity: sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.23.7 - '@babel/helper-create-regexp-features-plugin': 7.18.6_@babel+core@7.23.7 + '@babel/core': 7.23.9 + '@babel/helper-create-regexp-features-plugin': 7.22.15_@babel+core@7.23.9 '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-arrow-functions/7.18.6_@babel+core@7.18.9: - resolution: {integrity: sha512-9S9X9RUefzrsHZmKMbDXxweEH+YlE8JJEuat9FdvW9Qh1cw7W64jELCtWNkPBPX5En45uy28KGvA/AySqUh8CQ==} + /@babel/plugin-transform-arrow-functions/7.23.3_@babel+core@7.18.9: + resolution: {integrity: sha512-NzQcQrzaQPkaEwoTm4Mhyl8jI1huEL/WWIEvudjTCMJ9aBZNpsJbMASx7EQECtQQPS/DcnFpo0FIh3LvEO9cxQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.18.9 - '@babel/helper-plugin-utils': 7.18.9 + '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-arrow-functions/7.23.3_@babel+core@7.23.7: + /@babel/plugin-transform-arrow-functions/7.23.3_@babel+core@7.23.9: resolution: {integrity: sha512-NzQcQrzaQPkaEwoTm4Mhyl8jI1huEL/WWIEvudjTCMJ9aBZNpsJbMASx7EQECtQQPS/DcnFpo0FIh3LvEO9cxQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.7 + '@babel/core': 7.23.9 '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-async-generator-functions/7.23.7_@babel+core@7.23.7: - resolution: {integrity: sha512-PdxEpL71bJp1byMG0va5gwQcXHxuEYC/BgI/e88mGTtohbZN28O5Yit0Plkkm/dBzCF/BxmbNcses1RH1T+urA==} + /@babel/plugin-transform-async-generator-functions/7.23.9_@babel+core@7.23.9: + resolution: {integrity: sha512-8Q3veQEDGe14dTYuwagbRtwxQDnytyg1JFu4/HwEMETeofocrB0U0ejBJIXoeG/t2oXZ8kzCyI0ZZfbT80VFNQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.7 + '@babel/core': 7.23.9 '@babel/helper-environment-visitor': 7.22.20 '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-remap-async-to-generator': 7.22.20_@babel+core@7.23.7 - '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.23.7 + '@babel/helper-remap-async-to-generator': 7.22.20_@babel+core@7.23.9 + '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.23.9 dev: true - /@babel/plugin-transform-async-to-generator/7.18.6_@babel+core@7.18.9: - resolution: {integrity: sha512-ARE5wZLKnTgPW7/1ftQmSi1CmkqqHo2DNmtztFhvgtOWSDfq0Cq9/9L+KnZNYSNrydBekhW3rwShduf59RoXag==} + /@babel/plugin-transform-async-to-generator/7.23.3_@babel+core@7.18.9: + resolution: {integrity: sha512-A7LFsKi4U4fomjqXJlZg/u0ft/n8/7n7lpffUP/ZULx/DtV9SGlNKZolHH6PE8Xl1ngCc0M11OaeZptXVkfKSw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.18.9 - '@babel/helper-module-imports': 7.18.6 + '@babel/helper-module-imports': 7.22.15 '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-remap-async-to-generator': 7.18.6_@babel+core@7.18.9 - transitivePeerDependencies: - - supports-color + '@babel/helper-remap-async-to-generator': 7.22.20_@babel+core@7.18.9 dev: true - /@babel/plugin-transform-async-to-generator/7.23.3_@babel+core@7.23.7: + /@babel/plugin-transform-async-to-generator/7.23.3_@babel+core@7.23.9: resolution: {integrity: sha512-A7LFsKi4U4fomjqXJlZg/u0ft/n8/7n7lpffUP/ZULx/DtV9SGlNKZolHH6PE8Xl1ngCc0M11OaeZptXVkfKSw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.7 + '@babel/core': 7.23.9 '@babel/helper-module-imports': 7.22.15 '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-remap-async-to-generator': 7.22.20_@babel+core@7.23.7 + '@babel/helper-remap-async-to-generator': 7.22.20_@babel+core@7.23.9 dev: true - /@babel/plugin-transform-block-scoped-functions/7.18.6_@babel+core@7.18.9: - resolution: {integrity: sha512-ExUcOqpPWnliRcPqves5HJcJOvHvIIWfuS4sroBUenPuMdmW+SMHDakmtS7qOo13sVppmUijqeTv7qqGsvURpQ==} + /@babel/plugin-transform-block-scoped-functions/7.23.3_@babel+core@7.18.9: + resolution: {integrity: sha512-vI+0sIaPIO6CNuM9Kk5VmXcMVRiOpDh7w2zZt9GXzmE/9KD70CUEVhvPR/etAeNK/FAEkhxQtXOzVF3EuRL41A==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -2182,18 +2037,18 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-block-scoped-functions/7.23.3_@babel+core@7.23.7: + /@babel/plugin-transform-block-scoped-functions/7.23.3_@babel+core@7.23.9: resolution: {integrity: sha512-vI+0sIaPIO6CNuM9Kk5VmXcMVRiOpDh7w2zZt9GXzmE/9KD70CUEVhvPR/etAeNK/FAEkhxQtXOzVF3EuRL41A==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.7 + '@babel/core': 7.23.9 '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-block-scoping/7.18.6_@babel+core@7.18.9: - resolution: {integrity: sha512-pRqwb91C42vs1ahSAWJkxOxU1RHWDn16XAa6ggQ72wjLlWyYeAcLvTtE0aM8ph3KNydy9CQF2nLYcjq1WysgxQ==} + /@babel/plugin-transform-block-scoping/7.23.4_@babel+core@7.18.9: + resolution: {integrity: sha512-0QqbP6B6HOh7/8iNR4CQU2Th/bbRtBp4KS9vcaZd1fZ0wSh5Fyssg0UCIHwxh+ka+pNDREbVLQnHCMHKZfPwfw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -2202,137 +2057,97 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-block-scoping/7.18.9_@babel+core@7.18.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.18.9 - '@babel/helper-plugin-utils': 7.18.9 - dev: true - - /@babel/plugin-transform-block-scoping/7.23.4_@babel+core@7.23.7: + /@babel/plugin-transform-block-scoping/7.23.4_@babel+core@7.23.9: resolution: {integrity: sha512-0QqbP6B6HOh7/8iNR4CQU2Th/bbRtBp4KS9vcaZd1fZ0wSh5Fyssg0UCIHwxh+ka+pNDREbVLQnHCMHKZfPwfw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.7 + '@babel/core': 7.23.9 '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-class-properties/7.23.3_@babel+core@7.23.7: + /@babel/plugin-transform-class-properties/7.23.3_@babel+core@7.23.9: resolution: {integrity: sha512-uM+AN8yCIjDPccsKGlw271xjJtGii+xQIF/uMPS8H15L12jZTsLfF4o5vNO7d/oUguOyfdikHGc/yi9ge4SGIg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.7 - '@babel/helper-create-class-features-plugin': 7.23.7_@babel+core@7.23.7 + '@babel/core': 7.23.9 + '@babel/helper-create-class-features-plugin': 7.23.7_@babel+core@7.23.9 '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-class-static-block/7.23.4_@babel+core@7.23.7: + /@babel/plugin-transform-class-static-block/7.23.4_@babel+core@7.23.9: resolution: {integrity: sha512-nsWu/1M+ggti1SOALj3hfx5FXzAY06fwPJsUZD4/A5e1bWi46VUIWtD+kOX6/IdhXGsXBWllLFDSnqSCdUNydQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.12.0 dependencies: - '@babel/core': 7.23.7 - '@babel/helper-create-class-features-plugin': 7.23.7_@babel+core@7.23.7 + '@babel/core': 7.23.9 + '@babel/helper-create-class-features-plugin': 7.23.7_@babel+core@7.23.9 '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.23.7 + '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.23.9 dev: true - /@babel/plugin-transform-classes/7.18.6_@babel+core@7.18.9: - resolution: {integrity: sha512-XTg8XW/mKpzAF3actL554Jl/dOYoJtv3l8fxaEczpgz84IeeVf+T1u2CSvPHuZbt0w3JkIx4rdn/MRQI7mo0HQ==} + /@babel/plugin-transform-classes/7.23.8_@babel+core@7.18.9: + resolution: {integrity: sha512-yAYslGsY1bX6Knmg46RjiCiNSwJKv2IUC8qOdYKqMMr0491SXFhcHqOdRDeCRohOOIzwN/90C6mQ9qAKgrP7dg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.18.9 - '@babel/helper-annotate-as-pure': 7.18.6 + '@babel/helper-annotate-as-pure': 7.22.5 + '@babel/helper-compilation-targets': 7.23.6 '@babel/helper-environment-visitor': 7.22.20 '@babel/helper-function-name': 7.23.0 - '@babel/helper-optimise-call-expression': 7.18.6 '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-replace-supers': 7.18.6 + '@babel/helper-replace-supers': 7.22.20_@babel+core@7.18.9 '@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.18.9: - resolution: {integrity: sha512-EkRQxsxoytpTlKJmSPYrsOMjCILacAjtSVkd4gChEe2kXjFCun3yohhW5I7plXJhCemM0gKsaGMcO8tinvCA5g==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.18.9 - '@babel/helper-annotate-as-pure': 7.18.6 - '@babel/helper-environment-visitor': 7.18.9 - '@babel/helper-function-name': 7.18.9 - '@babel/helper-optimise-call-expression': 7.18.6 - '@babel/helper-plugin-utils': 7.18.9 - '@babel/helper-replace-supers': 7.18.9 - '@babel/helper-split-export-declaration': 7.18.6 - globals: 11.12.0 - transitivePeerDependencies: - - supports-color - dev: true - - /@babel/plugin-transform-classes/7.23.8_@babel+core@7.23.7: + /@babel/plugin-transform-classes/7.23.8_@babel+core@7.23.9: resolution: {integrity: sha512-yAYslGsY1bX6Knmg46RjiCiNSwJKv2IUC8qOdYKqMMr0491SXFhcHqOdRDeCRohOOIzwN/90C6mQ9qAKgrP7dg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.7 + '@babel/core': 7.23.9 '@babel/helper-annotate-as-pure': 7.22.5 '@babel/helper-compilation-targets': 7.23.6 '@babel/helper-environment-visitor': 7.22.20 '@babel/helper-function-name': 7.23.0 '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-replace-supers': 7.22.20_@babel+core@7.23.7 + '@babel/helper-replace-supers': 7.22.20_@babel+core@7.23.9 '@babel/helper-split-export-declaration': 7.22.6 globals: 11.12.0 dev: true - /@babel/plugin-transform-computed-properties/7.18.6_@babel+core@7.18.9: - resolution: {integrity: sha512-9repI4BhNrR0KenoR9vm3/cIc1tSBIo+u1WVjKCAynahj25O8zfbiE6JtAtHPGQSs4yZ+bA8mRasRP+qc+2R5A==} + /@babel/plugin-transform-computed-properties/7.23.3_@babel+core@7.18.9: + resolution: {integrity: sha512-dTj83UVTLw/+nbiHqQSFdwO9CbTtwq1DsDqm3CUEtDrZNET5rT5E6bIdTlOftDTDLMYxvxHNEYO4B9SLl8SLZw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.18.9 '@babel/helper-plugin-utils': 7.22.5 + '@babel/template': 7.22.15 dev: true - /@babel/plugin-transform-computed-properties/7.18.9_@babel+core@7.18.9: - resolution: {integrity: sha512-+i0ZU1bCDymKakLxn5srGHrsAPRELC2WIbzwjLhHW9SIE1cPYkLCL0NlnXMZaM1vhfgA2+M7hySk42VBvrkBRw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.18.9 - '@babel/helper-plugin-utils': 7.18.9 - dev: true - - /@babel/plugin-transform-computed-properties/7.23.3_@babel+core@7.23.7: + /@babel/plugin-transform-computed-properties/7.23.3_@babel+core@7.23.9: resolution: {integrity: sha512-dTj83UVTLw/+nbiHqQSFdwO9CbTtwq1DsDqm3CUEtDrZNET5rT5E6bIdTlOftDTDLMYxvxHNEYO4B9SLl8SLZw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.7 + '@babel/core': 7.23.9 '@babel/helper-plugin-utils': 7.22.5 '@babel/template': 7.22.15 dev: true - /@babel/plugin-transform-destructuring/7.18.6_@babel+core@7.18.9: - resolution: {integrity: sha512-tgy3u6lRp17ilY8r1kP4i2+HDUwxlVqq3RTc943eAWSzGgpU1qhiKpqZ5CMyHReIYPHdo3Kg8v8edKtDqSVEyQ==} + /@babel/plugin-transform-destructuring/7.23.3_@babel+core@7.18.9: + resolution: {integrity: sha512-n225npDqjDIr967cMScVKHXJs7rout1q+tt50inyBCPkyZ8KxeI6d+GIbSBTT/w/9WdlWDOej3V9HE5Lgk57gw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -2341,89 +2156,79 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-destructuring/7.18.9_@babel+core@7.18.9: - resolution: {integrity: sha512-p5VCYNddPLkZTq4XymQIaIfZNJwT9YsjkPOhkVEqt6QIpQFZVM9IltqqYpOEkJoN1DPznmxUDyZ5CTZs/ZCuHA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.18.9 - '@babel/helper-plugin-utils': 7.18.9 - dev: true - - /@babel/plugin-transform-destructuring/7.23.3_@babel+core@7.23.7: + /@babel/plugin-transform-destructuring/7.23.3_@babel+core@7.23.9: resolution: {integrity: sha512-n225npDqjDIr967cMScVKHXJs7rout1q+tt50inyBCPkyZ8KxeI6d+GIbSBTT/w/9WdlWDOej3V9HE5Lgk57gw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.7 + '@babel/core': 7.23.9 '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-dotall-regex/7.23.3_@babel+core@7.23.7: + /@babel/plugin-transform-dotall-regex/7.23.3_@babel+core@7.23.9: resolution: {integrity: sha512-vgnFYDHAKzFaTVp+mneDsIEbnJ2Np/9ng9iviHw3P/KVcgONxpNULEW/51Z/BaFojG2GI2GwwXck5uV1+1NOYQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.7 - '@babel/helper-create-regexp-features-plugin': 7.22.15_@babel+core@7.23.7 + '@babel/core': 7.23.9 + '@babel/helper-create-regexp-features-plugin': 7.22.15_@babel+core@7.23.9 '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-duplicate-keys/7.23.3_@babel+core@7.23.7: + /@babel/plugin-transform-duplicate-keys/7.23.3_@babel+core@7.23.9: resolution: {integrity: sha512-RrqQ+BQmU3Oyav3J+7/myfvRCq7Tbz+kKLLshUmMwNlDHExbGL7ARhajvoBJEvc+fCguPPu887N+3RRXBVKZUA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.7 + '@babel/core': 7.23.9 '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-dynamic-import/7.23.4_@babel+core@7.23.7: + /@babel/plugin-transform-dynamic-import/7.23.4_@babel+core@7.23.9: resolution: {integrity: sha512-V6jIbLhdJK86MaLh4Jpghi8ho5fGzt3imHOBu/x0jlBaPYqDoWz4RDXjmMOfnh+JWNaQleEAByZLV0QzBT4YQQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.7 + '@babel/core': 7.23.9 '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.23.7 + '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.23.9 dev: true - /@babel/plugin-transform-exponentiation-operator/7.18.6_@babel+core@7.18.9: - resolution: {integrity: sha512-wzEtc0+2c88FVR34aQmiz56dxEkxr2g8DQb/KfaFa1JYXOFVsbhvAonFN6PwVWj++fKmku8NP80plJ5Et4wqHw==} + /@babel/plugin-transform-exponentiation-operator/7.23.3_@babel+core@7.18.9: + resolution: {integrity: sha512-5fhCsl1odX96u7ILKHBj4/Y8vipoqwsJMh4csSA8qFfxrZDEA4Ssku2DyNvMJSmZNOEBT750LfFPbtrnTP90BQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.18.9 - '@babel/helper-builder-binary-assignment-operator-visitor': 7.18.6 + '@babel/helper-builder-binary-assignment-operator-visitor': 7.22.15 '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-exponentiation-operator/7.23.3_@babel+core@7.23.7: + /@babel/plugin-transform-exponentiation-operator/7.23.3_@babel+core@7.23.9: resolution: {integrity: sha512-5fhCsl1odX96u7ILKHBj4/Y8vipoqwsJMh4csSA8qFfxrZDEA4Ssku2DyNvMJSmZNOEBT750LfFPbtrnTP90BQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.7 + '@babel/core': 7.23.9 '@babel/helper-builder-binary-assignment-operator-visitor': 7.22.15 '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-export-namespace-from/7.23.4_@babel+core@7.23.7: + /@babel/plugin-transform-export-namespace-from/7.23.4_@babel+core@7.23.9: resolution: {integrity: sha512-GzuSBcKkx62dGzZI1WVgTWvkkz84FZO5TC5T8dl/Tht/rAla6Dg/Mz9Yhypg+ezVACf/rgDuQt3kbWEv7LdUDQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.7 + '@babel/core': 7.23.9 '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.23.7 + '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.23.9 dev: true /@babel/plugin-transform-flow-strip-types/7.18.6_@babel+core@7.18.9: @@ -2437,119 +2242,87 @@ packages: '@babel/plugin-syntax-flow': 7.18.6_@babel+core@7.18.9 dev: true - /@babel/plugin-transform-flow-strip-types/7.18.9_@babel+core@7.18.9: - resolution: {integrity: sha512-+G6rp2zRuOAInY5wcggsx4+QVao1qPM0osC9fTUVlAV3zOrzTCnrMAFVnR6+a3T8wz1wFIH7KhYMcMB3u1n80A==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.18.9 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-flow': 7.18.6_@babel+core@7.18.9 - dev: true - - /@babel/plugin-transform-flow-strip-types/7.23.3_@babel+core@7.18.9: - resolution: {integrity: sha512-26/pQTf9nQSNVJCrLB1IkHUKyPxR+lMrH2QDPG89+Znu9rAMbtrybdbWeE9bb7gzjmE5iXHEY+e0HUwM6Co93Q==} + /@babel/plugin-transform-flow-strip-types/7.18.6_@babel+core@7.23.9: + resolution: {integrity: sha512-wE0xtA7csz+hw4fKPwxmu5jnzAsXPIO57XnRwzXP3T19jWh1BODnPGoG9xKYwvAwusP7iUktHayRFbMPGtODaQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.9 + '@babel/core': 7.23.9 '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-flow': 7.23.3_@babel+core@7.18.9 + '@babel/plugin-syntax-flow': 7.18.6_@babel+core@7.23.9 dev: true - /@babel/plugin-transform-flow-strip-types/7.23.3_@babel+core@7.23.7: + /@babel/plugin-transform-flow-strip-types/7.23.3_@babel+core@7.23.9: resolution: {integrity: sha512-26/pQTf9nQSNVJCrLB1IkHUKyPxR+lMrH2QDPG89+Znu9rAMbtrybdbWeE9bb7gzjmE5iXHEY+e0HUwM6Co93Q==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.7 + '@babel/core': 7.23.9 '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-flow': 7.23.3_@babel+core@7.23.7 + '@babel/plugin-syntax-flow': 7.23.3_@babel+core@7.23.9 dev: true - /@babel/plugin-transform-for-of/7.18.6_@babel+core@7.18.9: - resolution: {integrity: sha512-WAjoMf4wIiSsy88KmG7tgj2nFdEK7E46tArVtcgED7Bkj6Fg/tG5SbvNIOKxbFS2VFgNh6+iaPswBeQZm4ox8w==} + /@babel/plugin-transform-for-of/7.23.6_@babel+core@7.18.9: + resolution: {integrity: sha512-aYH4ytZ0qSuBbpfhuofbg/e96oQ7U2w1Aw/UQmKT+1l39uEhUPoFS3fHevDc1G0OvewyDudfMKY1OulczHzWIw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.18.9 '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 dev: true - /@babel/plugin-transform-for-of/7.23.6_@babel+core@7.23.7: + /@babel/plugin-transform-for-of/7.23.6_@babel+core@7.23.9: resolution: {integrity: sha512-aYH4ytZ0qSuBbpfhuofbg/e96oQ7U2w1Aw/UQmKT+1l39uEhUPoFS3fHevDc1G0OvewyDudfMKY1OulczHzWIw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.7 + '@babel/core': 7.23.9 '@babel/helper-plugin-utils': 7.22.5 '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 dev: true - /@babel/plugin-transform-function-name/7.18.6_@babel+core@7.18.9: - resolution: {integrity: sha512-kJha/Gbs5RjzIu0CxZwf5e3aTTSlhZnHMT8zPWnJMjNpLOUgqevg+PN5oMH68nMCXnfiMo4Bhgxqj59KHTlAnA==} + /@babel/plugin-transform-function-name/7.23.3_@babel+core@7.18.9: + resolution: {integrity: sha512-I1QXp1LxIvt8yLaib49dRW5Okt7Q4oaxao6tFVKS/anCdEOMtYwWVKoiOA1p34GOWIZjUK0E+zCp7+l1pfQyiw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.18.9 - '@babel/helper-compilation-targets': 7.18.9_@babel+core@7.18.9 + '@babel/helper-compilation-targets': 7.23.6 '@babel/helper-function-name': 7.23.0 '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-function-name/7.18.9_@babel+core@7.18.9: - resolution: {integrity: sha512-WvIBoRPaJQ5yVHzcnJFor7oS5Ls0PYixlTYE63lCj2RtdQEl15M68FXQlxnG6wdraJIXRdR7KI+hQ7q/9QjrCQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.18.9 - '@babel/helper-compilation-targets': 7.18.9_@babel+core@7.18.9 - '@babel/helper-function-name': 7.18.9 - '@babel/helper-plugin-utils': 7.22.5 - dev: true - - /@babel/plugin-transform-function-name/7.23.3_@babel+core@7.23.7: + /@babel/plugin-transform-function-name/7.23.3_@babel+core@7.23.9: resolution: {integrity: sha512-I1QXp1LxIvt8yLaib49dRW5Okt7Q4oaxao6tFVKS/anCdEOMtYwWVKoiOA1p34GOWIZjUK0E+zCp7+l1pfQyiw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.7 + '@babel/core': 7.23.9 '@babel/helper-compilation-targets': 7.23.6 '@babel/helper-function-name': 7.23.0 '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-json-strings/7.23.4_@babel+core@7.23.7: + /@babel/plugin-transform-json-strings/7.23.4_@babel+core@7.23.9: resolution: {integrity: sha512-81nTOqM1dMwZ/aRXQ59zVubN9wHGqk6UtqRK+/q+ciXmRy8fSolhGVvG09HHRGo4l6fr/c4ZhXUQH0uFW7PZbg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.7 + '@babel/core': 7.23.9 '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.23.7 + '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.23.9 dev: true - /@babel/plugin-transform-literals/7.18.6_@babel+core@7.18.9: - resolution: {integrity: sha512-x3HEw0cJZVDoENXOp20HlypIHfl0zMIhMVZEBVTfmqbObIpsMxMbmU5nOEO8R7LYT+z5RORKPlTI5Hj4OsO9/Q==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.18.9 - '@babel/helper-plugin-utils': 7.22.5 - dev: true - - /@babel/plugin-transform-literals/7.18.9_@babel+core@7.18.9: - resolution: {integrity: sha512-IFQDSRoTPnrAIrI5zoZv73IFeZu2dhu6irxQjY9rNjTT53VmKg9fenjvoiOWOkJ6mm4jKVPtdMzBY98Fp4Z4cg==} + /@babel/plugin-transform-literals/7.23.3_@babel+core@7.18.9: + resolution: {integrity: sha512-wZ0PIXRxnwZvl9AYpqNUxpZ5BiTGrYt7kueGQ+N5FiQ7RCOD4cm8iShd6S6ggfVIWaJf2EMk8eRzAh52RfP4rQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -2558,29 +2331,29 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-literals/7.23.3_@babel+core@7.23.7: + /@babel/plugin-transform-literals/7.23.3_@babel+core@7.23.9: resolution: {integrity: sha512-wZ0PIXRxnwZvl9AYpqNUxpZ5BiTGrYt7kueGQ+N5FiQ7RCOD4cm8iShd6S6ggfVIWaJf2EMk8eRzAh52RfP4rQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.7 + '@babel/core': 7.23.9 '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-logical-assignment-operators/7.23.4_@babel+core@7.23.7: + /@babel/plugin-transform-logical-assignment-operators/7.23.4_@babel+core@7.23.9: resolution: {integrity: sha512-Mc/ALf1rmZTP4JKKEhUwiORU+vcfarFVLfcFiolKUo6sewoxSEgl36ak5t+4WamRsNr6nzjZXQjM35WsU+9vbg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.7 + '@babel/core': 7.23.9 '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.23.7 + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.23.9 dev: true - /@babel/plugin-transform-member-expression-literals/7.18.6_@babel+core@7.18.9: - resolution: {integrity: sha512-qSF1ihLGO3q+/g48k85tUjD033C29TNTVB2paCwZPVmOsjn9pClvYYrM2VeJpBY2bcNkuny0YUyTNRyRxJ54KA==} + /@babel/plugin-transform-member-expression-literals/7.23.3_@babel+core@7.18.9: + resolution: {integrity: sha512-sC3LdDBDi5x96LA+Ytekz2ZPk8i/Ck+DEuDbRAll5rknJ5XRTSaPKEYwomLcs1AA8wg9b3KjIQRsnApj+q51Ag==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -2589,130 +2362,116 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-member-expression-literals/7.23.3_@babel+core@7.23.7: + /@babel/plugin-transform-member-expression-literals/7.23.3_@babel+core@7.23.9: resolution: {integrity: sha512-sC3LdDBDi5x96LA+Ytekz2ZPk8i/Ck+DEuDbRAll5rknJ5XRTSaPKEYwomLcs1AA8wg9b3KjIQRsnApj+q51Ag==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.7 + '@babel/core': 7.23.9 '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-modules-amd/7.23.3_@babel+core@7.23.7: + /@babel/plugin-transform-modules-amd/7.23.3_@babel+core@7.23.9: resolution: {integrity: sha512-vJYQGxeKM4t8hYCKVBlZX/gtIY2I7mRGFNcm85sgXGMTBcoV3QdVtdpbcWEbzbfUIUZKwvgFT82mRvaQIebZzw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.7 - '@babel/helper-module-transforms': 7.23.3_@babel+core@7.23.7 + '@babel/core': 7.23.9 + '@babel/helper-module-transforms': 7.23.3_@babel+core@7.23.9 '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-modules-commonjs/7.18.6_@babel+core@7.18.9: - resolution: {integrity: sha512-Qfv2ZOWikpvmedXQJDSbxNqy7Xr/j2Y8/KfijM0iJyKkBTmWuvCA1yeH1yDM7NJhBW/2aXxeucLj6i80/LAJ/Q==} + /@babel/plugin-transform-modules-commonjs/7.23.3_@babel+core@7.18.9: + resolution: {integrity: sha512-aVS0F65LKsdNOtcz6FRCpE4OgsP2OFnW46qNxNIX9h3wuzaNcSQsJysuMwqSibC98HPrf2vCgtxKNwS0DAlgcA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.18.9 - '@babel/helper-module-transforms': 7.18.9 - '@babel/helper-plugin-utils': 7.18.9 - '@babel/helper-simple-access': 7.18.6 - babel-plugin-dynamic-import-node: 2.3.3 - transitivePeerDependencies: - - supports-color + '@babel/helper-module-transforms': 7.23.3_@babel+core@7.18.9 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-simple-access': 7.22.5 dev: true - /@babel/plugin-transform-modules-commonjs/7.23.3_@babel+core@7.23.7: + /@babel/plugin-transform-modules-commonjs/7.23.3_@babel+core@7.23.9: resolution: {integrity: sha512-aVS0F65LKsdNOtcz6FRCpE4OgsP2OFnW46qNxNIX9h3wuzaNcSQsJysuMwqSibC98HPrf2vCgtxKNwS0DAlgcA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.7 - '@babel/helper-module-transforms': 7.23.3_@babel+core@7.23.7 + '@babel/core': 7.23.9 + '@babel/helper-module-transforms': 7.23.3_@babel+core@7.23.9 '@babel/helper-plugin-utils': 7.22.5 '@babel/helper-simple-access': 7.22.5 dev: true - /@babel/plugin-transform-modules-systemjs/7.23.3_@babel+core@7.23.7: - resolution: {integrity: sha512-ZxyKGTkF9xT9YJuKQRo19ewf3pXpopuYQd8cDXqNzc3mUNbOME0RKMoZxviQk74hwzfQsEe66dE92MaZbdHKNQ==} + /@babel/plugin-transform-modules-systemjs/7.23.9_@babel+core@7.23.9: + resolution: {integrity: sha512-KDlPRM6sLo4o1FkiSlXoAa8edLXFsKKIda779fbLrvmeuc3itnjCtaO6RrtoaANsIJANj+Vk1zqbZIMhkCAHVw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.7 + '@babel/core': 7.23.9 '@babel/helper-hoist-variables': 7.22.5 - '@babel/helper-module-transforms': 7.23.3_@babel+core@7.23.7 + '@babel/helper-module-transforms': 7.23.3_@babel+core@7.23.9 '@babel/helper-plugin-utils': 7.22.5 '@babel/helper-validator-identifier': 7.22.20 dev: true - /@babel/plugin-transform-modules-umd/7.23.3_@babel+core@7.23.7: + /@babel/plugin-transform-modules-umd/7.23.3_@babel+core@7.23.9: resolution: {integrity: sha512-zHsy9iXX2nIsCBFPud3jKn1IRPWg3Ing1qOZgeKV39m1ZgIdpJqvlWVeiHBZC6ITRG0MfskhYe9cLgntfSFPIg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.7 - '@babel/helper-module-transforms': 7.23.3_@babel+core@7.23.7 + '@babel/core': 7.23.9 + '@babel/helper-module-transforms': 7.23.3_@babel+core@7.23.9 '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-named-capturing-groups-regex/7.18.6_@babel+core@7.18.9: - resolution: {integrity: sha512-UmEOGF8XgaIqD74bC8g7iV3RYj8lMf0Bw7NJzvnS9qQhM4mg+1WHKotUIdjxgD2RGrgFLZZPCFPFj3P/kVDYhg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - dependencies: - '@babel/core': 7.18.9 - '@babel/helper-create-regexp-features-plugin': 7.18.6_@babel+core@7.18.9 - '@babel/helper-plugin-utils': 7.22.5 - dev: true - - /@babel/plugin-transform-named-capturing-groups-regex/7.22.5_@babel+core@7.23.7: + /@babel/plugin-transform-named-capturing-groups-regex/7.22.5_@babel+core@7.23.9: resolution: {integrity: sha512-YgLLKmS3aUBhHaxp5hi1WJTgOUb/NCuDHzGT9z9WTt3YG+CPRhJs6nprbStx6DnWM4dh6gt7SU3sZodbZ08adQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.23.7 - '@babel/helper-create-regexp-features-plugin': 7.22.15_@babel+core@7.23.7 + '@babel/core': 7.23.9 + '@babel/helper-create-regexp-features-plugin': 7.22.15_@babel+core@7.23.9 '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-new-target/7.23.3_@babel+core@7.23.7: + /@babel/plugin-transform-new-target/7.23.3_@babel+core@7.23.9: resolution: {integrity: sha512-YJ3xKqtJMAT5/TIZnpAR3I+K+WaDowYbN3xyxI8zxx/Gsypwf9B9h0VB+1Nh6ACAAPRS5NSRje0uVv5i79HYGQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.7 + '@babel/core': 7.23.9 '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-nullish-coalescing-operator/7.23.4_@babel+core@7.23.7: + /@babel/plugin-transform-nullish-coalescing-operator/7.23.4_@babel+core@7.23.9: resolution: {integrity: sha512-jHE9EVVqHKAQx+VePv5LLGHjmHSJR76vawFPTdlxR/LVJPfOEGxREQwQfjuZEOPTwG92X3LINSh3M40Rv4zpVA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.7 + '@babel/core': 7.23.9 '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.23.7 + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.23.9 dev: true - /@babel/plugin-transform-numeric-separator/7.23.4_@babel+core@7.23.7: + /@babel/plugin-transform-numeric-separator/7.23.4_@babel+core@7.23.9: resolution: {integrity: sha512-mps6auzgwjRrwKEZA05cOwuDc9FAzoyFS4ZsG/8F43bTLf/TgkJg7QXOrPO1JO599iA3qgK9MXdMGOEC8O1h6Q==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.7 + '@babel/core': 7.23.9 '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.23.7 + '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.23.9 dev: true /@babel/plugin-transform-object-assign/7.18.6_@babel+core@7.18.9: @@ -2725,69 +2484,77 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-object-rest-spread/7.23.4_@babel+core@7.23.7: + /@babel/plugin-transform-object-assign/7.18.6_@babel+core@7.23.9: + resolution: {integrity: sha512-mQisZ3JfqWh2gVXvfqYCAAyRs6+7oev+myBsTwW5RnPhYXOTuCEw2oe3YgxlXMViXUS53lG8koulI7mJ+8JE+A==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.23.9 + '@babel/helper-plugin-utils': 7.22.5 + dev: true + + /@babel/plugin-transform-object-rest-spread/7.23.4_@babel+core@7.23.9: resolution: {integrity: sha512-9x9K1YyeQVw0iOXJlIzwm8ltobIIv7j2iLyP2jIhEbqPRQ7ScNgwQufU2I0Gq11VjyG4gI4yMXt2VFags+1N3g==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/compat-data': 7.23.5 - '@babel/core': 7.23.7 + '@babel/core': 7.23.9 '@babel/helper-compilation-targets': 7.23.6 '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.23.7 - '@babel/plugin-transform-parameters': 7.23.3_@babel+core@7.23.7 + '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.23.9 + '@babel/plugin-transform-parameters': 7.23.3_@babel+core@7.23.9 dev: true - /@babel/plugin-transform-object-super/7.18.6_@babel+core@7.18.9: - resolution: {integrity: sha512-uvGz6zk+pZoS1aTZrOvrbj6Pp/kK2mp45t2B+bTDre2UgsZZ8EZLSJtUg7m/no0zOJUWgFONpB7Zv9W2tSaFlA==} + /@babel/plugin-transform-object-super/7.23.3_@babel+core@7.18.9: + resolution: {integrity: sha512-BwQ8q0x2JG+3lxCVFohg+KbQM7plfpBwThdW9A6TMtWwLsbDA01Ek2Zb/AgDN39BiZsExm4qrXxjk+P1/fzGrA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.18.9 '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-replace-supers': 7.18.6 - transitivePeerDependencies: - - supports-color + '@babel/helper-replace-supers': 7.22.20_@babel+core@7.18.9 dev: true - /@babel/plugin-transform-object-super/7.23.3_@babel+core@7.23.7: + /@babel/plugin-transform-object-super/7.23.3_@babel+core@7.23.9: resolution: {integrity: sha512-BwQ8q0x2JG+3lxCVFohg+KbQM7plfpBwThdW9A6TMtWwLsbDA01Ek2Zb/AgDN39BiZsExm4qrXxjk+P1/fzGrA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.7 + '@babel/core': 7.23.9 '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-replace-supers': 7.22.20_@babel+core@7.23.7 + '@babel/helper-replace-supers': 7.22.20_@babel+core@7.23.9 dev: true - /@babel/plugin-transform-optional-catch-binding/7.23.4_@babel+core@7.23.7: + /@babel/plugin-transform-optional-catch-binding/7.23.4_@babel+core@7.23.9: resolution: {integrity: sha512-XIq8t0rJPHf6Wvmbn9nFxU6ao4c7WhghTR5WyV8SrJfUFzyxhCm4nhC+iAp3HFhbAKLfYpgzhJ6t4XCtVwqO5A==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.7 + '@babel/core': 7.23.9 '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.23.7 + '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.23.9 dev: true - /@babel/plugin-transform-optional-chaining/7.23.4_@babel+core@7.23.7: + /@babel/plugin-transform-optional-chaining/7.23.4_@babel+core@7.23.9: resolution: {integrity: sha512-ZU8y5zWOfjM5vZ+asjgAPwDaBjJzgufjES89Rs4Lpq63O300R/kOz30WCLo6BxxX6QVEilwSlpClnG5cZaikTA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.7 + '@babel/core': 7.23.9 '@babel/helper-plugin-utils': 7.22.5 '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 - '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.23.7 + '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.23.9 dev: true - /@babel/plugin-transform-parameters/7.18.6_@babel+core@7.18.9: - resolution: {integrity: sha512-FjdqgMv37yVl/gwvzkcB+wfjRI8HQmc5EgOG9iGNvUY1ok+TjsoaMP7IqCDZBhkFcM5f3OPVMs6Dmp03C5k4/A==} + /@babel/plugin-transform-parameters/7.23.3_@babel+core@7.18.9: + resolution: {integrity: sha512-09lMt6UsUb3/34BbECKVbVwrT9bO6lILWln237z7sLaWnMsTi7Yc9fhX5DLpkJzAGfaReXI22wP41SZmnAA3Vw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -2796,52 +2563,42 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-parameters/7.18.8_@babel+core@7.18.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.18.9 - '@babel/helper-plugin-utils': 7.18.9 - dev: true - - /@babel/plugin-transform-parameters/7.23.3_@babel+core@7.23.7: + /@babel/plugin-transform-parameters/7.23.3_@babel+core@7.23.9: resolution: {integrity: sha512-09lMt6UsUb3/34BbECKVbVwrT9bO6lILWln237z7sLaWnMsTi7Yc9fhX5DLpkJzAGfaReXI22wP41SZmnAA3Vw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.7 + '@babel/core': 7.23.9 '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-private-methods/7.23.3_@babel+core@7.23.7: + /@babel/plugin-transform-private-methods/7.23.3_@babel+core@7.23.9: resolution: {integrity: sha512-UzqRcRtWsDMTLrRWFvUBDwmw06tCQH9Rl1uAjfh6ijMSmGYQ+fpdB+cnqRC8EMh5tuuxSv0/TejGL+7vyj+50g==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.7 - '@babel/helper-create-class-features-plugin': 7.23.7_@babel+core@7.23.7 + '@babel/core': 7.23.9 + '@babel/helper-create-class-features-plugin': 7.23.7_@babel+core@7.23.9 '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-private-property-in-object/7.23.4_@babel+core@7.23.7: + /@babel/plugin-transform-private-property-in-object/7.23.4_@babel+core@7.23.9: resolution: {integrity: sha512-9G3K1YqTq3F4Vt88Djx1UZ79PDyj+yKRnUy7cZGSMe+a7jkwD259uKKuUzQlPkGam7R+8RJwh5z4xO27fA1o2A==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.7 + '@babel/core': 7.23.9 '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-create-class-features-plugin': 7.23.7_@babel+core@7.23.7 + '@babel/helper-create-class-features-plugin': 7.23.7_@babel+core@7.23.9 '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.23.7 + '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.23.9 dev: true - /@babel/plugin-transform-property-literals/7.18.6_@babel+core@7.18.9: - resolution: {integrity: sha512-cYcs6qlgafTud3PAzrrRNbQtfpQ8+y/+M5tKmksS9+M1ckbH6kzY8MrexEM9mcA6JDsukE19iIRvAyYl463sMg==} + /@babel/plugin-transform-property-literals/7.23.3_@babel+core@7.18.9: + resolution: {integrity: sha512-jR3Jn3y7cZp4oEWPFAlRsSWjxKe4PZILGBSd4nis1TsC5qeSpb+nrtihJuDhNI7QHiVbUaiXa0X2RZY3/TI6Nw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -2850,18 +2607,18 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-property-literals/7.23.3_@babel+core@7.23.7: + /@babel/plugin-transform-property-literals/7.23.3_@babel+core@7.23.9: resolution: {integrity: sha512-jR3Jn3y7cZp4oEWPFAlRsSWjxKe4PZILGBSd4nis1TsC5qeSpb+nrtihJuDhNI7QHiVbUaiXa0X2RZY3/TI6Nw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.7 + '@babel/core': 7.23.9 '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-react-display-name/7.18.6_@babel+core@7.18.9: - resolution: {integrity: sha512-TV4sQ+T013n61uMoygyMRm+xf04Bd5oqFpv2jAEQwSZ8NwQA7zeRPg1LMVg2PWi3zWBz+CLKD+v5bcpZ/BS0aA==} + /@babel/plugin-transform-react-display-name/7.23.3_@babel+core@7.18.9: + resolution: {integrity: sha512-GnvhtVfA2OAtzdX58FJxU19rhoGeQzyVndw3GgtdECQvQFXPEZIOVULHVZGAYmOgmqjXpVpfocAbSjh99V/Fqw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -2870,43 +2627,43 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-react-display-name/7.23.3_@babel+core@7.18.9: + /@babel/plugin-transform-react-display-name/7.23.3_@babel+core@7.23.9: resolution: {integrity: sha512-GnvhtVfA2OAtzdX58FJxU19rhoGeQzyVndw3GgtdECQvQFXPEZIOVULHVZGAYmOgmqjXpVpfocAbSjh99V/Fqw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.9 + '@babel/core': 7.23.9 '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-react-jsx-development/7.18.6_@babel+core@7.18.9: - resolution: {integrity: sha512-SA6HEjwYFKF7WDjWcMcMGUimmw/nhNRDWxr+KaLSCrkD/LMDBvWRmHAYgE1HDeF8KUuI8OAu+RT6EOtKxSW2qA==} + /@babel/plugin-transform-react-jsx-development/7.22.5_@babel+core@7.23.9: + resolution: {integrity: sha512-bDhuzwWMuInwCYeDeMzyi7TaBgRQei6DqxhbyniL7/VG4RSS7HtSL2QbY4eESy1KJqlWt8g3xeEBGPuo+XqC8A==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.9 - '@babel/plugin-transform-react-jsx': 7.18.6_@babel+core@7.18.9 + '@babel/core': 7.23.9 + '@babel/plugin-transform-react-jsx': 7.23.4_@babel+core@7.23.9 dev: true - /@babel/plugin-transform-react-jsx-development/7.22.5_@babel+core@7.18.9: - resolution: {integrity: sha512-bDhuzwWMuInwCYeDeMzyi7TaBgRQei6DqxhbyniL7/VG4RSS7HtSL2QbY4eESy1KJqlWt8g3xeEBGPuo+XqC8A==} + /@babel/plugin-transform-react-jsx-self/7.18.6_@babel+core@7.18.9: + resolution: {integrity: sha512-A0LQGx4+4Jv7u/tWzoJF7alZwnBDQd6cGLh9P+Ttk4dpiL+J5p7NSNv/9tlEFFJDq3kjxOavWmbm6t0Gk+A3Ig==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.18.9 - '@babel/plugin-transform-react-jsx': 7.23.4_@babel+core@7.18.9 + '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-react-jsx-self/7.18.6_@babel+core@7.18.9: + /@babel/plugin-transform-react-jsx-self/7.18.6_@babel+core@7.23.9: resolution: {integrity: sha512-A0LQGx4+4Jv7u/tWzoJF7alZwnBDQd6cGLh9P+Ttk4dpiL+J5p7NSNv/9tlEFFJDq3kjxOavWmbm6t0Gk+A3Ig==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.9 + '@babel/core': 7.23.9 '@babel/helper-plugin-utils': 7.22.5 dev: true @@ -2920,18 +2677,14 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-react-jsx/7.18.6_@babel+core@7.18.9: - resolution: {integrity: sha512-Mz7xMPxoy9kPS/JScj6fJs03TZ/fZ1dJPlMjRAgTaxaS0fUBk8FV/A2rRgfPsVCZqALNwMexD+0Uaf5zlcKPpw==} + /@babel/plugin-transform-react-jsx-source/7.18.6_@babel+core@7.23.9: + resolution: {integrity: sha512-utZmlASneDfdaMh0m/WausbjUjEdGrQJz0vFK93d7wD3xf5wBtX219+q6IlCNZeguIcxS2f/CvLZrlLSvSHQXw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.9 - '@babel/helper-annotate-as-pure': 7.18.6 - '@babel/helper-module-imports': 7.18.6 + '@babel/core': 7.23.9 '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-jsx': 7.18.6_@babel+core@7.18.9 - '@babel/types': 7.23.6 dev: true /@babel/plugin-transform-react-jsx/7.23.4_@babel+core@7.18.9: @@ -2948,57 +2701,60 @@ packages: '@babel/types': 7.23.6 dev: true - /@babel/plugin-transform-react-pure-annotations/7.18.6_@babel+core@7.18.9: - resolution: {integrity: sha512-I8VfEPg9r2TRDdvnHgPepTKvuRomzA8+u+nhY7qSI1fR2hRNebasZEETLyM5mAUr0Ku56OkXJ0I7NHJnO6cJiQ==} + /@babel/plugin-transform-react-jsx/7.23.4_@babel+core@7.23.9: + resolution: {integrity: sha512-5xOpoPguCZCRbo/JeHlloSkTA8Bld1J/E1/kLfD1nsuiW1m8tduTA1ERCgIZokDflX/IBzKcqR3l7VlRgiIfHA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.9 - '@babel/helper-annotate-as-pure': 7.18.6 + '@babel/core': 7.23.9 + '@babel/helper-annotate-as-pure': 7.22.5 + '@babel/helper-module-imports': 7.22.15 '@babel/helper-plugin-utils': 7.22.5 + '@babel/plugin-syntax-jsx': 7.23.3_@babel+core@7.23.9 + '@babel/types': 7.23.6 dev: true - /@babel/plugin-transform-react-pure-annotations/7.23.3_@babel+core@7.18.9: + /@babel/plugin-transform-react-pure-annotations/7.23.3_@babel+core@7.23.9: resolution: {integrity: sha512-qMFdSS+TUhB7Q/3HVPnEdYJDQIk57jkntAwSuz9xfSE4n+3I+vHYCli3HoHawN1Z3RfCz/y1zXA/JXjG6cVImQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.9 + '@babel/core': 7.23.9 '@babel/helper-annotate-as-pure': 7.22.5 '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-regenerator/7.18.6_@babel+core@7.18.9: - resolution: {integrity: sha512-poqRI2+qiSdeldcz4wTSTXBRryoq3Gc70ye7m7UD5Ww0nE29IXqMl6r7Nd15WBgRd74vloEMlShtH6CKxVzfmQ==} + /@babel/plugin-transform-regenerator/7.23.3_@babel+core@7.18.9: + resolution: {integrity: sha512-KP+75h0KghBMcVpuKisx3XTu9Ncut8Q8TuvGO4IhY+9D5DFEckQefOuIsB/gQ2tG71lCke4NMrtIPS8pOj18BQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.18.9 '@babel/helper-plugin-utils': 7.22.5 - regenerator-transform: 0.15.0 + regenerator-transform: 0.15.2 dev: true - /@babel/plugin-transform-regenerator/7.23.3_@babel+core@7.23.7: + /@babel/plugin-transform-regenerator/7.23.3_@babel+core@7.23.9: resolution: {integrity: sha512-KP+75h0KghBMcVpuKisx3XTu9Ncut8Q8TuvGO4IhY+9D5DFEckQefOuIsB/gQ2tG71lCke4NMrtIPS8pOj18BQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.7 + '@babel/core': 7.23.9 '@babel/helper-plugin-utils': 7.22.5 regenerator-transform: 0.15.2 dev: true - /@babel/plugin-transform-reserved-words/7.23.3_@babel+core@7.23.7: + /@babel/plugin-transform-reserved-words/7.23.3_@babel+core@7.23.9: resolution: {integrity: sha512-QnNTazY54YqgGxwIexMZva9gqbPa15t/x9VS+0fsEFWplwVpXYZivtgl43Z1vMpc1bdPP2PP8siFeVcnFvA3Cg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.7 + '@babel/core': 7.23.9 '@babel/helper-plugin-utils': 7.22.5 dev: true @@ -3009,7 +2765,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.18.9 - '@babel/helper-module-imports': 7.18.6 + '@babel/helper-module-imports': 7.22.15 '@babel/helper-plugin-utils': 7.22.5 babel-plugin-polyfill-corejs2: 0.3.2_@babel+core@7.18.9 babel-plugin-polyfill-corejs3: 0.5.3_@babel+core@7.18.9 @@ -3019,78 +2775,84 @@ packages: - supports-color dev: true - /@babel/plugin-transform-runtime/7.18.9_@babel+core@7.18.9: - resolution: {integrity: sha512-wS8uJwBt7/b/mzE13ktsJdmS4JP/j7PQSaADtnb4I2wL0zK51MQ0pmF8/Jy0wUIS96fr+fXT6S/ifiPXnvrlSg==} + /@babel/plugin-transform-runtime/7.18.6_@babel+core@7.23.9: + resolution: {integrity: sha512-8uRHk9ZmRSnWqUgyae249EJZ94b0yAGLBIqzZzl+0iEdbno55Pmlt/32JZsHwXD9k/uZj18Aqqk35wBX4CBTXA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.9 - '@babel/helper-module-imports': 7.18.6 + '@babel/core': 7.23.9 + '@babel/helper-module-imports': 7.22.15 '@babel/helper-plugin-utils': 7.22.5 - babel-plugin-polyfill-corejs2: 0.3.2_@babel+core@7.18.9 - babel-plugin-polyfill-corejs3: 0.5.3_@babel+core@7.18.9 - babel-plugin-polyfill-regenerator: 0.3.1_@babel+core@7.18.9 + babel-plugin-polyfill-corejs2: 0.3.2_@babel+core@7.23.9 + babel-plugin-polyfill-corejs3: 0.5.3_@babel+core@7.23.9 + babel-plugin-polyfill-regenerator: 0.3.1_@babel+core@7.23.9 semver: 6.3.1 transitivePeerDependencies: - supports-color dev: true - /@babel/plugin-transform-shorthand-properties/7.18.6_@babel+core@7.18.9: - resolution: {integrity: sha512-eCLXXJqv8okzg86ywZJbRn19YJHU4XUa55oz2wbHhaQVn/MM+XhukiT7SYqp/7o00dg52Rj51Ny+Ecw4oyoygw==} + /@babel/plugin-transform-runtime/7.18.9_@babel+core@7.23.9: + resolution: {integrity: sha512-wS8uJwBt7/b/mzE13ktsJdmS4JP/j7PQSaADtnb4I2wL0zK51MQ0pmF8/Jy0wUIS96fr+fXT6S/ifiPXnvrlSg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.9 - '@babel/helper-plugin-utils': 7.18.9 + '@babel/core': 7.23.9 + '@babel/helper-module-imports': 7.22.15 + '@babel/helper-plugin-utils': 7.22.5 + babel-plugin-polyfill-corejs2: 0.3.2_@babel+core@7.23.9 + babel-plugin-polyfill-corejs3: 0.5.3_@babel+core@7.23.9 + babel-plugin-polyfill-regenerator: 0.3.1_@babel+core@7.23.9 + semver: 6.3.1 + transitivePeerDependencies: + - supports-color dev: true - /@babel/plugin-transform-shorthand-properties/7.23.3_@babel+core@7.23.7: + /@babel/plugin-transform-shorthand-properties/7.23.3_@babel+core@7.18.9: resolution: {integrity: sha512-ED2fgqZLmexWiN+YNFX26fx4gh5qHDhn1O2gvEhreLW2iI63Sqm4llRLCXALKrCnbN4Jy0VcMQZl/SAzqug/jg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.7 + '@babel/core': 7.18.9 '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-spread/7.18.6_@babel+core@7.18.9: - resolution: {integrity: sha512-ayT53rT/ENF8WWexIRg9AiV9h0aIteyWn5ptfZTZQrjk/+f3WdrJGCY4c9wcgl2+MKkKPhzbYp97FTsquZpDCw==} + /@babel/plugin-transform-shorthand-properties/7.23.3_@babel+core@7.23.9: + resolution: {integrity: sha512-ED2fgqZLmexWiN+YNFX26fx4gh5qHDhn1O2gvEhreLW2iI63Sqm4llRLCXALKrCnbN4Jy0VcMQZl/SAzqug/jg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.9 + '@babel/core': 7.23.9 '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-skip-transparent-expression-wrappers': 7.18.6 dev: true - /@babel/plugin-transform-spread/7.18.9_@babel+core@7.18.9: - resolution: {integrity: sha512-39Q814wyoOPtIB/qGopNIL9xDChOE1pNU0ZY5dO0owhiVt/5kFm4li+/bBtwc7QotG0u5EPzqhZdjMtmqBqyQA==} + /@babel/plugin-transform-spread/7.23.3_@babel+core@7.18.9: + resolution: {integrity: sha512-VvfVYlrlBVu+77xVTOAoxQ6mZbnIq5FM0aGBSFEcIh03qHf+zNqA4DC/3XMUozTg7bZV3e3mZQ0i13VB6v5yUg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.18.9 - '@babel/helper-plugin-utils': 7.18.9 - '@babel/helper-skip-transparent-expression-wrappers': 7.18.9 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 dev: true - /@babel/plugin-transform-spread/7.23.3_@babel+core@7.23.7: + /@babel/plugin-transform-spread/7.23.3_@babel+core@7.23.9: resolution: {integrity: sha512-VvfVYlrlBVu+77xVTOAoxQ6mZbnIq5FM0aGBSFEcIh03qHf+zNqA4DC/3XMUozTg7bZV3e3mZQ0i13VB6v5yUg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.7 + '@babel/core': 7.23.9 '@babel/helper-plugin-utils': 7.22.5 '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 dev: true - /@babel/plugin-transform-sticky-regex/7.18.6_@babel+core@7.18.9: - resolution: {integrity: sha512-kfiDrDQ+PBsQDO85yj1icueWMfGfJFKN1KCkndygtu/C9+XUfydLC8Iv5UYJqRwy4zk8EcplRxEOeLyjq1gm6Q==} + /@babel/plugin-transform-sticky-regex/7.23.3_@babel+core@7.18.9: + resolution: {integrity: sha512-HZOyN9g+rtvnOU3Yh7kSxXrKbzgrm5X4GncPY1QOquu7epga5MxKHVpYu2hvQnry/H+JjckSYRb93iNfsioAGg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -3099,18 +2861,18 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-sticky-regex/7.23.3_@babel+core@7.23.7: + /@babel/plugin-transform-sticky-regex/7.23.3_@babel+core@7.23.9: resolution: {integrity: sha512-HZOyN9g+rtvnOU3Yh7kSxXrKbzgrm5X4GncPY1QOquu7epga5MxKHVpYu2hvQnry/H+JjckSYRb93iNfsioAGg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.7 + '@babel/core': 7.23.9 '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-template-literals/7.18.6_@babel+core@7.18.9: - resolution: {integrity: sha512-UuqlRrQmT2SWRvahW46cGSany0uTlcj8NYOS5sRGYi8FxPYPoLd5DDmMd32ZXEj2Jq+06uGVQKHxa/hJx2EzKw==} + /@babel/plugin-transform-template-literals/7.23.3_@babel+core@7.18.9: + resolution: {integrity: sha512-Flok06AYNp7GV2oJPZZcP9vZdszev6vPBkHLwxwSpaIqx75wn6mUd3UFWsSsA0l8nXAKkyCmL/sR02m8RYGeHg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -3119,322 +2881,256 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-template-literals/7.18.9_@babel+core@7.18.9: - resolution: {integrity: sha512-S8cOWfT82gTezpYOiVaGHrCbhlHgKhQt8XH5ES46P2XWmX92yisoZywf5km75wv5sYcXDUCLMmMxOLCtthDgMA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.18.9 - '@babel/helper-plugin-utils': 7.18.9 - dev: true - - /@babel/plugin-transform-template-literals/7.23.3_@babel+core@7.23.7: + /@babel/plugin-transform-template-literals/7.23.3_@babel+core@7.23.9: resolution: {integrity: sha512-Flok06AYNp7GV2oJPZZcP9vZdszev6vPBkHLwxwSpaIqx75wn6mUd3UFWsSsA0l8nXAKkyCmL/sR02m8RYGeHg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.7 + '@babel/core': 7.23.9 '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-typeof-symbol/7.23.3_@babel+core@7.23.7: + /@babel/plugin-transform-typeof-symbol/7.23.3_@babel+core@7.23.9: resolution: {integrity: sha512-4t15ViVnaFdrPC74be1gXBSMzXk3B4Us9lP7uLRQHTFpV5Dvt33pn+2MyyNxmN3VTTm3oTrZVMUmuw3oBnQ2oQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.7 - '@babel/helper-plugin-utils': 7.22.5 - dev: true - - /@babel/plugin-transform-typescript/7.18.6_@babel+core@7.18.9: - resolution: {integrity: sha512-ijHNhzIrLj5lQCnI6aaNVRtGVuUZhOXFLRVFs7lLrkXTHip4FKty5oAuQdk4tywG0/WjXmjTfQCWmuzrvFer1w==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.18.9 - '@babel/helper-create-class-features-plugin': 7.18.6_@babel+core@7.18.9 + '@babel/core': 7.23.9 '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-typescript': 7.18.6_@babel+core@7.18.9 - transitivePeerDependencies: - - supports-color dev: true - /@babel/plugin-transform-typescript/7.18.8_@babel+core@7.18.9: - resolution: {integrity: sha512-p2xM8HI83UObjsZGofMV/EdYjamsDm6MoN3hXPYIT0+gxIoopE+B7rPYKAxfrz9K9PK7JafTTjqYC6qipLExYA==} + /@babel/plugin-transform-typescript/7.23.6_@babel+core@7.18.9: + resolution: {integrity: sha512-6cBG5mBvUu4VUD04OHKnYzbuHNP8huDsD3EDqqpIpsswTDoqHCjLoHb6+QgsV1WsT2nipRqCPgxD3LXnEO7XfA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.18.9 - '@babel/helper-create-class-features-plugin': 7.18.9_@babel+core@7.18.9 + '@babel/helper-annotate-as-pure': 7.22.5 + '@babel/helper-create-class-features-plugin': 7.23.7_@babel+core@7.18.9 '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-typescript': 7.18.6_@babel+core@7.18.9 - transitivePeerDependencies: - - supports-color + '@babel/plugin-syntax-typescript': 7.23.3_@babel+core@7.18.9 dev: true - /@babel/plugin-transform-typescript/7.23.6_@babel+core@7.23.7: + /@babel/plugin-transform-typescript/7.23.6_@babel+core@7.23.9: resolution: {integrity: sha512-6cBG5mBvUu4VUD04OHKnYzbuHNP8huDsD3EDqqpIpsswTDoqHCjLoHb6+QgsV1WsT2nipRqCPgxD3LXnEO7XfA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.7 + '@babel/core': 7.23.9 '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-create-class-features-plugin': 7.23.7_@babel+core@7.23.7 + '@babel/helper-create-class-features-plugin': 7.23.7_@babel+core@7.23.9 '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-typescript': 7.23.3_@babel+core@7.23.7 + '@babel/plugin-syntax-typescript': 7.23.3_@babel+core@7.23.9 dev: true - /@babel/plugin-transform-unicode-escapes/7.23.3_@babel+core@7.23.7: + /@babel/plugin-transform-unicode-escapes/7.23.3_@babel+core@7.23.9: resolution: {integrity: sha512-OMCUx/bU6ChE3r4+ZdylEqAjaQgHAgipgW8nsCfu5pGqDcFytVd91AwRvUJSBZDz0exPGgnjoqhgRYLRjFZc9Q==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.7 + '@babel/core': 7.23.9 '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-unicode-property-regex/7.23.3_@babel+core@7.23.7: + /@babel/plugin-transform-unicode-property-regex/7.23.3_@babel+core@7.23.9: resolution: {integrity: sha512-KcLIm+pDZkWZQAFJ9pdfmh89EwVfmNovFBcXko8szpBeF8z68kWIPeKlmSOkT9BXJxs2C0uk+5LxoxIv62MROA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.7 - '@babel/helper-create-regexp-features-plugin': 7.22.15_@babel+core@7.23.7 + '@babel/core': 7.23.9 + '@babel/helper-create-regexp-features-plugin': 7.22.15_@babel+core@7.23.9 '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-unicode-regex/7.18.6_@babel+core@7.18.9: - resolution: {integrity: sha512-gE7A6Lt7YLnNOL3Pb9BNeZvi+d8l7tcRrG4+pwJjK9hD2xX4mEvjlQW60G9EEmfXVYRPv9VRQcyegIVHCql/AA==} + /@babel/plugin-transform-unicode-regex/7.23.3_@babel+core@7.18.9: + resolution: {integrity: sha512-wMHpNA4x2cIA32b/ci3AfwNgheiva2W0WUKWTK7vBHBhDKfPsc5cFGNWm69WBqpwd86u1qwZ9PWevKqm1A3yAw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.18.9 - '@babel/helper-create-regexp-features-plugin': 7.18.6_@babel+core@7.18.9 + '@babel/helper-create-regexp-features-plugin': 7.22.15_@babel+core@7.18.9 '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-unicode-regex/7.23.3_@babel+core@7.23.7: + /@babel/plugin-transform-unicode-regex/7.23.3_@babel+core@7.23.9: resolution: {integrity: sha512-wMHpNA4x2cIA32b/ci3AfwNgheiva2W0WUKWTK7vBHBhDKfPsc5cFGNWm69WBqpwd86u1qwZ9PWevKqm1A3yAw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.7 - '@babel/helper-create-regexp-features-plugin': 7.22.15_@babel+core@7.23.7 + '@babel/core': 7.23.9 + '@babel/helper-create-regexp-features-plugin': 7.22.15_@babel+core@7.23.9 '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-unicode-sets-regex/7.23.3_@babel+core@7.23.7: + /@babel/plugin-transform-unicode-sets-regex/7.23.3_@babel+core@7.23.9: resolution: {integrity: sha512-W7lliA/v9bNR83Qc3q1ip9CQMZ09CcHDbHfbLRDNuAhn1Mvkr1ZNF7hPmztMQvtTGVLJ9m8IZqWsTkXOml8dbw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.23.7 - '@babel/helper-create-regexp-features-plugin': 7.22.15_@babel+core@7.23.7 + '@babel/core': 7.23.9 + '@babel/helper-create-regexp-features-plugin': 7.22.15_@babel+core@7.23.9 '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/preset-env/7.23.8_@babel+core@7.23.7: - resolution: {integrity: sha512-lFlpmkApLkEP6woIKprO6DO60RImpatTQKtz4sUcDjVcK8M8mQ4sZsuxaTMNOZf0sqAq/ReYW1ZBHnOQwKpLWA==} + /@babel/preset-env/7.23.9_@babel+core@7.23.9: + resolution: {integrity: sha512-3kBGTNBBk9DQiPoXYS0g0BYlwTQYUTifqgKTjxUwEUkduRT2QOa0FPGBJ+NROQhGyYO5BuTJwGvBnqKDykac6A==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/compat-data': 7.23.5 - '@babel/core': 7.23.7 + '@babel/core': 7.23.9 '@babel/helper-compilation-targets': 7.23.6 '@babel/helper-plugin-utils': 7.22.5 '@babel/helper-validator-option': 7.23.5 - '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.23.3_@babel+core@7.23.7 - '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.23.3_@babel+core@7.23.7 - '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly': 7.23.7_@babel+core@7.23.7 - '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2_@babel+core@7.23.7 - '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.23.7 - '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.23.7 - '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.23.7 - '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.23.7 - '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.23.7 - '@babel/plugin-syntax-import-assertions': 7.23.3_@babel+core@7.23.7 - '@babel/plugin-syntax-import-attributes': 7.23.3_@babel+core@7.23.7 - '@babel/plugin-syntax-import-meta': 7.10.4_@babel+core@7.23.7 - '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.23.7 - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.23.7 - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.23.7 - '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.23.7 - '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.23.7 - '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.23.7 - '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.23.7 - '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.23.7 - '@babel/plugin-syntax-top-level-await': 7.14.5_@babel+core@7.23.7 - '@babel/plugin-syntax-unicode-sets-regex': 7.18.6_@babel+core@7.23.7 - '@babel/plugin-transform-arrow-functions': 7.23.3_@babel+core@7.23.7 - '@babel/plugin-transform-async-generator-functions': 7.23.7_@babel+core@7.23.7 - '@babel/plugin-transform-async-to-generator': 7.23.3_@babel+core@7.23.7 - '@babel/plugin-transform-block-scoped-functions': 7.23.3_@babel+core@7.23.7 - '@babel/plugin-transform-block-scoping': 7.23.4_@babel+core@7.23.7 - '@babel/plugin-transform-class-properties': 7.23.3_@babel+core@7.23.7 - '@babel/plugin-transform-class-static-block': 7.23.4_@babel+core@7.23.7 - '@babel/plugin-transform-classes': 7.23.8_@babel+core@7.23.7 - '@babel/plugin-transform-computed-properties': 7.23.3_@babel+core@7.23.7 - '@babel/plugin-transform-destructuring': 7.23.3_@babel+core@7.23.7 - '@babel/plugin-transform-dotall-regex': 7.23.3_@babel+core@7.23.7 - '@babel/plugin-transform-duplicate-keys': 7.23.3_@babel+core@7.23.7 - '@babel/plugin-transform-dynamic-import': 7.23.4_@babel+core@7.23.7 - '@babel/plugin-transform-exponentiation-operator': 7.23.3_@babel+core@7.23.7 - '@babel/plugin-transform-export-namespace-from': 7.23.4_@babel+core@7.23.7 - '@babel/plugin-transform-for-of': 7.23.6_@babel+core@7.23.7 - '@babel/plugin-transform-function-name': 7.23.3_@babel+core@7.23.7 - '@babel/plugin-transform-json-strings': 7.23.4_@babel+core@7.23.7 - '@babel/plugin-transform-literals': 7.23.3_@babel+core@7.23.7 - '@babel/plugin-transform-logical-assignment-operators': 7.23.4_@babel+core@7.23.7 - '@babel/plugin-transform-member-expression-literals': 7.23.3_@babel+core@7.23.7 - '@babel/plugin-transform-modules-amd': 7.23.3_@babel+core@7.23.7 - '@babel/plugin-transform-modules-commonjs': 7.23.3_@babel+core@7.23.7 - '@babel/plugin-transform-modules-systemjs': 7.23.3_@babel+core@7.23.7 - '@babel/plugin-transform-modules-umd': 7.23.3_@babel+core@7.23.7 - '@babel/plugin-transform-named-capturing-groups-regex': 7.22.5_@babel+core@7.23.7 - '@babel/plugin-transform-new-target': 7.23.3_@babel+core@7.23.7 - '@babel/plugin-transform-nullish-coalescing-operator': 7.23.4_@babel+core@7.23.7 - '@babel/plugin-transform-numeric-separator': 7.23.4_@babel+core@7.23.7 - '@babel/plugin-transform-object-rest-spread': 7.23.4_@babel+core@7.23.7 - '@babel/plugin-transform-object-super': 7.23.3_@babel+core@7.23.7 - '@babel/plugin-transform-optional-catch-binding': 7.23.4_@babel+core@7.23.7 - '@babel/plugin-transform-optional-chaining': 7.23.4_@babel+core@7.23.7 - '@babel/plugin-transform-parameters': 7.23.3_@babel+core@7.23.7 - '@babel/plugin-transform-private-methods': 7.23.3_@babel+core@7.23.7 - '@babel/plugin-transform-private-property-in-object': 7.23.4_@babel+core@7.23.7 - '@babel/plugin-transform-property-literals': 7.23.3_@babel+core@7.23.7 - '@babel/plugin-transform-regenerator': 7.23.3_@babel+core@7.23.7 - '@babel/plugin-transform-reserved-words': 7.23.3_@babel+core@7.23.7 - '@babel/plugin-transform-shorthand-properties': 7.23.3_@babel+core@7.23.7 - '@babel/plugin-transform-spread': 7.23.3_@babel+core@7.23.7 - '@babel/plugin-transform-sticky-regex': 7.23.3_@babel+core@7.23.7 - '@babel/plugin-transform-template-literals': 7.23.3_@babel+core@7.23.7 - '@babel/plugin-transform-typeof-symbol': 7.23.3_@babel+core@7.23.7 - '@babel/plugin-transform-unicode-escapes': 7.23.3_@babel+core@7.23.7 - '@babel/plugin-transform-unicode-property-regex': 7.23.3_@babel+core@7.23.7 - '@babel/plugin-transform-unicode-regex': 7.23.3_@babel+core@7.23.7 - '@babel/plugin-transform-unicode-sets-regex': 7.23.3_@babel+core@7.23.7 - '@babel/preset-modules': 0.1.6-no-external-plugins_@babel+core@7.23.7 - babel-plugin-polyfill-corejs2: 0.4.8_@babel+core@7.23.7 - babel-plugin-polyfill-corejs3: 0.8.7_@babel+core@7.23.7 - babel-plugin-polyfill-regenerator: 0.5.5_@babel+core@7.23.7 + '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.23.3_@babel+core@7.23.9 + '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.23.3_@babel+core@7.23.9 + '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly': 7.23.7_@babel+core@7.23.9 + '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2_@babel+core@7.23.9 + '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.23.9 + '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.23.9 + '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.23.9 + '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.23.9 + '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.23.9 + '@babel/plugin-syntax-import-assertions': 7.23.3_@babel+core@7.23.9 + '@babel/plugin-syntax-import-attributes': 7.23.3_@babel+core@7.23.9 + '@babel/plugin-syntax-import-meta': 7.10.4_@babel+core@7.23.9 + '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.23.9 + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.23.9 + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.23.9 + '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.23.9 + '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.23.9 + '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.23.9 + '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.23.9 + '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.23.9 + '@babel/plugin-syntax-top-level-await': 7.14.5_@babel+core@7.23.9 + '@babel/plugin-syntax-unicode-sets-regex': 7.18.6_@babel+core@7.23.9 + '@babel/plugin-transform-arrow-functions': 7.23.3_@babel+core@7.23.9 + '@babel/plugin-transform-async-generator-functions': 7.23.9_@babel+core@7.23.9 + '@babel/plugin-transform-async-to-generator': 7.23.3_@babel+core@7.23.9 + '@babel/plugin-transform-block-scoped-functions': 7.23.3_@babel+core@7.23.9 + '@babel/plugin-transform-block-scoping': 7.23.4_@babel+core@7.23.9 + '@babel/plugin-transform-class-properties': 7.23.3_@babel+core@7.23.9 + '@babel/plugin-transform-class-static-block': 7.23.4_@babel+core@7.23.9 + '@babel/plugin-transform-classes': 7.23.8_@babel+core@7.23.9 + '@babel/plugin-transform-computed-properties': 7.23.3_@babel+core@7.23.9 + '@babel/plugin-transform-destructuring': 7.23.3_@babel+core@7.23.9 + '@babel/plugin-transform-dotall-regex': 7.23.3_@babel+core@7.23.9 + '@babel/plugin-transform-duplicate-keys': 7.23.3_@babel+core@7.23.9 + '@babel/plugin-transform-dynamic-import': 7.23.4_@babel+core@7.23.9 + '@babel/plugin-transform-exponentiation-operator': 7.23.3_@babel+core@7.23.9 + '@babel/plugin-transform-export-namespace-from': 7.23.4_@babel+core@7.23.9 + '@babel/plugin-transform-for-of': 7.23.6_@babel+core@7.23.9 + '@babel/plugin-transform-function-name': 7.23.3_@babel+core@7.23.9 + '@babel/plugin-transform-json-strings': 7.23.4_@babel+core@7.23.9 + '@babel/plugin-transform-literals': 7.23.3_@babel+core@7.23.9 + '@babel/plugin-transform-logical-assignment-operators': 7.23.4_@babel+core@7.23.9 + '@babel/plugin-transform-member-expression-literals': 7.23.3_@babel+core@7.23.9 + '@babel/plugin-transform-modules-amd': 7.23.3_@babel+core@7.23.9 + '@babel/plugin-transform-modules-commonjs': 7.23.3_@babel+core@7.23.9 + '@babel/plugin-transform-modules-systemjs': 7.23.9_@babel+core@7.23.9 + '@babel/plugin-transform-modules-umd': 7.23.3_@babel+core@7.23.9 + '@babel/plugin-transform-named-capturing-groups-regex': 7.22.5_@babel+core@7.23.9 + '@babel/plugin-transform-new-target': 7.23.3_@babel+core@7.23.9 + '@babel/plugin-transform-nullish-coalescing-operator': 7.23.4_@babel+core@7.23.9 + '@babel/plugin-transform-numeric-separator': 7.23.4_@babel+core@7.23.9 + '@babel/plugin-transform-object-rest-spread': 7.23.4_@babel+core@7.23.9 + '@babel/plugin-transform-object-super': 7.23.3_@babel+core@7.23.9 + '@babel/plugin-transform-optional-catch-binding': 7.23.4_@babel+core@7.23.9 + '@babel/plugin-transform-optional-chaining': 7.23.4_@babel+core@7.23.9 + '@babel/plugin-transform-parameters': 7.23.3_@babel+core@7.23.9 + '@babel/plugin-transform-private-methods': 7.23.3_@babel+core@7.23.9 + '@babel/plugin-transform-private-property-in-object': 7.23.4_@babel+core@7.23.9 + '@babel/plugin-transform-property-literals': 7.23.3_@babel+core@7.23.9 + '@babel/plugin-transform-regenerator': 7.23.3_@babel+core@7.23.9 + '@babel/plugin-transform-reserved-words': 7.23.3_@babel+core@7.23.9 + '@babel/plugin-transform-shorthand-properties': 7.23.3_@babel+core@7.23.9 + '@babel/plugin-transform-spread': 7.23.3_@babel+core@7.23.9 + '@babel/plugin-transform-sticky-regex': 7.23.3_@babel+core@7.23.9 + '@babel/plugin-transform-template-literals': 7.23.3_@babel+core@7.23.9 + '@babel/plugin-transform-typeof-symbol': 7.23.3_@babel+core@7.23.9 + '@babel/plugin-transform-unicode-escapes': 7.23.3_@babel+core@7.23.9 + '@babel/plugin-transform-unicode-property-regex': 7.23.3_@babel+core@7.23.9 + '@babel/plugin-transform-unicode-regex': 7.23.3_@babel+core@7.23.9 + '@babel/plugin-transform-unicode-sets-regex': 7.23.3_@babel+core@7.23.9 + '@babel/preset-modules': 0.1.6-no-external-plugins_@babel+core@7.23.9 + babel-plugin-polyfill-corejs2: 0.4.8_@babel+core@7.23.9 + babel-plugin-polyfill-corejs3: 0.9.0_@babel+core@7.23.9 + babel-plugin-polyfill-regenerator: 0.5.5_@babel+core@7.23.9 core-js-compat: 3.35.1 semver: 6.3.1 transitivePeerDependencies: - supports-color dev: true - /@babel/preset-flow/7.23.3_@babel+core@7.18.9: + /@babel/preset-flow/7.23.3_@babel+core@7.23.9: resolution: {integrity: sha512-7yn6hl8RIv+KNk6iIrGZ+D06VhVY35wLVf23Cz/mMu1zOr7u4MMP4j0nZ9tLf8+4ZFpnib8cFYgB/oYg9hfswA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.9 + '@babel/core': 7.23.9 '@babel/helper-plugin-utils': 7.22.5 '@babel/helper-validator-option': 7.23.5 - '@babel/plugin-transform-flow-strip-types': 7.23.3_@babel+core@7.18.9 + '@babel/plugin-transform-flow-strip-types': 7.23.3_@babel+core@7.23.9 dev: true - /@babel/preset-flow/7.23.3_@babel+core@7.23.7: - resolution: {integrity: sha512-7yn6hl8RIv+KNk6iIrGZ+D06VhVY35wLVf23Cz/mMu1zOr7u4MMP4j0nZ9tLf8+4ZFpnib8cFYgB/oYg9hfswA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.7 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-validator-option': 7.23.5 - '@babel/plugin-transform-flow-strip-types': 7.23.3_@babel+core@7.23.7 - dev: true - - /@babel/preset-modules/0.1.6-no-external-plugins_@babel+core@7.23.7: + /@babel/preset-modules/0.1.6-no-external-plugins_@babel+core@7.23.9: resolution: {integrity: sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA==} peerDependencies: '@babel/core': ^7.0.0-0 || ^8.0.0-0 <8.0.0 dependencies: - '@babel/core': 7.23.7 + '@babel/core': 7.23.9 '@babel/helper-plugin-utils': 7.22.5 '@babel/types': 7.23.6 esutils: 2.0.3 dev: true - /@babel/preset-react/7.18.6_@babel+core@7.18.9: - resolution: {integrity: sha512-zXr6atUmyYdiWRVLOZahakYmOBHtWc2WGCkP8PYTgZi0iJXDY2CN180TdrIW4OGOAdLc7TifzDIvtx6izaRIzg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.18.9 - '@babel/helper-plugin-utils': 7.18.9 - '@babel/helper-validator-option': 7.18.6 - '@babel/plugin-transform-react-display-name': 7.18.6_@babel+core@7.18.9 - '@babel/plugin-transform-react-jsx': 7.18.6_@babel+core@7.18.9 - '@babel/plugin-transform-react-jsx-development': 7.18.6_@babel+core@7.18.9 - '@babel/plugin-transform-react-pure-annotations': 7.18.6_@babel+core@7.18.9 - dev: true - - /@babel/preset-react/7.23.3_@babel+core@7.18.9: + /@babel/preset-react/7.23.3_@babel+core@7.23.9: resolution: {integrity: sha512-tbkHOS9axH6Ysf2OUEqoSZ6T3Fa2SrNH6WTWSPBboxKzdxNc9qOICeLXkNG0ZEwbQ1HY8liwOce4aN/Ceyuq6w==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.9 + '@babel/core': 7.23.9 '@babel/helper-plugin-utils': 7.22.5 '@babel/helper-validator-option': 7.23.5 - '@babel/plugin-transform-react-display-name': 7.23.3_@babel+core@7.18.9 - '@babel/plugin-transform-react-jsx': 7.23.4_@babel+core@7.18.9 - '@babel/plugin-transform-react-jsx-development': 7.22.5_@babel+core@7.18.9 - '@babel/plugin-transform-react-pure-annotations': 7.23.3_@babel+core@7.18.9 + '@babel/plugin-transform-react-display-name': 7.23.3_@babel+core@7.23.9 + '@babel/plugin-transform-react-jsx': 7.23.4_@babel+core@7.23.9 + '@babel/plugin-transform-react-jsx-development': 7.22.5_@babel+core@7.23.9 + '@babel/plugin-transform-react-pure-annotations': 7.23.3_@babel+core@7.23.9 dev: true - /@babel/preset-typescript/7.18.6_@babel+core@7.18.9: - resolution: {integrity: sha512-s9ik86kXBAnD760aybBucdpnLsAt0jK1xqJn2juOn9lkOvSHV60os5hxoVJsPzMQxvnUJFAlkont2DvvaYEBtQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.18.9 - '@babel/helper-plugin-utils': 7.18.6 - '@babel/helper-validator-option': 7.18.6 - '@babel/plugin-transform-typescript': 7.18.6_@babel+core@7.18.9 - transitivePeerDependencies: - - supports-color - dev: true - - /@babel/preset-typescript/7.23.3_@babel+core@7.23.7: + /@babel/preset-typescript/7.23.3_@babel+core@7.23.9: resolution: {integrity: sha512-17oIGVlqz6CchO9RFYn5U6ZpWRZIngayYCtrPRSgANSwC2V1Jb+iP74nVxzzXJte8b8BYxrL1yY96xfhTBrNNQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.7 + '@babel/core': 7.23.9 '@babel/helper-plugin-utils': 7.22.5 '@babel/helper-validator-option': 7.23.5 - '@babel/plugin-syntax-jsx': 7.23.3_@babel+core@7.23.7 - '@babel/plugin-transform-modules-commonjs': 7.23.3_@babel+core@7.23.7 - '@babel/plugin-transform-typescript': 7.23.6_@babel+core@7.23.7 + '@babel/plugin-syntax-jsx': 7.23.3_@babel+core@7.23.9 + '@babel/plugin-transform-modules-commonjs': 7.23.3_@babel+core@7.23.9 + '@babel/plugin-transform-typescript': 7.23.6_@babel+core@7.23.9 dev: true - /@babel/register/7.18.6_@babel+core@7.18.9: + /@babel/register/7.18.6_@babel+core@7.23.9: resolution: {integrity: sha512-tkYtONzaO8rQubZzpBnvZPFcHgh8D9F55IjOsYton4X2IBoyRn2ZSWQqySTZnUn2guZbxbQiAB27hJEbvXamhQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.9 + '@babel/core': 7.23.9 clone-deep: 4.0.1 find-cache-dir: 2.1.0 make-dir: 2.1.0 @@ -3442,13 +3138,13 @@ packages: source-map-support: 0.5.21 dev: true - /@babel/register/7.23.7_@babel+core@7.23.7: + /@babel/register/7.23.7_@babel+core@7.23.9: resolution: {integrity: sha512-EjJeB6+kvpk+Y5DAkEAmbOBEFkh9OASx0huoEkqYTFxAZHzOAX2Oh5uwAUuL2rUddqfM0SA+KPXV2TbzoZ2kvQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.7 + '@babel/core': 7.23.9 clone-deep: 4.0.1 find-cache-dir: 2.1.0 make-dir: 2.1.0 @@ -3478,9 +3174,9 @@ packages: resolution: {integrity: sha512-JoDWzPe+wgBsTTgdnIma3iHNFC7YVJoPssVBDjiHfNlyt4YcunDtcDOUmfVDfCK5MfdsaIoX9PkijPhjH3nYUw==} engines: {node: '>=6.9.0'} dependencies: - '@babel/code-frame': 7.18.6 - '@babel/parser': 7.18.6 - '@babel/types': 7.18.7 + '@babel/code-frame': 7.23.5 + '@babel/parser': 7.23.6 + '@babel/types': 7.23.6 dev: true /@babel/template/7.22.15: @@ -3492,22 +3188,13 @@ packages: '@babel/types': 7.23.6 dev: true - /@babel/traverse/7.18.6: - resolution: {integrity: sha512-zS/OKyqmD7lslOtFqbscH6gMLFYOfG1YPqCKfAW5KrTeolKqvB8UelR49Fpr6y93kYkW2Ik00mT1LOGiAGvizw==} + /@babel/template/7.24.0: + resolution: {integrity: sha512-Bkf2q8lMB0AFpX0NFEqSbx1OkTHf0f+0j82mkw+ZpzBnkk7e9Ql0891vlfgi+kHwOk8tQjiQHpqh4LaSa0fKEA==} engines: {node: '>=6.9.0'} dependencies: '@babel/code-frame': 7.23.5 - '@babel/generator': 7.18.7 - '@babel/helper-environment-visitor': 7.18.6 - '@babel/helper-function-name': 7.18.6 - '@babel/helper-hoist-variables': 7.18.6 - '@babel/helper-split-export-declaration': 7.18.6 - '@babel/parser': 7.23.6 - '@babel/types': 7.23.6 - debug: 4.3.4 - globals: 11.12.0 - transitivePeerDependencies: - - supports-color + '@babel/parser': 7.24.0 + '@babel/types': 7.24.0 dev: true /@babel/traverse/7.18.6_supports-color@5.5.0: @@ -3515,7 +3202,7 @@ packages: engines: {node: '>=6.9.0'} dependencies: '@babel/code-frame': 7.23.5 - '@babel/generator': 7.18.7 + '@babel/generator': 7.23.6 '@babel/helper-environment-visitor': 7.18.6 '@babel/helper-function-name': 7.18.6 '@babel/helper-hoist-variables': 7.18.6 @@ -3532,14 +3219,14 @@ packages: resolution: {integrity: sha512-LcPAnujXGwBgv3/WHv01pHtb2tihcyW1XuL9wd7jqh1Z8AQkTd+QVjMrMijrln0T7ED3UXLIy36P9Ao7W75rYg==} engines: {node: '>=6.9.0'} dependencies: - '@babel/code-frame': 7.18.6 - '@babel/generator': 7.18.9 + '@babel/code-frame': 7.23.5 + '@babel/generator': 7.23.6 '@babel/helper-environment-visitor': 7.18.9 '@babel/helper-function-name': 7.18.9 '@babel/helper-hoist-variables': 7.18.6 '@babel/helper-split-export-declaration': 7.18.6 - '@babel/parser': 7.18.9 - '@babel/types': 7.18.9 + '@babel/parser': 7.23.6 + '@babel/types': 7.23.6 debug: 4.3.4 globals: 11.12.0 transitivePeerDependencies: @@ -3564,12 +3251,22 @@ packages: - supports-color dev: true - /@babel/types/7.18.7: - resolution: {integrity: sha512-QG3yxTcTIBoAcQmkCs+wAPYZhu7Dk9rXKacINfNbdJDNERTbLQbHGyVG8q/YGMPeCJRIhSY0+fTc5+xuh6WPSQ==} + /@babel/traverse/7.24.0: + resolution: {integrity: sha512-HfuJlI8qq3dEDmNU5ChzzpZRWq+oxCZQyMzIMEqLho+AQnhMnKQUzH6ydo3RBl/YjPCuk68Y6s0Gx0AeyULiWw==} engines: {node: '>=6.9.0'} dependencies: - '@babel/helper-validator-identifier': 7.22.20 - to-fast-properties: 2.0.0 + '@babel/code-frame': 7.23.5 + '@babel/generator': 7.23.6 + '@babel/helper-environment-visitor': 7.22.20 + '@babel/helper-function-name': 7.23.0 + '@babel/helper-hoist-variables': 7.22.5 + '@babel/helper-split-export-declaration': 7.22.6 + '@babel/parser': 7.24.0 + '@babel/types': 7.24.0 + debug: 4.3.4 + globals: 11.12.0 + transitivePeerDependencies: + - supports-color dev: true /@babel/types/7.18.9: @@ -3589,6 +3286,15 @@ packages: to-fast-properties: 2.0.0 dev: true + /@babel/types/7.24.0: + resolution: {integrity: sha512-+j7a5c253RfKh8iABBhywc8NSfP5LURe7Uh4qpsh6jc+aLJguvmIUBdjSdEMQv2bENrCR5MfRdjGo7vzS/ob7w==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/helper-string-parser': 7.23.4 + '@babel/helper-validator-identifier': 7.22.20 + to-fast-properties: 2.0.0 + dev: true + /@base2/pretty-print-object/1.0.1: resolution: {integrity: sha512-4iri8i1AqYHJE2DstZYkyEprg6Pq6sKx3xn5FpySk9sNhH7qN2LLlHJCfDTZRILNwQNPD7mATWM0TBui7uC1pA==} dev: true @@ -4084,7 +3790,7 @@ packages: eslint: ^6.0.0 || ^7.0.0 || >=8.0.0 dependencies: eslint: 8.21.0 - eslint-visitor-keys: 3.3.0 + eslint-visitor-keys: 3.4.3 dev: true /@eslint-community/regexpp/4.10.0: @@ -4395,7 +4101,7 @@ packages: resolution: {integrity: sha512-ok/BTPFzFKVMwO5eOHRrvnBVHdRy9IrsrW1GpMaQ9MCnilNLXQKmAX8s1YXDFaai9xJpac2ySzV0YeRRECr2Vw==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - '@babel/core': 7.18.9 + '@babel/core': 7.23.9 '@jest/types': 29.6.3 '@jridgewell/trace-mapping': 0.3.22 babel-plugin-istanbul: 6.1.1 @@ -4465,11 +4171,6 @@ packages: '@jridgewell/trace-mapping': 0.3.22 dev: true - /@jridgewell/resolve-uri/3.0.8: - resolution: {integrity: sha512-YK5G9LaddzGbcucK4c8h5tWFmMPBvRZ/uyWmN1/SbBdIvqGUdWGkJ5BAaccgs6XbzVLsqbPJrBSFwKv3kT9i7w==} - engines: {node: '>=6.0.0'} - dev: true - /@jridgewell/resolve-uri/3.1.1: resolution: {integrity: sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==} engines: {node: '>=6.0.0'} @@ -4487,21 +4188,10 @@ packages: '@jridgewell/trace-mapping': 0.3.22 dev: true - /@jridgewell/sourcemap-codec/1.4.14: - resolution: {integrity: sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==} - dev: true - /@jridgewell/sourcemap-codec/1.4.15: resolution: {integrity: sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==} dev: true - /@jridgewell/trace-mapping/0.3.14: - resolution: {integrity: sha512-bJWEfQ9lPTvm3SneWwRFVLzrh6nhjwqw7TUFFBEMzwvg7t7PCDenf2lDwqo4NQXzdpgBXyFgDWnQA+2vkruksQ==} - dependencies: - '@jridgewell/resolve-uri': 3.0.8 - '@jridgewell/sourcemap-codec': 1.4.14 - dev: true - /@jridgewell/trace-mapping/0.3.22: resolution: {integrity: sha512-Wf963MzWtA2sjrNt+g18IAln9lKnlRp+K2eH4jjIoF1wYeq3aMREpG09xhlhdzS0EjwU7qmUJYangWa+151vZw==} dependencies: @@ -4660,6 +4350,12 @@ packages: dev: true optional: true + /@nicolo-ribaudo/eslint-scope-5-internals/5.1.1-v1: + resolution: {integrity: sha512-54/JRvkLIzzDWshCWfuhadfrfZVPiElY8Fcgmg1HroEly/EDSszzhBAsarCux+D/kOslTRquNzuyGSmUSTTHGg==} + dependencies: + eslint-scope: 5.1.1 + dev: true + /@nodelib/fs.scandir/2.1.5: resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==} engines: {node: '>= 8'} @@ -5951,7 +5647,7 @@ packages: typescript: optional: true dependencies: - '@babel/core': 7.23.7 + '@babel/core': 7.23.9 '@storybook/channels': 7.6.10 '@storybook/client-logger': 7.6.10 '@storybook/core-common': 7.6.10 @@ -5963,7 +5659,7 @@ packages: '@swc/core': 1.3.106 '@types/node': 18.6.1 '@types/semver': 7.5.6 - babel-loader: 9.1.3_2uqvroqcqg6c6k6nzcbqoveqpe + babel-loader: 9.1.3_m3ubustvnarb332p336i4vegoa browser-assert: 1.2.1 case-sensitive-paths-webpack-plugin: 2.4.0 cjs-module-lexer: 1.2.3 @@ -6015,8 +5711,8 @@ packages: resolution: {integrity: sha512-pK1MEseMm73OMO2OVoSz79QWX8ymxgIGM8IeZTCo9gImiVRChMNDFYcv8yPWkjuyesY8c15CoO48aR7pdA1OjQ==} hasBin: true dependencies: - '@babel/core': 7.23.7 - '@babel/preset-env': 7.23.8_@babel+core@7.23.7 + '@babel/core': 7.23.9 + '@babel/preset-env': 7.23.9_@babel+core@7.23.9 '@babel/types': 7.23.6 '@ndelangen/get-tarball': 3.0.9 '@storybook/codemod': 7.6.10 @@ -6043,7 +5739,7 @@ packages: get-port: 5.1.1 giget: 1.2.1 globby: 11.1.0 - jscodeshift: 0.15.1_@babel+preset-env@7.23.8 + jscodeshift: 0.15.1_@babel+preset-env@7.23.9 leven: 3.1.0 ora: 5.4.1 prettier: 2.8.8 @@ -6071,8 +5767,8 @@ packages: /@storybook/codemod/7.6.10: resolution: {integrity: sha512-pzFR0nocBb94vN9QCJLC3C3dP734ZigqyPmd0ZCDj9Xce2ytfHK3v1lKB6TZWzKAZT8zztauECYxrbo4LVuagw==} dependencies: - '@babel/core': 7.23.7 - '@babel/preset-env': 7.23.8_@babel+core@7.23.7 + '@babel/core': 7.23.9 + '@babel/preset-env': 7.23.9_@babel+core@7.23.9 '@babel/types': 7.23.6 '@storybook/csf': 0.1.2 '@storybook/csf-tools': 7.6.10 @@ -6081,7 +5777,7 @@ packages: '@types/cross-spawn': 6.0.6 cross-spawn: 7.0.3 globby: 11.1.0 - jscodeshift: 0.15.1_@babel+preset-env@7.23.8 + jscodeshift: 0.15.1_@babel+preset-env@7.23.9 lodash: 4.17.21 prettier: 2.8.8 recast: 0.23.4 @@ -6318,7 +6014,7 @@ packages: resolution: {integrity: sha512-SMdXtednPCy3+SRJ7oN1OPN1oVFhj3ih+ChOEX8/kZ5J3nfmV3wLPtsZvFGUCf0KWQEP1xL+1Urv48mzMKcV/w==} dev: true - /@storybook/preset-react-webpack/7.6.10_656ojrr56y7odmdb43up5adzqi: + /@storybook/preset-react-webpack/7.6.10_l6ptdxgqtrttdxofrdxqmkmtsa: resolution: {integrity: sha512-fUcr4dmXJdPIQdjkhA4bE8QF8Pavr4BSLxovtTRupbWxtRjZxJrH5hf+0HZycq1cp9umO/11Lsmw9Nx5Xg3Eww==} engines: {node: '>=16.0.0'} peerDependencies: @@ -6332,9 +6028,9 @@ packages: typescript: optional: true dependencies: - '@babel/core': 7.18.9 - '@babel/preset-flow': 7.23.3_@babel+core@7.18.9 - '@babel/preset-react': 7.23.3_@babel+core@7.18.9 + '@babel/core': 7.23.9 + '@babel/preset-flow': 7.23.3_@babel+core@7.23.9 + '@babel/preset-react': 7.23.3_@babel+core@7.23.9 '@pmmmwh/react-refresh-webpack-plugin': 0.5.11_4qofgipiuz5gtllxmvke2xa2ki '@storybook/core-webpack': 7.6.10 '@storybook/docs-tools': 7.6.10 @@ -6420,7 +6116,7 @@ packages: react-dom: 18.2.0_react@18.2.0 dev: true - /@storybook/react-webpack5/7.6.10_656ojrr56y7odmdb43up5adzqi: + /@storybook/react-webpack5/7.6.10_l6ptdxgqtrttdxofrdxqmkmtsa: resolution: {integrity: sha512-LWwasiSLEg4wqsMjoRHcOn6BXv2ZyZfTfQV7gCvaX732xf0teblh+/GltAz8x+BtFXruXWmZ8bJ5cd9U4I6hUg==} engines: {node: '>=16.0.0'} peerDependencies: @@ -6434,9 +6130,9 @@ packages: typescript: optional: true dependencies: - '@babel/core': 7.18.9 + '@babel/core': 7.23.9 '@storybook/builder-webpack5': 7.6.10_k5f4phv42rrjvmye2sr34pl36q - '@storybook/preset-react-webpack': 7.6.10_656ojrr56y7odmdb43up5adzqi + '@storybook/preset-react-webpack': 7.6.10_l6ptdxgqtrttdxofrdxqmkmtsa '@storybook/react': 7.6.10_xrxvbtylmve4l2tr3vmmqgfp7q '@types/node': 18.6.1 react: 18.2.0 @@ -6950,7 +6646,7 @@ packages: resolution: {integrity: sha512-YP1S7YJRMPs+7KZKDb9G63n8YejIwW9BALq7a5j2+H4yl6iOv9CB29edho+cuFRrvmJbbaH2yiVChKLJVysDGw==} dependencies: '@types/estree': 0.0.51 - '@types/json-schema': 7.0.11 + '@types/json-schema': 7.0.15 dev: true /@types/estree-jsx/1.0.5: @@ -7583,7 +7279,7 @@ packages: engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dependencies: '@typescript-eslint/types': 5.32.0 - eslint-visitor-keys: 3.3.0 + eslint-visitor-keys: 3.4.3 dev: true /@typescript-eslint/visitor-keys/5.62.0: @@ -7591,7 +7287,7 @@ packages: engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dependencies: '@typescript-eslint/types': 5.62.0 - eslint-visitor-keys: 3.3.0 + eslint-visitor-keys: 3.4.3 dev: true /@typescript-eslint/visitor-keys/6.21.0: @@ -8357,12 +8053,12 @@ packages: js-tokens: 3.0.2 dev: true - /babel-core/7.0.0-bridge.0_@babel+core@7.23.7: + /babel-core/7.0.0-bridge.0_@babel+core@7.23.9: resolution: {integrity: sha512-poPX9mZH/5CSanm50Q+1toVci6pv5KSRv/5TWCwtzQS5XEwn40BcCrgIeMFWP9CKKIniKXNxoIOnOq4VVlGXhg==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.7 + '@babel/core': 7.23.9 dev: true /babel-helper-builder-binary-assignment-operator-visitor/6.24.1: @@ -8461,50 +8157,35 @@ packages: - supports-color dev: true - /babel-jest/29.7.0_@babel+core@7.18.9: + /babel-jest/29.7.0_@babel+core@7.23.9: resolution: {integrity: sha512-BrvGY3xZSwEcCzKvKsCi2GgHqDqsYkOP4/by5xCgIwGXQxIEh+8ew3gmrE1y7XRR6LHZIj6yLYnUi/mm2KXKBg==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} peerDependencies: '@babel/core': ^7.8.0 dependencies: - '@babel/core': 7.18.9 + '@babel/core': 7.23.9 '@jest/transform': 29.7.0 '@types/babel__core': 7.20.5 babel-plugin-istanbul: 6.1.1 - babel-preset-jest: 29.6.3_@babel+core@7.18.9 + babel-preset-jest: 29.6.3_@babel+core@7.23.9 chalk: 4.1.2 - graceful-fs: 4.2.10 + graceful-fs: 4.2.11 slash: 3.0.0 transitivePeerDependencies: - supports-color dev: true - /babel-loader/8.2.5_y3lv6tn6yokher4u7xj4j22px4: - resolution: {integrity: sha512-OSiFfH89LrEMiWd4pLNqGz4CwJDtbs2ZVc+iGu2HrkRfPxId9F2anQj38IxWpmRfsUY0aBZYi1EFcd3mhtRMLQ==} - engines: {node: '>= 8.9'} - peerDependencies: - '@babel/core': ^7.0.0 - webpack: '>=2' - dependencies: - '@babel/core': 7.18.9 - find-cache-dir: 3.3.2 - loader-utils: 2.0.2 - make-dir: 3.1.0 - schema-utils: 2.7.1 - webpack: 5.74.0_webpack-cli@4.10.0 - dev: true - - /babel-loader/9.1.3_2uqvroqcqg6c6k6nzcbqoveqpe: + /babel-loader/9.1.3_m3ubustvnarb332p336i4vegoa: resolution: {integrity: sha512-xG3ST4DglodGf8qSwv0MdeWLhrDsw/32QMdTO5T1ZIp9gQur0HkCyFs7Awskr10JKXFXwpAhiCuYX5oGXnRGbw==} engines: {node: '>= 14.15.0'} peerDependencies: '@babel/core': ^7.12.0 webpack: '>=5' dependencies: - '@babel/core': 7.23.7 + '@babel/core': 7.23.9 find-cache-dir: 4.0.0 schema-utils: 4.0.0 - webpack: 5.74.0_jmvevvrkvprlsib7tsbgxwazju + webpack: 5.74.0_webpack-cli@4.10.0 dev: true /babel-messages/6.23.0: @@ -8523,12 +8204,6 @@ packages: babel-runtime: 6.26.0 dev: true - /babel-plugin-dynamic-import-node/2.3.3: - resolution: {integrity: sha512-jZVI+s9Zg3IqA/kdi0i6UDCybUI3aSBLnglhYbSSjKlV7yF1F/5LWv8MakQmvYpnbJDS6fcBL2KzHSxNCMtWSQ==} - dependencies: - object.assign: 4.1.2 - dev: true - /babel-plugin-istanbul/6.1.1: resolution: {integrity: sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==} engines: {node: '>=8'} @@ -8555,22 +8230,22 @@ packages: /babel-plugin-lodash/3.3.4: resolution: {integrity: sha512-yDZLjK7TCkWl1gpBeBGmuaDIFhZKmkoL+Cu2MUUjv5VxUZx/z7tBGBCBcQs5RI1Bkz5LLmNdjx7paOyQtMovyg==} dependencies: - '@babel/helper-module-imports': 7.18.6 - '@babel/types': 7.18.7 - glob: 7.1.2 + '@babel/helper-module-imports': 7.22.15 + '@babel/types': 7.23.6 + glob: 7.2.3 lodash: 4.17.21 require-package-name: 2.0.1 dev: true - /babel-plugin-module-resolver/4.1.0: - resolution: {integrity: sha512-MlX10UDheRr3lb3P0WcaIdtCSRlxdQsB1sBqL7W0raF070bGl1HQQq5K3T2vf2XAYie+ww+5AKC/WrkjRO2knA==} - engines: {node: '>= 8.0.0'} + /babel-plugin-module-resolver/5.0.0: + resolution: {integrity: sha512-g0u+/ChLSJ5+PzYwLwP8Rp8Rcfowz58TJNCe+L/ui4rpzE/mg//JVX0EWBUYoxaextqnwuGHzfGp2hh0PPV25Q==} + engines: {node: '>= 16'} dependencies: - find-babel-config: 1.2.0 - glob: 7.2.3 + find-babel-config: 2.0.0 + glob: 8.0.3 pkg-up: 3.1.0 - reselect: 4.1.6 - resolve: 1.22.1 + reselect: 4.1.8 + resolve: 1.22.8 dev: true /babel-plugin-polyfill-corejs2/0.3.2_@babel+core@7.18.9: @@ -8578,7 +8253,7 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/compat-data': 7.18.8 + '@babel/compat-data': 7.23.5 '@babel/core': 7.18.9 '@babel/helper-define-polyfill-provider': 0.3.2_@babel+core@7.18.9 semver: 6.3.1 @@ -8586,14 +8261,27 @@ packages: - supports-color dev: true - /babel-plugin-polyfill-corejs2/0.4.8_@babel+core@7.23.7: + /babel-plugin-polyfill-corejs2/0.3.2_@babel+core@7.23.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.23.5 + '@babel/core': 7.23.9 + '@babel/helper-define-polyfill-provider': 0.3.2_@babel+core@7.23.9 + semver: 6.3.1 + transitivePeerDependencies: + - supports-color + dev: true + + /babel-plugin-polyfill-corejs2/0.4.8_@babel+core@7.23.9: resolution: {integrity: sha512-OtIuQfafSzpo/LhnJaykc0R/MMnuLSSVjVYy9mHArIZ9qTCSZ6TpWCuEKZYVoN//t8HqBNScHrOtCrIK5IaGLg==} peerDependencies: '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 dependencies: '@babel/compat-data': 7.23.5 - '@babel/core': 7.23.7 - '@babel/helper-define-polyfill-provider': 0.5.0_@babel+core@7.23.7 + '@babel/core': 7.23.9 + '@babel/helper-define-polyfill-provider': 0.5.0_@babel+core@7.23.9 semver: 6.3.1 transitivePeerDependencies: - supports-color @@ -8606,18 +8294,30 @@ packages: dependencies: '@babel/core': 7.18.9 '@babel/helper-define-polyfill-provider': 0.3.2_@babel+core@7.18.9 - core-js-compat: 3.24.0 + core-js-compat: 3.35.1 + transitivePeerDependencies: + - supports-color + dev: true + + /babel-plugin-polyfill-corejs3/0.5.3_@babel+core@7.23.9: + resolution: {integrity: sha512-zKsXDh0XjnrUEW0mxIHLfjBfnXSMr5Q/goMe/fxpQnLm07mcOZiIZHBNWCMx60HmdvjxfXcalac0tfFg0wqxyw==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.23.9 + '@babel/helper-define-polyfill-provider': 0.3.2_@babel+core@7.23.9 + core-js-compat: 3.35.1 transitivePeerDependencies: - supports-color dev: true - /babel-plugin-polyfill-corejs3/0.8.7_@babel+core@7.23.7: - resolution: {integrity: sha512-KyDvZYxAzkC0Aj2dAPyDzi2Ym15e5JKZSK+maI7NAwSqofvuFglbSsxE7wUOvTg9oFVnHMzVzBKcqEb4PJgtOA==} + /babel-plugin-polyfill-corejs3/0.9.0_@babel+core@7.23.9: + resolution: {integrity: sha512-7nZPG1uzK2Ymhy/NbaOWTg3uibM2BmGASS4vHS4szRZAIR8R6GwA/xAujpdrXU5iyklrimWnLWU+BLF9suPTqg==} peerDependencies: '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 dependencies: - '@babel/core': 7.23.7 - '@babel/helper-define-polyfill-provider': 0.4.4_@babel+core@7.23.7 + '@babel/core': 7.23.9 + '@babel/helper-define-polyfill-provider': 0.5.0_@babel+core@7.23.9 core-js-compat: 3.35.1 transitivePeerDependencies: - supports-color @@ -8629,18 +8329,29 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.18.9 - '@babel/helper-define-polyfill-provider': 0.3.1_@babel+core@7.18.9 + '@babel/helper-define-polyfill-provider': 0.3.2_@babel+core@7.18.9 + transitivePeerDependencies: + - supports-color + dev: true + + /babel-plugin-polyfill-regenerator/0.3.1_@babel+core@7.23.9: + resolution: {integrity: sha512-Y2B06tvgHYt1x0yz17jGkGeeMr5FeKUu+ASJ+N6nB5lQ8Dapfg42i0OVrf8PNGJ3zKL4A23snMi1IRwrqqND7A==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.23.9 + '@babel/helper-define-polyfill-provider': 0.3.2_@babel+core@7.23.9 transitivePeerDependencies: - supports-color dev: true - /babel-plugin-polyfill-regenerator/0.5.5_@babel+core@7.23.7: + /babel-plugin-polyfill-regenerator/0.5.5_@babel+core@7.23.9: resolution: {integrity: sha512-OJGYZlhLqBh2DDHeqAxWB1XIvr49CxiJ2gIt61/PU55CQK4Z58OzMqjDe1zwQdQk+rBYsRc+1rJmdajM3gimHg==} peerDependencies: '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 dependencies: - '@babel/core': 7.23.7 - '@babel/helper-define-polyfill-provider': 0.5.0_@babel+core@7.23.7 + '@babel/core': 7.23.9 + '@babel/helper-define-polyfill-provider': 0.5.0_@babel+core@7.23.9 transitivePeerDependencies: - supports-color dev: true @@ -8657,7 +8368,7 @@ packages: styled-components: '>= 2' dependencies: '@babel/helper-annotate-as-pure': 7.18.6 - '@babel/helper-module-imports': 7.18.6 + '@babel/helper-module-imports': 7.22.15 babel-plugin-syntax-jsx: 6.18.0 lodash: 4.17.21 picomatch: 2.3.1 @@ -8835,6 +8546,14 @@ packages: - supports-color dev: true + /babel-plugin-transform-flow-enums/0.0.2_@babel+core@7.23.9: + resolution: {integrity: sha512-g4aaCrDDOsWjbm0PUUeVnkcVd6AKJsVc/MbnPhEotEpkeJQP6b8nzewohQi7+QS8UyPehOhGWn0nOwjvWpmMvQ==} + dependencies: + '@babel/plugin-syntax-flow': 7.23.3_@babel+core@7.23.9 + transitivePeerDependencies: + - '@babel/core' + dev: true + /babel-plugin-transform-flow-strip-types/6.22.0: resolution: {integrity: sha512-TxIM0ZWNw9oYsoTthL3lvAK3+eTujzktoXJg4ubGvICGbVuXVYv5hHv0XXpz8fbqlJaGYY4q5SVzaSmsg3t4Fg==} dependencies: @@ -8889,24 +8608,24 @@ packages: babel-types: 6.26.0 dev: true - /babel-preset-current-node-syntax/1.0.1_@babel+core@7.18.9: + /babel-preset-current-node-syntax/1.0.1_@babel+core@7.23.9: resolution: {integrity: sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.18.9 - '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.18.9 - '@babel/plugin-syntax-bigint': 7.8.3_@babel+core@7.18.9 - '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.18.9 - '@babel/plugin-syntax-import-meta': 7.10.4_@babel+core@7.18.9 - '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.18.9 - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.18.9 - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.18.9 - '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.18.9 - '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.18.9 - '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.18.9 - '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.18.9 - '@babel/plugin-syntax-top-level-await': 7.14.5_@babel+core@7.18.9 + '@babel/core': 7.23.9 + '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.23.9 + '@babel/plugin-syntax-bigint': 7.8.3_@babel+core@7.23.9 + '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.23.9 + '@babel/plugin-syntax-import-meta': 7.10.4_@babel+core@7.23.9 + '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.23.9 + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.23.9 + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.23.9 + '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.23.9 + '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.23.9 + '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.23.9 + '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.23.9 + '@babel/plugin-syntax-top-level-await': 7.14.5_@babel+core@7.23.9 dev: true /babel-preset-fbjs/3.4.0_@babel+core@7.18.9: @@ -8921,40 +8640,73 @@ packages: '@babel/plugin-syntax-flow': 7.18.6_@babel+core@7.18.9 '@babel/plugin-syntax-jsx': 7.23.3_@babel+core@7.18.9 '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.18.9 - '@babel/plugin-transform-arrow-functions': 7.18.6_@babel+core@7.18.9 - '@babel/plugin-transform-block-scoped-functions': 7.18.6_@babel+core@7.18.9 - '@babel/plugin-transform-block-scoping': 7.18.6_@babel+core@7.18.9 - '@babel/plugin-transform-classes': 7.18.6_@babel+core@7.18.9 - '@babel/plugin-transform-computed-properties': 7.18.6_@babel+core@7.18.9 - '@babel/plugin-transform-destructuring': 7.18.6_@babel+core@7.18.9 + '@babel/plugin-transform-arrow-functions': 7.23.3_@babel+core@7.18.9 + '@babel/plugin-transform-block-scoped-functions': 7.23.3_@babel+core@7.18.9 + '@babel/plugin-transform-block-scoping': 7.23.4_@babel+core@7.18.9 + '@babel/plugin-transform-classes': 7.23.8_@babel+core@7.18.9 + '@babel/plugin-transform-computed-properties': 7.23.3_@babel+core@7.18.9 + '@babel/plugin-transform-destructuring': 7.23.3_@babel+core@7.18.9 '@babel/plugin-transform-flow-strip-types': 7.18.6_@babel+core@7.18.9 - '@babel/plugin-transform-for-of': 7.18.6_@babel+core@7.18.9 - '@babel/plugin-transform-function-name': 7.18.6_@babel+core@7.18.9 - '@babel/plugin-transform-literals': 7.18.6_@babel+core@7.18.9 - '@babel/plugin-transform-member-expression-literals': 7.18.6_@babel+core@7.18.9 - '@babel/plugin-transform-modules-commonjs': 7.18.6_@babel+core@7.18.9 - '@babel/plugin-transform-object-super': 7.18.6_@babel+core@7.18.9 - '@babel/plugin-transform-parameters': 7.18.6_@babel+core@7.18.9 - '@babel/plugin-transform-property-literals': 7.18.6_@babel+core@7.18.9 - '@babel/plugin-transform-react-display-name': 7.18.6_@babel+core@7.18.9 - '@babel/plugin-transform-react-jsx': 7.18.6_@babel+core@7.18.9 - '@babel/plugin-transform-shorthand-properties': 7.18.6_@babel+core@7.18.9 - '@babel/plugin-transform-spread': 7.18.6_@babel+core@7.18.9 - '@babel/plugin-transform-template-literals': 7.18.6_@babel+core@7.18.9 + '@babel/plugin-transform-for-of': 7.23.6_@babel+core@7.18.9 + '@babel/plugin-transform-function-name': 7.23.3_@babel+core@7.18.9 + '@babel/plugin-transform-literals': 7.23.3_@babel+core@7.18.9 + '@babel/plugin-transform-member-expression-literals': 7.23.3_@babel+core@7.18.9 + '@babel/plugin-transform-modules-commonjs': 7.23.3_@babel+core@7.18.9 + '@babel/plugin-transform-object-super': 7.23.3_@babel+core@7.18.9 + '@babel/plugin-transform-parameters': 7.23.3_@babel+core@7.18.9 + '@babel/plugin-transform-property-literals': 7.23.3_@babel+core@7.18.9 + '@babel/plugin-transform-react-display-name': 7.23.3_@babel+core@7.18.9 + '@babel/plugin-transform-react-jsx': 7.23.4_@babel+core@7.18.9 + '@babel/plugin-transform-shorthand-properties': 7.23.3_@babel+core@7.18.9 + '@babel/plugin-transform-spread': 7.23.3_@babel+core@7.18.9 + '@babel/plugin-transform-template-literals': 7.23.3_@babel+core@7.18.9 + babel-plugin-syntax-trailing-function-commas: 7.0.0-beta.0 + dev: true + + /babel-preset-fbjs/3.4.0_@babel+core@7.23.9: + resolution: {integrity: sha512-9ywCsCvo1ojrw0b+XYk7aFvTH6D9064t0RIL1rtMf3nsa02Xw41MS7sZw216Im35xj/UY0PDBQsa1brUDDF1Ow==} + peerDependencies: + '@babel/core': ^7.0.0 + dependencies: + '@babel/core': 7.23.9 + '@babel/plugin-proposal-class-properties': 7.18.6_@babel+core@7.23.9 + '@babel/plugin-proposal-object-rest-spread': 7.18.6_@babel+core@7.23.9 + '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.23.9 + '@babel/plugin-syntax-flow': 7.18.6_@babel+core@7.23.9 + '@babel/plugin-syntax-jsx': 7.23.3_@babel+core@7.23.9 + '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.23.9 + '@babel/plugin-transform-arrow-functions': 7.23.3_@babel+core@7.23.9 + '@babel/plugin-transform-block-scoped-functions': 7.23.3_@babel+core@7.23.9 + '@babel/plugin-transform-block-scoping': 7.23.4_@babel+core@7.23.9 + '@babel/plugin-transform-classes': 7.23.8_@babel+core@7.23.9 + '@babel/plugin-transform-computed-properties': 7.23.3_@babel+core@7.23.9 + '@babel/plugin-transform-destructuring': 7.23.3_@babel+core@7.23.9 + '@babel/plugin-transform-flow-strip-types': 7.18.6_@babel+core@7.23.9 + '@babel/plugin-transform-for-of': 7.23.6_@babel+core@7.23.9 + '@babel/plugin-transform-function-name': 7.23.3_@babel+core@7.23.9 + '@babel/plugin-transform-literals': 7.23.3_@babel+core@7.23.9 + '@babel/plugin-transform-member-expression-literals': 7.23.3_@babel+core@7.23.9 + '@babel/plugin-transform-modules-commonjs': 7.23.3_@babel+core@7.23.9 + '@babel/plugin-transform-object-super': 7.23.3_@babel+core@7.23.9 + '@babel/plugin-transform-parameters': 7.23.3_@babel+core@7.23.9 + '@babel/plugin-transform-property-literals': 7.23.3_@babel+core@7.23.9 + '@babel/plugin-transform-react-display-name': 7.23.3_@babel+core@7.23.9 + '@babel/plugin-transform-react-jsx': 7.23.4_@babel+core@7.23.9 + '@babel/plugin-transform-shorthand-properties': 7.23.3_@babel+core@7.23.9 + '@babel/plugin-transform-spread': 7.23.3_@babel+core@7.23.9 + '@babel/plugin-transform-template-literals': 7.23.3_@babel+core@7.23.9 babel-plugin-syntax-trailing-function-commas: 7.0.0-beta.0 - transitivePeerDependencies: - - supports-color dev: true - /babel-preset-jest/29.6.3_@babel+core@7.18.9: + /babel-preset-jest/29.6.3_@babel+core@7.23.9: resolution: {integrity: sha512-0B3bhxR6snWXJZtR/RliHTDPRgn1sNHOR0yVtq/IiQFyuOVjFS+wuio/R4gSNkyYmKmJB4wGZv2NZanmKmTnNA==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.18.9 + '@babel/core': 7.23.9 babel-plugin-jest-hoist: 29.6.3 - babel-preset-current-node-syntax: 1.0.1_@babel+core@7.18.9 + babel-preset-current-node-syntax: 1.0.1_@babel+core@7.23.9 dev: true /babel-preset-react-native/4.0.1: @@ -9868,13 +9620,6 @@ packages: toggle-selection: 1.0.6 dev: true - /core-js-compat/3.24.0: - resolution: {integrity: sha512-F+2E63X3ff/nj8uIrf8Rf24UDGIz7p838+xjEp+Bx3y8OWXj+VTPPZNCtdqovPaS9o7Tka5mCH01Zn5vOd6UQg==} - dependencies: - browserslist: 4.22.2 - semver: 7.0.0 - dev: true - /core-js-compat/3.35.1: resolution: {integrity: sha512-sftHa5qUJY3rs9Zht1WEnmkvXputCyDBczPnr7QDgL8n3qrF3CMXY4VPSYtOLLiOUJcah2WNXREd48iOl6mQIw==} dependencies: @@ -11493,7 +11238,7 @@ packages: dependencies: acorn: 8.11.3 acorn-jsx: 5.3.2_acorn@8.11.3 - eslint-visitor-keys: 3.3.0 + eslint-visitor-keys: 3.4.3 dev: true /esprima/4.0.1: @@ -11920,12 +11665,12 @@ packages: - supports-color dev: true - /find-babel-config/1.2.0: - resolution: {integrity: sha512-jB2CHJeqy6a820ssiqwrKMeyC6nNdmrcgkKWJWmpoxpE8RKciYJXCcXRq1h2AzCo5I5BJeN2tkGEO3hLTuePRA==} - engines: {node: '>=4.0.0'} + /find-babel-config/2.0.0: + resolution: {integrity: sha512-dOKT7jvF3hGzlW60Gc3ONox/0rRZ/tz7WCil0bqA1In/3I8f1BctpXahRnEKDySZqci7u+dqq93sZST9fOJpFw==} + engines: {node: '>=16.0.0'} dependencies: - json5: 0.5.1 - path-exists: 3.0.0 + json5: 2.2.3 + path-exists: 4.0.0 dev: true /find-cache-dir/2.1.0: @@ -12371,17 +12116,6 @@ packages: path-scurry: 1.10.1 dev: true - /glob/7.1.2: - resolution: {integrity: sha512-MJTUg1kjuLeQCJ+ccE4Vpa6kKVXkPYJ2mOCQyUuKLcLQsdrMCpBPUi8qVE6+YuaJkozeA9NusTAw3hLr8Xe5EQ==} - dependencies: - fs.realpath: 1.0.0 - inflight: 1.0.6 - inherits: 2.0.4 - minimatch: 3.1.2 - once: 1.4.0 - path-is-absolute: 1.0.1 - dev: true - /glob/7.2.3: resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==} dependencies: @@ -13493,7 +13227,7 @@ packages: resolution: {integrity: sha512-6Lthe1hqXHBNsqvgDzGO6l03XNeu3CrG4RqQ1KM9+l5+jNGpEJfIELx1NS3SEHmJQA8np/u+E4EPRKRiu6m19A==} engines: {node: '>=8'} dependencies: - '@babel/core': 7.18.9 + '@babel/core': 7.23.9 '@babel/parser': 7.23.6 '@istanbuljs/schema': 0.1.3 istanbul-lib-coverage: 3.2.0 @@ -13506,7 +13240,7 @@ packages: resolution: {integrity: sha512-EAMEJBsYuyyztxMxW3g7ugGPkrZsV57v0Hmv3mm1uQsmB+QnZuepg731CRaIgeUVSdmsTngOkSnauNF8p7FIhA==} engines: {node: '>=10'} dependencies: - '@babel/core': 7.18.9 + '@babel/core': 7.23.9 '@babel/parser': 7.23.6 '@istanbuljs/schema': 0.1.3 istanbul-lib-coverage: 3.2.0 @@ -13651,11 +13385,11 @@ packages: ts-node: optional: true dependencies: - '@babel/core': 7.18.9 + '@babel/core': 7.23.9 '@jest/test-sequencer': 29.7.0 '@jest/types': 29.6.3 '@types/node': 20.11.24 - babel-jest: 29.7.0_@babel+core@7.18.9 + babel-jest: 29.7.0_@babel+core@7.23.9 chalk: 4.1.2 ci-info: 3.3.2 deepmerge: 4.2.2 @@ -13692,11 +13426,11 @@ packages: ts-node: optional: true dependencies: - '@babel/core': 7.18.9 + '@babel/core': 7.23.9 '@jest/test-sequencer': 29.7.0 '@jest/types': 29.6.3 '@types/node': 18.6.1 - babel-jest: 29.7.0_@babel+core@7.18.9 + babel-jest: 29.7.0_@babel+core@7.23.9 chalk: 4.1.2 ci-info: 3.3.2 deepmerge: 4.2.2 @@ -13996,15 +13730,15 @@ packages: resolution: {integrity: sha512-Rm0BMWtxBcioHr1/OX5YCP8Uov4riHvKPknOGs804Zg9JGZgmIBkbtlxJC/7Z4msKYVbIJtfU+tKb8xlYNfdkw==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - '@babel/core': 7.18.9 + '@babel/core': 7.23.9 '@babel/generator': 7.23.6 - '@babel/plugin-syntax-jsx': 7.23.3_@babel+core@7.18.9 - '@babel/plugin-syntax-typescript': 7.23.3_@babel+core@7.18.9 + '@babel/plugin-syntax-jsx': 7.23.3_@babel+core@7.23.9 + '@babel/plugin-syntax-typescript': 7.23.3_@babel+core@7.23.9 '@babel/types': 7.23.6 '@jest/expect-utils': 29.7.0 '@jest/transform': 29.7.0 '@jest/types': 29.6.3 - babel-preset-current-node-syntax: 1.0.1_@babel+core@7.18.9 + babel-preset-current-node-syntax: 1.0.1_@babel+core@7.23.9 chalk: 4.1.2 expect: 29.7.0 graceful-fs: 4.2.11 @@ -14177,7 +13911,7 @@ packages: resolution: {integrity: sha512-KmxeBlRjwoqCnBBKGsihFtvsBHyUFlBxJPK4FzeYcIuBfdjv6jFys44JITAgSTbQD+vIdwMEfyZklsuQX0yI1Q==} dev: true - /jscodeshift/0.15.1_@babel+preset-env@7.23.8: + /jscodeshift/0.15.1_@babel+preset-env@7.23.9: resolution: {integrity: sha512-hIJfxUy8Rt4HkJn/zZPU9ChKfKZM1342waJ1QC2e2YsPcWhM+3BJ4dcfQCzArTrk1jJeNLB341H+qOcEHRxJZg==} hasBin: true peerDependencies: @@ -14186,18 +13920,18 @@ packages: '@babel/preset-env': optional: true dependencies: - '@babel/core': 7.23.7 + '@babel/core': 7.23.9 '@babel/parser': 7.23.6 - '@babel/plugin-transform-class-properties': 7.23.3_@babel+core@7.23.7 - '@babel/plugin-transform-modules-commonjs': 7.23.3_@babel+core@7.23.7 - '@babel/plugin-transform-nullish-coalescing-operator': 7.23.4_@babel+core@7.23.7 - '@babel/plugin-transform-optional-chaining': 7.23.4_@babel+core@7.23.7 - '@babel/plugin-transform-private-methods': 7.23.3_@babel+core@7.23.7 - '@babel/preset-env': 7.23.8_@babel+core@7.23.7 - '@babel/preset-flow': 7.23.3_@babel+core@7.23.7 - '@babel/preset-typescript': 7.23.3_@babel+core@7.23.7 - '@babel/register': 7.23.7_@babel+core@7.23.7 - babel-core: 7.0.0-bridge.0_@babel+core@7.23.7 + '@babel/plugin-transform-class-properties': 7.23.3_@babel+core@7.23.9 + '@babel/plugin-transform-modules-commonjs': 7.23.3_@babel+core@7.23.9 + '@babel/plugin-transform-nullish-coalescing-operator': 7.23.4_@babel+core@7.23.9 + '@babel/plugin-transform-optional-chaining': 7.23.4_@babel+core@7.23.9 + '@babel/plugin-transform-private-methods': 7.23.3_@babel+core@7.23.9 + '@babel/preset-env': 7.23.9_@babel+core@7.23.9 + '@babel/preset-flow': 7.23.3_@babel+core@7.23.9 + '@babel/preset-typescript': 7.23.3_@babel+core@7.23.9 + '@babel/register': 7.23.7_@babel+core@7.23.9 + babel-core: 7.0.0-bridge.0_@babel+core@7.23.9 chalk: 4.1.2 flow-parser: 0.227.0 graceful-fs: 4.2.11 @@ -14287,11 +14021,6 @@ packages: resolution: {integrity: sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA==} dev: false - /json5/0.5.1: - resolution: {integrity: sha512-4xrs1aW+6N5DalkqSVA8fxh458CXvR99WU8WLKmq4v8eWAL86Xo3BVqyd3SkA9wEVjCMqyvvRRkshAdOnBp5rw==} - hasBin: true - dev: true - /json5/1.0.2: resolution: {integrity: sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==} hasBin: true @@ -14505,15 +14234,6 @@ packages: json5: 1.0.2 dev: true - /loader-utils/2.0.2: - resolution: {integrity: sha512-TM57VeHptv569d/GKh6TAYdzKblwDNiumOdkFnejjD0XwTH87K90w3O7AiJRqdQoXygvi1VQTJTLGhJl7WqA7A==} - engines: {node: '>=8.9.0'} - dependencies: - big.js: 5.2.2 - emojis-list: 3.0.0 - json5: 2.2.3 - dev: true - /loader-utils/2.0.4: resolution: {integrity: sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==} engines: {node: '>=8.9.0'} @@ -14987,13 +14707,13 @@ packages: /metro-babel-register/0.66.2: resolution: {integrity: sha512-3F+vsVubUPJYKfVMeol8/7pd8CC287Rw92QYzJD8LEmI980xcgwMUEVBZ0UIAUwlLgiJG/f4Mwhuji2EeBXrPg==} dependencies: - '@babel/core': 7.18.9 - '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6_@babel+core@7.18.9 - '@babel/plugin-proposal-optional-chaining': 7.18.6_@babel+core@7.18.9 - '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.18.9 - '@babel/plugin-transform-flow-strip-types': 7.18.6_@babel+core@7.18.9 - '@babel/plugin-transform-modules-commonjs': 7.18.6_@babel+core@7.18.9 - '@babel/register': 7.18.6_@babel+core@7.18.9 + '@babel/core': 7.23.9 + '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6_@babel+core@7.23.9 + '@babel/plugin-proposal-optional-chaining': 7.18.6_@babel+core@7.23.9 + '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.23.9 + '@babel/plugin-transform-flow-strip-types': 7.18.6_@babel+core@7.23.9 + '@babel/plugin-transform-modules-commonjs': 7.23.3_@babel+core@7.23.9 + '@babel/register': 7.18.6_@babel+core@7.23.9 escape-string-regexp: 1.0.5 transitivePeerDependencies: - supports-color @@ -15002,7 +14722,7 @@ packages: /metro-babel-transformer/0.66.2: resolution: {integrity: sha512-aJ/7fc/Xkofw8Fqa51OTDhBzBz26mmpIWrXAZcPdQ8MSTt883EWncxeCEjasc79NJ89BRi7sOkkaWZo2sXlKvw==} dependencies: - '@babel/core': 7.18.9 + '@babel/core': 7.23.9 hermes-parser: 0.4.7 metro-source-map: 0.66.2 nullthrows: 1.1.1 @@ -15091,81 +14811,131 @@ packages: '@babel/plugin-syntax-flow': 7.18.6_@babel+core@7.18.9 '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.18.9 '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.18.9 - '@babel/plugin-transform-arrow-functions': 7.18.6_@babel+core@7.18.9 - '@babel/plugin-transform-async-to-generator': 7.18.6_@babel+core@7.18.9 - '@babel/plugin-transform-block-scoping': 7.18.9_@babel+core@7.18.9 - '@babel/plugin-transform-classes': 7.18.9_@babel+core@7.18.9 - '@babel/plugin-transform-computed-properties': 7.18.9_@babel+core@7.18.9 - '@babel/plugin-transform-destructuring': 7.18.9_@babel+core@7.18.9 - '@babel/plugin-transform-exponentiation-operator': 7.18.6_@babel+core@7.18.9 + '@babel/plugin-transform-arrow-functions': 7.23.3_@babel+core@7.18.9 + '@babel/plugin-transform-async-to-generator': 7.23.3_@babel+core@7.18.9 + '@babel/plugin-transform-block-scoping': 7.23.4_@babel+core@7.18.9 + '@babel/plugin-transform-classes': 7.23.8_@babel+core@7.18.9 + '@babel/plugin-transform-computed-properties': 7.23.3_@babel+core@7.18.9 + '@babel/plugin-transform-destructuring': 7.23.3_@babel+core@7.18.9 + '@babel/plugin-transform-exponentiation-operator': 7.23.3_@babel+core@7.18.9 '@babel/plugin-transform-flow-strip-types': 7.18.6_@babel+core@7.18.9 - '@babel/plugin-transform-for-of': 7.18.6_@babel+core@7.18.9 - '@babel/plugin-transform-function-name': 7.18.6_@babel+core@7.18.9 - '@babel/plugin-transform-literals': 7.18.6_@babel+core@7.18.9 - '@babel/plugin-transform-modules-commonjs': 7.18.6_@babel+core@7.18.9 + '@babel/plugin-transform-for-of': 7.23.6_@babel+core@7.18.9 + '@babel/plugin-transform-function-name': 7.23.3_@babel+core@7.18.9 + '@babel/plugin-transform-literals': 7.23.3_@babel+core@7.18.9 + '@babel/plugin-transform-modules-commonjs': 7.23.3_@babel+core@7.18.9 '@babel/plugin-transform-object-assign': 7.18.6_@babel+core@7.18.9 - '@babel/plugin-transform-parameters': 7.18.8_@babel+core@7.18.9 - '@babel/plugin-transform-react-display-name': 7.18.6_@babel+core@7.18.9 - '@babel/plugin-transform-react-jsx': 7.18.6_@babel+core@7.18.9 + '@babel/plugin-transform-parameters': 7.23.3_@babel+core@7.18.9 + '@babel/plugin-transform-react-display-name': 7.23.3_@babel+core@7.18.9 + '@babel/plugin-transform-react-jsx': 7.23.4_@babel+core@7.18.9 '@babel/plugin-transform-react-jsx-self': 7.18.6_@babel+core@7.18.9 '@babel/plugin-transform-react-jsx-source': 7.18.6_@babel+core@7.18.9 - '@babel/plugin-transform-regenerator': 7.18.6_@babel+core@7.18.9 + '@babel/plugin-transform-regenerator': 7.23.3_@babel+core@7.18.9 '@babel/plugin-transform-runtime': 7.18.6_@babel+core@7.18.9 - '@babel/plugin-transform-shorthand-properties': 7.18.6_@babel+core@7.18.9 - '@babel/plugin-transform-spread': 7.18.9_@babel+core@7.18.9 - '@babel/plugin-transform-sticky-regex': 7.18.6_@babel+core@7.18.9 - '@babel/plugin-transform-template-literals': 7.18.9_@babel+core@7.18.9 - '@babel/plugin-transform-typescript': 7.18.6_@babel+core@7.18.9 - '@babel/plugin-transform-unicode-regex': 7.18.6_@babel+core@7.18.9 + '@babel/plugin-transform-shorthand-properties': 7.23.3_@babel+core@7.18.9 + '@babel/plugin-transform-spread': 7.23.3_@babel+core@7.18.9 + '@babel/plugin-transform-sticky-regex': 7.23.3_@babel+core@7.18.9 + '@babel/plugin-transform-template-literals': 7.23.3_@babel+core@7.18.9 + '@babel/plugin-transform-typescript': 7.23.6_@babel+core@7.18.9 + '@babel/plugin-transform-unicode-regex': 7.23.3_@babel+core@7.18.9 '@babel/template': 7.22.15 react-refresh: 0.4.3 transitivePeerDependencies: - supports-color dev: true - /metro-react-native-babel-preset/0.71.3_@babel+core@7.18.9: - resolution: {integrity: sha512-ym8xeoK/5fY/TsQPQXVnJN822NB9TZglxc2XVk+DM8kJO0XacWh2GtDRFeFHEehVsYWpIZeaDPF2XES+YU5mhA==} + /metro-react-native-babel-preset/0.66.2_@babel+core@7.23.9: + resolution: {integrity: sha512-H/nLBAz0MgfDloSe1FjyH4EnbokHFdncyERvLPXDACY3ROVRCeUyFNo70ywRGXW2NMbrV4H7KUyU4zkfWhC2HQ==} peerDependencies: '@babel/core': '*' dependencies: - '@babel/core': 7.18.9 - '@babel/plugin-proposal-async-generator-functions': 7.18.6_@babel+core@7.18.9 - '@babel/plugin-proposal-class-properties': 7.18.6_@babel+core@7.18.9 - '@babel/plugin-proposal-export-default-from': 7.18.9_@babel+core@7.18.9 - '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6_@babel+core@7.18.9 - '@babel/plugin-proposal-object-rest-spread': 7.18.9_@babel+core@7.18.9 - '@babel/plugin-proposal-optional-catch-binding': 7.18.6_@babel+core@7.18.9 - '@babel/plugin-proposal-optional-chaining': 7.18.9_@babel+core@7.18.9 - '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.18.9 - '@babel/plugin-syntax-export-default-from': 7.18.6_@babel+core@7.18.9 - '@babel/plugin-syntax-flow': 7.18.6_@babel+core@7.18.9 - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.18.9 - '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.18.9 - '@babel/plugin-transform-arrow-functions': 7.18.6_@babel+core@7.18.9 - '@babel/plugin-transform-async-to-generator': 7.18.6_@babel+core@7.18.9 - '@babel/plugin-transform-block-scoping': 7.18.9_@babel+core@7.18.9 - '@babel/plugin-transform-classes': 7.18.9_@babel+core@7.18.9 - '@babel/plugin-transform-computed-properties': 7.18.9_@babel+core@7.18.9 - '@babel/plugin-transform-destructuring': 7.18.9_@babel+core@7.18.9 - '@babel/plugin-transform-exponentiation-operator': 7.18.6_@babel+core@7.18.9 - '@babel/plugin-transform-flow-strip-types': 7.18.9_@babel+core@7.18.9 - '@babel/plugin-transform-function-name': 7.18.9_@babel+core@7.18.9 - '@babel/plugin-transform-literals': 7.18.9_@babel+core@7.18.9 - '@babel/plugin-transform-modules-commonjs': 7.18.6_@babel+core@7.18.9 - '@babel/plugin-transform-named-capturing-groups-regex': 7.18.6_@babel+core@7.18.9 - '@babel/plugin-transform-parameters': 7.18.8_@babel+core@7.18.9 - '@babel/plugin-transform-react-display-name': 7.18.6_@babel+core@7.18.9 - '@babel/plugin-transform-react-jsx': 7.18.6_@babel+core@7.18.9 - '@babel/plugin-transform-react-jsx-self': 7.18.6_@babel+core@7.18.9 - '@babel/plugin-transform-react-jsx-source': 7.18.6_@babel+core@7.18.9 - '@babel/plugin-transform-runtime': 7.18.9_@babel+core@7.18.9 - '@babel/plugin-transform-shorthand-properties': 7.18.6_@babel+core@7.18.9 - '@babel/plugin-transform-spread': 7.18.9_@babel+core@7.18.9 - '@babel/plugin-transform-sticky-regex': 7.18.6_@babel+core@7.18.9 - '@babel/plugin-transform-template-literals': 7.18.9_@babel+core@7.18.9 - '@babel/plugin-transform-typescript': 7.18.8_@babel+core@7.18.9 - '@babel/plugin-transform-unicode-regex': 7.18.6_@babel+core@7.18.9 - '@babel/template': 7.18.6 + '@babel/core': 7.23.9 + '@babel/plugin-proposal-class-properties': 7.18.6_@babel+core@7.23.9 + '@babel/plugin-proposal-export-default-from': 7.18.6_@babel+core@7.23.9 + '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6_@babel+core@7.23.9 + '@babel/plugin-proposal-object-rest-spread': 7.18.9_@babel+core@7.23.9 + '@babel/plugin-proposal-optional-catch-binding': 7.18.6_@babel+core@7.23.9 + '@babel/plugin-proposal-optional-chaining': 7.18.9_@babel+core@7.23.9 + '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.23.9 + '@babel/plugin-syntax-export-default-from': 7.18.6_@babel+core@7.23.9 + '@babel/plugin-syntax-flow': 7.18.6_@babel+core@7.23.9 + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.23.9 + '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.23.9 + '@babel/plugin-transform-arrow-functions': 7.23.3_@babel+core@7.23.9 + '@babel/plugin-transform-async-to-generator': 7.23.3_@babel+core@7.23.9 + '@babel/plugin-transform-block-scoping': 7.23.4_@babel+core@7.23.9 + '@babel/plugin-transform-classes': 7.23.8_@babel+core@7.23.9 + '@babel/plugin-transform-computed-properties': 7.23.3_@babel+core@7.23.9 + '@babel/plugin-transform-destructuring': 7.23.3_@babel+core@7.23.9 + '@babel/plugin-transform-exponentiation-operator': 7.23.3_@babel+core@7.23.9 + '@babel/plugin-transform-flow-strip-types': 7.18.6_@babel+core@7.23.9 + '@babel/plugin-transform-for-of': 7.23.6_@babel+core@7.23.9 + '@babel/plugin-transform-function-name': 7.23.3_@babel+core@7.23.9 + '@babel/plugin-transform-literals': 7.23.3_@babel+core@7.23.9 + '@babel/plugin-transform-modules-commonjs': 7.23.3_@babel+core@7.23.9 + '@babel/plugin-transform-object-assign': 7.18.6_@babel+core@7.23.9 + '@babel/plugin-transform-parameters': 7.23.3_@babel+core@7.23.9 + '@babel/plugin-transform-react-display-name': 7.23.3_@babel+core@7.23.9 + '@babel/plugin-transform-react-jsx': 7.23.4_@babel+core@7.23.9 + '@babel/plugin-transform-react-jsx-self': 7.18.6_@babel+core@7.23.9 + '@babel/plugin-transform-react-jsx-source': 7.18.6_@babel+core@7.23.9 + '@babel/plugin-transform-regenerator': 7.23.3_@babel+core@7.23.9 + '@babel/plugin-transform-runtime': 7.18.6_@babel+core@7.23.9 + '@babel/plugin-transform-shorthand-properties': 7.23.3_@babel+core@7.23.9 + '@babel/plugin-transform-spread': 7.23.3_@babel+core@7.23.9 + '@babel/plugin-transform-sticky-regex': 7.23.3_@babel+core@7.23.9 + '@babel/plugin-transform-template-literals': 7.23.3_@babel+core@7.23.9 + '@babel/plugin-transform-typescript': 7.23.6_@babel+core@7.23.9 + '@babel/plugin-transform-unicode-regex': 7.23.3_@babel+core@7.23.9 + '@babel/template': 7.22.15 + react-refresh: 0.4.3 + transitivePeerDependencies: + - supports-color + dev: true + + /metro-react-native-babel-preset/0.77.0_@babel+core@7.23.9: + resolution: {integrity: sha512-HPPD+bTxADtoE4y/4t1txgTQ1LVR6imOBy7RMHUsqMVTbekoi8Ph5YI9vKX2VMPtVWeFt0w9YnCSLPa76GcXsA==} + engines: {node: '>=18'} + peerDependencies: + '@babel/core': '*' + dependencies: + '@babel/core': 7.23.9 + '@babel/plugin-proposal-async-generator-functions': 7.18.6_@babel+core@7.23.9 + '@babel/plugin-proposal-class-properties': 7.18.6_@babel+core@7.23.9 + '@babel/plugin-proposal-export-default-from': 7.18.9_@babel+core@7.23.9 + '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6_@babel+core@7.23.9 + '@babel/plugin-proposal-numeric-separator': 7.18.6_@babel+core@7.23.9 + '@babel/plugin-proposal-object-rest-spread': 7.20.7_@babel+core@7.23.9 + '@babel/plugin-proposal-optional-catch-binding': 7.18.6_@babel+core@7.23.9 + '@babel/plugin-proposal-optional-chaining': 7.21.0_@babel+core@7.23.9 + '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.23.9 + '@babel/plugin-syntax-export-default-from': 7.18.6_@babel+core@7.23.9 + '@babel/plugin-syntax-flow': 7.23.3_@babel+core@7.23.9 + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.23.9 + '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.23.9 + '@babel/plugin-transform-arrow-functions': 7.23.3_@babel+core@7.23.9 + '@babel/plugin-transform-async-to-generator': 7.23.3_@babel+core@7.23.9 + '@babel/plugin-transform-block-scoping': 7.23.4_@babel+core@7.23.9 + '@babel/plugin-transform-classes': 7.23.8_@babel+core@7.23.9 + '@babel/plugin-transform-computed-properties': 7.23.3_@babel+core@7.23.9 + '@babel/plugin-transform-destructuring': 7.23.3_@babel+core@7.23.9 + '@babel/plugin-transform-flow-strip-types': 7.23.3_@babel+core@7.23.9 + '@babel/plugin-transform-function-name': 7.23.3_@babel+core@7.23.9 + '@babel/plugin-transform-literals': 7.23.3_@babel+core@7.23.9 + '@babel/plugin-transform-modules-commonjs': 7.23.3_@babel+core@7.23.9 + '@babel/plugin-transform-named-capturing-groups-regex': 7.22.5_@babel+core@7.23.9 + '@babel/plugin-transform-parameters': 7.23.3_@babel+core@7.23.9 + '@babel/plugin-transform-react-display-name': 7.23.3_@babel+core@7.23.9 + '@babel/plugin-transform-react-jsx': 7.23.4_@babel+core@7.23.9 + '@babel/plugin-transform-react-jsx-self': 7.18.6_@babel+core@7.23.9 + '@babel/plugin-transform-react-jsx-source': 7.18.6_@babel+core@7.23.9 + '@babel/plugin-transform-runtime': 7.18.9_@babel+core@7.23.9 + '@babel/plugin-transform-shorthand-properties': 7.23.3_@babel+core@7.23.9 + '@babel/plugin-transform-spread': 7.23.3_@babel+core@7.23.9 + '@babel/plugin-transform-sticky-regex': 7.23.3_@babel+core@7.23.9 + '@babel/plugin-transform-typescript': 7.23.6_@babel+core@7.23.9 + '@babel/plugin-transform-unicode-regex': 7.23.3_@babel+core@7.23.9 + '@babel/template': 7.22.15 + babel-plugin-transform-flow-enums: 0.0.2_@babel+core@7.23.9 react-refresh: 0.4.3 transitivePeerDependencies: - supports-color @@ -15200,7 +14970,7 @@ packages: /metro-source-map/0.66.2: resolution: {integrity: sha512-038tFmB7vSh73VQcDWIbr5O1m+WXWyYafDaOy+1A/2K308YP0oj33gbEgDnZsLZDwcJ+xt1x6KUEBIzlX4YGeQ==} dependencies: - '@babel/traverse': 7.18.6 + '@babel/traverse': 7.23.7 '@babel/types': 7.23.6 invariant: 2.2.4 metro-symbolicate: 0.66.2 @@ -15230,7 +15000,7 @@ packages: /metro-transform-plugins/0.66.2: resolution: {integrity: sha512-KTvqplh0ut7oDKovvDG6yzXM02R6X+9b2oVG+qYq8Zd3aCGTi51ASx4ThCNkAHyEvCuJdYg9fxXTL+j+wvhB5w==} dependencies: - '@babel/core': 7.18.9 + '@babel/core': 7.23.9 '@babel/generator': 7.23.6 '@babel/template': 7.22.15 '@babel/traverse': 7.23.7 @@ -15242,11 +15012,11 @@ packages: /metro-transform-worker/0.66.2: resolution: {integrity: sha512-dO4PtYOMGB7Vzte8aIzX39xytODhmbJrBYPu+zYzlDjyefJZT7BkZ0LkPIThtyJi96xWcGqi9JBSo0CeRupAHw==} dependencies: - '@babel/core': 7.18.9 + '@babel/core': 7.23.9 '@babel/generator': 7.23.6 '@babel/parser': 7.23.6 '@babel/types': 7.23.6 - babel-preset-fbjs: 3.4.0_@babel+core@7.18.9 + babel-preset-fbjs: 3.4.0_@babel+core@7.23.9 metro: 0.66.2 metro-babel-transformer: 0.66.2 metro-cache: 0.66.2 @@ -15267,7 +15037,7 @@ packages: hasBin: true dependencies: '@babel/code-frame': 7.23.5 - '@babel/core': 7.18.9 + '@babel/core': 7.23.9 '@babel/generator': 7.23.6 '@babel/parser': 7.23.6 '@babel/template': 7.22.15 @@ -15299,7 +15069,7 @@ packages: metro-hermes-compiler: 0.66.2 metro-inspector-proxy: 0.66.2 metro-minify-uglify: 0.66.2 - metro-react-native-babel-preset: 0.66.2_@babel+core@7.18.9 + metro-react-native-babel-preset: 0.66.2_@babel+core@7.23.9 metro-resolver: 0.66.2 metro-runtime: 0.66.2 metro-source-map: 0.66.2 @@ -15978,16 +15748,6 @@ packages: isobject: 3.0.1 dev: true - /object.assign/4.1.2: - resolution: {integrity: sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ==} - engines: {node: '>= 0.4'} - dependencies: - call-bind: 1.0.7 - define-properties: 1.2.1 - has-symbols: 1.0.3 - object-keys: 1.1.1 - dev: true - /object.assign/4.1.5: resolution: {integrity: sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==} engines: {node: '>= 0.4'} @@ -17066,7 +16826,7 @@ packages: resolution: {integrity: sha512-i8aF1nyKInZnANZ4uZrH49qn1paRgBZ7wZiCNBMnenlPzEv0mRl+ShpTVEI6wZNl8sSc79xZkivtgLKQArcanQ==} engines: {node: '>=16.14.0'} dependencies: - '@babel/core': 7.18.9 + '@babel/core': 7.23.9 '@babel/traverse': 7.23.7 '@babel/types': 7.23.6 '@types/babel__core': 7.20.5 @@ -17507,13 +17267,6 @@ packages: which-builtin-type: 1.1.3 dev: true - /regenerate-unicode-properties/10.0.1: - resolution: {integrity: sha512-vn5DU6yg6h8hP/2OkQo3K7uVILvY4iu0oI4t3HFa81UPkhGJwkRwM10JEc3upjdhHjs/k8GJY1sRBhk5sr69Bw==} - engines: {node: '>=4'} - dependencies: - regenerate: 1.4.2 - dev: true - /regenerate-unicode-properties/10.1.1: resolution: {integrity: sha512-X007RyZLsCJVVrjgEFVpLUTZwyOZk3oiL75ZcuYjlIWd6rNJtOjkBwQc5AsRrpbKVkxN6sklw/k/9m2jJYOf8Q==} engines: {node: '>=4'} @@ -17545,12 +17298,6 @@ packages: private: 0.1.8 dev: true - /regenerator-transform/0.15.0: - resolution: {integrity: sha512-LsrGtPmbYg19bcPHwdtmXwbW+TqNvtY4riE3P83foeHRroMbH6/2ddFBfab3t7kbzc7v7p4wbkIecHImqt0QNg==} - dependencies: - '@babel/runtime': 7.24.0 - dev: true - /regenerator-transform/0.15.2: resolution: {integrity: sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg==} dependencies: @@ -17580,18 +17327,6 @@ packages: engines: {node: '>=8'} dev: true - /regexpu-core/5.1.0: - resolution: {integrity: sha512-bb6hk+xWd2PEOkj5It46A16zFMs2mv86Iwpdu94la4S3sJ7C973h2dHpYKwIBGaWSO7cIRJ+UX0IeMaWcO4qwA==} - engines: {node: '>=4'} - dependencies: - regenerate: 1.4.2 - regenerate-unicode-properties: 10.0.1 - regjsgen: 0.6.0 - regjsparser: 0.8.4 - unicode-match-property-ecmascript: 2.0.0 - unicode-match-property-value-ecmascript: 2.0.0 - dev: true - /regexpu-core/5.3.2: resolution: {integrity: sha512-RAM5FlZz+Lhmo7db9L298p2vHP5ZywrVXmVXpmAD9GuL5MPH6t9ROw1iA/wfHkQ76Qe7AaPF0nGuim96/IrQMQ==} engines: {node: '>=4'} @@ -17604,17 +17339,6 @@ packages: unicode-match-property-value-ecmascript: 2.1.0 dev: true - /regjsgen/0.6.0: - resolution: {integrity: sha512-ozE883Uigtqj3bx7OhL1KNbCzGyW2NQZPl6Hs09WTvCuZD5sTI4JY58bkbQWa/Y9hxIsvJ3M8Nbf7j54IqeZbA==} - dev: true - - /regjsparser/0.8.4: - resolution: {integrity: sha512-J3LABycON/VNEu3abOviqGHuB/LOtOQj8SKmfP9anY5GfAVw/SPjwzSjxGjbZXIxbGfqTHtJw58C2Li/WkStmA==} - hasBin: true - dependencies: - jsesc: 0.5.0 - dev: true - /regjsparser/0.9.1: resolution: {integrity: sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==} hasBin: true @@ -17823,8 +17547,8 @@ packages: resolution: {integrity: sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==} dev: true - /reselect/4.1.6: - resolution: {integrity: sha512-ZovIuXqto7elwnxyXbBtCPo9YFEr3uJqj2rRbcOOog1bmu2Ag85M4hixSwFWyaBMKXNgvPaJ9OSu9SkBPIeJHQ==} + /reselect/4.1.8: + resolution: {integrity: sha512-ab9EmR80F/zQTMNeneUr4cv+jSwPJgIlvEmVwLerwrWVbpLlBuls9XHzIeTFy4cegU2NHBp3va0LKOzU5qFEYQ==} dev: true /resolve-cwd/3.0.0: @@ -18048,15 +17772,6 @@ packages: dependencies: loose-envify: 1.4.0 - /schema-utils/2.7.1: - resolution: {integrity: sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg==} - engines: {node: '>= 8.9.0'} - dependencies: - '@types/json-schema': 7.0.11 - ajv: 6.12.6 - ajv-keywords: 3.5.2_ajv@6.12.6 - dev: true - /schema-utils/3.1.1: resolution: {integrity: sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==} engines: {node: '>= 10.13.0'} @@ -18070,7 +17785,7 @@ packages: resolution: {integrity: sha512-1edyXKgh6XnJsJSQ8mKWXnN/BVaIbFMLpouRUrXgVq7WYne5kw3MW7UPhO44uRXQSIpTSXoJbmrR2X0w9kUTyg==} engines: {node: '>= 12.13.0'} dependencies: - '@types/json-schema': 7.0.11 + '@types/json-schema': 7.0.15 ajv: 8.11.0 ajv-formats: 2.1.1 ajv-keywords: 5.1.0_ajv@8.11.0 @@ -18114,11 +17829,6 @@ packages: hasBin: true dev: true - /semver/7.0.0: - resolution: {integrity: sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A==} - hasBin: true - dev: true - /semver/7.3.7: resolution: {integrity: sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g==} engines: {node: '>=10'} @@ -19344,7 +19054,7 @@ packages: resolution: {integrity: sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==} dev: true - /ts-jest/29.1.2_5cytqtvimh5ynfyz6wjzc2t4gm: + /ts-jest/29.1.2_pf2j7gyd26tnyyq6b4phcdcbzm: resolution: {integrity: sha512-br6GJoH/WUX4pu7FbZXuWGKGNDuU7b8Uj77g/Sp7puZV6EXzuByl6JrECvm0MzVzSTkSHWTihsXt+5XYER5b+g==} engines: {node: ^16.10.0 || ^18.0.0 || >=20.0.0} hasBin: true @@ -19365,8 +19075,8 @@ packages: esbuild: optional: true dependencies: - '@babel/core': 7.18.9 - babel-jest: 29.7.0_@babel+core@7.18.9 + '@babel/core': 7.23.9 + babel-jest: 29.7.0_@babel+core@7.23.9 bs-logger: 0.2.6 fast-json-stable-stringify: 2.1.0 jest: 29.7.0_pq4lb27wczlmkje7q43vo4whau @@ -19661,11 +19371,6 @@ packages: unicode-property-aliases-ecmascript: 2.0.0 dev: true - /unicode-match-property-value-ecmascript/2.0.0: - resolution: {integrity: sha512-7Yhkc0Ye+t4PNYzOGKedDhXbYIBe1XEQYQxOPyhcXNMJ0WCABqqj6ckydd6pWRZTHV4GuCPKdBAUiMc60tsKVw==} - engines: {node: '>=4'} - dev: true - /unicode-match-property-value-ecmascript/2.1.0: resolution: {integrity: sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA==} engines: {node: '>=4'}